diff --git a/Dockerfile b/Dockerfile index 040c466..45eb77d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,17 @@ -FROM nginx:alpine -COPY nginx.conf /etc/nginx/conf.d/default.conf -COPY html/ /usr/share/nginx/html/ -EXPOSE 80 +FROM python:3.11-slim + +WORKDIR /app + +# Install deps +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +# Copy app +COPY . . + +# Create generated dir +RUN mkdir -p /app/generated + +EXPOSE 5050 + +CMD ["gunicorn", "-b", "0.0.0.0:5050", "-w", "2", "--timeout", "120", "--access-logfile", "-", "app:app"] diff --git a/ai_engine.py b/ai_engine.py new file mode 100644 index 0000000..128059a --- /dev/null +++ b/ai_engine.py @@ -0,0 +1,328 @@ +"""AI engine — Gemini for copy, Nano Banana / Nano Banana Pro for imagery. + +Models used: + Text: gemini-2.5-flash — all copy generation + Image: gemini-2.5-flash-image — Nano Banana (fast lifestyle shots) + Image: gemini-3-pro-image-preview — Nano Banana Pro (premium hero/product shots) + +Powers: + Demo A: generate_asset_pack() — 1 product → 12 marketing assets + Demo B: competitor_xray() — competitor URL → analysis + JV upgrade + Demo C: pdp_surgeon() — existing copy → style variants + PDP: optimise_pdp_copy() — full PDP rewrite + Images: generate_all_images() — Nano Banana product imagery +""" + +import os, json, hashlib, re +from pathlib import Path +from google import genai +from google.genai import types + +GEMINI_KEY = os.environ.get("GEMINI_API_KEY", "") +client = genai.Client(api_key=GEMINI_KEY) if GEMINI_KEY else None + +GEN_DIR = Path(__file__).parent / "generated" +GEN_DIR.mkdir(exist_ok=True) + +TEXT_MODEL = "gemini-2.5-flash" +IMG_FAST = "gemini-2.5-flash-image" # Nano Banana +IMG_PRO = "gemini-3-pro-image-preview" # Nano Banana Pro + + +def _call_gemini(prompt: str, temperature: float = 0.7) -> dict: + """Call Gemini text model, return parsed JSON.""" + if not client: + return {"error": "GEMINI_API_KEY not configured"} + response = client.models.generate_content( + model=TEXT_MODEL, + contents=prompt, + config=types.GenerateContentConfig( + temperature=temperature, + response_mime_type="application/json", + ), + ) + try: + return json.loads(response.text) + except json.JSONDecodeError: + match = re.search(r'\{.*\}', response.text, re.DOTALL) + if match: + return json.loads(match.group()) + return {"error": "Failed to parse AI response", "raw": response.text[:500]} + + +def _generate_image(prompt: str, model: str = IMG_PRO) -> tuple: + """Generate image via Nano Banana. Returns (filename, mime_type) or ('','').""" + if not client: + return ("", "") + + cache_key = hashlib.md5(f"{model}:{prompt}".encode()).hexdigest()[:14] + # Check cache + for ext in ("png", "jpg", "jpeg"): + cached = GEN_DIR / f"{cache_key}.{ext}" + if cached.exists(): + return (cached.name, f"image/{ext}") + + try: + response = client.models.generate_content( + model=model, + contents=prompt, + config=types.GenerateContentConfig( + response_modalities=["IMAGE", "TEXT"], + ), + ) + for part in response.candidates[0].content.parts: + if part.inline_data and part.inline_data.data: + mime = part.inline_data.mime_type or "image/png" + ext = "jpg" if "jpeg" in mime or "jpg" in mime else "png" + filename = f"{cache_key}.{ext}" + (GEN_DIR / filename).write_bytes(part.inline_data.data) + return (filename, mime) + except Exception as e: + print(f"[img-gen] {model} error: {e}") + return ("", "") + + +# ═══════════════════════════════════════════════════════════════ +# DEMO A — One Product → 12 Assets +# ═══════════════════════════════════════════════════════════════ + +def generate_asset_pack(product: dict) -> dict: + prompt = f"""You are a world-class ecommerce copywriter and marketing strategist for Just Vitamins (justvitamins.co.uk), a trusted UK vitamin brand — 4.8★ Trustpilot, 230,000+ customers, 20 years trading. + +PRODUCT DATA: +- Title: {product.get('title','')} +- Subtitle: {product.get('subtitle','')} +- Price: {product.get('price','')} for {product.get('quantity','')} +- Per unit: {product.get('per_unit_cost','')} +- Benefits: {json.dumps(product.get('benefits',[]))} +- Description: {product.get('description','')[:1500]} +- EFSA Health Claims: {json.dumps(product.get('health_claims',[]))} +- Category: {product.get('category','')} + +Generate a COMPLETE 12-asset marketing pack. Be specific to THIS product. + +Return JSON: +{{ + "hero_angles": [ + {{"headline":"…","target_desire":"…","best_for":"…"}}, + {{"headline":"…","target_desire":"…","best_for":"…"}}, + {{"headline":"…","target_desire":"…","best_for":"…"}} + ], + "pdp_copy": {{ + "headline":"…", + "bullets":["…","…","…","…","…"], + "faq":[{{"q":"…","a":"…"}},{{"q":"…","a":"…"}},{{"q":"…","a":"…"}}] + }}, + "ad_hooks":["…","…","…","…","…"], + "email_subjects":[ + {{"subject":"…","preview":"…"}}, + {{"subject":"…","preview":"…"}}, + {{"subject":"…","preview":"…"}} + ], + "tiktok_script":{{ + "title":"…", + "hook_0_3s":"…", + "body_3_12s":"…", + "cta_12_15s":"…", + "why_it_works":"…" + }}, + "blog_outline":{{ + "title":"…", + "sections":["…","…","…","…","…"], + "seo_keyword":"…", + "monthly_searches":"…" + }}, + "meta_seo":{{ + "title":"…","description":"…","title_chars":0,"desc_chars":0 + }}, + "alt_text":[ + {{"image_type":"Hero product shot","alt":"…","filename":"…"}}, + {{"image_type":"Lifestyle image","alt":"…","filename":"…"}} + ], + "ab_variants":[ + {{"label":"Rational","copy":"…"}}, + {{"label":"Emotional","copy":"…"}}, + {{"label":"Social Proof","copy":"…"}} + ] +}} + +RULES: EFSA claims must be accurate. Email subjects <50 chars. Meta title <60 chars, description <160 chars. UK English.""" + return _call_gemini(prompt, 0.75) + + +# ═══════════════════════════════════════════════════════════════ +# DEMO B — Competitor X-Ray +# ═══════════════════════════════════════════════════════════════ + +def competitor_xray(competitor_data: dict) -> dict: + prompt = f"""You are a competitive intelligence analyst for Just Vitamins (justvitamins.co.uk) — trusted UK supplement brand, 20 yrs, 4.8★ Trustpilot, 230K+ customers, eco bio-pouch packaging. + +COMPETITOR PAGE: +- URL: {competitor_data.get('url','')} +- Title: {competitor_data.get('title','')} +- Brand: {competitor_data.get('brand','')} +- Price: {competitor_data.get('price','')} +- Meta: {competitor_data.get('meta_description','')} +- Description: {competitor_data.get('description','')[:2000]} +- Bullets: {json.dumps(competitor_data.get('bullets',[])[:10])} +- Page extract: {competitor_data.get('raw_text','')[:2000]} + +Perform a deep competitive analysis. Output JSON: +{{ + "competitor_name":"…", + "what_theyre_selling":"One sentence — what they're REALLY selling (emotional promise, not product)", + "top_5_tactics":[ + {{"tactic":"…","explanation":"…"}}, + {{"tactic":"…","explanation":"…"}}, + {{"tactic":"…","explanation":"…"}}, + {{"tactic":"…","explanation":"…"}}, + {{"tactic":"…","explanation":"…"}} + ], + "weakest_claim":"Their most vulnerable claim / biggest gap", + "jv_hero_section":{{ + "headline":"Killer headline positioning JV as better", + "body":"2-3 sentences of copy that beats them without naming them", + "value_prop":"Single most powerful reason to choose JV" + }}, + "differentiators":[ + {{"point":"…","proof_idea":"Specific content or test idea to prove it"}}, + {{"point":"…","proof_idea":"…"}}, + {{"point":"…","proof_idea":"…"}} + ], + "do_not_say":["Compliance note 1","…","…","…"] +}} + +RULES: No false claims. EFSA/ASA compliant. Strategic, not aggressive.""" + return _call_gemini(prompt, 0.7) + + +# ═══════════════════════════════════════════════════════════════ +# DEMO C — PDP Surgeon +# ═══════════════════════════════════════════════════════════════ + +STYLE_INSTRUCTIONS = { + "balanced": "Balanced, trustworthy DTC supplement voice. Mix emotional hooks with rational proof.", + "premium": "Premium aspirational voice. Sophisticated language, formulation science, target affluent buyers.", + "dr": "Direct-response style. Pattern interrupts, urgency, specific numbers, scarcity, stacked bonuses.", + "medical": "Clinical, medically-safe tone. Proper nomenclature, structure/function claims only, FDA disclaimer.", +} + +def pdp_surgeon(product: dict, style: str = "balanced") -> dict: + instruction = STYLE_INSTRUCTIONS.get(style, STYLE_INSTRUCTIONS["balanced"]) + prompt = f"""You are a PDP conversion specialist rewriting a product page for Just Vitamins. + +PRODUCT: +- Title: {product.get('title','')} +- Subtitle: {product.get('subtitle','')} +- Price: {product.get('price','')} for {product.get('quantity','')} +- Benefits: {json.dumps(product.get('benefits',[]))} +- Description: {product.get('description','')[:1500]} +- EFSA Claims: {json.dumps(product.get('health_claims',[]))} + +STYLE: {style.upper()} — {instruction} + +Rewrite the PDP. For EVERY change add a conversion annotation with estimated % impact. + +Output JSON: +{{ + "style":"{style}", + "title":"…", + "subtitle":"…", + "hero_copy":"Main persuasion paragraph", + "hero_annotation":"Why this works — conversion impact", + "bullets":[ + {{"text":"…","annotation":"Why — e.g. +22% add-to-cart"}}, + {{"text":"…","annotation":"…"}}, + {{"text":"…","annotation":"…"}}, + {{"text":"…","annotation":"…"}} + ], + "social_proof":"Line using 4.8★ Trustpilot, 230K customers", + "social_proof_annotation":"…", + "price_reframe":"Reframe price as no-brainer", + "price_annotation":"…", + "cta_text":"CTA button text", + "usage_instruction":"How to take — written to remove friction", + "usage_annotation":"…" +}} + +RULES: EFSA claims accurate. Realistic % lifts (5-40%). UK English.""" + return _call_gemini(prompt, 0.8) + + +# ═══════════════════════════════════════════════════════════════ +# FULL PDP OPTIMISATION +# ═══════════════════════════════════════════════════════════════ + +def optimise_pdp_copy(product: dict) -> dict: + prompt = f"""You are an expert ecommerce copywriter for Just Vitamins (justvitamins.co.uk) — 4.8★ Trustpilot, 230K+ customers, 20 years. + +PRODUCT: +- Title: {product['title']} +- Subtitle: {product.get('subtitle','')} +- Price: {product.get('price','')} for {product.get('quantity','')} +- Per unit: {product.get('per_unit_cost','')} +- Benefits: {json.dumps(product.get('benefits',[]))} +- Description: {product.get('description','')[:1500]} +- EFSA Claims: {json.dumps(product.get('health_claims',[]))} +- Category: {product.get('category','')} + +Rewrite everything. Output JSON: +{{ + "seo_title":"…", + "subtitle":"…", + "benefit_bullets":["…","…","…","…","…"], + "why_section":"Para 1\\n\\nPara 2\\n\\nPara 3", + "who_for":["…","…","…"], + "social_proof":"…", + "meta_description":"…", + "faqs":[{{"q":"…","a":"…"}},{{"q":"…","a":"…"}},{{"q":"…","a":"…"}}] +}} + +Keep EFSA claims accurate. UK English.""" + return _call_gemini(prompt, 0.7) + + +# ═══════════════════════════════════════════════════════════════ +# IMAGE GENERATION — Nano Banana / Pro +# ═══════════════════════════════════════════════════════════════ + +def generate_product_images(product: dict) -> dict: + """Generate product images using Nano Banana (fast) + Nano Banana Pro (hero).""" + title = product.get("title", "vitamin supplement") + category = product.get("category", "vitamins") + results = {} + + # Hero — use Nano Banana Pro for best quality + hero_prompt = ( + f"Professional product hero photograph for an ecommerce page. " + f"A premium eco-friendly kraft bio-pouch supplement packaging for '{title}' " + f"by Just Vitamins UK. Clean cream/white background, soft natural shadows, " + f"minimalist staging with a small ceramic dish of capsules/tablets beside it " + f"and a sprig of green herb. Premium, trustworthy, modern. " + f"Commercial product photography, sharp focus, studio lighting." + ) + fname, mime = _generate_image(hero_prompt, IMG_PRO) + results["hero"] = {"filename": fname, "mime": mime, "model": "Nano Banana Pro"} + + # Lifestyle — Nano Banana (fast) + lifestyle_prompt = ( + f"Lifestyle product photograph: '{title}' by Just Vitamins UK in an eco " + f"bio-pouch sitting on a marble kitchen counter with morning sunlight " + f"streaming through a window. Fresh fruit, a glass of water, and green " + f"leaves nearby. Warm, healthy, inviting mood. Shallow depth of field. " + f"Photorealistic, 4K quality." + ) + fname, mime = _generate_image(lifestyle_prompt, IMG_FAST) + results["lifestyle"] = {"filename": fname, "mime": mime, "model": "Nano Banana"} + + # Benefits — Nano Banana Pro + benefits_prompt = ( + f"Clean infographic-style illustration showing health benefits of " + f"{category} supplements: strong bones, immune support, energy, vitality. " + f"Modern flat design, warm gold/green/cream palette. " + f"Professional, suitable for a premium UK health brand website. No text." + ) + fname, mime = _generate_image(benefits_prompt, IMG_PRO) + results["benefits"] = {"filename": fname, "mime": mime, "model": "Nano Banana Pro"} + + return results diff --git a/app.py b/app.py new file mode 100644 index 0000000..d0b2acc --- /dev/null +++ b/app.py @@ -0,0 +1,194 @@ +"""JustVitamin × QuikCue — AI Content Engine +Live proposal site with real Gemini-powered demos.""" + +import os, json, time, traceback +from pathlib import Path +from flask import (Flask, render_template, jsonify, request, + send_from_directory, redirect) + +from scraper import scrape_product, scrape_competitor +from ai_engine import (generate_asset_pack, competitor_xray, pdp_surgeon, + optimise_pdp_copy, generate_product_images) + +app = Flask(__name__, + static_folder="static", + template_folder="templates") + +GEN_DIR = Path(__file__).parent / "generated" +GEN_DIR.mkdir(exist_ok=True) + +# ── Page routes ────────────────────────────────────────────── + +@app.route("/") +def index(): + return render_template("index.html") + +@app.route("/dashboard") +def dashboard(): + return send_from_directory("static/dashboard", "index.html") + +@app.route("/dashboard/jv_data.json") +def dashboard_data(): + return send_from_directory("static/dashboard", "jv_data.json") + +@app.route("/proposal") +def proposal(): + return send_from_directory("static/proposal", "index.html") + +@app.route("/offer") +def offer(): + return send_from_directory("static/offer", "index.html") + +@app.route("/generated/") +def serve_generated(filename): + return send_from_directory(GEN_DIR, filename) + + +# ── API: Scrape ────────────────────────────────────────────── + +@app.route("/api/scrape", methods=["POST"]) +def api_scrape(): + """Scrape a JustVitamins product page.""" + url = request.json.get("url", "").strip() + if not url: + return jsonify({"error": "No URL provided"}), 400 + try: + data = scrape_product(url) + if not data.get("title"): + return jsonify({"error": "Could not find product. Check URL."}), 400 + return jsonify(data) + except Exception as e: + traceback.print_exc() + return jsonify({"error": str(e)}), 500 + + +@app.route("/api/scrape-competitor", methods=["POST"]) +def api_scrape_competitor(): + """Scrape any competitor product page.""" + url = request.json.get("url", "").strip() + if not url: + return jsonify({"error": "No URL provided"}), 400 + try: + data = scrape_competitor(url) + if not data.get("title"): + return jsonify({"error": "Could not extract product data."}), 400 + return jsonify(data) + except Exception as e: + traceback.print_exc() + return jsonify({"error": str(e)}), 500 + + +# ── API: Demo A — 12-Asset Pack ────────────────────────────── + +@app.route("/api/generate-pack", methods=["POST"]) +def api_generate_pack(): + """Generate a full 12-asset marketing pack from product data.""" + product = request.json + if not product: + return jsonify({"error": "No product data"}), 400 + try: + t0 = time.time() + pack = generate_asset_pack(product) + pack["_generation_time"] = f"{time.time()-t0:.1f}s" + pack["_product_title"] = product.get("title", "") + return jsonify(pack) + except Exception as e: + traceback.print_exc() + return jsonify({"error": str(e)}), 500 + + +# ── API: Demo B — Competitor X-Ray ─────────────────────────── + +@app.route("/api/competitor-xray", methods=["POST"]) +def api_competitor_xray(): + """Scrape competitor + run AI analysis.""" + url = request.json.get("url", "").strip() + if not url: + return jsonify({"error": "No URL provided"}), 400 + try: + t0 = time.time() + comp_data = scrape_competitor(url) + if not comp_data.get("title"): + return jsonify({"error": "Could not scrape competitor page."}), 400 + analysis = competitor_xray(comp_data) + analysis["_scrape_data"] = { + "title": comp_data.get("title"), + "price": comp_data.get("price"), + "brand": comp_data.get("brand"), + "url": url, + } + analysis["_generation_time"] = f"{time.time()-t0:.1f}s" + return jsonify(analysis) + except Exception as e: + traceback.print_exc() + return jsonify({"error": str(e)}), 500 + + +# ── API: Demo C — PDP Surgeon ──────────────────────────────── + +@app.route("/api/pdp-surgeon", methods=["POST"]) +def api_pdp_surgeon(): + """Rewrite PDP copy in a given style.""" + data = request.json or {} + product = data.get("product") + style = data.get("style", "balanced") + if not product: + return jsonify({"error": "No product data"}), 400 + try: + t0 = time.time() + result = pdp_surgeon(product, style) + result["_generation_time"] = f"{time.time()-t0:.1f}s" + return jsonify(result) + except Exception as e: + traceback.print_exc() + return jsonify({"error": str(e)}), 500 + + +# ── API: Full PDP Optimise ─────────────────────────────────── + +@app.route("/api/optimise", methods=["POST"]) +def api_optimise(): + """Full PDP rewrite — scrape + AI copy.""" + product = request.json + if not product: + return jsonify({"error": "No product data"}), 400 + try: + t0 = time.time() + copy = optimise_pdp_copy(product) + copy["_generation_time"] = f"{time.time()-t0:.1f}s" + return jsonify(copy) + except Exception as e: + traceback.print_exc() + return jsonify({"error": str(e)}), 500 + + +# ── API: Image Generation ──────────────────────────────────── + +@app.route("/api/generate-images", methods=["POST"]) +def api_generate_images(): + """Generate AI product images via Nano Banana / Pro.""" + product = request.json + if not product: + return jsonify({"error": "No product data"}), 400 + try: + t0 = time.time() + images = generate_product_images(product) + images["_generation_time"] = f"{time.time()-t0:.1f}s" + return jsonify(images) + except Exception as e: + traceback.print_exc() + return jsonify({"error": str(e)}), 500 + + +# ── Health check ───────────────────────────────────────────── + +@app.route("/api/health") +def health(): + return jsonify({ + "status": "ok", + "gemini_key_set": bool(os.environ.get("GEMINI_API_KEY")), + }) + + +if __name__ == "__main__": + app.run(host="0.0.0.0", port=5050, debug=True) diff --git a/docker-compose.yml b/docker-compose.yml index 94cefc8..4516ca4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,6 +4,10 @@ services: justvitamin: image: justvitamin:latest build: . + environment: + - GEMINI_API_KEY=AIzaSyCHnesXLjPw-UgeZaQotut66bgjFdvy12E + volumes: + - jv-generated:/app/generated networks: - dokploy-network deploy: @@ -12,11 +16,14 @@ services: - "traefik.http.routers.justvitamin.rule=Host(`justvitamin.quikcue.com`)" - "traefik.http.routers.justvitamin.entrypoints=websecure" - "traefik.http.routers.justvitamin.tls.certResolver=letsencrypt" - - "traefik.http.services.justvitamin.loadbalancer.server.port=80" + - "traefik.http.services.justvitamin.loadbalancer.server.port=5050" replicas: 1 restart_policy: condition: on-failure +volumes: + jv-generated: + networks: dokploy-network: external: true diff --git a/html/404.html b/html/404.html deleted file mode 100644 index 6479d5d..0000000 --- a/html/404.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - 404 — JustVitamin × QuikCue - - - -
-

404

-

This page doesn't exist. But the content engine does.

- ← Back to the Proposal -
- - diff --git a/html/css/style.css b/html/css/style.css deleted file mode 100644 index 21d3932..0000000 --- a/html/css/style.css +++ /dev/null @@ -1,1209 +0,0 @@ -/* ════════════════════════════════════════════════════════════════ - JustVitamin × QuikCue — AI Content Engine Proposal - Dark premium theme. Conversion-optimized. - ════════════════════════════════════════════════════════════════ */ - -:root { - --bg: #050a08; - --bg-alt: #0a100e; - --bg-card: #0d1613; - --bg-card-hover: #111d19; - --bg-glass: rgba(13, 22, 19, 0.7); - --text: #e4e4e7; - --text-muted: #8b9a94; - --text-dim: #4a5d55; - --accent: #10b981; - --accent-bright: #34d399; - --accent-dim: #059669; - --accent-glow: rgba(16, 185, 129, 0.12); - --accent-glow-strong: rgba(16, 185, 129, 0.25); - --cta: #ef4444; - --cta-hover: #f87171; - --cta-glow: rgba(239, 68, 68, 0.2); - --gold: #f59e0b; - --gold-dim: #d97706; - --blue: #3b82f6; - --purple: #8b5cf6; - --border: #162822; - --border-light: #1e3830; - --border-accent: rgba(16, 185, 129, 0.2); - --font-mono: 'SF Mono','Fira Code','JetBrains Mono','Cascadia Code',monospace; - --font-sans: 'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif; - --max-w: 1100px; - --max-w-narrow: 780px; -} - -*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } -html { font-size: 16px; scroll-behavior: smooth; scroll-padding-top: 80px; } -body { - background: var(--bg); - color: var(--text); - font-family: var(--font-sans); - line-height: 1.65; - min-height: 100vh; - -webkit-font-smoothing: antialiased; - overflow-x: hidden; -} - -/* ── Animations ── */ -@keyframes fadeUp { - from { opacity: 0; transform: translateY(30px); } - to { opacity: 1; transform: translateY(0); } -} -@keyframes fadeIn { - from { opacity: 0; } - to { opacity: 1; } -} -@keyframes slideRight { - from { opacity: 0; transform: translateX(-20px); } - to { opacity: 1; transform: translateX(0); } -} -@keyframes pulse { - 0%, 100% { opacity: 1; } - 50% { opacity: 0.5; } -} -@keyframes glow { - 0%, 100% { box-shadow: 0 0 20px var(--accent-glow); } - 50% { box-shadow: 0 0 40px var(--accent-glow-strong); } -} -@keyframes shimmer { - 0% { background-position: -200% 0; } - 100% { background-position: 200% 0; } -} -@keyframes countUp { - from { opacity: 0; transform: scale(0.5); } - to { opacity: 1; transform: scale(1); } -} -@keyframes cardReveal { - from { opacity: 0; transform: translateY(20px) scale(0.95); } - to { opacity: 1; transform: translateY(0) scale(1); } -} -@keyframes typing { - from { width: 0; } - to { width: 100%; } -} -@keyframes blink { - 50% { border-color: transparent; } -} -@keyframes gradientShift { - 0% { background-position: 0% 50%; } - 50% { background-position: 100% 50%; } - 100% { background-position: 0% 50%; } -} -.animate-on-scroll { - opacity: 0; - transform: translateY(30px); - transition: opacity 0.7s ease, transform 0.7s ease; -} -.animate-on-scroll.visible { - opacity: 1; - transform: translateY(0); -} - -/* ── Nav ── */ -nav { - position: sticky; - top: 0; - z-index: 100; - background: rgba(5, 10, 8, 0.88); - backdrop-filter: blur(16px); - -webkit-backdrop-filter: blur(16px); - border-bottom: 1px solid var(--border); - padding: 0.75rem 1.5rem; -} -.nav-inner { - max-width: var(--max-w); - margin: 0 auto; - display: flex; - align-items: center; - justify-content: space-between; - gap: 1rem; -} -.logo { - font-family: var(--font-mono); - font-size: 0.95rem; - font-weight: 700; - color: var(--accent); - text-decoration: none; - letter-spacing: -0.02em; - display: flex; - align-items: center; - gap: 0.35rem; -} -.logo .dot { color: var(--text-dim); font-weight: 400; } -.logo .brand { color: var(--text); font-weight: 600; } -.nav-links { - display: flex; - gap: 0.25rem; -} -.nav-links a { - font-family: var(--font-mono); - font-size: 0.78rem; - color: var(--text-muted); - text-decoration: none; - padding: 0.35rem 0.65rem; - border-radius: 6px; - transition: all 0.15s ease; -} -.nav-links a:hover, .nav-links a.active { - color: var(--text); - background: var(--bg-card); -} - -/* ── Page Container ── */ -.page { - max-width: var(--max-w); - margin: 0 auto; - padding: 0 1.5rem; -} - -/* ── Section ── */ -.section { - padding: 6rem 0; - position: relative; -} -.section + .section { - border-top: 1px solid var(--border); -} -.section-label { - font-family: var(--font-mono); - font-size: 0.72rem; - font-weight: 600; - text-transform: uppercase; - letter-spacing: 0.12em; - color: var(--accent-dim); - margin-bottom: 1rem; - display: flex; - align-items: center; - gap: 0.5rem; -} -.section-label::before { - content: ''; - display: inline-block; - width: 24px; - height: 1px; - background: var(--accent-dim); -} - -/* ── Typography ── */ -h1 { - font-family: var(--font-sans); - font-size: clamp(2.4rem, 6vw, 3.8rem); - font-weight: 800; - line-height: 1.1; - letter-spacing: -0.03em; - color: var(--text); - margin-bottom: 1.25rem; -} -h1 .accent { color: var(--accent); } -h1 .accent-gold { color: var(--gold); } -h2 { - font-family: var(--font-sans); - font-size: clamp(1.6rem, 4vw, 2.2rem); - font-weight: 700; - line-height: 1.2; - letter-spacing: -0.02em; - color: var(--text); - margin-bottom: 1rem; -} -h3 { - font-family: var(--font-sans); - font-size: 1.15rem; - font-weight: 600; - color: var(--text); - margin-bottom: 0.5rem; -} -.subtitle { - font-size: 1.15rem; - color: var(--text-muted); - line-height: 1.7; - max-width: 640px; -} -.subtitle-sm { - font-size: 0.95rem; - color: var(--text-muted); - line-height: 1.7; - max-width: 540px; -} - -/* ── Hero ── */ -.hero { - padding: 5rem 0 4rem; - position: relative; -} -.hero::before { - content: ''; - position: absolute; - top: -20%; - right: -10%; - width: 600px; - height: 600px; - background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); - pointer-events: none; - z-index: 0; -} -.hero > * { position: relative; z-index: 1; } -.hero-eyebrow { - font-family: var(--font-mono); - font-size: 0.82rem; - font-weight: 600; - color: var(--accent); - margin-bottom: 1.25rem; - display: flex; - align-items: center; - gap: 0.5rem; -} -.hero-eyebrow .pill { - font-size: 0.68rem; - background: var(--accent-glow-strong); - color: var(--accent-bright); - padding: 0.2rem 0.6rem; - border-radius: 99px; - border: 1px solid var(--border-accent); -} -.hero .subtitle { - font-size: 1.2rem; - max-width: 600px; -} -.hero-stats { - display: flex; - gap: 2.5rem; - margin-top: 2.5rem; - flex-wrap: wrap; -} -.hero-stat { - display: flex; - flex-direction: column; - gap: 0.15rem; -} -.hero-stat-value { - font-family: var(--font-mono); - font-size: 1.6rem; - font-weight: 800; - color: var(--accent); -} -.hero-stat-label { - font-size: 0.78rem; - color: var(--text-dim); - font-weight: 500; -} - -/* ── Buttons ── */ -.btn-row { - display: flex; - flex-wrap: wrap; - gap: 0.75rem; - margin-top: 2rem; -} -.btn { - display: inline-flex; - align-items: center; - gap: 0.4rem; - font-family: var(--font-sans); - font-size: 0.88rem; - font-weight: 600; - padding: 0.7rem 1.4rem; - border-radius: 10px; - text-decoration: none; - transition: all 0.2s ease; - cursor: pointer; - border: none; - position: relative; - overflow: hidden; -} -.btn-primary { - background: var(--accent); - color: #050a08; -} -.btn-primary:hover { - background: var(--accent-bright); - transform: translateY(-2px); - box-shadow: 0 8px 25px var(--accent-glow-strong); -} -.btn-cta { - background: var(--cta); - color: #fff; - font-size: 0.95rem; - padding: 0.85rem 1.8rem; -} -.btn-cta:hover { - background: var(--cta-hover); - transform: translateY(-2px); - box-shadow: 0 8px 25px var(--cta-glow); -} -.btn-cta-large { - background: var(--cta); - color: #fff; - font-size: 1.05rem; - font-weight: 700; - padding: 1rem 2.4rem; - border-radius: 12px; -} -.btn-cta-large:hover { - background: var(--cta-hover); - transform: translateY(-3px); - box-shadow: 0 12px 35px var(--cta-glow); -} -.btn-outline { - background: transparent; - color: var(--text-muted); - border: 1px solid var(--border-light); -} -.btn-outline:hover { - color: var(--text); - border-color: var(--text-muted); - transform: translateY(-1px); -} -.btn-ghost { - background: transparent; - color: var(--accent); - border: 1px solid var(--border-accent); -} -.btn-ghost:hover { - background: var(--accent-glow); - transform: translateY(-1px); -} - -/* ── Cards ── */ -.card { - background: var(--bg-card); - border: 1px solid var(--border); - border-radius: 12px; - padding: 1.5rem; - transition: all 0.2s ease; -} -.card:hover { - border-color: var(--border-light); - transform: translateY(-2px); -} -.card-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); - gap: 1rem; - margin-top: 1.5rem; -} -.card-grid-3 { - display: grid; - grid-template-columns: repeat(3, 1fr); - gap: 1rem; - margin-top: 1.5rem; -} - -/* ── Dashboard Section ── */ -.dashboard-grid { - display: grid; - grid-template-columns: repeat(4, 1fr); - gap: 1rem; - margin-top: 2rem; -} -.stat-card { - background: var(--bg-card); - border: 1px solid var(--border); - border-radius: 12px; - padding: 1.5rem; - text-align: center; - position: relative; - overflow: hidden; -} -.stat-card::before { - content: ''; - position: absolute; - top: 0; left: 0; right: 0; - height: 2px; - background: linear-gradient(90deg, transparent, var(--accent), transparent); -} -.stat-card.gold::before { - background: linear-gradient(90deg, transparent, var(--gold), transparent); -} -.stat-card.blue::before { - background: linear-gradient(90deg, transparent, var(--blue), transparent); -} -.stat-card.purple::before { - background: linear-gradient(90deg, transparent, var(--purple), transparent); -} -.stat-number { - font-family: var(--font-mono); - font-size: 2.2rem; - font-weight: 800; - color: var(--accent); - line-height: 1.1; - margin-bottom: 0.35rem; -} -.stat-card.gold .stat-number { color: var(--gold); } -.stat-card.blue .stat-number { color: var(--blue); } -.stat-card.purple .stat-number { color: var(--purple); } -.stat-label { - font-size: 0.82rem; - color: var(--text-muted); - font-weight: 500; -} -.stat-delta { - font-family: var(--font-mono); - font-size: 0.72rem; - font-weight: 600; - color: var(--accent); - margin-top: 0.5rem; - display: inline-flex; - align-items: center; - gap: 0.2rem; - padding: 0.15rem 0.5rem; - background: var(--accent-glow); - border-radius: 99px; -} - -/* ── Comparison Chart ── */ -.chart-container { - margin-top: 2.5rem; - padding: 2rem; - background: var(--bg-card); - border: 1px solid var(--border); - border-radius: 12px; -} -.chart-title { - font-family: var(--font-mono); - font-size: 0.82rem; - color: var(--text-muted); - text-transform: uppercase; - letter-spacing: 0.08em; - margin-bottom: 1.5rem; -} -.chart-bars { - display: flex; - flex-direction: column; - gap: 1.25rem; -} -.chart-row { - display: grid; - grid-template-columns: 140px 1fr 60px; - align-items: center; - gap: 1rem; -} -.chart-row-label { - font-size: 0.82rem; - color: var(--text-muted); - font-weight: 500; - text-align: right; -} -.chart-bar-track { - height: 32px; - background: var(--bg-alt); - border-radius: 8px; - overflow: hidden; - position: relative; -} -.chart-bar-fill { - height: 100%; - border-radius: 8px; - transition: width 1.5s ease; - width: 0; - display: flex; - align-items: center; - padding-left: 0.75rem; -} -.chart-bar-fill.green { background: linear-gradient(90deg, var(--accent-dim), var(--accent)); } -.chart-bar-fill.dim { background: linear-gradient(90deg, #1a2420, #243330); } -.chart-bar-fill.gold { background: linear-gradient(90deg, var(--gold-dim), var(--gold)); } -.chart-bar-fill.blue { background: linear-gradient(90deg, #2563eb, var(--blue)); } -.chart-row-value { - font-family: var(--font-mono); - font-size: 0.82rem; - font-weight: 700; - color: var(--text); -} - -/* ── Offer Section ── */ -.offer-grid { - display: grid; - grid-template-columns: 1fr 1fr; - gap: 2rem; - margin-top: 2rem; -} -.offer-card { - background: var(--bg-card); - border: 1px solid var(--border); - border-radius: 16px; - padding: 2rem; - position: relative; - overflow: hidden; -} -.offer-card.featured { - border-color: var(--accent-dim); - box-shadow: 0 0 40px var(--accent-glow); -} -.offer-card.featured::before { - content: 'RECOMMENDED'; - position: absolute; - top: 0; right: 0; - font-family: var(--font-mono); - font-size: 0.65rem; - font-weight: 700; - color: #050a08; - background: var(--accent); - padding: 0.25rem 0.75rem 0.25rem 1rem; - border-radius: 0 0 0 10px; -} -.offer-price { - font-family: var(--font-mono); - font-size: 2rem; - font-weight: 800; - color: var(--text); - margin: 1rem 0; -} -.offer-price span { - font-size: 0.9rem; - font-weight: 400; - color: var(--text-dim); -} -.offer-list { - list-style: none; - display: flex; - flex-direction: column; - gap: 0.6rem; - margin: 1.5rem 0; -} -.offer-list li { - font-size: 0.88rem; - color: var(--text-muted); - padding-left: 1.5rem; - position: relative; -} -.offer-list li::before { - content: '✓'; - position: absolute; - left: 0; - color: var(--accent); - font-weight: 700; -} -.offer-list li.highlight { - color: var(--text); - font-weight: 600; -} - -/* ── Demo Sections ── */ -.demo-section { - padding: 5rem 0; - border-top: 1px solid var(--border); -} -.demo-badge { - font-family: var(--font-mono); - font-size: 0.68rem; - font-weight: 700; - padding: 0.25rem 0.7rem; - border-radius: 6px; - display: inline-flex; - align-items: center; - gap: 0.35rem; - margin-bottom: 1rem; -} -.demo-badge.a { background: rgba(239, 68, 68, 0.15); color: var(--cta); border: 1px solid rgba(239, 68, 68, 0.25); } -.demo-badge.b { background: rgba(59, 130, 246, 0.15); color: var(--blue); border: 1px solid rgba(59, 130, 246, 0.25); } -.demo-badge.c { background: rgba(139, 92, 246, 0.15); color: var(--purple); border: 1px solid rgba(139, 92, 246, 0.25); } - -.demo-header { - margin-bottom: 2rem; -} -.demo-header h2 { - margin-bottom: 0.5rem; -} - -/* ── Demo A: Input + Generate ── */ -.demo-input-area { - background: var(--bg-card); - border: 1px solid var(--border); - border-radius: 12px; - padding: 1.5rem; - margin-bottom: 1.5rem; -} -.demo-input-row { - display: flex; - gap: 0.75rem; - align-items: flex-end; -} -.demo-input-group { - flex: 1; - display: flex; - flex-direction: column; - gap: 0.35rem; -} -.demo-input-group label { - font-family: var(--font-mono); - font-size: 0.72rem; - font-weight: 600; - color: var(--text-dim); - text-transform: uppercase; - letter-spacing: 0.06em; -} -.demo-input { - background: var(--bg); - border: 1px solid var(--border-light); - border-radius: 8px; - padding: 0.7rem 1rem; - color: var(--text); - font-family: var(--font-sans); - font-size: 0.9rem; - outline: none; - transition: border-color 0.2s; - width: 100%; -} -.demo-input:focus { - border-color: var(--accent); - box-shadow: 0 0 0 3px var(--accent-glow); -} -.demo-input::placeholder { - color: var(--text-dim); -} -textarea.demo-input { - resize: vertical; - min-height: 100px; -} -.btn-generate { - background: var(--cta); - color: #fff; - font-family: var(--font-mono); - font-size: 0.88rem; - font-weight: 700; - padding: 0.7rem 1.5rem; - border: none; - border-radius: 8px; - cursor: pointer; - white-space: nowrap; - transition: all 0.2s ease; - min-width: 180px; -} -.btn-generate:hover { - background: var(--cta-hover); - transform: translateY(-2px); - box-shadow: 0 8px 25px var(--cta-glow); -} -.btn-generate:active { - transform: translateY(0); -} -.btn-generate.loading { - background: #7f1d1d; - pointer-events: none; -} -.btn-generate.loading::after { - content: ''; - display: inline-block; - width: 14px; - height: 14px; - border: 2px solid rgba(255,255,255,0.3); - border-top-color: #fff; - border-radius: 50%; - animation: spin 0.6s linear infinite; - margin-left: 0.5rem; -} -@keyframes spin { - to { transform: rotate(360deg); } -} - -/* ── Asset Bundle Output ── */ -.bundle-output { - display: none; - margin-top: 1rem; -} -.bundle-output.active { - display: block; -} -.bundle-counter { - font-family: var(--font-mono); - font-size: 0.82rem; - color: var(--accent); - margin-bottom: 1rem; - display: flex; - align-items: center; - gap: 0.5rem; -} -.bundle-counter .count { - font-weight: 800; - font-size: 1.1rem; -} -.asset-grid { - display: grid; - grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); - gap: 1rem; -} -.asset-card { - background: var(--bg-card); - border: 1px solid var(--border); - border-radius: 10px; - padding: 1.25rem; - opacity: 0; - transform: translateY(15px); - transition: all 0.4s ease; -} -.asset-card.revealed { - opacity: 1; - transform: translateY(0); -} -.asset-card-header { - display: flex; - align-items: center; - justify-content: space-between; - margin-bottom: 0.75rem; -} -.asset-type { - font-family: var(--font-mono); - font-size: 0.7rem; - font-weight: 700; - text-transform: uppercase; - letter-spacing: 0.08em; - padding: 0.15rem 0.5rem; - border-radius: 4px; -} -.asset-type.hero { background: rgba(239, 68, 68, 0.15); color: var(--cta); } -.asset-type.pdp { background: rgba(16, 185, 129, 0.15); color: var(--accent); } -.asset-type.ad { background: rgba(245, 158, 11, 0.15); color: var(--gold); } -.asset-type.email { background: rgba(59, 130, 246, 0.15); color: var(--blue); } -.asset-type.video { background: rgba(139, 92, 246, 0.15); color: var(--purple); } -.asset-type.blog { background: rgba(236, 72, 153, 0.15); color: #ec4899; } -.asset-type.seo { background: rgba(99, 102, 241, 0.15); color: #6366f1; } -.asset-type.a11y { background: rgba(107, 114, 128, 0.15); color: #9ca3af; } -.asset-card-number { - font-family: var(--font-mono); - font-size: 0.68rem; - color: var(--text-dim); -} -.asset-content { - font-size: 0.85rem; - color: var(--text-muted); - line-height: 1.6; -} -.asset-content strong { - color: var(--text); - font-weight: 600; -} -.asset-content ul { - list-style: none; - margin-top: 0.5rem; -} -.asset-content ul li { - padding-left: 1rem; - position: relative; - margin-bottom: 0.3rem; -} -.asset-content ul li::before { - content: '›'; - position: absolute; - left: 0; - color: var(--accent); - font-weight: 700; -} -.bundle-download { - margin-top: 1.5rem; - display: none; - align-items: center; - gap: 1rem; -} -.bundle-download.active { - display: flex; -} -.bundle-download .btn { - animation: glow 2s ease infinite; -} - -/* ── Demo B: Split Screen ── */ -.split-screen { - display: grid; - grid-template-columns: 1fr 1fr; - gap: 0; - margin-top: 1.5rem; - border: 1px solid var(--border); - border-radius: 12px; - overflow: hidden; - min-height: 500px; -} -.split-side { - padding: 1.5rem; - position: relative; -} -.split-left { - background: #0d0a0a; - border-right: 1px solid var(--border); -} -.split-right { - background: var(--bg-card); -} -.split-label { - font-family: var(--font-mono); - font-size: 0.68rem; - font-weight: 700; - text-transform: uppercase; - letter-spacing: 0.1em; - margin-bottom: 1rem; - padding: 0.25rem 0.6rem; - border-radius: 4px; - display: inline-block; -} -.split-label.competitor { - background: rgba(239, 68, 68, 0.15); - color: var(--cta); -} -.split-label.yours { - background: rgba(16, 185, 129, 0.15); - color: var(--accent); -} -.split-content { - opacity: 0; - transition: opacity 0.5s ease; -} -.split-content.revealed { - opacity: 1; -} -.xray-item { - margin-bottom: 1.25rem; -} -.xray-item-label { - font-family: var(--font-mono); - font-size: 0.7rem; - font-weight: 600; - color: var(--text-dim); - text-transform: uppercase; - letter-spacing: 0.06em; - margin-bottom: 0.35rem; -} -.xray-item-value { - font-size: 0.88rem; - color: var(--text-muted); - line-height: 1.6; -} -.xray-item-value strong { color: var(--text); } -.xray-item-value.gap { - color: var(--cta); - font-weight: 600; -} -.xray-tactics { - list-style: none; - display: flex; - flex-direction: column; - gap: 0.4rem; -} -.xray-tactics li { - font-size: 0.85rem; - color: var(--text-muted); - padding-left: 1.25rem; - position: relative; -} -.xray-tactics li::before { - content: ''; - position: absolute; - left: 0; - top: 0.5rem; - width: 6px; - height: 6px; - border-radius: 50%; - background: var(--cta); -} -.improved-hero { - background: var(--bg); - border: 1px solid var(--border-accent); - border-radius: 10px; - padding: 1.5rem; - margin-top: 1rem; -} -.improved-hero h4 { - font-size: 1.1rem; - font-weight: 700; - color: var(--accent-bright); - margin-bottom: 0.75rem; - line-height: 1.3; -} -.improved-hero p { - font-size: 0.85rem; - color: var(--text-muted); - line-height: 1.6; -} -.differentiator-list { - list-style: none; - margin-top: 1rem; -} -.differentiator-list li { - padding: 0.6rem 0; - border-bottom: 1px solid var(--border); - font-size: 0.85rem; - display: flex; - align-items: flex-start; - gap: 0.5rem; -} -.differentiator-list li:last-child { border: none; } -.diff-icon { - font-size: 0.8rem; - flex-shrink: 0; - margin-top: 0.1rem; -} -.diff-text { color: var(--text-muted); } -.diff-text strong { color: var(--text); } -.compliance-notes { - margin-top: 1rem; - padding: 1rem; - background: rgba(239, 68, 68, 0.05); - border: 1px solid rgba(239, 68, 68, 0.15); - border-radius: 8px; -} -.compliance-notes h5 { - font-family: var(--font-mono); - font-size: 0.72rem; - color: var(--cta); - text-transform: uppercase; - letter-spacing: 0.08em; - margin-bottom: 0.5rem; -} -.compliance-notes ul { - list-style: none; -} -.compliance-notes ul li { - font-size: 0.82rem; - color: #f87171; - padding-left: 1rem; - position: relative; - margin-bottom: 0.25rem; -} -.compliance-notes ul li::before { - content: '✕'; - position: absolute; - left: 0; - font-weight: 700; -} - -/* ── Demo C: Before/After Slider ── */ -.slider-container { - margin-top: 1.5rem; - position: relative; - background: var(--bg-card); - border: 1px solid var(--border); - border-radius: 12px; - overflow: hidden; -} -.slider-wrapper { - position: relative; - min-height: 460px; - user-select: none; -} -.slider-before, .slider-after { - padding: 2rem; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - overflow: hidden; -} -.slider-before { - z-index: 1; - background: #0d0a0a; -} -.slider-after { - z-index: 2; - clip-path: inset(0 50% 0 0); - background: var(--bg-card); -} -.slider-handle { - position: absolute; - top: 0; - bottom: 0; - left: 50%; - width: 4px; - background: var(--accent); - z-index: 10; - cursor: ew-resize; - transform: translateX(-50%); -} -.slider-handle::before { - content: '⟨⟩'; - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - width: 36px; - height: 36px; - background: var(--accent); - border-radius: 50%; - display: flex; - align-items: center; - justify-content: center; - font-size: 0.7rem; - font-weight: 700; - color: #050a08; - box-shadow: 0 0 20px var(--accent-glow-strong); -} -.slider-side-label { - font-family: var(--font-mono); - font-size: 0.68rem; - font-weight: 700; - text-transform: uppercase; - letter-spacing: 0.1em; - padding: 0.25rem 0.6rem; - border-radius: 4px; - display: inline-block; - margin-bottom: 1rem; -} -.slider-side-label.before { - background: rgba(239, 68, 68, 0.15); - color: var(--cta); -} -.slider-side-label.after { - background: rgba(16, 185, 129, 0.15); - color: var(--accent); -} -.slider-copy { - font-size: 0.9rem; - color: var(--text-muted); - line-height: 1.8; -} -.slider-copy h4 { - font-size: 1rem; - color: var(--text); - font-weight: 700; - margin: 0.75rem 0 0.5rem; -} -.slider-copy .highlight { - background: var(--accent-glow); - border-left: 2px solid var(--accent); - padding: 0.3rem 0.5rem; - margin: 0.35rem 0; - display: block; - border-radius: 0 4px 4px 0; -} -.slider-copy .lowlight { - background: rgba(239, 68, 68, 0.08); - border-left: 2px solid var(--cta); - padding: 0.3rem 0.5rem; - margin: 0.35rem 0; - display: block; - border-radius: 0 4px 4px 0; - text-decoration: line-through; - text-decoration-color: rgba(239, 68, 68, 0.4); -} -.annotation { - font-family: var(--font-mono); - font-size: 0.68rem; - color: var(--accent); - background: var(--accent-glow); - padding: 0.2rem 0.5rem; - border-radius: 4px; - display: inline-block; - margin: 0.3rem 0; -} - -/* ── Style Toggles ── */ -.toggle-group { - display: flex; - gap: 0.5rem; - margin-top: 1.5rem; - flex-wrap: wrap; -} -.toggle-btn { - font-family: var(--font-mono); - font-size: 0.78rem; - font-weight: 600; - padding: 0.5rem 1rem; - border: 1px solid var(--border-light); - border-radius: 8px; - background: transparent; - color: var(--text-muted); - cursor: pointer; - transition: all 0.2s; -} -.toggle-btn:hover { - border-color: var(--text-dim); - color: var(--text); -} -.toggle-btn.active { - background: var(--accent-glow); - border-color: var(--accent-dim); - color: var(--accent); -} -.toggle-btn.active.premium { - background: rgba(139, 92, 246, 0.12); - border-color: rgba(139, 92, 246, 0.3); - color: var(--purple); -} -.toggle-btn.active.dr { - background: rgba(239, 68, 68, 0.12); - border-color: rgba(239, 68, 68, 0.3); - color: var(--cta); -} -.toggle-btn.active.medical { - background: rgba(59, 130, 246, 0.12); - border-color: rgba(59, 130, 246, 0.3); - color: var(--blue); -} - -/* ── CTA Section ── */ -.cta-section { - text-align: center; - padding: 6rem 0; -} -.cta-section h2 { - margin-bottom: 0.75rem; -} -.cta-section .subtitle { - margin: 0 auto 2rem; - text-align: center; -} -.cta-actions { - display: flex; - flex-direction: column; - align-items: center; - gap: 1rem; -} -.cta-note { - font-family: var(--font-mono); - font-size: 0.72rem; - color: var(--text-dim); - margin-top: 0.5rem; -} - -/* ── Footer ── */ -footer { - margin-top: 0; - padding: 2rem 0; - border-top: 1px solid var(--border); - display: flex; - align-items: center; - justify-content: space-between; -} -footer p { - font-family: var(--font-mono); - font-size: 0.75rem; - color: var(--text-dim); -} -footer a { - color: var(--accent-dim); - text-decoration: none; -} -footer a:hover { - color: var(--accent); -} - -/* ── Responsive ── */ -@media (max-width: 900px) { - .dashboard-grid { grid-template-columns: repeat(2, 1fr); } - .offer-grid { grid-template-columns: 1fr; } - .split-screen { grid-template-columns: 1fr; } - .split-left { border-right: none; border-bottom: 1px solid var(--border); } - .card-grid-3 { grid-template-columns: 1fr; } - .chart-row { grid-template-columns: 100px 1fr 50px; } -} - -@media (max-width: 640px) { - .page { padding: 0 1rem; } - .section { padding: 3.5rem 0; } - .hero { padding: 3rem 0 2rem; } - h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); } - .hero-stats { gap: 1.5rem; } - .demo-input-row { flex-direction: column; } - .btn-generate { width: 100%; } - .dashboard-grid { grid-template-columns: 1fr 1fr; } - .asset-grid { grid-template-columns: 1fr; } - .btn-row { flex-direction: column; } - .btn-row .btn { width: 100%; justify-content: center; } - .slider-wrapper { min-height: 600px; } - .toggle-group { justify-content: center; } - footer { flex-direction: column; gap: 0.5rem; text-align: center; } -} -@media (max-width: 420px) { - .dashboard-grid { grid-template-columns: 1fr; } - .hero-stats { flex-direction: column; gap: 1rem; } - .nav-links a { font-size: 0.7rem; padding: 0.25rem 0.4rem; } -} diff --git a/html/index.html b/html/index.html deleted file mode 100644 index 311631e..0000000 --- a/html/index.html +++ /dev/null @@ -1,656 +0,0 @@ - - - - - - JustVitamin × QuikCue — AI Content Engine Proposal - - - - - - - - - - - - - - - - - -
- - -
-
- LIVE PROPOSAL - Prepared for JustVitamin — March 2026 -
-

- You don't have a content problem.
- You have a content engine problem. -

-

- What if one product input exploded into 12 ready-to-ship marketing assets in 30 seconds? - No briefs. No freelancers. No waiting. Just one system that never sleeps. -

- -
-
- 0 - Assets per product -
-
- 0 - Seconds to generate -
-
- 0 - Faster than manual -
-
- $0 - Cost per additional asset -
-
-
- - -
-
- -

Your content velocity is leaving revenue on the table

-

Here's what the data shows — and what changes when you turn on the engine.

-
- -
-
-
0
-
Assets created / week
-
↓ Current pace
-
-
-
0
-
Assets / week with engine
-
↑ 50x increase
-
-
-
0
-
Hours saved / week
-
↑ Reallocate to strategy
-
-
-
0
-
Avg conversion lift
-
↑ AI-optimized copy
-
-
- -
-
Content Production: Now vs. AI Engine
-
-
-
PDP Copy
-
-
-
-
2/wk
-
-
-
+ AI Engine
-
-
-
-
45/wk
-
-
-
Ad Creatives
-
-
-
-
3/wk
-
-
-
+ AI Engine
-
-
-
-
40/wk
-
-
-
Email / SMS
-
-
-
-
1/wk
-
-
-
+ AI Engine
-
-
-
-
35/wk
-
-
-
-
- - -
-
- -

Your AI Content Engine — built, trained, and deployed for JustVitamin

-

Not a generic tool. A custom system trained on your brand voice, your compliance rules, your customer data.

-
- -
- -
-

🧪 Proof of Concept

-

See it work on your actual products. Zero risk.

-
$0 for the first 7 days
-
    -
  • All 3 demos built for your catalog
  • -
  • 5 products run through the full engine
  • -
  • 12 assets per product generated
  • -
  • Side-by-side competitor analysis
  • -
  • PDP before/after with annotations
  • -
  • Full conversion audit report
  • -
- Start Free Proof → -
- - - -
- -
-

- 💡 ROI math: If the engine lifts conversion by just 5% on your top 10 SKUs, that's an estimated - $15k–40k/mo in additional revenue — for $2,500/mo. -

-
-
- - -
-
- ⚡ DEMO A -

One Product → 12 Assets in 30 Seconds

-

Enter a product. Press the button. Watch an entire marketing pack materialize.

-
- -
-
-
- - -
- -
-
- -
-
- 0 / 12 assets generated - -
- -
- -
-
- Hero Angle - #1 -
-
- "The Sunshine Vitamin 9 Out of 10 Americans Need More Of" -
    -
  • Targets: Fear of deficiency
  • -
  • Angle: Urgency + statistics
  • -
  • Best for: Facebook ads, PDP hero
  • -
-
-
- - -
-
- Hero Angle - #2 -
-
- "One Capsule. 5,000 IU. Zero Guesswork." -
    -
  • Targets: Simplicity seekers
  • -
  • Angle: Ease + precision dosing
  • -
  • Best for: Google Shopping, email
  • -
-
-
- - -
-
- Hero Angle - #3 -
-
- "What Your Multivitamin Isn't Giving You" -
    -
  • Targets: Existing supplement users
  • -
  • Angle: Gap in current routine
  • -
  • Best for: TikTok hooks, comparison ads
  • -
-
-
- - -
-
- PDP Copy - #4 -
-
- Headline: "Sunshine in a Capsule — High-Potency D3 Your Body Actually Absorbs"

- Bullets: -
    -
  • 5,000 IU per softgel — clinical-strength dose
  • -
  • Enhanced with MCT oil for 3x better absorption
  • -
  • 3rd-party tested for purity & potency
  • -
  • No artificial fillers, soy-free, gluten-free
  • -
  • 365 capsules — full year supply in one bottle
  • -
-
-
- - -
-
- FAQ Block - #5 -
-
- Q: How much D3 should I take daily?
- A: Most adults benefit from 2,000–5,000 IU daily. Our softgels deliver a precise 5,000 IU dose.

- Q: Can I take this with other supplements?
- A: Yes — D3 pairs especially well with K2 and magnesium for optimal calcium absorption.

- Q: When will I notice a difference?
- A: Most customers report improved energy and mood within 2–4 weeks of daily use. -
-
- - -
-
- 5 Ad Hooks - #6 -
-
-
    -
  • "Your doctor won't say this — but your D3 levels are probably tanked."
  • -
  • "I stopped buying cheap vitamin D after I saw my blood test."
  • -
  • "POV: You finally find a D3 that actually absorbs."
  • -
  • "$0.07/day for the vitamin that changes everything."
  • -
  • "3 signs you're D3 deficient (and don't know it)."
  • -
-
-
- - -
-
- - #7 -
-
- Subject 1: "Your bones called. They need this."
- Preview: The #1 vitamin deficiency in America — and the $0.07 fix

- Subject 2: "We tested 14 D3 brands. Here's what we found."
- Preview: Absorption rates ranged from 12% to 94%. Guess where ours landed.

- Subject 3: "Still taking your old D3? Read this first."
- Preview: Most D3 supplements use the wrong form. Here's what to look for. -
-
- - -
-
- TikTok / UGC Script - #8 -
-
- 15s Script — "The D3 Test"

- [0–3s] "Quick — do you know your Vitamin D level?"
- [3–7s] "42% of Americans are deficient. I was one of them."
- [7–12s] *holds up bottle* "This is the only D3 I trust. 5,000 IU, MCT oil for absorption, third-party tested."
- [12–15s] "Link in bio. Your future self will thank you."

- Hook: Personal story + stat = 2.3x avg watch time -
-
- - -
-
- Blog Outline - #9 -
-
- "The Complete Guide to Vitamin D3: Dosage, Benefits, and What Most Brands Get Wrong" -
    -
  • H2: Why 42% of Americans are D3 deficient
  • -
  • H2: D3 vs D2 — the form that actually works
  • -
  • H2: How MCT oil changes absorption rates
  • -
  • H2: The dosage debate: 1,000 IU vs 5,000 IU
  • -
  • H2: What to look for on the label (and what to avoid)
  • -
  • CTA: Shop JustVitamin D3 →
  • -
- SEO target: "best vitamin d3 supplement" — 33,100 mo/searches -
-
- - -
-
- Meta Title + Description - #10 -
-
- Title: JustVitamin D3 5000 IU — High-Absorption Sunshine Vitamin | 365 Count

- Description: Clinical-strength Vitamin D3 with MCT oil for 3x better absorption. 5,000 IU per softgel, 3rd-party tested, 365-day supply. Free shipping on orders $35+.

- 60 chars title / 155 chars desc — Google SERP optimized -
-
- - -
-
- Alt Text + Filenames - #11 -
-
- Hero image:
- Alt: "JustVitamin D3 5000 IU bottle with softgels on white background"
- File: justvitamin-d3-5000iu-bottle-front.jpg

- Lifestyle image:
- Alt: "Woman holding JustVitamin D3 softgel with morning sunlight"
- File: justvitamin-d3-lifestyle-morning-routine.jpg

- ADA-compliant alt text + SEO-friendly filenames -
-
- - -
-
- Bonus: A/B Variants - #12 -
-
- Variant A (Rational): "5,000 IU of D3 with MCT oil for 3x absorption. 365-day supply for $24.99."

- Variant B (Emotional): "Remember when you had energy? Your D3 levels might be the reason you don't."

- Variant C (Social Proof): "47,000+ customers switched to JustVitamin D3. Here's why they're not going back."

- Test all 3 — let data pick the winner -
-
-
- -
- - 12 files • PDP, Ads, Email, SEO, Scripts -
-
-
- - -
-
- 🔍 DEMO B -

Competitor X-Ray → Instant Offer Upgrade

-

Paste a competitor URL. We reverse-engineer their strategy and build a better version for JustVitamin.

-
- -
-
-
- - -
- -
-
- - -
- - -
-
- 🎨 DEMO C -

PDP Surgeon: Before / After Slider

-

Drag the slider to reveal the transformation. Every change is annotated with why it lifts conversion.

-
- -
- - - - -
- -
-
- -
- ✕ Before -
-

Vitamin D3 Supplement

-

Our Vitamin D3 supplement is a high-quality product that helps support bone health and immune function. Each capsule contains 5000 IU of Vitamin D3.

- -

Product Details

-

Made with quality ingredients

-

Supports overall health and wellness

-

Easy to swallow capsules

-

GMP certified facility

- -

Directions

-

Take one capsule daily with a meal or as directed by your healthcare professional.

- -

About Us

-

We are committed to providing high-quality supplements at affordable prices. Our products are manufactured in a GMP-certified facility.

-
-
- - -
- ✓ After — Optimized -
-

Sunshine in a Capsule — D3 Your Body Actually Absorbs

- ↑ Benefit-first headline: +34% scroll depth - -

5,000 IU of Vitamin D3 suspended in MCT oil for 3x better absorption — because a vitamin your body can't use is a vitamin you're wasting money on.

- ↑ Mechanism + contrast = credibility spike - -

Why 47,000+ Customers Switched

- ↑ Social proof in subhead: +18% time on page -

✓ Clinical-strength 5,000 IU — the dose research actually supports

-

✓ MCT oil carrier — fat-soluble vitamins need fat to absorb

-

✓ 365-day supply — one bottle, one year, one decision

-

✓ Batch-specific lab testing — scan the QR, see the report

- ↑ Checkmarks + specifics: +22% add-to-cart - -

$0.07/day. Less than a parking meter.

- ↑ Price reframe to daily cost: +15% conversion - -

Take one softgel each morning with breakfast. The MCT oil means you don't need to pair it with a fatty meal — it's built in.

- ↑ Usage clarity removes friction objection -
-
- - -
-
-
- -
-

- ← Drag the slider to compare · Every annotation shows the expected conversion impact → -

-
-
- - -
-
- -

Ready to turn your catalog into a content machine?

-

- We'll run your top 5 products through the engine live on a call. - You'll see the output in real time. If it doesn't blow your mind, we shake hands and walk away. -

- -
-
- - - - -
- - - - - diff --git a/html/js/app.js b/html/js/app.js deleted file mode 100644 index b8ea5f2..0000000 --- a/html/js/app.js +++ /dev/null @@ -1,378 +0,0 @@ -/* ════════════════════════════════════════════════════════════════ - JustVitamin × QuikCue — Interactive Demos & Animations - ════════════════════════════════════════════════════════════════ */ - -// ── Intersection Observer: Fade-in on scroll ── -document.addEventListener('DOMContentLoaded', () => { - const observer = new IntersectionObserver((entries) => { - entries.forEach(entry => { - if (entry.isIntersecting) { - entry.target.classList.add('visible'); - observer.unobserve(entry.target); - - // Trigger chart bars - const bars = entry.target.querySelectorAll('.chart-bar-fill[data-width]'); - bars.forEach((bar, i) => { - setTimeout(() => { - bar.style.width = bar.dataset.width + '%'; - }, i * 150); - }); - - // Trigger stat counters - const counters = entry.target.querySelectorAll('[data-count]'); - counters.forEach(el => animateCounter(el)); - } - }); - }, { threshold: 0.15, rootMargin: '0px 0px -50px 0px' }); - - document.querySelectorAll('.animate-on-scroll').forEach(el => observer.observe(el)); - - // ── Animate hero stats on load ── - setTimeout(() => { - document.querySelectorAll('.hero-stat-value[data-count]').forEach(el => animateCounter(el)); - }, 500); - - // ── Initialize slider ── - initSlider(); - - // ── Smooth scroll for nav links ── - document.querySelectorAll('a[href^="#"]').forEach(link => { - link.addEventListener('click', (e) => { - const target = document.querySelector(link.getAttribute('href')); - if (target) { - e.preventDefault(); - target.scrollIntoView({ behavior: 'smooth', block: 'start' }); - } - }); - }); - - // ── Active nav tracking ── - const sections = document.querySelectorAll('section[id]'); - const navLinks = document.querySelectorAll('.nav-links a'); - - const navObserver = new IntersectionObserver((entries) => { - entries.forEach(entry => { - if (entry.isIntersecting) { - const id = entry.target.getAttribute('id'); - navLinks.forEach(link => { - link.classList.toggle('active', link.getAttribute('href') === '#' + id); - }); - } - }); - }, { threshold: 0.3, rootMargin: '-80px 0px -50% 0px' }); - - sections.forEach(sec => navObserver.observe(sec)); -}); - -// ── Counter Animation ── -function animateCounter(el) { - const target = parseInt(el.dataset.count); - const suffix = el.dataset.suffix || ''; - const prefix = el.dataset.prefix || ''; - const duration = 1200; - const start = performance.now(); - - if (target === 0) { - el.textContent = prefix + '$0' + suffix; - return; - } - - function tick(now) { - const elapsed = now - start; - const progress = Math.min(elapsed / duration, 1); - const eased = 1 - Math.pow(1 - progress, 3); // ease-out cubic - const current = Math.round(target * eased); - el.textContent = prefix + current.toLocaleString() + suffix; - if (progress < 1) requestAnimationFrame(tick); - } - requestAnimationFrame(tick); -} - -// ════════════════════════════════════════════════════════════════ -// DEMO A: One Product → 12 Assets -// ════════════════════════════════════════════════════════════════ - -function runDemoA() { - const btn = document.getElementById('demoA-btn'); - const output = document.getElementById('demoA-output'); - const counter = document.getElementById('demoA-count'); - const timer = document.getElementById('demoA-timer'); - const download = document.getElementById('demoA-download'); - const cards = document.querySelectorAll('#demoA-assets .asset-card'); - - // Loading state - btn.classList.add('loading'); - btn.textContent = 'Generating...'; - output.classList.add('active'); - download.classList.remove('active'); - - // Reset cards - cards.forEach(c => c.classList.remove('revealed')); - let count = 0; - counter.textContent = '0'; - - const startTime = performance.now(); - - // Update timer - const timerInterval = setInterval(() => { - const elapsed = ((performance.now() - startTime) / 1000).toFixed(1); - timer.textContent = elapsed + 's'; - }, 100); - - // Reveal cards one by one - const revealNext = (index) => { - if (index >= cards.length) { - // Done! - clearInterval(timerInterval); - const totalTime = ((performance.now() - startTime) / 1000).toFixed(1); - timer.textContent = totalTime + 's ✓'; - btn.classList.remove('loading'); - btn.textContent = '✓ Pack Generated — Run Again?'; - btn.style.background = 'var(--accent)'; - btn.style.color = '#050a08'; - download.classList.add('active'); - - // Scroll to download - setTimeout(() => { - download.scrollIntoView({ behavior: 'smooth', block: 'center' }); - }, 300); - return; - } - - const card = cards[index]; - const delay = 150 + Math.random() * 200; // Varied timing feels more "real" - - setTimeout(() => { - card.classList.add('revealed'); - count++; - counter.textContent = count; - - // Scroll card into view - card.scrollIntoView({ behavior: 'smooth', block: 'nearest' }); - - revealNext(index + 1); - }, delay); - }; - - // Start reveal after "thinking" pause - setTimeout(() => revealNext(0), 800); -} - -// ════════════════════════════════════════════════════════════════ -// DEMO B: Competitor X-Ray -// ════════════════════════════════════════════════════════════════ - -function runDemoB() { - const btn = document.getElementById('demoB-btn'); - const output = document.getElementById('demoB-output'); - const left = document.getElementById('demoB-left'); - const right = document.getElementById('demoB-right'); - - // Loading state - btn.classList.add('loading'); - btn.textContent = 'Scanning...'; - btn.style.background = '#1e40af'; - - // Reset - left.classList.remove('revealed'); - right.classList.remove('revealed'); - - setTimeout(() => { - output.style.display = 'grid'; - output.scrollIntoView({ behavior: 'smooth', block: 'start' }); - - // Reveal left side first - setTimeout(() => { - left.classList.add('revealed'); - - // Then right side - setTimeout(() => { - right.classList.add('revealed'); - btn.classList.remove('loading'); - btn.textContent = '✓ X-Ray Complete — Try Another'; - btn.style.background = 'var(--accent)'; - btn.style.color = '#050a08'; - }, 800); - }, 600); - }, 1200); -} - -// ════════════════════════════════════════════════════════════════ -// DEMO C: Before/After Slider -// ════════════════════════════════════════════════════════════════ - -function initSlider() { - const wrapper = document.getElementById('slider-wrapper'); - const handle = document.getElementById('slider-handle'); - const after = document.getElementById('slider-after'); - - if (!wrapper || !handle || !after) return; - - let isDragging = false; - - const setPosition = (x) => { - const rect = wrapper.getBoundingClientRect(); - let percentage = ((x - rect.left) / rect.width) * 100; - percentage = Math.max(5, Math.min(95, percentage)); - - handle.style.left = percentage + '%'; - after.style.clipPath = `inset(0 ${100 - percentage}% 0 0)`; - }; - - // Mouse events - handle.addEventListener('mousedown', (e) => { - isDragging = true; - e.preventDefault(); - }); - - document.addEventListener('mousemove', (e) => { - if (!isDragging) return; - setPosition(e.clientX); - }); - - document.addEventListener('mouseup', () => { - isDragging = false; - }); - - // Touch events - handle.addEventListener('touchstart', (e) => { - isDragging = true; - e.preventDefault(); - }); - - document.addEventListener('touchmove', (e) => { - if (!isDragging) return; - setPosition(e.touches[0].clientX); - }); - - document.addEventListener('touchend', () => { - isDragging = false; - }); - - // Click anywhere on the wrapper to move slider - wrapper.addEventListener('click', (e) => { - setPosition(e.clientX); - }); -} - -// ── Style Toggle for Demo C ── - -const styleVariants = { - default: { - afterTitle: "Sunshine in a Capsule — D3 Your Body Actually Absorbs", - afterContent: ` - ✓ After — Optimized -

Sunshine in a Capsule — D3 Your Body Actually Absorbs

- ↑ Benefit-first headline: +34% scroll depth - -

5,000 IU of Vitamin D3 suspended in MCT oil for 3x better absorption — because a vitamin your body can't use is a vitamin you're wasting money on.

- ↑ Mechanism + contrast = credibility spike - -

Why 47,000+ Customers Switched

- ↑ Social proof in subhead: +18% time on page -

✓ Clinical-strength 5,000 IU — the dose research actually supports

-

✓ MCT oil carrier — fat-soluble vitamins need fat to absorb

-

✓ 365-day supply — one bottle, one year, one decision

-

✓ Batch-specific lab testing — scan the QR, see the report

- ↑ Checkmarks + specifics: +22% add-to-cart - -

$0.07/day. Less than a parking meter.

- ↑ Price reframe to daily cost: +15% conversion - -

Take one softgel each morning with breakfast. The MCT oil means you don't need to pair it with a fatty meal — it's built in.

- ↑ Usage clarity removes friction objection - ` - }, - premium: { - afterContent: ` - ✓ After — Premium Voice -

The D3 Supplement Refined for Those Who Refuse to Compromise

- ↑ Aspirational positioning: +28% AOV on premium segments - -

Pharmaceutical-grade Vitamin D3, precision-dosed at 5,000 IU, delivered in a bioavailable MCT oil matrix designed for optimal cellular uptake.

- ↑ Technical language signals quality: premium buyers respond to specificity - -

Engineered. Not Manufactured.

-

✓ Cholecalciferol sourced from pharmaceutical-grade lanolin

-

✓ MCT oil carrier from organic coconut — no palm derivatives

-

✓ Every batch independently verified — CoA available by QR

-

✓ 365-count — because a premium product shouldn't require monthly reorders

- ↑ Ingredient sourcing transparency: +41% trust score with $100k+ HHI - -

Your Daily Standard. Elevated.

- ↑ Identity-level CTA: "this is who I am" framing - -

One softgel with your morning ritual. No additional oil required — the delivery system handles absorption.

- ` - }, - dr: { - afterContent: ` - ✓ After — Direct Response -

WARNING: Your Vitamin D3 Supplement Might Be Doing Nothing

- ↑ Pattern interrupt headline: +52% click-through from ads - -

Here's the dirty secret the supplement industry won't tell you: Most D3 supplements use cheap dry powder that your body can barely absorb. You're literally flushing your money down the toilet.

- ↑ Problem agitation + insider language: builds urgency fast - -

The Fix Takes 2 Seconds a Day:

-

→ 5,000 IU per capsule (that's the REAL dose, not the wimpy 1,000 IU others sell)

-

→ MCT oil delivery = 3X better absorption (backed by published research)

-

→ 365 capsules per bottle = FULL YEAR SUPPLY for less than a coffee per month

-

→ Every single batch tested by an independent lab (we'll show you the report)

- ↑ Arrow bullets + emphasis caps: +38% read-through rate - -

⚡ 47,293 Customers Can't Be Wrong — Get Yours Before We Sell Out Again

- ↑ Exact social proof number + urgency/scarcity: +44% conversion - -

🔥 SPECIAL: Order today and get FREE shipping + our D3 Absorption Guide (PDF) — $19 value, yours free.

- ↑ Stacked bonuses: classic DR move, still works - ` - }, - medical: { - afterContent: ` - ✓ After — Medical-Safe -

Vitamin D3 (Cholecalciferol) 5,000 IU — High-Potency Dietary Supplement

- ↑ Clinical nomenclature: builds trust with health-conscious buyers - -

Each softgel provides 5,000 IU (125 mcg) of Vitamin D3 as cholecalciferol, delivered in a medium-chain triglyceride (MCT) oil base to support bioavailability.*

- ↑ Precise units (mcg + IU) + asterisk for disclaimer = FDA-compliant - -

Key Product Attributes

-

• Vitamin D contributes to the normal function of the immune system*

-

• Vitamin D is needed for normal calcium absorption and bone maintenance*

-

• Third-party tested for identity, purity, potency, and composition

-

• Free from: soy, gluten, dairy, artificial colors, and preservatives

-

• 365 softgels per container (12-month supply at 1 softgel/day)

- ↑ Structure/function claims only — no disease claims, fully compliant - -

Suggested Use

-

Take one (1) softgel daily with a meal, or as recommended by your healthcare practitioner. Do not exceed recommended daily intake.

- -

*These statements have not been evaluated by the Food and Drug Administration. This product is not intended to diagnose, treat, cure, or prevent any disease.

- ↑ FDA-mandated disclaimer: required for all supplement claims - ` - } -}; - -function switchStyle(style, clickedBtn) { - // Update toggle buttons - document.querySelectorAll('#demoC-toggles .toggle-btn').forEach(btn => { - btn.classList.remove('active'); - }); - clickedBtn.classList.add('active'); - - // Update after content - const afterCopy = document.getElementById('after-copy'); - const variant = styleVariants[style]; - if (variant && afterCopy) { - afterCopy.innerHTML = variant.afterContent; - } -} - -// ── Keyboard shortcut: press 1/2/3 to jump to demos ── -document.addEventListener('keydown', (e) => { - if (e.target.tagName === 'INPUT' || e.target.tagName === 'TEXTAREA') return; - if (e.key === '1') document.getElementById('demo-a')?.scrollIntoView({ behavior: 'smooth' }); - if (e.key === '2') document.getElementById('demo-b')?.scrollIntoView({ behavior: 'smooth' }); - if (e.key === '3') document.getElementById('demo-c')?.scrollIntoView({ behavior: 'smooth' }); -}); diff --git a/nginx.conf b/nginx.conf deleted file mode 100644 index eafe4be..0000000 --- a/nginx.conf +++ /dev/null @@ -1,32 +0,0 @@ -server { - listen 80; - server_name justvitamin.quikcue.com; - root /usr/share/nginx/html; - index index.html; - - absolute_redirect off; - - location / { - try_files $uri $uri/ =404; - } - - location /css/ { - expires 7d; - add_header Cache-Control "public, immutable"; - } - - location /js/ { - expires 7d; - add_header Cache-Control "public, immutable"; - } - - add_header X-Frame-Options "SAMEORIGIN" always; - add_header X-Content-Type-Options "nosniff" always; - add_header Referrer-Policy "strict-origin-when-cross-origin" always; - - gzip on; - gzip_types text/html text/css application/javascript text/plain; - gzip_min_length 256; - - error_page 404 /404.html; -} diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..4fb19d4 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +flask==3.1.0 +gunicorn==23.0.0 +requests==2.32.3 +beautifulsoup4==4.13.3 +google-genai==1.5.0 diff --git a/scraper.py b/scraper.py new file mode 100644 index 0000000..c6f59a3 --- /dev/null +++ b/scraper.py @@ -0,0 +1,197 @@ +"""Scrape product pages — JustVitamins specific + generic competitor.""" + +import requests +from bs4 import BeautifulSoup +import re, json + +HEADERS = { + "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 " + "(KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36" +} + + +def scrape_product(url: str) -> dict: + """Scrape a JV product URL and return structured product data.""" + r = requests.get(url, headers=HEADERS, timeout=15) + r.raise_for_status() + soup = BeautifulSoup(r.text, "html.parser") + + data = {} + + # Title + h1 = soup.select_one("h1[itemprop='name']") or soup.select_one("h1") + data["title"] = h1.get_text(strip=True) if h1 else "" + + # Subtitle + h2 = soup.select_one(".ProdDet h2") + data["subtitle"] = h2.get_text(strip=True) if h2 else "" + + # Price from offer microdata + offer_price = soup.select_one("meta[itemprop='price']") + if offer_price: + data["price"] = f"£{offer_price.get('content', '')}" + else: + price_match = re.search(r'£[\d.]+', soup.get_text()) + data["price"] = price_match.group(0) if price_match else "" + + # SKU + sku = soup.select_one("meta[itemprop='sku']") + data["sku"] = sku.get("content", "") if sku else "" + + # Images + images = [] + main_img = soup.select_one("img[itemprop='image']") + if main_img: + src = main_img.get("src", "") + if src and not src.startswith("http"): + src = "https://images.justvitamins.co.uk" + src + images.append(src) + for a in soup.select("#lightboxGallery a, .ThumbnailPhoto a"): + href = a.get("href", "") + if href: + if not href.startswith("http"): + href = "https://www.justvitamins.co.uk" + href + full = href.replace("/Fullsize/", "/Normal/").replace("/fullsize/", "/Normal/") + if full not in images and href not in images: + images.append(full if "Normal" in full else href) + data["images"] = images + + # Key benefits + benefits = [] + for li in soup.select(".ProdDet li"): + txt = li.get_text(strip=True) + if txt and 10 < len(txt) < 120: + skip = ["subscribe", "save", "free delivery", "pause", "never run out"] + if not any(s in txt.lower() for s in skip): + benefits.append(txt) + seen = set() + unique = [] + for b in benefits: + if b not in seen: + seen.add(b) + unique.append(b) + data["benefits"] = unique[:10] + + # Quantity + qty = "" + for text in soup.stripped_strings: + m = re.match(r'(\d+)\s*(tablets?|capsules?|softgels?)', text, re.I) + if m: + qty = text.strip() + break + data["quantity"] = qty + + # Per unit cost + per_unit = "" + for text in soup.stripped_strings: + if re.search(r'only\s+[\d.]+p\s+per', text, re.I): + per_unit = text.strip() + break + data["per_unit_cost"] = per_unit + + # Description + desc_parts = [] + found_about = False + for el in soup.select(".ProdDet h2, .ProdDet h3, .ProdDet p"): + txt = el.get_text(strip=True) + if "about this" in txt.lower(): + found_about = True + continue + if "product information" in txt.lower(): + break + if found_about and txt: + desc_parts.append(txt) + data["description"] = "\n".join(desc_parts) + + # EFSA health claims + claims = [] + for li in soup.select(".ProdDet li"): + txt = li.get_text(strip=True) + if any(k in txt.lower() for k in ["contributes", "maintenance of normal", + "normal function", "normal absorption"]): + claims.append(txt) + data["health_claims"] = list(dict.fromkeys(claims)) + + # Category from breadcrumbs + crumbs = [a.get_text(strip=True) for a in soup.select(".breadC a")] + data["category"] = crumbs[1] if len(crumbs) >= 2 else "" + + data["url"] = url + return data + + +def scrape_competitor(url: str) -> dict: + """Scrape any ecommerce product page and extract what we can.""" + r = requests.get(url, headers=HEADERS, timeout=15) + r.raise_for_status() + soup = BeautifulSoup(r.text, "html.parser") + text = soup.get_text(" ", strip=True) + + data = {"url": url, "raw_text": text[:5000]} + + # Title + h1 = soup.select_one("h1") + data["title"] = h1.get_text(strip=True) if h1 else "" + + # Meta description + meta = soup.select_one("meta[name='description']") + data["meta_description"] = meta.get("content", "") if meta else "" + + # OG data + og_title = soup.select_one("meta[property='og:title']") + og_desc = soup.select_one("meta[property='og:description']") + data["og_title"] = og_title.get("content", "") if og_title else "" + data["og_description"] = og_desc.get("content", "") if og_desc else "" + + # Price — try schema.org, then regex + price_meta = soup.select_one("meta[itemprop='price']") + if price_meta: + data["price"] = price_meta.get("content", "") + else: + price_match = re.search(r'[$£€][\d,.]+', text) + data["price"] = price_match.group(0) if price_match else "" + + # Bullets / features + bullets = [] + for li in soup.select("li"): + txt = li.get_text(strip=True) + if 15 < len(txt) < 200: + bullets.append(txt) + data["bullets"] = bullets[:15] + + # Images + images = [] + for img in soup.select("img[src]"): + src = img.get("src", "") + if src and any(ext in src.lower() for ext in [".jpg", ".png", ".webp"]): + if not src.startswith("http"): + from urllib.parse import urljoin + src = urljoin(url, src) + if src not in images: + images.append(src) + data["images"] = images[:5] + + # Brand from schema + brand = soup.select_one("[itemprop='brand']") + data["brand"] = brand.get_text(strip=True) if brand else "" + + # Description paragraphs + paras = [] + for p in soup.select("p"): + txt = p.get_text(strip=True) + if 30 < len(txt) < 500: + paras.append(txt) + data["description"] = "\n".join(paras[:8]) + + return data + + +if __name__ == "__main__": + import sys + url = sys.argv[1] if len(sys.argv) > 1 else \ + "https://www.justvitamins.co.uk/Bone-Health/Super-Strength-Vitamin-D3-4000iu-K2-MK-7-100mcg.aspx" + if "justvitamins" in url: + d = scrape_product(url) + else: + d = scrape_competitor(url) + print(json.dumps(d, indent=2)) diff --git a/static/css/style.css b/static/css/style.css new file mode 100644 index 0000000..a8667b4 --- /dev/null +++ b/static/css/style.css @@ -0,0 +1,149 @@ +/* JustVitamin × QuikCue — Live AI Engine */ +:root{--bg:#060a0f;--card:#0d1320;--card2:#111c2e;--border:#172035;--border2:#213050;--text:#e4eaf0;--text2:#8da0be;--muted:#506480;--accent:#10b981;--accent2:#34d399;--red:#ef4444;--red2:#fca5a5;--blue:#3b82f6;--purple:#8b5cf6;--gold:#f59e0b;--cyan:#06b6d4;--glow:rgba(16,185,129,.12)} +*{margin:0;padding:0;box-sizing:border-box} +html{scroll-behavior:smooth;scroll-padding-top:70px} +body{font-family:'Inter',system-ui,sans-serif;background:var(--bg);color:var(--text);line-height:1.65;-webkit-font-smoothing:antialiased} + +/* Nav */ +nav{position:sticky;top:0;z-index:100;background:rgba(6,10,15,.9);backdrop-filter:blur(14px);border-bottom:1px solid var(--border);padding:.7rem 1.5rem} +.nav-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between} +.logo{font-family:'JetBrains Mono',monospace;font-size:.9rem;font-weight:700;color:var(--accent);text-decoration:none}.logo .x{color:var(--muted);font-weight:400} +.nav-links{display:flex;gap:.2rem}.nav-links a{font-family:'JetBrains Mono',monospace;font-size:.75rem;color:var(--text2);text-decoration:none;padding:.35rem .6rem;border-radius:6px;transition:.15s}.nav-links a:hover{color:var(--text);background:var(--card)} + +.page{max-width:1100px;margin:0 auto;padding:0 1.5rem} + +/* Hero */ +.hero{padding:4.5rem 0 3rem;position:relative} +.hero::before{content:'';position:absolute;top:-30%;right:-15%;width:600px;height:600px;background:radial-gradient(circle,var(--glow),transparent 70%);pointer-events:none} +.hero>*{position:relative;z-index:1} +.eyebrow{font-family:'JetBrains Mono',monospace;font-size:.78rem;font-weight:600;color:var(--accent);margin-bottom:1.25rem;display:flex;align-items:center;gap:.5rem} +.pill{font-size:.65rem;background:rgba(16,185,129,.2);color:var(--accent2);padding:.2rem .6rem;border-radius:99px;border:1px solid rgba(16,185,129,.3);animation:pulse 2s infinite} +@keyframes pulse{0%,100%{opacity:1}50%{opacity:.6}} +h1{font-size:clamp(2.2rem,5.5vw,3.5rem);font-weight:800;line-height:1.08;letter-spacing:-.03em;margin-bottom:1rem} +.gr{background:linear-gradient(135deg,var(--accent),var(--cyan));-webkit-background-clip:text;-webkit-text-fill-color:transparent} +.sub{font-size:1.1rem;color:var(--text2);line-height:1.7;max-width:620px;margin-bottom:1.5rem}.sub strong{color:var(--text)} +.sub-sm{font-size:.88rem;color:var(--muted);margin-bottom:1rem} +.stats{display:flex;gap:2.5rem;margin-top:2.5rem;flex-wrap:wrap} +.stat{display:flex;flex-direction:column;gap:.1rem} +.stat .val{font-family:'JetBrains Mono',monospace;font-size:1.5rem;font-weight:800;color:var(--accent)} +.stat .lbl{font-size:.75rem;color:var(--muted);font-weight:500} + +/* Buttons */ +.btn-row{display:flex;flex-wrap:wrap;gap:.6rem;margin-bottom:1rem} +.btn{display:inline-flex;align-items:center;gap:.35rem;font-size:.85rem;font-weight:600;padding:.65rem 1.3rem;border-radius:9px;text-decoration:none;cursor:pointer;border:none;transition:.2s} +.btn.cta{background:var(--red);color:#fff}.btn.cta:hover{background:#f87171;transform:translateY(-2px);box-shadow:0 8px 25px rgba(239,68,68,.2)} +.btn.cta.lg{font-size:1rem;padding:.9rem 2rem;border-radius:11px} +.btn.ghost{background:transparent;color:var(--accent);border:1px solid rgba(16,185,129,.25)}.btn.ghost:hover{background:var(--glow)} +.btn.outline{background:transparent;color:var(--text2);border:1px solid var(--border2)}.btn.outline:hover{color:var(--text);border-color:var(--muted)} +.note{font-family:'JetBrains Mono',monospace;font-size:.7rem;color:var(--muted);margin-top:.5rem}.note a{color:var(--accent);text-decoration:none} + +/* Demo sections */ +.demo{padding:4rem 0;border-top:1px solid var(--border)} +.demo h2{font-size:clamp(1.5rem,4vw,2rem);font-weight:700;margin-bottom:.5rem} +.badge{font-family:'JetBrains Mono',monospace;font-size:.65rem;font-weight:700;padding:.25rem .65rem;border-radius:6px;display:inline-block;margin-bottom:.75rem} +.badge.red{background:rgba(239,68,68,.15);color:var(--red);border:1px solid rgba(239,68,68,.25)} +.badge.blue{background:rgba(59,130,246,.15);color:var(--blue);border:1px solid rgba(59,130,246,.25)} +.badge.purple{background:rgba(139,92,246,.15);color:var(--purple);border:1px solid rgba(139,92,246,.25)} + +/* Input cards */ +.input-card{background:var(--card);border:1px solid var(--border);border-radius:12px;padding:1.5rem;margin:1.5rem 0} +.input-row{display:flex;gap:.75rem;align-items:flex-end} +.input-group{flex:1;display:flex;flex-direction:column;gap:.3rem} +.input-group label{font-family:'JetBrains Mono',monospace;font-size:.68rem;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.06em} +.input-group input{background:var(--bg);border:1px solid var(--border2);border-radius:8px;padding:.65rem 1rem;color:var(--text);font-size:.88rem;outline:none;transition:.2s;width:100%} +.input-group input:focus{border-color:var(--accent);box-shadow:0 0 0 3px var(--glow)} +.btn-gen{font-family:'JetBrains Mono',monospace;font-size:.82rem;font-weight:700;padding:.65rem 1.4rem;border:none;border-radius:8px;color:#fff;cursor:pointer;white-space:nowrap;transition:.2s} +.btn-gen.red{background:var(--red)}.btn-gen.blue{background:var(--blue)}.btn-gen.purple{background:var(--purple)} +.btn-gen:hover{opacity:.9;transform:translateY(-1px)} +.btn-gen:disabled{opacity:.5;cursor:not-allowed} +.btn-gen.loading{position:relative;color:rgba(255,255,255,.6)} +.btn-gen.loading::after{content:'';display:inline-block;width:14px;height:14px;border:2px solid rgba(255,255,255,.3);border-top-color:#fff;border-radius:50%;animation:spin .6s linear infinite;margin-left:.5rem} +@keyframes spin{to{transform:rotate(360deg)}} + +/* Step bar */ +.step-bar{display:flex;gap:.75rem;margin-top:1rem} +.step{flex:1;background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:.6rem .8rem;position:relative;overflow:hidden} +.step .step-label{font-size:.7rem;color:var(--muted);font-weight:600;display:block} +.step .step-status{font-size:.75rem;font-weight:600;color:var(--text2)} +.step.active .step-status{color:var(--cyan)} +.step.done .step-status{color:var(--accent)} +.step.error .step-status{color:var(--red)} +.step::after{content:'';position:absolute;bottom:0;left:0;height:2px;width:0;transition:.3s} +.step.active::after{width:100%;background:var(--cyan);animation:pulse 1.2s infinite} +.step.done::after{width:100%;background:var(--accent)} +.step.error::after{width:100%;background:var(--red)} + +/* Output */ +.output{margin-top:1.5rem}.hidden{display:none} + +.output-meta{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1rem} +.chip{background:var(--card);border:1px solid var(--border);border-radius:6px;padding:.35rem .7rem;font-size:.72rem;color:var(--text2)}.chip strong{color:var(--cyan)} + +/* Asset grid */ +.asset-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(310px,1fr));gap:.75rem} +.asset-card{background:var(--card);border:1px solid var(--border);border-radius:10px;padding:1.2rem;animation:fadeUp .4s ease both} +@keyframes fadeUp{from{opacity:0;transform:translateY(15px)}to{opacity:1;transform:translateY(0)}} +.asset-card-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:.6rem} +.asset-type{font-family:'JetBrains Mono',monospace;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:.15rem .45rem;border-radius:4px} +.asset-type.hero{background:rgba(239,68,68,.12);color:var(--red)} +.asset-type.pdp{background:rgba(16,185,129,.12);color:var(--accent)} +.asset-type.ad{background:rgba(245,158,11,.12);color:var(--gold)} +.asset-type.email{background:rgba(59,130,246,.12);color:var(--blue)} +.asset-type.video{background:rgba(139,92,246,.12);color:var(--purple)} +.asset-type.blog{background:rgba(236,72,153,.12);color:#ec4899} +.asset-type.seo{background:rgba(99,102,241,.12);color:#6366f1} +.asset-type.a11y{background:rgba(107,114,128,.12);color:#9ca3af} +.asset-num{font-family:'JetBrains Mono',monospace;font-size:.65rem;color:var(--muted)} +.asset-body{font-size:.84rem;color:var(--text2);line-height:1.65} +.asset-body strong{color:var(--text)}.asset-body ul{list-style:none;margin-top:.4rem}.asset-body li{padding-left:.9rem;position:relative;margin-bottom:.25rem}.asset-body li::before{content:'›';position:absolute;left:0;color:var(--accent);font-weight:700} + +/* Image section */ +.img-section{margin-top:1.5rem}.img-section h3{font-size:1.1rem;font-weight:700;margin-bottom:.35rem} +.img-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:.75rem;margin-top:.75rem} +.img-card{background:var(--card);border:1px solid var(--border);border-radius:10px;overflow:hidden} +.img-card img{width:100%;aspect-ratio:1;object-fit:cover} +.img-card.wide img{aspect-ratio:16/9} +.img-card .caption{padding:.75rem 1rem;font-size:.78rem;color:var(--text2)}.img-card .caption strong{color:var(--text)} + +/* Split screen */ +.split{display:grid;grid-template-columns:1fr 1fr;gap:0;border:1px solid var(--border);border-radius:12px;overflow:hidden;min-height:400px} +.split-left{background:#0d0a0a;padding:1.5rem;border-right:1px solid var(--border)} +.split-right{background:var(--card);padding:1.5rem} +.split-label{font-family:'JetBrains Mono',monospace;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;padding:.2rem .5rem;border-radius:4px;display:inline-block;margin-bottom:.75rem} +.split-label.bad{background:rgba(239,68,68,.15);color:var(--red)} +.split-label.good{background:rgba(16,185,129,.15);color:var(--accent)} +.xray-item{margin-bottom:1.1rem} +.xray-label{font-family:'JetBrains Mono',monospace;font-size:.68rem;font-weight:600;color:var(--muted);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.25rem} +.xray-val{font-size:.86rem;color:var(--text2);line-height:1.6}.xray-val strong{color:var(--text)} +.xray-val.gap{color:var(--red);font-weight:600} +.xray-tactics{list-style:none}.xray-tactics li{font-size:.84rem;color:var(--text2);padding-left:1.2rem;position:relative;margin-bottom:.35rem}.xray-tactics li::before{content:'';position:absolute;left:0;top:.5rem;width:6px;height:6px;border-radius:50%;background:var(--red)} +.improved-hero{background:var(--bg);border:1px solid rgba(16,185,129,.2);border-radius:10px;padding:1.25rem;margin-bottom:1rem} +.improved-hero h4{font-size:1.05rem;font-weight:700;color:var(--accent2);margin-bottom:.5rem;line-height:1.3} +.improved-hero p{font-size:.84rem;color:var(--text2);line-height:1.6} +.diff-list{list-style:none;margin-top:.75rem}.diff-list li{padding:.5rem 0;border-bottom:1px solid var(--border);font-size:.84rem;display:flex;gap:.5rem}.diff-list li:last-child{border:none} +.diff-list .icon{flex-shrink:0}.diff-list .txt{color:var(--text2)}.diff-list .txt strong{color:var(--text)} +.compliance{margin-top:1rem;padding:.75rem 1rem;background:rgba(239,68,68,.05);border:1px solid rgba(239,68,68,.15);border-radius:8px} +.compliance h5{font-family:'JetBrains Mono',monospace;font-size:.68rem;color:var(--red);text-transform:uppercase;letter-spacing:.06em;margin-bottom:.4rem} +.compliance ul{list-style:none}.compliance li{font-size:.78rem;color:#f87171;padding-left:.8rem;position:relative;margin-bottom:.2rem}.compliance li::before{content:'✕';position:absolute;left:0;font-weight:700} + +/* Toggles */ +.toggle-group{display:flex;gap:.4rem;margin-top:1rem;flex-wrap:wrap} +.toggle{font-family:'JetBrains Mono',monospace;font-size:.75rem;font-weight:600;padding:.45rem .9rem;border:1px solid var(--border2);border-radius:7px;background:transparent;color:var(--muted);cursor:pointer;transition:.2s} +.toggle:hover{border-color:var(--text2);color:var(--text)} +.toggle.active{background:var(--glow);border-color:var(--accent);color:var(--accent)} + +/* Annotation */ +.ann{font-family:'JetBrains Mono',monospace;font-size:.65rem;color:var(--accent);background:var(--glow);padding:.15rem .4rem;border-radius:4px;display:inline-block;margin:.25rem 0} +.highlight{background:var(--glow);border-left:2px solid var(--accent);padding:.25rem .5rem;margin:.3rem 0;display:block;border-radius:0 4px 4px 0;font-size:.84rem;color:var(--text2)} + +/* CTA */ +.cta-section{text-align:center;padding:5rem 0} +.cta-section h2{margin-bottom:.5rem} + +/* Footer */ +footer{padding:1.5rem 0;border-top:1px solid var(--border);display:flex;justify-content:space-between;font-family:'JetBrains Mono',monospace;font-size:.72rem;color:var(--muted)} +footer a{color:var(--accent);text-decoration:none} + +/* Responsive */ +@media(max-width:800px){.input-row{flex-direction:column}.btn-gen{width:100%}.split{grid-template-columns:1fr}.split-left{border-right:none;border-bottom:1px solid var(--border)}.stats{gap:1.25rem}.step-bar{flex-direction:column;gap:.4rem}footer{flex-direction:column;gap:.3rem;text-align:center}} +@media(max-width:500px){.nav-links a{font-size:.68rem;padding:.25rem .4rem}.btn-row{flex-direction:column}.btn{width:100%;justify-content:center}} diff --git a/static/dashboard/index.html b/static/dashboard/index.html new file mode 100644 index 0000000..1b84387 --- /dev/null +++ b/static/dashboard/index.html @@ -0,0 +1,909 @@ + + + + + +JV Ecommerce — Dynamic Performance Report + + + + +
+
+
+

JV Vitamins — Ecommerce Performance Report

+
Dynamic analysis with date filtering — data loaded from CSV export
+
+
+
+
+
+
+
+ + +
+ + +to + + + +
+ + + + + + + +
+
+
+ +
Loading data…
+ + +
+ + + + diff --git a/static/dashboard/jv_data.json b/static/dashboard/jv_data.json new file mode 100644 index 0000000..e483587 --- /dev/null +++ b/static/dashboard/jv_data.json @@ -0,0 +1 @@ +{"monthly": [{"YearMonth": "2005-11", "revenue": 37.849901, "orders": 2, "aov": 18.9249505, "customers": 2, "newCustomers": 2, "avgShipping": 0.0, "freeShipPct": 1.0, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 1.5, "totalShipping": 0.0, "freeShipOrders": 2, "discountOrders": 0, "totalItems": 3.0}, {"YearMonth": "2005-12", "revenue": 17.9, "orders": 1, "aov": 17.9, "customers": 1, "newCustomers": 1, "avgShipping": 0.0, "freeShipPct": 1.0, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 2.0, "totalShipping": 0.0, "freeShipOrders": 1, "discountOrders": 0, "totalItems": 2.0}, {"YearMonth": "2006-01", "revenue": 106.44969900000001, "orders": 4, "aov": 26.612424750000002, "customers": 1, "newCustomers": 0, "avgShipping": 0.0, "freeShipPct": 1.0, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 2.25, "totalShipping": 0.0, "freeShipOrders": 4, "discountOrders": 0, "totalItems": 9.0}, {"YearMonth": "2006-02", "revenue": 121.100002, "orders": 5, "aov": 24.2200004, "customers": 4, "newCustomers": 3, "avgShipping": 0.8, "freeShipPct": 0.6, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 2.0, "totalShipping": 4.0, "freeShipOrders": 3, "discountOrders": 0, "totalItems": 10.0}, {"YearMonth": "2006-03", "revenue": 2284.330004, "orders": 111, "aov": 20.579549585585585, "customers": 103, "newCustomers": 102, "avgShipping": 0.4954954954954955, "freeShipPct": 0.7927927927927928, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 1.945945945945946, "totalShipping": 55.0, "freeShipOrders": 88, "discountOrders": 0, "totalItems": 216.0}, {"YearMonth": "2006-04", "revenue": 2960.534808, "orders": 171, "aov": 17.31306905263158, "customers": 160, "newCustomers": 157, "avgShipping": 0.52046783625731, "freeShipPct": 0.7660818713450293, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 1.5847953216374269, "totalShipping": 89.0, "freeShipOrders": 131, "discountOrders": 0, "totalItems": 271.0}, {"YearMonth": "2006-05", "revenue": 4318.036409, "orders": 244, "aov": 17.696870528688525, "customers": 235, "newCustomers": 222, "avgShipping": 0.38934426229508196, "freeShipPct": 0.8155737704918032, "avgMargin": 100.0, "discountPct": 0.004098360655737705, "avgItems": 1.569672131147541, "totalShipping": 95.0, "freeShipOrders": 199, "discountOrders": 1, "totalItems": 383.0}, {"YearMonth": "2006-06", "revenue": 4865.121922, "orders": 265, "aov": 18.358950649056606, "customers": 256, "newCustomers": 232, "avgShipping": 0.4075471698113208, "freeShipPct": 0.8150943396226416, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 1.679245283018868, "totalShipping": 108.0, "freeShipOrders": 216, "discountOrders": 0, "totalItems": 445.0}, {"YearMonth": "2006-07", "revenue": 5482.026914, "orders": 302, "aov": 18.152407, "customers": 288, "newCustomers": 247, "avgShipping": 0.48344370860927155, "freeShipPct": 0.7715231788079471, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 1.509933774834437, "totalShipping": 146.0, "freeShipOrders": 233, "discountOrders": 0, "totalItems": 456.0}, {"YearMonth": "2006-08", "revenue": 5640.698835, "orders": 283, "aov": 19.93179800353357, "customers": 264, "newCustomers": 223, "avgShipping": 0.5830388692579506, "freeShipPct": 0.734982332155477, "avgMargin": 100.0, "discountPct": 0.0035335689045936395, "avgItems": 1.5865724381625441, "totalShipping": 165.0, "freeShipOrders": 208, "discountOrders": 1, "totalItems": 449.0}, {"YearMonth": "2006-09", "revenue": 6828.857686, "orders": 369, "aov": 18.50638939295393, "customers": 353, "newCustomers": 295, "avgShipping": 0.5013550135501355, "freeShipPct": 0.7615176151761518, "avgMargin": 100.0, "discountPct": 0.08672086720867209, "avgItems": 1.6883468834688347, "totalShipping": 185.0, "freeShipOrders": 281, "discountOrders": 32, "totalItems": 623.0}, {"YearMonth": "2006-10", "revenue": 8775.654862, "orders": 473, "aov": 18.55318152642706, "customers": 442, "newCustomers": 346, "avgShipping": 0.5433403805496829, "freeShipPct": 0.7420718816067653, "avgMargin": 100.0, "discountPct": 0.080338266384778, "avgItems": 1.744186046511628, "totalShipping": 257.0, "freeShipOrders": 351, "discountOrders": 38, "totalItems": 825.0}, {"YearMonth": "2006-11", "revenue": 8036.807243, "orders": 452, "aov": 17.78054699778761, "customers": 421, "newCustomers": 324, "avgShipping": 0.5619469026548672, "freeShipPct": 0.7323008849557522, "avgMargin": 100.0, "discountPct": 0.0420353982300885, "avgItems": 1.6283185840707965, "totalShipping": 254.0, "freeShipOrders": 331, "discountOrders": 19, "totalItems": 736.0}, {"YearMonth": "2006-12", "revenue": 8702.449861, "orders": 457, "aov": 19.042559870897154, "customers": 432, "newCustomers": 344, "avgShipping": 0.3413566739606127, "freeShipPct": 0.8358862144420132, "avgMargin": 100.0, "discountPct": 0.002188183807439825, "avgItems": 1.5273522975929978, "totalShipping": 156.0, "freeShipOrders": 382, "discountOrders": 1, "totalItems": 698.0}, {"YearMonth": "2007-01", "revenue": 11486.135416, "orders": 639, "aov": 17.975172794992172, "customers": 582, "newCustomers": 466, "avgShipping": 0.46322378716744916, "freeShipPct": 0.7793427230046949, "avgMargin": 100.0, "discountPct": 0.004694835680751174, "avgItems": 1.5086071987480438, "totalShipping": 296.0, "freeShipOrders": 498, "discountOrders": 3, "totalItems": 964.0}, {"YearMonth": "2007-02", "revenue": 12216.326396, "orders": 660, "aov": 18.50958544848485, "customers": 467, "newCustomers": 341, "avgShipping": 0.31212121212121213, "freeShipPct": 0.8545454545454545, "avgMargin": 100.0, "discountPct": 0.0030303030303030303, "avgItems": 1.5242424242424242, "totalShipping": 206.0, "freeShipOrders": 564, "discountOrders": 2, "totalItems": 1006.0}, {"YearMonth": "2007-03", "revenue": 10783.237444, "orders": 555, "aov": 19.429256655855855, "customers": 462, "newCustomers": 329, "avgShipping": 0.4126126126126126, "freeShipPct": 0.8108108108108109, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 1.6, "totalShipping": 229.0, "freeShipOrders": 450, "discountOrders": 0, "totalItems": 888.0}, {"YearMonth": "2007-04", "revenue": 8828.669935, "orders": 452, "aov": 19.53245560840708, "customers": 380, "newCustomers": 246, "avgShipping": 0.5331858407079646, "freeShipPct": 0.7588495575221239, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 1.6261061946902655, "totalShipping": 241.0, "freeShipOrders": 343, "discountOrders": 0, "totalItems": 735.0}, {"YearMonth": "2007-05", "revenue": 9860.62886, "orders": 515, "aov": 19.146852155339808, "customers": 439, "newCustomers": 271, "avgShipping": 0.45048543689320386, "freeShipPct": 0.7902912621359224, "avgMargin": 100.0, "discountPct": 0.02912621359223301, "avgItems": 1.6699029126213591, "totalShipping": 232.0, "freeShipOrders": 407, "discountOrders": 15, "totalItems": 860.0}, {"YearMonth": "2007-06", "revenue": 10580.481154, "orders": 533, "aov": 19.850808919324578, "customers": 506, "newCustomers": 352, "avgShipping": 1.0281425891181988, "freeShipPct": 0.551594746716698, "avgMargin": 100.0, "discountPct": 0.024390243902439025, "avgItems": 1.6153846153846154, "totalShipping": 548.0, "freeShipOrders": 294, "discountOrders": 13, "totalItems": 861.0}, {"YearMonth": "2007-07", "revenue": 11018.502634, "orders": 524, "aov": 21.02767678244275, "customers": 505, "newCustomers": 359, "avgShipping": 1.0534351145038168, "freeShipPct": 0.5438931297709924, "avgMargin": 100.0, "discountPct": 0.0, "avgItems": 1.6469465648854962, "totalShipping": 552.0, "freeShipOrders": 285, "discountOrders": 0, "totalItems": 863.0}, {"YearMonth": "2007-08", "revenue": 10025.919848, "orders": 491, "aov": 20.41938869246436, "customers": 475, "newCustomers": 318, "avgShipping": 1.0814663951120163, "freeShipPct": 0.5437881873727087, "avgMargin": 100.0, "discountPct": 0.008146639511201629, "avgItems": 1.680244399185336, "totalShipping": 531.0, "freeShipOrders": 267, "discountOrders": 4, "totalItems": 825.0}, {"YearMonth": "2007-09", "revenue": 9671.657874999999, "orders": 493, "aov": 19.617967292089247, "customers": 478, "newCustomers": 314, "avgShipping": 1.0730223123732252, "freeShipPct": 0.5314401622718052, "avgMargin": 100.0, "discountPct": 0.004056795131845842, "avgItems": 1.6308316430020284, "totalShipping": 529.0, "freeShipOrders": 262, "discountOrders": 2, "totalItems": 804.0}, {"YearMonth": "2007-10", "revenue": 10699.951841, "orders": 456, "aov": 23.464806668859648, "customers": 440, "newCustomers": 275, "avgShipping": 1.0285087719298245, "freeShipPct": 0.5614035087719298, "avgMargin": 100.0, "discountPct": 0.008771929824561403, "avgItems": 1.9605263157894737, "totalShipping": 469.0, "freeShipOrders": 256, "discountOrders": 4, "totalItems": 894.0}, {"YearMonth": "2007-11", "revenue": 9619.884786, "orders": 467, "aov": 20.599325023554606, "customers": 458, "newCustomers": 297, "avgShipping": 0.8950749464668094, "freeShipPct": 0.6188436830835118, "avgMargin": 100.0, "discountPct": 0.0021413276231263384, "avgItems": 1.721627408993576, "totalShipping": 418.0, "freeShipOrders": 289, "discountOrders": 1, "totalItems": 804.0}, {"YearMonth": "2007-12", "revenue": 7706.746846999999, "orders": 374, "aov": 20.60627499197861, "customers": 360, "newCustomers": 220, "avgShipping": 1.1844919786096257, "freeShipPct": 0.5053475935828877, "avgMargin": 100.0, "discountPct": 0.00267379679144385, "avgItems": 1.6737967914438503, "totalShipping": 443.0, "freeShipOrders": 189, "discountOrders": 1, "totalItems": 626.0}, {"YearMonth": "2008-01", "revenue": 13241.55782, "orders": 654, "aov": 20.247030305810398, "customers": 627, "newCustomers": 394, "avgShipping": 1.0321100917431192, "freeShipPct": 0.5581039755351682, "avgMargin": 100.0, "discountPct": 0.0030581039755351682, "avgItems": 1.6422018348623852, "totalShipping": 675.0, "freeShipOrders": 365, "discountOrders": 2, "totalItems": 1074.0}, {"YearMonth": "2008-02", "revenue": 11032.04128, "orders": 521, "aov": 21.174743339731286, "customers": 506, "newCustomers": 322, "avgShipping": 1.182341650671785, "freeShipPct": 0.4894433781190019, "avgMargin": 100.0, "discountPct": 0.003838771593090211, "avgItems": 1.7562380038387715, "totalShipping": 616.0, "freeShipOrders": 255, "discountOrders": 2, "totalItems": 915.0}, {"YearMonth": "2008-03", "revenue": 12668.591699999999, "orders": 625, "aov": 20.269746719999997, "customers": 598, "newCustomers": 378, "avgShipping": 1.1264, "freeShipPct": 0.5264, "avgMargin": 100.0, "discountPct": 0.0048, "avgItems": 1.672, "totalShipping": 704.0, "freeShipOrders": 329, "discountOrders": 3, "totalItems": 1045.0}, {"YearMonth": "2008-04", "revenue": 10661.053659, "orders": 565, "aov": 18.869121520353982, "customers": 538, "newCustomers": 334, "avgShipping": 1.0212389380530973, "freeShipPct": 0.5557522123893806, "avgMargin": 100.0, "discountPct": 0.0017699115044247787, "avgItems": 1.4849557522123893, "totalShipping": 577.0, "freeShipOrders": 314, "discountOrders": 1, "totalItems": 839.0}, {"YearMonth": "2008-05", "revenue": 12053.633878999999, "orders": 613, "aov": 19.66335053670473, "customers": 600, "newCustomers": 394, "avgShipping": 1.2120717781402937, "freeShipPct": 0.4910277324632953, "avgMargin": 100.0, "discountPct": 0.0016313213703099511, "avgItems": 1.5432300163132138, "totalShipping": 743.0, "freeShipOrders": 301, "discountOrders": 1, "totalItems": 946.0}, {"YearMonth": "2008-06", "revenue": 17484.727841, "orders": 877, "aov": 19.936975873432154, "customers": 843, "newCustomers": 559, "avgShipping": 1.1573546180159635, "freeShipPct": 0.5051311288483467, "avgMargin": 100.0, "discountPct": 0.0011402508551881414, "avgItems": 1.6009122006841505, "totalShipping": 1015.0, "freeShipOrders": 443, "discountOrders": 1, "totalItems": 1404.0}, {"YearMonth": "2008-07", "revenue": 16038.55416, "orders": 833, "aov": 19.253966578631452, "customers": 801, "newCustomers": 542, "avgShipping": 1.2112845138055222, "freeShipPct": 0.49939975990396157, "avgMargin": 100.0, "discountPct": 0.04081632653061224, "avgItems": 1.625450180072029, "totalShipping": 1009.0, "freeShipOrders": 416, "discountOrders": 34, "totalItems": 1354.0}, {"YearMonth": "2008-08", "revenue": 21201.507049, "orders": 1148, "aov": 18.468211715156794, "customers": 1115, "newCustomers": 805, "avgShipping": 1.348432055749129, "freeShipPct": 0.4355400696864111, "avgMargin": 100.0, "discountPct": 0.08623693379790941, "avgItems": 1.6506968641114983, "totalShipping": 1548.0, "freeShipOrders": 500, "discountOrders": 99, "totalItems": 1895.0}, {"YearMonth": "2008-09", "revenue": 19294.511739999998, "orders": 964, "aov": 20.01505367219917, "customers": 944, "newCustomers": 628, "avgShipping": 1.2365145228215768, "freeShipPct": 0.4823651452282158, "avgMargin": 100.0, "discountPct": 0.008298755186721992, "avgItems": 1.6348547717842323, "totalShipping": 1192.0, "freeShipOrders": 465, "discountOrders": 8, "totalItems": 1576.0}, {"YearMonth": "2008-10", "revenue": 24813.099453, "orders": 1217, "aov": 20.38874236072309, "customers": 1164, "newCustomers": 833, "avgShipping": 1.1503697617091209, "freeShipPct": 0.5069843878389483, "avgMargin": 100.0, "discountPct": 0.0049301561216105174, "avgItems": 1.5677896466721446, "totalShipping": 1400.0, "freeShipOrders": 617, "discountOrders": 6, "totalItems": 1908.0}, {"YearMonth": "2008-11", "revenue": 25440.504521, "orders": 1248, "aov": 20.38501964823718, "customers": 1209, "newCustomers": 838, "avgShipping": 1.3233173076923077, "freeShipPct": 0.4639423076923077, "avgMargin": 100.0, "discountPct": 0.004807692307692308, "avgItems": 1.5625, "totalShipping": 1651.5, "freeShipOrders": 579, "discountOrders": 6, "totalItems": 1950.0}, {"YearMonth": "2008-12", "revenue": 20314.958828, "orders": 988, "aov": 20.56169921862348, "customers": 960, "newCustomers": 640, "avgShipping": 1.5779352226720649, "freeShipPct": 0.42105263157894735, "avgMargin": 100.0, "discountPct": 0.0010121457489878543, "avgItems": 1.6437246963562753, "totalShipping": 1559.0, "freeShipOrders": 416, "discountOrders": 1, "totalItems": 1624.0}, {"YearMonth": "2009-01", "revenue": 35097.499565, "orders": 1668, "aov": 21.041666405875297, "customers": 1593, "newCustomers": 1097, "avgShipping": 1.5260791366906474, "freeShipPct": 0.4196642685851319, "avgMargin": 100.0, "discountPct": 0.006594724220623501, "avgItems": 1.7326139088729018, "totalShipping": 2545.5, "freeShipOrders": 700, "discountOrders": 11, "totalItems": 2890.0}, {"YearMonth": "2009-02", "revenue": 32899.380604, "orders": 1487, "aov": 22.12466752118359, "customers": 1414, "newCustomers": 936, "avgShipping": 1.457296570275723, "freeShipPct": 0.425689307330195, "avgMargin": 100.0, "discountPct": 0.0033624747814391394, "avgItems": 1.7316745124411568, "totalShipping": 2167.0, "freeShipOrders": 633, "discountOrders": 5, "totalItems": 2575.0}, {"YearMonth": "2009-03", "revenue": 37236.189317, "orders": 1725, "aov": 21.586196705507245, "customers": 1643, "newCustomers": 1102, "avgShipping": 1.4373913043478261, "freeShipPct": 0.45971014492753626, "avgMargin": 100.0, "discountPct": 0.00463768115942029, "avgItems": 1.6718840579710146, "totalShipping": 2479.5, "freeShipOrders": 793, "discountOrders": 8, "totalItems": 2884.0}, {"YearMonth": "2009-04", "revenue": 37295.261615, "orders": 1697, "aov": 21.977172430760167, "customers": 1613, "newCustomers": 1121, "avgShipping": 1.4210371243370654, "freeShipPct": 0.4384207424867413, "avgMargin": 100.0, "discountPct": 0.0041249263406010605, "avgItems": 1.708898055391868, "totalShipping": 2411.5, "freeShipOrders": 744, "discountOrders": 7, "totalItems": 2900.0}, {"YearMonth": "2009-05", "revenue": 44428.687499, "orders": 2015, "aov": 22.04897642630273, "customers": 1943, "newCustomers": 1191, "avgShipping": 1.5034739454094292, "freeShipPct": 0.509181141439206, "avgMargin": 100.0, "discountPct": 0.18213399503722083, "avgItems": 1.6987593052109182, "totalShipping": 3029.5, "freeShipOrders": 1026, "discountOrders": 367, "totalItems": 3423.0}, {"YearMonth": "2009-06", "revenue": 39407.352697, "orders": 1804, "aov": 21.84443054157428, "customers": 1735, "newCustomers": 1155, "avgShipping": 1.6266629711751663, "freeShipPct": 0.49057649667405767, "avgMargin": 100.0, "discountPct": 0.017738359201773836, "avgItems": 1.5920177383592018, "totalShipping": 2934.5, "freeShipOrders": 885, "discountOrders": 32, "totalItems": 2872.0}, {"YearMonth": "2009-07", "revenue": 42289.576767, "orders": 1833, "aov": 23.071236643207854, "customers": 1752, "newCustomers": 1053, "avgShipping": 1.5370976541189307, "freeShipPct": 0.5040916530278232, "avgMargin": 100.0, "discountPct": 0.0070921985815602835, "avgItems": 1.7108565193671577, "totalShipping": 2817.5, "freeShipOrders": 924, "discountOrders": 13, "totalItems": 3136.0}, {"YearMonth": "2009-08", "revenue": 43149.319508, "orders": 1858, "aov": 23.223530413347685, "customers": 1793, "newCustomers": 919, "avgShipping": 1.4954251883745964, "freeShipPct": 0.5161463939720129, "avgMargin": 100.0, "discountPct": 0.10495156081808396, "avgItems": 1.7395048439181917, "totalShipping": 2778.5, "freeShipOrders": 959, "discountOrders": 195, "totalItems": 3232.0}, {"YearMonth": "2009-09", "revenue": 38532.471361, "orders": 1621, "aov": 23.77080281369525, "customers": 1560, "newCustomers": 855, "avgShipping": 1.4938309685379396, "freeShipPct": 0.5064774830351635, "avgMargin": 100.0, "discountPct": 0.020974706971005553, "avgItems": 1.6514497223935842, "totalShipping": 2421.5, "freeShipOrders": 821, "discountOrders": 34, "totalItems": 2677.0}, {"YearMonth": "2009-10", "revenue": 39582.673821, "orders": 1692, "aov": 23.394015260638295, "customers": 1640, "newCustomers": 969, "avgShipping": 1.1917848699763594, "freeShipPct": 0.6294326241134752, "avgMargin": 100.0, "discountPct": 0.0070921985815602835, "avgItems": 1.6371158392434988, "totalShipping": 2016.5, "freeShipOrders": 1065, "discountOrders": 12, "totalItems": 2770.0}, {"YearMonth": "2009-11", "revenue": 41421.658406, "orders": 1823, "aov": 22.721699619308833, "customers": 1756, "newCustomers": 1021, "avgShipping": 1.3000548546352166, "freeShipPct": 0.589687328579265, "avgMargin": 100.0, "discountPct": 0.007131102578167855, "avgItems": 1.6999451453647834, "totalShipping": 2370.0, "freeShipOrders": 1075, "discountOrders": 13, "totalItems": 3099.0}, {"YearMonth": "2009-12", "revenue": 34118.492425, "orders": 1422, "aov": 23.993313941631502, "customers": 1364, "newCustomers": 636, "avgShipping": 1.5355133614627285, "freeShipPct": 0.5175808720112518, "avgMargin": 100.0, "discountPct": 0.10548523206751055, "avgItems": 1.7313642756680732, "totalShipping": 2183.5, "freeShipOrders": 736, "discountOrders": 150, "totalItems": 2462.0}, {"YearMonth": "2010-01", "revenue": 52040.2466, "orders": 2139, "aov": 24.329241047218325, "customers": 2055, "newCustomers": 1007, "avgShipping": 1.439457690509584, "freeShipPct": 0.5324918186068256, "avgMargin": 100.0, "discountPct": 0.1846657316503039, "avgItems": 1.707807386629266, "totalShipping": 3079.0, "freeShipOrders": 1139, "discountOrders": 395, "totalItems": 3653.0}, {"YearMonth": "2010-02", "revenue": 42225.82091, "orders": 1739, "aov": 24.281668148361128, "customers": 1674, "newCustomers": 981, "avgShipping": 1.4074180563542267, "freeShipPct": 0.5290396779758482, "avgMargin": 100.0, "discountPct": 0.022426682001150087, "avgItems": 1.6262219666474986, "totalShipping": 2447.5, "freeShipOrders": 920, "discountOrders": 39, "totalItems": 2828.0}, {"YearMonth": "2010-03", "revenue": 44680.337663, "orders": 1872, "aov": 23.867701743055555, "customers": 1799, "newCustomers": 1008, "avgShipping": 1.5069444444444444, "freeShipPct": 0.5229700854700855, "avgMargin": 100.0, "discountPct": 0.022435897435897436, "avgItems": 1.5886752136752136, "totalShipping": 2821.0, "freeShipOrders": 979, "discountOrders": 42, "totalItems": 2974.0}, {"YearMonth": "2010-04", "revenue": 47926.607525, "orders": 2003, "aov": 23.927412643534698, "customers": 1935, "newCustomers": 893, "avgShipping": 1.356714927608587, "freeShipPct": 0.5661507738392412, "avgMargin": 100.0, "discountPct": 0.23165252121817273, "avgItems": 1.6684972541188217, "totalShipping": 2717.5, "freeShipOrders": 1134, "discountOrders": 464, "totalItems": 3342.0}, {"YearMonth": "2010-05", "revenue": 47491.594248, "orders": 1983, "aov": 23.94936674130106, "customers": 1886, "newCustomers": 982, "avgShipping": 1.3807362581946545, "freeShipPct": 0.551185073121533, "avgMargin": 100.0, "discountPct": 0.1800302571860817, "avgItems": 1.6364094805849723, "totalShipping": 2738.0, "freeShipOrders": 1093, "discountOrders": 357, "totalItems": 3245.0}, {"YearMonth": "2010-06", "revenue": 44476.335625, "orders": 1865, "aov": 23.847901139410187, "customers": 1788, "newCustomers": 976, "avgShipping": 1.4571045576407506, "freeShipPct": 0.5388739946380697, "avgMargin": 100.0, "discountPct": 0.06756032171581769, "avgItems": 1.595710455764075, "totalShipping": 2717.5, "freeShipOrders": 1005, "discountOrders": 126, "totalItems": 2976.0}, {"YearMonth": "2010-07", "revenue": 46078.040196, "orders": 1962, "aov": 23.485239651376148, "customers": 1883, "newCustomers": 1055, "avgShipping": 1.3419979612640163, "freeShipPct": 0.5484199796126402, "avgMargin": 100.0, "discountPct": 0.018858307849133536, "avgItems": 1.5657492354740061, "totalShipping": 2633.0, "freeShipOrders": 1076, "discountOrders": 37, "totalItems": 3072.0}, {"YearMonth": "2010-08", "revenue": 54177.017298, "orders": 2113, "aov": 25.639856743019404, "customers": 2031, "newCustomers": 880, "avgShipping": 1.330809275911027, "freeShipPct": 0.5556081400851869, "avgMargin": 100.0, "discountPct": 0.13819214387127307, "avgItems": 1.7245622337908186, "totalShipping": 2812.0, "freeShipOrders": 1174, "discountOrders": 292, "totalItems": 3644.0}, {"YearMonth": "2010-09", "revenue": 47427.659995, "orders": 1933, "aov": 24.535778579927573, "customers": 1886, "newCustomers": 1041, "avgShipping": 1.33109156751164, "freeShipPct": 0.5587170201758924, "avgMargin": 100.0, "discountPct": 0.025349198137609934, "avgItems": 1.677703052250388, "totalShipping": 2573.0, "freeShipOrders": 1080, "discountOrders": 49, "totalItems": 3243.0}, {"YearMonth": "2010-10", "revenue": 48912.859512999996, "orders": 1874, "aov": 26.100778822305227, "customers": 1824, "newCustomers": 969, "avgShipping": 1.378068303094984, "freeShipPct": 0.5298826040554963, "avgMargin": 100.0, "discountPct": 0.017609391675560297, "avgItems": 1.6840981856990396, "totalShipping": 2582.5, "freeShipOrders": 993, "discountOrders": 33, "totalItems": 3156.0}, {"YearMonth": "2010-11", "revenue": 46851.846319, "orders": 1866, "aov": 25.10817058896034, "customers": 1798, "newCustomers": 900, "avgShipping": 1.289924973204716, "freeShipPct": 0.5637727759914255, "avgMargin": 100.0, "discountPct": 0.011789924973204717, "avgItems": 1.6714898177920685, "totalShipping": 2407.0, "freeShipOrders": 1052, "discountOrders": 22, "totalItems": 3119.0}, {"YearMonth": "2010-12", "revenue": 38657.264029, "orders": 1554, "aov": 24.875974278635777, "customers": 1509, "newCustomers": 633, "avgShipping": 1.2667310167310166, "freeShipPct": 0.5694980694980695, "avgMargin": 100.0, "discountPct": 0.07979407979407979, "avgItems": 1.6525096525096525, "totalShipping": 1968.5, "freeShipOrders": 885, "discountOrders": 124, "totalItems": 2568.0}, {"YearMonth": "2011-01", "revenue": 63063.176249, "orders": 2473, "aov": 25.50067782005661, "customers": 2363, "newCustomers": 1235, "avgShipping": 1.324302466639709, "freeShipPct": 0.5596441568944601, "avgMargin": 100.0, "discountPct": 0.13424989890820865, "avgItems": 1.7173473513950668, "totalShipping": 3275.0, "freeShipOrders": 1384, "discountOrders": 332, "totalItems": 4247.0}, {"YearMonth": "2011-02", "revenue": 46958.153946, "orders": 1882, "aov": 24.951197633368757, "customers": 1809, "newCustomers": 888, "avgShipping": 1.2991498405951116, "freeShipPct": 0.563230605738576, "avgMargin": 100.0, "discountPct": 0.020191285866099893, "avgItems": 1.673219978746015, "totalShipping": 2445.0, "freeShipOrders": 1060, "discountOrders": 38, "totalItems": 3149.0}, {"YearMonth": "2011-03", "revenue": 47202.881633, "orders": 1914, "aov": 24.661902629571575, "customers": 1835, "newCustomers": 894, "avgShipping": 1.3022466039707419, "freeShipPct": 0.5626959247648903, "avgMargin": 100.0, "discountPct": 0.044409613375130615, "avgItems": 1.6499477533960292, "totalShipping": 2492.5, "freeShipOrders": 1077, "discountOrders": 85, "totalItems": 3158.0}, {"YearMonth": "2011-04", "revenue": 48648.815269, "orders": 1944, "aov": 25.025110735082304, "customers": 1875, "newCustomers": 792, "avgShipping": 1.3040123456790123, "freeShipPct": 0.5612139917695473, "avgMargin": 100.0, "discountPct": 0.2037037037037037, "avgItems": 1.6738683127572016, "totalShipping": 2535.0, "freeShipOrders": 1091, "discountOrders": 396, "totalItems": 3254.0}, {"YearMonth": "2011-05", "revenue": 49695.201568, "orders": 1996, "aov": 24.8973955751503, "customers": 1920, "newCustomers": 955, "avgShipping": 1.3294088176352705, "freeShipPct": 0.5516032064128257, "avgMargin": 100.0, "discountPct": 0.0871743486973948, "avgItems": 1.6993987975951903, "totalShipping": 2653.5, "freeShipOrders": 1101, "discountOrders": 174, "totalItems": 3392.0}, {"YearMonth": "2011-06", "revenue": 48369.253193, "orders": 1976, "aov": 24.478367000506072, "customers": 1895, "newCustomers": 963, "avgShipping": 1.26998987854251, "freeShipPct": 0.5683198380566802, "avgMargin": 100.0, "discountPct": 0.0895748987854251, "avgItems": 1.6629554655870444, "totalShipping": 2509.5, "freeShipOrders": 1123, "discountOrders": 177, "totalItems": 3286.0}, {"YearMonth": "2011-07", "revenue": 52178.503064, "orders": 2160, "aov": 24.15671438148148, "customers": 2075, "newCustomers": 968, "avgShipping": 0.9479166666666666, "freeShipPct": 0.6810185185185185, "avgMargin": 100.0, "discountPct": 0.04953703703703704, "avgItems": 1.6601851851851852, "totalShipping": 2047.5, "freeShipOrders": 1471, "discountOrders": 107, "totalItems": 3586.0}, {"YearMonth": "2011-08", "revenue": 59165.544544, "orders": 2378, "aov": 24.880380380151387, "customers": 2268, "newCustomers": 1003, "avgShipping": 0.9318755256518082, "freeShipPct": 0.6900756938603869, "avgMargin": 100.0, "discountPct": 0.17325483599663583, "avgItems": 1.703111858704794, "totalShipping": 2216.0, "freeShipOrders": 1641, "discountOrders": 412, "totalItems": 4050.0}, {"YearMonth": "2011-09", "revenue": 45869.632067, "orders": 2020, "aov": 22.707738647029704, "customers": 1917, "newCustomers": 890, "avgShipping": 0.9626237623762376, "freeShipPct": 0.6787128712871288, "avgMargin": 100.0, "discountPct": 0.04257425742574258, "avgItems": 1.601980198019802, "totalShipping": 1944.5, "freeShipOrders": 1371, "discountOrders": 86, "totalItems": 3236.0}, {"YearMonth": "2011-10", "revenue": 53513.070595, "orders": 2421, "aov": 22.10370532631144, "customers": 2296, "newCustomers": 1155, "avgShipping": 0.9570425444031392, "freeShipPct": 0.6807104502271788, "avgMargin": 100.0, "discountPct": 0.03882693102023957, "avgItems": 1.6084262701363072, "totalShipping": 2317.0, "freeShipOrders": 1648, "discountOrders": 94, "totalItems": 3894.0}, {"YearMonth": "2011-11", "revenue": 56555.504319, "orders": 2565, "aov": 22.048929559064327, "customers": 2472, "newCustomers": 1260, "avgShipping": 0.9241715399610136, "freeShipPct": 0.6888888888888889, "avgMargin": 100.0, "discountPct": 0.024951267056530214, "avgItems": 1.6101364522417154, "totalShipping": 2370.5, "freeShipOrders": 1767, "discountOrders": 64, "totalItems": 4130.0}, {"YearMonth": "2011-12", "revenue": 49650.119363, "orders": 2197, "aov": 22.59905296449704, "customers": 2124, "newCustomers": 941, "avgShipping": 0.7319071461083295, "freeShipPct": 0.7742375967228038, "avgMargin": 100.0, "discountPct": 0.11470186618115612, "avgItems": 1.6408739189804278, "totalShipping": 1608.0, "freeShipOrders": 1701, "discountOrders": 252, "totalItems": 3605.0}, {"YearMonth": "2012-01", "revenue": 73736.86452999999, "orders": 3130, "aov": 23.55810368370607, "customers": 2973, "newCustomers": 1362, "avgShipping": 0.8746006389776357, "freeShipPct": 0.7099041533546326, "avgMargin": 100.0, "discountPct": 0.16134185303514376, "avgItems": 1.6936102236421726, "totalShipping": 2737.5, "freeShipOrders": 2222, "discountOrders": 505, "totalItems": 5301.0}, {"YearMonth": "2012-02", "revenue": 55237.276299, "orders": 2445, "aov": 22.591933046625766, "customers": 2328, "newCustomers": 1123, "avgShipping": 0.959918200408998, "freeShipPct": 0.6809815950920245, "avgMargin": 100.0, "discountPct": 0.032719836400818, "avgItems": 1.6646216768916156, "totalShipping": 2347.0, "freeShipOrders": 1665, "discountOrders": 80, "totalItems": 4070.0}, {"YearMonth": "2012-03", "revenue": 54824.358757, "orders": 2257, "aov": 24.290810260079752, "customers": 2139, "newCustomers": 942, "avgShipping": 1.0219317678334072, "freeShipPct": 0.6601683650863979, "avgMargin": 100.0, "discountPct": 0.020824102791315906, "avgItems": 1.7084625609215773, "totalShipping": 2306.5, "freeShipOrders": 1490, "discountOrders": 47, "totalItems": 3856.0}, {"YearMonth": "2012-04", "revenue": 56191.792512, "orders": 2340, "aov": 24.013586543589742, "customers": 2218, "newCustomers": 966, "avgShipping": 0.966025641025641, "freeShipPct": 0.6752136752136753, "avgMargin": 100.0, "discountPct": 0.1188034188034188, "avgItems": 1.6952991452991453, "totalShipping": 2260.5, "freeShipOrders": 1580, "discountOrders": 278, "totalItems": 3967.0}, {"YearMonth": "2012-05", "revenue": 56350.974716, "orders": 2228, "aov": 25.29217895691203, "customers": 2102, "newCustomers": 836, "avgShipping": 0.9759874326750448, "freeShipPct": 0.6710053859964094, "avgMargin": 100.0, "discountPct": 0.10951526032315978, "avgItems": 1.6961400359066428, "totalShipping": 2174.5, "freeShipOrders": 1495, "discountOrders": 244, "totalItems": 3779.0}, {"YearMonth": "2012-06", "revenue": 50508.572807, "orders": 1930, "aov": 26.170244977720206, "customers": 1846, "newCustomers": 691, "avgShipping": 0.9562176165803109, "freeShipPct": 0.6823834196891192, "avgMargin": 100.0, "discountPct": 0.15025906735751296, "avgItems": 1.7590673575129534, "totalShipping": 1845.5, "freeShipOrders": 1317, "discountOrders": 290, "totalItems": 3395.0}, {"YearMonth": "2012-07", "revenue": 48373.723759, "orders": 1950, "aov": 24.807037825128205, "customers": 1805, "newCustomers": 578, "avgShipping": 0.7348717948717949, "freeShipPct": 0.7656410256410257, "avgMargin": 100.0, "discountPct": 0.21435897435897436, "avgItems": 1.6682051282051282, "totalShipping": 1433.0, "freeShipOrders": 1493, "discountOrders": 418, "totalItems": 3253.0}, {"YearMonth": "2012-08", "revenue": 48676.057216, "orders": 1926, "aov": 25.273134587746625, "customers": 1803, "newCustomers": 768, "avgShipping": 0.7650571131879543, "freeShipPct": 0.7575285565939771, "avgMargin": 100.0, "discountPct": 0.18587746625129803, "avgItems": 1.7222222222222223, "totalShipping": 1473.5, "freeShipOrders": 1459, "discountOrders": 358, "totalItems": 3317.0}, {"YearMonth": "2012-09", "revenue": 55442.515126, "orders": 2255, "aov": 24.58648120886918, "customers": 2146, "newCustomers": 863, "avgShipping": 0.729490022172949, "freeShipPct": 0.7694013303769401, "avgMargin": 100.0, "discountPct": 0.03991130820399113, "avgItems": 1.6536585365853658, "totalShipping": 1645.0, "freeShipOrders": 1735, "discountOrders": 90, "totalItems": 3729.0}, {"YearMonth": "2012-10", "revenue": 58820.696594, "orders": 2373, "aov": 24.787482761904762, "customers": 2234, "newCustomers": 818, "avgShipping": 0.8316477033291193, "freeShipPct": 0.7391487568478718, "avgMargin": 100.0, "discountPct": 0.01938474504846186, "avgItems": 1.7370417193426042, "totalShipping": 1973.5, "freeShipOrders": 1754, "discountOrders": 46, "totalItems": 4122.0}, {"YearMonth": "2012-11", "revenue": 56396.663153, "orders": 2274, "aov": 24.80064342700088, "customers": 2150, "newCustomers": 726, "avgShipping": 0.7587950747581355, "freeShipPct": 0.7634124890061565, "avgMargin": 100.0, "discountPct": 0.16358839050131926, "avgItems": 1.7563764291996482, "totalShipping": 1725.5, "freeShipOrders": 1736, "discountOrders": 372, "totalItems": 3994.0}, {"YearMonth": "2012-12", "revenue": 41205.205556, "orders": 1706, "aov": 24.15310993903869, "customers": 1645, "newCustomers": 606, "avgShipping": 0.7596717467760844, "freeShipPct": 0.7602579132473622, "avgMargin": 100.0, "discountPct": 0.03575615474794842, "avgItems": 1.690504103165299, "totalShipping": 1296.0, "freeShipOrders": 1297, "discountOrders": 61, "totalItems": 2884.0}, {"YearMonth": "2013-01", "revenue": 71165.946314, "orders": 2732, "aov": 26.04902866544656, "customers": 2580, "newCustomers": 988, "avgShipping": 0.8760980966325037, "freeShipPct": 0.7404831625183016, "avgMargin": 100.0, "discountPct": 0.2005856515373353, "avgItems": 1.7994143484626648, "totalShipping": 2393.5, "freeShipOrders": 2023, "discountOrders": 548, "totalItems": 4916.0}, {"YearMonth": "2013-02", "revenue": 47745.788572, "orders": 2011, "aov": 23.74231157235206, "customers": 1927, "newCustomers": 800, "avgShipping": 0.84808552958727, "freeShipPct": 0.7449030333167578, "avgMargin": 100.0, "discountPct": 0.030333167578319244, "avgItems": 1.687717553455992, "totalShipping": 1705.5, "freeShipOrders": 1498, "discountOrders": 61, "totalItems": 3394.0}, {"YearMonth": "2013-03", "revenue": 63921.4215, "orders": 2536, "aov": 25.205607847003154, "customers": 2418, "newCustomers": 970, "avgShipping": 0.8349763406940063, "freeShipPct": 0.7460567823343849, "avgMargin": 100.0, "discountPct": 0.1750788643533123, "avgItems": 1.7503943217665616, "totalShipping": 2117.5, "freeShipOrders": 1892, "discountOrders": 444, "totalItems": 4439.0}, {"YearMonth": "2013-04", "revenue": 64858.311477999996, "orders": 2569, "aov": 25.246520622031916, "customers": 2429, "newCustomers": 904, "avgShipping": 0.835733748540288, "freeShipPct": 0.7493188010899182, "avgMargin": 100.0, "discountPct": 0.1401323472168159, "avgItems": 1.7687816270922538, "totalShipping": 2147.0, "freeShipOrders": 1925, "discountOrders": 360, "totalItems": 4544.0}, {"YearMonth": "2013-05", "revenue": 58215.430393, "orders": 2538, "aov": 22.937521825453114, "customers": 2424, "newCustomers": 1040, "avgShipping": 0.7444838455476753, "freeShipPct": 0.7695035460992907, "avgMargin": 100.0, "discountPct": 0.03821907013396375, "avgItems": 1.6335697399527187, "totalShipping": 1889.5, "freeShipOrders": 1953, "discountOrders": 97, "totalItems": 4146.0}, {"YearMonth": "2013-06", "revenue": 65897.717791, "orders": 2716, "aov": 24.262782691826217, "customers": 2566, "newCustomers": 1119, "avgShipping": 0.8063328424153167, "freeShipPct": 0.7466863033873343, "avgMargin": 100.0, "discountPct": 0.15058910162002945, "avgItems": 1.708762886597938, "totalShipping": 2190.0, "freeShipOrders": 2028, "discountOrders": 409, "totalItems": 4641.0}, {"YearMonth": "2013-07", "revenue": 55176.077788, "orders": 2321, "aov": 23.772545363205516, "customers": 2207, "newCustomers": 880, "avgShipping": 0.7514002585092633, "freeShipPct": 0.7613097802671263, "avgMargin": 100.0, "discountPct": 0.13916415338216287, "avgItems": 1.6708315381301164, "totalShipping": 1744.0, "freeShipOrders": 1767, "discountOrders": 323, "totalItems": 3878.0}, {"YearMonth": "2013-08", "revenue": 53185.170879, "orders": 2238, "aov": 23.764598247989277, "customers": 2129, "newCustomers": 852, "avgShipping": 0.7931188561215371, "freeShipPct": 0.7502234137622877, "avgMargin": 100.0, "discountPct": 0.04066130473637176, "avgItems": 1.6630920464700625, "totalShipping": 1775.0, "freeShipOrders": 1679, "discountOrders": 91, "totalItems": 3722.0}, {"YearMonth": "2013-09", "revenue": 67518.54647, "orders": 2658, "aov": 25.402011463506398, "customers": 2533, "newCustomers": 884, "avgShipping": 0.8839352896914974, "freeShipPct": 0.735515425131678, "avgMargin": 100.0, "discountPct": 0.17757712565838976, "avgItems": 1.7780285929270128, "totalShipping": 2349.5, "freeShipOrders": 1955, "discountOrders": 472, "totalItems": 4726.0}, {"YearMonth": "2013-10", "revenue": 54130.906808, "orders": 2268, "aov": 23.867242860670196, "customers": 2167, "newCustomers": 811, "avgShipping": 0.8130511463844797, "freeShipPct": 0.7535273368606702, "avgMargin": 100.0, "discountPct": 0.10008818342151675, "avgItems": 1.720899470899471, "totalShipping": 1844.0, "freeShipOrders": 1709, "discountOrders": 227, "totalItems": 3903.0}, {"YearMonth": "2013-11", "revenue": 71389.117605, "orders": 2837, "aov": 25.163594502996126, "customers": 2689, "newCustomers": 895, "avgShipping": 0.7788156503348608, "freeShipPct": 0.762777581952767, "avgMargin": 100.0, "discountPct": 0.31864645752555515, "avgItems": 1.8004934790271414, "totalShipping": 2209.5, "freeShipOrders": 2164, "discountOrders": 904, "totalItems": 5108.0}, {"YearMonth": "2013-12", "revenue": 51372.936105, "orders": 2116, "aov": 24.278325191398867, "customers": 2027, "newCustomers": 790, "avgShipping": 0.791351606805293, "freeShipPct": 0.7689035916824196, "avgMargin": 100.0, "discountPct": 0.20368620037807184, "avgItems": 1.7173913043478262, "totalShipping": 1674.5, "freeShipOrders": 1627, "discountOrders": 431, "totalItems": 3634.0}, {"YearMonth": "2014-01", "revenue": 92835.551661, "orders": 3733, "aov": 24.868886059737477, "customers": 3552, "newCustomers": 1153, "avgShipping": 0.7652022502009108, "freeShipPct": 0.7728368604339673, "avgMargin": 100.0, "discountPct": 0.5815697830163408, "avgItems": 1.8473077953388695, "totalShipping": 2856.5, "freeShipOrders": 2885, "discountOrders": 2171, "totalItems": 6896.0}, {"YearMonth": "2014-02", "revenue": 62172.816585, "orders": 2667, "aov": 23.311892232845896, "customers": 2533, "newCustomers": 987, "avgShipping": 0.8820772403449568, "freeShipPct": 0.7371578552680915, "avgMargin": 100.0, "discountPct": 0.2853393325834271, "avgItems": 1.6786651668541432, "totalShipping": 2352.5, "freeShipOrders": 1966, "discountOrders": 761, "totalItems": 4477.0}, {"YearMonth": "2014-03", "revenue": 73462.590472, "orders": 3123, "aov": 23.523083724623756, "customers": 2930, "newCustomers": 1169, "avgShipping": 0.8187640089657381, "freeShipPct": 0.755363432596862, "avgMargin": 100.0, "discountPct": 0.404418828049952, "avgItems": 1.7118155619596542, "totalShipping": 2557.0, "freeShipOrders": 2359, "discountOrders": 1263, "totalItems": 5346.0}, {"YearMonth": "2014-04", "revenue": 68466.753153, "orders": 2846, "aov": 24.05718663141251, "customers": 2659, "newCustomers": 928, "avgShipping": 0.7879479971890373, "freeShipPct": 0.7628250175685172, "avgMargin": 100.0, "discountPct": 0.3671820098383696, "avgItems": 1.7101194659170766, "totalShipping": 2242.5, "freeShipOrders": 2171, "discountOrders": 1045, "totalItems": 4867.0}, {"YearMonth": "2014-05", "revenue": 67509.314237, "orders": 2743, "aov": 24.61148896718921, "customers": 2623, "newCustomers": 1004, "avgShipping": 0.8386802770689027, "freeShipPct": 0.7466277798031352, "avgMargin": 100.0, "discountPct": 0.21946773605541378, "avgItems": 1.7386073641997812, "totalShipping": 2300.5, "freeShipOrders": 2048, "discountOrders": 602, "totalItems": 4769.0}, {"YearMonth": "2014-06", "revenue": 65143.709938, "orders": 2694, "aov": 24.18103561172977, "customers": 2544, "newCustomers": 915, "avgShipping": 0.8110616184112843, "freeShipPct": 0.7572383073496659, "avgMargin": 100.0, "discountPct": 0.26280623608017817, "avgItems": 1.7160356347438752, "totalShipping": 2185.0, "freeShipOrders": 2040, "discountOrders": 708, "totalItems": 4623.0}, {"YearMonth": "2014-07", "revenue": 74096.007075, "orders": 2900, "aov": 25.55034726724138, "customers": 2774, "newCustomers": 846, "avgShipping": 0.7753448275862069, "freeShipPct": 0.7706896551724138, "avgMargin": 100.0, "discountPct": 0.2775862068965517, "avgItems": 1.7906896551724139, "totalShipping": 2248.5, "freeShipOrders": 2235, "discountOrders": 805, "totalItems": 5193.0}, {"YearMonth": "2014-08", "revenue": 68742.280441, "orders": 2777, "aov": 24.75415212135398, "customers": 2646, "newCustomers": 933, "avgShipping": 0.8262513503781058, "freeShipPct": 0.7601728483975513, "avgMargin": 100.0, "discountPct": 0.24666906733885488, "avgItems": 1.7565718401152324, "totalShipping": 2294.5, "freeShipOrders": 2111, "discountOrders": 685, "totalItems": 4878.0}, {"YearMonth": "2014-09", "revenue": 73305.428228, "orders": 3011, "aov": 24.345874536034543, "customers": 2850, "newCustomers": 1021, "avgShipping": 0.7578877449352375, "freeShipPct": 0.7725008302889406, "avgMargin": 100.0, "discountPct": 0.2553968781135835, "avgItems": 1.7163732979076718, "totalShipping": 2282.0, "freeShipOrders": 2326, "discountOrders": 769, "totalItems": 5168.0}, {"YearMonth": "2014-10", "revenue": 74748.639273, "orders": 2872, "aov": 26.026684983635096, "customers": 2745, "newCustomers": 1056, "avgShipping": 0.8130222841225627, "freeShipPct": 0.753133704735376, "avgMargin": 100.0, "discountPct": 0.19846796657381616, "avgItems": 1.825208913649025, "totalShipping": 2335.0, "freeShipOrders": 2163, "discountOrders": 570, "totalItems": 5242.0}, {"YearMonth": "2014-11", "revenue": 75637.348811, "orders": 2945, "aov": 25.683310292359934, "customers": 2797, "newCustomers": 854, "avgShipping": 0.8286926994906622, "freeShipPct": 0.7460101867572156, "avgMargin": 100.0, "discountPct": 0.3256366723259762, "avgItems": 1.8329371816638371, "totalShipping": 2440.5, "freeShipOrders": 2197, "discountOrders": 959, "totalItems": 5398.0}, {"YearMonth": "2014-12", "revenue": 57446.2344, "orders": 2258, "aov": 25.44120212577502, "customers": 2156, "newCustomers": 662, "avgShipping": 0.7482285208148804, "freeShipPct": 0.7763507528786536, "avgMargin": 100.0, "discountPct": 0.36271036315323296, "avgItems": 1.745792736935341, "totalShipping": 1689.5, "freeShipOrders": 1753, "discountOrders": 819, "totalItems": 3942.0}, {"YearMonth": "2015-01", "revenue": 125842.620619, "orders": 4632, "aov": 27.16809598855786, "customers": 4396, "newCustomers": 1156, "avgShipping": 0.7925734024179619, "freeShipPct": 0.7668393782383419, "avgMargin": 100.0, "discountPct": 0.6265112262521589, "avgItems": 1.9598445595854923, "totalShipping": 3671.2, "freeShipOrders": 3552, "discountOrders": 2902, "totalItems": 9078.0}, {"YearMonth": "2015-02", "revenue": 62075.727316, "orders": 2404, "aov": 25.821849965058234, "customers": 2288, "newCustomers": 771, "avgShipping": 0.8273710482529119, "freeShipPct": 0.7454242928452579, "avgMargin": 100.0, "discountPct": 0.03951747088186356, "avgItems": 1.73585690515807, "totalShipping": 1989.0, "freeShipOrders": 1792, "discountOrders": 95, "totalItems": 4173.0}, {"YearMonth": "2015-03", "revenue": 89643.851751, "orders": 3537, "aov": 25.344600438507207, "customers": 3342, "newCustomers": 969, "avgShipping": 0.77735368956743, "freeShipPct": 0.7650551314673452, "avgMargin": 100.0, "discountPct": 0.5793044953350297, "avgItems": 1.8278201865988126, "totalShipping": 2749.5, "freeShipOrders": 2706, "discountOrders": 2049, "totalItems": 6465.0}, {"YearMonth": "2015-04", "revenue": 69228.582801, "orders": 2832, "aov": 24.445121045550845, "customers": 2684, "newCustomers": 838, "avgShipping": 0.8444562146892656, "freeShipPct": 0.7418785310734464, "avgMargin": 65.56670975226369, "discountPct": 0.3407485875706215, "avgItems": 1.7139830508474576, "totalShipping": 2391.5, "freeShipOrders": 2101, "discountOrders": 965, "totalItems": 4854.0}, {"YearMonth": "2015-05", "revenue": 69389.840491, "orders": 2614, "aov": 26.545463079954093, "customers": 2496, "newCustomers": 785, "avgShipping": 0.7903596021423106, "freeShipPct": 0.7597551644988524, "avgMargin": 62.055648779003945, "discountPct": 0.3814078041315991, "avgItems": 1.830910482019893, "totalShipping": 2066.0, "freeShipOrders": 1986, "discountOrders": 997, "totalItems": 4786.0}, {"YearMonth": "2015-06", "revenue": 75999.479079, "orders": 2860, "aov": 26.573244433216782, "customers": 2716, "newCustomers": 671, "avgShipping": 0.8041958041958042, "freeShipPct": 0.7594405594405594, "avgMargin": 62.06842224253871, "discountPct": 0.5583916083916084, "avgItems": 1.7814685314685315, "totalShipping": 2300.0, "freeShipOrders": 2172, "discountOrders": 1597, "totalItems": 5095.0}, {"YearMonth": "2015-07", "revenue": 64905.061673, "orders": 2622, "aov": 24.75402809801678, "customers": 2491, "newCustomers": 845, "avgShipping": 0.9162852784134249, "freeShipPct": 0.6979405034324943, "avgMargin": 63.05183562250153, "discountPct": 0.2646834477498093, "avgItems": 1.692601067887109, "totalShipping": 2402.5, "freeShipOrders": 1830, "discountOrders": 694, "totalItems": 4438.0}, {"YearMonth": "2015-08", "revenue": 74364.069739, "orders": 2822, "aov": 26.351548454642096, "customers": 2707, "newCustomers": 828, "avgShipping": 1.0919560595322466, "freeShipPct": 0.6318214032600992, "avgMargin": 62.11488850358797, "discountPct": 0.4929128277817151, "avgItems": 1.8373493975903614, "totalShipping": 3081.5, "freeShipOrders": 1783, "discountOrders": 1391, "totalItems": 5185.0}, {"YearMonth": "2015-09", "revenue": 84650.832193, "orders": 3155, "aov": 26.830691661806654, "customers": 3005, "newCustomers": 744, "avgShipping": 1.0175911251980982, "freeShipPct": 0.6684627575277338, "avgMargin": 59.108731740721126, "discountPct": 0.1404120443740095, "avgItems": 1.880190174326466, "totalShipping": 3210.5, "freeShipOrders": 2109, "discountOrders": 443, "totalItems": 5932.0}, {"YearMonth": "2015-10", "revenue": 65290.104857, "orders": 2508, "aov": 26.0327371838118, "customers": 2407, "newCustomers": 679, "avgShipping": 0.9216507177033493, "freeShipPct": 0.69896331738437, "avgMargin": 59.874716589136575, "discountPct": 0.10007974481658692, "avgItems": 1.8628389154704945, "totalShipping": 2311.5, "freeShipOrders": 1753, "discountOrders": 251, "totalItems": 4672.0}, {"YearMonth": "2015-11", "revenue": 73726.967406, "orders": 2746, "aov": 26.848859215586305, "customers": 2624, "newCustomers": 631, "avgShipping": 0.9013109978150037, "freeShipPct": 0.7119446467589221, "avgMargin": 62.38423509267585, "discountPct": 0.5309541150764748, "avgItems": 1.819373634377276, "totalShipping": 2475.0, "freeShipOrders": 1955, "discountOrders": 1458, "totalItems": 4996.0}, {"YearMonth": "2015-12", "revenue": 68974.952498, "orders": 2624, "aov": 26.28618616539634, "customers": 2473, "newCustomers": 632, "avgShipping": 0.7408536585365854, "freeShipPct": 0.7679115853658537, "avgMargin": 59.50048568093837, "discountPct": 0.09908536585365854, "avgItems": 1.8639481707317074, "totalShipping": 1944.0, "freeShipOrders": 2015, "discountOrders": 260, "totalItems": 4891.0}, {"YearMonth": "2016-01", "revenue": 118238.538576, "orders": 4531, "aov": 26.095462056058267, "customers": 4322, "newCustomers": 1297, "avgShipping": 0.8806003089825646, "freeShipPct": 0.7197086735819908, "avgMargin": 56.1327689668431, "discountPct": 0.1337453100860737, "avgItems": 1.9485764731847275, "totalShipping": 3990.0, "freeShipOrders": 3261, "discountOrders": 606, "totalItems": 8829.0}, {"YearMonth": "2016-02", "revenue": 56348.581031, "orders": 2179, "aov": 25.85983525975218, "customers": 2040, "newCustomers": 622, "avgShipping": 0.9059201468563561, "freeShipPct": 0.7044515832950895, "avgMargin": 62.93470478584281, "discountPct": 0.16291877007801744, "avgItems": 1.7911886186324002, "totalShipping": 1974.0, "freeShipOrders": 1535, "discountOrders": 355, "totalItems": 3903.0}, {"YearMonth": "2016-03", "revenue": 86789.446665, "orders": 3161, "aov": 27.45632605662765, "customers": 2999, "newCustomers": 626, "avgShipping": 0.9569756406200569, "freeShipPct": 0.6959822840873141, "avgMargin": 61.63579055344757, "discountPct": 0.49478013286934514, "avgItems": 1.9259727934198039, "totalShipping": 3025.0, "freeShipOrders": 2200, "discountOrders": 1564, "totalItems": 6088.0}, {"YearMonth": "2016-04", "revenue": 76152.872649, "orders": 2929, "aov": 25.999615107203823, "customers": 2824, "newCustomers": 798, "avgShipping": 0.9400819392284055, "freeShipPct": 0.6947763741891431, "avgMargin": 61.3900441165528, "discountPct": 0.2922499146466371, "avgItems": 1.8610447251621713, "totalShipping": 2753.5, "freeShipOrders": 2035, "discountOrders": 856, "totalItems": 5451.0}, {"YearMonth": "2016-05", "revenue": 67243.228433, "orders": 2590, "aov": 25.96263646061776, "customers": 2469, "newCustomers": 616, "avgShipping": 0.92007722007722, "freeShipPct": 0.7042471042471042, "avgMargin": 60.78645654925872, "discountPct": 0.2613899613899614, "avgItems": 1.828957528957529, "totalShipping": 2383.0, "freeShipOrders": 1824, "discountOrders": 677, "totalItems": 4737.0}, {"YearMonth": "2016-06", "revenue": 72486.488363, "orders": 2749, "aov": 26.368311518006546, "customers": 2608, "newCustomers": 672, "avgShipping": 0.9252455438341215, "freeShipPct": 0.6947981084030557, "avgMargin": 60.99572894604812, "discountPct": 0.5238268461258639, "avgItems": 1.886867951982539, "totalShipping": 2543.5, "freeShipOrders": 1910, "discountOrders": 1440, "totalItems": 5187.0}, {"YearMonth": "2016-07", "revenue": 63220.413215, "orders": 2493, "aov": 25.359170964701164, "customers": 2379, "newCustomers": 666, "avgShipping": 0.9403931006819094, "freeShipPct": 0.7031688728439631, "avgMargin": 61.219097714072106, "discountPct": 0.24468511833132772, "avgItems": 1.745286803048536, "totalShipping": 2344.4, "freeShipOrders": 1753, "discountOrders": 610, "totalItems": 4351.0}, {"YearMonth": "2016-08", "revenue": 91682.829723, "orders": 3276, "aov": 27.98621175915751, "customers": 3113, "newCustomers": 699, "avgShipping": 0.9635225885225885, "freeShipPct": 0.688034188034188, "avgMargin": 57.88273237045569, "discountPct": 0.04395604395604396, "avgItems": 1.9423076923076923, "totalShipping": 3156.5, "freeShipOrders": 2254, "discountOrders": 144, "totalItems": 6363.0}, {"YearMonth": "2016-09", "revenue": 71228.977411, "orders": 2857, "aov": 24.931388663283165, "customers": 2742, "newCustomers": 790, "avgShipping": 0.9233461673083654, "freeShipPct": 0.6954847742387119, "avgMargin": 58.25301609214655, "discountPct": 0.18305915295764788, "avgItems": 1.8354917745887294, "totalShipping": 2638.0, "freeShipOrders": 1987, "discountOrders": 523, "totalItems": 5244.0}, {"YearMonth": "2016-10", "revenue": 76371.230898, "orders": 2995, "aov": 25.499576259766275, "customers": 2855, "newCustomers": 895, "avgShipping": 0.9435726210350585, "freeShipPct": 0.6948247078464107, "avgMargin": 58.12045424223937, "discountPct": 0.30851419031719535, "avgItems": 1.8564273789649415, "totalShipping": 2826.0, "freeShipOrders": 2081, "discountOrders": 924, "totalItems": 5560.0}, {"YearMonth": "2016-11", "revenue": 91732.766829, "orders": 3392, "aov": 27.043858145341982, "customers": 3222, "newCustomers": 786, "avgShipping": 0.8783903301886793, "freeShipPct": 0.7169811320754716, "avgMargin": 59.5193762650701, "discountPct": 0.4189268867924528, "avgItems": 1.9702240566037736, "totalShipping": 2979.5, "freeShipOrders": 2432, "discountOrders": 1421, "totalItems": 6683.0}, {"YearMonth": "2016-12", "revenue": 68746.214273, "orders": 2570, "aov": 26.749499717120624, "customers": 2488, "newCustomers": 786, "avgShipping": 0.7852918287937743, "freeShipPct": 0.7568093385214008, "avgMargin": 60.15176863174406, "discountPct": 0.17821011673151751, "avgItems": 1.8782101167315175, "totalShipping": 2018.2, "freeShipOrders": 1945, "discountOrders": 458, "totalItems": 4827.0}, {"YearMonth": "2017-01", "revenue": 126660.779388, "orders": 5120, "aov": 24.73843347421875, "customers": 4875, "newCustomers": 1792, "avgShipping": 0.83466796875, "freeShipPct": 0.7091796875, "avgMargin": 58.09361423257955, "discountPct": 0.5064453125, "avgItems": 1.8634765625, "totalShipping": 4273.5, "freeShipOrders": 3631, "discountOrders": 2593, "totalItems": 9541.0}, {"YearMonth": "2017-02", "revenue": 79990.669719, "orders": 3453, "aov": 23.165557404865332, "customers": 3311, "newCustomers": 1454, "avgShipping": 0.7629597451491457, "freeShipPct": 0.6889661164205039, "avgMargin": 58.93356722101408, "discountPct": 0.24152910512597742, "avgItems": 1.756154068925572, "totalShipping": 2634.5, "freeShipOrders": 2379, "discountOrders": 834, "totalItems": 6064.0}, {"YearMonth": "2017-03", "revenue": 98727.579622, "orders": 4026, "aov": 24.522498664182812, "customers": 3845, "newCustomers": 1552, "avgShipping": 0.8227769498261301, "freeShipPct": 0.6616989567809239, "avgMargin": 58.68007987415791, "discountPct": 0.34972677595628415, "avgItems": 1.7560854446100347, "totalShipping": 3312.5, "freeShipOrders": 2664, "discountOrders": 1408, "totalItems": 7070.0}, {"YearMonth": "2017-04", "revenue": 82701.169731, "orders": 3328, "aov": 24.85011109705529, "customers": 3173, "newCustomers": 1309, "avgShipping": 0.787109375, "freeShipPct": 0.6766826923076923, "avgMargin": 59.75887625799151, "discountPct": 0.3200120192307692, "avgItems": 1.7557091346153846, "totalShipping": 2619.5, "freeShipOrders": 2252, "discountOrders": 1065, "totalItems": 5843.0}, {"YearMonth": "2017-05", "revenue": 101390.899096, "orders": 4026, "aov": 25.184028588176847, "customers": 3815, "newCustomers": 1294, "avgShipping": 0.8351962245404868, "freeShipPct": 0.6639344262295082, "avgMargin": 60.634610449208985, "discountPct": 0.388474913065077, "avgItems": 1.767511177347243, "totalShipping": 3362.5, "freeShipOrders": 2673, "discountOrders": 1564, "totalItems": 7116.0}, {"YearMonth": "2017-06", "revenue": 81074.989237, "orders": 3300, "aov": 24.568178556666666, "customers": 3146, "newCustomers": 1330, "avgShipping": 0.8133333333333334, "freeShipPct": 0.6663636363636364, "avgMargin": 60.350911375535105, "discountPct": 0.13393939393939394, "avgItems": 1.6466666666666667, "totalShipping": 2684.0, "freeShipOrders": 2199, "discountOrders": 442, "totalItems": 5434.0}, {"YearMonth": "2017-07", "revenue": 143349.71856, "orders": 5133, "aov": 27.927083296317946, "customers": 4876, "newCustomers": 1648, "avgShipping": 0.7435223066432886, "freeShipPct": 0.695499707773232, "avgMargin": 60.41790681455324, "discountPct": 0.4254821741671537, "avgItems": 2.000389635690629, "totalShipping": 3816.5, "freeShipOrders": 3570, "discountOrders": 2184, "totalItems": 10268.0}, {"YearMonth": "2017-08", "revenue": 97756.289031, "orders": 3939, "aov": 24.817539738766182, "customers": 3790, "newCustomers": 1522, "avgShipping": 0.8287636455953288, "freeShipPct": 0.6671744097486672, "avgMargin": 60.26191111186225, "discountPct": 0.264026402640264, "avgItems": 1.7052551408987053, "totalShipping": 3264.5, "freeShipOrders": 2628, "discountOrders": 1040, "totalItems": 6717.0}, {"YearMonth": "2017-09", "revenue": 99940.838984, "orders": 3928, "aov": 25.443187114052954, "customers": 3766, "newCustomers": 1644, "avgShipping": 0.83770366598778, "freeShipPct": 0.660132382892057, "avgMargin": 60.41819089363256, "discountPct": 0.15707739307535643, "avgItems": 1.7064663951120163, "totalShipping": 3290.5, "freeShipOrders": 2593, "discountOrders": 617, "totalItems": 6703.0}, {"YearMonth": "2017-10", "revenue": 128174.908674, "orders": 5072, "aov": 25.271078208596215, "customers": 4752, "newCustomers": 1818, "avgShipping": 0.7701104100946372, "freeShipPct": 0.6953864353312302, "avgMargin": 60.3738814711962, "discountPct": 0.305205047318612, "avgItems": 1.7829258675078865, "totalShipping": 3906.0, "freeShipOrders": 3527, "discountOrders": 1548, "totalItems": 9043.0}, {"YearMonth": "2017-11", "revenue": 138391.488561, "orders": 5167, "aov": 26.783721416876332, "customers": 4936, "newCustomers": 1679, "avgShipping": 0.7767563383007547, "freeShipPct": 0.6824075866073157, "avgMargin": 59.85276726074829, "discountPct": 0.4379717437584672, "avgItems": 1.959938068511709, "totalShipping": 4013.5, "freeShipOrders": 3526, "discountOrders": 2263, "totalItems": 10127.0}, {"YearMonth": "2017-12", "revenue": 94990.83908399999, "orders": 3748, "aov": 25.344407439701172, "customers": 3569, "newCustomers": 1296, "avgShipping": 0.5975186766275347, "freeShipPct": 0.7526680896478122, "avgMargin": 59.61568454344179, "discountPct": 0.33404482390608325, "avgItems": 1.8335112059765208, "totalShipping": 2239.5, "freeShipOrders": 2821, "discountOrders": 1252, "totalItems": 6872.0}, {"YearMonth": "2018-01", "revenue": 214903.008585, "orders": 8212, "aov": 26.169387309425233, "customers": 7736, "newCustomers": 3046, "avgShipping": 0.6672552362396493, "freeShipPct": 0.7258889430102289, "avgMargin": 58.13999337412342, "discountPct": 0.6568436434486118, "avgItems": 2.009741841207988, "totalShipping": 5479.5, "freeShipOrders": 5961, "discountOrders": 5394, "totalItems": 16504.0}, {"YearMonth": "2018-02", "revenue": 117393.039215, "orders": 4698, "aov": 24.987875524691358, "customers": 4509, "newCustomers": 2003, "avgShipping": 0.8315240527884206, "freeShipPct": 0.6607066836951895, "avgMargin": 57.90506449126534, "discountPct": 0.31353767560664114, "avgItems": 1.8548318433375905, "totalShipping": 3906.5, "freeShipOrders": 3104, "discountOrders": 1473, "totalItems": 8714.0}, {"YearMonth": "2018-03", "revenue": 139797.419016, "orders": 5670, "aov": 24.655629456084657, "customers": 5328, "newCustomers": 2079, "avgShipping": 0.7999118165784832, "freeShipPct": 0.6731922398589065, "avgMargin": 57.81899266079431, "discountPct": 0.3486772486772487, "avgItems": 1.8091710758377426, "totalShipping": 4535.5, "freeShipOrders": 3817, "discountOrders": 1977, "totalItems": 10258.0}, {"YearMonth": "2018-04", "revenue": 133347.79876, "orders": 5173, "aov": 25.777652959597912, "customers": 4939, "newCustomers": 1784, "avgShipping": 0.8005026097042335, "freeShipPct": 0.6740769379470327, "avgMargin": 59.20372322383711, "discountPct": 0.35530639860815777, "avgItems": 1.8741542625169147, "totalShipping": 4141.0, "freeShipOrders": 3487, "discountOrders": 1838, "totalItems": 9695.0}, {"YearMonth": "2018-05", "revenue": 128559.718624, "orders": 4916, "aov": 26.151285318144833, "customers": 4683, "newCustomers": 1597, "avgShipping": 0.7788852725793328, "freeShipPct": 0.6822620016273393, "avgMargin": 58.4629360314414, "discountPct": 0.33096013018714404, "avgItems": 1.8209926769731488, "totalShipping": 3829.0, "freeShipOrders": 3354, "discountOrders": 1627, "totalItems": 8952.0}, {"YearMonth": "2018-06", "revenue": 123129.52855, "orders": 4800, "aov": 25.651985114583333, "customers": 4541, "newCustomers": 1516, "avgShipping": 0.7813541666666667, "freeShipPct": 0.6804166666666667, "avgMargin": 59.79892702661119, "discountPct": 0.36125, "avgItems": 1.7741666666666667, "totalShipping": 3750.5, "freeShipOrders": 3266, "discountOrders": 1734, "totalItems": 8516.0}, {"YearMonth": "2018-07", "revenue": 123422.858758, "orders": 4508, "aov": 27.378628828305235, "customers": 4266, "newCustomers": 1503, "avgShipping": 0.8535936113575865, "freeShipPct": 0.6608251996450755, "avgMargin": 61.65821716877429, "discountPct": 0.271960958296362, "avgItems": 1.8010204081632653, "totalShipping": 3848.0, "freeShipOrders": 2979, "discountOrders": 1226, "totalItems": 8119.0}, {"YearMonth": "2018-08", "revenue": 150167.27845399998, "orders": 5519, "aov": 27.209146304402967, "customers": 5242, "newCustomers": 1650, "avgShipping": 0.7514948360210183, "freeShipPct": 0.6950534517122667, "avgMargin": 61.77354830990782, "discountPct": 0.43939119405689436, "avgItems": 1.8581264721869903, "totalShipping": 4147.5, "freeShipOrders": 3836, "discountOrders": 2425, "totalItems": 10255.0}, {"YearMonth": "2018-09", "revenue": 114886.628979, "orders": 4320, "aov": 26.594127078472223, "customers": 4106, "newCustomers": 1292, "avgShipping": 0.8390046296296296, "freeShipPct": 0.6608796296296297, "avgMargin": 62.038693259574295, "discountPct": 0.3770833333333333, "avgItems": 1.7976851851851852, "totalShipping": 3624.5, "freeShipOrders": 2855, "discountOrders": 1629, "totalItems": 7766.0}, {"YearMonth": "2018-10", "revenue": 148640.908987, "orders": 5285, "aov": 28.125053734531694, "customers": 5036, "newCustomers": 1377, "avgShipping": 0.8210974456007568, "freeShipPct": 0.6599810785241249, "avgMargin": 61.27313164722605, "discountPct": 0.37559129612109743, "avgItems": 1.8647114474929045, "totalShipping": 4339.5, "freeShipOrders": 3488, "discountOrders": 1985, "totalItems": 9855.0}, {"YearMonth": "2018-11", "revenue": 135588.479887, "orders": 4899, "aov": 27.676766664013062, "customers": 4661, "newCustomers": 1310, "avgShipping": 0.7749540722596449, "freeShipPct": 0.6819759134517248, "avgMargin": 62.48171179613228, "discountPct": 0.45254133496631965, "avgItems": 1.9065115329659115, "totalShipping": 3796.5, "freeShipOrders": 3341, "discountOrders": 2217, "totalItems": 9340.0}, {"YearMonth": "2018-12", "revenue": 124165.70961399999, "orders": 4513, "aov": 27.51289820828717, "customers": 4271, "newCustomers": 1062, "avgShipping": 0.5952803013516508, "freeShipPct": 0.7511633060048748, "avgMargin": 61.921971511782786, "discountPct": 0.4582317748725903, "avgItems": 1.938400177265677, "totalShipping": 2686.5, "freeShipOrders": 3390, "discountOrders": 2068, "totalItems": 8748.0}, {"YearMonth": "2019-01", "revenue": 199869.068668, "orders": 7035, "aov": 28.410670741719972, "customers": 6670, "newCustomers": 2007, "avgShipping": 0.7651741293532338, "freeShipPct": 0.683866382373845, "avgMargin": 59.39050193725578, "discountPct": 0.5697228144989339, "avgItems": 1.9847903340440654, "totalShipping": 5383.0, "freeShipOrders": 4811, "discountOrders": 4008, "totalItems": 13963.0}, {"YearMonth": "2019-02", "revenue": 114877.539068, "orders": 4151, "aov": 27.674666120934713, "customers": 3974, "newCustomers": 1358, "avgShipping": 0.8796675499879547, "freeShipPct": 0.6374367622259697, "avgMargin": 59.89117636780476, "discountPct": 0.2524692845097567, "avgItems": 1.9903637677668031, "totalShipping": 3651.5, "freeShipOrders": 2646, "discountOrders": 1048, "totalItems": 8262.0}, {"YearMonth": "2019-03", "revenue": 130480.64897899999, "orders": 4520, "aov": 28.86740021659292, "customers": 4212, "newCustomers": 1123, "avgShipping": 0.8434734513274337, "freeShipPct": 0.6566371681415929, "avgMargin": 59.90805035525688, "discountPct": 0.35951327433628316, "avgItems": 2.206858407079646, "totalShipping": 3812.5, "freeShipOrders": 2968, "discountOrders": 1625, "totalItems": 9975.0}, {"YearMonth": "2019-04", "revenue": 118809.088967, "orders": 4152, "aov": 28.614905820568403, "customers": 3936, "newCustomers": 1030, "avgShipping": 0.8547687861271677, "freeShipPct": 0.653179190751445, "avgMargin": 63.05313642184176, "discountPct": 0.46122350674373797, "avgItems": 1.85621387283237, "totalShipping": 3549.0, "freeShipOrders": 2712, "discountOrders": 1915, "totalItems": 7707.0}, {"YearMonth": "2019-05", "revenue": 123377.289237, "orders": 4390, "aov": 28.104166113211846, "customers": 4193, "newCustomers": 1005, "avgShipping": 0.821753986332574, "freeShipPct": 0.6603644646924829, "avgMargin": 63.098287979536, "discountPct": 0.4706150341685649, "avgItems": 1.784738041002278, "totalShipping": 3607.5, "freeShipOrders": 2899, "discountOrders": 2066, "totalItems": 7835.0}, {"YearMonth": "2019-06", "revenue": 125374.028985, "orders": 4176, "aov": 30.02251651939655, "customers": 3911, "newCustomers": 866, "avgShipping": 0.8275862068965517, "freeShipPct": 0.6602011494252874, "avgMargin": 61.660030100566054, "discountPct": 0.28376436781609193, "avgItems": 2.042624521072797, "totalShipping": 3456.0, "freeShipOrders": 2757, "discountOrders": 1185, "totalItems": 8530.0}, {"YearMonth": "2019-07", "revenue": 174663.328411, "orders": 5224, "aov": 33.43478721496937, "customers": 4795, "newCustomers": 845, "avgShipping": 0.8069486983154671, "freeShipPct": 0.6697932618683001, "avgMargin": 54.69999892725943, "discountPct": 0.6294027565084227, "avgItems": 3.1801301684532923, "totalShipping": 4215.5, "freeShipOrders": 3499, "discountOrders": 3288, "totalItems": 16613.0}, {"YearMonth": "2019-08", "revenue": 86250.779348, "orders": 3115, "aov": 27.688853723274477, "customers": 2959, "newCustomers": 724, "avgShipping": 0.852808988764045, "freeShipPct": 0.6526484751203853, "avgMargin": 63.66598229943221, "discountPct": 0.307223113964687, "avgItems": 1.7402889245585875, "totalShipping": 2656.5, "freeShipOrders": 2033, "discountOrders": 957, "totalItems": 5421.0}, {"YearMonth": "2019-09", "revenue": 121504.030267, "orders": 4261, "aov": 28.515379081670968, "customers": 4038, "newCustomers": 825, "avgShipping": 0.8458108425252289, "freeShipPct": 0.654071814128139, "avgMargin": 62.15938545117487, "discountPct": 0.593053273879371, "avgItems": 1.8946256747242431, "totalShipping": 3604.0, "freeShipOrders": 2787, "discountOrders": 2527, "totalItems": 8073.0}, {"YearMonth": "2019-10", "revenue": 131830.319078, "orders": 4246, "aov": 31.048120366933585, "customers": 3947, "newCustomers": 813, "avgShipping": 0.8265426283560998, "freeShipPct": 0.6577955723033443, "avgMargin": 58.429893770128814, "discountPct": 0.42487046632124353, "avgItems": 2.650965614696185, "totalShipping": 3509.5, "freeShipOrders": 2793, "discountOrders": 1804, "totalItems": 11256.0}, {"YearMonth": "2019-11", "revenue": 114587.56906, "orders": 3980, "aov": 28.790846497487436, "customers": 3797, "newCustomers": 660, "avgShipping": 0.814572864321608, "freeShipPct": 0.6633165829145728, "avgMargin": 64.4637263556819, "discountPct": 0.5871859296482412, "avgItems": 1.9258793969849246, "totalShipping": 3242.0, "freeShipOrders": 2640, "discountOrders": 2337, "totalItems": 7665.0}, {"YearMonth": "2019-12", "revenue": 104050.239099, "orders": 3532, "aov": 29.459297593148356, "customers": 3295, "newCustomers": 618, "avgShipping": 0.6017836919592299, "freeShipPct": 0.7480181200453001, "avgMargin": 61.81621395878633, "discountPct": 0.5580407701019252, "avgItems": 2.2737825594563987, "totalShipping": 2125.5, "freeShipOrders": 2642, "discountOrders": 1971, "totalItems": 8031.0}, {"YearMonth": "2020-01", "revenue": 172556.308608, "orders": 5713, "aov": 30.204149940136528, "customers": 5278, "newCustomers": 947, "avgShipping": 0.7466304918606687, "freeShipPct": 0.6875546998074566, "avgMargin": 57.6310111272834, "discountPct": 0.7866269910729914, "avgItems": 2.8531419569403114, "totalShipping": 4265.5, "freeShipOrders": 3928, "discountOrders": 4494, "totalItems": 16300.0}, {"YearMonth": "2020-02", "revenue": 67147.59938, "orders": 2520, "aov": 26.64587276984127, "customers": 2400, "newCustomers": 701, "avgShipping": 0.9041666666666667, "freeShipPct": 0.6361111111111111, "avgMargin": 63.3581254822287, "discountPct": 0.17817460317460318, "avgItems": 1.7595238095238095, "totalShipping": 2278.5, "freeShipOrders": 1603, "discountOrders": 449, "totalItems": 4434.0}, {"YearMonth": "2020-03", "revenue": 145264.649181, "orders": 5192, "aov": 27.97855338617103, "customers": 4714, "newCustomers": 1507, "avgShipping": 0.9639830508474576, "freeShipPct": 0.6142141756548536, "avgMargin": 59.754853959761675, "discountPct": 0.11016949152542373, "avgItems": 2.023497688751926, "totalShipping": 5005.0, "freeShipOrders": 3189, "discountOrders": 572, "totalItems": 10506.0}, {"YearMonth": "2020-04", "revenue": 156109.059208, "orders": 6875, "aov": 22.706772248436362, "customers": 6413, "newCustomers": 3281, "avgShipping": 1.1124363636363637, "freeShipPct": 0.5584, "avgMargin": 62.89531689270721, "discountPct": 0.08334545454545454, "avgItems": 2.0730181818181816, "totalShipping": 7648.0, "freeShipOrders": 3839, "discountOrders": 573, "totalItems": 14252.0}, {"YearMonth": "2020-05", "revenue": 145577.77916099998, "orders": 6236, "aov": 23.34473687636305, "customers": 5891, "newCustomers": 2672, "avgShipping": 1.0516356638871072, "freeShipPct": 0.5796985246953175, "avgMargin": 62.44362343134573, "discountPct": 0.1521808851828095, "avgItems": 2.1351828094932648, "totalShipping": 6558.0, "freeShipOrders": 3615, "discountOrders": 949, "totalItems": 13315.0}, {"YearMonth": "2020-06", "revenue": 151386.319173, "orders": 5983, "aov": 25.30274430436236, "customers": 5649, "newCustomers": 2074, "avgShipping": 0.9758482366705666, "freeShipPct": 0.6070533177335785, "avgMargin": 60.33443318721789, "discountPct": 0.2821327093431389, "avgItems": 2.097108474009694, "totalShipping": 5838.5, "freeShipOrders": 3632, "discountOrders": 1688, "totalItems": 12547.0}, {"YearMonth": "2020-07", "revenue": 153435.438987, "orders": 5747, "aov": 26.698353747520446, "customers": 5478, "newCustomers": 1853, "avgShipping": 0.9950408908995998, "freeShipPct": 0.5992691839220463, "avgMargin": 59.91342035941236, "discountPct": 0.31738298242561336, "avgItems": 1.9243083347833652, "totalShipping": 5718.5, "freeShipOrders": 3444, "discountOrders": 1824, "totalItems": 11059.0}, {"YearMonth": "2020-08", "revenue": 157194.128922, "orders": 5658, "aov": 27.782631481442206, "customers": 5388, "newCustomers": 1711, "avgShipping": 0.9746376811594203, "freeShipPct": 0.603570166136444, "avgMargin": 58.748563988461136, "discountPct": 0.24938140685754684, "avgItems": 1.9086249558147756, "totalShipping": 5514.5, "freeShipOrders": 3415, "discountOrders": 1411, "totalItems": 10799.0}, {"YearMonth": "2020-09", "revenue": 128893.00931899999, "orders": 4917, "aov": 26.213750115720966, "customers": 4664, "newCustomers": 1803, "avgShipping": 0.884584095993492, "freeShipPct": 0.6428716697173072, "avgMargin": 60.726150610185435, "discountPct": 0.2141549725442343, "avgItems": 1.9172259507829978, "totalShipping": 4349.5, "freeShipOrders": 3161, "discountOrders": 1053, "totalItems": 9427.0}, {"YearMonth": "2020-10", "revenue": 196617.56894, "orders": 7957, "aov": 24.710012434334548, "customers": 7486, "newCustomers": 3007, "avgShipping": 0.9798919190649742, "freeShipPct": 0.6028654015332412, "avgMargin": 61.905189211682405, "discountPct": 0.25021993213522686, "avgItems": 1.8703028779690838, "totalShipping": 7797.0, "freeShipOrders": 4797, "discountOrders": 1991, "totalItems": 14882.0}, {"YearMonth": "2020-11", "revenue": 179249.439239, "orders": 7401, "aov": 24.219624272260504, "customers": 7015, "newCustomers": 3015, "avgShipping": 1.0224969598702878, "freeShipPct": 0.587082826645048, "avgMargin": 62.073172839172805, "discountPct": 0.2482097013917038, "avgItems": 1.8594784488582623, "totalShipping": 7567.5, "freeShipOrders": 4345, "discountOrders": 1837, "totalItems": 13762.0}, {"YearMonth": "2020-12", "revenue": 167532.02894699998, "orders": 6363, "aov": 26.32909460113154, "customers": 5997, "newCustomers": 2095, "avgShipping": 1.111032531824611, "freeShipPct": 0.5546126041175546, "avgMargin": 60.95707270932403, "discountPct": 0.37057991513437055, "avgItems": 1.9377652050919378, "totalShipping": 7069.5, "freeShipOrders": 3529, "discountOrders": 2358, "totalItems": 12330.0}, {"YearMonth": "2021-01", "revenue": 229110.428571, "orders": 8927, "aov": 25.66488501971547, "customers": 8458, "newCustomers": 3109, "avgShipping": 1.0359583286658451, "freeShipPct": 0.5877674470706844, "avgMargin": 60.849623862662966, "discountPct": 0.5581942421866248, "avgItems": 2.0151226615884394, "totalShipping": 9248.0, "freeShipOrders": 5247, "discountOrders": 4983, "totalItems": 17989.0}, {"YearMonth": "2021-02", "revenue": 123629.039368, "orders": 5112, "aov": 24.18408438341158, "customers": 4914, "newCustomers": 1984, "avgShipping": 1.103971048513302, "freeShipPct": 0.5629890453834115, "avgMargin": 59.89446047497231, "discountPct": 0.2664319248826291, "avgItems": 1.8440923317683882, "totalShipping": 5643.5, "freeShipOrders": 2878, "discountOrders": 1362, "totalItems": 9427.0}, {"YearMonth": "2021-03", "revenue": 157972.759015, "orders": 6024, "aov": 26.22389757885126, "customers": 5757, "newCustomers": 1960, "avgShipping": 1.0720451527224435, "freeShipPct": 0.574535192563081, "avgMargin": 59.189566669801096, "discountPct": 0.4040504648074369, "avgItems": 1.966301460823373, "totalShipping": 6458.0, "freeShipOrders": 3461, "discountOrders": 2434, "totalItems": 11845.0}, {"YearMonth": "2021-04", "revenue": 129840.699006, "orders": 4942, "aov": 26.27290550505868, "customers": 4697, "newCustomers": 1209, "avgShipping": 1.007689194658033, "freeShipPct": 0.5979360582760016, "avgMargin": 59.01589917120314, "discountPct": 0.2612302711452853, "avgItems": 1.9093484419263456, "totalShipping": 4980.0, "freeShipOrders": 2955, "discountOrders": 1291, "totalItems": 9436.0}, {"YearMonth": "2021-05", "revenue": 135982.438989, "orders": 5121, "aov": 26.553883809607495, "customers": 4874, "newCustomers": 1185, "avgShipping": 0.8944542081624682, "freeShipPct": 0.6365944151532904, "avgMargin": 58.61370491583404, "discountPct": 0.4315563366529975, "avgItems": 1.9630931458699472, "totalShipping": 4580.5, "freeShipOrders": 3260, "discountOrders": 2210, "totalItems": 10053.0}, {"YearMonth": "2021-06", "revenue": 146817.098707, "orders": 5626, "aov": 26.09617822733736, "customers": 5308, "newCustomers": 1415, "avgShipping": 0.9653394952008532, "freeShipPct": 0.6128688233202986, "avgMargin": 59.38452622805555, "discountPct": 0.4991112691077142, "avgItems": 1.896551724137931, "totalShipping": 5431.0, "freeShipOrders": 3448, "discountOrders": 2808, "totalItems": 10670.0}, {"YearMonth": "2021-07", "revenue": 174203.408797, "orders": 6537, "aov": 26.648831084136457, "customers": 6291, "newCustomers": 2041, "avgShipping": 1.0334251185559125, "freeShipPct": 0.6048646167966958, "avgMargin": 55.869574834802386, "discountPct": 0.17439192290041303, "avgItems": 1.9940339605323543, "totalShipping": 6755.5, "freeShipOrders": 3954, "discountOrders": 1140, "totalItems": 13035.0}, {"YearMonth": "2021-08", "revenue": 124327.59901199999, "orders": 4729, "aov": 26.290462891097484, "customers": 4544, "newCustomers": 1813, "avgShipping": 1.1760414463945865, "freeShipPct": 0.5555085641784733, "avgMargin": 59.14142052632311, "discountPct": 0.185874392049059, "avgItems": 1.8636075280186086, "totalShipping": 5561.5, "freeShipOrders": 2627, "discountOrders": 879, "totalItems": 8813.0}, {"YearMonth": "2021-09", "revenue": 137566.349091, "orders": 5069, "aov": 27.138754999210892, "customers": 4870, "newCustomers": 1469, "avgShipping": 1.0457683961333597, "freeShipPct": 0.6032748076543697, "avgMargin": 59.63365086475017, "discountPct": 0.41191556520023676, "avgItems": 1.9739593608206747, "totalShipping": 5301.0, "freeShipOrders": 3058, "discountOrders": 2088, "totalItems": 10006.0}, {"YearMonth": "2021-10", "revenue": 131875.218986, "orders": 5308, "aov": 24.84461548342125, "customers": 5003, "newCustomers": 1384, "avgShipping": 1.0136586284853053, "freeShipPct": 0.6128485305199699, "avgMargin": 59.60200179361398, "discountPct": 0.3730218538055765, "avgItems": 1.8315749811605124, "totalShipping": 5380.5, "freeShipOrders": 3253, "discountOrders": 1980, "totalItems": 9722.0}, {"YearMonth": "2021-11", "revenue": 172980.608768, "orders": 6308, "aov": 27.422417369689285, "customers": 6043, "newCustomers": 1691, "avgShipping": 0.9758243500317058, "freeShipPct": 0.6250792644261256, "avgMargin": 57.06502652976349, "discountPct": 0.07577679137603044, "avgItems": 2.024571972098922, "totalShipping": 6155.5, "freeShipOrders": 3943, "discountOrders": 478, "totalItems": 12771.0}, {"YearMonth": "2021-12", "revenue": 110867.919064, "orders": 4116, "aov": 26.93584039455782, "customers": 3965, "newCustomers": 1049, "avgShipping": 1.0823615160349853, "freeShipPct": 0.5855199222546161, "avgMargin": 58.61065353759331, "discountPct": 0.152332361516035, "avgItems": 1.935860058309038, "totalShipping": 4455.0, "freeShipOrders": 2410, "discountOrders": 627, "totalItems": 7968.0}, {"YearMonth": "2022-01", "revenue": 205250.558459, "orders": 8182, "aov": 25.085621908946468, "customers": 7701, "newCustomers": 2422, "avgShipping": 0.9307015399657785, "freeShipPct": 0.6338303593253484, "avgMargin": 54.87044413263486, "discountPct": 0.1955512099731117, "avgItems": 1.9534343681251527, "totalShipping": 7615.0, "freeShipOrders": 5186, "discountOrders": 1600, "totalItems": 15983.0}, {"YearMonth": "2022-02", "revenue": 88094.2294, "orders": 3699, "aov": 23.815687861584212, "customers": 3544, "newCustomers": 1296, "avgShipping": 1.1219248445525818, "freeShipPct": 0.5679913490132468, "avgMargin": 59.634519247126285, "discountPct": 0.10786699107866991, "avgItems": 1.739389024060557, "totalShipping": 4150.0, "freeShipOrders": 2101, "discountOrders": 399, "totalItems": 6434.0}, {"YearMonth": "2022-03", "revenue": 158037.52872899998, "orders": 6185, "aov": 25.55174272093775, "customers": 5947, "newCustomers": 2305, "avgShipping": 1.1875505254648342, "freeShipPct": 0.5472918350848828, "avgMargin": 58.66264615648272, "discountPct": 0.34777687954729186, "avgItems": 1.8777687954729183, "totalShipping": 7345.0, "freeShipOrders": 3385, "discountOrders": 2151, "totalItems": 11614.0}, {"YearMonth": "2022-04", "revenue": 129498.829437, "orders": 5372, "aov": 24.106260133469842, "customers": 5129, "newCustomers": 1674, "avgShipping": 1.0671072226358898, "freeShipPct": 0.5887937453462397, "avgMargin": 58.950057596148696, "discountPct": 0.3512658227848101, "avgItems": 1.7626582278481013, "totalShipping": 5732.5, "freeShipOrders": 3163, "discountOrders": 1887, "totalItems": 9469.0}, {"YearMonth": "2022-05", "revenue": 115602.229557, "orders": 4494, "aov": 25.723682589452604, "customers": 4311, "newCustomers": 1249, "avgShipping": 1.0992434356920338, "freeShipPct": 0.5781041388518025, "avgMargin": 58.53064186856388, "discountPct": 0.30885625278148643, "avgItems": 1.8397863818424567, "totalShipping": 4940.0, "freeShipOrders": 2598, "discountOrders": 1388, "totalItems": 8268.0}, {"YearMonth": "2022-06", "revenue": 111385.779481, "orders": 4162, "aov": 26.762561143921193, "customers": 3981, "newCustomers": 971, "avgShipping": 1.2684887073522344, "freeShipPct": 0.5269101393560788, "avgMargin": 59.004135408896396, "discountPct": 0.4312830370014416, "avgItems": 1.8832292167227294, "totalShipping": 5279.45, "freeShipOrders": 2193, "discountOrders": 1795, "totalItems": 7838.0}, {"YearMonth": "2022-07", "revenue": 133928.679454, "orders": 4961, "aov": 26.996307086071354, "customers": 4761, "newCustomers": 1142, "avgShipping": 1.3436605523080025, "freeShipPct": 0.4851844386212457, "avgMargin": 57.10598920058603, "discountPct": 0.2793791574279379, "avgItems": 1.9687562991332392, "totalShipping": 6665.900000000001, "freeShipOrders": 2407, "discountOrders": 1386, "totalItems": 9767.0}, {"YearMonth": "2022-08", "revenue": 115569.879581, "orders": 4235, "aov": 27.28922776410862, "customers": 4061, "newCustomers": 1220, "avgShipping": 1.4565761511216058, "freeShipPct": 0.44344746162927984, "avgMargin": 59.01654789024278, "discountPct": 0.2694214876033058, "avgItems": 1.8859504132231404, "totalShipping": 6168.6, "freeShipOrders": 1878, "discountOrders": 1141, "totalItems": 7987.0}, {"YearMonth": "2022-09", "revenue": 110495.49961, "orders": 4045, "aov": 27.316563562422743, "customers": 3917, "newCustomers": 1031, "avgShipping": 1.1450185414091472, "freeShipPct": 0.5176761433868974, "avgMargin": 56.96322141995691, "discountPct": 0.35278121137206425, "avgItems": 1.9243510506798516, "totalShipping": 4631.6, "freeShipOrders": 2094, "discountOrders": 1427, "totalItems": 7784.0}, {"YearMonth": "2022-10", "revenue": 107446.289508, "orders": 4162, "aov": 25.81602342815954, "customers": 3957, "newCustomers": 1116, "avgShipping": 1.1927198462277753, "freeShipPct": 0.49351273426237385, "avgMargin": 57.03487408272486, "discountPct": 0.33133109082172035, "avgItems": 1.8558385391638634, "totalShipping": 4964.1, "freeShipOrders": 2054, "discountOrders": 1379, "totalItems": 7724.0}, {"YearMonth": "2022-11", "revenue": 136074.2995, "orders": 4707, "aov": 28.908922774591034, "customers": 4533, "newCustomers": 1104, "avgShipping": 1.1439983004036542, "freeShipPct": 0.5591671977905247, "avgMargin": 56.22869666334685, "discountPct": 0.396643297216911, "avgItems": 2.056086679413639, "totalShipping": 5384.8, "freeShipOrders": 2632, "discountOrders": 1867, "totalItems": 9678.0}, {"YearMonth": "2022-12", "revenue": 103121.46906999999, "orders": 3703, "aov": 27.848087785579256, "customers": 3528, "newCustomers": 874, "avgShipping": 1.6482176613556576, "freeShipPct": 0.4401836348906292, "avgMargin": 53.98273902793909, "discountPct": 0.28139346475830407, "avgItems": 1.967323791520389, "totalShipping": 6103.35, "freeShipOrders": 1630, "discountOrders": 1042, "totalItems": 7285.0}, {"YearMonth": "2023-01", "revenue": 180471.438775, "orders": 6343, "aov": 28.4520634991329, "customers": 6114, "newCustomers": 1715, "avgShipping": 1.60465079615324, "freeShipPct": 0.41652215040201795, "avgMargin": 50.728490418030994, "discountPct": 0.12360081980135583, "avgItems": 2.137001418886962, "totalShipping": 10178.300000000001, "freeShipOrders": 2642, "discountOrders": 784, "totalItems": 13555.0}, {"YearMonth": "2023-02", "revenue": 95150.969468, "orders": 3600, "aov": 26.43082485222222, "customers": 3472, "newCustomers": 1017, "avgShipping": 1.588027777777778, "freeShipPct": 0.43, "avgMargin": 55.77381719232383, "discountPct": 0.35083333333333333, "avgItems": 1.8675, "totalShipping": 5716.900000000001, "freeShipOrders": 1548, "discountOrders": 1263, "totalItems": 6723.0}, {"YearMonth": "2023-03", "revenue": 126256.109662, "orders": 4394, "aov": 28.733752767865273, "customers": 4233, "newCustomers": 1151, "avgShipping": 1.8092057350933093, "freeShipPct": 0.2774237596722804, "avgMargin": 57.419750281080006, "discountPct": 0.3593536640873919, "avgItems": 1.9487938097405553, "totalShipping": 7949.650000000001, "freeShipOrders": 1219, "discountOrders": 1579, "totalItems": 8563.0}, {"YearMonth": "2023-04", "revenue": 84170.359736, "orders": 2923, "aov": 28.795880853917208, "customers": 2820, "newCustomers": 738, "avgShipping": 1.8592370851864524, "freeShipPct": 0.2647964420116319, "avgMargin": 58.28605306797338, "discountPct": 0.20526855969893945, "avgItems": 1.9072870338693124, "totalShipping": 5434.55, "freeShipOrders": 774, "discountOrders": 600, "totalItems": 5575.0}, {"YearMonth": "2023-05", "revenue": 117546.359588, "orders": 3795, "aov": 30.97400779657444, "customers": 3650, "newCustomers": 831, "avgShipping": 1.7777206851119893, "freeShipPct": 0.30144927536231886, "avgMargin": 57.94861705553299, "discountPct": 0.3209486166007905, "avgItems": 1.986824769433465, "totalShipping": 6746.45, "freeShipOrders": 1144, "discountOrders": 1218, "totalItems": 7540.0}, {"YearMonth": "2023-06", "revenue": 107033.479391, "orders": 3427, "aov": 31.232413011672016, "customers": 3308, "newCustomers": 673, "avgShipping": 1.6988765684271958, "freeShipPct": 0.31747884447038227, "avgMargin": 57.884117989790184, "discountPct": 0.3667931135103589, "avgItems": 2.0350160490224685, "totalShipping": 5822.05, "freeShipOrders": 1088, "discountOrders": 1257, "totalItems": 6974.0}, {"YearMonth": "2023-07", "revenue": 134120.969179, "orders": 4371, "aov": 30.68427572157401, "customers": 4231, "newCustomers": 912, "avgShipping": 1.7428620452985588, "freeShipPct": 0.2910089224433768, "avgMargin": 54.94096218475108, "discountPct": 0.16838252116220545, "avgItems": 2.05399222145962, "totalShipping": 7618.05, "freeShipOrders": 1272, "discountOrders": 736, "totalItems": 8978.0}, {"YearMonth": "2023-08", "revenue": 95756.189683, "orders": 3242, "aov": 29.536147342072795, "customers": 3085, "newCustomers": 744, "avgShipping": 1.889882788402221, "freeShipPct": 0.25971622455274523, "avgMargin": 58.012106447967305, "discountPct": 0.15638494756323257, "avgItems": 1.8834053053670574, "totalShipping": 6127.0, "freeShipOrders": 842, "discountOrders": 507, "totalItems": 6106.0}, {"YearMonth": "2023-09", "revenue": 112323.459652, "orders": 3528, "aov": 31.83771532086168, "customers": 3380, "newCustomers": 626, "avgShipping": 1.8744472789115647, "freeShipPct": 0.3673469387755102, "avgMargin": 59.14731939048486, "discountPct": 0.3449546485260771, "avgItems": 2.008219954648526, "totalShipping": 6613.05, "freeShipOrders": 1296, "discountOrders": 1217, "totalItems": 7085.0}, {"YearMonth": "2023-10", "revenue": 117934.829643, "orders": 3735, "aov": 31.575590265863454, "customers": 3576, "newCustomers": 685, "avgShipping": 1.9654752342704152, "freeShipPct": 0.3724230254350736, "avgMargin": 59.39866398240603, "discountPct": 0.31700133868808567, "avgItems": 2.028647925033467, "totalShipping": 7341.05, "freeShipOrders": 1391, "discountOrders": 1184, "totalItems": 7577.0}, {"YearMonth": "2023-11", "revenue": 107124.510066, "orders": 3209, "aov": 33.38252105515737, "customers": 3075, "newCustomers": 421, "avgShipping": 1.908102212527267, "freeShipPct": 0.39139918977874727, "avgMargin": 59.63362038391665, "discountPct": 0.37052041134309754, "avgItems": 2.0934870676223123, "totalShipping": 6123.1, "freeShipOrders": 1256, "discountOrders": 1189, "totalItems": 6718.0}, {"YearMonth": "2023-12", "revenue": 100621.18008399999, "orders": 3057, "aov": 32.915008205430155, "customers": 2891, "newCustomers": 356, "avgShipping": 2.1630847235852144, "freeShipPct": 0.2198233562315996, "avgMargin": 57.6166610378422, "discountPct": 0.29407916257769057, "avgItems": 2.0722930978083087, "totalShipping": 6612.55, "freeShipOrders": 672, "discountOrders": 899, "totalItems": 6335.0}, {"YearMonth": "2024-01", "revenue": 160021.705672, "orders": 4803, "aov": 33.31703220320633, "customers": 4568, "newCustomers": 620, "avgShipping": 2.1191442848219864, "freeShipPct": 0.19154694982302728, "avgMargin": 53.0960624624119, "discountPct": 0.16219029773058505, "avgItems": 2.220070789090152, "totalShipping": 10178.25, "freeShipOrders": 920, "discountOrders": 779, "totalItems": 10663.0}, {"YearMonth": "2024-02", "revenue": 80575.549723, "orders": 2609, "aov": 30.883690963204295, "customers": 2485, "newCustomers": 451, "avgShipping": 2.2279992334227674, "freeShipPct": 0.19892679187428133, "avgMargin": 59.010615561135836, "discountPct": 0.19011115369873516, "avgItems": 1.8524338827136835, "totalShipping": 5812.85, "freeShipOrders": 519, "discountOrders": 496, "totalItems": 4833.0}, {"YearMonth": "2024-03", "revenue": 106042.55975, "orders": 3262, "aov": 32.50844872777437, "customers": 3116, "newCustomers": 659, "avgShipping": 2.4541538933169833, "freeShipPct": 0.19282648681790313, "avgMargin": 58.95950068867533, "discountPct": 0.2578172900061312, "avgItems": 1.9678111587982832, "totalShipping": 8005.45, "freeShipOrders": 629, "discountOrders": 841, "totalItems": 6419.0}, {"YearMonth": "2024-04", "revenue": 108175.210169, "orders": 3362, "aov": 32.1758507343843, "customers": 3203, "newCustomers": 672, "avgShipping": 2.5829565734681736, "freeShipPct": 0.20107079119571683, "avgMargin": 59.08226313947598, "discountPct": 0.2900059488399762, "avgItems": 1.9485425342058298, "totalShipping": 8683.9, "freeShipOrders": 676, "discountOrders": 975, "totalItems": 6551.0}, {"YearMonth": "2024-05", "revenue": 94699.4317, "orders": 3045, "aov": 31.099977569786535, "customers": 2878, "newCustomers": 643, "avgShipping": 2.535320197044335, "freeShipPct": 0.2180623973727422, "avgMargin": 58.97884473373083, "discountPct": 0.1711001642036125, "avgItems": 1.831855500821018, "totalShipping": 7720.05, "freeShipOrders": 664, "discountOrders": 521, "totalItems": 5578.0}, {"YearMonth": "2024-06", "revenue": 91976.405675, "orders": 2900, "aov": 31.71600195689655, "customers": 2782, "newCustomers": 591, "avgShipping": 2.4885344827586207, "freeShipPct": 0.2289655172413793, "avgMargin": 58.286619979500045, "discountPct": 0.13655172413793104, "avgItems": 1.8917241379310346, "totalShipping": 7216.75, "freeShipOrders": 664, "discountOrders": 396, "totalItems": 5486.0}, {"YearMonth": "2024-07", "revenue": 135837.507566, "orders": 4131, "aov": 32.882475808763004, "customers": 3909, "newCustomers": 735, "avgShipping": 2.365262648269184, "freeShipPct": 0.2411038489469862, "avgMargin": 53.81786267207491, "discountPct": 0.09053497942386832, "avgItems": 2.0994916485112562, "totalShipping": 9770.9, "freeShipOrders": 996, "discountOrders": 374, "totalItems": 8673.0}, {"YearMonth": "2024-08", "revenue": 95285.410238, "orders": 2962, "aov": 32.16928097164078, "customers": 2794, "newCustomers": 452, "avgShipping": 2.363909520594193, "freeShipPct": 0.2646860229574612, "avgMargin": 58.51920791063478, "discountPct": 0.17218095881161377, "avgItems": 1.9081701553004726, "totalShipping": 7001.900000000001, "freeShipOrders": 784, "discountOrders": 510, "totalItems": 5652.0}, {"YearMonth": "2024-09", "revenue": 94288.329855, "orders": 2861, "aov": 32.95642427647676, "customers": 2715, "newCustomers": 354, "avgShipping": 2.3746592100664103, "freeShipPct": 0.24781544914365605, "avgMargin": 58.53670367889049, "discountPct": 0.27088430618664805, "avgItems": 1.9916113247116394, "totalShipping": 6793.900000000001, "freeShipOrders": 709, "discountOrders": 775, "totalItems": 5698.0}, {"YearMonth": "2024-10", "revenue": 96211.499717, "orders": 3119, "aov": 30.846905968900288, "customers": 2934, "newCustomers": 558, "avgShipping": 2.49461365822379, "freeShipPct": 0.24655338249438924, "avgMargin": 58.90816611230905, "discountPct": 0.24623276691247195, "avgItems": 1.8967617826226355, "totalShipping": 7780.700000000001, "freeShipOrders": 769, "discountOrders": 768, "totalItems": 5916.0}, {"YearMonth": "2024-11", "revenue": 109338.799623, "orders": 3357, "aov": 32.57039011706881, "customers": 3150, "newCustomers": 313, "avgShipping": 2.4380250223413764, "freeShipPct": 0.23175454274649984, "avgMargin": 60.03412028473691, "discountPct": 0.4250819183795055, "avgItems": 2.0813226094727435, "totalShipping": 8184.450000000001, "freeShipOrders": 778, "discountOrders": 1427, "totalItems": 6987.0}, {"YearMonth": "2024-12", "revenue": 72208.339237, "orders": 2327, "aov": 31.030657171035664, "customers": 2170, "newCustomers": 290, "avgShipping": 2.5457885689729265, "freeShipPct": 0.2973785990545767, "avgMargin": 61.493139711005504, "discountPct": 0.1602922217447357, "avgItems": 1.8031800601633003, "totalShipping": 5924.05, "freeShipOrders": 692, "discountOrders": 373, "totalItems": 4196.0}, {"YearMonth": "2025-01", "revenue": 122792.21902, "orders": 3502, "aov": 35.063454888635064, "customers": 3304, "newCustomers": 551, "avgShipping": 2.8007424328954884, "freeShipPct": 0.24614505996573385, "avgMargin": 59.535812074507035, "discountPct": 0.13820673900628214, "avgItems": 2.0402627070245574, "totalShipping": 9808.2, "freeShipOrders": 862, "discountOrders": 484, "totalItems": 7145.0}, {"YearMonth": "2025-02", "revenue": 80439.489552, "orders": 2418, "aov": 33.266951841191066, "customers": 2265, "newCustomers": 410, "avgShipping": 2.682133995037221, "freeShipPct": 0.2948717948717949, "avgMargin": 62.98063802842716, "discountPct": 0.12406947890818859, "avgItems": 1.718362282878412, "totalShipping": 6485.400000000001, "freeShipOrders": 713, "discountOrders": 300, "totalItems": 4155.0}, {"YearMonth": "2025-03", "revenue": 86925.269514, "orders": 2499, "aov": 34.784021414165665, "customers": 2357, "newCustomers": 388, "avgShipping": 2.655542216886755, "freeShipPct": 0.29531812725090034, "avgMargin": 63.60927103004294, "discountPct": 0.10244097639055623, "avgItems": 1.7807122849139656, "totalShipping": 6636.2, "freeShipOrders": 738, "discountOrders": 256, "totalItems": 4450.0}, {"YearMonth": "2025-04", "revenue": 90604.28956, "orders": 2576, "aov": 35.172472655279506, "customers": 2423, "newCustomers": 334, "avgShipping": 2.576843944099379, "freeShipPct": 0.31638198757763975, "avgMargin": 63.79575261191771, "discountPct": 0.09976708074534162, "avgItems": 1.7701863354037266, "totalShipping": 6637.95, "freeShipOrders": 815, "discountOrders": 257, "totalItems": 4560.0}, {"YearMonth": "2025-05", "revenue": 96524.739562, "orders": 2631, "aov": 36.68747227746104, "customers": 2441, "newCustomers": 329, "avgShipping": 2.459540098821741, "freeShipPct": 0.34169517293804635, "avgMargin": 63.451038610730016, "discountPct": 0.10034207525655645, "avgItems": 1.83846446218168, "totalShipping": 6471.05, "freeShipOrders": 899, "discountOrders": 264, "totalItems": 4837.0}, {"YearMonth": "2025-06", "revenue": 83419.369519, "orders": 2344, "aov": 35.58846822482935, "customers": 2213, "newCustomers": 316, "avgShipping": 2.4568046075085324, "freeShipPct": 0.3447098976109215, "avgMargin": 63.69959845704154, "discountPct": 0.08873720136518772, "avgItems": 1.7696245733788396, "totalShipping": 5758.75, "freeShipOrders": 808, "discountOrders": 208, "totalItems": 4148.0}, {"YearMonth": "2025-07", "revenue": 87489.039397, "orders": 2489, "aov": 35.15027697750101, "customers": 2322, "newCustomers": 295, "avgShipping": 2.4172157492969064, "freeShipPct": 0.3579750903977501, "avgMargin": 63.562977139622504, "discountPct": 0.07713941341904379, "avgItems": 1.7533145841703495, "totalShipping": 6016.45, "freeShipOrders": 891, "discountOrders": 192, "totalItems": 4364.0}, {"YearMonth": "2025-08", "revenue": 87828.639446, "orders": 2494, "aov": 35.21597411627907, "customers": 2326, "newCustomers": 289, "avgShipping": 2.3442662389735367, "freeShipPct": 0.3809141940657578, "avgMargin": 63.650600641482015, "discountPct": 0.07618283881315156, "avgItems": 1.7534081796311147, "totalShipping": 5846.6, "freeShipOrders": 950, "discountOrders": 190, "totalItems": 4373.0}, {"YearMonth": "2025-09", "revenue": 79844.210324, "orders": 2320, "aov": 34.41560789827586, "customers": 2185, "newCustomers": 292, "avgShipping": 2.498771551724138, "freeShipPct": 0.3396551724137931, "avgMargin": 64.4845213990079, "discountPct": 0.0771551724137931, "avgItems": 1.7383620689655173, "totalShipping": 5797.150000000001, "freeShipOrders": 788, "discountOrders": 179, "totalItems": 4033.0}, {"YearMonth": "2025-10", "revenue": 89714.129447, "orders": 2560, "aov": 35.04458181523437, "customers": 2371, "newCustomers": 297, "avgShipping": 2.3970703125, "freeShipPct": 0.38671875, "avgMargin": 64.17198476830471, "discountPct": 0.075, "avgItems": 1.755078125, "totalShipping": 6136.5, "freeShipOrders": 990, "discountOrders": 192, "totalItems": 4493.0}, {"YearMonth": "2025-11", "revenue": 74797.37961, "orders": 2117, "aov": 35.331780637694855, "customers": 2003, "newCustomers": 229, "avgShipping": 2.43705715635333, "freeShipPct": 0.37128011336797356, "avgMargin": 63.73151863116111, "discountPct": 0.06660368445914029, "avgItems": 1.8011336797354747, "totalShipping": 5159.25, "freeShipOrders": 786, "discountOrders": 141, "totalItems": 3813.0}, {"YearMonth": "2025-12", "revenue": 67471.349599, "orders": 1969, "aov": 34.26681036008126, "customers": 1855, "newCustomers": 211, "avgShipping": 2.5664042661249367, "freeShipPct": 0.36312849162011174, "avgMargin": 63.591715918467685, "discountPct": 0.04418486541391569, "avgItems": 1.734890807516506, "totalShipping": 5053.25, "freeShipOrders": 715, "discountOrders": 87, "totalItems": 3416.0}, {"YearMonth": "2026-01", "revenue": 32972.259808, "orders": 888, "aov": 37.13092320720721, "customers": 872, "newCustomers": 125, "avgShipping": 2.6420045045045044, "freeShipPct": 0.3277027027027027, "avgMargin": 63.77383312476044, "discountPct": 0.060810810810810814, "avgItems": 1.8626126126126126, "totalShipping": 2346.1, "freeShipOrders": 291, "discountOrders": 54, "totalItems": 1654.0}], "channelMonthly": [{"YearMonth": "2005-11", "ReferrerSource": "Organic", "orders": 2, "revenue": 37.849901, "avgAOV": 18.9249505, "avgItems": 1.5, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2005-12", "ReferrerSource": "Organic", "orders": 1, "revenue": 17.9, "avgAOV": 17.9, "avgItems": 2.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2006-01", "ReferrerSource": "Organic", "orders": 4, "revenue": 106.44969900000001, "avgAOV": 26.612424750000002, "avgItems": 2.25, "newPct": 0.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2006-02", "ReferrerSource": "Organic", "orders": 5, "revenue": 121.100002, "avgAOV": 24.2200004, "avgItems": 2.0, "newPct": 0.6, "freeShipPct": 0.6, "discountPct": 0.0}, {"YearMonth": "2006-03", "ReferrerSource": "Organic", "orders": 111, "revenue": 2284.330004, "avgAOV": 20.579549585585585, "avgItems": 1.945945945945946, "newPct": 0.918918918918919, "freeShipPct": 0.7927927927927928, "discountPct": 0.0}, {"YearMonth": "2006-04", "ReferrerSource": "Organic", "orders": 171, "revenue": 2960.534808, "avgAOV": 17.31306905263158, "avgItems": 1.5847953216374269, "newPct": 0.9181286549707602, "freeShipPct": 0.7660818713450293, "discountPct": 0.0}, {"YearMonth": "2006-05", "ReferrerSource": "Organic", "orders": 244, "revenue": 4318.036409, "avgAOV": 17.696870528688525, "avgItems": 1.569672131147541, "newPct": 0.9098360655737705, "freeShipPct": 0.8155737704918032, "discountPct": 0.004098360655737705}, {"YearMonth": "2006-06", "ReferrerSource": "Organic", "orders": 265, "revenue": 4865.121922, "avgAOV": 18.358950649056606, "avgItems": 1.679245283018868, "newPct": 0.8754716981132076, "freeShipPct": 0.8150943396226416, "discountPct": 0.0}, {"YearMonth": "2006-07", "ReferrerSource": "Organic", "orders": 302, "revenue": 5482.026914, "avgAOV": 18.152407, "avgItems": 1.509933774834437, "newPct": 0.8178807947019867, "freeShipPct": 0.7715231788079471, "discountPct": 0.0}, {"YearMonth": "2006-08", "ReferrerSource": "Organic", "orders": 283, "revenue": 5640.698835, "avgAOV": 19.93179800353357, "avgItems": 1.5865724381625441, "newPct": 0.7879858657243817, "freeShipPct": 0.734982332155477, "discountPct": 0.0035335689045936395}, {"YearMonth": "2006-09", "ReferrerSource": "Organic", "orders": 369, "revenue": 6828.857686, "avgAOV": 18.50638939295393, "avgItems": 1.6883468834688347, "newPct": 0.7994579945799458, "freeShipPct": 0.7615176151761518, "discountPct": 0.08672086720867209}, {"YearMonth": "2006-10", "ReferrerSource": "Organic", "orders": 473, "revenue": 8775.654862, "avgAOV": 18.55318152642706, "avgItems": 1.744186046511628, "newPct": 0.7315010570824524, "freeShipPct": 0.7420718816067653, "discountPct": 0.080338266384778}, {"YearMonth": "2006-11", "ReferrerSource": "Organic", "orders": 452, "revenue": 8036.807243, "avgAOV": 17.78054699778761, "avgItems": 1.6283185840707965, "newPct": 0.7168141592920354, "freeShipPct": 0.7323008849557522, "discountPct": 0.0420353982300885}, {"YearMonth": "2006-12", "ReferrerSource": "Organic", "orders": 457, "revenue": 8702.449861, "avgAOV": 19.042559870897154, "avgItems": 1.5273522975929978, "newPct": 0.7527352297592997, "freeShipPct": 0.8358862144420132, "discountPct": 0.002188183807439825}, {"YearMonth": "2007-01", "ReferrerSource": "Organic", "orders": 639, "revenue": 11486.135416, "avgAOV": 17.975172794992172, "avgItems": 1.5086071987480438, "newPct": 0.729264475743349, "freeShipPct": 0.7793427230046949, "discountPct": 0.004694835680751174}, {"YearMonth": "2007-02", "ReferrerSource": "Organic", "orders": 660, "revenue": 12216.326396, "avgAOV": 18.50958544848485, "avgItems": 1.5242424242424242, "newPct": 0.5166666666666667, "freeShipPct": 0.8545454545454545, "discountPct": 0.0030303030303030303}, {"YearMonth": "2007-03", "ReferrerSource": "Organic", "orders": 555, "revenue": 10783.237444, "avgAOV": 19.429256655855855, "avgItems": 1.6, "newPct": 0.5927927927927928, "freeShipPct": 0.8108108108108109, "discountPct": 0.0}, {"YearMonth": "2007-04", "ReferrerSource": "Organic", "orders": 452, "revenue": 8828.669935, "avgAOV": 19.53245560840708, "avgItems": 1.6261061946902655, "newPct": 0.5442477876106194, "freeShipPct": 0.7588495575221239, "discountPct": 0.0}, {"YearMonth": "2007-05", "ReferrerSource": "Organic", "orders": 515, "revenue": 9860.62886, "avgAOV": 19.146852155339808, "avgItems": 1.6699029126213591, "newPct": 0.5262135922330097, "freeShipPct": 0.7902912621359224, "discountPct": 0.02912621359223301}, {"YearMonth": "2007-06", "ReferrerSource": "Organic", "orders": 533, "revenue": 10580.481154, "avgAOV": 19.850808919324578, "avgItems": 1.6153846153846154, "newPct": 0.6604127579737336, "freeShipPct": 0.551594746716698, "discountPct": 0.024390243902439025}, {"YearMonth": "2007-07", "ReferrerSource": "Organic", "orders": 524, "revenue": 11018.502634, "avgAOV": 21.02767678244275, "avgItems": 1.6469465648854962, "newPct": 0.6851145038167938, "freeShipPct": 0.5438931297709924, "discountPct": 0.0}, {"YearMonth": "2007-08", "ReferrerSource": "Organic", "orders": 491, "revenue": 10025.919848, "avgAOV": 20.41938869246436, "avgItems": 1.680244399185336, "newPct": 0.6476578411405295, "freeShipPct": 0.5437881873727087, "discountPct": 0.008146639511201629}, {"YearMonth": "2007-09", "ReferrerSource": "Organic", "orders": 493, "revenue": 9671.657874999999, "avgAOV": 19.617967292089247, "avgItems": 1.6308316430020284, "newPct": 0.6369168356997972, "freeShipPct": 0.5314401622718052, "discountPct": 0.004056795131845842}, {"YearMonth": "2007-10", "ReferrerSource": "Organic", "orders": 456, "revenue": 10699.951841, "avgAOV": 23.464806668859648, "avgItems": 1.9605263157894737, "newPct": 0.6030701754385965, "freeShipPct": 0.5614035087719298, "discountPct": 0.008771929824561403}, {"YearMonth": "2007-11", "ReferrerSource": "Organic", "orders": 467, "revenue": 9619.884786, "avgAOV": 20.599325023554606, "avgItems": 1.721627408993576, "newPct": 0.6359743040685225, "freeShipPct": 0.6188436830835118, "discountPct": 0.0021413276231263384}, {"YearMonth": "2007-12", "ReferrerSource": "Organic", "orders": 374, "revenue": 7706.746846999999, "avgAOV": 20.60627499197861, "avgItems": 1.6737967914438503, "newPct": 0.5882352941176471, "freeShipPct": 0.5053475935828877, "discountPct": 0.00267379679144385}, {"YearMonth": "2008-01", "ReferrerSource": "Organic", "orders": 654, "revenue": 13241.55782, "avgAOV": 20.247030305810398, "avgItems": 1.6422018348623852, "newPct": 0.6024464831804281, "freeShipPct": 0.5581039755351682, "discountPct": 0.0030581039755351682}, {"YearMonth": "2008-02", "ReferrerSource": "Organic", "orders": 521, "revenue": 11032.04128, "avgAOV": 21.174743339731286, "avgItems": 1.7562380038387715, "newPct": 0.6180422264875239, "freeShipPct": 0.4894433781190019, "discountPct": 0.003838771593090211}, {"YearMonth": "2008-03", "ReferrerSource": "Organic", "orders": 625, "revenue": 12668.591699999999, "avgAOV": 20.269746719999997, "avgItems": 1.672, "newPct": 0.6048, "freeShipPct": 0.5264, "discountPct": 0.0048}, {"YearMonth": "2008-04", "ReferrerSource": "Organic", "orders": 565, "revenue": 10661.053659, "avgAOV": 18.869121520353982, "avgItems": 1.4849557522123893, "newPct": 0.5911504424778761, "freeShipPct": 0.5557522123893806, "discountPct": 0.0017699115044247787}, {"YearMonth": "2008-05", "ReferrerSource": "Organic", "orders": 613, "revenue": 12053.633878999999, "avgAOV": 19.66335053670473, "avgItems": 1.5432300163132138, "newPct": 0.6427406199021207, "freeShipPct": 0.4910277324632953, "discountPct": 0.0016313213703099511}, {"YearMonth": "2008-06", "ReferrerSource": "Organic", "orders": 877, "revenue": 17484.727841, "avgAOV": 19.936975873432154, "avgItems": 1.6009122006841505, "newPct": 0.637400228050171, "freeShipPct": 0.5051311288483467, "discountPct": 0.0011402508551881414}, {"YearMonth": "2008-07", "ReferrerSource": "Organic", "orders": 833, "revenue": 16038.55416, "avgAOV": 19.253966578631452, "avgItems": 1.625450180072029, "newPct": 0.6506602641056423, "freeShipPct": 0.49939975990396157, "discountPct": 0.04081632653061224}, {"YearMonth": "2008-08", "ReferrerSource": "Organic", "orders": 1148, "revenue": 21201.507049, "avgAOV": 18.468211715156794, "avgItems": 1.6506968641114983, "newPct": 0.7012195121951219, "freeShipPct": 0.4355400696864111, "discountPct": 0.08623693379790941}, {"YearMonth": "2008-09", "ReferrerSource": "Organic", "orders": 964, "revenue": 19294.511739999998, "avgAOV": 20.01505367219917, "avgItems": 1.6348547717842323, "newPct": 0.6514522821576764, "freeShipPct": 0.4823651452282158, "discountPct": 0.008298755186721992}, {"YearMonth": "2008-10", "ReferrerSource": "Organic", "orders": 1217, "revenue": 24813.099453, "avgAOV": 20.38874236072309, "avgItems": 1.5677896466721446, "newPct": 0.6844700082169268, "freeShipPct": 0.5069843878389483, "discountPct": 0.0049301561216105174}, {"YearMonth": "2008-11", "ReferrerSource": "Organic", "orders": 1248, "revenue": 25440.504521, "avgAOV": 20.38501964823718, "avgItems": 1.5625, "newPct": 0.6714743589743589, "freeShipPct": 0.4639423076923077, "discountPct": 0.004807692307692308}, {"YearMonth": "2008-12", "ReferrerSource": "Organic", "orders": 988, "revenue": 20314.958828, "avgAOV": 20.56169921862348, "avgItems": 1.6437246963562753, "newPct": 0.6477732793522267, "freeShipPct": 0.42105263157894735, "discountPct": 0.0010121457489878543}, {"YearMonth": "2009-01", "ReferrerSource": "Organic", "orders": 1668, "revenue": 35097.499565, "avgAOV": 21.041666405875297, "avgItems": 1.7326139088729018, "newPct": 0.657673860911271, "freeShipPct": 0.4196642685851319, "discountPct": 0.006594724220623501}, {"YearMonth": "2009-02", "ReferrerSource": "Organic", "orders": 1487, "revenue": 32899.380604, "avgAOV": 22.12466752118359, "avgItems": 1.7316745124411568, "newPct": 0.6294552790854069, "freeShipPct": 0.425689307330195, "discountPct": 0.0033624747814391394}, {"YearMonth": "2009-03", "ReferrerSource": "Organic", "orders": 1725, "revenue": 37236.189317, "avgAOV": 21.586196705507245, "avgItems": 1.6718840579710146, "newPct": 0.638840579710145, "freeShipPct": 0.45971014492753626, "discountPct": 0.00463768115942029}, {"YearMonth": "2009-04", "ReferrerSource": "Organic", "orders": 1697, "revenue": 37295.261615, "avgAOV": 21.977172430760167, "avgItems": 1.708898055391868, "newPct": 0.6605774896876841, "freeShipPct": 0.4384207424867413, "discountPct": 0.0041249263406010605}, {"YearMonth": "2009-05", "ReferrerSource": "Organic", "orders": 2015, "revenue": 44428.687499, "avgAOV": 22.04897642630273, "avgItems": 1.6987593052109182, "newPct": 0.5910669975186105, "freeShipPct": 0.509181141439206, "discountPct": 0.18213399503722083}, {"YearMonth": "2009-06", "ReferrerSource": "Organic", "orders": 1804, "revenue": 39407.352697, "avgAOV": 21.84443054157428, "avgItems": 1.5920177383592018, "newPct": 0.6402439024390244, "freeShipPct": 0.49057649667405767, "discountPct": 0.017738359201773836}, {"YearMonth": "2009-07", "ReferrerSource": "Organic", "orders": 1833, "revenue": 42289.576767, "avgAOV": 23.071236643207854, "avgItems": 1.7108565193671577, "newPct": 0.574468085106383, "freeShipPct": 0.5040916530278232, "discountPct": 0.0070921985815602835}, {"YearMonth": "2009-08", "ReferrerSource": "Organic", "orders": 1858, "revenue": 43149.319508, "avgAOV": 23.223530413347685, "avgItems": 1.7395048439181917, "newPct": 0.4946178686759957, "freeShipPct": 0.5161463939720129, "discountPct": 0.10495156081808396}, {"YearMonth": "2009-09", "ReferrerSource": "Organic", "orders": 1621, "revenue": 38532.471361, "avgAOV": 23.77080281369525, "avgItems": 1.6514497223935842, "newPct": 0.527452190006169, "freeShipPct": 0.5064774830351635, "discountPct": 0.020974706971005553}, {"YearMonth": "2009-10", "ReferrerSource": "Organic", "orders": 1692, "revenue": 39582.673821, "avgAOV": 23.394015260638295, "avgItems": 1.6371158392434988, "newPct": 0.5726950354609929, "freeShipPct": 0.6294326241134752, "discountPct": 0.0070921985815602835}, {"YearMonth": "2009-11", "ReferrerSource": "Organic", "orders": 1823, "revenue": 41421.658406, "avgAOV": 22.721699619308833, "avgItems": 1.6999451453647834, "newPct": 0.56006582556226, "freeShipPct": 0.589687328579265, "discountPct": 0.007131102578167855}, {"YearMonth": "2009-12", "ReferrerSource": "Organic", "orders": 1422, "revenue": 34118.492425, "avgAOV": 23.993313941631502, "avgItems": 1.7313642756680732, "newPct": 0.4472573839662447, "freeShipPct": 0.5175808720112518, "discountPct": 0.10548523206751055}, {"YearMonth": "2010-01", "ReferrerSource": "Organic", "orders": 2139, "revenue": 52040.2466, "avgAOV": 24.329241047218325, "avgItems": 1.707807386629266, "newPct": 0.4707807386629266, "freeShipPct": 0.5324918186068256, "discountPct": 0.1846657316503039}, {"YearMonth": "2010-02", "ReferrerSource": "Organic", "orders": 1739, "revenue": 42225.82091, "avgAOV": 24.281668148361128, "avgItems": 1.6262219666474986, "newPct": 0.5641173087981599, "freeShipPct": 0.5290396779758482, "discountPct": 0.022426682001150087}, {"YearMonth": "2010-03", "ReferrerSource": "Organic", "orders": 1872, "revenue": 44680.337663, "avgAOV": 23.867701743055555, "avgItems": 1.5886752136752136, "newPct": 0.5384615384615384, "freeShipPct": 0.5229700854700855, "discountPct": 0.022435897435897436}, {"YearMonth": "2010-04", "ReferrerSource": "Organic", "orders": 2003, "revenue": 47926.607525, "avgAOV": 23.927412643534698, "avgItems": 1.6684972541188217, "newPct": 0.4458312531203195, "freeShipPct": 0.5661507738392412, "discountPct": 0.23165252121817273}, {"YearMonth": "2010-05", "ReferrerSource": "Organic", "orders": 1983, "revenue": 47491.594248, "avgAOV": 23.94936674130106, "avgItems": 1.6364094805849723, "newPct": 0.4952092788703984, "freeShipPct": 0.551185073121533, "discountPct": 0.1800302571860817}, {"YearMonth": "2010-06", "ReferrerSource": "Organic", "orders": 1865, "revenue": 44476.335625, "avgAOV": 23.847901139410187, "avgItems": 1.595710455764075, "newPct": 0.5233243967828418, "freeShipPct": 0.5388739946380697, "discountPct": 0.06756032171581769}, {"YearMonth": "2010-07", "ReferrerSource": "Organic", "orders": 1962, "revenue": 46078.040196, "avgAOV": 23.485239651376148, "avgItems": 1.5657492354740061, "newPct": 0.5377166156982671, "freeShipPct": 0.5484199796126402, "discountPct": 0.018858307849133536}, {"YearMonth": "2010-08", "ReferrerSource": "Organic", "orders": 2113, "revenue": 54177.017298, "avgAOV": 25.639856743019404, "avgItems": 1.7245622337908186, "newPct": 0.41646947468054896, "freeShipPct": 0.5556081400851869, "discountPct": 0.13819214387127307}, {"YearMonth": "2010-09", "ReferrerSource": "Organic", "orders": 1933, "revenue": 47427.659995, "avgAOV": 24.535778579927573, "avgItems": 1.677703052250388, "newPct": 0.5385411277806519, "freeShipPct": 0.5587170201758924, "discountPct": 0.025349198137609934}, {"YearMonth": "2010-10", "ReferrerSource": "Organic", "orders": 1874, "revenue": 48912.859512999996, "avgAOV": 26.100778822305227, "avgItems": 1.6840981856990396, "newPct": 0.5170757737459979, "freeShipPct": 0.5298826040554963, "discountPct": 0.017609391675560297}, {"YearMonth": "2010-11", "ReferrerSource": "Organic", "orders": 1866, "revenue": 46851.846319, "avgAOV": 25.10817058896034, "avgItems": 1.6714898177920685, "newPct": 0.48231511254019294, "freeShipPct": 0.5637727759914255, "discountPct": 0.011789924973204717}, {"YearMonth": "2010-12", "ReferrerSource": "Organic", "orders": 1554, "revenue": 38657.264029, "avgAOV": 24.875974278635777, "avgItems": 1.6525096525096525, "newPct": 0.40733590733590735, "freeShipPct": 0.5694980694980695, "discountPct": 0.07979407979407979}, {"YearMonth": "2011-01", "ReferrerSource": "Organic", "orders": 2473, "revenue": 63063.176249, "avgAOV": 25.50067782005661, "avgItems": 1.7173473513950668, "newPct": 0.49939344925192075, "freeShipPct": 0.5596441568944601, "discountPct": 0.13424989890820865}, {"YearMonth": "2011-02", "ReferrerSource": "Organic", "orders": 1882, "revenue": 46958.153946, "avgAOV": 24.951197633368757, "avgItems": 1.673219978746015, "newPct": 0.4718384697130712, "freeShipPct": 0.563230605738576, "discountPct": 0.020191285866099893}, {"YearMonth": "2011-03", "ReferrerSource": "Organic", "orders": 1914, "revenue": 47202.881633, "avgAOV": 24.661902629571575, "avgItems": 1.6499477533960292, "newPct": 0.4670846394984326, "freeShipPct": 0.5626959247648903, "discountPct": 0.044409613375130615}, {"YearMonth": "2011-04", "ReferrerSource": "Organic", "orders": 1944, "revenue": 48648.815269, "avgAOV": 25.025110735082304, "avgItems": 1.6738683127572016, "newPct": 0.4074074074074074, "freeShipPct": 0.5612139917695473, "discountPct": 0.2037037037037037}, {"YearMonth": "2011-05", "ReferrerSource": "Organic", "orders": 1996, "revenue": 49695.201568, "avgAOV": 24.8973955751503, "avgItems": 1.6993987975951903, "newPct": 0.4784569138276553, "freeShipPct": 0.5516032064128257, "discountPct": 0.0871743486973948}, {"YearMonth": "2011-06", "ReferrerSource": "Organic", "orders": 1976, "revenue": 48369.253193, "avgAOV": 24.478367000506072, "avgItems": 1.6629554655870444, "newPct": 0.4873481781376518, "freeShipPct": 0.5683198380566802, "discountPct": 0.0895748987854251}, {"YearMonth": "2011-07", "ReferrerSource": "Organic", "orders": 2160, "revenue": 52178.503064, "avgAOV": 24.15671438148148, "avgItems": 1.6601851851851852, "newPct": 0.44814814814814813, "freeShipPct": 0.6810185185185185, "discountPct": 0.04953703703703704}, {"YearMonth": "2011-08", "ReferrerSource": "Organic", "orders": 2378, "revenue": 59165.544544, "avgAOV": 24.880380380151387, "avgItems": 1.703111858704794, "newPct": 0.42178301093355763, "freeShipPct": 0.6900756938603869, "discountPct": 0.17325483599663583}, {"YearMonth": "2011-09", "ReferrerSource": "Organic", "orders": 2020, "revenue": 45869.632067, "avgAOV": 22.707738647029704, "avgItems": 1.601980198019802, "newPct": 0.4405940594059406, "freeShipPct": 0.6787128712871288, "discountPct": 0.04257425742574258}, {"YearMonth": "2011-10", "ReferrerSource": "Organic", "orders": 2421, "revenue": 53513.070595, "avgAOV": 22.10370532631144, "avgItems": 1.6084262701363072, "newPct": 0.4770755885997522, "freeShipPct": 0.6807104502271788, "discountPct": 0.03882693102023957}, {"YearMonth": "2011-11", "ReferrerSource": "Organic", "orders": 2565, "revenue": 56555.504319, "avgAOV": 22.048929559064327, "avgItems": 1.6101364522417154, "newPct": 0.49122807017543857, "freeShipPct": 0.6888888888888889, "discountPct": 0.024951267056530214}, {"YearMonth": "2011-12", "ReferrerSource": "Organic", "orders": 2197, "revenue": 49650.119363, "avgAOV": 22.59905296449704, "avgItems": 1.6408739189804278, "newPct": 0.4283113336367774, "freeShipPct": 0.7742375967228038, "discountPct": 0.11470186618115612}, {"YearMonth": "2012-01", "ReferrerSource": "Organic", "orders": 3130, "revenue": 73736.86452999999, "avgAOV": 23.55810368370607, "avgItems": 1.6936102236421726, "newPct": 0.4351437699680511, "freeShipPct": 0.7099041533546326, "discountPct": 0.16134185303514376}, {"YearMonth": "2012-02", "ReferrerSource": "Organic", "orders": 2445, "revenue": 55237.276299, "avgAOV": 22.591933046625766, "avgItems": 1.6646216768916156, "newPct": 0.4593047034764826, "freeShipPct": 0.6809815950920245, "discountPct": 0.032719836400818}, {"YearMonth": "2012-03", "ReferrerSource": "Organic", "orders": 2257, "revenue": 54824.358757, "avgAOV": 24.290810260079752, "avgItems": 1.7084625609215773, "newPct": 0.41736818785999114, "freeShipPct": 0.6601683650863979, "discountPct": 0.020824102791315906}, {"YearMonth": "2012-04", "ReferrerSource": "Organic", "orders": 2340, "revenue": 56191.792512, "avgAOV": 24.013586543589742, "avgItems": 1.6952991452991453, "newPct": 0.4128205128205128, "freeShipPct": 0.6752136752136753, "discountPct": 0.1188034188034188}, {"YearMonth": "2012-05", "ReferrerSource": "Organic", "orders": 2228, "revenue": 56350.974716, "avgAOV": 25.29217895691203, "avgItems": 1.6961400359066428, "newPct": 0.3752244165170557, "freeShipPct": 0.6710053859964094, "discountPct": 0.10951526032315978}, {"YearMonth": "2012-06", "ReferrerSource": "Organic", "orders": 1930, "revenue": 50508.572807, "avgAOV": 26.170244977720206, "avgItems": 1.7590673575129534, "newPct": 0.35803108808290157, "freeShipPct": 0.6823834196891192, "discountPct": 0.15025906735751296}, {"YearMonth": "2012-07", "ReferrerSource": "Organic", "orders": 1950, "revenue": 48373.723759, "avgAOV": 24.807037825128205, "avgItems": 1.6682051282051282, "newPct": 0.2964102564102564, "freeShipPct": 0.7656410256410257, "discountPct": 0.21435897435897436}, {"YearMonth": "2012-08", "ReferrerSource": "Organic", "orders": 1926, "revenue": 48676.057216, "avgAOV": 25.273134587746625, "avgItems": 1.7222222222222223, "newPct": 0.3987538940809969, "freeShipPct": 0.7575285565939771, "discountPct": 0.18587746625129803}, {"YearMonth": "2012-09", "ReferrerSource": "Organic", "orders": 2255, "revenue": 55442.515126, "avgAOV": 24.58648120886918, "avgItems": 1.6536585365853658, "newPct": 0.3827050997782705, "freeShipPct": 0.7694013303769401, "discountPct": 0.03991130820399113}, {"YearMonth": "2012-10", "ReferrerSource": "Organic", "orders": 2373, "revenue": 58820.696594, "avgAOV": 24.787482761904762, "avgItems": 1.7370417193426042, "newPct": 0.3447113358617783, "freeShipPct": 0.7391487568478718, "discountPct": 0.01938474504846186}, {"YearMonth": "2012-11", "ReferrerSource": "Organic", "orders": 2274, "revenue": 56396.663153, "avgAOV": 24.80064342700088, "avgItems": 1.7563764291996482, "newPct": 0.31926121372031663, "freeShipPct": 0.7634124890061565, "discountPct": 0.16358839050131926}, {"YearMonth": "2012-12", "ReferrerSource": "Organic", "orders": 1706, "revenue": 41205.205556, "avgAOV": 24.15310993903869, "avgItems": 1.690504103165299, "newPct": 0.3552168815943728, "freeShipPct": 0.7602579132473622, "discountPct": 0.03575615474794842}, {"YearMonth": "2013-01", "ReferrerSource": "Organic", "orders": 2732, "revenue": 71165.946314, "avgAOV": 26.04902866544656, "avgItems": 1.7994143484626648, "newPct": 0.3616398243045388, "freeShipPct": 0.7404831625183016, "discountPct": 0.2005856515373353}, {"YearMonth": "2013-02", "ReferrerSource": "Organic", "orders": 2011, "revenue": 47745.788572, "avgAOV": 23.74231157235206, "avgItems": 1.687717553455992, "newPct": 0.39781203381402286, "freeShipPct": 0.7449030333167578, "discountPct": 0.030333167578319244}, {"YearMonth": "2013-03", "ReferrerSource": "Organic", "orders": 2536, "revenue": 63921.4215, "avgAOV": 25.205607847003154, "avgItems": 1.7503943217665616, "newPct": 0.3824921135646688, "freeShipPct": 0.7460567823343849, "discountPct": 0.1750788643533123}, {"YearMonth": "2013-04", "ReferrerSource": "Organic", "orders": 2569, "revenue": 64858.311477999996, "avgAOV": 25.246520622031916, "avgItems": 1.7687816270922538, "newPct": 0.35188789412222654, "freeShipPct": 0.7493188010899182, "discountPct": 0.1401323472168159}, {"YearMonth": "2013-05", "ReferrerSource": "Google Adwords", "orders": 718, "revenue": 16059.464017, "avgAOV": 22.366941527855154, "avgItems": 1.658774373259053, "newPct": 0.4832869080779944, "freeShipPct": 0.775766016713092, "discountPct": 0.033426183844011144}, {"YearMonth": "2013-05", "ReferrerSource": "Organic", "orders": 1820, "revenue": 42155.966376, "avgAOV": 23.162618887912085, "avgItems": 1.6236263736263736, "newPct": 0.38076923076923075, "freeShipPct": 0.7670329670329671, "discountPct": 0.04010989010989011}, {"YearMonth": "2013-06", "ReferrerSource": "Google Adwords", "orders": 1204, "revenue": 25084.426977, "avgAOV": 20.834241675249167, "avgItems": 1.5274086378737541, "newPct": 0.5872093023255814, "freeShipPct": 0.7558139534883721, "discountPct": 0.0664451827242525}, {"YearMonth": "2013-06", "ReferrerSource": "Organic", "orders": 1512, "revenue": 40813.290814, "avgAOV": 26.992917205026455, "avgItems": 1.8531746031746033, "newPct": 0.2724867724867725, "freeShipPct": 0.7394179894179894, "discountPct": 0.2175925925925926}, {"YearMonth": "2013-07", "ReferrerSource": "Google Adwords", "orders": 1009, "revenue": 21161.071828, "avgAOV": 20.972320939544105, "avgItems": 1.5659068384539148, "newPct": 0.5530227948463825, "freeShipPct": 0.7611496531219029, "discountPct": 0.07730426164519326}, {"YearMonth": "2013-07", "ReferrerSource": "Organic", "orders": 1312, "revenue": 34015.00596, "avgAOV": 25.92607161585366, "avgItems": 1.7515243902439024, "newPct": 0.24542682926829268, "freeShipPct": 0.7614329268292683, "discountPct": 0.18673780487804878}, {"YearMonth": "2013-08", "ReferrerSource": "Google Adwords", "orders": 1036, "revenue": 21700.770575, "avgAOV": 20.94668974420849, "avgItems": 1.5482625482625483, "newPct": 0.5125482625482626, "freeShipPct": 0.7432432432432432, "discountPct": 0.03861003861003861}, {"YearMonth": "2013-08", "ReferrerSource": "Organic", "orders": 1202, "revenue": 31484.400304, "avgAOV": 26.193344678868552, "avgItems": 1.762063227953411, "newPct": 0.2670549084858569, "freeShipPct": 0.7562396006655574, "discountPct": 0.042429284525790346}, {"YearMonth": "2013-09", "ReferrerSource": "Google Adwords", "orders": 1103, "revenue": 23732.292775, "avgAOV": 21.516131255666366, "avgItems": 1.5838621940163191, "newPct": 0.514052583862194, "freeShipPct": 0.7416137805983681, "discountPct": 0.08250226654578423}, {"YearMonth": "2013-09", "ReferrerSource": "Organic", "orders": 1555, "revenue": 43786.253695, "avgAOV": 28.158362504823153, "avgItems": 1.9157556270096463, "newPct": 0.20385852090032155, "freeShipPct": 0.7311897106109325, "discountPct": 0.245016077170418}, {"YearMonth": "2013-10", "ReferrerSource": "Google Adwords", "orders": 1043, "revenue": 21636.116215, "avgAOV": 20.74411909395973, "avgItems": 1.5618408437200384, "newPct": 0.5148609779482263, "freeShipPct": 0.7622243528283796, "discountPct": 0.06903163950143816}, {"YearMonth": "2013-10", "ReferrerSource": "Organic", "orders": 1202, "revenue": 31905.418993, "avgAOV": 26.543609811148087, "avgItems": 1.8594009983361064, "newPct": 0.21630615640599002, "freeShipPct": 0.7437603993344426, "discountPct": 0.11813643926788686}, {"YearMonth": "2013-10", "ReferrerSource": "Webgains", "orders": 23, "revenue": 589.3716, "avgAOV": 25.62485217391304, "avgItems": 1.6956521739130435, "newPct": 0.6086956521739131, "freeShipPct": 0.8695652173913043, "discountPct": 0.5652173913043478}, {"YearMonth": "2013-11", "ReferrerSource": "Google Adwords", "orders": 1132, "revenue": 25331.72139, "avgAOV": 22.37784575088339, "avgItems": 1.6537102473498233, "newPct": 0.5026501766784452, "freeShipPct": 0.7473498233215548, "discountPct": 0.13604240282685512}, {"YearMonth": "2013-11", "ReferrerSource": "Organic", "orders": 1542, "revenue": 41319.850912, "avgAOV": 26.796271667963683, "avgItems": 1.8813229571984436, "newPct": 0.1601815823605707, "freeShipPct": 0.7632944228274967, "discountPct": 0.41115434500648507}, {"YearMonth": "2013-11", "ReferrerSource": "Webgains", "orders": 163, "revenue": 4737.545303, "avgAOV": 29.064695110429447, "avgItems": 2.0552147239263805, "newPct": 0.48466257668711654, "freeShipPct": 0.8650306748466258, "discountPct": 0.7116564417177914}, {"YearMonth": "2013-12", "ReferrerSource": "Google Adwords", "orders": 951, "revenue": 20834.247339999998, "avgAOV": 21.907725909568875, "avgItems": 1.5772870662460567, "newPct": 0.5352260778128286, "freeShipPct": 0.7665615141955836, "discountPct": 0.1598317560462671}, {"YearMonth": "2013-12", "ReferrerSource": "Organic", "orders": 1036, "revenue": 27107.034472, "avgAOV": 26.165091189189187, "avgItems": 1.8262548262548262, "newPct": 0.19884169884169883, "freeShipPct": 0.7606177606177607, "discountPct": 0.2133204633204633}, {"YearMonth": "2013-12", "ReferrerSource": "Webgains", "orders": 129, "revenue": 3431.654293, "avgAOV": 26.601971263565893, "avgItems": 1.875968992248062, "newPct": 0.5813953488372093, "freeShipPct": 0.8527131782945736, "discountPct": 0.4496124031007752}, {"YearMonth": "2014-01", "ReferrerSource": "Google Adwords", "orders": 1283, "revenue": 26828.640784, "avgAOV": 20.910865770849572, "avgItems": 1.5814497272018706, "newPct": 0.5370226032735775, "freeShipPct": 0.7724084177708496, "discountPct": 0.4232268121590023}, {"YearMonth": "2014-01", "ReferrerSource": "Organic", "orders": 2191, "revenue": 59542.150931, "avgAOV": 27.17578773664993, "avgItems": 1.998630762209037, "newPct": 0.14468279324509356, "freeShipPct": 0.7622090369694203, "discountPct": 0.6732085805568234}, {"YearMonth": "2014-01", "ReferrerSource": "Webgains", "orders": 259, "revenue": 6464.759946, "avgAOV": 24.960463111969112, "avgItems": 1.8841698841698842, "newPct": 0.5675675675675675, "freeShipPct": 0.8648648648648649, "discountPct": 0.5907335907335908}, {"YearMonth": "2014-02", "ReferrerSource": "Bing Ads", "orders": 20, "revenue": 389.117622, "avgAOV": 19.4558811, "avgItems": 1.5, "newPct": 0.55, "freeShipPct": 0.65, "discountPct": 0.35}, {"YearMonth": "2014-02", "ReferrerSource": "Google Adwords", "orders": 1097, "revenue": 23564.510115, "avgAOV": 21.480866103008204, "avgItems": 1.5742935278030994, "newPct": 0.5670009115770283, "freeShipPct": 0.7210574293527803, "discountPct": 0.18413855970829535}, {"YearMonth": "2014-02", "ReferrerSource": "Organic", "orders": 1340, "revenue": 32740.972925, "avgAOV": 24.433561884328356, "avgItems": 1.7343283582089553, "newPct": 0.20223880597014926, "freeShipPct": 0.735820895522388, "discountPct": 0.36268656716417913}, {"YearMonth": "2014-02", "ReferrerSource": "Webgains", "orders": 210, "revenue": 5478.215923, "avgAOV": 26.08674249047619, "avgItems": 1.8857142857142857, "newPct": 0.3952380952380952, "freeShipPct": 0.8380952380952381, "discountPct": 0.3142857142857143}, {"YearMonth": "2014-03", "ReferrerSource": "Bing Ads", "orders": 103, "revenue": 2294.825122, "avgAOV": 22.27985555339806, "avgItems": 1.7281553398058251, "newPct": 0.4174757281553398, "freeShipPct": 0.8446601941747572, "discountPct": 0.4368932038834951}, {"YearMonth": "2014-03", "ReferrerSource": "Google Adwords", "orders": 1317, "revenue": 26615.443191, "avgAOV": 20.20914441230068, "avgItems": 1.5375854214123006, "newPct": 0.5626423690205011, "freeShipPct": 0.7593014426727411, "discountPct": 0.3439635535307517}, {"YearMonth": "2014-03", "ReferrerSource": "Organic", "orders": 1494, "revenue": 39460.47743, "avgAOV": 26.412635495314593, "avgItems": 1.8346720214190093, "newPct": 0.20414993306559573, "freeShipPct": 0.7376171352074966, "discountPct": 0.42971887550200805}, {"YearMonth": "2014-03", "ReferrerSource": "Webgains", "orders": 209, "revenue": 5091.844729, "avgAOV": 24.36289344019139, "avgItems": 1.923444976076555, "newPct": 0.3827751196172249, "freeShipPct": 0.8133971291866029, "discountPct": 0.5885167464114832}, {"YearMonth": "2014-04", "ReferrerSource": "Bing Ads", "orders": 98, "revenue": 2278.389918, "avgAOV": 23.248876714285714, "avgItems": 1.5408163265306123, "newPct": 0.5102040816326531, "freeShipPct": 0.826530612244898, "discountPct": 0.2755102040816326}, {"YearMonth": "2014-04", "ReferrerSource": "Google Adwords", "orders": 1139, "revenue": 25004.890278, "avgAOV": 21.953371622475856, "avgItems": 1.595258999122037, "newPct": 0.5039508340649693, "freeShipPct": 0.7445127304653204, "discountPct": 0.21949078138718173}, {"YearMonth": "2014-04", "ReferrerSource": "Organic", "orders": 1395, "revenue": 35950.375801, "avgAOV": 25.770878710394268, "avgItems": 1.8172043010752688, "newPct": 0.15770609318996415, "freeShipPct": 0.7627240143369176, "discountPct": 0.46164874551971324}, {"YearMonth": "2014-04", "ReferrerSource": "Webgains", "orders": 214, "revenue": 5233.097156, "avgAOV": 24.453725028037383, "avgItems": 1.7009345794392523, "newPct": 0.3925233644859813, "freeShipPct": 0.8317757009345794, "discountPct": 0.5794392523364486}, {"YearMonth": "2014-05", "ReferrerSource": "Bing Ads", "orders": 110, "revenue": 2354.136105, "avgAOV": 21.401237318181817, "avgItems": 1.481818181818182, "newPct": 0.5545454545454546, "freeShipPct": 0.7909090909090909, "discountPct": 0.045454545454545456}, {"YearMonth": "2014-05", "ReferrerSource": "Google Adwords", "orders": 1115, "revenue": 24370.024828999998, "avgAOV": 21.8565245103139, "avgItems": 1.5721973094170403, "newPct": 0.5408071748878924, "freeShipPct": 0.7426008968609865, "discountPct": 0.06905829596412556}, {"YearMonth": "2014-05", "ReferrerSource": "Organic", "orders": 1290, "revenue": 35010.534517, "avgAOV": 27.139949237984496, "avgItems": 1.8937984496124032, "newPct": 0.18294573643410852, "freeShipPct": 0.7356589147286822, "discountPct": 0.3178294573643411}, {"YearMonth": "2014-05", "ReferrerSource": "Webgains", "orders": 228, "revenue": 5774.618786, "avgAOV": 25.327275377192983, "avgItems": 1.7982456140350878, "newPct": 0.45614035087719296, "freeShipPct": 0.8070175438596491, "discountPct": 0.4824561403508772}, {"YearMonth": "2014-06", "ReferrerSource": "Bing Ads", "orders": 144, "revenue": 3369.461486, "avgAOV": 23.399038097222224, "avgItems": 1.7222222222222223, "newPct": 0.5763888888888888, "freeShipPct": 0.8333333333333334, "discountPct": 0.14583333333333334}, {"YearMonth": "2014-06", "ReferrerSource": "Google Adwords", "orders": 976, "revenue": 21649.610522, "avgAOV": 22.18197799385246, "avgItems": 1.5563524590163935, "newPct": 0.48463114754098363, "freeShipPct": 0.7397540983606558, "discountPct": 0.13114754098360656}, {"YearMonth": "2014-06", "ReferrerSource": "Organic", "orders": 1318, "revenue": 33891.740647, "avgAOV": 25.714522493930197, "avgItems": 1.8034901365705616, "newPct": 0.19878603945371776, "freeShipPct": 0.7481031866464339, "discountPct": 0.30576631259484066}, {"YearMonth": "2014-06", "ReferrerSource": "Webgains", "orders": 256, "revenue": 6232.897283, "avgAOV": 24.34725501171875, "avgItems": 1.87109375, "newPct": 0.37890625, "freeShipPct": 0.828125, "discountPct": 0.609375}, {"YearMonth": "2014-07", "ReferrerSource": "Bing Ads", "orders": 121, "revenue": 2867.640004, "avgAOV": 23.699504165289255, "avgItems": 1.7355371900826446, "newPct": 0.36363636363636365, "freeShipPct": 0.7933884297520661, "discountPct": 0.14049586776859505}, {"YearMonth": "2014-07", "ReferrerSource": "Google Adwords", "orders": 1043, "revenue": 23194.681815, "avgAOV": 22.23842935282838, "avgItems": 1.6241610738255035, "newPct": 0.4793863854266539, "freeShipPct": 0.7737296260786194, "discountPct": 0.09587727708533078}, {"YearMonth": "2014-07", "ReferrerSource": "Organic", "orders": 1495, "revenue": 41551.383694, "avgAOV": 27.793567688294313, "avgItems": 1.8956521739130434, "newPct": 0.15785953177257525, "freeShipPct": 0.7538461538461538, "discountPct": 0.39665551839464885}, {"YearMonth": "2014-07", "ReferrerSource": "Webgains", "orders": 241, "revenue": 6482.301562, "avgAOV": 26.897516854771784, "avgItems": 1.887966804979253, "newPct": 0.27385892116182575, "freeShipPct": 0.8506224066390041, "discountPct": 0.3941908713692946}, {"YearMonth": "2014-08", "ReferrerSource": "Bing Ads", "orders": 141, "revenue": 3226.02077, "avgAOV": 22.879579929078016, "avgItems": 1.6595744680851063, "newPct": 0.375886524822695, "freeShipPct": 0.8226950354609929, "discountPct": 0.12056737588652482}, {"YearMonth": "2014-08", "ReferrerSource": "Google Adwords", "orders": 1061, "revenue": 23606.645998, "avgAOV": 22.24943072384543, "avgItems": 1.5541941564561734, "newPct": 0.5014137606032045, "freeShipPct": 0.760603204524034, "discountPct": 0.08105560791705937}, {"YearMonth": "2014-08", "ReferrerSource": "Organic", "orders": 1264, "revenue": 34214.239964, "avgAOV": 27.068227819620255, "avgItems": 1.9406645569620253, "newPct": 0.17721518987341772, "freeShipPct": 0.7302215189873418, "discountPct": 0.32436708860759494}, {"YearMonth": "2014-08", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 22.95, "avgAOV": 22.95, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2014-08", "ReferrerSource": "Webgains", "orders": 310, "revenue": 7672.423709, "avgAOV": 24.749753899999998, "avgItems": 1.7451612903225806, "newPct": 0.3967741935483871, "freeShipPct": 0.8516129032258064, "discountPct": 0.5548387096774193}, {"YearMonth": "2014-09", "ReferrerSource": "Bing Ads", "orders": 118, "revenue": 2726.198074, "avgAOV": 23.103373508474576, "avgItems": 1.5593220338983051, "newPct": 0.4745762711864407, "freeShipPct": 0.7627118644067796, "discountPct": 0.13559322033898305}, {"YearMonth": "2014-09", "ReferrerSource": "Google Adwords", "orders": 1176, "revenue": 25752.051594, "avgAOV": 21.898003056122448, "avgItems": 1.5561224489795917, "newPct": 0.5340136054421769, "freeShipPct": 0.7610544217687075, "discountPct": 0.08163265306122448}, {"YearMonth": "2014-09", "ReferrerSource": "Organic", "orders": 1375, "revenue": 35542.202837, "avgAOV": 25.84887479054545, "avgItems": 1.808, "newPct": 0.1730909090909091, "freeShipPct": 0.7629090909090909, "discountPct": 0.35345454545454547}, {"YearMonth": "2014-09", "ReferrerSource": "Outbrain", "orders": 2, "revenue": 41.3992, "avgAOV": 20.6996, "avgItems": 1.0, "newPct": 0.5, "freeShipPct": 0.5, "discountPct": 0.0}, {"YearMonth": "2014-09", "ReferrerSource": "Webgains", "orders": 340, "revenue": 9243.576523, "avgAOV": 27.18698977352941, "avgItems": 1.9588235294117646, "newPct": 0.28823529411764703, "freeShipPct": 0.8558823529411764, "discountPct": 0.5029411764705882}, {"YearMonth": "2014-10", "ReferrerSource": "Bing Ads", "orders": 134, "revenue": 2764.91112, "avgAOV": 20.63366507462687, "avgItems": 1.4477611940298507, "newPct": 0.4925373134328358, "freeShipPct": 0.7985074626865671, "discountPct": 0.04477611940298507}, {"YearMonth": "2014-10", "ReferrerSource": "Google Adwords", "orders": 1236, "revenue": 27982.266042, "avgAOV": 22.63937382038835, "avgItems": 1.5995145631067962, "newPct": 0.5202265372168284, "freeShipPct": 0.7540453074433657, "discountPct": 0.06796116504854369}, {"YearMonth": "2014-10", "ReferrerSource": "Organic", "orders": 1182, "revenue": 33981.414645, "avgAOV": 28.74908176395939, "avgItems": 1.994077834179357, "newPct": 0.20050761421319796, "freeShipPct": 0.733502538071066, "discountPct": 0.24534686971235195}, {"YearMonth": "2014-10", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 11.9496, "avgAOV": 11.9496, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2014-10", "ReferrerSource": "Webgains", "orders": 319, "revenue": 10008.097866, "avgAOV": 31.37334754231975, "avgItems": 2.2351097178683386, "newPct": 0.34169278996865204, "freeShipPct": 0.8025078369905956, "discountPct": 0.5956112852664577}, {"YearMonth": "2014-11", "ReferrerSource": "Bing Ads", "orders": 95, "revenue": 2223.951501, "avgAOV": 23.4100158, "avgItems": 1.6526315789473685, "newPct": 0.42105263157894735, "freeShipPct": 0.6947368421052632, "discountPct": 0.2}, {"YearMonth": "2014-11", "ReferrerSource": "Google Adwords", "orders": 1069, "revenue": 24392.637763, "avgAOV": 22.8181831272217, "avgItems": 1.6183348924228251, "newPct": 0.4331150608044902, "freeShipPct": 0.7614593077642656, "discountPct": 0.13751169317118803}, {"YearMonth": "2014-11", "ReferrerSource": "Organic", "orders": 1485, "revenue": 41769.467964, "avgAOV": 28.127587854545457, "avgItems": 2.0148148148148146, "newPct": 0.1717171717171717, "freeShipPct": 0.7218855218855219, "discountPct": 0.44377104377104376}, {"YearMonth": "2014-11", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 15.45, "avgAOV": 15.45, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2014-11", "ReferrerSource": "Webgains", "orders": 295, "revenue": 7235.841583, "avgAOV": 24.528276552542373, "avgItems": 1.7559322033898306, "newPct": 0.3220338983050847, "freeShipPct": 0.8305084745762712, "discountPct": 0.4542372881355932}, {"YearMonth": "2014-12", "ReferrerSource": "Bing Ads", "orders": 94, "revenue": 1907.331725, "avgAOV": 20.290763031914892, "avgItems": 1.372340425531915, "newPct": 0.40425531914893614, "freeShipPct": 0.7978723404255319, "discountPct": 0.23404255319148937}, {"YearMonth": "2014-12", "ReferrerSource": "Google Adwords", "orders": 808, "revenue": 18258.728972, "avgAOV": 22.597436846534656, "avgItems": 1.563118811881188, "newPct": 0.43316831683168316, "freeShipPct": 0.7722772277227723, "discountPct": 0.18316831683168316}, {"YearMonth": "2014-12", "ReferrerSource": "Organic", "orders": 1109, "revenue": 30177.142767999998, "avgAOV": 27.21112963751127, "avgItems": 1.848512173128945, "newPct": 0.17583408476104598, "freeShipPct": 0.7655545536519387, "discountPct": 0.44454463480613166}, {"YearMonth": "2014-12", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 66.3496, "avgAOV": 66.3496, "avgItems": 3.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2014-12", "ReferrerSource": "Webgains", "orders": 246, "revenue": 7036.681335, "avgAOV": 28.60439567073171, "avgItems": 2.0203252032520327, "newPct": 0.3170731707317073, "freeShipPct": 0.8333333333333334, "discountPct": 0.6341463414634146}, {"YearMonth": "2015-01", "ReferrerSource": "Bing Ads", "orders": 104, "revenue": 2664.12064, "avgAOV": 25.616544615384615, "avgItems": 1.875, "newPct": 0.33653846153846156, "freeShipPct": 0.7403846153846154, "discountPct": 0.5673076923076923}, {"YearMonth": "2015-01", "ReferrerSource": "Google Adwords", "orders": 1204, "revenue": 28058.379839, "avgAOV": 23.304302191860465, "avgItems": 1.712624584717608, "newPct": 0.42441860465116277, "freeShipPct": 0.7873754152823921, "discountPct": 0.5066445182724253}, {"YearMonth": "2015-01", "ReferrerSource": "Organic", "orders": 2948, "revenue": 85952.713865, "avgAOV": 29.156280144165535, "avgItems": 2.0736092265943014, "newPct": 0.15264586160108548, "freeShipPct": 0.7493215739484396, "discountPct": 0.6719810040705563}, {"YearMonth": "2015-01", "ReferrerSource": "Webgains", "orders": 376, "revenue": 9167.406275, "avgAOV": 24.38139966755319, "avgItems": 1.8829787234042554, "newPct": 0.425531914893617, "freeShipPct": 0.8457446808510638, "discountPct": 0.6702127659574468}, {"YearMonth": "2015-02", "ReferrerSource": "Bing Ads", "orders": 73, "revenue": 1680.286392, "avgAOV": 23.01762180821918, "avgItems": 1.6986301369863013, "newPct": 0.2328767123287671, "freeShipPct": 0.821917808219178, "discountPct": 0.0136986301369863}, {"YearMonth": "2015-02", "ReferrerSource": "Google Adwords", "orders": 869, "revenue": 19345.922603, "avgAOV": 22.262281476409665, "avgItems": 1.5362485615650172, "newPct": 0.428078250863061, "freeShipPct": 0.7537399309551208, "discountPct": 0.02761795166858458}, {"YearMonth": "2015-02", "ReferrerSource": "Organic", "orders": 1170, "revenue": 33004.590175, "avgAOV": 28.20905143162393, "avgItems": 1.8615384615384616, "newPct": 0.24358974358974358, "freeShipPct": 0.7102564102564103, "discountPct": 0.024786324786324785}, {"YearMonth": "2015-02", "ReferrerSource": "Webgains", "orders": 292, "revenue": 8044.928146, "avgAOV": 27.551123787671234, "avgItems": 1.8356164383561644, "newPct": 0.3321917808219178, "freeShipPct": 0.8424657534246576, "discountPct": 0.1404109589041096}, {"YearMonth": "2015-03", "ReferrerSource": "Bing Ads", "orders": 106, "revenue": 2322.806517, "avgAOV": 21.913269028301887, "avgItems": 1.6037735849056605, "newPct": 0.29245283018867924, "freeShipPct": 0.8207547169811321, "discountPct": 0.4339622641509434}, {"YearMonth": "2015-03", "ReferrerSource": "Google Adwords", "orders": 1075, "revenue": 24085.622827, "avgAOV": 22.405230536744185, "avgItems": 1.5888372093023255, "newPct": 0.45209302325581396, "freeShipPct": 0.7683720930232558, "discountPct": 0.413953488372093}, {"YearMonth": "2015-03", "ReferrerSource": "Organic", "orders": 2061, "revenue": 55913.322195, "avgAOV": 27.129219890829695, "avgItems": 1.967491508976225, "newPct": 0.17418728772440562, "freeShipPct": 0.7506065016982048, "discountPct": 0.6516254245511888}, {"YearMonth": "2015-03", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 46.67328, "avgAOV": 46.67328, "avgItems": 3.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 1.0}, {"YearMonth": "2015-03", "ReferrerSource": "Webgains", "orders": 294, "revenue": 7275.426932, "avgAOV": 24.74635010884354, "avgItems": 1.7993197278911566, "newPct": 0.3129251700680272, "freeShipPct": 0.8333333333333334, "discountPct": 0.7278911564625851}, {"YearMonth": "2015-04", "ReferrerSource": "Bing Ads", "orders": 77, "revenue": 2102.60012, "avgAOV": 27.306495064935067, "avgItems": 1.7662337662337662, "newPct": 0.3246753246753247, "freeShipPct": 0.8051948051948052, "discountPct": 0.16883116883116883}, {"YearMonth": "2015-04", "ReferrerSource": "Google Adwords", "orders": 893, "revenue": 19667.749571, "avgAOV": 22.02435562262038, "avgItems": 1.5274356103023516, "newPct": 0.43561030235162373, "freeShipPct": 0.7592385218365062, "discountPct": 0.14669652855543114}, {"YearMonth": "2015-04", "ReferrerSource": "Organic", "orders": 1553, "revenue": 40162.210659, "avgAOV": 25.86105000579523, "avgItems": 1.8300064391500321, "newPct": 0.21506761107533806, "freeShipPct": 0.707662588538313, "discountPct": 0.4050225370251127}, {"YearMonth": "2015-04", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 5.49, "avgAOV": 5.49, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2015-04", "ReferrerSource": "Webgains", "orders": 308, "revenue": 7290.532451, "avgAOV": 23.670559905844154, "avgItems": 1.6590909090909092, "newPct": 0.288961038961039, "freeShipPct": 0.8474025974025974, "discountPct": 0.6233766233766234}, {"YearMonth": "2015-05", "ReferrerSource": "Bing Ads", "orders": 83, "revenue": 1900.2430219999999, "avgAOV": 22.894494240963855, "avgItems": 1.5421686746987953, "newPct": 0.3614457831325301, "freeShipPct": 0.8072289156626506, "discountPct": 0.27710843373493976}, {"YearMonth": "2015-05", "ReferrerSource": "Google Adwords", "orders": 871, "revenue": 20783.845033999998, "avgAOV": 23.862049407577494, "avgItems": 1.598163030998852, "newPct": 0.3960964408725603, "freeShipPct": 0.7520091848450058, "discountPct": 0.22158438576349024}, {"YearMonth": "2015-05", "ReferrerSource": "Organic", "orders": 1330, "revenue": 37181.379018, "avgAOV": 27.95592407368421, "avgItems": 1.9646616541353383, "newPct": 0.24135338345864663, "freeShipPct": 0.7390977443609023, "discountPct": 0.45263157894736844}, {"YearMonth": "2015-05", "ReferrerSource": "Webgains", "orders": 330, "revenue": 9524.373417, "avgAOV": 28.861737627272728, "avgItems": 1.9787878787878788, "newPct": 0.2696969696969697, "freeShipPct": 0.8515151515151516, "discountPct": 0.5424242424242425}, {"YearMonth": "2015-06", "ReferrerSource": "Bing Ads", "orders": 78, "revenue": 2025.435455, "avgAOV": 25.96712121794872, "avgItems": 1.6794871794871795, "newPct": 0.20512820512820512, "freeShipPct": 0.8461538461538461, "discountPct": 0.41025641025641024}, {"YearMonth": "2015-06", "ReferrerSource": "Google Adwords", "orders": 808, "revenue": 19337.56361, "avgAOV": 23.93262823019802, "avgItems": 1.5928217821782178, "newPct": 0.3935643564356436, "freeShipPct": 0.7599009900990099, "discountPct": 0.3997524752475248}, {"YearMonth": "2015-06", "ReferrerSource": "Organic", "orders": 1683, "revenue": 46200.723576, "avgAOV": 27.451410324420674, "avgItems": 1.8449197860962567, "newPct": 0.1628045157456922, "freeShipPct": 0.744503862150921, "discountPct": 0.6120023767082591}, {"YearMonth": "2015-06", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 15.4504, "avgAOV": 15.4504, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2015-06", "ReferrerSource": "Webgains", "orders": 290, "revenue": 8420.306038, "avgAOV": 29.03553806206897, "avgItems": 1.9689655172413794, "newPct": 0.21379310344827587, "freeShipPct": 0.8241379310344827, "discountPct": 0.7310344827586207}, {"YearMonth": "2015-07", "ReferrerSource": "Bing Ads", "orders": 100, "revenue": 2598.243291, "avgAOV": 25.982432910000004, "avgItems": 1.79, "newPct": 0.27, "freeShipPct": 0.71, "discountPct": 0.12}, {"YearMonth": "2015-07", "ReferrerSource": "Google Adwords", "orders": 921, "revenue": 20609.044476, "avgAOV": 22.37681267752443, "avgItems": 1.51900108577633, "newPct": 0.42888165038002174, "freeShipPct": 0.6894679695982627, "discountPct": 0.1248642779587405}, {"YearMonth": "2015-07", "ReferrerSource": "Organic", "orders": 1215, "revenue": 31702.127587, "avgAOV": 26.09228607983539, "avgItems": 1.7868312757201645, "newPct": 0.254320987654321, "freeShipPct": 0.6699588477366255, "discountPct": 0.24444444444444444}, {"YearMonth": "2015-07", "ReferrerSource": "Webgains", "orders": 386, "revenue": 9995.646319, "avgAOV": 25.89545678497409, "avgItems": 1.7849740932642486, "newPct": 0.29533678756476683, "freeShipPct": 0.8031088082901554, "discountPct": 0.6994818652849741}, {"YearMonth": "2015-08", "ReferrerSource": "Bing Ads", "orders": 102, "revenue": 2362.267631, "avgAOV": 23.159486578431373, "avgItems": 1.6274509803921569, "newPct": 0.24509803921568626, "freeShipPct": 0.5882352941176471, "discountPct": 0.4019607843137255}, {"YearMonth": "2015-08", "ReferrerSource": "Google Adwords", "orders": 937, "revenue": 21627.154046, "avgAOV": 23.081274328708645, "avgItems": 1.6264674493062967, "newPct": 0.4343649946638207, "freeShipPct": 0.6211312700106724, "discountPct": 0.3874066168623266}, {"YearMonth": "2015-08", "ReferrerSource": "Organic", "orders": 1527, "revenue": 42984.85551, "avgAOV": 28.14987263261297, "avgItems": 1.9593975114603799, "newPct": 0.21938441388343158, "freeShipPct": 0.618860510805501, "discountPct": 0.5428945645055665}, {"YearMonth": "2015-08", "ReferrerSource": "Webgains", "orders": 256, "revenue": 7389.792552, "avgAOV": 28.86637715625, "avgItems": 1.96484375, "newPct": 0.23828125, "freeShipPct": 0.765625, "discountPct": 0.6171875}, {"YearMonth": "2015-09", "ReferrerSource": "Bing Ads", "orders": 78, "revenue": 2284.927027, "avgAOV": 29.293936243589744, "avgItems": 1.9615384615384615, "newPct": 0.2692307692307692, "freeShipPct": 0.6794871794871795, "discountPct": 0.11538461538461539}, {"YearMonth": "2015-09", "ReferrerSource": "Google Adwords", "orders": 798, "revenue": 19475.281974999998, "avgAOV": 24.405115256892227, "avgItems": 1.68671679197995, "newPct": 0.37468671679197996, "freeShipPct": 0.6265664160401002, "discountPct": 0.07769423558897243}, {"YearMonth": "2015-09", "ReferrerSource": "Organic", "orders": 1868, "revenue": 52038.616733, "avgAOV": 27.85793186991435, "avgItems": 1.9507494646680943, "newPct": 0.16916488222698073, "freeShipPct": 0.6568522483940042, "discountPct": 0.05460385438972163}, {"YearMonth": "2015-09", "ReferrerSource": "Webgains", "orders": 411, "revenue": 10852.006458, "avgAOV": 26.403908656934306, "avgItems": 1.9197080291970803, "newPct": 0.26277372262773724, "freeShipPct": 0.8004866180048662, "discountPct": 0.656934306569343}, {"YearMonth": "2015-10", "ReferrerSource": "Bing Ads", "orders": 95, "revenue": 2450.25906, "avgAOV": 25.792200631578947, "avgItems": 1.9894736842105263, "newPct": 0.23157894736842105, "freeShipPct": 0.6421052631578947, "discountPct": 0.05263157894736842}, {"YearMonth": "2015-10", "ReferrerSource": "Google Adwords", "orders": 737, "revenue": 16370.450762, "avgAOV": 22.212280545454547, "avgItems": 1.5943012211668928, "newPct": 0.36635006784260515, "freeShipPct": 0.7014925373134329, "discountPct": 0.051560379918588875}, {"YearMonth": "2015-10", "ReferrerSource": "Organic", "orders": 1345, "revenue": 37070.077747999996, "avgAOV": 27.561396095167282, "avgItems": 1.954646840148699, "newPct": 0.22527881040892192, "freeShipPct": 0.6684014869888476, "discountPct": 0.0379182156133829}, {"YearMonth": "2015-10", "ReferrerSource": "Webgains", "orders": 331, "revenue": 9399.317287, "avgAOV": 28.396728963746224, "avgItems": 2.0513595166163143, "newPct": 0.2537764350453172, "freeShipPct": 0.8338368580060423, "discountPct": 0.4743202416918429}, {"YearMonth": "2015-11", "ReferrerSource": "Bing Ads", "orders": 106, "revenue": 2533.01188, "avgAOV": 23.896338490566038, "avgItems": 1.679245283018868, "newPct": 0.29245283018867924, "freeShipPct": 0.6320754716981132, "discountPct": 0.37735849056603776}, {"YearMonth": "2015-11", "ReferrerSource": "Google Adwords", "orders": 781, "revenue": 18924.268441, "avgAOV": 24.23081746606914, "avgItems": 1.6670934699103712, "newPct": 0.3072983354673495, "freeShipPct": 0.7106274007682458, "discountPct": 0.39436619718309857}, {"YearMonth": "2015-11", "ReferrerSource": "Organic", "orders": 1559, "revenue": 42436.063717, "avgAOV": 27.22005369916613, "avgItems": 1.8357921744708146, "newPct": 0.1860166773572803, "freeShipPct": 0.6966003848620911, "discountPct": 0.5625400898011546}, {"YearMonth": "2015-11", "ReferrerSource": "Webgains", "orders": 300, "revenue": 9833.623368, "avgAOV": 32.77874456, "avgItems": 2.18, "newPct": 0.23333333333333334, "freeShipPct": 0.8233333333333334, "discountPct": 0.7766666666666666}, {"YearMonth": "2015-12", "ReferrerSource": "Bing Ads", "orders": 92, "revenue": 2269.081361, "avgAOV": 24.66392783695652, "avgItems": 1.7391304347826086, "newPct": 0.2391304347826087, "freeShipPct": 0.782608695652174, "discountPct": 0.043478260869565216}, {"YearMonth": "2015-12", "ReferrerSource": "Google Adwords", "orders": 688, "revenue": 16123.183818, "avgAOV": 23.434860200581394, "avgItems": 1.6686046511627908, "newPct": 0.3488372093023256, "freeShipPct": 0.7616279069767442, "discountPct": 0.03197674418604651}, {"YearMonth": "2015-12", "ReferrerSource": "Organic", "orders": 1491, "revenue": 40523.233823, "avgAOV": 27.17856057880617, "avgItems": 1.9362843729040913, "newPct": 0.19852448021462105, "freeShipPct": 0.7518443997317237, "discountPct": 0.02012072434607646}, {"YearMonth": "2015-12", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 6.201, "avgAOV": 6.201, "avgItems": 1.0, "newPct": 0.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2015-12", "ReferrerSource": "Webgains", "orders": 352, "revenue": 10053.252496, "avgAOV": 28.560376409090907, "avgItems": 1.9744318181818181, "newPct": 0.21022727272727273, "freeShipPct": 0.84375, "discountPct": 0.5795454545454546}, {"YearMonth": "2016-01", "ReferrerSource": "Bing Ads", "orders": 114, "revenue": 2651.277689, "avgAOV": 23.256821833333333, "avgItems": 1.7105263157894737, "newPct": 0.37719298245614036, "freeShipPct": 0.7017543859649122, "discountPct": 0.06140350877192982}, {"YearMonth": "2016-01", "ReferrerSource": "Google Adwords", "orders": 1112, "revenue": 24783.372275, "avgAOV": 22.287205283273384, "avgItems": 1.6780575539568345, "newPct": 0.46402877697841727, "freeShipPct": 0.7005395683453237, "discountPct": 0.047661870503597124}, {"YearMonth": "2016-01", "ReferrerSource": "Organic", "orders": 2794, "revenue": 76186.397412, "avgAOV": 27.267858773085184, "avgItems": 2.0386542591267003, "newPct": 0.20758768790264853, "freeShipPct": 0.7075876879026486, "discountPct": 0.15068002863278454}, {"YearMonth": "2016-01", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 26.2126, "avgAOV": 26.2126, "avgItems": 2.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2016-01", "ReferrerSource": "Webgains", "orders": 510, "revenue": 14591.2786, "avgAOV": 28.610350196078432, "avgItems": 2.0980392156862746, "newPct": 0.307843137254902, "freeShipPct": 0.8313725490196079, "discountPct": 0.24509803921568626}, {"YearMonth": "2016-02", "ReferrerSource": "Bing Ads", "orders": 92, "revenue": 2419.85048, "avgAOV": 26.302722608695653, "avgItems": 1.891304347826087, "newPct": 0.2391304347826087, "freeShipPct": 0.717391304347826, "discountPct": 0.10869565217391304}, {"YearMonth": "2016-02", "ReferrerSource": "Google Adwords", "orders": 704, "revenue": 16598.767014, "avgAOV": 23.577794053977275, "avgItems": 1.640625, "newPct": 0.3693181818181818, "freeShipPct": 0.6761363636363636, "discountPct": 0.06392045454545454}, {"YearMonth": "2016-02", "ReferrerSource": "Organic", "orders": 1079, "revenue": 29026.140474, "avgAOV": 26.90096429471733, "avgItems": 1.8489341983317886, "newPct": 0.2391102873030584, "freeShipPct": 0.6978683966635774, "discountPct": 0.1927710843373494}, {"YearMonth": "2016-02", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 12.4504, "avgAOV": 12.4504, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2016-02", "ReferrerSource": "Webgains", "orders": 303, "revenue": 8291.372663, "avgAOV": 27.364266214521454, "avgItems": 1.9075907590759076, "newPct": 0.26732673267326734, "freeShipPct": 0.7920792079207921, "discountPct": 0.30363036303630364}, {"YearMonth": "2016-03", "ReferrerSource": "Bing Ads", "orders": 117, "revenue": 2741.690939, "avgAOV": 23.43325588888889, "avgItems": 1.5299145299145298, "newPct": 0.3076923076923077, "freeShipPct": 0.5982905982905983, "discountPct": 0.21367521367521367}, {"YearMonth": "2016-03", "ReferrerSource": "Google Adwords", "orders": 799, "revenue": 19754.28702, "avgAOV": 24.723763479349188, "avgItems": 1.7246558197747184, "newPct": 0.30287859824780977, "freeShipPct": 0.6670838548185232, "discountPct": 0.28911138923654567}, {"YearMonth": "2016-03", "ReferrerSource": "Organic", "orders": 1918, "revenue": 55910.784022, "avgAOV": 29.150565183524506, "avgItems": 2.051094890510949, "newPct": 0.1470281543274244, "freeShipPct": 0.6876955161626694, "discountPct": 0.5651720542231491}, {"YearMonth": "2016-03", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 20.41072, "avgAOV": 20.41072, "avgItems": 2.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 1.0}, {"YearMonth": "2016-03", "ReferrerSource": "Webgains", "orders": 326, "revenue": 8362.273964, "avgAOV": 25.651147128834356, "avgItems": 1.8251533742331287, "newPct": 0.19938650306748465, "freeShipPct": 0.852760736196319, "discountPct": 0.6840490797546013}, {"YearMonth": "2016-04", "ReferrerSource": "Bing Ads", "orders": 106, "revenue": 2534.665331, "avgAOV": 23.911937084905663, "avgItems": 1.7924528301886793, "newPct": 0.2169811320754717, "freeShipPct": 0.8113207547169812, "discountPct": 0.1320754716981132}, {"YearMonth": "2016-04", "ReferrerSource": "Google Adwords", "orders": 817, "revenue": 19099.031362, "avgAOV": 23.377027370869033, "avgItems": 1.6952264381884945, "newPct": 0.3953488372093023, "freeShipPct": 0.6817625458996328, "discountPct": 0.09179926560587515}, {"YearMonth": "2016-04", "ReferrerSource": "Organic", "orders": 1660, "revenue": 45056.322967, "avgAOV": 27.14236323313253, "avgItems": 1.9289156626506023, "newPct": 0.22590361445783133, "freeShipPct": 0.6680722891566265, "discountPct": 0.39759036144578314}, {"YearMonth": "2016-04", "ReferrerSource": "Webgains", "orders": 346, "revenue": 9462.852989, "avgAOV": 27.349286095375724, "avgItems": 1.9479768786127167, "newPct": 0.22254335260115607, "freeShipPct": 0.8179190751445087, "discountPct": 0.3092485549132948}, {"YearMonth": "2016-05", "ReferrerSource": "Bing Ads", "orders": 85, "revenue": 2331.669393, "avgAOV": 27.431404623529414, "avgItems": 1.8823529411764706, "newPct": 0.24705882352941178, "freeShipPct": 0.7529411764705882, "discountPct": 0.09411764705882353}, {"YearMonth": "2016-05", "ReferrerSource": "Google Adwords", "orders": 827, "revenue": 19832.693031, "avgAOV": 23.98149096856106, "avgItems": 1.6384522370012091, "newPct": 0.3349455864570738, "freeShipPct": 0.6844014510278114, "discountPct": 0.11487303506650544}, {"YearMonth": "2016-05", "ReferrerSource": "Organic", "orders": 1372, "revenue": 37246.149286, "avgAOV": 27.14733912973761, "avgItems": 1.9424198250728864, "newPct": 0.18294460641399418, "freeShipPct": 0.6771137026239067, "discountPct": 0.35714285714285715}, {"YearMonth": "2016-05", "ReferrerSource": "Webgains", "orders": 306, "revenue": 7832.716723, "avgAOV": 25.597113473856208, "avgItems": 1.8202614379084967, "newPct": 0.21895424836601307, "freeShipPct": 0.8660130718954249, "discountPct": 0.27450980392156865}, {"YearMonth": "2016-06", "ReferrerSource": "Bing Ads", "orders": 85, "revenue": 2012.783672, "avgAOV": 23.679807905882353, "avgItems": 1.8235294117647058, "newPct": 0.2235294117647059, "freeShipPct": 0.7294117647058823, "discountPct": 0.3764705882352941}, {"YearMonth": "2016-06", "ReferrerSource": "Google Adwords", "orders": 778, "revenue": 17858.367996, "avgAOV": 22.95420050899743, "avgItems": 1.6439588688946016, "newPct": 0.38303341902313626, "freeShipPct": 0.6812339331619537, "discountPct": 0.43444730077120824}, {"YearMonth": "2016-06", "ReferrerSource": "Organic", "orders": 1595, "revenue": 44312.842326, "avgAOV": 27.782346285893414, "avgItems": 1.979937304075235, "newPct": 0.18996865203761756, "freeShipPct": 0.6721003134796238, "discountPct": 0.5517241379310345}, {"YearMonth": "2016-06", "ReferrerSource": "Webgains", "orders": 291, "revenue": 8302.494369, "avgAOV": 28.53090848453608, "avgItems": 2.0446735395189, "newPct": 0.17869415807560138, "freeShipPct": 0.845360824742268, "discountPct": 0.6529209621993127}, {"YearMonth": "2016-07", "ReferrerSource": "Bing Ads", "orders": 101, "revenue": 2654.791548, "avgAOV": 26.28506483168317, "avgItems": 1.7326732673267327, "newPct": 0.2079207920792079, "freeShipPct": 0.7128712871287128, "discountPct": 0.1782178217821782}, {"YearMonth": "2016-07", "ReferrerSource": "Google Adwords", "orders": 776, "revenue": 18137.903794, "avgAOV": 23.373587363402063, "avgItems": 1.6211340206185567, "newPct": 0.3904639175257732, "freeShipPct": 0.6739690721649485, "discountPct": 0.18943298969072164}, {"YearMonth": "2016-07", "ReferrerSource": "Organic", "orders": 1280, "revenue": 33383.60451, "avgAOV": 26.080941023437497, "avgItems": 1.7890625, "newPct": 0.2171875, "freeShipPct": 0.690625, "discountPct": 0.23359375}, {"YearMonth": "2016-07", "ReferrerSource": "Webgains", "orders": 336, "revenue": 9044.113363, "avgAOV": 26.91700405654762, "avgItems": 1.869047619047619, "newPct": 0.19047619047619047, "freeShipPct": 0.8154761904761905, "discountPct": 0.43452380952380953}, {"YearMonth": "2016-08", "ReferrerSource": "Bing Ads", "orders": 118, "revenue": 3173.160775, "avgAOV": 26.891193008474573, "avgItems": 1.8559322033898304, "newPct": 0.1440677966101695, "freeShipPct": 0.6779661016949152, "discountPct": 0.025423728813559324}, {"YearMonth": "2016-08", "ReferrerSource": "Google Adwords", "orders": 846, "revenue": 20620.632477, "avgAOV": 24.374270067375885, "avgItems": 1.6962174940898345, "newPct": 0.33569739952718675, "freeShipPct": 0.6477541371158393, "discountPct": 0.02009456264775414}, {"YearMonth": "2016-08", "ReferrerSource": "Organic", "orders": 1893, "revenue": 54597.065059, "avgAOV": 28.841555762810355, "avgItems": 2.00581088219757, "newPct": 0.16957210776545167, "freeShipPct": 0.6756471209720021, "discountPct": 0.025884838880084523}, {"YearMonth": "2016-08", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 11.4554, "avgAOV": 11.4554, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2016-08", "ReferrerSource": "Webgains", "orders": 418, "revenue": 13280.516012, "avgAOV": 31.771569406698564, "avgItems": 2.1794258373205744, "newPct": 0.18181818181818182, "freeShipPct": 0.8301435406698564, "discountPct": 0.17942583732057416}, {"YearMonth": "2016-09", "ReferrerSource": "Bing Ads", "orders": 102, "revenue": 2598.007669, "avgAOV": 25.470663421568627, "avgItems": 1.6666666666666667, "newPct": 0.3333333333333333, "freeShipPct": 0.696078431372549, "discountPct": 0.058823529411764705}, {"YearMonth": "2016-09", "ReferrerSource": "Google Adwords", "orders": 900, "revenue": 20226.734723999998, "avgAOV": 22.47414969333333, "avgItems": 1.6622222222222223, "newPct": 0.39111111111111113, "freeShipPct": 0.6711111111111111, "discountPct": 0.05444444444444444}, {"YearMonth": "2016-09", "ReferrerSource": "Organic", "orders": 1482, "revenue": 38993.328475, "avgAOV": 26.311287769905533, "avgItems": 1.9527665317139002, "newPct": 0.20985155195681512, "freeShipPct": 0.6747638326585695, "discountPct": 0.26653171390013497}, {"YearMonth": "2016-09", "ReferrerSource": "Webgains", "orders": 373, "revenue": 9410.906543, "avgAOV": 25.23031244772118, "avgItems": 1.8337801608579087, "newPct": 0.24932975871313673, "freeShipPct": 0.8364611260053619, "discountPct": 0.19571045576407506}, {"YearMonth": "2016-10", "ReferrerSource": "Bing Ads", "orders": 99, "revenue": 2375.020094, "avgAOV": 23.99010195959596, "avgItems": 1.7171717171717171, "newPct": 0.30303030303030304, "freeShipPct": 0.6767676767676768, "discountPct": 0.1111111111111111}, {"YearMonth": "2016-10", "ReferrerSource": "Google Adwords", "orders": 823, "revenue": 17832.536845, "avgAOV": 21.66772399149453, "avgItems": 1.597812879708384, "newPct": 0.44106925880923453, "freeShipPct": 0.6804374240583232, "discountPct": 0.08140947752126367}, {"YearMonth": "2016-10", "ReferrerSource": "Organic", "orders": 1676, "revenue": 45205.990378, "avgAOV": 26.972547958233893, "avgItems": 1.9433174224343674, "newPct": 0.23031026252983294, "freeShipPct": 0.6748210023866349, "discountPct": 0.3788782816229117}, {"YearMonth": "2016-10", "ReferrerSource": "Webgains", "orders": 397, "revenue": 10957.683581, "avgAOV": 27.601218088161207, "avgItems": 2.0604534005037785, "newPct": 0.29219143576826195, "freeShipPct": 0.8136020151133502, "discountPct": 0.5314861460957179}, {"YearMonth": "2016-11", "ReferrerSource": "Bing Ads", "orders": 93, "revenue": 2132.784996, "avgAOV": 22.933172, "avgItems": 1.5913978494623655, "newPct": 0.25806451612903225, "freeShipPct": 0.6881720430107527, "discountPct": 0.10752688172043011}, {"YearMonth": "2016-11", "ReferrerSource": "Google Adwords", "orders": 821, "revenue": 19891.950187, "avgAOV": 24.22892836419001, "avgItems": 1.8014616321559074, "newPct": 0.3702801461632156, "freeShipPct": 0.6711327649208283, "discountPct": 0.22168087697929353}, {"YearMonth": "2016-11", "ReferrerSource": "Organic", "orders": 1979, "revenue": 55689.142417, "avgAOV": 28.1400416457807, "avgItems": 2.039919151086407, "newPct": 0.18039413845376454, "freeShipPct": 0.7003537139969682, "discountPct": 0.4830722587165235}, {"YearMonth": "2016-11", "ReferrerSource": "Webgains", "orders": 499, "revenue": 14018.889229, "avgAOV": 28.093966390781564, "avgItems": 2.0420841683366735, "newPct": 0.20240480961923848, "freeShipPct": 0.8637274549098196, "discountPct": 0.5470941883767535}, {"YearMonth": "2016-12", "ReferrerSource": "Bing Ads", "orders": 65, "revenue": 1711.165383, "avgAOV": 26.325621276923076, "avgItems": 2.0615384615384613, "newPct": 0.2, "freeShipPct": 0.8307692307692308, "discountPct": 0.15384615384615385}, {"YearMonth": "2016-12", "ReferrerSource": "Google Adwords", "orders": 804, "revenue": 18531.517533, "avgAOV": 23.04915116044776, "avgItems": 1.61318407960199, "newPct": 0.4601990049751244, "freeShipPct": 0.7313432835820896, "discountPct": 0.14054726368159204}, {"YearMonth": "2016-12", "ReferrerSource": "Organic", "orders": 1323, "revenue": 37064.699197, "avgAOV": 28.01564565154951, "avgItems": 1.963718820861678, "newPct": 0.23431594860166288, "freeShipPct": 0.7437641723356009, "discountPct": 0.11866969009826153}, {"YearMonth": "2016-12", "ReferrerSource": "Webgains", "orders": 378, "revenue": 11438.83216, "avgAOV": 30.26146074074074, "avgItems": 2.111111111111111, "newPct": 0.24603174603174602, "freeShipPct": 0.843915343915344, "discountPct": 0.4708994708994709}, {"YearMonth": "2017-01", "ReferrerSource": "Bing Ads", "orders": 98, "revenue": 2392.969984, "avgAOV": 24.41806106122449, "avgItems": 1.8265306122448979, "newPct": 0.29591836734693877, "freeShipPct": 0.7244897959183674, "discountPct": 0.5204081632653061}, {"YearMonth": "2017-01", "ReferrerSource": "Google Adwords", "orders": 1603, "revenue": 32757.249849, "avgAOV": 20.434965595134123, "avgItems": 1.487211478477854, "newPct": 0.6263256394260761, "freeShipPct": 0.6731129132875858, "discountPct": 0.5208983156581409}, {"YearMonth": "2017-01", "ReferrerSource": "Organic", "orders": 2877, "revenue": 77408.829605, "avgAOV": 26.90609301529371, "avgItems": 2.048661800486618, "newPct": 0.2029892248870351, "freeShipPct": 0.6993395898505388, "discountPct": 0.45637817170663886}, {"YearMonth": "2017-01", "ReferrerSource": "Webgains", "orders": 542, "revenue": 14101.72995, "avgAOV": 26.017951937269373, "avgItems": 2.0, "newPct": 0.32287822878228783, "freeShipPct": 0.8653136531365314, "discountPct": 0.7269372693726938}, {"YearMonth": "2017-02", "ReferrerSource": "Bing Ads", "orders": 86, "revenue": 2284.369981, "avgAOV": 26.56244163953488, "avgItems": 2.0232558139534884, "newPct": 0.3023255813953488, "freeShipPct": 0.6976744186046512, "discountPct": 0.10465116279069768}, {"YearMonth": "2017-02", "ReferrerSource": "Google Adwords", "orders": 1288, "revenue": 25363.889941, "avgAOV": 19.692461134316773, "avgItems": 1.499223602484472, "newPct": 0.610248447204969, "freeShipPct": 0.6607142857142857, "discountPct": 0.11645962732919254}, {"YearMonth": "2017-02", "ReferrerSource": "Organic", "orders": 1580, "revenue": 39416.959844, "avgAOV": 24.947442939240503, "avgItems": 1.8816455696202532, "newPct": 0.2981012658227848, "freeShipPct": 0.6772151898734177, "discountPct": 0.260126582278481}, {"YearMonth": "2017-02", "ReferrerSource": "Webgains", "orders": 499, "revenue": 12925.449953, "avgAOV": 25.902705316633266, "avgItems": 1.9759519038076152, "newPct": 0.342685370741483, "freeShipPct": 0.7975951903807615, "discountPct": 0.5290581162324649}, {"YearMonth": "2017-03", "ReferrerSource": "Bing Ads", "orders": 66, "revenue": 1899.629989, "avgAOV": 28.78227256060606, "avgItems": 1.9090909090909092, "newPct": 0.2878787878787879, "freeShipPct": 0.5909090909090909, "discountPct": 0.21212121212121213}, {"YearMonth": "2017-03", "ReferrerSource": "Google Adwords", "orders": 1359, "revenue": 28482.869866, "avgAOV": 20.958697473142017, "avgItems": 1.5150846210448858, "newPct": 0.6100073583517293, "freeShipPct": 0.6019131714495953, "discountPct": 0.2229580573951435}, {"YearMonth": "2017-03", "ReferrerSource": "Organic", "orders": 2029, "revenue": 54125.019825999996, "avgAOV": 26.67571208772794, "avgItems": 1.8871365204534254, "newPct": 0.2735337604731395, "freeShipPct": 0.6633809758501725, "discountPct": 0.4149827501232134}, {"YearMonth": "2017-03", "ReferrerSource": "Webgains", "orders": 572, "revenue": 14220.059941, "avgAOV": 24.8602446520979, "avgItems": 1.8461538461538463, "newPct": 0.26048951048951047, "freeShipPct": 0.8059440559440559, "discountPct": 0.4353146853146853}, {"YearMonth": "2017-04", "ReferrerSource": "Bing Ads", "orders": 42, "revenue": 1102.380001, "avgAOV": 26.24714288095238, "avgItems": 1.9285714285714286, "newPct": 0.21428571428571427, "freeShipPct": 0.6190476190476191, "discountPct": 0.21428571428571427}, {"YearMonth": "2017-04", "ReferrerSource": "Google Adwords", "orders": 1204, "revenue": 26168.089891, "avgAOV": 21.734293929401993, "avgItems": 1.5066445182724253, "newPct": 0.6112956810631229, "freeShipPct": 0.6428571428571429, "discountPct": 0.1777408637873754}, {"YearMonth": "2017-04", "ReferrerSource": "Organic", "orders": 1602, "revenue": 42507.91987, "avgAOV": 26.53428206616729, "avgItems": 1.8876404494382022, "newPct": 0.26279650436953805, "freeShipPct": 0.6604244694132334, "discountPct": 0.39076154806491886}, {"YearMonth": "2017-04", "ReferrerSource": "Outbrain", "orders": 7, "revenue": 188.76000299999998, "avgAOV": 26.965714714285713, "avgItems": 1.7142857142857142, "newPct": 0.8571428571428571, "freeShipPct": 0.8571428571428571, "discountPct": 0.42857142857142855}, {"YearMonth": "2017-04", "ReferrerSource": "Webgains", "orders": 473, "revenue": 12734.019966, "avgAOV": 26.921818109936574, "avgItems": 1.9281183932346724, "newPct": 0.28964059196617337, "freeShipPct": 0.8202959830866807, "discountPct": 0.4503171247357294}, {"YearMonth": "2017-05", "ReferrerSource": "Bing Ads", "orders": 63, "revenue": 1561.609992, "avgAOV": 24.78746019047619, "avgItems": 1.7142857142857142, "newPct": 0.36507936507936506, "freeShipPct": 0.6190476190476191, "discountPct": 0.15873015873015872}, {"YearMonth": "2017-05", "ReferrerSource": "Google Adwords", "orders": 1307, "revenue": 30447.919741, "avgAOV": 23.29603652716144, "avgItems": 1.5700076511094108, "newPct": 0.5080336648814078, "freeShipPct": 0.6235654169854629, "discountPct": 0.20504973221117062}, {"YearMonth": "2017-05", "ReferrerSource": "Organic", "orders": 2193, "revenue": 57796.139438, "avgAOV": 26.35482874509804, "avgItems": 1.8741450068399452, "newPct": 0.2165982672138623, "freeShipPct": 0.6589147286821705, "discountPct": 0.49019607843137253}, {"YearMonth": "2017-05", "ReferrerSource": "Outbrain", "orders": 3, "revenue": 69.93, "avgAOV": 23.310000000000002, "avgItems": 1.6666666666666667, "newPct": 1.0, "freeShipPct": 0.3333333333333333, "discountPct": 0.3333333333333333}, {"YearMonth": "2017-05", "ReferrerSource": "Webgains", "orders": 460, "revenue": 11515.299925, "avgAOV": 25.033260706521737, "avgItems": 1.8282608695652174, "newPct": 0.28043478260869564, "freeShipPct": 0.8108695652173913, "discountPct": 0.45652173913043476}, {"YearMonth": "2017-06", "ReferrerSource": "Bing Ads", "orders": 52, "revenue": 1256.039992, "avgAOV": 24.15461523076923, "avgItems": 1.4230769230769231, "newPct": 0.4230769230769231, "freeShipPct": 0.5, "discountPct": 0.038461538461538464}, {"YearMonth": "2017-06", "ReferrerSource": "Google Adwords", "orders": 1307, "revenue": 29599.059673, "avgAOV": 22.646564401683243, "avgItems": 1.4927314460596786, "newPct": 0.5241009946442234, "freeShipPct": 0.6067329762815609, "discountPct": 0.07268553940321347}, {"YearMonth": "2017-06", "ReferrerSource": "Organic", "orders": 1344, "revenue": 34616.489701, "avgAOV": 25.756316741815475, "avgItems": 1.7358630952380953, "newPct": 0.33779761904761907, "freeShipPct": 0.6555059523809523, "discountPct": 0.08630952380952381}, {"YearMonth": "2017-06", "ReferrerSource": "Outbrain", "orders": 6, "revenue": 136.18999499999998, "avgAOV": 22.698332499999996, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.16666666666666666, "discountPct": 0.16666666666666666}, {"YearMonth": "2017-06", "ReferrerSource": "Webgains", "orders": 591, "revenue": 15467.209875999999, "avgAOV": 26.171251905245345, "avgItems": 1.8104906937394247, "newPct": 0.27580372250423013, "freeShipPct": 0.8426395939086294, "discountPct": 0.38578680203045684}, {"YearMonth": "2017-07", "ReferrerSource": "Bing Ads", "orders": 69, "revenue": 1803.289982, "avgAOV": 26.134637420289856, "avgItems": 1.9275362318840579, "newPct": 0.2608695652173913, "freeShipPct": 0.5942028985507246, "discountPct": 0.2898550724637681}, {"YearMonth": "2017-07", "ReferrerSource": "Google Adwords", "orders": 1727, "revenue": 42372.199526, "avgAOV": 24.535147380428487, "avgItems": 1.717429067747539, "newPct": 0.5072379849449913, "freeShipPct": 0.6629994209612045, "discountPct": 0.22235089751013318}, {"YearMonth": "2017-07", "ReferrerSource": "Organic", "orders": 2679, "revenue": 80652.739235, "avgAOV": 30.105539094811498, "avgItems": 2.167973124300112, "newPct": 0.19932810750279956, "freeShipPct": 0.6883165360209034, "discountPct": 0.49533407988055245}, {"YearMonth": "2017-07", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 13.46, "avgAOV": 13.46, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2017-07", "ReferrerSource": "Webgains", "orders": 657, "revenue": 18508.029817, "avgAOV": 28.17051722526636, "avgItems": 2.070015220700152, "newPct": 0.3333333333333333, "freeShipPct": 0.8203957382039574, "discountPct": 0.6894977168949772}, {"YearMonth": "2017-08", "ReferrerSource": "Bing Ads", "orders": 101, "revenue": 2534.549978, "avgAOV": 25.09455423762376, "avgItems": 1.683168316831683, "newPct": 0.21782178217821782, "freeShipPct": 0.6732673267326733, "discountPct": 0.16831683168316833}, {"YearMonth": "2017-08", "ReferrerSource": "Google Adwords", "orders": 1443, "revenue": 32783.739639, "avgAOV": 22.71915428898129, "avgItems": 1.521829521829522, "newPct": 0.5315315315315315, "freeShipPct": 0.6285516285516286, "discountPct": 0.07969507969507969}, {"YearMonth": "2017-08", "ReferrerSource": "Organic", "orders": 1854, "revenue": 48281.589562, "avgAOV": 26.041849817691478, "avgItems": 1.8079827400215749, "newPct": 0.2912621359223301, "freeShipPct": 0.6531823085221143, "discountPct": 0.2858683926645092}, {"YearMonth": "2017-08", "ReferrerSource": "Outbrain", "orders": 5, "revenue": 93.059998, "avgAOV": 18.611999599999997, "avgItems": 1.0, "newPct": 0.8, "freeShipPct": 0.4, "discountPct": 0.2}, {"YearMonth": "2017-08", "ReferrerSource": "Webgains", "orders": 536, "revenue": 14063.349854, "avgAOV": 26.23759301119403, "avgItems": 1.8544776119402986, "newPct": 0.35261194029850745, "freeShipPct": 0.8208955223880597, "discountPct": 0.7033582089552238}, {"YearMonth": "2017-09", "ReferrerSource": "Bing Ads", "orders": 147, "revenue": 3544.609977, "avgAOV": 24.112993040816328, "avgItems": 1.6734693877551021, "newPct": 0.19047619047619047, "freeShipPct": 0.673469387755102, "discountPct": 0.06802721088435375}, {"YearMonth": "2017-09", "ReferrerSource": "Google Adwords", "orders": 1526, "revenue": 33857.749599, "avgAOV": 22.187253996723463, "avgItems": 1.4875491480996068, "newPct": 0.5707732634338138, "freeShipPct": 0.617300131061599, "discountPct": 0.04849279161205767}, {"YearMonth": "2017-09", "ReferrerSource": "Organic", "orders": 1758, "revenue": 48769.359539, "avgAOV": 27.741387678612057, "avgItems": 1.853811149032992, "newPct": 0.32195676905574516, "freeShipPct": 0.646188850967008, "discountPct": 0.18373151308304891}, {"YearMonth": "2017-09", "ReferrerSource": "Outbrain", "orders": 8, "revenue": 182.919999, "avgAOV": 22.864999875, "avgItems": 1.375, "newPct": 0.875, "freeShipPct": 0.25, "discountPct": 0.0}, {"YearMonth": "2017-09", "ReferrerSource": "Webgains", "orders": 489, "revenue": 13586.19987, "avgAOV": 27.78363981595092, "avgItems": 1.8752556237218814, "newPct": 0.35173824130879344, "freeShipPct": 0.8466257668711656, "discountPct": 0.4294478527607362}, {"YearMonth": "2017-10", "ReferrerSource": "Bing Ads", "orders": 179, "revenue": 4865.879956, "avgAOV": 27.183686905027933, "avgItems": 2.005586592178771, "newPct": 0.20670391061452514, "freeShipPct": 0.7150837988826816, "discountPct": 0.27932960893854747}, {"YearMonth": "2017-10", "ReferrerSource": "Google Adwords", "orders": 1695, "revenue": 39925.489587, "avgAOV": 23.554861113274335, "avgItems": 1.6330383480825958, "newPct": 0.5138643067846608, "freeShipPct": 0.6365781710914454, "discountPct": 0.15103244837758112}, {"YearMonth": "2017-10", "ReferrerSource": "Organic", "orders": 2430, "revenue": 64174.549308, "avgAOV": 26.409279550617285, "avgItems": 1.8699588477366256, "newPct": 0.27037037037037037, "freeShipPct": 0.6930041152263374, "discountPct": 0.3403292181069959}, {"YearMonth": "2017-10", "ReferrerSource": "Outbrain", "orders": 7, "revenue": 204.49999499999998, "avgAOV": 29.214284999999997, "avgItems": 1.5714285714285714, "newPct": 1.0, "freeShipPct": 0.8571428571428571, "discountPct": 0.0}, {"YearMonth": "2017-10", "ReferrerSource": "Webgains", "orders": 761, "revenue": 19004.489827999998, "avgAOV": 24.973048394218132, "avgItems": 1.7884362680683312, "newPct": 0.3232588699080158, "freeShipPct": 0.8278580814717477, "discountPct": 0.545335085413929}, {"YearMonth": "2017-11", "ReferrerSource": "Bing Ads", "orders": 161, "revenue": 4318.519968, "avgAOV": 26.823105391304345, "avgItems": 1.8695652173913044, "newPct": 0.2732919254658385, "freeShipPct": 0.6708074534161491, "discountPct": 0.2670807453416149}, {"YearMonth": "2017-11", "ReferrerSource": "Google Adwords", "orders": 1601, "revenue": 38039.129628999995, "avgAOV": 23.759606264209864, "avgItems": 1.6895690193628983, "newPct": 0.49594003747657717, "freeShipPct": 0.6396002498438476, "discountPct": 0.23735165521549031}, {"YearMonth": "2017-11", "ReferrerSource": "Organic", "orders": 2782, "revenue": 79367.609171, "avgAOV": 28.528975259166067, "avgItems": 2.123292595255212, "newPct": 0.22393961179007907, "freeShipPct": 0.6718188353702372, "discountPct": 0.5154565061107117}, {"YearMonth": "2017-11", "ReferrerSource": "Outbrain", "orders": 5, "revenue": 134.30000099999998, "avgAOV": 26.860000199999995, "avgItems": 2.4, "newPct": 0.6, "freeShipPct": 0.6, "discountPct": 0.4}, {"YearMonth": "2017-11", "ReferrerSource": "Webgains", "orders": 618, "revenue": 16531.929792, "avgAOV": 26.750695456310677, "avgItems": 1.9449838187702266, "newPct": 0.3478964401294498, "freeShipPct": 0.8446601941747572, "discountPct": 0.6537216828478964}, {"YearMonth": "2017-12", "ReferrerSource": "Bing Ads", "orders": 111, "revenue": 2680.249974, "avgAOV": 24.146396162162162, "avgItems": 1.6666666666666667, "newPct": 0.22522522522522523, "freeShipPct": 0.7567567567567568, "discountPct": 0.18018018018018017}, {"YearMonth": "2017-12", "ReferrerSource": "Google Adwords", "orders": 1255, "revenue": 30483.15971, "avgAOV": 24.289370286852588, "avgItems": 1.702788844621514, "newPct": 0.5179282868525896, "freeShipPct": 0.7203187250996016, "discountPct": 0.2239043824701195}, {"YearMonth": "2017-12", "ReferrerSource": "Organic", "orders": 1918, "revenue": 48737.579545, "avgAOV": 25.410625414494266, "avgItems": 1.880604796663191, "newPct": 0.25651720542231493, "freeShipPct": 0.748696558915537, "discountPct": 0.38321167883211676}, {"YearMonth": "2017-12", "ReferrerSource": "Outbrain", "orders": 3, "revenue": 84.35, "avgAOV": 28.116666666666664, "avgItems": 1.6666666666666667, "newPct": 0.6666666666666666, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2017-12", "ReferrerSource": "Webgains", "orders": 461, "revenue": 13005.499855, "avgAOV": 28.21149643167028, "avgItems": 2.03470715835141, "newPct": 0.2754880694143167, "freeShipPct": 0.8546637744034707, "discountPct": 0.4685466377440347}, {"YearMonth": "2018-01", "ReferrerSource": "Bing Ads", "orders": 226, "revenue": 6234.149971, "avgAOV": 27.584734384955752, "avgItems": 2.15929203539823, "newPct": 0.168141592920354, "freeShipPct": 0.7654867256637168, "discountPct": 0.6460176991150443}, {"YearMonth": "2018-01", "ReferrerSource": "Google Adwords", "orders": 2696, "revenue": 63873.759411, "avgAOV": 23.692047259272996, "avgItems": 1.7377596439169138, "newPct": 0.5708456973293768, "freeShipPct": 0.6791543026706232, "discountPct": 0.5114985163204748}, {"YearMonth": "2018-01", "ReferrerSource": "Organic", "orders": 4608, "revenue": 126333.419299, "avgAOV": 27.416106618706596, "avgItems": 2.1440972222222223, "newPct": 0.2651909722222222, "freeShipPct": 0.732421875, "discountPct": 0.7200520833333334}, {"YearMonth": "2018-01", "ReferrerSource": "Outbrain", "orders": 8, "revenue": 145.92999700000001, "avgAOV": 18.241249625000002, "avgItems": 1.125, "newPct": 0.875, "freeShipPct": 0.375, "discountPct": 0.125}, {"YearMonth": "2018-01", "ReferrerSource": "Webgains", "orders": 674, "revenue": 18315.749907, "avgAOV": 27.17470312611276, "avgItems": 2.1394658753709197, "newPct": 0.3560830860534125, "freeShipPct": 0.8590504451038575, "discountPct": 0.8160237388724035}, {"YearMonth": "2018-02", "ReferrerSource": "Bing Ads", "orders": 70, "revenue": 2037.600002, "avgAOV": 29.108571457142855, "avgItems": 2.2142857142857144, "newPct": 0.4857142857142857, "freeShipPct": 0.5714285714285714, "discountPct": 0.22857142857142856}, {"YearMonth": "2018-02", "ReferrerSource": "Google Adwords", "orders": 1747, "revenue": 40178.76966, "avgAOV": 22.9987233314253, "avgItems": 1.6542644533485975, "newPct": 0.5844304522037779, "freeShipPct": 0.616485403548941, "discountPct": 0.1700057240984545}, {"YearMonth": "2018-02", "ReferrerSource": "Organic", "orders": 2254, "revenue": 58852.399626, "avgAOV": 26.110203915705412, "avgItems": 1.9649511978704526, "newPct": 0.3256433007985803, "freeShipPct": 0.6601597160603372, "discountPct": 0.3469387755102041}, {"YearMonth": "2018-02", "ReferrerSource": "Outbrain", "orders": 3, "revenue": 65.879998, "avgAOV": 21.959999333333332, "avgItems": 1.0, "newPct": 0.6666666666666666, "freeShipPct": 0.0, "discountPct": 0.3333333333333333}, {"YearMonth": "2018-02", "ReferrerSource": "Webgains", "orders": 624, "revenue": 16258.389929, "avgAOV": 26.055112065705128, "avgItems": 1.982371794871795, "newPct": 0.33974358974358976, "freeShipPct": 0.7996794871794872, "discountPct": 0.6041666666666666}, {"YearMonth": "2018-03", "ReferrerSource": "Bing Ads", "orders": 43, "revenue": 1125.399995, "avgAOV": 26.172092906976744, "avgItems": 2.0232558139534884, "newPct": 0.46511627906976744, "freeShipPct": 0.5813953488372093, "discountPct": 0.13953488372093023}, {"YearMonth": "2018-03", "ReferrerSource": "Google Adwords", "orders": 1891, "revenue": 41018.649699, "avgAOV": 21.69151226811211, "avgItems": 1.6033844526705447, "newPct": 0.5711263881544156, "freeShipPct": 0.6166049709148599, "discountPct": 0.11634056054997356}, {"YearMonth": "2018-03", "ReferrerSource": "Organic", "orders": 2897, "revenue": 76166.709446, "avgAOV": 26.291580754573694, "avgItems": 1.8895409043838454, "newPct": 0.24887814981014844, "freeShipPct": 0.6738004832585434, "discountPct": 0.41594753192958234}, {"YearMonth": "2018-03", "ReferrerSource": "Outbrain", "orders": 11, "revenue": 270.009993, "avgAOV": 24.546363, "avgItems": 1.4545454545454546, "newPct": 0.9090909090909091, "freeShipPct": 0.45454545454545453, "discountPct": 0.0}, {"YearMonth": "2018-03", "ReferrerSource": "Webgains", "orders": 828, "revenue": 21216.649883, "avgAOV": 25.623973288647342, "avgItems": 1.9915458937198067, "newPct": 0.2995169082125604, "freeShipPct": 0.8079710144927537, "discountPct": 0.6594202898550725}, {"YearMonth": "2018-04", "ReferrerSource": "Bing Ads", "orders": 34, "revenue": 922.969995, "avgAOV": 27.146176323529414, "avgItems": 1.8823529411764706, "newPct": 0.4117647058823529, "freeShipPct": 0.5294117647058824, "discountPct": 0.23529411764705882}, {"YearMonth": "2018-04", "ReferrerSource": "Google Adwords", "orders": 1863, "revenue": 43391.169539, "avgAOV": 23.291019612989803, "avgItems": 1.681159420289855, "newPct": 0.47718733225979604, "freeShipPct": 0.6387546967257112, "discountPct": 0.23510466988727857}, {"YearMonth": "2018-04", "ReferrerSource": "Organic", "orders": 2539, "revenue": 69828.63944, "avgAOV": 27.502418054352106, "avgItems": 2.0, "newPct": 0.26545884206380466, "freeShipPct": 0.6699487987396613, "discountPct": 0.41630563213863725}, {"YearMonth": "2018-04", "ReferrerSource": "Outbrain", "orders": 4, "revenue": 107.089997, "avgAOV": 26.77249925, "avgItems": 1.75, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2018-04", "ReferrerSource": "Webgains", "orders": 733, "revenue": 19097.929789, "avgAOV": 26.054474473397, "avgItems": 1.9290586630286495, "newPct": 0.27694406548431105, "freeShipPct": 0.7885402455661664, "discountPct": 0.45702592087312416}, {"YearMonth": "2018-05", "ReferrerSource": "Bing Ads", "orders": 36, "revenue": 862.039997, "avgAOV": 23.94555547222222, "avgItems": 1.6388888888888888, "newPct": 0.4444444444444444, "freeShipPct": 0.5, "discountPct": 0.1388888888888889}, {"YearMonth": "2018-05", "ReferrerSource": "Google Adwords", "orders": 1629, "revenue": 37997.699534, "avgAOV": 23.325782402701044, "avgItems": 1.6009821976672804, "newPct": 0.5107427869858809, "freeShipPct": 0.6028238182934316, "discountPct": 0.15101289134438306}, {"YearMonth": "2018-05", "ReferrerSource": "Organic", "orders": 2399, "revenue": 66006.44937, "avgAOV": 27.514151467278033, "avgItems": 1.925385577323885, "newPct": 0.22342642767819926, "freeShipPct": 0.6973739057940809, "discountPct": 0.40516882034180907}, {"YearMonth": "2018-05", "ReferrerSource": "Outbrain", "orders": 3, "revenue": 48.079999, "avgAOV": 16.026666333333335, "avgItems": 1.0, "newPct": 0.6666666666666666, "freeShipPct": 0.3333333333333333, "discountPct": 0.0}, {"YearMonth": "2018-05", "ReferrerSource": "Webgains", "orders": 849, "revenue": 23645.449724, "avgAOV": 27.850941959952884, "avgItems": 1.9587750294464075, "newPct": 0.24852767962308597, "freeShipPct": 0.800942285041225, "discountPct": 0.4758539458186101}, {"YearMonth": "2018-06", "ReferrerSource": "Bing Ads", "orders": 41, "revenue": 1113.049994, "avgAOV": 27.147560829268294, "avgItems": 1.853658536585366, "newPct": 0.4146341463414634, "freeShipPct": 0.5853658536585366, "discountPct": 0.1951219512195122}, {"YearMonth": "2018-06", "ReferrerSource": "Google Adwords", "orders": 1610, "revenue": 36128.12955, "avgAOV": 22.43983201863354, "avgItems": 1.5354037267080745, "newPct": 0.4857142857142857, "freeShipPct": 0.639751552795031, "discountPct": 0.17391304347826086}, {"YearMonth": "2018-06", "ReferrerSource": "Organic", "orders": 2312, "revenue": 64405.399236, "avgAOV": 27.857006589965398, "avgItems": 1.9234429065743945, "newPct": 0.22145328719723184, "freeShipPct": 0.6686851211072664, "discountPct": 0.4009515570934256}, {"YearMonth": "2018-06", "ReferrerSource": "Outbrain", "orders": 5, "revenue": 96.05999800000001, "avgAOV": 19.211999600000002, "avgItems": 1.2, "newPct": 0.8, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2018-06", "ReferrerSource": "Webgains", "orders": 832, "revenue": 21386.889772, "avgAOV": 25.70539636057692, "avgItems": 1.8209134615384615, "newPct": 0.24158653846153846, "freeShipPct": 0.7944711538461539, "discountPct": 0.6237980769230769}, {"YearMonth": "2018-07", "ReferrerSource": "Bing Ads", "orders": 19, "revenue": 576.9599929999999, "avgAOV": 30.36631542105263, "avgItems": 2.210526315789474, "newPct": 0.3684210526315789, "freeShipPct": 0.47368421052631576, "discountPct": 0.10526315789473684}, {"YearMonth": "2018-07", "ReferrerSource": "Google Adwords", "orders": 1633, "revenue": 39890.19956, "avgAOV": 24.42755637477036, "avgItems": 1.593386405388855, "newPct": 0.4733619105939988, "freeShipPct": 0.6007348438456828, "discountPct": 0.15125535823637476}, {"YearMonth": "2018-07", "ReferrerSource": "Organic", "orders": 2012, "revenue": 58046.089498, "avgAOV": 28.849945078528826, "avgItems": 1.904572564612326, "newPct": 0.2529821073558648, "freeShipPct": 0.658051689860835, "discountPct": 0.2957256461232604}, {"YearMonth": "2018-07", "ReferrerSource": "Outbrain", "orders": 7, "revenue": 130.409999, "avgAOV": 18.629999857142856, "avgItems": 1.2857142857142858, "newPct": 0.8571428571428571, "freeShipPct": 0.7142857142857143, "discountPct": 0.0}, {"YearMonth": "2018-07", "ReferrerSource": "Webgains", "orders": 837, "revenue": 24779.199708, "avgAOV": 29.604778623655914, "avgItems": 1.95221027479092, "newPct": 0.24850657108721624, "freeShipPct": 0.7885304659498208, "discountPct": 0.45639187574671447}, {"YearMonth": "2018-08", "ReferrerSource": "Bing Ads", "orders": 13, "revenue": 352.989996, "avgAOV": 27.153076615384617, "avgItems": 1.7692307692307692, "newPct": 0.07692307692307693, "freeShipPct": 0.6923076923076923, "discountPct": 0.46153846153846156}, {"YearMonth": "2018-08", "ReferrerSource": "Google Adwords", "orders": 2002, "revenue": 48605.209496999996, "avgAOV": 24.27832642207792, "avgItems": 1.650849150849151, "newPct": 0.463036963036963, "freeShipPct": 0.6123876123876124, "discountPct": 0.25874125874125875}, {"YearMonth": "2018-08", "ReferrerSource": "Organic", "orders": 2611, "revenue": 75299.459202, "avgAOV": 28.839317963232478, "avgItems": 1.9754883186518575, "newPct": 0.19226350057449254, "freeShipPct": 0.7207966296438146, "discountPct": 0.5381080045959402}, {"YearMonth": "2018-08", "ReferrerSource": "Outbrain", "orders": 5, "revenue": 103.27999899999999, "avgAOV": 20.655999799999996, "avgItems": 1.6, "newPct": 1.0, "freeShipPct": 0.6, "discountPct": 0.0}, {"YearMonth": "2018-08", "ReferrerSource": "Webgains", "orders": 888, "revenue": 25806.33976, "avgAOV": 29.061193423423422, "avgItems": 1.9831081081081081, "newPct": 0.24211711711711711, "freeShipPct": 0.8063063063063063, "discountPct": 0.5585585585585585}, {"YearMonth": "2018-09", "ReferrerSource": "Bing Ads", "orders": 14, "revenue": 348.369999, "avgAOV": 24.88357135714286, "avgItems": 1.3571428571428572, "newPct": 0.21428571428571427, "freeShipPct": 0.5, "discountPct": 0.2857142857142857}, {"YearMonth": "2018-09", "ReferrerSource": "Google Adwords", "orders": 1742, "revenue": 42734.239539, "avgAOV": 24.531710412743973, "avgItems": 1.6406429391504018, "newPct": 0.43857634902411025, "freeShipPct": 0.6079219288174512, "discountPct": 0.2726750861079219}, {"YearMonth": "2018-09", "ReferrerSource": "Organic", "orders": 1923, "revenue": 54548.329567, "avgAOV": 28.36626602548102, "avgItems": 1.9308372334893396, "newPct": 0.1996879875195008, "freeShipPct": 0.6682267290691628, "discountPct": 0.4295371814872595}, {"YearMonth": "2018-09", "ReferrerSource": "Outbrain", "orders": 2, "revenue": 27.27, "avgAOV": 13.635, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.5, "discountPct": 0.5}, {"YearMonth": "2018-09", "ReferrerSource": "Webgains", "orders": 639, "revenue": 17228.419874, "avgAOV": 26.961533449139278, "avgItems": 1.837245696400626, "newPct": 0.21752738654147105, "freeShipPct": 0.7871674491392802, "discountPct": 0.5054773082942097}, {"YearMonth": "2018-10", "ReferrerSource": "Bing Ads", "orders": 25, "revenue": 835.0600019999999, "avgAOV": 33.40240008, "avgItems": 2.0, "newPct": 0.56, "freeShipPct": 0.56, "discountPct": 0.12}, {"YearMonth": "2018-10", "ReferrerSource": "Google Adwords", "orders": 1709, "revenue": 40378.069688999996, "avgAOV": 23.626723047981272, "avgItems": 1.566413107080164, "newPct": 0.46459918080748974, "freeShipPct": 0.5950848449385605, "discountPct": 0.14101813926272674}, {"YearMonth": "2018-10", "ReferrerSource": "Organic", "orders": 2727, "revenue": 83306.329464, "avgAOV": 30.54870900770077, "avgItems": 2.0154015401540155, "newPct": 0.14594792812614596, "freeShipPct": 0.6530986431976531, "discountPct": 0.47854785478547857}, {"YearMonth": "2018-10", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 14.21, "avgAOV": 14.21, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 1.0}, {"YearMonth": "2018-10", "ReferrerSource": "Webgains", "orders": 823, "revenue": 24107.239832, "avgAOV": 29.291907450789793, "avgItems": 1.9817739975698663, "newPct": 0.2065613608748481, "freeShipPct": 0.8213851761846902, "discountPct": 0.528554070473876}, {"YearMonth": "2018-11", "ReferrerSource": "Bing Ads", "orders": 21, "revenue": 547.330013, "avgAOV": 26.06333395238095, "avgItems": 1.3333333333333333, "newPct": 0.8095238095238095, "freeShipPct": 0.5714285714285714, "discountPct": 0.047619047619047616}, {"YearMonth": "2018-11", "ReferrerSource": "Google Adwords", "orders": 1770, "revenue": 43234.940022, "avgAOV": 24.42651978644068, "avgItems": 1.676271186440678, "newPct": 0.43898305084745765, "freeShipPct": 0.6265536723163841, "discountPct": 0.2632768361581921}, {"YearMonth": "2018-11", "ReferrerSource": "Organic", "orders": 2220, "revenue": 67045.719892, "avgAOV": 30.200774726126124, "avgItems": 2.0617117117117116, "newPct": 0.14504504504504503, "freeShipPct": 0.6824324324324325, "discountPct": 0.5063063063063064}, {"YearMonth": "2018-11", "ReferrerSource": "Outbrain", "orders": 4, "revenue": 59.21, "avgAOV": 14.8025, "avgItems": 1.25, "newPct": 0.75, "freeShipPct": 0.5, "discountPct": 0.25}, {"YearMonth": "2018-11", "ReferrerSource": "Webgains", "orders": 884, "revenue": 24701.27996, "avgAOV": 27.94262438914027, "avgItems": 1.994343891402715, "newPct": 0.2160633484162896, "freeShipPct": 0.7952488687782805, "discountPct": 0.7070135746606335}, {"YearMonth": "2018-12", "ReferrerSource": "Bing Ads", "orders": 23, "revenue": 877.339995, "avgAOV": 38.145217173913046, "avgItems": 3.0, "newPct": 0.6521739130434783, "freeShipPct": 0.6521739130434783, "discountPct": 0.08695652173913043}, {"YearMonth": "2018-12", "ReferrerSource": "Google Adwords", "orders": 1377, "revenue": 31779.08997, "avgAOV": 23.07849671023965, "avgItems": 1.6427015250544663, "newPct": 0.45824255628177196, "freeShipPct": 0.7407407407407407, "discountPct": 0.20406681190994916}, {"YearMonth": "2018-12", "ReferrerSource": "Organic", "orders": 2449, "revenue": 74263.22973199999, "avgAOV": 30.323899441404652, "avgItems": 2.1098407513270723, "newPct": 0.11678236014699878, "freeShipPct": 0.7300939158840343, "discountPct": 0.5626786443446304}, {"YearMonth": "2018-12", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 27.150001, "avgAOV": 27.150001, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2018-12", "ReferrerSource": "Webgains", "orders": 663, "revenue": 17218.899916, "avgAOV": 25.97119142684766, "avgItems": 1.8838612368024132, "newPct": 0.19457013574660634, "freeShipPct": 0.8552036199095022, "discountPct": 0.6138763197586727}, {"YearMonth": "2019-01", "ReferrerSource": "Bing Ads", "orders": 48, "revenue": 1221.7999829999999, "avgAOV": 25.454166312499996, "avgItems": 1.5, "newPct": 0.6458333333333334, "freeShipPct": 0.6458333333333334, "discountPct": 0.4166666666666667}, {"YearMonth": "2019-01", "ReferrerSource": "Google Adwords", "orders": 2283, "revenue": 54342.559632, "avgAOV": 23.8031360630749, "avgItems": 1.6946999561979852, "newPct": 0.5089794130530004, "freeShipPct": 0.6224266316250547, "discountPct": 0.3924660534384582}, {"YearMonth": "2019-01", "ReferrerSource": "Organic", "orders": 3715, "revenue": 117302.749215, "avgAOV": 31.575437204576044, "avgItems": 2.1569313593539703, "newPct": 0.15343203230148048, "freeShipPct": 0.6882907133243606, "discountPct": 0.6401076716016151}, {"YearMonth": "2019-01", "ReferrerSource": "Outbrain", "orders": 3, "revenue": 39.68, "avgAOV": 13.226666666666667, "avgItems": 1.3333333333333333, "newPct": 0.3333333333333333, "freeShipPct": 0.3333333333333333, "discountPct": 0.6666666666666666}, {"YearMonth": "2019-01", "ReferrerSource": "Webgains", "orders": 986, "revenue": 26962.279838, "avgAOV": 27.345111397565923, "avgItems": 2.0334685598377282, "newPct": 0.24645030425963488, "freeShipPct": 0.8123732251521298, "discountPct": 0.7221095334685599}, {"YearMonth": "2019-02", "ReferrerSource": "Bing Ads", "orders": 102, "revenue": 2943.719971, "avgAOV": 28.859999715686275, "avgItems": 1.8235294117647058, "newPct": 0.47058823529411764, "freeShipPct": 0.6078431372549019, "discountPct": 0.13725490196078433}, {"YearMonth": "2019-02", "ReferrerSource": "Google Adwords", "orders": 1571, "revenue": 37303.139652, "avgAOV": 23.744837461489496, "avgItems": 1.6530872056015278, "newPct": 0.5092297899427116, "freeShipPct": 0.5773392743475493, "discountPct": 0.10439210693825589}, {"YearMonth": "2019-02", "ReferrerSource": "Organic", "orders": 1846, "revenue": 56560.989609, "avgAOV": 30.639756017876486, "avgItems": 2.2730227518959913, "newPct": 0.18526543878656554, "freeShipPct": 0.6273022751895991, "discountPct": 0.3114842903575298}, {"YearMonth": "2019-02", "ReferrerSource": "Outbrain", "orders": 3, "revenue": 82.259997, "avgAOV": 27.419999, "avgItems": 1.3333333333333333, "newPct": 1.0, "freeShipPct": 0.3333333333333333, "discountPct": 0.0}, {"YearMonth": "2019-02", "ReferrerSource": "Webgains", "orders": 629, "revenue": 17987.429839, "avgAOV": 28.59686778855326, "avgItems": 2.0333863275039747, "newPct": 0.26232114467408585, "freeShipPct": 0.8235294117647058, "discountPct": 0.46899841017488075}, {"YearMonth": "2019-03", "ReferrerSource": "Bing Ads", "orders": 67, "revenue": 1769.759979, "avgAOV": 26.41432804477612, "avgItems": 1.7462686567164178, "newPct": 0.47761194029850745, "freeShipPct": 0.5373134328358209, "discountPct": 0.16417910447761194}, {"YearMonth": "2019-03", "ReferrerSource": "Google Adwords", "orders": 1400, "revenue": 35325.349674, "avgAOV": 25.232392624285712, "avgItems": 1.8157142857142856, "newPct": 0.37714285714285717, "freeShipPct": 0.5785714285714286, "discountPct": 0.20285714285714285}, {"YearMonth": "2019-03", "ReferrerSource": "Organic", "orders": 2272, "revenue": 69886.90951, "avgAOV": 30.76008341109155, "avgItems": 2.4964788732394365, "newPct": 0.1857394366197183, "freeShipPct": 0.6505281690140845, "discountPct": 0.4326584507042254}, {"YearMonth": "2019-03", "ReferrerSource": "Outbrain", "orders": 3, "revenue": 69.38, "avgAOV": 23.126666666666665, "avgItems": 1.3333333333333333, "newPct": 1.0, "freeShipPct": 0.6666666666666666, "discountPct": 0.0}, {"YearMonth": "2019-03", "ReferrerSource": "Webgains", "orders": 778, "revenue": 23429.249816, "avgAOV": 30.11471698714653, "avgItems": 2.107969151670951, "newPct": 0.17737789203084833, "freeShipPct": 0.8251928020565553, "discountPct": 0.44601542416452444}, {"YearMonth": "2019-04", "ReferrerSource": "Bing Ads", "orders": 4, "revenue": 143.080003, "avgAOV": 35.77000075, "avgItems": 2.5, "newPct": 0.0, "freeShipPct": 0.5, "discountPct": 0.5}, {"YearMonth": "2019-04", "ReferrerSource": "Google Adwords", "orders": 1383, "revenue": 32938.179731, "avgAOV": 23.816471244396237, "avgItems": 1.6196673897324656, "newPct": 0.4345625451916124, "freeShipPct": 0.5950831525668836, "discountPct": 0.309472161966739}, {"YearMonth": "2019-04", "ReferrerSource": "Organic", "orders": 2104, "revenue": 65939.879405, "avgAOV": 31.340246865494297, "avgItems": 1.9895437262357414, "newPct": 0.1487642585551331, "freeShipPct": 0.6506653992395437, "discountPct": 0.5285171102661597}, {"YearMonth": "2019-04", "ReferrerSource": "Outbrain", "orders": 2, "revenue": 50.399998, "avgAOV": 25.199999, "avgItems": 1.0, "newPct": 0.5, "freeShipPct": 0.5, "discountPct": 0.5}, {"YearMonth": "2019-04", "ReferrerSource": "Webgains", "orders": 659, "revenue": 19737.54983, "avgAOV": 29.95075846737481, "avgItems": 1.9256449165402125, "newPct": 0.17450682852807284, "freeShipPct": 0.7845220030349014, "discountPct": 0.5644916540212443}, {"YearMonth": "2019-05", "ReferrerSource": "Bing Ads", "orders": 87, "revenue": 2616.419984, "avgAOV": 30.07379291954023, "avgItems": 1.9885057471264367, "newPct": 0.11494252873563218, "freeShipPct": 0.7241379310344828, "discountPct": 0.3103448275862069}, {"YearMonth": "2019-05", "ReferrerSource": "Google Adwords", "orders": 1337, "revenue": 32551.059795999998, "avgAOV": 24.34634240538519, "avgItems": 1.593118922961855, "newPct": 0.37845923709798057, "freeShipPct": 0.5938668661181751, "discountPct": 0.27898279730740466}, {"YearMonth": "2019-05", "ReferrerSource": "Organic", "orders": 2332, "revenue": 69187.43957, "avgAOV": 29.668713366209264, "avgItems": 1.8486277873070327, "newPct": 0.15823327615780447, "freeShipPct": 0.660377358490566, "discountPct": 0.5471698113207547}, {"YearMonth": "2019-05", "ReferrerSource": "Outbrain", "orders": 2, "revenue": 82.849997, "avgAOV": 41.4249985, "avgItems": 1.5, "newPct": 0.5, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2019-05", "ReferrerSource": "Webgains", "orders": 632, "revenue": 18939.51989, "avgAOV": 29.967594762658226, "avgItems": 1.9272151898734178, "newPct": 0.18829113924050633, "freeShipPct": 0.7943037974683544, "discountPct": 0.6170886075949367}, {"YearMonth": "2019-06", "ReferrerSource": "Bing Ads", "orders": 122, "revenue": 3330.399975, "avgAOV": 27.298360450819672, "avgItems": 1.9672131147540983, "newPct": 0.040983606557377046, "freeShipPct": 0.6311475409836066, "discountPct": 0.21311475409836064}, {"YearMonth": "2019-06", "ReferrerSource": "Google Adwords", "orders": 1463, "revenue": 37475.259698, "avgAOV": 25.615351809979494, "avgItems": 1.7710184552289816, "newPct": 0.316473000683527, "freeShipPct": 0.5919343814080656, "discountPct": 0.12235133287764867}, {"YearMonth": "2019-06", "ReferrerSource": "Organic", "orders": 1752, "revenue": 58523.269531, "avgAOV": 33.40369265468036, "avgItems": 2.2802511415525113, "newPct": 0.1512557077625571, "freeShipPct": 0.6455479452054794, "discountPct": 0.228310502283105}, {"YearMonth": "2019-06", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 28.449999, "avgAOV": 28.449999, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2019-06", "ReferrerSource": "Webgains", "orders": 838, "revenue": 26016.649782, "avgAOV": 31.04612145823389, "avgItems": 2.032219570405728, "newPct": 0.1575178997613365, "freeShipPct": 0.815035799522673, "discountPct": 0.6921241050119332}, {"YearMonth": "2019-07", "ReferrerSource": "Bing Ads", "orders": 198, "revenue": 6049.579933, "avgAOV": 30.553434005050505, "avgItems": 2.8484848484848486, "newPct": 0.10101010101010101, "freeShipPct": 0.6818181818181818, "discountPct": 0.5404040404040404}, {"YearMonth": "2019-07", "ReferrerSource": "Google Adwords", "orders": 1565, "revenue": 45340.949617, "avgAOV": 28.971852790415333, "avgItems": 2.671565495207668, "newPct": 0.273482428115016, "freeShipPct": 0.6185303514376996, "discountPct": 0.4562300319488818}, {"YearMonth": "2019-07", "ReferrerSource": "Organic", "orders": 2851, "revenue": 102071.769051, "avgAOV": 35.802093669238864, "avgItems": 3.459487898982813, "newPct": 0.10908453174324799, "freeShipPct": 0.6653805682216766, "discountPct": 0.6997544721150474}, {"YearMonth": "2019-07", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 20.949999, "avgAOV": 20.949999, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2019-07", "ReferrerSource": "Webgains", "orders": 609, "revenue": 21180.079811, "avgAOV": 34.77845617569786, "avgItems": 3.29064039408867, "newPct": 0.13957307060755336, "freeShipPct": 0.8177339901477833, "discountPct": 0.7750410509031199}, {"YearMonth": "2019-08", "ReferrerSource": "Bing Ads", "orders": 51, "revenue": 1271.1899959999998, "avgAOV": 24.925294039215682, "avgItems": 1.5686274509803921, "newPct": 0.0784313725490196, "freeShipPct": 0.6862745098039216, "discountPct": 0.0784313725490196}, {"YearMonth": "2019-08", "ReferrerSource": "Google Adwords", "orders": 1167, "revenue": 29382.729783, "avgAOV": 25.178003241645243, "avgItems": 1.625535561268209, "newPct": 0.337617823479006, "freeShipPct": 0.596401028277635, "discountPct": 0.2099400171379606}, {"YearMonth": "2019-08", "ReferrerSource": "Organic", "orders": 1212, "revenue": 36685.319755, "avgAOV": 30.268415639438942, "avgItems": 1.8234323432343233, "newPct": 0.18564356435643564, "freeShipPct": 0.6295379537953796, "discountPct": 0.20132013201320131}, {"YearMonth": "2019-08", "ReferrerSource": "Webgains", "orders": 685, "revenue": 18911.539814, "avgAOV": 27.60808731970803, "avgItems": 1.8014598540145985, "newPct": 0.14744525547445256, "freeShipPct": 0.7868613138686131, "discountPct": 0.6773722627737226}, {"YearMonth": "2019-09", "ReferrerSource": "Bing Ads", "orders": 43, "revenue": 1128.949997, "avgAOV": 26.254651093023256, "avgItems": 1.697674418604651, "newPct": 0.09302325581395349, "freeShipPct": 0.5813953488372093, "discountPct": 0.5813953488372093}, {"YearMonth": "2019-09", "ReferrerSource": "Google Adwords", "orders": 1257, "revenue": 31100.670026, "avgAOV": 24.74198092760541, "avgItems": 1.668257756563246, "newPct": 0.3627684964200477, "freeShipPct": 0.5807478122513922, "discountPct": 0.3898170246618934}, {"YearMonth": "2019-09", "ReferrerSource": "Organic", "orders": 2352, "revenue": 71623.160225, "avgAOV": 30.452023905187076, "avgItems": 2.0, "newPct": 0.1130952380952381, "freeShipPct": 0.6628401360544217, "discountPct": 0.6602891156462585}, {"YearMonth": "2019-09", "ReferrerSource": "Webgains", "orders": 609, "revenue": 17651.250019, "avgAOV": 28.983990178981937, "avgItems": 1.9688013136288998, "newPct": 0.1625615763546798, "freeShipPct": 0.7766830870279147, "discountPct": 0.7536945812807881}, {"YearMonth": "2019-10", "ReferrerSource": "Bing Ads", "orders": 27, "revenue": 702.89999, "avgAOV": 26.033332962962962, "avgItems": 1.7777777777777777, "newPct": 0.18518518518518517, "freeShipPct": 0.7037037037037037, "discountPct": 0.18518518518518517}, {"YearMonth": "2019-10", "ReferrerSource": "Google Adwords", "orders": 1339, "revenue": 35386.699800999995, "avgAOV": 26.427707095593725, "avgItems": 2.0799103808812545, "newPct": 0.32262882748319643, "freeShipPct": 0.5899925317401046, "discountPct": 0.210604929051531}, {"YearMonth": "2019-10", "ReferrerSource": "Organic", "orders": 2267, "revenue": 76374.769395, "avgAOV": 33.689796821790914, "avgItems": 3.054697838553154, "newPct": 0.12483458314953683, "freeShipPct": 0.6528451698279665, "discountPct": 0.537273930304367}, {"YearMonth": "2019-10", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 20.949999, "avgAOV": 20.949999, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2019-10", "ReferrerSource": "Webgains", "orders": 612, "revenue": 19344.999893, "avgAOV": 31.609476949346405, "avgItems": 2.446078431372549, "newPct": 0.1503267973856209, "freeShipPct": 0.8218954248366013, "discountPct": 0.48856209150326796}, {"YearMonth": "2019-11", "ReferrerSource": "Bing Ads", "orders": 52, "revenue": 1672.979993, "avgAOV": 32.172692173076925, "avgItems": 2.0, "newPct": 0.019230769230769232, "freeShipPct": 0.6923076923076923, "discountPct": 0.46153846153846156}, {"YearMonth": "2019-11", "ReferrerSource": "Google Adwords", "orders": 1200, "revenue": 30656.669781, "avgAOV": 25.547224817500002, "avgItems": 1.6941666666666666, "newPct": 0.2791666666666667, "freeShipPct": 0.6, "discountPct": 0.44166666666666665}, {"YearMonth": "2019-11", "ReferrerSource": "Organic", "orders": 2138, "revenue": 64274.529449, "avgAOV": 30.062923035079514, "avgItems": 2.009822263797942, "newPct": 0.11085126286248831, "freeShipPct": 0.6585594013096352, "discountPct": 0.6468662301216089}, {"YearMonth": "2019-11", "ReferrerSource": "Webgains", "orders": 590, "revenue": 17983.389837, "avgAOV": 30.480321757627117, "avgItems": 2.0864406779661016, "newPct": 0.14745762711864407, "freeShipPct": 0.8067796610169492, "discountPct": 0.6779661016949152}, {"YearMonth": "2019-12", "ReferrerSource": "Bing Ads", "orders": 34, "revenue": 1164.1699919999999, "avgAOV": 34.24029388235294, "avgItems": 2.5, "newPct": 0.029411764705882353, "freeShipPct": 0.7941176470588235, "discountPct": 0.4117647058823529}, {"YearMonth": "2019-12", "ReferrerSource": "Google Adwords", "orders": 1030, "revenue": 25362.139762, "avgAOV": 24.623436662135923, "avgItems": 1.8019417475728154, "newPct": 0.3106796116504854, "freeShipPct": 0.7242718446601941, "discountPct": 0.34757281553398056}, {"YearMonth": "2019-12", "ReferrerSource": "Organic", "orders": 1901, "revenue": 61001.889466, "avgAOV": 32.08936847238296, "avgItems": 2.5449763282482905, "newPct": 0.11783271962125197, "freeShipPct": 0.7322461862177801, "discountPct": 0.6475539189900053}, {"YearMonth": "2019-12", "ReferrerSource": "Webgains", "orders": 567, "revenue": 16522.039879, "avgAOV": 29.139400139329805, "avgItems": 2.2081128747795415, "newPct": 0.12874779541446207, "freeShipPct": 0.8412698412698413, "discountPct": 0.6490299823633157}, {"YearMonth": "2020-01", "ReferrerSource": "Bing Ads", "orders": 26, "revenue": 1075.91998, "avgAOV": 41.38153769230769, "avgItems": 3.3461538461538463, "newPct": 0.11538461538461539, "freeShipPct": 0.5, "discountPct": 0.6923076923076923}, {"YearMonth": "2020-01", "ReferrerSource": "Google Adwords", "orders": 1511, "revenue": 41355.599718, "avgAOV": 27.36968876108537, "avgItems": 2.5248180013236268, "newPct": 0.2759761747187293, "freeShipPct": 0.6419589675711449, "discountPct": 0.6836532097948379}, {"YearMonth": "2020-01", "ReferrerSource": "Organic", "orders": 3444, "revenue": 107842.72910899999, "avgAOV": 31.31321983420441, "avgItems": 2.9939024390243905, "newPct": 0.11904761904761904, "freeShipPct": 0.6837979094076655, "discountPct": 0.8173635307781649}, {"YearMonth": "2020-01", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 23.52, "avgAOV": 23.52, "avgItems": 2.0, "newPct": 0.0, "freeShipPct": 1.0, "discountPct": 1.0}, {"YearMonth": "2020-01", "ReferrerSource": "Webgains", "orders": 731, "revenue": 22258.539801, "avgAOV": 30.44943885225718, "avgItems": 2.8522571819425444, "newPct": 0.1600547195622435, "freeShipPct": 0.8057455540355677, "discountPct": 0.8577291381668947}, {"YearMonth": "2020-02", "ReferrerSource": "Bing Ads", "orders": 63, "revenue": 1852.489979, "avgAOV": 29.404602841269842, "avgItems": 2.0476190476190474, "newPct": 0.07936507936507936, "freeShipPct": 0.5873015873015873, "discountPct": 0.12698412698412698}, {"YearMonth": "2020-02", "ReferrerSource": "Google Adwords", "orders": 918, "revenue": 21911.049838, "avgAOV": 23.868246010893245, "avgItems": 1.5838779956427016, "newPct": 0.369281045751634, "freeShipPct": 0.565359477124183, "discountPct": 0.0392156862745098}, {"YearMonth": "2020-02", "ReferrerSource": "Organic", "orders": 978, "revenue": 27549.959741, "avgAOV": 28.169692986707567, "avgItems": 1.7750511247443763, "newPct": 0.24130879345603273, "freeShipPct": 0.6226993865030674, "discountPct": 0.065439672801636}, {"YearMonth": "2020-02", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 32.949999, "avgAOV": 32.949999, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2020-02", "ReferrerSource": "Webgains", "orders": 560, "revenue": 15801.149823, "avgAOV": 28.216338969642855, "avgItems": 1.9892857142857143, "newPct": 0.21428571428571427, "freeShipPct": 0.7821428571428571, "discountPct": 0.6089285714285714}, {"YearMonth": "2020-03", "ReferrerSource": "Bing Ads", "orders": 227, "revenue": 7280.82996, "avgAOV": 32.07414079295154, "avgItems": 2.1894273127753303, "newPct": 0.1013215859030837, "freeShipPct": 0.5638766519823789, "discountPct": 0.05286343612334802}, {"YearMonth": "2020-03", "ReferrerSource": "Google Adwords", "orders": 1861, "revenue": 48505.959713, "avgAOV": 26.064459813541106, "avgItems": 1.9167114454594305, "newPct": 0.36861902203116603, "freeShipPct": 0.5368081676518001, "discountPct": 0.027404621171413217}, {"YearMonth": "2020-03", "ReferrerSource": "Organic", "orders": 2154, "revenue": 61097.639649, "avgAOV": 28.364735213091922, "avgItems": 2.0552460538532964, "newPct": 0.2743732590529248, "freeShipPct": 0.6081708449396471, "discountPct": 0.04178272980501393}, {"YearMonth": "2020-03", "ReferrerSource": "Outbrain", "orders": 2, "revenue": 65.699999, "avgAOV": 32.8499995, "avgItems": 3.0, "newPct": 0.5, "freeShipPct": 0.5, "discountPct": 0.0}, {"YearMonth": "2020-03", "ReferrerSource": "Webgains", "orders": 948, "revenue": 28314.51986, "avgAOV": 29.867636983122363, "avgItems": 2.119198312236287, "newPct": 0.21729957805907174, "freeShipPct": 0.7921940928270043, "discountPct": 0.4419831223628692}, {"YearMonth": "2020-04", "ReferrerSource": "Bing Ads", "orders": 250, "revenue": 7319.909967, "avgAOV": 29.279639867999997, "avgItems": 2.504, "newPct": 0.104, "freeShipPct": 0.58, "discountPct": 0.036}, {"YearMonth": "2020-04", "ReferrerSource": "Google Adwords", "orders": 3215, "revenue": 62781.399731, "avgAOV": 19.527651549300156, "avgItems": 1.8214618973561432, "newPct": 0.614307931570762, "freeShipPct": 0.4998444790046656, "discountPct": 0.026749611197511663}, {"YearMonth": "2020-04", "ReferrerSource": "Organic", "orders": 2287, "revenue": 56711.799687, "avgAOV": 24.797463789680805, "avgItems": 2.275470048097945, "newPct": 0.3786620026235243, "freeShipPct": 0.5465675557498907, "discountPct": 0.028858766943594228}, {"YearMonth": "2020-04", "ReferrerSource": "Outbrain", "orders": 5, "revenue": 95.149998, "avgAOV": 19.0299996, "avgItems": 1.4, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2020-04", "ReferrerSource": "Webgains", "orders": 1118, "revenue": 29200.799825, "avgAOV": 26.118783385509836, "avgItems": 2.288908765652952, "newPct": 0.36583184257602863, "freeShipPct": 0.7486583184257602, "discountPct": 0.3685152057245081}, {"YearMonth": "2020-05", "ReferrerSource": "Bing Ads", "orders": 220, "revenue": 6019.8499489999995, "avgAOV": 27.36295431363636, "avgItems": 2.3727272727272726, "newPct": 0.11818181818181818, "freeShipPct": 0.6, "discountPct": 0.08181818181818182}, {"YearMonth": "2020-05", "ReferrerSource": "Google Adwords", "orders": 2659, "revenue": 54084.039712, "avgAOV": 20.339992370063932, "avgItems": 1.9142534787514103, "newPct": 0.5558480631816473, "freeShipPct": 0.5163595336592705, "discountPct": 0.0473862354268522}, {"YearMonth": "2020-05", "ReferrerSource": "Organic", "orders": 2104, "revenue": 56185.219659, "avgAOV": 26.704001739068442, "avgItems": 2.3550380228136882, "newPct": 0.2761406844106464, "freeShipPct": 0.5746197718631179, "discountPct": 0.14781368821292776}, {"YearMonth": "2020-05", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 18.45, "avgAOV": 18.45, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2020-05", "ReferrerSource": "Webgains", "orders": 1252, "revenue": 29270.219841, "avgAOV": 23.37876984105431, "avgItems": 2.1940894568690097, "newPct": 0.4680511182108626, "freeShipPct": 0.7196485623003195, "discountPct": 0.39456869009584666}, {"YearMonth": "2020-06", "ReferrerSource": "Bing Ads", "orders": 198, "revenue": 6144.599955, "avgAOV": 31.033333106060603, "avgItems": 2.4242424242424243, "newPct": 0.07575757575757576, "freeShipPct": 0.5858585858585859, "discountPct": 0.3333333333333333}, {"YearMonth": "2020-06", "ReferrerSource": "Email Newsletter", "orders": 4, "revenue": 134.239998, "avgAOV": 33.5599995, "avgItems": 3.0, "newPct": 0.0, "freeShipPct": 0.75, "discountPct": 0.0}, {"YearMonth": "2020-06", "ReferrerSource": "Facebook", "orders": 1, "revenue": 16.99, "avgAOV": 16.99, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2020-06", "ReferrerSource": "Google Adwords", "orders": 2628, "revenue": 57645.469711, "avgAOV": 21.935110240106543, "avgItems": 1.8059360730593608, "newPct": 0.5201674277016742, "freeShipPct": 0.5273972602739726, "discountPct": 0.1297564687975647}, {"YearMonth": "2020-06", "ReferrerSource": "Organic", "orders": 2231, "revenue": 62544.279681, "avgAOV": 28.034190802779023, "avgItems": 2.3675481846705515, "newPct": 0.16315553563424473, "freeShipPct": 0.6427610936799641, "discountPct": 0.38682205289108024}, {"YearMonth": "2020-06", "ReferrerSource": "Webgains", "orders": 921, "revenue": 24900.739827999998, "avgAOV": 27.036633906623234, "avgItems": 2.199782844733985, "newPct": 0.3550488599348534, "freeShipPct": 0.752442996742671, "discountPct": 0.4538545059717698}, {"YearMonth": "2020-07", "ReferrerSource": "Bing Ads", "orders": 181, "revenue": 5055.609963, "avgAOV": 27.931546756906076, "avgItems": 1.867403314917127, "newPct": 0.12154696132596685, "freeShipPct": 0.6574585635359116, "discountPct": 0.2596685082872928}, {"YearMonth": "2020-07", "ReferrerSource": "Email Newsletter", "orders": 956, "revenue": 30275.689714, "avgAOV": 31.6691315, "avgItems": 2.205020920502092, "newPct": 0.015690376569037656, "freeShipPct": 0.6129707112970711, "discountPct": 0.7813807531380753}, {"YearMonth": "2020-07", "ReferrerSource": "Facebook", "orders": 17, "revenue": 441.56998999999996, "avgAOV": 25.974705294117644, "avgItems": 1.8235294117647058, "newPct": 0.4117647058823529, "freeShipPct": 0.29411764705882354, "discountPct": 0.11764705882352941}, {"YearMonth": "2020-07", "ReferrerSource": "Google Adwords", "orders": 2397, "revenue": 55548.409691, "avgAOV": 23.174138377555277, "avgItems": 1.7154776804338756, "newPct": 0.5110554860241969, "freeShipPct": 0.510221109720484, "discountPct": 0.1180642469753859}, {"YearMonth": "2020-07", "ReferrerSource": "Organic", "orders": 1401, "revenue": 39740.059776, "avgAOV": 28.365495914346898, "avgItems": 2.037830121341899, "newPct": 0.26266952177016417, "freeShipPct": 0.6438258386866524, "discountPct": 0.21341898643825838}, {"YearMonth": "2020-07", "ReferrerSource": "Webgains", "orders": 795, "revenue": 22374.099853, "avgAOV": 28.143521827672956, "avgItems": 2.0314465408805034, "newPct": 0.27169811320754716, "freeShipPct": 0.7660377358490567, "discountPct": 0.5610062893081761}, {"YearMonth": "2020-08", "ReferrerSource": "Bing Ads", "orders": 164, "revenue": 5156.459948, "avgAOV": 31.44182895121951, "avgItems": 1.975609756097561, "newPct": 0.07926829268292683, "freeShipPct": 0.676829268292683, "discountPct": 0.23170731707317074}, {"YearMonth": "2020-08", "ReferrerSource": "Email Newsletter", "orders": 1142, "revenue": 38365.919657, "avgAOV": 33.595376232049034, "avgItems": 2.1882661996497372, "newPct": 0.0148861646234676, "freeShipPct": 0.6199649737302977, "discountPct": 0.3309982486865149}, {"YearMonth": "2020-08", "ReferrerSource": "Facebook", "orders": 10, "revenue": 168.359999, "avgAOV": 16.835999899999997, "avgItems": 1.0, "newPct": 0.5, "freeShipPct": 0.7, "discountPct": 0.2}, {"YearMonth": "2020-08", "ReferrerSource": "Google Adwords", "orders": 2398, "revenue": 56730.819687999996, "avgAOV": 23.65755616680567, "avgItems": 1.7030859049207674, "newPct": 0.4837364470391993, "freeShipPct": 0.5233527939949958, "discountPct": 0.14970809007506256}, {"YearMonth": "2020-08", "ReferrerSource": "Organic", "orders": 1209, "revenue": 34647.769798, "avgAOV": 28.6582049611249, "avgItems": 1.9693961952026469, "newPct": 0.2588916459884202, "freeShipPct": 0.6319272125723738, "discountPct": 0.20512820512820512}, {"YearMonth": "2020-08", "ReferrerSource": "Webgains", "orders": 735, "revenue": 22124.799832, "avgAOV": 30.101768478911566, "avgItems": 2.0421768707482992, "newPct": 0.2761904761904762, "freeShipPct": 0.7755102040816326, "discountPct": 0.5251700680272109}, {"YearMonth": "2020-09", "ReferrerSource": "Bing Ads", "orders": 201, "revenue": 5938.109972, "avgAOV": 29.54283568159204, "avgItems": 2.0199004975124377, "newPct": 0.05970149253731343, "freeShipPct": 0.6318407960199005, "discountPct": 0.14925373134328357}, {"YearMonth": "2020-09", "ReferrerSource": "Email Newsletter", "orders": 352, "revenue": 12457.5099, "avgAOV": 35.390653125, "avgItems": 2.377840909090909, "newPct": 0.011363636363636364, "freeShipPct": 0.6051136363636364, "discountPct": 0.6619318181818182}, {"YearMonth": "2020-09", "ReferrerSource": "Facebook", "orders": 16, "revenue": 556.069993, "avgAOV": 34.7543745625, "avgItems": 2.4375, "newPct": 0.375, "freeShipPct": 0.6875, "discountPct": 0.25}, {"YearMonth": "2020-09", "ReferrerSource": "Google Adwords", "orders": 2467, "revenue": 56110.879691999995, "avgAOV": 22.74458033725172, "avgItems": 1.72111876773409, "newPct": 0.49979732468585325, "freeShipPct": 0.597081475476287, "discountPct": 0.11066072152411836}, {"YearMonth": "2020-09", "ReferrerSource": "Organic", "orders": 1247, "revenue": 36322.65983, "avgAOV": 29.12803514835605, "avgItems": 2.081796311146752, "newPct": 0.2830793905372895, "freeShipPct": 0.6607858861267041, "discountPct": 0.1475541299117883}, {"YearMonth": "2020-09", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 28.449999, "avgAOV": 28.449999, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2020-09", "ReferrerSource": "Webgains", "orders": 633, "revenue": 17479.329933, "avgAOV": 27.61347540758294, "avgItems": 2.056872037914692, "newPct": 0.30647709320695105, "freeShipPct": 0.8104265402843602, "discountPct": 0.5197472353870458}, {"YearMonth": "2020-10", "ReferrerSource": "Bing Ads", "orders": 244, "revenue": 7215.039948, "avgAOV": 29.569835852459015, "avgItems": 2.1065573770491803, "newPct": 0.04918032786885246, "freeShipPct": 0.6639344262295082, "discountPct": 0.26639344262295084}, {"YearMonth": "2020-10", "ReferrerSource": "Email Newsletter", "orders": 1225, "revenue": 35167.649744, "avgAOV": 28.708285505306126, "avgItems": 2.123265306122449, "newPct": 0.02040816326530612, "freeShipPct": 0.6457142857142857, "discountPct": 0.4816326530612245}, {"YearMonth": "2020-10", "ReferrerSource": "Facebook", "orders": 52, "revenue": 983.539996, "avgAOV": 18.91423069230769, "avgItems": 1.4807692307692308, "newPct": 0.5961538461538461, "freeShipPct": 0.5, "discountPct": 0.25}, {"YearMonth": "2020-10", "ReferrerSource": "Google Adwords", "orders": 3878, "revenue": 83410.869591, "avgAOV": 21.50873377797834, "avgItems": 1.6802475502836514, "newPct": 0.5438370293965962, "freeShipPct": 0.5324909747292419, "discountPct": 0.10263022176379577}, {"YearMonth": "2020-10", "ReferrerSource": "Organic", "orders": 1553, "revenue": 42843.169795, "avgAOV": 27.587359816484224, "avgItems": 2.006439150032196, "newPct": 0.32260141661300706, "freeShipPct": 0.6310367031551836, "discountPct": 0.17900837089504185}, {"YearMonth": "2020-10", "ReferrerSource": "Outbrain", "orders": 1, "revenue": 4.95, "avgAOV": 4.95, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2020-10", "ReferrerSource": "Webgains", "orders": 1004, "revenue": 26992.349866, "avgAOV": 26.884810623505977, "avgItems": 2.048804780876494, "newPct": 0.32669322709163345, "freeShipPct": 0.7689243027888446, "discountPct": 0.6444223107569721}, {"YearMonth": "2020-11", "ReferrerSource": "Bing Ads", "orders": 235, "revenue": 7240.849979, "avgAOV": 30.812127570212763, "avgItems": 2.1404255319148935, "newPct": 0.10638297872340426, "freeShipPct": 0.5872340425531914, "discountPct": 0.23404255319148937}, {"YearMonth": "2020-11", "ReferrerSource": "Email Newsletter", "orders": 553, "revenue": 16938.92996, "avgAOV": 30.63097641952984, "avgItems": 2.2531645569620253, "newPct": 0.03074141048824593, "freeShipPct": 0.5822784810126582, "discountPct": 0.5189873417721519}, {"YearMonth": "2020-11", "ReferrerSource": "Facebook", "orders": 42, "revenue": 949.049999, "avgAOV": 22.59642854761905, "avgItems": 1.7619047619047619, "newPct": 0.42857142857142855, "freeShipPct": 0.5476190476190477, "discountPct": 0.2857142857142857}, {"YearMonth": "2020-11", "ReferrerSource": "Google Adwords", "orders": 3989, "revenue": 83679.599665, "avgAOV": 20.977588284031086, "avgItems": 1.6883930809726748, "newPct": 0.5382301328653798, "freeShipPct": 0.5447480571571822, "discountPct": 0.15567811481574328}, {"YearMonth": "2020-11", "ReferrerSource": "Organic", "orders": 1599, "revenue": 43108.479803, "avgAOV": 26.959649657911196, "avgItems": 1.9812382739212007, "newPct": 0.3058161350844278, "freeShipPct": 0.5972482801751094, "discountPct": 0.19262038774233897}, {"YearMonth": "2020-11", "ReferrerSource": "Webgains", "orders": 983, "revenue": 27332.529833, "avgAOV": 27.805218548321466, "avgItems": 2.071210579857579, "newPct": 0.32451678535096645, "freeShipPct": 0.7466937945066124, "discountPct": 0.5635808748728383}, {"YearMonth": "2020-12", "ReferrerSource": "Bing Ads", "orders": 227, "revenue": 7185.8899519999995, "avgAOV": 31.655902872246696, "avgItems": 2.145374449339207, "newPct": 0.07929515418502203, "freeShipPct": 0.5726872246696035, "discountPct": 0.32599118942731276}, {"YearMonth": "2020-12", "ReferrerSource": "Email Newsletter", "orders": 1093, "revenue": 36824.379684, "avgAOV": 33.69110675571821, "avgItems": 2.30192131747484, "newPct": 0.0192131747483989, "freeShipPct": 0.6294602012808783, "discountPct": 0.7447392497712717}, {"YearMonth": "2020-12", "ReferrerSource": "Facebook", "orders": 48, "revenue": 1078.519998, "avgAOV": 22.469166625, "avgItems": 1.7708333333333333, "newPct": 0.4791666666666667, "freeShipPct": 0.5416666666666666, "discountPct": 0.3333333333333333}, {"YearMonth": "2020-12", "ReferrerSource": "Google Adwords", "orders": 3068, "revenue": 68817.92963299999, "avgAOV": 22.43087667307692, "avgItems": 1.7376140808344198, "newPct": 0.49674054758800523, "freeShipPct": 0.47979139504563234, "discountPct": 0.2046936114732725}, {"YearMonth": "2020-12", "ReferrerSource": "Organic", "orders": 1156, "revenue": 32092.209838, "avgAOV": 27.761427195501728, "avgItems": 2.0285467128027683, "newPct": 0.263840830449827, "freeShipPct": 0.5726643598615917, "discountPct": 0.2560553633217993}, {"YearMonth": "2020-12", "ReferrerSource": "Webgains", "orders": 771, "revenue": 21533.099842, "avgAOV": 27.9287935693904, "avgItems": 2.0311284046692606, "newPct": 0.26459143968871596, "freeShipPct": 0.7146562905317769, "discountPct": 0.6874189364461738}, {"YearMonth": "2021-01", "ReferrerSource": "Bing Ads", "orders": 277, "revenue": 8410.959953, "avgAOV": 30.364476364620938, "avgItems": 2.299638989169675, "newPct": 0.06859205776173286, "freeShipPct": 0.7184115523465704, "discountPct": 0.5126353790613718}, {"YearMonth": "2021-01", "ReferrerSource": "Email Newsletter", "orders": 1923, "revenue": 60104.399458, "avgAOV": 31.255537939677588, "avgItems": 2.2875715028601142, "newPct": 0.014040561622464899, "freeShipPct": 0.6703068122724909, "discountPct": 0.8289131565262611}, {"YearMonth": "2021-01", "ReferrerSource": "Facebook", "orders": 40, "revenue": 901.559999, "avgAOV": 22.538999975, "avgItems": 1.7, "newPct": 0.55, "freeShipPct": 0.475, "discountPct": 0.5}, {"YearMonth": "2021-01", "ReferrerSource": "Google Adwords", "orders": 4157, "revenue": 90637.879594, "avgAOV": 21.80367563002165, "avgItems": 1.819581428915083, "newPct": 0.536925667548713, "freeShipPct": 0.4919413038248737, "discountPct": 0.4197738753909069}, {"YearMonth": "2021-01", "ReferrerSource": "Organic", "orders": 1696, "revenue": 46120.009692, "avgAOV": 27.193401941037735, "avgItems": 2.0695754716981134, "newPct": 0.32075471698113206, "freeShipPct": 0.6238207547169812, "discountPct": 0.5023584905660378}, {"YearMonth": "2021-01", "ReferrerSource": "Webgains", "orders": 834, "revenue": 22935.619875, "avgAOV": 27.500743255395683, "avgItems": 2.171462829736211, "newPct": 0.31774580335731417, "freeShipPct": 0.7637889688249401, "discountPct": 0.7553956834532374}, {"YearMonth": "2021-02", "ReferrerSource": "Bing Ads", "orders": 154, "revenue": 4302.63999, "avgAOV": 27.939220714285714, "avgItems": 1.844155844155844, "newPct": 0.05194805194805195, "freeShipPct": 0.6753246753246753, "discountPct": 0.21428571428571427}, {"YearMonth": "2021-02", "ReferrerSource": "Email Newsletter", "orders": 442, "revenue": 13373.449917, "avgAOV": 30.25667402036199, "avgItems": 2.253393665158371, "newPct": 0.020361990950226245, "freeShipPct": 0.5950226244343891, "discountPct": 0.7104072398190046}, {"YearMonth": "2021-02", "ReferrerSource": "Facebook", "orders": 22, "revenue": 406.769995, "avgAOV": 18.48954522727273, "avgItems": 1.2272727272727273, "newPct": 0.36363636363636365, "freeShipPct": 0.4090909090909091, "discountPct": 0.09090909090909091}, {"YearMonth": "2021-02", "ReferrerSource": "Google Adwords", "orders": 2662, "revenue": 57549.87972, "avgAOV": 21.619038211870773, "avgItems": 1.7066115702479339, "newPct": 0.4954921111945905, "freeShipPct": 0.5157776108189331, "discountPct": 0.16453794139744554}, {"YearMonth": "2021-02", "ReferrerSource": "Organic", "orders": 1174, "revenue": 30088.859837, "avgAOV": 25.62935250170358, "avgItems": 1.8926746166950597, "newPct": 0.3219761499148211, "freeShipPct": 0.5621805792163543, "discountPct": 0.19250425894378195}, {"YearMonth": "2021-02", "ReferrerSource": "Webgains", "orders": 658, "revenue": 17907.439909, "avgAOV": 27.214954268996962, "avgItems": 2.059270516717325, "newPct": 0.3981762917933131, "freeShipPct": 0.7127659574468085, "discountPct": 0.5303951367781155}, {"YearMonth": "2021-03", "ReferrerSource": "Bing Ads", "orders": 214, "revenue": 6666.319972, "avgAOV": 31.15102790654206, "avgItems": 2.2476635514018692, "newPct": 0.09345794392523364, "freeShipPct": 0.5700934579439252, "discountPct": 0.35046728971962615}, {"YearMonth": "2021-03", "ReferrerSource": "Email Newsletter", "orders": 778, "revenue": 24814.849821, "avgAOV": 31.895693857326478, "avgItems": 2.374035989717224, "newPct": 0.012853470437017995, "freeShipPct": 0.6362467866323908, "discountPct": 0.8316195372750642}, {"YearMonth": "2021-03", "ReferrerSource": "Facebook", "orders": 28, "revenue": 543.659996, "avgAOV": 19.41642842857143, "avgItems": 1.5714285714285714, "newPct": 0.32142857142857145, "freeShipPct": 0.5714285714285714, "discountPct": 0.21428571428571427}, {"YearMonth": "2021-03", "ReferrerSource": "Google Adwords", "orders": 2728, "revenue": 62356.459609, "avgAOV": 22.8579397393695, "avgItems": 1.7463343108504399, "newPct": 0.4640762463343108, "freeShipPct": 0.49853372434017595, "discountPct": 0.2727272727272727}, {"YearMonth": "2021-03", "ReferrerSource": "Organic", "orders": 1489, "revenue": 41753.209742, "avgAOV": 28.041107952988582, "avgItems": 2.053055742108798, "newPct": 0.26930826057756885, "freeShipPct": 0.5728676964405641, "discountPct": 0.31296171927468097}, {"YearMonth": "2021-03", "ReferrerSource": "Webgains", "orders": 787, "revenue": 21838.259875, "avgAOV": 27.748741899618807, "avgItems": 2.099110546378653, "newPct": 0.3227445997458704, "freeShipPct": 0.7814485387547649, "discountPct": 0.6302414231257941}, {"YearMonth": "2021-04", "ReferrerSource": "Bing Ads", "orders": 234, "revenue": 6827.8299609999995, "avgAOV": 29.178760517094016, "avgItems": 2.02991452991453, "newPct": 0.05982905982905983, "freeShipPct": 0.5897435897435898, "discountPct": 0.20512820512820512}, {"YearMonth": "2021-04", "ReferrerSource": "Email Newsletter", "orders": 411, "revenue": 11780.619903, "avgAOV": 28.66330876642336, "avgItems": 2.1776155717761556, "newPct": 0.004866180048661801, "freeShipPct": 0.6934306569343066, "discountPct": 0.8102189781021898}, {"YearMonth": "2021-04", "ReferrerSource": "Facebook", "orders": 12, "revenue": 262.690001, "avgAOV": 21.890833416666666, "avgItems": 1.6666666666666667, "newPct": 0.3333333333333333, "freeShipPct": 0.5833333333333334, "discountPct": 0.25}, {"YearMonth": "2021-04", "ReferrerSource": "Google Adwords", "orders": 2229, "revenue": 52502.209636, "avgAOV": 23.55415416599372, "avgItems": 1.7554957379991027, "newPct": 0.3306415432929565, "freeShipPct": 0.5370121130551817, "discountPct": 0.1695827725437416}, {"YearMonth": "2021-04", "ReferrerSource": "Organic", "orders": 1335, "revenue": 37440.60968, "avgAOV": 28.045400509363297, "avgItems": 1.9797752808988764, "newPct": 0.21722846441947566, "freeShipPct": 0.5782771535580524, "discountPct": 0.1745318352059925}, {"YearMonth": "2021-04", "ReferrerSource": "Webgains", "orders": 721, "revenue": 21026.739825, "avgAOV": 29.163300728155342, "avgItems": 2.0665742024965326, "newPct": 0.22468793342579751, "freeShipPct": 0.7711511789181692, "discountPct": 0.4105409153952843}, {"YearMonth": "2021-05", "ReferrerSource": "Bing Ads", "orders": 173, "revenue": 5240.2899689999995, "avgAOV": 30.290693462427743, "avgItems": 2.0578034682080926, "newPct": 0.10982658959537572, "freeShipPct": 0.6647398843930635, "discountPct": 0.36416184971098264}, {"YearMonth": "2021-05", "ReferrerSource": "Email Newsletter", "orders": 1019, "revenue": 29709.779769, "avgAOV": 29.155819204121688, "avgItems": 2.1943081452404316, "newPct": 0.014720314033366046, "freeShipPct": 0.7016683022571149, "discountPct": 0.8783120706575074}, {"YearMonth": "2021-05", "ReferrerSource": "Facebook", "orders": 10, "revenue": 201.139996, "avgAOV": 20.1139996, "avgItems": 1.2, "newPct": 0.4, "freeShipPct": 0.5, "discountPct": 0.3}, {"YearMonth": "2021-05", "ReferrerSource": "Google Adwords", "orders": 2140, "revenue": 51539.409595, "avgAOV": 24.083836259345794, "avgItems": 1.8079439252336449, "newPct": 0.33598130841121493, "freeShipPct": 0.555607476635514, "discountPct": 0.26214953271028035}, {"YearMonth": "2021-05", "ReferrerSource": "Organic", "orders": 1143, "revenue": 30886.019777999998, "avgAOV": 27.021889569553803, "avgItems": 1.979877515310586, "newPct": 0.22572178477690288, "freeShipPct": 0.6377952755905512, "discountPct": 0.35083114610673666}, {"YearMonth": "2021-05", "ReferrerSource": "Webgains", "orders": 636, "revenue": 18405.799882, "avgAOV": 28.939936921383648, "avgItems": 2.0707547169811322, "newPct": 0.2672955974842767, "freeShipPct": 0.7971698113207547, "discountPct": 0.45125786163522014}, {"YearMonth": "2021-06", "ReferrerSource": "Bing Ads", "orders": 154, "revenue": 4494.7299809999995, "avgAOV": 29.186558318181817, "avgItems": 2.103896103896104, "newPct": 0.01948051948051948, "freeShipPct": 0.6233766233766234, "discountPct": 0.5}, {"YearMonth": "2021-06", "ReferrerSource": "Email Newsletter", "orders": 1004, "revenue": 26315.259691, "avgAOV": 26.2104180189243, "avgItems": 1.9352589641434264, "newPct": 0.018924302788844622, "freeShipPct": 0.6832669322709163, "discountPct": 0.8844621513944223}, {"YearMonth": "2021-06", "ReferrerSource": "Facebook", "orders": 21, "revenue": 505.270001, "avgAOV": 24.060476238095237, "avgItems": 1.9523809523809523, "newPct": 0.2857142857142857, "freeShipPct": 0.6666666666666666, "discountPct": 0.5238095238095238}, {"YearMonth": "2021-06", "ReferrerSource": "Google Adwords", "orders": 2475, "revenue": 61257.999474, "avgAOV": 24.750706858181818, "avgItems": 1.802020202020202, "newPct": 0.38505050505050503, "freeShipPct": 0.534949494949495, "discountPct": 0.3797979797979798}, {"YearMonth": "2021-06", "ReferrerSource": "Organic", "orders": 1316, "revenue": 36308.079738, "avgAOV": 27.58972624468085, "avgItems": 1.9817629179331306, "newPct": 0.22188449848024316, "freeShipPct": 0.6177811550151976, "discountPct": 0.3981762917933131}, {"YearMonth": "2021-06", "ReferrerSource": "Webgains", "orders": 656, "revenue": 17935.759822, "avgAOV": 27.341097289634146, "avgItems": 1.9725609756097562, "newPct": 0.21646341463414634, "freeShipPct": 0.7850609756097561, "discountPct": 0.5609756097560976}, {"YearMonth": "2021-07", "ReferrerSource": "Bing Ads", "orders": 174, "revenue": 5340.139948, "avgAOV": 30.69045947126437, "avgItems": 2.2528735632183907, "newPct": 0.04597701149425287, "freeShipPct": 0.603448275862069, "discountPct": 0.1896551724137931}, {"YearMonth": "2021-07", "ReferrerSource": "Email Newsletter", "orders": 1471, "revenue": 44302.699688, "avgAOV": 30.117402915023792, "avgItems": 2.186947654656696, "newPct": 0.009517335146159076, "freeShipPct": 0.6920462270564242, "discountPct": 0.1937457511896669}, {"YearMonth": "2021-07", "ReferrerSource": "Facebook", "orders": 20, "revenue": 568.889996, "avgAOV": 28.4444998, "avgItems": 2.2, "newPct": 0.55, "freeShipPct": 0.45, "discountPct": 0.2}, {"YearMonth": "2021-07", "ReferrerSource": "Google Adwords", "orders": 2970, "revenue": 68945.01953599999, "avgAOV": 23.213811291582488, "avgItems": 1.7838383838383838, "newPct": 0.5259259259259259, "freeShipPct": 0.5134680134680135, "discountPct": 0.10572390572390572}, {"YearMonth": "2021-07", "ReferrerSource": "Organic", "orders": 1130, "revenue": 32454.499784, "avgAOV": 28.720796269026547, "avgItems": 2.1398230088495573, "newPct": 0.2168141592920354, "freeShipPct": 0.6221238938053097, "discountPct": 0.1592920353982301}, {"YearMonth": "2021-07", "ReferrerSource": "Webgains", "orders": 772, "revenue": 22592.159845, "avgAOV": 29.26445575777202, "avgItems": 2.1580310880829017, "newPct": 0.2603626943005181, "freeShipPct": 0.7694300518134715, "discountPct": 0.41968911917098445}, {"YearMonth": "2021-08", "ReferrerSource": "Bing Ads", "orders": 177, "revenue": 5218.82996, "avgAOV": 29.484915028248587, "avgItems": 1.9378531073446328, "newPct": 0.07909604519774012, "freeShipPct": 0.655367231638418, "discountPct": 0.14689265536723164}, {"YearMonth": "2021-08", "ReferrerSource": "Email Newsletter", "orders": 271, "revenue": 8285.139957, "avgAOV": 30.572472166051657, "avgItems": 2.151291512915129, "newPct": 0.01845018450184502, "freeShipPct": 0.6420664206642066, "discountPct": 0.5461254612546126}, {"YearMonth": "2021-08", "ReferrerSource": "Facebook", "orders": 28, "revenue": 611.680002, "avgAOV": 21.845714357142857, "avgItems": 1.6428571428571428, "newPct": 0.5357142857142857, "freeShipPct": 0.4642857142857143, "discountPct": 0.03571428571428571}, {"YearMonth": "2021-08", "ReferrerSource": "Google Adwords", "orders": 2636, "revenue": 62498.469463999994, "avgAOV": 23.70958629135053, "avgItems": 1.7022003034901365, "newPct": 0.5125189681335357, "freeShipPct": 0.4798937784522003, "discountPct": 0.10811836115326252}, {"YearMonth": "2021-08", "ReferrerSource": "Organic", "orders": 979, "revenue": 28815.699791, "avgAOV": 29.433809796731357, "avgItems": 2.034729315628192, "newPct": 0.23493360572012256, "freeShipPct": 0.6046986721144024, "discountPct": 0.15219611848825332}, {"YearMonth": "2021-08", "ReferrerSource": "Webgains", "orders": 638, "revenue": 18897.779838, "avgAOV": 29.62034457366771, "avgItems": 2.134796238244514, "newPct": 0.3103448275862069, "freeShipPct": 0.731974921630094, "discountPct": 0.4231974921630094}, {"YearMonth": "2021-09", "ReferrerSource": "Bing Ads", "orders": 181, "revenue": 5248.259964, "avgAOV": 28.995911403314917, "avgItems": 1.9944751381215469, "newPct": 0.09944751381215469, "freeShipPct": 0.6464088397790055, "discountPct": 0.3425414364640884}, {"YearMonth": "2021-09", "ReferrerSource": "Email Newsletter", "orders": 849, "revenue": 25422.3798, "avgAOV": 29.943910247349823, "avgItems": 2.1648998822143697, "newPct": 0.011778563015312132, "freeShipPct": 0.7126030624263839, "discountPct": 0.7290930506478209}, {"YearMonth": "2021-09", "ReferrerSource": "Facebook", "orders": 31, "revenue": 859.759988, "avgAOV": 27.734193161290325, "avgItems": 1.935483870967742, "newPct": 0.45161290322580644, "freeShipPct": 0.5161290322580645, "discountPct": 0.3548387096774194}, {"YearMonth": "2021-09", "ReferrerSource": "Google Adwords", "orders": 2361, "revenue": 57352.429658, "avgAOV": 24.29158392969081, "avgItems": 1.7920372723422278, "newPct": 0.4434561626429479, "freeShipPct": 0.5256247352816603, "discountPct": 0.2892842016094875}, {"YearMonth": "2021-09", "ReferrerSource": "Organic", "orders": 1083, "revenue": 31965.549827, "avgAOV": 29.515743145891044, "avgItems": 2.1274238227146816, "newPct": 0.22160664819944598, "freeShipPct": 0.6020313942751616, "discountPct": 0.3397968605724838}, {"YearMonth": "2021-09", "ReferrerSource": "Webgains", "orders": 564, "revenue": 16717.969854, "avgAOV": 29.641790521276594, "avgItems": 2.148936170212766, "newPct": 0.24822695035460993, "freeShipPct": 0.7570921985815603, "discountPct": 0.6117021276595744}, {"YearMonth": "2021-10", "ReferrerSource": "Bing Ads", "orders": 194, "revenue": 5843.499967, "avgAOV": 30.121133850515463, "avgItems": 2.0670103092783507, "newPct": 0.05670103092783505, "freeShipPct": 0.634020618556701, "discountPct": 0.25773195876288657}, {"YearMonth": "2021-10", "ReferrerSource": "Email Newsletter", "orders": 917, "revenue": 22549.269809999998, "avgAOV": 24.59026151581243, "avgItems": 1.8484187568157033, "newPct": 0.018538713195201745, "freeShipPct": 0.7131952017448201, "discountPct": 0.6063249727371864}, {"YearMonth": "2021-10", "ReferrerSource": "Facebook", "orders": 40, "revenue": 845.519996, "avgAOV": 21.1379999, "avgItems": 1.525, "newPct": 0.525, "freeShipPct": 0.55, "discountPct": 0.25}, {"YearMonth": "2021-10", "ReferrerSource": "Google Adwords", "orders": 2328, "revenue": 54651.579596999996, "avgAOV": 23.47576443170103, "avgItems": 1.7422680412371134, "newPct": 0.4050687285223368, "freeShipPct": 0.5223367697594502, "discountPct": 0.24484536082474226}, {"YearMonth": "2021-10", "ReferrerSource": "Organic", "orders": 1114, "revenue": 29493.299770999998, "avgAOV": 26.475134444344704, "avgItems": 1.9497307001795332, "newPct": 0.20915619389587073, "freeShipPct": 0.6068222621184919, "discountPct": 0.30430879712746856}, {"YearMonth": "2021-10", "ReferrerSource": "Webgains", "orders": 715, "revenue": 18492.049844999998, "avgAOV": 25.863006776223774, "avgItems": 1.8699300699300698, "newPct": 0.22237762237762237, "freeShipPct": 0.786013986013986, "discountPct": 0.6363636363636364}, {"YearMonth": "2021-11", "ReferrerSource": "Bing Ads", "orders": 201, "revenue": 5926.129964, "avgAOV": 29.48323365174129, "avgItems": 2.189054726368159, "newPct": 0.07462686567164178, "freeShipPct": 0.6616915422885572, "discountPct": 0.03980099502487562}, {"YearMonth": "2021-11", "ReferrerSource": "Email Newsletter", "orders": 1417, "revenue": 44322.509675, "avgAOV": 31.279117625264643, "avgItems": 2.2738179251940718, "newPct": 0.013408609738884969, "freeShipPct": 0.7311220889202541, "discountPct": 0.030345800988002825}, {"YearMonth": "2021-11", "ReferrerSource": "Facebook", "orders": 21, "revenue": 548.429996, "avgAOV": 26.115714095238094, "avgItems": 1.8095238095238095, "newPct": 0.38095238095238093, "freeShipPct": 0.47619047619047616, "discountPct": 0.047619047619047616}, {"YearMonth": "2021-11", "ReferrerSource": "Google Adwords", "orders": 2685, "revenue": 63358.109531, "avgAOV": 23.597061277839853, "avgItems": 1.790316573556797, "newPct": 0.4461824953445065, "freeShipPct": 0.5162011173184358, "discountPct": 0.035009310986964616}, {"YearMonth": "2021-11", "ReferrerSource": "Organic", "orders": 1157, "revenue": 33971.269804999996, "avgAOV": 29.36151236387208, "avgItems": 2.1089023336214345, "newPct": 0.22039757994814174, "freeShipPct": 0.6300777873811582, "discountPct": 0.05185825410544512}, {"YearMonth": "2021-11", "ReferrerSource": "Webgains", "orders": 827, "revenue": 24854.159797, "avgAOV": 30.053397577992744, "avgItems": 2.2055622732769047, "newPct": 0.2370012091898428, "freeShipPct": 0.7847642079806529, "discountPct": 0.32889963724304716}, {"YearMonth": "2021-12", "ReferrerSource": "Bing Ads", "orders": 146, "revenue": 4242.6399679999995, "avgAOV": 29.059177863013694, "avgItems": 2.1575342465753424, "newPct": 0.0547945205479452, "freeShipPct": 0.6232876712328768, "discountPct": 0.13013698630136986}, {"YearMonth": "2021-12", "ReferrerSource": "Email Newsletter", "orders": 576, "revenue": 18516.729794, "avgAOV": 32.14710033680555, "avgItems": 2.2743055555555554, "newPct": 0.008680555555555556, "freeShipPct": 0.6909722222222222, "discountPct": 0.3888888888888889}, {"YearMonth": "2021-12", "ReferrerSource": "Facebook", "orders": 19, "revenue": 471.009996, "avgAOV": 24.789999789473683, "avgItems": 1.7894736842105263, "newPct": 0.47368421052631576, "freeShipPct": 0.47368421052631576, "discountPct": 0.0}, {"YearMonth": "2021-12", "ReferrerSource": "Google Adwords", "orders": 1794, "revenue": 42112.119686, "avgAOV": 23.473868275362317, "avgItems": 1.714046822742475, "newPct": 0.38294314381270905, "freeShipPct": 0.5027870680044593, "discountPct": 0.050724637681159424}, {"YearMonth": "2021-12", "ReferrerSource": "Organic", "orders": 1018, "revenue": 29267.259768, "avgAOV": 28.74976401571709, "avgItems": 2.050098231827112, "newPct": 0.1925343811394892, "freeShipPct": 0.5648330058939096, "discountPct": 0.07760314341846758}, {"YearMonth": "2021-12", "ReferrerSource": "Webgains", "orders": 563, "revenue": 16258.159851999999, "avgAOV": 28.877726202486677, "avgItems": 2.0373001776198936, "newPct": 0.2557726465364121, "freeShipPct": 0.7726465364120781, "discountPct": 0.38010657193605685}, {"YearMonth": "2022-01", "ReferrerSource": "Bing Ads", "orders": 158, "revenue": 4885.619978, "avgAOV": 30.921645430379744, "avgItems": 2.462025316455696, "newPct": 0.056962025316455694, "freeShipPct": 0.740506329113924, "discountPct": 0.2911392405063291}, {"YearMonth": "2022-01", "ReferrerSource": "Email Newsletter", "orders": 2271, "revenue": 63851.559427, "avgAOV": 28.11605434918538, "avgItems": 2.1118450022016733, "newPct": 0.012329370321444297, "freeShipPct": 0.7010127697049758, "discountPct": 0.30735358872743285}, {"YearMonth": "2022-01", "ReferrerSource": "Facebook", "orders": 24, "revenue": 462.609999, "avgAOV": 19.275416625000002, "avgItems": 1.75, "newPct": 0.5, "freeShipPct": 0.4583333333333333, "discountPct": 0.125}, {"YearMonth": "2022-01", "ReferrerSource": "Google Adwords", "orders": 3333, "revenue": 71242.209543, "avgAOV": 21.374800342934297, "avgItems": 1.7341734173417342, "newPct": 0.5034503450345035, "freeShipPct": 0.5334533453345335, "discountPct": 0.0933093309330933}, {"YearMonth": "2022-01", "ReferrerSource": "Organic", "orders": 1393, "revenue": 36155.069727, "avgAOV": 25.954823924623117, "avgItems": 2.020818377602297, "newPct": 0.2864321608040201, "freeShipPct": 0.6446518305814788, "discountPct": 0.12347451543431442}, {"YearMonth": "2022-01", "ReferrerSource": "Webgains", "orders": 1003, "revenue": 28653.489785, "avgAOV": 28.567786425722833, "avgItems": 2.1545363908275172, "newPct": 0.2951146560319043, "freeShipPct": 0.7876370887337986, "discountPct": 0.36889332003988035}, {"YearMonth": "2022-02", "ReferrerSource": "Bing Ads", "orders": 92, "revenue": 2680.969972, "avgAOV": 29.140977956521738, "avgItems": 2.010869565217391, "newPct": 0.043478260869565216, "freeShipPct": 0.6847826086956522, "discountPct": 0.07608695652173914}, {"YearMonth": "2022-02", "ReferrerSource": "Email Newsletter", "orders": 92, "revenue": 2510.219988, "avgAOV": 27.284999869565215, "avgItems": 1.9130434782608696, "newPct": 0.021739130434782608, "freeShipPct": 0.6739130434782609, "discountPct": 0.09782608695652174}, {"YearMonth": "2022-02", "ReferrerSource": "Facebook", "orders": 18, "revenue": 367.479995, "avgAOV": 20.415555277777777, "avgItems": 1.3333333333333333, "newPct": 0.4444444444444444, "freeShipPct": 0.2222222222222222, "discountPct": 0.05555555555555555}, {"YearMonth": "2022-02", "ReferrerSource": "Google Adwords", "orders": 2029, "revenue": 43091.299741999996, "avgAOV": 21.237703174963034, "avgItems": 1.582552981764416, "newPct": 0.45490389354361754, "freeShipPct": 0.5066535239034007, "discountPct": 0.05963528831936915}, {"YearMonth": "2022-02", "ReferrerSource": "Organic", "orders": 918, "revenue": 24208.809809, "avgAOV": 26.371252515250543, "avgItems": 1.9019607843137254, "newPct": 0.20806100217864923, "freeShipPct": 0.593681917211329, "discountPct": 0.07952069716775599}, {"YearMonth": "2022-02", "ReferrerSource": "Webgains", "orders": 550, "revenue": 15235.449894, "avgAOV": 27.700817989090908, "avgItems": 1.9854545454545454, "newPct": 0.3054545454545455, "freeShipPct": 0.7254545454545455, "discountPct": 0.3418181818181818}, {"YearMonth": "2022-03", "ReferrerSource": "Bing Ads", "orders": 119, "revenue": 3554.819965, "avgAOV": 29.87243668067227, "avgItems": 2.0588235294117645, "newPct": 0.08403361344537816, "freeShipPct": 0.6722689075630253, "discountPct": 0.31092436974789917}, {"YearMonth": "2022-03", "ReferrerSource": "Email Newsletter", "orders": 1084, "revenue": 34736.839689, "avgAOV": 32.04505506365314, "avgItems": 2.342250922509225, "newPct": 0.01107011070110701, "freeShipPct": 0.672509225092251, "discountPct": 0.7952029520295203}, {"YearMonth": "2022-03", "ReferrerSource": "Facebook", "orders": 14, "revenue": 298.969997, "avgAOV": 21.354999785714284, "avgItems": 1.6428571428571428, "newPct": 0.6428571428571429, "freeShipPct": 0.42857142857142855, "discountPct": 0.21428571428571427}, {"YearMonth": "2022-03", "ReferrerSource": "Google Adwords", "orders": 3046, "revenue": 66843.529476, "avgAOV": 21.94469122652659, "avgItems": 1.6217990807616547, "newPct": 0.5666447800393959, "freeShipPct": 0.443204202232436, "discountPct": 0.16513460275771505}, {"YearMonth": "2022-03", "ReferrerSource": "Organic", "orders": 1194, "revenue": 32363.699808999998, "avgAOV": 27.105276221943047, "avgItems": 2.0209380234505865, "newPct": 0.245393634840871, "freeShipPct": 0.5954773869346733, "discountPct": 0.2805695142378559}, {"YearMonth": "2022-03", "ReferrerSource": "Webgains", "orders": 728, "revenue": 20239.669793, "avgAOV": 27.801744221153847, "avgItems": 1.9972527472527473, "newPct": 0.35027472527472525, "freeShipPct": 0.6991758241758241, "discountPct": 0.5645604395604396}, {"YearMonth": "2022-04", "ReferrerSource": "Bing Ads", "orders": 121, "revenue": 3138.529986, "avgAOV": 25.938264347107438, "avgItems": 1.7520661157024793, "newPct": 0.03305785123966942, "freeShipPct": 0.6198347107438017, "discountPct": 0.2231404958677686}, {"YearMonth": "2022-04", "ReferrerSource": "Email Newsletter", "orders": 875, "revenue": 22378.369971, "avgAOV": 25.575279966857142, "avgItems": 1.8708571428571428, "newPct": 0.006857142857142857, "freeShipPct": 0.688, "discountPct": 0.8617142857142858}, {"YearMonth": "2022-04", "ReferrerSource": "Facebook", "orders": 16, "revenue": 342.22000099999997, "avgAOV": 21.388750062499998, "avgItems": 1.5, "newPct": 0.8125, "freeShipPct": 0.3125, "discountPct": 0.0625}, {"YearMonth": "2022-04", "ReferrerSource": "Google Adwords", "orders": 2560, "revenue": 54900.589705, "avgAOV": 21.445542853515626, "avgItems": 1.594921875, "newPct": 0.472265625, "freeShipPct": 0.508203125, "discountPct": 0.149609375}, {"YearMonth": "2022-04", "ReferrerSource": "Organic", "orders": 1099, "revenue": 29520.739895, "avgAOV": 26.86145577343039, "avgItems": 1.9226569608735213, "newPct": 0.21292083712465878, "freeShipPct": 0.6251137397634213, "discountPct": 0.23202911737943585}, {"YearMonth": "2022-04", "ReferrerSource": "Webgains", "orders": 701, "revenue": 19218.379879, "avgAOV": 27.415663165477888, "avgItems": 1.9971469329529243, "newPct": 0.2967189728958631, "freeShipPct": 0.703281027104137, "discountPct": 0.666191155492154}, {"YearMonth": "2022-05", "ReferrerSource": "Bing Ads", "orders": 138, "revenue": 4185.939993, "avgAOV": 30.3328985, "avgItems": 2.0434782608695654, "newPct": 0.057971014492753624, "freeShipPct": 0.7101449275362319, "discountPct": 0.2608695652173913}, {"YearMonth": "2022-05", "ReferrerSource": "Email Newsletter", "orders": 769, "revenue": 22153.519936, "avgAOV": 28.808218382314696, "avgItems": 2.0884265279583873, "newPct": 0.010403120936280884, "freeShipPct": 0.6644993498049415, "discountPct": 0.6879063719115734}, {"YearMonth": "2022-05", "ReferrerSource": "Facebook", "orders": 18, "revenue": 379.240001, "avgAOV": 21.068888944444446, "avgItems": 1.7777777777777777, "newPct": 0.6666666666666666, "freeShipPct": 0.2222222222222222, "discountPct": 0.05555555555555555}, {"YearMonth": "2022-05", "ReferrerSource": "Google Adwords", "orders": 1974, "revenue": 45002.99978, "avgAOV": 22.797872228976697, "avgItems": 1.635258358662614, "newPct": 0.4133738601823708, "freeShipPct": 0.4929078014184397, "discountPct": 0.13829787234042554}, {"YearMonth": "2022-05", "ReferrerSource": "Organic", "orders": 971, "revenue": 26444.159923, "avgAOV": 27.233944307929967, "avgItems": 1.9227600411946446, "newPct": 0.24407826982492276, "freeShipPct": 0.5952626158599382, "discountPct": 0.19155509783728114}, {"YearMonth": "2022-05", "ReferrerSource": "Webgains", "orders": 624, "revenue": 17436.369924, "avgAOV": 27.94290051923077, "avgItems": 2.0080128205128207, "newPct": 0.2692307692307692, "freeShipPct": 0.6955128205128205, "discountPct": 0.5817307692307693}, {"YearMonth": "2022-06", "ReferrerSource": "Bing Ads", "orders": 55, "revenue": 1601.7999969999998, "avgAOV": 29.123636309090905, "avgItems": 2.0, "newPct": 0.01818181818181818, "freeShipPct": 0.7090909090909091, "discountPct": 0.32727272727272727}, {"YearMonth": "2022-06", "ReferrerSource": "Email Newsletter", "orders": 777, "revenue": 23470.979902, "avgAOV": 30.20718134105534, "avgItems": 2.0746460746460746, "newPct": 0.007722007722007722, "freeShipPct": 0.6653796653796654, "discountPct": 0.731016731016731}, {"YearMonth": "2022-06", "ReferrerSource": "Facebook", "orders": 5, "revenue": 107.929998, "avgAOV": 21.5859996, "avgItems": 2.2, "newPct": 0.2, "freeShipPct": 0.2, "discountPct": 0.2}, {"YearMonth": "2022-06", "ReferrerSource": "Google Adwords", "orders": 1800, "revenue": 43515.129769, "avgAOV": 24.17507209388889, "avgItems": 1.711111111111111, "newPct": 0.3416666666666667, "freeShipPct": 0.41944444444444445, "discountPct": 0.3038888888888889}, {"YearMonth": "2022-06", "ReferrerSource": "Organic", "orders": 1031, "revenue": 28546.369884, "avgAOV": 27.688040624636276, "avgItems": 1.9553831231813774, "newPct": 0.2259941804073715, "freeShipPct": 0.5344325897187197, "discountPct": 0.3355965082444229}, {"YearMonth": "2022-06", "ReferrerSource": "Webgains", "orders": 494, "revenue": 14143.569931, "avgAOV": 28.630708362348177, "avgItems": 2.04251012145749, "newPct": 0.23279352226720648, "freeShipPct": 0.6680161943319838, "discountPct": 0.6376518218623481}, {"YearMonth": "2022-07", "ReferrerSource": "Bing Ads", "orders": 169, "revenue": 5197.729983, "avgAOV": 30.755798715976333, "avgItems": 2.1242603550295858, "newPct": 0.20118343195266272, "freeShipPct": 0.5266272189349113, "discountPct": 0.14792899408284024}, {"YearMonth": "2022-07", "ReferrerSource": "Email Newsletter", "orders": 1263, "revenue": 36441.449805, "avgAOV": 28.853087731591447, "avgItems": 2.065716547901821, "newPct": 0.007125890736342043, "freeShipPct": 0.5969912905779889, "discountPct": 0.3412509897070467}, {"YearMonth": "2022-07", "ReferrerSource": "Facebook", "orders": 16, "revenue": 498.709998, "avgAOV": 31.169374875, "avgItems": 2.0625, "newPct": 0.625, "freeShipPct": 0.625, "discountPct": 0.375}, {"YearMonth": "2022-07", "ReferrerSource": "Google Adwords", "orders": 2009, "revenue": 48830.429863, "avgAOV": 24.305838657541063, "avgItems": 1.796913887506222, "newPct": 0.37680438028870084, "freeShipPct": 0.3519163763066202, "discountPct": 0.19362867098058736}, {"YearMonth": "2022-07", "ReferrerSource": "Organic", "orders": 926, "revenue": 26307.129862, "avgAOV": 28.409427496760262, "avgItems": 2.1047516198704104, "newPct": 0.2159827213822894, "freeShipPct": 0.5151187904967602, "discountPct": 0.21922246220302377}, {"YearMonth": "2022-07", "ReferrerSource": "Webgains", "orders": 578, "revenue": 16653.229943, "avgAOV": 28.81181651038062, "avgItems": 2.088235294117647, "newPct": 0.22837370242214533, "freeShipPct": 0.6401384083044983, "discountPct": 0.5743944636678201}, {"YearMonth": "2022-08", "ReferrerSource": "Bing Ads", "orders": 234, "revenue": 6338.149999, "avgAOV": 27.086111106837606, "avgItems": 1.9273504273504274, "newPct": 0.3803418803418803, "freeShipPct": 0.3803418803418803, "discountPct": 0.1581196581196581}, {"YearMonth": "2022-08", "ReferrerSource": "Email Newsletter", "orders": 504, "revenue": 16078.469959, "avgAOV": 31.901726109126983, "avgItems": 2.1785714285714284, "newPct": 0.013888888888888888, "freeShipPct": 0.6031746031746031, "discountPct": 0.7202380952380952}, {"YearMonth": "2022-08", "ReferrerSource": "Facebook", "orders": 9, "revenue": 154.77000099999998, "avgAOV": 17.196666777777775, "avgItems": 1.4444444444444444, "newPct": 0.6666666666666666, "freeShipPct": 0.2222222222222222, "discountPct": 0.1111111111111111}, {"YearMonth": "2022-08", "ReferrerSource": "Google Adwords", "orders": 2023, "revenue": 50150.979769, "avgAOV": 24.790400281265445, "avgItems": 1.7414730598121602, "newPct": 0.3994068215521503, "freeShipPct": 0.34206623826000987, "discountPct": 0.13741967375185368}, {"YearMonth": "2022-08", "ReferrerSource": "Organic", "orders": 925, "revenue": 26291.099886, "avgAOV": 28.42281068756757, "avgItems": 1.931891891891892, "newPct": 0.2, "freeShipPct": 0.49945945945945946, "discountPct": 0.18702702702702703}, {"YearMonth": "2022-08", "ReferrerSource": "Webgains", "orders": 540, "revenue": 16556.409967, "avgAOV": 30.660018457407407, "avgItems": 2.064814814814815, "newPct": 0.23148148148148148, "freeShipPct": 0.6092592592592593, "discountPct": 0.5351851851851852}, {"YearMonth": "2022-09", "ReferrerSource": "Bing Ads", "orders": 230, "revenue": 6455.309998, "avgAOV": 28.06656520869565, "avgItems": 1.9478260869565218, "newPct": 0.34782608695652173, "freeShipPct": 0.49130434782608695, "discountPct": 0.30869565217391304}, {"YearMonth": "2022-09", "ReferrerSource": "Email Newsletter", "orders": 648, "revenue": 18773.259932, "avgAOV": 28.97108014197531, "avgItems": 2.0416666666666665, "newPct": 0.016975308641975308, "freeShipPct": 0.6512345679012346, "discountPct": 0.7854938271604939}, {"YearMonth": "2022-09", "ReferrerSource": "Facebook", "orders": 9, "revenue": 222.239995, "avgAOV": 24.693332777777776, "avgItems": 1.8888888888888888, "newPct": 0.6666666666666666, "freeShipPct": 0.5555555555555556, "discountPct": 0.1111111111111111}, {"YearMonth": "2022-09", "ReferrerSource": "Google Adwords", "orders": 1744, "revenue": 44292.939813, "avgAOV": 25.397327874426605, "avgItems": 1.8354357798165137, "newPct": 0.3646788990825688, "freeShipPct": 0.4197247706422018, "discountPct": 0.18061926605504589}, {"YearMonth": "2022-09", "ReferrerSource": "Organic", "orders": 876, "revenue": 24950.129926, "avgAOV": 28.481883477168953, "avgItems": 1.9509132420091324, "newPct": 0.1917808219178082, "freeShipPct": 0.5331050228310502, "discountPct": 0.2100456621004566}, {"YearMonth": "2022-09", "ReferrerSource": "Webgains", "orders": 538, "revenue": 15801.619945999999, "avgAOV": 29.37104079182156, "avgItems": 2.0185873605947955, "newPct": 0.241635687732342, "freeShipPct": 0.6598513011152416, "discountPct": 0.6449814126394052}, {"YearMonth": "2022-10", "ReferrerSource": "Bing Ads", "orders": 186, "revenue": 5133.049975, "avgAOV": 27.597042876344087, "avgItems": 1.9516129032258065, "newPct": 0.25806451612903225, "freeShipPct": 0.44086021505376344, "discountPct": 0.27956989247311825}, {"YearMonth": "2022-10", "ReferrerSource": "Email Newsletter", "orders": 451, "revenue": 12864.369924, "avgAOV": 28.524101827051, "avgItems": 2.0376940133037693, "newPct": 0.008869179600886918, "freeShipPct": 0.6873614190687362, "discountPct": 0.7871396895787139}, {"YearMonth": "2022-10", "ReferrerSource": "Facebook", "orders": 5, "revenue": 148.099999, "avgAOV": 29.6199998, "avgItems": 2.4, "newPct": 0.6, "freeShipPct": 0.4, "discountPct": 0.4}, {"YearMonth": "2022-10", "ReferrerSource": "Google Adwords", "orders": 1962, "revenue": 47261.199786, "avgAOV": 24.088277159021406, "avgItems": 1.761467889908257, "newPct": 0.35728848114169215, "freeShipPct": 0.4184505606523955, "discountPct": 0.20591233435270132}, {"YearMonth": "2022-10", "ReferrerSource": "Organic", "orders": 1053, "revenue": 27885.099882, "avgAOV": 26.481576336182336, "avgItems": 1.8774928774928774, "newPct": 0.24311490978157646, "freeShipPct": 0.49952516619183285, "discountPct": 0.2564102564102564}, {"YearMonth": "2022-10", "ReferrerSource": "Webgains", "orders": 505, "revenue": 14154.469942, "avgAOV": 28.02865335049505, "avgItems": 1.9742574257425742, "newPct": 0.20594059405940593, "freeShipPct": 0.6198019801980198, "discountPct": 0.5861386138613861}, {"YearMonth": "2022-11", "ReferrerSource": "Bing Ads", "orders": 206, "revenue": 5933.779973, "avgAOV": 28.804757150485436, "avgItems": 1.9951456310679612, "newPct": 0.2961165048543689, "freeShipPct": 0.558252427184466, "discountPct": 0.35436893203883496}, {"YearMonth": "2022-11", "ReferrerSource": "Email Newsletter", "orders": 816, "revenue": 26621.44994, "avgAOV": 32.624325906862744, "avgItems": 2.3394607843137254, "newPct": 0.006127450980392157, "freeShipPct": 0.7512254901960784, "discountPct": 0.8235294117647058}, {"YearMonth": "2022-11", "ReferrerSource": "Facebook", "orders": 5, "revenue": 194.93, "avgAOV": 38.986000000000004, "avgItems": 2.4, "newPct": 0.4, "freeShipPct": 0.2, "discountPct": 0.4}, {"YearMonth": "2022-11", "ReferrerSource": "Google Adwords", "orders": 2036, "revenue": 52388.059798, "avgAOV": 25.73087416404715, "avgItems": 1.8590373280943024, "newPct": 0.3472495088408644, "freeShipPct": 0.47102161100196466, "discountPct": 0.2293713163064833}, {"YearMonth": "2022-11", "ReferrerSource": "Organic", "orders": 1014, "revenue": 30314.799917, "avgAOV": 29.896252383629193, "avgItems": 2.106508875739645, "newPct": 0.22287968441814596, "freeShipPct": 0.52465483234714, "discountPct": 0.2702169625246548}, {"YearMonth": "2022-11", "ReferrerSource": "Webgains", "orders": 630, "revenue": 20621.279872, "avgAOV": 32.732190273015874, "avgItems": 2.261904761904762, "newPct": 0.1634920634920635, "freeShipPct": 0.653968253968254, "discountPct": 0.6015873015873016}, {"YearMonth": "2022-12", "ReferrerSource": "Bing Ads", "orders": 166, "revenue": 4625.429976, "avgAOV": 27.864036000000002, "avgItems": 2.0542168674698793, "newPct": 0.28313253012048195, "freeShipPct": 0.40963855421686746, "discountPct": 0.26506024096385544}, {"YearMonth": "2022-12", "ReferrerSource": "Email Newsletter", "orders": 680, "revenue": 22142.249707, "avgAOV": 32.562131922058825, "avgItems": 2.211764705882353, "newPct": 0.008823529411764706, "freeShipPct": 0.6558823529411765, "discountPct": 0.5676470588235294}, {"YearMonth": "2022-12", "ReferrerSource": "Facebook", "orders": 2, "revenue": 61.209998999999996, "avgAOV": 30.604999499999998, "avgItems": 1.5, "newPct": 0.5, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2022-12", "ReferrerSource": "Google Adwords", "orders": 1659, "revenue": 41413.239682, "avgAOV": 24.962772562989752, "avgItems": 1.8047016274864376, "newPct": 0.3568414707655214, "freeShipPct": 0.3176612417118746, "discountPct": 0.12417118746232671}, {"YearMonth": "2022-12", "ReferrerSource": "Organic", "orders": 741, "revenue": 20350.809854, "avgAOV": 27.463980909581647, "avgItems": 1.9784075573549258, "newPct": 0.20512820512820512, "freeShipPct": 0.4318488529014845, "discountPct": 0.1659919028340081}, {"YearMonth": "2022-12", "ReferrerSource": "Webgains", "orders": 455, "revenue": 14528.529852, "avgAOV": 31.93083483956044, "avgItems": 2.147252747252747, "newPct": 0.16703296703296702, "freeShipPct": 0.5912087912087912, "discountPct": 0.621978021978022}, {"YearMonth": "2023-01", "ReferrerSource": "Bing Ads", "orders": 263, "revenue": 7749.279937, "avgAOV": 29.46494272623574, "avgItems": 2.3041825095057034, "newPct": 0.2965779467680608, "freeShipPct": 0.4448669201520912, "discountPct": 0.22433460076045628}, {"YearMonth": "2023-01", "ReferrerSource": "Email Newsletter", "orders": 1600, "revenue": 49916.289641, "avgAOV": 31.197681025625002, "avgItems": 2.303125, "newPct": 0.014375, "freeShipPct": 0.534375, "discountPct": 0.14875}, {"YearMonth": "2023-01", "ReferrerSource": "Facebook", "orders": 3, "revenue": 59.549999, "avgAOV": 19.849999666666665, "avgItems": 1.6666666666666667, "newPct": 0.3333333333333333, "freeShipPct": 0.3333333333333333, "discountPct": 0.3333333333333333}, {"YearMonth": "2023-01", "ReferrerSource": "Google Adwords", "orders": 2606, "revenue": 65777.939615, "avgAOV": 25.240959176899462, "avgItems": 1.9297774366845741, "newPct": 0.4386032233307751, "freeShipPct": 0.30237912509593246, "discountPct": 0.035303146584804296}, {"YearMonth": "2023-01", "ReferrerSource": "Organic", "orders": 1161, "revenue": 35239.169768, "avgAOV": 30.35242874074074, "avgItems": 2.26442721791559, "newPct": 0.2695951765719208, "freeShipPct": 0.42204995693367786, "discountPct": 0.050818260120585705}, {"YearMonth": "2023-01", "ReferrerSource": "Webgains", "orders": 710, "revenue": 21729.209815000002, "avgAOV": 30.604520866197184, "avgItems": 2.2549295774647886, "newPct": 0.2211267605633803, "freeShipPct": 0.5507042253521127, "discountPct": 0.47183098591549294}, {"YearMonth": "2023-02", "ReferrerSource": "Bing Ads", "orders": 172, "revenue": 4861.919981, "avgAOV": 28.26697663372093, "avgItems": 2.0872093023255816, "newPct": 0.2558139534883721, "freeShipPct": 0.46511627906976744, "discountPct": 0.26744186046511625}, {"YearMonth": "2023-02", "ReferrerSource": "Email Newsletter", "orders": 545, "revenue": 14117.339942999999, "avgAOV": 25.903376042201835, "avgItems": 1.9064220183486238, "newPct": 0.001834862385321101, "freeShipPct": 0.48440366972477067, "discountPct": 0.8146788990825689}, {"YearMonth": "2023-02", "ReferrerSource": "Facebook", "orders": 1, "revenue": 21.849999, "avgAOV": 21.849999, "avgItems": 3.0, "newPct": 1.0, "freeShipPct": 1.0, "discountPct": 0.0}, {"YearMonth": "2023-02", "ReferrerSource": "Google Adwords", "orders": 1680, "revenue": 41617.139698, "avgAOV": 24.772106963095236, "avgItems": 1.7297619047619048, "newPct": 0.39940476190476193, "freeShipPct": 0.3517857142857143, "discountPct": 0.19285714285714287}, {"YearMonth": "2023-02", "ReferrerSource": "Organic", "orders": 756, "revenue": 20781.419916, "avgAOV": 27.48865068253968, "avgItems": 1.9153439153439153, "newPct": 0.2447089947089947, "freeShipPct": 0.4603174603174603, "discountPct": 0.20767195767195767}, {"YearMonth": "2023-02", "ReferrerSource": "Webgains", "orders": 446, "revenue": 13751.299931, "avgAOV": 30.83251105605381, "avgItems": 2.1704035874439462, "newPct": 0.257847533632287, "freeShipPct": 0.5919282511210763, "discountPct": 0.6547085201793722}, {"YearMonth": "2023-03", "ReferrerSource": "Bing Ads", "orders": 210, "revenue": 6335.909989, "avgAOV": 30.17099994761905, "avgItems": 2.0619047619047617, "newPct": 0.21428571428571427, "freeShipPct": 0.36666666666666664, "discountPct": 0.2571428571428571}, {"YearMonth": "2023-03", "ReferrerSource": "Email Newsletter", "orders": 694, "revenue": 22853.849933, "avgAOV": 32.9306195, "avgItems": 2.2463976945244957, "newPct": 0.010086455331412104, "freeShipPct": 0.37896253602305474, "discountPct": 0.8040345821325648}, {"YearMonth": "2023-03", "ReferrerSource": "Facebook", "orders": 6, "revenue": 398.96999900000003, "avgAOV": 66.49499983333334, "avgItems": 4.5, "newPct": 0.3333333333333333, "freeShipPct": 0.5, "discountPct": 0.3333333333333333}, {"YearMonth": "2023-03", "ReferrerSource": "Google Adwords", "orders": 2040, "revenue": 52603.009849, "avgAOV": 25.78578914166667, "avgItems": 1.7911764705882354, "newPct": 0.37941176470588234, "freeShipPct": 0.1931372549019608, "discountPct": 0.19705882352941176}, {"YearMonth": "2023-03", "ReferrerSource": "Organic", "orders": 892, "revenue": 26123.359907, "avgAOV": 29.286277922645738, "avgItems": 1.9439461883408071, "newPct": 0.218609865470852, "freeShipPct": 0.2836322869955157, "discountPct": 0.22757847533632286}, {"YearMonth": "2023-03", "ReferrerSource": "Webgains", "orders": 552, "revenue": 17941.009985, "avgAOV": 32.501829682971014, "avgItems": 2.0942028985507246, "newPct": 0.2318840579710145, "freeShipPct": 0.4148550724637681, "discountPct": 0.6521739130434783}, {"YearMonth": "2023-04", "ReferrerSource": "Bing Ads", "orders": 146, "revenue": 4306.009994, "avgAOV": 29.4932191369863, "avgItems": 1.9109589041095891, "newPct": 0.1780821917808219, "freeShipPct": 0.3219178082191781, "discountPct": 0.1917808219178082}, {"YearMonth": "2023-04", "ReferrerSource": "Email Newsletter", "orders": 110, "revenue": 3631.120003, "avgAOV": 33.01018184545455, "avgItems": 2.1818181818181817, "newPct": 0.00909090909090909, "freeShipPct": 0.37272727272727274, "discountPct": 0.5363636363636364}, {"YearMonth": "2023-04", "ReferrerSource": "Google Adwords", "orders": 1493, "revenue": 39328.879896, "avgAOV": 26.34218345344943, "avgItems": 1.7689216342933691, "newPct": 0.3174815807099799, "freeShipPct": 0.1955793703951775, "discountPct": 0.12056262558606833}, {"YearMonth": "2023-04", "ReferrerSource": "Organic", "orders": 732, "revenue": 22482.359936, "avgAOV": 30.713606469945358, "avgItems": 2.0054644808743167, "newPct": 0.21994535519125682, "freeShipPct": 0.2978142076502732, "discountPct": 0.1325136612021858}, {"YearMonth": "2023-04", "ReferrerSource": "Webgains", "orders": 442, "revenue": 14421.989907, "avgAOV": 32.62893644117647, "avgItems": 2.1425339366515836, "newPct": 0.17194570135746606, "freeShipPct": 0.39819004524886875, "discountPct": 0.5339366515837104}, {"YearMonth": "2023-05", "ReferrerSource": "Bing Ads", "orders": 166, "revenue": 5200.930006, "avgAOV": 31.33090365060241, "avgItems": 1.963855421686747, "newPct": 0.19879518072289157, "freeShipPct": 0.3253012048192771, "discountPct": 0.25301204819277107}, {"YearMonth": "2023-05", "ReferrerSource": "Email Newsletter", "orders": 372, "revenue": 14269.569935, "avgAOV": 38.35905896505376, "avgItems": 2.4919354838709675, "newPct": 0.01881720430107527, "freeShipPct": 0.48118279569892475, "discountPct": 0.793010752688172}, {"YearMonth": "2023-05", "ReferrerSource": "Google Adwords", "orders": 1636, "revenue": 45477.769811, "avgAOV": 27.798147806234716, "avgItems": 1.7995110024449879, "newPct": 0.293398533007335, "freeShipPct": 0.2169926650366748, "discountPct": 0.18643031784841077}, {"YearMonth": "2023-05", "ReferrerSource": "Organic", "orders": 1009, "revenue": 31726.919932, "avgAOV": 31.44392461050545, "avgItems": 2.0029732408325076, "newPct": 0.21010901883052527, "freeShipPct": 0.29732408325074333, "discountPct": 0.2259663032705649}, {"YearMonth": "2023-05", "ReferrerSource": "Webgains", "orders": 612, "revenue": 20871.169904, "avgAOV": 34.103218797385615, "avgItems": 2.1601307189542482, "newPct": 0.16176470588235295, "freeShipPct": 0.41830065359477125, "discountPct": 0.5686274509803921}, {"YearMonth": "2023-06", "ReferrerSource": "Bing Ads", "orders": 151, "revenue": 5567.759962, "avgAOV": 36.87258252980133, "avgItems": 2.3245033112582782, "newPct": 0.1390728476821192, "freeShipPct": 0.3443708609271523, "discountPct": 0.2980132450331126}, {"YearMonth": "2023-06", "ReferrerSource": "Email Newsletter", "orders": 557, "revenue": 19795.929853, "avgAOV": 35.54026903590665, "avgItems": 2.324955116696589, "newPct": 0.003590664272890485, "freeShipPct": 0.44703770197486536, "discountPct": 0.7594254937163375}, {"YearMonth": "2023-06", "ReferrerSource": "Facebook", "orders": 1, "revenue": 24.899999, "avgAOV": 24.899999, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2023-06", "ReferrerSource": "Google Adwords", "orders": 1445, "revenue": 40309.289792, "avgAOV": 27.895702278200694, "avgItems": 1.8373702422145328, "newPct": 0.2844290657439446, "freeShipPct": 0.24013840830449826, "discountPct": 0.22145328719723184}, {"YearMonth": "2023-06", "ReferrerSource": "Organic", "orders": 820, "revenue": 25379.16986, "avgAOV": 30.950207146341466, "avgItems": 1.9939024390243902, "newPct": 0.19390243902439025, "freeShipPct": 0.29878048780487804, "discountPct": 0.23658536585365852}, {"YearMonth": "2023-06", "ReferrerSource": "Webgains", "orders": 453, "revenue": 15956.429925, "avgAOV": 35.2239071192053, "avgItems": 2.2891832229580573, "newPct": 0.17439293598233996, "freeShipPct": 0.4304635761589404, "discountPct": 0.6070640176600441}, {"YearMonth": "2023-07", "ReferrerSource": "Bing Ads", "orders": 158, "revenue": 4783.979973, "avgAOV": 30.278354259493675, "avgItems": 2.050632911392405, "newPct": 0.15822784810126583, "freeShipPct": 0.23417721518987342, "discountPct": 0.1962025316455696}, {"YearMonth": "2023-07", "ReferrerSource": "Email Newsletter", "orders": 1002, "revenue": 34552.109802, "avgAOV": 34.48314351497006, "avgItems": 2.3233532934131738, "newPct": 0.007984031936127744, "freeShipPct": 0.39520958083832336, "discountPct": 0.1936127744510978}, {"YearMonth": "2023-07", "ReferrerSource": "Facebook", "orders": 2, "revenue": 328.420007, "avgAOV": 164.2100035, "avgItems": 9.5, "newPct": 0.0, "freeShipPct": 0.5, "discountPct": 0.0}, {"YearMonth": "2023-07", "ReferrerSource": "Google Adwords", "orders": 1695, "revenue": 43267.879747, "avgAOV": 25.526772712094395, "avgItems": 1.75929203539823, "newPct": 0.35575221238938054, "freeShipPct": 0.18348082595870208, "discountPct": 0.08141592920353982}, {"YearMonth": "2023-07", "ReferrerSource": "Organic", "orders": 878, "revenue": 28658.32978, "avgAOV": 32.640466719817766, "avgItems": 2.112756264236902, "newPct": 0.1856492027334852, "freeShipPct": 0.3132118451025057, "discountPct": 0.09908883826879271}, {"YearMonth": "2023-07", "ReferrerSource": "Webgains", "orders": 636, "revenue": 22530.24987, "avgAOV": 35.42492117924528, "avgItems": 2.311320754716981, "newPct": 0.17767295597484276, "freeShipPct": 0.39622641509433965, "discountPct": 0.449685534591195}, {"YearMonth": "2023-08", "ReferrerSource": "Bing Ads", "orders": 182, "revenue": 5608.869983, "avgAOV": 30.81796693956044, "avgItems": 1.9395604395604396, "newPct": 0.23626373626373626, "freeShipPct": 0.3021978021978022, "discountPct": 0.2087912087912088}, {"YearMonth": "2023-08", "ReferrerSource": "Email Newsletter", "orders": 295, "revenue": 9142.859956, "avgAOV": 30.992745613559322, "avgItems": 1.9491525423728813, "newPct": 0.02711864406779661, "freeShipPct": 0.3288135593220339, "discountPct": 0.23728813559322035}, {"YearMonth": "2023-08", "ReferrerSource": "Facebook", "orders": 5, "revenue": 91.76, "avgAOV": 18.352, "avgItems": 1.6, "newPct": 0.8, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2023-08", "ReferrerSource": "Google Adwords", "orders": 1507, "revenue": 41463.569868, "avgAOV": 27.513981332448573, "avgItems": 1.7650962176509621, "newPct": 0.30789648307896483, "freeShipPct": 0.19708029197080293, "discountPct": 0.0743198407431984}, {"YearMonth": "2023-08", "ReferrerSource": "Organic", "orders": 771, "revenue": 23407.509944, "avgAOV": 30.359935076523996, "avgItems": 1.9701686121919586, "newPct": 0.17769130998702984, "freeShipPct": 0.2905317769130999, "discountPct": 0.06355382619974059}, {"YearMonth": "2023-08", "ReferrerSource": "Webgains", "orders": 482, "revenue": 16041.619932, "avgAOV": 33.28136915352697, "avgItems": 2.0560165975103732, "newPct": 0.1825726141078838, "freeShipPct": 0.3506224066390041, "discountPct": 0.49377593360995853}, {"YearMonth": "2023-09", "ReferrerSource": "Bing Ads", "orders": 167, "revenue": 5182.479986, "avgAOV": 31.03281428742515, "avgItems": 2.0, "newPct": 0.25748502994011974, "freeShipPct": 0.30538922155688625, "discountPct": 0.25748502994011974}, {"YearMonth": "2023-09", "ReferrerSource": "Email Newsletter", "orders": 616, "revenue": 21610.299969, "avgAOV": 35.08165579383117, "avgItems": 2.1834415584415585, "newPct": 0.012987012987012988, "freeShipPct": 0.49188311688311687, "discountPct": 0.7061688311688312}, {"YearMonth": "2023-09", "ReferrerSource": "Facebook", "orders": 1, "revenue": 17.46, "avgAOV": 17.46, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2023-09", "ReferrerSource": "Google Adwords", "orders": 1395, "revenue": 39823.999887, "avgAOV": 28.547670169892474, "avgItems": 1.8136200716845878, "newPct": 0.25591397849462366, "freeShipPct": 0.26093189964157704, "discountPct": 0.17849462365591398}, {"YearMonth": "2023-09", "ReferrerSource": "Organic", "orders": 841, "revenue": 26561.969899, "avgAOV": 31.58379298335315, "avgItems": 2.014268727705113, "newPct": 0.1759809750297265, "freeShipPct": 0.3816884661117717, "discountPct": 0.187871581450654}, {"YearMonth": "2023-09", "ReferrerSource": "Webgains", "orders": 508, "revenue": 19127.249911, "avgAOV": 37.65206675393701, "avgItems": 2.324803149606299, "newPct": 0.13582677165354332, "freeShipPct": 0.5059055118110236, "discountPct": 0.6535433070866141}, {"YearMonth": "2023-10", "ReferrerSource": "Bing Ads", "orders": 168, "revenue": 5520.9499989999995, "avgAOV": 32.86279761309523, "avgItems": 2.125, "newPct": 0.20833333333333334, "freeShipPct": 0.3333333333333333, "discountPct": 0.25595238095238093}, {"YearMonth": "2023-10", "ReferrerSource": "Email Newsletter", "orders": 642, "revenue": 23243.069972999998, "avgAOV": 36.20415883644859, "avgItems": 2.3862928348909658, "newPct": 0.00778816199376947, "freeShipPct": 0.4937694704049844, "discountPct": 0.6993769470404985}, {"YearMonth": "2023-10", "ReferrerSource": "Facebook", "orders": 1, "revenue": 71.100002, "avgAOV": 71.100002, "avgItems": 4.0, "newPct": 0.0, "freeShipPct": 0.0, "discountPct": 1.0}, {"YearMonth": "2023-10", "ReferrerSource": "Google Adwords", "orders": 1523, "revenue": 43693.069828, "avgAOV": 28.688818009192385, "avgItems": 1.8745896257386736, "newPct": 0.28168089297439264, "freeShipPct": 0.2541037426132633, "discountPct": 0.15889691398555483}, {"YearMonth": "2023-10", "ReferrerSource": "Organic", "orders": 942, "revenue": 29029.579923999998, "avgAOV": 30.816963825902334, "avgItems": 1.921443736730361, "newPct": 0.1602972399150743, "freeShipPct": 0.42144373673036095, "discountPct": 0.16878980891719744}, {"YearMonth": "2023-10", "ReferrerSource": "Webgains", "orders": 459, "revenue": 16377.059917, "avgAOV": 35.679869100217864, "avgItems": 2.2200435729847494, "newPct": 0.14161220043572983, "freeShipPct": 0.5098039215686274, "discountPct": 0.6318082788671024}, {"YearMonth": "2023-11", "ReferrerSource": "Bing Ads", "orders": 157, "revenue": 5746.250021, "avgAOV": 36.60031860509554, "avgItems": 2.267515923566879, "newPct": 0.19745222929936307, "freeShipPct": 0.4012738853503185, "discountPct": 0.35668789808917195}, {"YearMonth": "2023-11", "ReferrerSource": "Email Newsletter", "orders": 527, "revenue": 19080.049937, "avgAOV": 36.20502834345351, "avgItems": 2.333965844402277, "newPct": 0.0056925996204933585, "freeShipPct": 0.5180265654648957, "discountPct": 0.7666034155597723}, {"YearMonth": "2023-11", "ReferrerSource": "Facebook", "orders": 2, "revenue": 57.87, "avgAOV": 28.935, "avgItems": 1.5, "newPct": 0.0, "freeShipPct": 0.5, "discountPct": 0.5}, {"YearMonth": "2023-11", "ReferrerSource": "Google Adwords", "orders": 1012, "revenue": 33085.559884, "avgAOV": 32.693240992094864, "avgItems": 2.0286561264822134, "newPct": 0.1422924901185771, "freeShipPct": 0.30138339920948615, "discountPct": 0.24209486166007904}, {"YearMonth": "2023-11", "ReferrerSource": "Organic", "orders": 1109, "revenue": 34674.320244, "avgAOV": 31.266294178539226, "avgItems": 1.9350766456266908, "newPct": 0.1659152389540126, "freeShipPct": 0.3886384129846709, "discountPct": 0.2236248872858431}, {"YearMonth": "2023-11", "ReferrerSource": "Webgains", "orders": 402, "revenue": 14480.45998, "avgAOV": 36.02104472636816, "avgItems": 2.3134328358208953, "newPct": 0.14676616915422885, "freeShipPct": 0.4552238805970149, "discountPct": 0.5845771144278606}, {"YearMonth": "2023-12", "ReferrerSource": "Bing Ads", "orders": 113, "revenue": 3553.989984, "avgAOV": 31.451238796460174, "avgItems": 1.991150442477876, "newPct": 0.1592920353982301, "freeShipPct": 0.08849557522123894, "discountPct": 0.2743362831858407}, {"YearMonth": "2023-12", "ReferrerSource": "Email Newsletter", "orders": 455, "revenue": 16957.370018, "avgAOV": 37.2689450945055, "avgItems": 2.4197802197802196, "newPct": 0.008791208791208791, "freeShipPct": 0.16703296703296702, "discountPct": 0.5428571428571428}, {"YearMonth": "2023-12", "ReferrerSource": "Facebook", "orders": 1, "revenue": 16.45, "avgAOV": 16.45, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2023-12", "ReferrerSource": "Google Adwords", "orders": 974, "revenue": 31237.039901, "avgAOV": 32.07088285523614, "avgItems": 2.064681724845996, "newPct": 0.15195071868583163, "freeShipPct": 0.11704312114989733, "discountPct": 0.22073921971252566}, {"YearMonth": "2023-12", "ReferrerSource": "Organic", "orders": 1109, "revenue": 33563.449842, "avgAOV": 30.2646076122633, "avgItems": 1.830477908025248, "newPct": 0.13706041478809738, "freeShipPct": 0.35437330928764654, "discountPct": 0.16321009918845808}, {"YearMonth": "2023-12", "ReferrerSource": "Webgains", "orders": 405, "revenue": 15292.880339, "avgAOV": 37.76019836790123, "avgItems": 2.387654320987654, "newPct": 0.08148148148148149, "freeShipPct": 0.19506172839506172, "discountPct": 0.5555555555555556}, {"YearMonth": "2024-01", "ReferrerSource": "Bing Ads", "orders": 207, "revenue": 6812.519989, "avgAOV": 32.910724584541065, "avgItems": 2.36231884057971, "newPct": 0.14492753623188406, "freeShipPct": 0.10144927536231885, "discountPct": 0.1932367149758454}, {"YearMonth": "2024-01", "ReferrerSource": "Email Newsletter", "orders": 1429, "revenue": 50684.156248, "avgAOV": 35.46826889293212, "avgItems": 2.333100069979006, "newPct": 0.012596221133659902, "freeShipPct": 0.172148355493352, "discountPct": 0.21553533939818054}, {"YearMonth": "2024-01", "ReferrerSource": "Facebook", "orders": 3, "revenue": 121.509999, "avgAOV": 40.503333, "avgItems": 2.0, "newPct": 0.6666666666666666, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2024-01", "ReferrerSource": "Google Adwords", "orders": 1213, "revenue": 38322.999783, "avgAOV": 31.593569483099753, "avgItems": 2.1088211046990932, "newPct": 0.17642209398186315, "freeShipPct": 0.12201154163231658, "discountPct": 0.07502061005770816}, {"YearMonth": "2024-01", "ReferrerSource": "Organic", "orders": 1354, "revenue": 41269.639764, "avgAOV": 30.479793031019202, "avgItems": 2.0598227474150663, "newPct": 0.1935007385524372, "freeShipPct": 0.275480059084195, "discountPct": 0.06499261447562776}, {"YearMonth": "2024-01", "ReferrerSource": "Webgains", "orders": 597, "revenue": 22810.879889, "avgAOV": 38.20917904355109, "avgItems": 2.490787269681742, "newPct": 0.1574539363484087, "freeShipPct": 0.22110552763819097, "discountPct": 0.4221105527638191}, {"YearMonth": "2024-02", "ReferrerSource": "Bing Ads", "orders": 151, "revenue": 5136.770001, "avgAOV": 34.018344377483444, "avgItems": 1.9801324503311257, "newPct": 0.1986754966887417, "freeShipPct": 0.10596026490066225, "discountPct": 0.17218543046357615}, {"YearMonth": "2024-02", "ReferrerSource": "Email Newsletter", "orders": 168, "revenue": 5570.8799819999995, "avgAOV": 33.15999989285714, "avgItems": 2.113095238095238, "newPct": 0.023809523809523808, "freeShipPct": 0.07738095238095238, "discountPct": 0.5357142857142857}, {"YearMonth": "2024-02", "ReferrerSource": "Google Adwords", "orders": 909, "revenue": 28341.86994, "avgAOV": 31.17917485148515, "avgItems": 1.9515951595159515, "newPct": 0.18371837183718373, "freeShipPct": 0.09020902090209021, "discountPct": 0.1353135313531353}, {"YearMonth": "2024-02", "ReferrerSource": "Organic", "orders": 1063, "revenue": 30536.629818, "avgAOV": 28.726838963311383, "avgItems": 1.6566321730950142, "newPct": 0.1947318908748824, "freeShipPct": 0.3471307619943556, "discountPct": 0.06961429915333961}, {"YearMonth": "2024-02", "ReferrerSource": "Webgains", "orders": 318, "revenue": 10989.399981999999, "avgAOV": 34.55786157861635, "avgItems": 2.0251572327044025, "newPct": 0.13522012578616352, "freeShipPct": 0.12264150943396226, "discountPct": 0.5754716981132075}, {"YearMonth": "2024-03", "ReferrerSource": "Bing Ads", "orders": 140, "revenue": 5337.189977, "avgAOV": 38.12278555, "avgItems": 2.4571428571428573, "newPct": 0.17142857142857143, "freeShipPct": 0.15714285714285714, "discountPct": 0.2857142857142857}, {"YearMonth": "2024-03", "ReferrerSource": "Email Newsletter", "orders": 348, "revenue": 13854.040031, "avgAOV": 39.810459859195404, "avgItems": 2.42816091954023, "newPct": 0.0028735632183908046, "freeShipPct": 0.14942528735632185, "discountPct": 0.7528735632183908}, {"YearMonth": "2024-03", "ReferrerSource": "Facebook", "orders": 2, "revenue": 76.699998, "avgAOV": 38.349999, "avgItems": 2.0, "newPct": 0.5, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2024-03", "ReferrerSource": "Google Adwords", "orders": 1190, "revenue": 35595.179887, "avgAOV": 29.91191587142857, "avgItems": 1.846218487394958, "newPct": 0.2747899159663866, "freeShipPct": 0.07058823529411765, "discountPct": 0.12857142857142856}, {"YearMonth": "2024-03", "ReferrerSource": "Organic", "orders": 1138, "revenue": 33811.749826, "avgAOV": 29.71155520738137, "avgItems": 1.7469244288224957, "newPct": 0.2047451669595782, "freeShipPct": 0.3365553602811951, "discountPct": 0.0984182776801406}, {"YearMonth": "2024-03", "ReferrerSource": "Webgains", "orders": 444, "revenue": 17367.700031, "avgAOV": 39.116441511261264, "avgItems": 2.3445945945945947, "newPct": 0.16441441441441443, "freeShipPct": 0.1981981981981982, "discountPct": 0.6171171171171171}, {"YearMonth": "2024-04", "ReferrerSource": "Bing Ads", "orders": 141, "revenue": 4778.539997, "avgAOV": 33.89035458865248, "avgItems": 1.9929078014184398, "newPct": 0.11347517730496454, "freeShipPct": 0.1773049645390071, "discountPct": 0.3049645390070922}, {"YearMonth": "2024-04", "ReferrerSource": "Email Newsletter", "orders": 380, "revenue": 14676.72003, "avgAOV": 38.622947447368425, "avgItems": 2.4078947368421053, "newPct": 0.007894736842105263, "freeShipPct": 0.16052631578947368, "discountPct": 0.7578947368421053}, {"YearMonth": "2024-04", "ReferrerSource": "Google Adwords", "orders": 1339, "revenue": 38683.480321, "avgAOV": 28.88982846975355, "avgItems": 1.7908887229275579, "newPct": 0.3181478715459298, "freeShipPct": 0.07318894697535475, "discountPct": 0.17998506348020912}, {"YearMonth": "2024-04", "ReferrerSource": "Organic", "orders": 1107, "revenue": 34241.639819, "avgAOV": 30.931923955736227, "avgItems": 1.8283649503161699, "newPct": 0.15266485998193316, "freeShipPct": 0.3604336043360434, "discountPct": 0.14182475158084915}, {"YearMonth": "2024-04", "ReferrerSource": "Webgains", "orders": 395, "revenue": 15794.830002, "avgAOV": 39.986911397468354, "avgItems": 2.3620253164556964, "newPct": 0.1468354430379747, "freeShipPct": 0.23544303797468355, "discountPct": 0.6227848101265823}, {"YearMonth": "2024-05", "ReferrerSource": "Bing Ads", "orders": 141, "revenue": 4708.839988, "avgAOV": 33.39602828368794, "avgItems": 1.9787234042553192, "newPct": 0.1773049645390071, "freeShipPct": 0.0851063829787234, "discountPct": 0.19858156028368795}, {"YearMonth": "2024-05", "ReferrerSource": "Email Newsletter", "orders": 130, "revenue": 5293.958007, "avgAOV": 40.7227539, "avgItems": 2.5384615384615383, "newPct": 0.007692307692307693, "freeShipPct": 0.16923076923076924, "discountPct": 0.6153846153846154}, {"YearMonth": "2024-05", "ReferrerSource": "Google Adwords", "orders": 1309, "revenue": 38355.836307, "avgAOV": 29.301632014514894, "avgItems": 1.7494270435446906, "newPct": 0.3300229182582124, "freeShipPct": 0.07944996180290298, "discountPct": 0.0962566844919786}, {"YearMonth": "2024-05", "ReferrerSource": "Organic", "orders": 1119, "revenue": 33732.557403, "avgAOV": 30.14527024396783, "avgItems": 1.7301161751563896, "newPct": 0.11528150134048257, "freeShipPct": 0.42091152815013405, "discountPct": 0.07327971403038427}, {"YearMonth": "2024-05", "ReferrerSource": "Webgains", "orders": 346, "revenue": 12608.239995, "avgAOV": 36.439999985549136, "avgItems": 2.147398843930636, "newPct": 0.16184971098265896, "freeShipPct": 0.15895953757225434, "discountPct": 0.5924855491329479}, {"YearMonth": "2024-06", "ReferrerSource": "Bing Ads", "orders": 151, "revenue": 5024.160011, "avgAOV": 33.27258285430464, "avgItems": 2.0463576158940397, "newPct": 0.16556291390728478, "freeShipPct": 0.1456953642384106, "discountPct": 0.17880794701986755}, {"YearMonth": "2024-06", "ReferrerSource": "Email Newsletter", "orders": 27, "revenue": 961.139995, "avgAOV": 35.59777759259259, "avgItems": 2.2222222222222223, "newPct": 0.0, "freeShipPct": 0.14814814814814814, "discountPct": 0.2962962962962963}, {"YearMonth": "2024-06", "ReferrerSource": "Facebook", "orders": 1, "revenue": 26.899999, "avgAOV": 26.899999, "avgItems": 1.0, "newPct": 0.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2024-06", "ReferrerSource": "Google Adwords", "orders": 1318, "revenue": 38700.155856, "avgAOV": 29.362788965098634, "avgItems": 1.817905918057663, "newPct": 0.3095599393019727, "freeShipPct": 0.09104704097116843, "discountPct": 0.06904400606980274}, {"YearMonth": "2024-06", "ReferrerSource": "Organic", "orders": 1023, "revenue": 32531.079838, "avgAOV": 31.799687036168134, "avgItems": 1.8269794721407624, "newPct": 0.10361681329423265, "freeShipPct": 0.43206256109481916, "discountPct": 0.06060606060606061}, {"YearMonth": "2024-06", "ReferrerSource": "Webgains", "orders": 380, "revenue": 14732.969976, "avgAOV": 38.77097362105263, "avgItems": 2.2394736842105263, "newPct": 0.1368421052631579, "freeShipPct": 0.2, "discountPct": 0.5473684210526316}, {"YearMonth": "2024-07", "ReferrerSource": "Bing Ads", "orders": 156, "revenue": 6021.439932, "avgAOV": 38.598973923076926, "avgItems": 2.448717948717949, "newPct": 0.11538461538461539, "freeShipPct": 0.17307692307692307, "discountPct": 0.23717948717948717}, {"YearMonth": "2024-07", "ReferrerSource": "Email Newsletter", "orders": 871, "revenue": 34219.929722, "avgAOV": 39.28809382548795, "avgItems": 2.4833524684270953, "newPct": 0.006888633754305396, "freeShipPct": 0.21125143513203215, "discountPct": 0.0677382319173364}, {"YearMonth": "2024-07", "ReferrerSource": "Facebook", "orders": 3, "revenue": 54.629999, "avgAOV": 18.209999666666665, "avgItems": 1.0, "newPct": 0.3333333333333333, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2024-07", "ReferrerSource": "Google Adwords", "orders": 1387, "revenue": 38944.225054, "avgAOV": 28.078028157173758, "avgItems": 1.8305695746214852, "newPct": 0.3431867339581831, "freeShipPct": 0.08651766402307137, "discountPct": 0.02595529920692141}, {"YearMonth": "2024-07", "ReferrerSource": "Organic", "orders": 1232, "revenue": 37225.635156, "avgAOV": 30.2156129512987, "avgItems": 1.9318181818181819, "newPct": 0.14204545454545456, "freeShipPct": 0.44237012987012986, "discountPct": 0.03814935064935065}, {"YearMonth": "2024-07", "ReferrerSource": "Webgains", "orders": 482, "revenue": 19371.647703, "avgAOV": 40.1901404626556, "avgItems": 2.5020746887966805, "newPct": 0.12240663900414937, "freeShipPct": 0.24896265560165975, "discountPct": 0.4045643153526971}, {"YearMonth": "2024-08", "ReferrerSource": "Bing Ads", "orders": 125, "revenue": 4300.600004, "avgAOV": 34.404800032, "avgItems": 2.248, "newPct": 0.088, "freeShipPct": 0.136, "discountPct": 0.224}, {"YearMonth": "2024-08", "ReferrerSource": "Email Newsletter", "orders": 236, "revenue": 9083.450045, "avgAOV": 38.489195105932204, "avgItems": 2.3262711864406778, "newPct": 0.0, "freeShipPct": 0.17796610169491525, "discountPct": 0.6101694915254238}, {"YearMonth": "2024-08", "ReferrerSource": "Facebook", "orders": 2, "revenue": 81.140001, "avgAOV": 40.5700005, "avgItems": 3.0, "newPct": 0.5, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2024-08", "ReferrerSource": "Google Adwords", "orders": 1123, "revenue": 34457.990387, "avgAOV": 30.683873897595724, "avgItems": 1.8495102404274266, "newPct": 0.2315227070347284, "freeShipPct": 0.09795191451469279, "discountPct": 0.09706144256455922}, {"YearMonth": "2024-08", "ReferrerSource": "Organic", "orders": 1147, "revenue": 34279.079842, "avgAOV": 29.88585862423714, "avgItems": 1.7122929380993896, "newPct": 0.11333914559721012, "freeShipPct": 0.4707933740191805, "discountPct": 0.05492589363557106}, {"YearMonth": "2024-08", "ReferrerSource": "Webgains", "orders": 329, "revenue": 13083.149959, "avgAOV": 39.766413249240124, "avgItems": 2.3556231003039514, "newPct": 0.1519756838905775, "freeShipPct": 0.22796352583586627, "discountPct": 0.5045592705167173}, {"YearMonth": "2024-09", "ReferrerSource": "Bing Ads", "orders": 138, "revenue": 4765.219991, "avgAOV": 34.530579644927535, "avgItems": 2.0434782608695654, "newPct": 0.07971014492753623, "freeShipPct": 0.10144927536231885, "discountPct": 0.2028985507246377}, {"YearMonth": "2024-09", "ReferrerSource": "Email Newsletter", "orders": 385, "revenue": 15375.990024, "avgAOV": 39.93763642597403, "avgItems": 2.449350649350649, "newPct": 0.0025974025974025974, "freeShipPct": 0.19220779220779222, "discountPct": 0.7454545454545455}, {"YearMonth": "2024-09", "ReferrerSource": "Facebook", "orders": 1, "revenue": 19.9, "avgAOV": 19.9, "avgItems": 1.0, "newPct": 0.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2024-09", "ReferrerSource": "Google Adwords", "orders": 974, "revenue": 31488.37001, "avgAOV": 32.32892198151951, "avgItems": 1.9640657084188913, "newPct": 0.17453798767967146, "freeShipPct": 0.1026694045174538, "discountPct": 0.1735112936344969}, {"YearMonth": "2024-09", "ReferrerSource": "Organic", "orders": 1058, "revenue": 30981.78982, "avgAOV": 29.283355217391307, "avgItems": 1.7523629489603025, "newPct": 0.13137996219281664, "freeShipPct": 0.43194706994328924, "discountPct": 0.11531190926275993}, {"YearMonth": "2024-09", "ReferrerSource": "Webgains", "orders": 305, "revenue": 11657.06001, "avgAOV": 38.2198688852459, "avgItems": 2.3114754098360657, "newPct": 0.10819672131147541, "freeShipPct": 0.2098360655737705, "discountPct": 0.5540983606557377}, {"YearMonth": "2024-10", "ReferrerSource": "Bing Ads", "orders": 115, "revenue": 3535.550007, "avgAOV": 30.743913104347826, "avgItems": 1.8869565217391304, "newPct": 0.12173913043478261, "freeShipPct": 0.10434782608695652, "discountPct": 0.20869565217391303}, {"YearMonth": "2024-10", "ReferrerSource": "Email Newsletter", "orders": 268, "revenue": 10483.050021, "avgAOV": 39.11585828731343, "avgItems": 2.4029850746268657, "newPct": 0.011194029850746268, "freeShipPct": 0.1417910447761194, "discountPct": 0.7126865671641791}, {"YearMonth": "2024-10", "ReferrerSource": "Google Adwords", "orders": 1137, "revenue": 33423.259952, "avgAOV": 29.396006993843447, "avgItems": 1.8452066842568162, "newPct": 0.2884784520668426, "freeShipPct": 0.07827616534740545, "discountPct": 0.18733509234828497}, {"YearMonth": "2024-10", "ReferrerSource": "Organic", "orders": 1285, "revenue": 37205.249744, "avgAOV": 28.953501746303502, "avgItems": 1.7439688715953308, "newPct": 0.12840466926070038, "freeShipPct": 0.4521400778210117, "discountPct": 0.133852140077821}, {"YearMonth": "2024-10", "ReferrerSource": "Webgains", "orders": 314, "revenue": 11564.389993, "avgAOV": 36.829267493630574, "avgItems": 2.2802547770700636, "newPct": 0.15286624203821655, "freeShipPct": 0.15605095541401273, "discountPct": 0.535031847133758}, {"YearMonth": "2024-11", "ReferrerSource": "Bing Ads", "orders": 126, "revenue": 4053.169992, "avgAOV": 32.16801580952381, "avgItems": 2.111111111111111, "newPct": 0.05555555555555555, "freeShipPct": 0.0873015873015873, "discountPct": 0.30158730158730157}, {"YearMonth": "2024-11", "ReferrerSource": "Email Newsletter", "orders": 607, "revenue": 22080.09998, "avgAOV": 36.37578250411862, "avgItems": 2.518945634266886, "newPct": 0.009884678747940691, "freeShipPct": 0.12026359143327842, "discountPct": 0.8599670510708401}, {"YearMonth": "2024-11", "ReferrerSource": "Facebook", "orders": 1, "revenue": 20.9, "avgAOV": 20.9, "avgItems": 1.0, "newPct": 0.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2024-11", "ReferrerSource": "Google Adwords", "orders": 596, "revenue": 18473.629954, "avgAOV": 30.99602341275168, "avgItems": 1.9496644295302012, "newPct": 0.16946308724832215, "freeShipPct": 0.08892617449664429, "discountPct": 0.337248322147651}, {"YearMonth": "2024-11", "ReferrerSource": "Organic", "orders": 1598, "revenue": 48171.92976, "avgAOV": 30.145137521902377, "avgItems": 1.8548185231539425, "newPct": 0.10513141426783479, "freeShipPct": 0.35607008760951186, "discountPct": 0.21526908635794745}, {"YearMonth": "2024-11", "ReferrerSource": "Webgains", "orders": 429, "revenue": 16539.069937, "avgAOV": 38.552610575757576, "avgItems": 2.4825174825174825, "newPct": 0.07226107226107226, "freeShipPct": 0.16783216783216784, "discountPct": 0.7505827505827506}, {"YearMonth": "2024-12", "ReferrerSource": "Bing Ads", "orders": 59, "revenue": 2196.150004, "avgAOV": 37.222881423728815, "avgItems": 2.1186440677966103, "newPct": 0.15254237288135594, "freeShipPct": 0.1694915254237288, "discountPct": 0.15254237288135594}, {"YearMonth": "2024-12", "ReferrerSource": "Email Newsletter", "orders": 128, "revenue": 4990.629977, "avgAOV": 38.9892966953125, "avgItems": 2.21875, "newPct": 0.03125, "freeShipPct": 0.09375, "discountPct": 0.28125}, {"YearMonth": "2024-12", "ReferrerSource": "Facebook", "orders": 5, "revenue": 458.540013, "avgAOV": 91.7080026, "avgItems": 5.2, "newPct": 0.8, "freeShipPct": 0.6, "discountPct": 0.2}, {"YearMonth": "2024-12", "ReferrerSource": "Google Adwords", "orders": 689, "revenue": 22213.389932, "avgAOV": 32.24004344267053, "avgItems": 1.8635703918722786, "newPct": 0.15239477503628446, "freeShipPct": 0.07111756168359942, "discountPct": 0.15384615384615385}, {"YearMonth": "2024-12", "ReferrerSource": "Organic", "orders": 1211, "revenue": 32847.449336, "avgAOV": 27.124235620148635, "avgItems": 1.5862923203963666, "newPct": 0.11643270024772914, "freeShipPct": 0.47811725846407926, "discountPct": 0.08092485549132948}, {"YearMonth": "2024-12", "ReferrerSource": "Webgains", "orders": 235, "revenue": 9502.179975, "avgAOV": 40.434808404255314, "avgItems": 2.3659574468085105, "newPct": 0.1148936170212766, "freeShipPct": 0.16595744680851063, "discountPct": 0.5234042553191489}, {"YearMonth": "2025-01", "ReferrerSource": "Bing Ads", "orders": 48, "revenue": 1636.369986, "avgAOV": 34.091041374999996, "avgItems": 1.875, "newPct": 0.2708333333333333, "freeShipPct": 0.10416666666666667, "discountPct": 0.041666666666666664}, {"YearMonth": "2025-01", "ReferrerSource": "Email Newsletter", "orders": 477, "revenue": 19891.549813, "avgAOV": 41.701362291404614, "avgItems": 2.4213836477987423, "newPct": 0.012578616352201259, "freeShipPct": 0.15932914046121593, "discountPct": 0.14255765199161424}, {"YearMonth": "2025-01", "ReferrerSource": "Facebook", "orders": 12, "revenue": 274.03999999999996, "avgAOV": 22.836666666666662, "avgItems": 1.6666666666666667, "newPct": 0.5833333333333334, "freeShipPct": 0.08333333333333333, "discountPct": 0.08333333333333333}, {"YearMonth": "2025-01", "ReferrerSource": "Google Adwords", "orders": 1013, "revenue": 33298.259757, "avgAOV": 32.87093756860809, "avgItems": 1.947680157946693, "newPct": 0.25666337611056267, "freeShipPct": 0.08292201382033564, "discountPct": 0.1194471865745311}, {"YearMonth": "2025-01", "ReferrerSource": "Organic", "orders": 1643, "revenue": 53860.109557, "avgAOV": 32.78156394217894, "avgItems": 1.9172245891661595, "newPct": 0.1393791844187462, "freeShipPct": 0.3870967741935484, "discountPct": 0.08399269628727937}, {"YearMonth": "2025-01", "ReferrerSource": "Webgains", "orders": 309, "revenue": 13831.889907, "avgAOV": 44.76339775728155, "avgItems": 2.4498381877022655, "newPct": 0.11650485436893204, "freeShipPct": 0.1941747572815534, "discountPct": 0.49838187702265374}, {"YearMonth": "2025-02", "ReferrerSource": "Bing Ads", "orders": 28, "revenue": 809.249997, "avgAOV": 28.90178560714286, "avgItems": 1.5714285714285714, "newPct": 0.4642857142857143, "freeShipPct": 0.0, "discountPct": 0.07142857142857142}, {"YearMonth": "2025-02", "ReferrerSource": "Email Newsletter", "orders": 77, "revenue": 3043.679981, "avgAOV": 39.528311441558444, "avgItems": 1.948051948051948, "newPct": 0.012987012987012988, "freeShipPct": 0.1038961038961039, "discountPct": 0.07792207792207792}, {"YearMonth": "2025-02", "ReferrerSource": "Facebook", "orders": 4, "revenue": 135.219998, "avgAOV": 33.8049995, "avgItems": 1.5, "newPct": 0.25, "freeShipPct": 0.25, "discountPct": 0.0}, {"YearMonth": "2025-02", "ReferrerSource": "Google Adwords", "orders": 826, "revenue": 27742.649921, "avgAOV": 33.58674324576271, "avgItems": 1.7312348668280872, "newPct": 0.2324455205811138, "freeShipPct": 0.06416464891041163, "discountPct": 0.1198547215496368}, {"YearMonth": "2025-02", "ReferrerSource": "Organic", "orders": 1273, "revenue": 39760.019693, "avgAOV": 31.23332261822467, "avgItems": 1.6276512175962294, "newPct": 0.13825608798114689, "freeShipPct": 0.4791830322073841, "discountPct": 0.07069913589945012}, {"YearMonth": "2025-02", "ReferrerSource": "Webgains", "orders": 210, "revenue": 8948.669962, "avgAOV": 42.612714104761906, "avgItems": 2.157142857142857, "newPct": 0.12857142857142856, "freeShipPct": 0.19523809523809524, "discountPct": 0.49047619047619045}, {"YearMonth": "2025-03", "ReferrerSource": "Bing Ads", "orders": 21, "revenue": 837.509999, "avgAOV": 39.881428523809525, "avgItems": 1.9047619047619047, "newPct": 0.42857142857142855, "freeShipPct": 0.09523809523809523, "discountPct": 0.14285714285714285}, {"YearMonth": "2025-03", "ReferrerSource": "Email Newsletter", "orders": 67, "revenue": 2590.959985, "avgAOV": 38.671044552238804, "avgItems": 1.9701492537313432, "newPct": 0.029850746268656716, "freeShipPct": 0.08955223880597014, "discountPct": 0.014925373134328358}, {"YearMonth": "2025-03", "ReferrerSource": "Facebook", "orders": 5, "revenue": 164.850001, "avgAOV": 32.9700002, "avgItems": 1.8, "newPct": 0.2, "freeShipPct": 0.2, "discountPct": 0.2}, {"YearMonth": "2025-03", "ReferrerSource": "Google Adwords", "orders": 893, "revenue": 31781.729885, "avgAOV": 35.58984309630459, "avgItems": 1.8017917133258678, "newPct": 0.20940649496080627, "freeShipPct": 0.10526315789473684, "discountPct": 0.09518477043673013}, {"YearMonth": "2025-03", "ReferrerSource": "Organic", "orders": 1328, "revenue": 43322.279682, "avgAOV": 32.62219855572289, "avgItems": 1.6867469879518073, "newPct": 0.12198795180722892, "freeShipPct": 0.46009036144578314, "discountPct": 0.058734939759036146}, {"YearMonth": "2025-03", "ReferrerSource": "Webgains", "orders": 185, "revenue": 8227.939962, "avgAOV": 44.47535114594595, "avgItems": 2.27027027027027, "newPct": 0.14594594594594595, "freeShipPct": 0.12972972972972974, "discountPct": 0.4756756756756757}, {"YearMonth": "2025-04", "ReferrerSource": "Bing Ads", "orders": 17, "revenue": 413.499994, "avgAOV": 24.32352905882353, "avgItems": 1.1176470588235294, "newPct": 0.4117647058823529, "freeShipPct": 0.0, "discountPct": 0.11764705882352941}, {"YearMonth": "2025-04", "ReferrerSource": "Email Newsletter", "orders": 141, "revenue": 6502.369965, "avgAOV": 46.11609904255319, "avgItems": 2.099290780141844, "newPct": 0.02127659574468085, "freeShipPct": 0.16312056737588654, "discountPct": 0.0851063829787234}, {"YearMonth": "2025-04", "ReferrerSource": "Facebook", "orders": 3, "revenue": 95.399999, "avgAOV": 31.799999666666665, "avgItems": 1.6666666666666667, "newPct": 0.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2025-04", "ReferrerSource": "Google Adwords", "orders": 931, "revenue": 34085.769906, "avgAOV": 36.611997750805585, "avgItems": 1.8549946294307196, "newPct": 0.16219119226638024, "freeShipPct": 0.09237379162191192, "discountPct": 0.11600429645542427}, {"YearMonth": "2025-04", "ReferrerSource": "Organic", "orders": 1314, "revenue": 41540.419723, "avgAOV": 31.61371364003044, "avgItems": 1.6141552511415524, "newPct": 0.1141552511415525, "freeShipPct": 0.5076103500761036, "discountPct": 0.05098934550989345}, {"YearMonth": "2025-04", "ReferrerSource": "Webgains", "orders": 170, "revenue": 7966.829973, "avgAOV": 46.863705723529414, "avgItems": 2.3058823529411763, "newPct": 0.13529411764705881, "freeShipPct": 0.22941176470588234, "discountPct": 0.4}, {"YearMonth": "2025-05", "ReferrerSource": "Bing Ads", "orders": 10, "revenue": 319.220001, "avgAOV": 31.9220001, "avgItems": 1.7, "newPct": 0.2, "freeShipPct": 0.1, "discountPct": 0.2}, {"YearMonth": "2025-05", "ReferrerSource": "Email Newsletter", "orders": 162, "revenue": 6506.220009, "avgAOV": 40.1618519074074, "avgItems": 1.9074074074074074, "newPct": 0.037037037037037035, "freeShipPct": 0.12962962962962962, "discountPct": 0.05555555555555555}, {"YearMonth": "2025-05", "ReferrerSource": "Facebook", "orders": 4, "revenue": 327.139999, "avgAOV": 81.78499975, "avgItems": 2.75, "newPct": 0.25, "freeShipPct": 0.5, "discountPct": 0.25}, {"YearMonth": "2025-05", "ReferrerSource": "Google Adwords", "orders": 847, "revenue": 32866.939875, "avgAOV": 38.80394318181818, "avgItems": 1.949232585596222, "newPct": 0.15820543093270367, "freeShipPct": 0.12160566706021252, "discountPct": 0.08382526564344746}, {"YearMonth": "2025-05", "ReferrerSource": "Organic", "orders": 1370, "revenue": 45569.799692, "avgAOV": 33.26262751240876, "avgItems": 1.6824817518248176, "newPct": 0.11970802919708029, "freeShipPct": 0.5291970802919708, "discountPct": 0.06496350364963503}, {"YearMonth": "2025-05", "ReferrerSource": "Webgains", "orders": 238, "revenue": 10935.419985999999, "avgAOV": 45.94714279831933, "avgItems": 2.2857142857142856, "newPct": 0.09243697478991597, "freeShipPct": 0.19747899159663865, "discountPct": 0.3865546218487395}, {"YearMonth": "2025-06", "ReferrerSource": "Bing Ads", "orders": 7, "revenue": 290.820002, "avgAOV": 41.54571457142857, "avgItems": 1.8571428571428572, "newPct": 0.14285714285714285, "freeShipPct": 0.14285714285714285, "discountPct": 0.14285714285714285}, {"YearMonth": "2025-06", "ReferrerSource": "Email Newsletter", "orders": 79, "revenue": 3547.8799879999997, "avgAOV": 44.90987326582278, "avgItems": 2.1139240506329116, "newPct": 0.02531645569620253, "freeShipPct": 0.11392405063291139, "discountPct": 0.05063291139240506}, {"YearMonth": "2025-06", "ReferrerSource": "Facebook", "orders": 3, "revenue": 246.15000700000002, "avgAOV": 82.05000233333334, "avgItems": 2.3333333333333335, "newPct": 0.3333333333333333, "freeShipPct": 0.6666666666666666, "discountPct": 0.0}, {"YearMonth": "2025-06", "ReferrerSource": "Google Adwords", "orders": 714, "revenue": 25503.319892, "avgAOV": 35.71893542296919, "avgItems": 1.7507002801120448, "newPct": 0.17787114845938376, "freeShipPct": 0.08683473389355742, "discountPct": 0.06162464985994398}, {"YearMonth": "2025-06", "ReferrerSource": "Organic", "orders": 1319, "revenue": 43552.709684, "avgAOV": 33.01949179984837, "avgItems": 1.6739954510993176, "newPct": 0.11144806671721001, "freeShipPct": 0.5216072782410918, "discountPct": 0.05079605761940864}, {"YearMonth": "2025-06", "ReferrerSource": "Webgains", "orders": 222, "revenue": 10278.489946, "avgAOV": 46.29950426126126, "avgItems": 2.265765765765766, "newPct": 0.17117117117117117, "freeShipPct": 0.2072072072072072, "discountPct": 0.4144144144144144}, {"YearMonth": "2025-07", "ReferrerSource": "Bing Ads", "orders": 4, "revenue": 235.870005, "avgAOV": 58.96750125, "avgItems": 3.0, "newPct": 0.25, "freeShipPct": 0.25, "discountPct": 0.0}, {"YearMonth": "2025-07", "ReferrerSource": "Email Newsletter", "orders": 75, "revenue": 3260.249979, "avgAOV": 43.469999720000004, "avgItems": 2.026666666666667, "newPct": 0.013333333333333334, "freeShipPct": 0.17333333333333334, "discountPct": 0.04}, {"YearMonth": "2025-07", "ReferrerSource": "Facebook", "orders": 1, "revenue": 12.81, "avgAOV": 12.81, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 1.0}, {"YearMonth": "2025-07", "ReferrerSource": "Google Adwords", "orders": 798, "revenue": 29502.459847, "avgAOV": 36.9705010614035, "avgItems": 1.8195488721804511, "newPct": 0.14411027568922305, "freeShipPct": 0.09774436090225563, "discountPct": 0.05513784461152882}, {"YearMonth": "2025-07", "ReferrerSource": "Organic", "orders": 1379, "revenue": 42524.169633, "avgAOV": 30.836961300217546, "avgItems": 1.564902102973169, "newPct": 0.10514865844815083, "freeShipPct": 0.5373459028281363, "discountPct": 0.04060913705583756}, {"YearMonth": "2025-07", "ReferrerSource": "Webgains", "orders": 232, "revenue": 11953.479933, "avgAOV": 51.52362040086207, "avgItems": 2.538793103448276, "newPct": 0.13793103448275862, "freeShipPct": 0.25, "discountPct": 0.3793103448275862}, {"YearMonth": "2025-08", "ReferrerSource": "Bing Ads", "orders": 5, "revenue": 145.150001, "avgAOV": 29.0300002, "avgItems": 1.4, "newPct": 0.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2025-08", "ReferrerSource": "Email Newsletter", "orders": 72, "revenue": 3417.419994, "avgAOV": 47.46416658333333, "avgItems": 2.236111111111111, "newPct": 0.06944444444444445, "freeShipPct": 0.18055555555555555, "discountPct": 0.05555555555555555}, {"YearMonth": "2025-08", "ReferrerSource": "Google Adwords", "orders": 704, "revenue": 26139.869856999998, "avgAOV": 37.1304969559659, "avgItems": 1.8366477272727273, "newPct": 0.16619318181818182, "freeShipPct": 0.11789772727272728, "discountPct": 0.05823863636363636}, {"YearMonth": "2025-08", "ReferrerSource": "Organic", "orders": 1485, "revenue": 47800.979652, "avgAOV": 32.18921188686869, "avgItems": 1.628956228956229, "newPct": 0.09494949494949495, "freeShipPct": 0.54006734006734, "discountPct": 0.04781144781144781}, {"YearMonth": "2025-08", "ReferrerSource": "Webgains", "orders": 228, "revenue": 10325.219942, "avgAOV": 45.28605237719298, "avgItems": 2.162280701754386, "newPct": 0.11403508771929824, "freeShipPct": 0.22807017543859648, "discountPct": 0.32456140350877194}, {"YearMonth": "2025-09", "ReferrerSource": "Bing Ads", "orders": 3, "revenue": 118.749997, "avgAOV": 39.58333233333333, "avgItems": 1.6666666666666667, "newPct": 0.3333333333333333, "freeShipPct": 0.3333333333333333, "discountPct": 0.0}, {"YearMonth": "2025-09", "ReferrerSource": "Email Newsletter", "orders": 72, "revenue": 3059.339959, "avgAOV": 42.49083276388889, "avgItems": 2.361111111111111, "newPct": 0.027777777777777776, "freeShipPct": 0.09722222222222222, "discountPct": 0.027777777777777776}, {"YearMonth": "2025-09", "ReferrerSource": "Facebook", "orders": 1, "revenue": 40.609999, "avgAOV": 40.609999, "avgItems": 1.0, "newPct": 0.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2025-09", "ReferrerSource": "Google Adwords", "orders": 751, "revenue": 28206.150687, "avgAOV": 37.55812341810919, "avgItems": 1.858854860186418, "newPct": 0.15446071904127828, "freeShipPct": 0.10918774966711052, "discountPct": 0.0426098535286285}, {"YearMonth": "2025-09", "ReferrerSource": "Organic", "orders": 1250, "revenue": 37932.179686999996, "avgAOV": 30.345743749599997, "avgItems": 1.5616, "newPct": 0.1, "freeShipPct": 0.5264, "discountPct": 0.0384}, {"YearMonth": "2025-09", "ReferrerSource": "Webgains", "orders": 243, "revenue": 10487.179995, "avgAOV": 43.157119320987654, "avgItems": 2.094650205761317, "newPct": 0.19753086419753085, "freeShipPct": 0.1646090534979424, "discountPct": 0.3991769547325103}, {"YearMonth": "2025-10", "ReferrerSource": "Bing Ads", "orders": 3, "revenue": 90.299999, "avgAOV": 30.099999666666665, "avgItems": 1.3333333333333333, "newPct": 0.6666666666666666, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2025-10", "ReferrerSource": "Email Newsletter", "orders": 86, "revenue": 4455.499976, "avgAOV": 51.808139255813956, "avgItems": 2.511627906976744, "newPct": 0.03488372093023256, "freeShipPct": 0.1511627906976744, "discountPct": 0.06976744186046512}, {"YearMonth": "2025-10", "ReferrerSource": "Google Adwords", "orders": 705, "revenue": 25384.569911, "avgAOV": 36.00648214326241, "avgItems": 1.7617021276595746, "newPct": 0.17446808510638298, "freeShipPct": 0.10780141843971631, "discountPct": 0.04113475177304964}, {"YearMonth": "2025-10", "ReferrerSource": "Organic", "orders": 1487, "revenue": 46915.689587, "avgAOV": 31.550564618022864, "avgItems": 1.613315400134499, "newPct": 0.09280430396772024, "freeShipPct": 0.5689307330195024, "discountPct": 0.04505716207128446}, {"YearMonth": "2025-10", "ReferrerSource": "Webgains", "orders": 279, "revenue": 12868.069974, "avgAOV": 46.12211460215054, "avgItems": 2.2652329749103943, "newPct": 0.1111111111111111, "freeShipPct": 0.1971326164874552, "discountPct": 0.3225806451612903}, {"YearMonth": "2025-11", "ReferrerSource": "Bing Ads", "orders": 5, "revenue": 149.45999899999998, "avgAOV": 29.891999799999997, "avgItems": 1.4, "newPct": 0.2, "freeShipPct": 0.0, "discountPct": 0.2}, {"YearMonth": "2025-11", "ReferrerSource": "Email Newsletter", "orders": 33, "revenue": 1138.299992, "avgAOV": 34.49393915151515, "avgItems": 1.7878787878787878, "newPct": 0.030303030303030304, "freeShipPct": 0.030303030303030304, "discountPct": 0.0}, {"YearMonth": "2025-11", "ReferrerSource": "Google Adwords", "orders": 248, "revenue": 9127.739966, "avgAOV": 36.805403088709674, "avgItems": 1.7903225806451613, "newPct": 0.22580645161290322, "freeShipPct": 0.13306451612903225, "discountPct": 0.036290322580645164}, {"YearMonth": "2025-11", "ReferrerSource": "Organic", "orders": 1580, "revenue": 52399.079666, "avgAOV": 33.1639744721519, "avgItems": 1.7126582278481013, "newPct": 0.08734177215189873, "freeShipPct": 0.439873417721519, "discountPct": 0.0310126582278481}, {"YearMonth": "2025-11", "ReferrerSource": "Webgains", "orders": 251, "revenue": 11982.799987, "avgAOV": 47.74023899203188, "avgItems": 2.3784860557768925, "newPct": 0.13147410358565736, "freeShipPct": 0.22709163346613545, "discountPct": 0.32669322709163345}, {"YearMonth": "2025-12", "ReferrerSource": "Bing Ads", "orders": 2, "revenue": 66.79999799999999, "avgAOV": 33.399998999999994, "avgItems": 2.0, "newPct": 0.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2025-12", "ReferrerSource": "Email Newsletter", "orders": 61, "revenue": 2479.049993, "avgAOV": 40.64016381967213, "avgItems": 1.9672131147540983, "newPct": 0.01639344262295082, "freeShipPct": 0.18032786885245902, "discountPct": 0.04918032786885246}, {"YearMonth": "2025-12", "ReferrerSource": "Facebook", "orders": 1, "revenue": 43.450001, "avgAOV": 43.450001, "avgItems": 1.0, "newPct": 1.0, "freeShipPct": 0.0, "discountPct": 0.0}, {"YearMonth": "2025-12", "ReferrerSource": "Google Adwords", "orders": 190, "revenue": 6535.019978, "avgAOV": 34.39484198947368, "avgItems": 1.6157894736842104, "newPct": 0.3263157894736842, "freeShipPct": 0.07368421052631578, "discountPct": 0.03684210526315789}, {"YearMonth": "2025-12", "ReferrerSource": "Organic", "orders": 1514, "revenue": 49271.449654, "avgAOV": 32.543890128137384, "avgItems": 1.666446499339498, "newPct": 0.07926023778071334, "freeShipPct": 0.428665785997358, "discountPct": 0.016512549537648614}, {"YearMonth": "2025-12", "ReferrerSource": "Webgains", "orders": 201, "revenue": 9075.579975, "avgAOV": 45.15213917910448, "avgItems": 2.2935323383084576, "newPct": 0.13432835820895522, "freeShipPct": 0.20398009950248755, "discountPct": 0.25870646766169153}, {"YearMonth": "2026-01", "ReferrerSource": "Email Newsletter", "orders": 8, "revenue": 388.750003, "avgAOV": 48.593750375, "avgItems": 2.375, "newPct": 0.0, "freeShipPct": 0.375, "discountPct": 0.0}, {"YearMonth": "2026-01", "ReferrerSource": "Google Adwords", "orders": 81, "revenue": 2326.88999, "avgAOV": 28.72703691358025, "avgItems": 1.4814814814814814, "newPct": 0.5802469135802469, "freeShipPct": 0.037037037037037035, "discountPct": 0.024691358024691357}, {"YearMonth": "2026-01", "ReferrerSource": "Organic", "orders": 689, "revenue": 24825.099839, "avgAOV": 36.030623859216256, "avgItems": 1.8243831640058055, "newPct": 0.08853410740203194, "freeShipPct": 0.37735849056603776, "discountPct": 0.018867924528301886}, {"YearMonth": "2026-01", "ReferrerSource": "Webgains", "orders": 110, "revenue": 5431.519976, "avgAOV": 49.37745432727272, "avgItems": 2.3454545454545452, "newPct": 0.15454545454545454, "freeShipPct": 0.22727272727272727, "discountPct": 0.35454545454545455}], "newReturningMonthly": [{"YearMonth": "2005-11", "IsNewCustomer": 1, "orders": 2, "revenue": 37.849901}, {"YearMonth": "2005-12", "IsNewCustomer": 1, "orders": 1, "revenue": 17.9}, {"YearMonth": "2006-01", "IsNewCustomer": 0, "orders": 4, "revenue": 106.44969900000001}, {"YearMonth": "2006-02", "IsNewCustomer": 0, "orders": 2, "revenue": 84.550002}, {"YearMonth": "2006-02", "IsNewCustomer": 1, "orders": 3, "revenue": 36.55}, {"YearMonth": "2006-03", "IsNewCustomer": 0, "orders": 9, "revenue": 236.849999}, {"YearMonth": "2006-03", "IsNewCustomer": 1, "orders": 102, "revenue": 2047.480005}, {"YearMonth": "2006-04", "IsNewCustomer": 0, "orders": 14, "revenue": 253.846099}, {"YearMonth": "2006-04", "IsNewCustomer": 1, "orders": 157, "revenue": 2706.688709}, {"YearMonth": "2006-05", "IsNewCustomer": 0, "orders": 22, "revenue": 489.55650299999996}, {"YearMonth": "2006-05", "IsNewCustomer": 1, "orders": 222, "revenue": 3828.479906}, {"YearMonth": "2006-06", "IsNewCustomer": 0, "orders": 33, "revenue": 590.296004}, {"YearMonth": "2006-06", "IsNewCustomer": 1, "orders": 232, "revenue": 4274.825918}, {"YearMonth": "2006-07", "IsNewCustomer": 0, "orders": 55, "revenue": 1119.389204}, {"YearMonth": "2006-07", "IsNewCustomer": 1, "orders": 247, "revenue": 4362.63771}, {"YearMonth": "2006-08", "IsNewCustomer": 0, "orders": 60, "revenue": 1378.595804}, {"YearMonth": "2006-08", "IsNewCustomer": 1, "orders": 223, "revenue": 4262.103031}, {"YearMonth": "2006-09", "IsNewCustomer": 0, "orders": 74, "revenue": 1830.29646}, {"YearMonth": "2006-09", "IsNewCustomer": 1, "orders": 295, "revenue": 4998.561226}, {"YearMonth": "2006-10", "IsNewCustomer": 0, "orders": 127, "revenue": 2683.403025}, {"YearMonth": "2006-10", "IsNewCustomer": 1, "orders": 346, "revenue": 6092.251837}, {"YearMonth": "2006-11", "IsNewCustomer": 0, "orders": 128, "revenue": 2738.649624}, {"YearMonth": "2006-11", "IsNewCustomer": 1, "orders": 324, "revenue": 5298.157619}, {"YearMonth": "2006-12", "IsNewCustomer": 0, "orders": 113, "revenue": 2164.364448}, {"YearMonth": "2006-12", "IsNewCustomer": 1, "orders": 344, "revenue": 6538.085413}, {"YearMonth": "2007-01", "IsNewCustomer": 0, "orders": 173, "revenue": 3180.395903}, {"YearMonth": "2007-01", "IsNewCustomer": 1, "orders": 466, "revenue": 8305.739513}, {"YearMonth": "2007-02", "IsNewCustomer": 0, "orders": 319, "revenue": 5847.121344}, {"YearMonth": "2007-02", "IsNewCustomer": 1, "orders": 341, "revenue": 6369.205052}, {"YearMonth": "2007-03", "IsNewCustomer": 0, "orders": 226, "revenue": 4744.221724}, {"YearMonth": "2007-03", "IsNewCustomer": 1, "orders": 329, "revenue": 6039.015719999999}, {"YearMonth": "2007-04", "IsNewCustomer": 0, "orders": 206, "revenue": 4489.9627279999995}, {"YearMonth": "2007-04", "IsNewCustomer": 1, "orders": 246, "revenue": 4338.707207}, {"YearMonth": "2007-05", "IsNewCustomer": 0, "orders": 244, "revenue": 5055.1341919999995}, {"YearMonth": "2007-05", "IsNewCustomer": 1, "orders": 271, "revenue": 4805.494668}, {"YearMonth": "2007-06", "IsNewCustomer": 0, "orders": 181, "revenue": 3973.448961}, {"YearMonth": "2007-06", "IsNewCustomer": 1, "orders": 352, "revenue": 6607.032193}, {"YearMonth": "2007-07", "IsNewCustomer": 0, "orders": 165, "revenue": 3698.856811}, {"YearMonth": "2007-07", "IsNewCustomer": 1, "orders": 359, "revenue": 7319.645823}, {"YearMonth": "2007-08", "IsNewCustomer": 0, "orders": 173, "revenue": 4031.923417}, {"YearMonth": "2007-08", "IsNewCustomer": 1, "orders": 318, "revenue": 5993.996431}, {"YearMonth": "2007-09", "IsNewCustomer": 0, "orders": 179, "revenue": 3669.502927}, {"YearMonth": "2007-09", "IsNewCustomer": 1, "orders": 314, "revenue": 6002.154948}, {"YearMonth": "2007-10", "IsNewCustomer": 0, "orders": 181, "revenue": 3963.688151}, {"YearMonth": "2007-10", "IsNewCustomer": 1, "orders": 275, "revenue": 6736.26369}, {"YearMonth": "2007-11", "IsNewCustomer": 0, "orders": 170, "revenue": 3711.226435}, {"YearMonth": "2007-11", "IsNewCustomer": 1, "orders": 297, "revenue": 5908.658351}, {"YearMonth": "2007-12", "IsNewCustomer": 0, "orders": 154, "revenue": 3567.7453379999997}, {"YearMonth": "2007-12", "IsNewCustomer": 1, "orders": 220, "revenue": 4139.001509}, {"YearMonth": "2008-01", "IsNewCustomer": 0, "orders": 260, "revenue": 6065.794581}, {"YearMonth": "2008-01", "IsNewCustomer": 1, "orders": 394, "revenue": 7175.763239}, {"YearMonth": "2008-02", "IsNewCustomer": 0, "orders": 199, "revenue": 4415.117018}, {"YearMonth": "2008-02", "IsNewCustomer": 1, "orders": 322, "revenue": 6616.9242619999995}, {"YearMonth": "2008-03", "IsNewCustomer": 0, "orders": 247, "revenue": 5634.017671}, {"YearMonth": "2008-03", "IsNewCustomer": 1, "orders": 378, "revenue": 7034.574029}, {"YearMonth": "2008-04", "IsNewCustomer": 0, "orders": 231, "revenue": 4616.522119}, {"YearMonth": "2008-04", "IsNewCustomer": 1, "orders": 334, "revenue": 6044.53154}, {"YearMonth": "2008-05", "IsNewCustomer": 0, "orders": 219, "revenue": 4826.137322}, {"YearMonth": "2008-05", "IsNewCustomer": 1, "orders": 394, "revenue": 7227.4965569999995}, {"YearMonth": "2008-06", "IsNewCustomer": 0, "orders": 318, "revenue": 6657.099666}, {"YearMonth": "2008-06", "IsNewCustomer": 1, "orders": 559, "revenue": 10827.628175}, {"YearMonth": "2008-07", "IsNewCustomer": 0, "orders": 291, "revenue": 6096.351281}, {"YearMonth": "2008-07", "IsNewCustomer": 1, "orders": 542, "revenue": 9942.202879}, {"YearMonth": "2008-08", "IsNewCustomer": 0, "orders": 343, "revenue": 7555.056538}, {"YearMonth": "2008-08", "IsNewCustomer": 1, "orders": 805, "revenue": 13646.450511}, {"YearMonth": "2008-09", "IsNewCustomer": 0, "orders": 336, "revenue": 7509.302173}, {"YearMonth": "2008-09", "IsNewCustomer": 1, "orders": 628, "revenue": 11785.209567}, {"YearMonth": "2008-10", "IsNewCustomer": 0, "orders": 384, "revenue": 8558.170256}, {"YearMonth": "2008-10", "IsNewCustomer": 1, "orders": 833, "revenue": 16254.929197}, {"YearMonth": "2008-11", "IsNewCustomer": 0, "orders": 410, "revenue": 9220.884145}, {"YearMonth": "2008-11", "IsNewCustomer": 1, "orders": 838, "revenue": 16219.620375999999}, {"YearMonth": "2008-12", "IsNewCustomer": 0, "orders": 348, "revenue": 7299.47717}, {"YearMonth": "2008-12", "IsNewCustomer": 1, "orders": 640, "revenue": 13015.481658}, {"YearMonth": "2009-01", "IsNewCustomer": 0, "orders": 571, "revenue": 13076.816095}, {"YearMonth": "2009-01", "IsNewCustomer": 1, "orders": 1097, "revenue": 22020.68347}, {"YearMonth": "2009-02", "IsNewCustomer": 0, "orders": 551, "revenue": 12617.285151}, {"YearMonth": "2009-02", "IsNewCustomer": 1, "orders": 936, "revenue": 20282.095453}, {"YearMonth": "2009-03", "IsNewCustomer": 0, "orders": 623, "revenue": 14175.311164}, {"YearMonth": "2009-03", "IsNewCustomer": 1, "orders": 1102, "revenue": 23060.878153}, {"YearMonth": "2009-04", "IsNewCustomer": 0, "orders": 576, "revenue": 13756.700089}, {"YearMonth": "2009-04", "IsNewCustomer": 1, "orders": 1121, "revenue": 23538.561526}, {"YearMonth": "2009-05", "IsNewCustomer": 0, "orders": 824, "revenue": 19421.441961}, {"YearMonth": "2009-05", "IsNewCustomer": 1, "orders": 1191, "revenue": 25007.245538}, {"YearMonth": "2009-06", "IsNewCustomer": 0, "orders": 649, "revenue": 15403.872395}, {"YearMonth": "2009-06", "IsNewCustomer": 1, "orders": 1155, "revenue": 24003.480302}, {"YearMonth": "2009-07", "IsNewCustomer": 0, "orders": 780, "revenue": 19017.756063}, {"YearMonth": "2009-07", "IsNewCustomer": 1, "orders": 1053, "revenue": 23271.820704}, {"YearMonth": "2009-08", "IsNewCustomer": 0, "orders": 939, "revenue": 23645.678176}, {"YearMonth": "2009-08", "IsNewCustomer": 1, "orders": 919, "revenue": 19503.641332}, {"YearMonth": "2009-09", "IsNewCustomer": 0, "orders": 766, "revenue": 19273.714813}, {"YearMonth": "2009-09", "IsNewCustomer": 1, "orders": 855, "revenue": 19258.756548}, {"YearMonth": "2009-10", "IsNewCustomer": 0, "orders": 723, "revenue": 18820.565708}, {"YearMonth": "2009-10", "IsNewCustomer": 1, "orders": 969, "revenue": 20762.108113}, {"YearMonth": "2009-11", "IsNewCustomer": 0, "orders": 802, "revenue": 20218.078847}, {"YearMonth": "2009-11", "IsNewCustomer": 1, "orders": 1021, "revenue": 21203.579559}, {"YearMonth": "2009-12", "IsNewCustomer": 0, "orders": 786, "revenue": 19655.810444}, {"YearMonth": "2009-12", "IsNewCustomer": 1, "orders": 636, "revenue": 14462.681981}, {"YearMonth": "2010-01", "IsNewCustomer": 0, "orders": 1132, "revenue": 29552.44556}, {"YearMonth": "2010-01", "IsNewCustomer": 1, "orders": 1007, "revenue": 22487.80104}, {"YearMonth": "2010-02", "IsNewCustomer": 0, "orders": 758, "revenue": 19997.48034}, {"YearMonth": "2010-02", "IsNewCustomer": 1, "orders": 981, "revenue": 22228.34057}, {"YearMonth": "2010-03", "IsNewCustomer": 0, "orders": 864, "revenue": 22617.892375}, {"YearMonth": "2010-03", "IsNewCustomer": 1, "orders": 1008, "revenue": 22062.445288}, {"YearMonth": "2010-04", "IsNewCustomer": 0, "orders": 1110, "revenue": 28885.164858}, {"YearMonth": "2010-04", "IsNewCustomer": 1, "orders": 893, "revenue": 19041.442667}, {"YearMonth": "2010-05", "IsNewCustomer": 0, "orders": 1001, "revenue": 26076.720107}, {"YearMonth": "2010-05", "IsNewCustomer": 1, "orders": 982, "revenue": 21414.874141}, {"YearMonth": "2010-06", "IsNewCustomer": 0, "orders": 889, "revenue": 23315.247342}, {"YearMonth": "2010-06", "IsNewCustomer": 1, "orders": 976, "revenue": 21161.088283}, {"YearMonth": "2010-07", "IsNewCustomer": 0, "orders": 907, "revenue": 23550.324796}, {"YearMonth": "2010-07", "IsNewCustomer": 1, "orders": 1055, "revenue": 22527.7154}, {"YearMonth": "2010-08", "IsNewCustomer": 0, "orders": 1233, "revenue": 34137.080388}, {"YearMonth": "2010-08", "IsNewCustomer": 1, "orders": 880, "revenue": 20039.93691}, {"YearMonth": "2010-09", "IsNewCustomer": 0, "orders": 892, "revenue": 23555.603871}, {"YearMonth": "2010-09", "IsNewCustomer": 1, "orders": 1041, "revenue": 23872.056124}, {"YearMonth": "2010-10", "IsNewCustomer": 0, "orders": 905, "revenue": 26715.737418}, {"YearMonth": "2010-10", "IsNewCustomer": 1, "orders": 969, "revenue": 22197.122095}, {"YearMonth": "2010-11", "IsNewCustomer": 0, "orders": 966, "revenue": 26809.749713}, {"YearMonth": "2010-11", "IsNewCustomer": 1, "orders": 900, "revenue": 20042.096606}, {"YearMonth": "2010-12", "IsNewCustomer": 0, "orders": 921, "revenue": 25288.054089}, {"YearMonth": "2010-12", "IsNewCustomer": 1, "orders": 633, "revenue": 13369.209939999999}, {"YearMonth": "2011-01", "IsNewCustomer": 0, "orders": 1238, "revenue": 35532.033313}, {"YearMonth": "2011-01", "IsNewCustomer": 1, "orders": 1235, "revenue": 27531.142936}, {"YearMonth": "2011-02", "IsNewCustomer": 0, "orders": 994, "revenue": 27438.054153}, {"YearMonth": "2011-02", "IsNewCustomer": 1, "orders": 888, "revenue": 19520.099793}, {"YearMonth": "2011-03", "IsNewCustomer": 0, "orders": 1020, "revenue": 27273.460643}, {"YearMonth": "2011-03", "IsNewCustomer": 1, "orders": 894, "revenue": 19929.42099}, {"YearMonth": "2011-04", "IsNewCustomer": 0, "orders": 1152, "revenue": 31373.178001}, {"YearMonth": "2011-04", "IsNewCustomer": 1, "orders": 792, "revenue": 17275.637268}, {"YearMonth": "2011-05", "IsNewCustomer": 0, "orders": 1041, "revenue": 29213.485177}, {"YearMonth": "2011-05", "IsNewCustomer": 1, "orders": 955, "revenue": 20481.716390999998}, {"YearMonth": "2011-06", "IsNewCustomer": 0, "orders": 1013, "revenue": 27944.86972}, {"YearMonth": "2011-06", "IsNewCustomer": 1, "orders": 963, "revenue": 20424.383472999998}, {"YearMonth": "2011-07", "IsNewCustomer": 0, "orders": 1192, "revenue": 32041.256382}, {"YearMonth": "2011-07", "IsNewCustomer": 1, "orders": 968, "revenue": 20137.246682}, {"YearMonth": "2011-08", "IsNewCustomer": 0, "orders": 1375, "revenue": 38351.851257}, {"YearMonth": "2011-08", "IsNewCustomer": 1, "orders": 1003, "revenue": 20813.693287}, {"YearMonth": "2011-09", "IsNewCustomer": 0, "orders": 1130, "revenue": 29178.053491}, {"YearMonth": "2011-09", "IsNewCustomer": 1, "orders": 890, "revenue": 16691.578576}, {"YearMonth": "2011-10", "IsNewCustomer": 0, "orders": 1266, "revenue": 31440.391075}, {"YearMonth": "2011-10", "IsNewCustomer": 1, "orders": 1155, "revenue": 22072.679519999998}, {"YearMonth": "2011-11", "IsNewCustomer": 0, "orders": 1305, "revenue": 32542.735571999998}, {"YearMonth": "2011-11", "IsNewCustomer": 1, "orders": 1260, "revenue": 24012.768747}, {"YearMonth": "2011-12", "IsNewCustomer": 0, "orders": 1256, "revenue": 31966.305396}, {"YearMonth": "2011-12", "IsNewCustomer": 1, "orders": 941, "revenue": 17683.813967}, {"YearMonth": "2012-01", "IsNewCustomer": 0, "orders": 1768, "revenue": 46963.08612}, {"YearMonth": "2012-01", "IsNewCustomer": 1, "orders": 1362, "revenue": 26773.77841}, {"YearMonth": "2012-02", "IsNewCustomer": 0, "orders": 1322, "revenue": 34264.188424}, {"YearMonth": "2012-02", "IsNewCustomer": 1, "orders": 1123, "revenue": 20973.087875}, {"YearMonth": "2012-03", "IsNewCustomer": 0, "orders": 1315, "revenue": 34698.800989}, {"YearMonth": "2012-03", "IsNewCustomer": 1, "orders": 942, "revenue": 20125.557768}, {"YearMonth": "2012-04", "IsNewCustomer": 0, "orders": 1374, "revenue": 36586.111701}, {"YearMonth": "2012-04", "IsNewCustomer": 1, "orders": 966, "revenue": 19605.680811}, {"YearMonth": "2012-05", "IsNewCustomer": 0, "orders": 1392, "revenue": 38107.361487}, {"YearMonth": "2012-05", "IsNewCustomer": 1, "orders": 836, "revenue": 18243.613229}, {"YearMonth": "2012-06", "IsNewCustomer": 0, "orders": 1239, "revenue": 35674.750664}, {"YearMonth": "2012-06", "IsNewCustomer": 1, "orders": 691, "revenue": 14833.822143}, {"YearMonth": "2012-07", "IsNewCustomer": 0, "orders": 1372, "revenue": 35958.494191}, {"YearMonth": "2012-07", "IsNewCustomer": 1, "orders": 578, "revenue": 12415.229568}, {"YearMonth": "2012-08", "IsNewCustomer": 0, "orders": 1158, "revenue": 31793.693649}, {"YearMonth": "2012-08", "IsNewCustomer": 1, "orders": 768, "revenue": 16882.363567}, {"YearMonth": "2012-09", "IsNewCustomer": 0, "orders": 1392, "revenue": 37552.021382}, {"YearMonth": "2012-09", "IsNewCustomer": 1, "orders": 863, "revenue": 17890.493744}, {"YearMonth": "2012-10", "IsNewCustomer": 0, "orders": 1555, "revenue": 40465.675628}, {"YearMonth": "2012-10", "IsNewCustomer": 1, "orders": 818, "revenue": 18355.020966}, {"YearMonth": "2012-11", "IsNewCustomer": 0, "orders": 1548, "revenue": 40884.715755}, {"YearMonth": "2012-11", "IsNewCustomer": 1, "orders": 726, "revenue": 15511.947398}, {"YearMonth": "2012-12", "IsNewCustomer": 0, "orders": 1100, "revenue": 27980.752882}, {"YearMonth": "2012-12", "IsNewCustomer": 1, "orders": 606, "revenue": 13224.452674}, {"YearMonth": "2013-01", "IsNewCustomer": 0, "orders": 1744, "revenue": 49170.366771}, {"YearMonth": "2013-01", "IsNewCustomer": 1, "orders": 988, "revenue": 21995.579543}, {"YearMonth": "2013-02", "IsNewCustomer": 0, "orders": 1211, "revenue": 31328.991985}, {"YearMonth": "2013-02", "IsNewCustomer": 1, "orders": 800, "revenue": 16416.796587}, {"YearMonth": "2013-03", "IsNewCustomer": 0, "orders": 1566, "revenue": 43704.751843}, {"YearMonth": "2013-03", "IsNewCustomer": 1, "orders": 970, "revenue": 20216.669657}, {"YearMonth": "2013-04", "IsNewCustomer": 0, "orders": 1665, "revenue": 46018.226872}, {"YearMonth": "2013-04", "IsNewCustomer": 1, "orders": 904, "revenue": 18840.084606}, {"YearMonth": "2013-05", "IsNewCustomer": 0, "orders": 1498, "revenue": 37670.836187}, {"YearMonth": "2013-05", "IsNewCustomer": 1, "orders": 1040, "revenue": 20544.594206}, {"YearMonth": "2013-06", "IsNewCustomer": 0, "orders": 1597, "revenue": 44977.183627}, {"YearMonth": "2013-06", "IsNewCustomer": 1, "orders": 1119, "revenue": 20920.534164}, {"YearMonth": "2013-07", "IsNewCustomer": 0, "orders": 1441, "revenue": 37661.280783}, {"YearMonth": "2013-07", "IsNewCustomer": 1, "orders": 880, "revenue": 17514.797005}, {"YearMonth": "2013-08", "IsNewCustomer": 0, "orders": 1386, "revenue": 36829.311898}, {"YearMonth": "2013-08", "IsNewCustomer": 1, "orders": 852, "revenue": 16355.858981}, {"YearMonth": "2013-09", "IsNewCustomer": 0, "orders": 1774, "revenue": 49139.662342}, {"YearMonth": "2013-09", "IsNewCustomer": 1, "orders": 884, "revenue": 18378.884128}, {"YearMonth": "2013-10", "IsNewCustomer": 0, "orders": 1457, "revenue": 37634.683809}, {"YearMonth": "2013-10", "IsNewCustomer": 1, "orders": 811, "revenue": 16496.222999}, {"YearMonth": "2013-11", "IsNewCustomer": 0, "orders": 1942, "revenue": 52589.251136}, {"YearMonth": "2013-11", "IsNewCustomer": 1, "orders": 895, "revenue": 18799.866469}, {"YearMonth": "2013-12", "IsNewCustomer": 0, "orders": 1326, "revenue": 34765.742501}, {"YearMonth": "2013-12", "IsNewCustomer": 1, "orders": 790, "revenue": 16607.193604}, {"YearMonth": "2014-01", "IsNewCustomer": 0, "orders": 2580, "revenue": 69729.954412}, {"YearMonth": "2014-01", "IsNewCustomer": 1, "orders": 1153, "revenue": 23105.597249}, {"YearMonth": "2014-02", "IsNewCustomer": 0, "orders": 1680, "revenue": 42090.064938999996}, {"YearMonth": "2014-02", "IsNewCustomer": 1, "orders": 987, "revenue": 20082.751646}, {"YearMonth": "2014-03", "IsNewCustomer": 0, "orders": 1954, "revenue": 49981.509529}, {"YearMonth": "2014-03", "IsNewCustomer": 1, "orders": 1169, "revenue": 23481.080943}, {"YearMonth": "2014-04", "IsNewCustomer": 0, "orders": 1918, "revenue": 48855.220388}, {"YearMonth": "2014-04", "IsNewCustomer": 1, "orders": 928, "revenue": 19611.532765}, {"YearMonth": "2014-05", "IsNewCustomer": 0, "orders": 1739, "revenue": 46939.118888}, {"YearMonth": "2014-05", "IsNewCustomer": 1, "orders": 1004, "revenue": 20570.195349}, {"YearMonth": "2014-06", "IsNewCustomer": 0, "orders": 1779, "revenue": 45545.465094}, {"YearMonth": "2014-06", "IsNewCustomer": 1, "orders": 915, "revenue": 19598.244844}, {"YearMonth": "2014-07", "IsNewCustomer": 0, "orders": 2054, "revenue": 56198.538367}, {"YearMonth": "2014-07", "IsNewCustomer": 1, "orders": 846, "revenue": 17897.468708}, {"YearMonth": "2014-08", "IsNewCustomer": 0, "orders": 1844, "revenue": 48626.773452}, {"YearMonth": "2014-08", "IsNewCustomer": 1, "orders": 933, "revenue": 20115.506989}, {"YearMonth": "2014-09", "IsNewCustomer": 0, "orders": 1990, "revenue": 52329.030683}, {"YearMonth": "2014-09", "IsNewCustomer": 1, "orders": 1021, "revenue": 20976.397545}, {"YearMonth": "2014-10", "IsNewCustomer": 0, "orders": 1816, "revenue": 51426.975631}, {"YearMonth": "2014-10", "IsNewCustomer": 1, "orders": 1056, "revenue": 23321.663642}, {"YearMonth": "2014-11", "IsNewCustomer": 0, "orders": 2091, "revenue": 58078.048176}, {"YearMonth": "2014-11", "IsNewCustomer": 1, "orders": 854, "revenue": 17559.300635}, {"YearMonth": "2014-12", "IsNewCustomer": 0, "orders": 1596, "revenue": 43482.844905}, {"YearMonth": "2014-12", "IsNewCustomer": 1, "orders": 662, "revenue": 13963.389495}, {"YearMonth": "2015-01", "IsNewCustomer": 0, "orders": 3476, "revenue": 100668.373217}, {"YearMonth": "2015-01", "IsNewCustomer": 1, "orders": 1156, "revenue": 25174.247402}, {"YearMonth": "2015-02", "IsNewCustomer": 0, "orders": 1633, "revenue": 45132.422545}, {"YearMonth": "2015-02", "IsNewCustomer": 1, "orders": 771, "revenue": 16943.304771}, {"YearMonth": "2015-03", "IsNewCustomer": 0, "orders": 2568, "revenue": 68710.789413}, {"YearMonth": "2015-03", "IsNewCustomer": 1, "orders": 969, "revenue": 20933.062338}, {"YearMonth": "2015-04", "IsNewCustomer": 0, "orders": 1994, "revenue": 50842.292397}, {"YearMonth": "2015-04", "IsNewCustomer": 1, "orders": 838, "revenue": 18386.290404}, {"YearMonth": "2015-05", "IsNewCustomer": 0, "orders": 1829, "revenue": 51780.214197}, {"YearMonth": "2015-05", "IsNewCustomer": 1, "orders": 785, "revenue": 17609.626294}, {"YearMonth": "2015-06", "IsNewCustomer": 0, "orders": 2189, "revenue": 61757.613394}, {"YearMonth": "2015-06", "IsNewCustomer": 1, "orders": 671, "revenue": 14241.865685}, {"YearMonth": "2015-07", "IsNewCustomer": 0, "orders": 1777, "revenue": 47027.16548}, {"YearMonth": "2015-07", "IsNewCustomer": 1, "orders": 845, "revenue": 17877.896193}, {"YearMonth": "2015-08", "IsNewCustomer": 0, "orders": 1994, "revenue": 57410.149087}, {"YearMonth": "2015-08", "IsNewCustomer": 1, "orders": 828, "revenue": 16953.920652}, {"YearMonth": "2015-09", "IsNewCustomer": 0, "orders": 2411, "revenue": 68534.994435}, {"YearMonth": "2015-09", "IsNewCustomer": 1, "orders": 744, "revenue": 16115.837758}, {"YearMonth": "2015-10", "IsNewCustomer": 0, "orders": 1829, "revenue": 51036.176272}, {"YearMonth": "2015-10", "IsNewCustomer": 1, "orders": 679, "revenue": 14253.928585}, {"YearMonth": "2015-11", "IsNewCustomer": 0, "orders": 2115, "revenue": 59784.718101}, {"YearMonth": "2015-11", "IsNewCustomer": 1, "orders": 631, "revenue": 13942.249305}, {"YearMonth": "2015-12", "IsNewCustomer": 0, "orders": 1992, "revenue": 55794.516107999996}, {"YearMonth": "2015-12", "IsNewCustomer": 1, "orders": 632, "revenue": 13180.43639}, {"YearMonth": "2016-01", "IsNewCustomer": 0, "orders": 3234, "revenue": 91947.056129}, {"YearMonth": "2016-01", "IsNewCustomer": 1, "orders": 1297, "revenue": 26291.482447}, {"YearMonth": "2016-02", "IsNewCustomer": 0, "orders": 1557, "revenue": 41643.052038}, {"YearMonth": "2016-02", "IsNewCustomer": 1, "orders": 622, "revenue": 14705.528993}, {"YearMonth": "2016-03", "IsNewCustomer": 0, "orders": 2535, "revenue": 72906.271448}, {"YearMonth": "2016-03", "IsNewCustomer": 1, "orders": 626, "revenue": 13883.175217}, {"YearMonth": "2016-04", "IsNewCustomer": 0, "orders": 2131, "revenue": 59305.846945}, {"YearMonth": "2016-04", "IsNewCustomer": 1, "orders": 798, "revenue": 16847.025704}, {"YearMonth": "2016-05", "IsNewCustomer": 0, "orders": 1974, "revenue": 53475.927037}, {"YearMonth": "2016-05", "IsNewCustomer": 1, "orders": 616, "revenue": 13767.301396}, {"YearMonth": "2016-06", "IsNewCustomer": 0, "orders": 2077, "revenue": 58017.219718}, {"YearMonth": "2016-06", "IsNewCustomer": 1, "orders": 672, "revenue": 14469.268645}, {"YearMonth": "2016-07", "IsNewCustomer": 0, "orders": 1827, "revenue": 49261.486785}, {"YearMonth": "2016-07", "IsNewCustomer": 1, "orders": 666, "revenue": 13958.92643}, {"YearMonth": "2016-08", "IsNewCustomer": 0, "orders": 2577, "revenue": 76646.110103}, {"YearMonth": "2016-08", "IsNewCustomer": 1, "orders": 699, "revenue": 15036.71962}, {"YearMonth": "2016-09", "IsNewCustomer": 0, "orders": 2067, "revenue": 54933.35456}, {"YearMonth": "2016-09", "IsNewCustomer": 1, "orders": 790, "revenue": 16295.622851}, {"YearMonth": "2016-10", "IsNewCustomer": 0, "orders": 2100, "revenue": 56888.068343}, {"YearMonth": "2016-10", "IsNewCustomer": 1, "orders": 895, "revenue": 19483.162555}, {"YearMonth": "2016-11", "IsNewCustomer": 0, "orders": 2606, "revenue": 74925.042656}, {"YearMonth": "2016-11", "IsNewCustomer": 1, "orders": 786, "revenue": 16807.724173}, {"YearMonth": "2016-12", "IsNewCustomer": 0, "orders": 1784, "revenue": 51637.063047}, {"YearMonth": "2016-12", "IsNewCustomer": 1, "orders": 786, "revenue": 17109.151225999998}, {"YearMonth": "2017-01", "IsNewCustomer": 0, "orders": 3328, "revenue": 90156.859566}, {"YearMonth": "2017-01", "IsNewCustomer": 1, "orders": 1792, "revenue": 36503.919822}, {"YearMonth": "2017-02", "IsNewCustomer": 0, "orders": 1999, "revenue": 51883.109793}, {"YearMonth": "2017-02", "IsNewCustomer": 1, "orders": 1454, "revenue": 28107.559926}, {"YearMonth": "2017-03", "IsNewCustomer": 0, "orders": 2474, "revenue": 67951.589804}, {"YearMonth": "2017-03", "IsNewCustomer": 1, "orders": 1552, "revenue": 30775.989818}, {"YearMonth": "2017-04", "IsNewCustomer": 0, "orders": 2019, "revenue": 56129.289813}, {"YearMonth": "2017-04", "IsNewCustomer": 1, "orders": 1309, "revenue": 26571.879918}, {"YearMonth": "2017-05", "IsNewCustomer": 0, "orders": 2732, "revenue": 74062.639329}, {"YearMonth": "2017-05", "IsNewCustomer": 1, "orders": 1294, "revenue": 27328.259767}, {"YearMonth": "2017-06", "IsNewCustomer": 0, "orders": 1970, "revenue": 53813.409553}, {"YearMonth": "2017-06", "IsNewCustomer": 1, "orders": 1330, "revenue": 27261.579684}, {"YearMonth": "2017-07", "IsNewCustomer": 0, "orders": 3485, "revenue": 108512.868961}, {"YearMonth": "2017-07", "IsNewCustomer": 1, "orders": 1648, "revenue": 34836.849599}, {"YearMonth": "2017-08", "IsNewCustomer": 0, "orders": 2417, "revenue": 67083.429395}, {"YearMonth": "2017-08", "IsNewCustomer": 1, "orders": 1522, "revenue": 30672.859636}, {"YearMonth": "2017-09", "IsNewCustomer": 0, "orders": 2284, "revenue": 64620.139375}, {"YearMonth": "2017-09", "IsNewCustomer": 1, "orders": 1644, "revenue": 35320.699609}, {"YearMonth": "2017-10", "IsNewCustomer": 0, "orders": 3254, "revenue": 89212.099102}, {"YearMonth": "2017-10", "IsNewCustomer": 1, "orders": 1818, "revenue": 38962.809572}, {"YearMonth": "2017-11", "IsNewCustomer": 0, "orders": 3488, "revenue": 102864.809003}, {"YearMonth": "2017-11", "IsNewCustomer": 1, "orders": 1679, "revenue": 35526.679557999996}, {"YearMonth": "2017-12", "IsNewCustomer": 0, "orders": 2452, "revenue": 67789.769404}, {"YearMonth": "2017-12", "IsNewCustomer": 1, "orders": 1296, "revenue": 27201.06968}, {"YearMonth": "2018-01", "IsNewCustomer": 0, "orders": 5166, "revenue": 147689.70931}, {"YearMonth": "2018-01", "IsNewCustomer": 1, "orders": 3046, "revenue": 67213.299275}, {"YearMonth": "2018-02", "IsNewCustomer": 0, "orders": 2695, "revenue": 74751.249584}, {"YearMonth": "2018-02", "IsNewCustomer": 1, "orders": 2003, "revenue": 42641.789631}, {"YearMonth": "2018-03", "IsNewCustomer": 0, "orders": 3591, "revenue": 96513.959342}, {"YearMonth": "2018-03", "IsNewCustomer": 1, "orders": 2079, "revenue": 43283.459674}, {"YearMonth": "2018-04", "IsNewCustomer": 0, "orders": 3389, "revenue": 95215.239156}, {"YearMonth": "2018-04", "IsNewCustomer": 1, "orders": 1784, "revenue": 38132.559604}, {"YearMonth": "2018-05", "IsNewCustomer": 0, "orders": 3319, "revenue": 95504.789081}, {"YearMonth": "2018-05", "IsNewCustomer": 1, "orders": 1597, "revenue": 33054.929543}, {"YearMonth": "2018-06", "IsNewCustomer": 0, "orders": 3284, "revenue": 90487.869001}, {"YearMonth": "2018-06", "IsNewCustomer": 1, "orders": 1516, "revenue": 32641.659549}, {"YearMonth": "2018-07", "IsNewCustomer": 0, "orders": 3005, "revenue": 90425.87914}, {"YearMonth": "2018-07", "IsNewCustomer": 1, "orders": 1503, "revenue": 32996.979618}, {"YearMonth": "2018-08", "IsNewCustomer": 0, "orders": 3869, "revenue": 112998.458921}, {"YearMonth": "2018-08", "IsNewCustomer": 1, "orders": 1650, "revenue": 37168.819533}, {"YearMonth": "2018-09", "IsNewCustomer": 0, "orders": 3028, "revenue": 87834.359233}, {"YearMonth": "2018-09", "IsNewCustomer": 1, "orders": 1292, "revenue": 27052.269745999998}, {"YearMonth": "2018-10", "IsNewCustomer": 0, "orders": 3908, "revenue": 120464.48918799999}, {"YearMonth": "2018-10", "IsNewCustomer": 1, "orders": 1377, "revenue": 28176.419799}, {"YearMonth": "2018-11", "IsNewCustomer": 0, "orders": 3589, "revenue": 108279.019796}, {"YearMonth": "2018-11", "IsNewCustomer": 1, "orders": 1310, "revenue": 27309.460091}, {"YearMonth": "2018-12", "IsNewCustomer": 0, "orders": 3451, "revenue": 102377.389591}, {"YearMonth": "2018-12", "IsNewCustomer": 1, "orders": 1062, "revenue": 21788.320023}, {"YearMonth": "2019-01", "IsNewCustomer": 0, "orders": 5028, "revenue": 156902.268958}, {"YearMonth": "2019-01", "IsNewCustomer": 1, "orders": 2007, "revenue": 42966.79971}, {"YearMonth": "2019-02", "IsNewCustomer": 0, "orders": 2793, "revenue": 85695.379342}, {"YearMonth": "2019-02", "IsNewCustomer": 1, "orders": 1358, "revenue": 29182.159725999998}, {"YearMonth": "2019-03", "IsNewCustomer": 0, "orders": 3397, "revenue": 103985.629215}, {"YearMonth": "2019-03", "IsNewCustomer": 1, "orders": 1123, "revenue": 26495.019764}, {"YearMonth": "2019-04", "IsNewCustomer": 0, "orders": 3122, "revenue": 95667.03915}, {"YearMonth": "2019-04", "IsNewCustomer": 1, "orders": 1030, "revenue": 23142.049817}, {"YearMonth": "2019-05", "IsNewCustomer": 0, "orders": 3385, "revenue": 100564.22929999999}, {"YearMonth": "2019-05", "IsNewCustomer": 1, "orders": 1005, "revenue": 22813.059936999998}, {"YearMonth": "2019-06", "IsNewCustomer": 0, "orders": 3310, "revenue": 107003.269096}, {"YearMonth": "2019-06", "IsNewCustomer": 1, "orders": 866, "revenue": 18370.759889}, {"YearMonth": "2019-07", "IsNewCustomer": 0, "orders": 4379, "revenue": 153091.738564}, {"YearMonth": "2019-07", "IsNewCustomer": 1, "orders": 845, "revenue": 21571.589847}, {"YearMonth": "2019-08", "IsNewCustomer": 0, "orders": 2391, "revenue": 70223.789487}, {"YearMonth": "2019-08", "IsNewCustomer": 1, "orders": 724, "revenue": 16026.989861}, {"YearMonth": "2019-09", "IsNewCustomer": 0, "orders": 3436, "revenue": 103674.29022}, {"YearMonth": "2019-09", "IsNewCustomer": 1, "orders": 825, "revenue": 17829.740047}, {"YearMonth": "2019-10", "IsNewCustomer": 0, "orders": 3433, "revenue": 114243.929212}, {"YearMonth": "2019-10", "IsNewCustomer": 1, "orders": 813, "revenue": 17586.389865999998}, {"YearMonth": "2019-11", "IsNewCustomer": 0, "orders": 3320, "revenue": 100310.64915499999}, {"YearMonth": "2019-11", "IsNewCustomer": 1, "orders": 660, "revenue": 14276.919904999999}, {"YearMonth": "2019-12", "IsNewCustomer": 0, "orders": 2914, "revenue": 90523.759225}, {"YearMonth": "2019-12", "IsNewCustomer": 1, "orders": 618, "revenue": 13526.479873999999}, {"YearMonth": "2020-01", "IsNewCustomer": 0, "orders": 4766, "revenue": 151044.488779}, {"YearMonth": "2020-01", "IsNewCustomer": 1, "orders": 947, "revenue": 21511.819829}, {"YearMonth": "2020-02", "IsNewCustomer": 0, "orders": 1819, "revenue": 52382.469525}, {"YearMonth": "2020-02", "IsNewCustomer": 1, "orders": 701, "revenue": 14765.129855}, {"YearMonth": "2020-03", "IsNewCustomer": 0, "orders": 3685, "revenue": 113250.37935599999}, {"YearMonth": "2020-03", "IsNewCustomer": 1, "orders": 1507, "revenue": 32014.269825}, {"YearMonth": "2020-04", "IsNewCustomer": 0, "orders": 3594, "revenue": 99928.609399}, {"YearMonth": "2020-04", "IsNewCustomer": 1, "orders": 3281, "revenue": 56180.449809}, {"YearMonth": "2020-05", "IsNewCustomer": 0, "orders": 3564, "revenue": 100689.479288}, {"YearMonth": "2020-05", "IsNewCustomer": 1, "orders": 2672, "revenue": 44888.299872999996}, {"YearMonth": "2020-06", "IsNewCustomer": 0, "orders": 3909, "revenue": 113456.979305}, {"YearMonth": "2020-06", "IsNewCustomer": 1, "orders": 2074, "revenue": 37929.339867999995}, {"YearMonth": "2020-07", "IsNewCustomer": 0, "orders": 3894, "revenue": 117296.11919499999}, {"YearMonth": "2020-07", "IsNewCustomer": 1, "orders": 1853, "revenue": 36139.319792}, {"YearMonth": "2020-08", "IsNewCustomer": 0, "orders": 3947, "revenue": 123417.77911}, {"YearMonth": "2020-08", "IsNewCustomer": 1, "orders": 1711, "revenue": 33776.349812}, {"YearMonth": "2020-09", "IsNewCustomer": 0, "orders": 3114, "revenue": 94207.469494}, {"YearMonth": "2020-09", "IsNewCustomer": 1, "orders": 1803, "revenue": 34685.539825}, {"YearMonth": "2020-10", "IsNewCustomer": 0, "orders": 4950, "revenue": 142017.089153}, {"YearMonth": "2020-10", "IsNewCustomer": 1, "orders": 3007, "revenue": 54600.479787}, {"YearMonth": "2020-11", "IsNewCustomer": 0, "orders": 4386, "revenue": 128092.94942199999}, {"YearMonth": "2020-11", "IsNewCustomer": 1, "orders": 3015, "revenue": 51156.489817}, {"YearMonth": "2020-12", "IsNewCustomer": 0, "orders": 4268, "revenue": 129429.76908}, {"YearMonth": "2020-12", "IsNewCustomer": 1, "orders": 2095, "revenue": 38102.259867}, {"YearMonth": "2021-01", "IsNewCustomer": 0, "orders": 5818, "revenue": 170383.378772}, {"YearMonth": "2021-01", "IsNewCustomer": 1, "orders": 3109, "revenue": 58727.049799}, {"YearMonth": "2021-02", "IsNewCustomer": 0, "orders": 3128, "revenue": 85006.649551}, {"YearMonth": "2021-02", "IsNewCustomer": 1, "orders": 1984, "revenue": 38622.389816999996}, {"YearMonth": "2021-03", "IsNewCustomer": 0, "orders": 4064, "revenue": 118598.239196}, {"YearMonth": "2021-03", "IsNewCustomer": 1, "orders": 1960, "revenue": 39374.519819}, {"YearMonth": "2021-04", "IsNewCustomer": 0, "orders": 3733, "revenue": 105689.119157}, {"YearMonth": "2021-04", "IsNewCustomer": 1, "orders": 1209, "revenue": 24151.579848999998}, {"YearMonth": "2021-05", "IsNewCustomer": 0, "orders": 3936, "revenue": 110852.329143}, {"YearMonth": "2021-05", "IsNewCustomer": 1, "orders": 1185, "revenue": 25130.109846}, {"YearMonth": "2021-06", "IsNewCustomer": 0, "orders": 4211, "revenue": 116448.82897}, {"YearMonth": "2021-06", "IsNewCustomer": 1, "orders": 1415, "revenue": 30368.269737}, {"YearMonth": "2021-07", "IsNewCustomer": 0, "orders": 4496, "revenue": 133216.539086}, {"YearMonth": "2021-07", "IsNewCustomer": 1, "orders": 2041, "revenue": 40986.869711}, {"YearMonth": "2021-08", "IsNewCustomer": 0, "orders": 2916, "revenue": 84131.599342}, {"YearMonth": "2021-08", "IsNewCustomer": 1, "orders": 1813, "revenue": 40195.99967}, {"YearMonth": "2021-09", "IsNewCustomer": 0, "orders": 3600, "revenue": 106033.779277}, {"YearMonth": "2021-09", "IsNewCustomer": 1, "orders": 1469, "revenue": 31532.569814}, {"YearMonth": "2021-10", "IsNewCustomer": 0, "orders": 3924, "revenue": 104210.019174}, {"YearMonth": "2021-10", "IsNewCustomer": 1, "orders": 1384, "revenue": 27665.199812}, {"YearMonth": "2021-11", "IsNewCustomer": 0, "orders": 4617, "revenue": 138422.868995}, {"YearMonth": "2021-11", "IsNewCustomer": 1, "orders": 1691, "revenue": 34557.739773}, {"YearMonth": "2021-12", "IsNewCustomer": 0, "orders": 3067, "revenue": 88931.659196}, {"YearMonth": "2021-12", "IsNewCustomer": 1, "orders": 1049, "revenue": 21936.259868}, {"YearMonth": "2022-01", "IsNewCustomer": 0, "orders": 5760, "revenue": 158859.158757}, {"YearMonth": "2022-01", "IsNewCustomer": 1, "orders": 2422, "revenue": 46391.399702}, {"YearMonth": "2022-02", "IsNewCustomer": 0, "orders": 2403, "revenue": 63481.209543}, {"YearMonth": "2022-02", "IsNewCustomer": 1, "orders": 1296, "revenue": 24613.019857}, {"YearMonth": "2022-03", "IsNewCustomer": 0, "orders": 3880, "revenue": 113777.66914}, {"YearMonth": "2022-03", "IsNewCustomer": 1, "orders": 2305, "revenue": 44259.859589}, {"YearMonth": "2022-04", "IsNewCustomer": 0, "orders": 3698, "revenue": 96354.039632}, {"YearMonth": "2022-04", "IsNewCustomer": 1, "orders": 1674, "revenue": 33144.789805}, {"YearMonth": "2022-05", "IsNewCustomer": 0, "orders": 3245, "revenue": 89968.61970899999}, {"YearMonth": "2022-05", "IsNewCustomer": 1, "orders": 1249, "revenue": 25633.609848}, {"YearMonth": "2022-06", "IsNewCustomer": 0, "orders": 3191, "revenue": 91249.789611}, {"YearMonth": "2022-06", "IsNewCustomer": 1, "orders": 971, "revenue": 20135.98987}, {"YearMonth": "2022-07", "IsNewCustomer": 0, "orders": 3819, "revenue": 110700.589524}, {"YearMonth": "2022-07", "IsNewCustomer": 1, "orders": 1142, "revenue": 23228.08993}, {"YearMonth": "2022-08", "IsNewCustomer": 0, "orders": 3015, "revenue": 90551.899741}, {"YearMonth": "2022-08", "IsNewCustomer": 1, "orders": 1220, "revenue": 25017.97984}, {"YearMonth": "2022-09", "IsNewCustomer": 0, "orders": 3014, "revenue": 88745.439695}, {"YearMonth": "2022-09", "IsNewCustomer": 1, "orders": 1031, "revenue": 21750.059914999998}, {"YearMonth": "2022-10", "IsNewCustomer": 0, "orders": 3046, "revenue": 84555.759635}, {"YearMonth": "2022-10", "IsNewCustomer": 1, "orders": 1116, "revenue": 22890.529873}, {"YearMonth": "2022-11", "IsNewCustomer": 0, "orders": 3603, "revenue": 111697.35958799999}, {"YearMonth": "2022-11", "IsNewCustomer": 1, "orders": 1104, "revenue": 24376.939911999998}, {"YearMonth": "2022-12", "IsNewCustomer": 0, "orders": 2829, "revenue": 84303.289199}, {"YearMonth": "2022-12", "IsNewCustomer": 1, "orders": 874, "revenue": 18818.179871}, {"YearMonth": "2023-01", "IsNewCustomer": 0, "orders": 4628, "revenue": 143731.608965}, {"YearMonth": "2023-01", "IsNewCustomer": 1, "orders": 1715, "revenue": 36739.82981}, {"YearMonth": "2023-02", "IsNewCustomer": 0, "orders": 2583, "revenue": 72962.009599}, {"YearMonth": "2023-02", "IsNewCustomer": 1, "orders": 1017, "revenue": 22188.959869}, {"YearMonth": "2023-03", "IsNewCustomer": 0, "orders": 3243, "revenue": 101104.139717}, {"YearMonth": "2023-03", "IsNewCustomer": 1, "orders": 1151, "revenue": 25151.969945}, {"YearMonth": "2023-04", "IsNewCustomer": 0, "orders": 2185, "revenue": 68450.569838}, {"YearMonth": "2023-04", "IsNewCustomer": 1, "orders": 738, "revenue": 15719.789898}, {"YearMonth": "2023-05", "IsNewCustomer": 0, "orders": 2964, "revenue": 97752.679695}, {"YearMonth": "2023-05", "IsNewCustomer": 1, "orders": 831, "revenue": 19793.679893}, {"YearMonth": "2023-06", "IsNewCustomer": 0, "orders": 2754, "revenue": 91943.419497}, {"YearMonth": "2023-06", "IsNewCustomer": 1, "orders": 673, "revenue": 15090.059894}, {"YearMonth": "2023-07", "IsNewCustomer": 0, "orders": 3459, "revenue": 114436.959309}, {"YearMonth": "2023-07", "IsNewCustomer": 1, "orders": 912, "revenue": 19684.00987}, {"YearMonth": "2023-08", "IsNewCustomer": 0, "orders": 2498, "revenue": 79717.199779}, {"YearMonth": "2023-08", "IsNewCustomer": 1, "orders": 744, "revenue": 16038.989904}, {"YearMonth": "2023-09", "IsNewCustomer": 0, "orders": 2902, "revenue": 97038.749722}, {"YearMonth": "2023-09", "IsNewCustomer": 1, "orders": 626, "revenue": 15284.709929999999}, {"YearMonth": "2023-10", "IsNewCustomer": 0, "orders": 3050, "revenue": 102065.06971899999}, {"YearMonth": "2023-10", "IsNewCustomer": 1, "orders": 685, "revenue": 15869.759924}, {"YearMonth": "2023-11", "IsNewCustomer": 0, "orders": 2788, "revenue": 96025.909697}, {"YearMonth": "2023-11", "IsNewCustomer": 1, "orders": 421, "revenue": 11098.600369}, {"YearMonth": "2023-12", "IsNewCustomer": 0, "orders": 2701, "revenue": 91445.810113}, {"YearMonth": "2023-12", "IsNewCustomer": 1, "orders": 356, "revenue": 9175.369971}, {"YearMonth": "2024-01", "IsNewCustomer": 0, "orders": 4183, "revenue": 144749.205761}, {"YearMonth": "2024-01", "IsNewCustomer": 1, "orders": 620, "revenue": 15272.499911}, {"YearMonth": "2024-02", "IsNewCustomer": 0, "orders": 2158, "revenue": 69526.409755}, {"YearMonth": "2024-02", "IsNewCustomer": 1, "orders": 451, "revenue": 11049.139968}, {"YearMonth": "2024-03", "IsNewCustomer": 0, "orders": 2603, "revenue": 90423.24983}, {"YearMonth": "2024-03", "IsNewCustomer": 1, "orders": 659, "revenue": 15619.30992}, {"YearMonth": "2024-04", "IsNewCustomer": 0, "orders": 2690, "revenue": 92848.21981}, {"YearMonth": "2024-04", "IsNewCustomer": 1, "orders": 672, "revenue": 15326.990359}, {"YearMonth": "2024-05", "IsNewCustomer": 0, "orders": 2402, "revenue": 79513.84176}, {"YearMonth": "2024-05", "IsNewCustomer": 1, "orders": 643, "revenue": 15185.58994}, {"YearMonth": "2024-06", "IsNewCustomer": 0, "orders": 2309, "revenue": 78142.005723}, {"YearMonth": "2024-06", "IsNewCustomer": 1, "orders": 591, "revenue": 13834.399952}, {"YearMonth": "2024-07", "IsNewCustomer": 0, "orders": 3396, "revenue": 119716.274481}, {"YearMonth": "2024-07", "IsNewCustomer": 1, "orders": 735, "revenue": 16121.233085}, {"YearMonth": "2024-08", "IsNewCustomer": 0, "orders": 2510, "revenue": 84079.410249}, {"YearMonth": "2024-08", "IsNewCustomer": 1, "orders": 452, "revenue": 11205.999989}, {"YearMonth": "2024-09", "IsNewCustomer": 0, "orders": 2507, "revenue": 85851.539864}, {"YearMonth": "2024-09", "IsNewCustomer": 1, "orders": 354, "revenue": 8436.789991}, {"YearMonth": "2024-10", "IsNewCustomer": 0, "orders": 2561, "revenue": 83269.359759}, {"YearMonth": "2024-10", "IsNewCustomer": 1, "orders": 558, "revenue": 12942.139958}, {"YearMonth": "2024-11", "IsNewCustomer": 0, "orders": 3044, "revenue": 101122.999637}, {"YearMonth": "2024-11", "IsNewCustomer": 1, "orders": 313, "revenue": 8215.799986}, {"YearMonth": "2024-12", "IsNewCustomer": 0, "orders": 2037, "revenue": 64335.269243}, {"YearMonth": "2024-12", "IsNewCustomer": 1, "orders": 290, "revenue": 7873.069994}, {"YearMonth": "2025-01", "IsNewCustomer": 0, "orders": 2951, "revenue": 107842.329108}, {"YearMonth": "2025-01", "IsNewCustomer": 1, "orders": 551, "revenue": 14949.889912}, {"YearMonth": "2025-02", "IsNewCustomer": 0, "orders": 2008, "revenue": 68895.23958}, {"YearMonth": "2025-02", "IsNewCustomer": 1, "orders": 410, "revenue": 11544.249972}, {"YearMonth": "2025-03", "IsNewCustomer": 0, "orders": 2111, "revenue": 75393.57957}, {"YearMonth": "2025-03", "IsNewCustomer": 1, "orders": 388, "revenue": 11531.689944}, {"YearMonth": "2025-04", "IsNewCustomer": 0, "orders": 2242, "revenue": 80846.489547}, {"YearMonth": "2025-04", "IsNewCustomer": 1, "orders": 334, "revenue": 9757.800013}, {"YearMonth": "2025-05", "IsNewCustomer": 0, "orders": 2302, "revenue": 85459.009545}, {"YearMonth": "2025-05", "IsNewCustomer": 1, "orders": 329, "revenue": 11065.730017}, {"YearMonth": "2025-06", "IsNewCustomer": 0, "orders": 2028, "revenue": 73664.799492}, {"YearMonth": "2025-06", "IsNewCustomer": 1, "orders": 316, "revenue": 9754.570027}, {"YearMonth": "2025-07", "IsNewCustomer": 0, "orders": 2194, "revenue": 79292.879415}, {"YearMonth": "2025-07", "IsNewCustomer": 1, "orders": 295, "revenue": 8196.159982}, {"YearMonth": "2025-08", "IsNewCustomer": 0, "orders": 2205, "revenue": 79331.479483}, {"YearMonth": "2025-08", "IsNewCustomer": 1, "orders": 289, "revenue": 8497.159963}, {"YearMonth": "2025-09", "IsNewCustomer": 0, "orders": 2028, "revenue": 71760.8603}, {"YearMonth": "2025-09", "IsNewCustomer": 1, "orders": 292, "revenue": 8083.350024}, {"YearMonth": "2025-10", "IsNewCustomer": 0, "orders": 2263, "revenue": 80801.759427}, {"YearMonth": "2025-10", "IsNewCustomer": 1, "orders": 297, "revenue": 8912.37002}, {"YearMonth": "2025-11", "IsNewCustomer": 0, "orders": 1888, "revenue": 67577.569604}, {"YearMonth": "2025-11", "IsNewCustomer": 1, "orders": 229, "revenue": 7219.810006}, {"YearMonth": "2025-12", "IsNewCustomer": 0, "orders": 1758, "revenue": 61019.139616}, {"YearMonth": "2025-12", "IsNewCustomer": 1, "orders": 211, "revenue": 6452.209983}, {"YearMonth": "2026-01", "IsNewCustomer": 0, "orders": 763, "revenue": 29186.339819}, {"YearMonth": "2026-01", "IsNewCustomer": 1, "orders": 125, "revenue": 3785.919989}], "dowMonthly": [{"YearMonth": "2005-11", "DayOfWeek": "Friday", "orders": 1, "revenue": 18.950001}, {"YearMonth": "2005-11", "DayOfWeek": "Wednesday", "orders": 1, "revenue": 18.8999}, {"YearMonth": "2005-12", "DayOfWeek": "Thursday", "orders": 1, "revenue": 17.9}, {"YearMonth": "2006-01", "DayOfWeek": "Friday", "orders": 2, "revenue": 55.349799000000004}, {"YearMonth": "2006-01", "DayOfWeek": "Tuesday", "orders": 1, "revenue": 32.35}, {"YearMonth": "2006-01", "DayOfWeek": "Wednesday", "orders": 1, "revenue": 18.7499}, {"YearMonth": "2006-02", "DayOfWeek": "Friday", "orders": 1, "revenue": 7.95}, {"YearMonth": "2006-02", "DayOfWeek": "Monday", "orders": 3, "revenue": 39.55}, {"YearMonth": "2006-02", "DayOfWeek": "Tuesday", "orders": 1, "revenue": 73.600002}, {"YearMonth": "2006-03", "DayOfWeek": "Friday", "orders": 10, "revenue": 228.119799}, {"YearMonth": "2006-03", "DayOfWeek": "Monday", "orders": 14, "revenue": 258.7474}, {"YearMonth": "2006-03", "DayOfWeek": "Saturday", "orders": 10, "revenue": 182.950001}, {"YearMonth": "2006-03", "DayOfWeek": "Sunday", "orders": 18, "revenue": 326.19719899999996}, {"YearMonth": "2006-03", "DayOfWeek": "Thursday", "orders": 20, "revenue": 438.2994}, {"YearMonth": "2006-03", "DayOfWeek": "Tuesday", "orders": 23, "revenue": 546.519502}, {"YearMonth": "2006-03", "DayOfWeek": "Wednesday", "orders": 16, "revenue": 303.49670299999997}, {"YearMonth": "2006-04", "DayOfWeek": "Friday", "orders": 16, "revenue": 266.596102}, {"YearMonth": "2006-04", "DayOfWeek": "Monday", "orders": 30, "revenue": 527.598903}, {"YearMonth": "2006-04", "DayOfWeek": "Saturday", "orders": 17, "revenue": 286.099702}, {"YearMonth": "2006-04", "DayOfWeek": "Sunday", "orders": 34, "revenue": 578.9961}, {"YearMonth": "2006-04", "DayOfWeek": "Thursday", "orders": 25, "revenue": 337.600302}, {"YearMonth": "2006-04", "DayOfWeek": "Tuesday", "orders": 25, "revenue": 534.044302}, {"YearMonth": "2006-04", "DayOfWeek": "Wednesday", "orders": 24, "revenue": 429.599397}, {"YearMonth": "2006-05", "DayOfWeek": "Friday", "orders": 34, "revenue": 578.745899}, {"YearMonth": "2006-05", "DayOfWeek": "Monday", "orders": 44, "revenue": 692.2492}, {"YearMonth": "2006-05", "DayOfWeek": "Saturday", "orders": 28, "revenue": 465.993801}, {"YearMonth": "2006-05", "DayOfWeek": "Sunday", "orders": 24, "revenue": 375.3496}, {"YearMonth": "2006-05", "DayOfWeek": "Thursday", "orders": 23, "revenue": 479.54949899999997}, {"YearMonth": "2006-05", "DayOfWeek": "Tuesday", "orders": 47, "revenue": 848.538907}, {"YearMonth": "2006-05", "DayOfWeek": "Wednesday", "orders": 44, "revenue": 877.609503}, {"YearMonth": "2006-06", "DayOfWeek": "Friday", "orders": 34, "revenue": 669.794706}, {"YearMonth": "2006-06", "DayOfWeek": "Monday", "orders": 30, "revenue": 567.393601}, {"YearMonth": "2006-06", "DayOfWeek": "Saturday", "orders": 21, "revenue": 334.6467}, {"YearMonth": "2006-06", "DayOfWeek": "Sunday", "orders": 39, "revenue": 825.849603}, {"YearMonth": "2006-06", "DayOfWeek": "Thursday", "orders": 53, "revenue": 902.593805}, {"YearMonth": "2006-06", "DayOfWeek": "Tuesday", "orders": 47, "revenue": 877.993806}, {"YearMonth": "2006-06", "DayOfWeek": "Wednesday", "orders": 41, "revenue": 686.849701}, {"YearMonth": "2006-07", "DayOfWeek": "Friday", "orders": 40, "revenue": 749.540303}, {"YearMonth": "2006-07", "DayOfWeek": "Monday", "orders": 72, "revenue": 1233.687903}, {"YearMonth": "2006-07", "DayOfWeek": "Saturday", "orders": 39, "revenue": 784.642806}, {"YearMonth": "2006-07", "DayOfWeek": "Sunday", "orders": 35, "revenue": 613.2158979999999}, {"YearMonth": "2006-07", "DayOfWeek": "Thursday", "orders": 40, "revenue": 702.744}, {"YearMonth": "2006-07", "DayOfWeek": "Tuesday", "orders": 37, "revenue": 653.3963}, {"YearMonth": "2006-07", "DayOfWeek": "Wednesday", "orders": 39, "revenue": 744.799704}, {"YearMonth": "2006-08", "DayOfWeek": "Friday", "orders": 48, "revenue": 826.9584179999999}, {"YearMonth": "2006-08", "DayOfWeek": "Monday", "orders": 41, "revenue": 880.944699}, {"YearMonth": "2006-08", "DayOfWeek": "Saturday", "orders": 17, "revenue": 249.396201}, {"YearMonth": "2006-08", "DayOfWeek": "Sunday", "orders": 23, "revenue": 480.120298}, {"YearMonth": "2006-08", "DayOfWeek": "Thursday", "orders": 51, "revenue": 1100.938806}, {"YearMonth": "2006-08", "DayOfWeek": "Tuesday", "orders": 62, "revenue": 1348.092411}, {"YearMonth": "2006-08", "DayOfWeek": "Wednesday", "orders": 41, "revenue": 754.2480019999999}, {"YearMonth": "2006-09", "DayOfWeek": "Friday", "orders": 54, "revenue": 1084.573594}, {"YearMonth": "2006-09", "DayOfWeek": "Monday", "orders": 58, "revenue": 1010.1662249999999}, {"YearMonth": "2006-09", "DayOfWeek": "Saturday", "orders": 43, "revenue": 835.836132}, {"YearMonth": "2006-09", "DayOfWeek": "Sunday", "orders": 41, "revenue": 853.4361279999999}, {"YearMonth": "2006-09", "DayOfWeek": "Thursday", "orders": 54, "revenue": 944.8639929999999}, {"YearMonth": "2006-09", "DayOfWeek": "Tuesday", "orders": 57, "revenue": 997.320203}, {"YearMonth": "2006-09", "DayOfWeek": "Wednesday", "orders": 62, "revenue": 1102.661411}, {"YearMonth": "2006-10", "DayOfWeek": "Friday", "orders": 59, "revenue": 1042.8021899999999}, {"YearMonth": "2006-10", "DayOfWeek": "Monday", "orders": 83, "revenue": 1703.864333}, {"YearMonth": "2006-10", "DayOfWeek": "Saturday", "orders": 46, "revenue": 924.714401}, {"YearMonth": "2006-10", "DayOfWeek": "Sunday", "orders": 70, "revenue": 1233.946677}, {"YearMonth": "2006-10", "DayOfWeek": "Thursday", "orders": 58, "revenue": 1046.472317}, {"YearMonth": "2006-10", "DayOfWeek": "Tuesday", "orders": 78, "revenue": 1248.1490039999999}, {"YearMonth": "2006-10", "DayOfWeek": "Wednesday", "orders": 79, "revenue": 1575.70594}, {"YearMonth": "2006-11", "DayOfWeek": "Friday", "orders": 56, "revenue": 1161.108691}, {"YearMonth": "2006-11", "DayOfWeek": "Monday", "orders": 64, "revenue": 1032.359839}, {"YearMonth": "2006-11", "DayOfWeek": "Saturday", "orders": 33, "revenue": 607.002302}, {"YearMonth": "2006-11", "DayOfWeek": "Sunday", "orders": 57, "revenue": 946.918414}, {"YearMonth": "2006-11", "DayOfWeek": "Thursday", "orders": 84, "revenue": 1394.899898}, {"YearMonth": "2006-11", "DayOfWeek": "Tuesday", "orders": 78, "revenue": 1408.813995}, {"YearMonth": "2006-11", "DayOfWeek": "Wednesday", "orders": 80, "revenue": 1485.704104}, {"YearMonth": "2006-12", "DayOfWeek": "Friday", "orders": 62, "revenue": 1185.164008}, {"YearMonth": "2006-12", "DayOfWeek": "Monday", "orders": 79, "revenue": 1466.380697}, {"YearMonth": "2006-12", "DayOfWeek": "Saturday", "orders": 48, "revenue": 884.793603}, {"YearMonth": "2006-12", "DayOfWeek": "Sunday", "orders": 60, "revenue": 1109.082304}, {"YearMonth": "2006-12", "DayOfWeek": "Thursday", "orders": 68, "revenue": 1305.032399}, {"YearMonth": "2006-12", "DayOfWeek": "Tuesday", "orders": 76, "revenue": 1436.894609}, {"YearMonth": "2006-12", "DayOfWeek": "Wednesday", "orders": 64, "revenue": 1315.102241}, {"YearMonth": "2007-01", "DayOfWeek": "Friday", "orders": 78, "revenue": 1249.773502}, {"YearMonth": "2007-01", "DayOfWeek": "Monday", "orders": 111, "revenue": 1830.735293}, {"YearMonth": "2007-01", "DayOfWeek": "Saturday", "orders": 37, "revenue": 672.6506019999999}, {"YearMonth": "2007-01", "DayOfWeek": "Sunday", "orders": 81, "revenue": 1570.558396}, {"YearMonth": "2007-01", "DayOfWeek": "Thursday", "orders": 80, "revenue": 1317.75911}, {"YearMonth": "2007-01", "DayOfWeek": "Tuesday", "orders": 128, "revenue": 2504.630214}, {"YearMonth": "2007-01", "DayOfWeek": "Wednesday", "orders": 124, "revenue": 2340.028299}, {"YearMonth": "2007-02", "DayOfWeek": "Friday", "orders": 77, "revenue": 1374.991709}, {"YearMonth": "2007-02", "DayOfWeek": "Monday", "orders": 88, "revenue": 1739.755412}, {"YearMonth": "2007-02", "DayOfWeek": "Saturday", "orders": 45, "revenue": 1133.644107}, {"YearMonth": "2007-02", "DayOfWeek": "Sunday", "orders": 62, "revenue": 1098.707709}, {"YearMonth": "2007-02", "DayOfWeek": "Thursday", "orders": 101, "revenue": 1730.4837029999999}, {"YearMonth": "2007-02", "DayOfWeek": "Tuesday", "orders": 141, "revenue": 2624.205826}, {"YearMonth": "2007-02", "DayOfWeek": "Wednesday", "orders": 146, "revenue": 2514.53793}, {"YearMonth": "2007-03", "DayOfWeek": "Friday", "orders": 93, "revenue": 1600.554107}, {"YearMonth": "2007-03", "DayOfWeek": "Monday", "orders": 86, "revenue": 1695.522606}, {"YearMonth": "2007-03", "DayOfWeek": "Saturday", "orders": 46, "revenue": 1175.890704}, {"YearMonth": "2007-03", "DayOfWeek": "Sunday", "orders": 58, "revenue": 1081.140802}, {"YearMonth": "2007-03", "DayOfWeek": "Thursday", "orders": 96, "revenue": 1899.886212}, {"YearMonth": "2007-03", "DayOfWeek": "Tuesday", "orders": 97, "revenue": 1843.527717}, {"YearMonth": "2007-03", "DayOfWeek": "Wednesday", "orders": 79, "revenue": 1486.715296}, {"YearMonth": "2007-04", "DayOfWeek": "Friday", "orders": 42, "revenue": 769.7968999999999}, {"YearMonth": "2007-04", "DayOfWeek": "Monday", "orders": 107, "revenue": 2092.800907}, {"YearMonth": "2007-04", "DayOfWeek": "Saturday", "orders": 39, "revenue": 851.228707}, {"YearMonth": "2007-04", "DayOfWeek": "Sunday", "orders": 51, "revenue": 959.878703}, {"YearMonth": "2007-04", "DayOfWeek": "Thursday", "orders": 78, "revenue": 1555.31511}, {"YearMonth": "2007-04", "DayOfWeek": "Tuesday", "orders": 74, "revenue": 1396.271503}, {"YearMonth": "2007-04", "DayOfWeek": "Wednesday", "orders": 61, "revenue": 1203.378105}, {"YearMonth": "2007-05", "DayOfWeek": "Friday", "orders": 64, "revenue": 1116.0865039999999}, {"YearMonth": "2007-05", "DayOfWeek": "Monday", "orders": 77, "revenue": 1553.3468639999999}, {"YearMonth": "2007-05", "DayOfWeek": "Saturday", "orders": 39, "revenue": 793.998105}, {"YearMonth": "2007-05", "DayOfWeek": "Sunday", "orders": 38, "revenue": 649.0378}, {"YearMonth": "2007-05", "DayOfWeek": "Thursday", "orders": 109, "revenue": 2129.103028}, {"YearMonth": "2007-05", "DayOfWeek": "Tuesday", "orders": 94, "revenue": 1703.3837469999999}, {"YearMonth": "2007-05", "DayOfWeek": "Wednesday", "orders": 94, "revenue": 1915.672812}, {"YearMonth": "2007-06", "DayOfWeek": "Friday", "orders": 85, "revenue": 1680.8401489999999}, {"YearMonth": "2007-06", "DayOfWeek": "Monday", "orders": 115, "revenue": 2271.460506}, {"YearMonth": "2007-06", "DayOfWeek": "Saturday", "orders": 51, "revenue": 1045.780561}, {"YearMonth": "2007-06", "DayOfWeek": "Sunday", "orders": 44, "revenue": 898.076051}, {"YearMonth": "2007-06", "DayOfWeek": "Thursday", "orders": 68, "revenue": 1348.852008}, {"YearMonth": "2007-06", "DayOfWeek": "Tuesday", "orders": 86, "revenue": 1723.737111}, {"YearMonth": "2007-06", "DayOfWeek": "Wednesday", "orders": 84, "revenue": 1611.734768}, {"YearMonth": "2007-07", "DayOfWeek": "Friday", "orders": 57, "revenue": 1203.598905}, {"YearMonth": "2007-07", "DayOfWeek": "Monday", "orders": 120, "revenue": 2543.609412}, {"YearMonth": "2007-07", "DayOfWeek": "Saturday", "orders": 44, "revenue": 1034.822802}, {"YearMonth": "2007-07", "DayOfWeek": "Sunday", "orders": 64, "revenue": 1372.335896}, {"YearMonth": "2007-07", "DayOfWeek": "Thursday", "orders": 62, "revenue": 1328.650004}, {"YearMonth": "2007-07", "DayOfWeek": "Tuesday", "orders": 104, "revenue": 2008.413713}, {"YearMonth": "2007-07", "DayOfWeek": "Wednesday", "orders": 73, "revenue": 1527.071902}, {"YearMonth": "2007-08", "DayOfWeek": "Friday", "orders": 71, "revenue": 1666.143207}, {"YearMonth": "2007-08", "DayOfWeek": "Monday", "orders": 63, "revenue": 1319.558407}, {"YearMonth": "2007-08", "DayOfWeek": "Saturday", "orders": 44, "revenue": 838.362301}, {"YearMonth": "2007-08", "DayOfWeek": "Sunday", "orders": 48, "revenue": 927.6320039999999}, {"YearMonth": "2007-08", "DayOfWeek": "Thursday", "orders": 111, "revenue": 2370.851929}, {"YearMonth": "2007-08", "DayOfWeek": "Tuesday", "orders": 61, "revenue": 1220.054801}, {"YearMonth": "2007-08", "DayOfWeek": "Wednesday", "orders": 93, "revenue": 1683.3171989999998}, {"YearMonth": "2007-09", "DayOfWeek": "Friday", "orders": 71, "revenue": 1434.444112}, {"YearMonth": "2007-09", "DayOfWeek": "Monday", "orders": 68, "revenue": 1236.035005}, {"YearMonth": "2007-09", "DayOfWeek": "Saturday", "orders": 48, "revenue": 855.293935}, {"YearMonth": "2007-09", "DayOfWeek": "Sunday", "orders": 86, "revenue": 1592.5089}, {"YearMonth": "2007-09", "DayOfWeek": "Thursday", "orders": 63, "revenue": 1260.203607}, {"YearMonth": "2007-09", "DayOfWeek": "Tuesday", "orders": 81, "revenue": 1824.0475139999999}, {"YearMonth": "2007-09", "DayOfWeek": "Wednesday", "orders": 76, "revenue": 1469.124802}, {"YearMonth": "2007-10", "DayOfWeek": "Friday", "orders": 54, "revenue": 1112.140738}, {"YearMonth": "2007-10", "DayOfWeek": "Monday", "orders": 87, "revenue": 1787.635904}, {"YearMonth": "2007-10", "DayOfWeek": "Saturday", "orders": 29, "revenue": 657.597003}, {"YearMonth": "2007-10", "DayOfWeek": "Sunday", "orders": 50, "revenue": 2317.2249300000003}, {"YearMonth": "2007-10", "DayOfWeek": "Thursday", "orders": 68, "revenue": 1493.02551}, {"YearMonth": "2007-10", "DayOfWeek": "Tuesday", "orders": 87, "revenue": 1672.963508}, {"YearMonth": "2007-10", "DayOfWeek": "Wednesday", "orders": 81, "revenue": 1659.3642479999999}, {"YearMonth": "2007-11", "DayOfWeek": "Friday", "orders": 80, "revenue": 1731.8722089999999}, {"YearMonth": "2007-11", "DayOfWeek": "Monday", "orders": 86, "revenue": 1762.2390169999999}, {"YearMonth": "2007-11", "DayOfWeek": "Saturday", "orders": 38, "revenue": 866.7951009999999}, {"YearMonth": "2007-11", "DayOfWeek": "Sunday", "orders": 47, "revenue": 906.966129}, {"YearMonth": "2007-11", "DayOfWeek": "Thursday", "orders": 75, "revenue": 1555.857514}, {"YearMonth": "2007-11", "DayOfWeek": "Tuesday", "orders": 66, "revenue": 1194.62401}, {"YearMonth": "2007-11", "DayOfWeek": "Wednesday", "orders": 75, "revenue": 1601.530806}, {"YearMonth": "2007-12", "DayOfWeek": "Friday", "orders": 48, "revenue": 995.900619}, {"YearMonth": "2007-12", "DayOfWeek": "Monday", "orders": 78, "revenue": 1705.0230099999999}, {"YearMonth": "2007-12", "DayOfWeek": "Saturday", "orders": 39, "revenue": 880.854101}, {"YearMonth": "2007-12", "DayOfWeek": "Sunday", "orders": 54, "revenue": 1034.634302}, {"YearMonth": "2007-12", "DayOfWeek": "Thursday", "orders": 50, "revenue": 1113.647105}, {"YearMonth": "2007-12", "DayOfWeek": "Tuesday", "orders": 57, "revenue": 1076.694704}, {"YearMonth": "2007-12", "DayOfWeek": "Wednesday", "orders": 48, "revenue": 899.9930059999999}, {"YearMonth": "2008-01", "DayOfWeek": "Friday", "orders": 67, "revenue": 1284.850911}, {"YearMonth": "2008-01", "DayOfWeek": "Monday", "orders": 133, "revenue": 2563.835311}, {"YearMonth": "2008-01", "DayOfWeek": "Saturday", "orders": 56, "revenue": 1432.473107}, {"YearMonth": "2008-01", "DayOfWeek": "Sunday", "orders": 73, "revenue": 1422.218404}, {"YearMonth": "2008-01", "DayOfWeek": "Thursday", "orders": 92, "revenue": 1737.8151189999999}, {"YearMonth": "2008-01", "DayOfWeek": "Tuesday", "orders": 115, "revenue": 2428.724009}, {"YearMonth": "2008-01", "DayOfWeek": "Wednesday", "orders": 118, "revenue": 2371.640959}, {"YearMonth": "2008-02", "DayOfWeek": "Friday", "orders": 70, "revenue": 1316.046102}, {"YearMonth": "2008-02", "DayOfWeek": "Monday", "orders": 100, "revenue": 2065.649112}, {"YearMonth": "2008-02", "DayOfWeek": "Saturday", "orders": 48, "revenue": 1195.400798}, {"YearMonth": "2008-02", "DayOfWeek": "Sunday", "orders": 63, "revenue": 1428.750522}, {"YearMonth": "2008-02", "DayOfWeek": "Thursday", "orders": 95, "revenue": 1942.707128}, {"YearMonth": "2008-02", "DayOfWeek": "Tuesday", "orders": 74, "revenue": 1509.545709}, {"YearMonth": "2008-02", "DayOfWeek": "Wednesday", "orders": 71, "revenue": 1573.941909}, {"YearMonth": "2008-03", "DayOfWeek": "Friday", "orders": 65, "revenue": 1250.5255}, {"YearMonth": "2008-03", "DayOfWeek": "Monday", "orders": 128, "revenue": 2574.094303}, {"YearMonth": "2008-03", "DayOfWeek": "Saturday", "orders": 78, "revenue": 1397.410207}, {"YearMonth": "2008-03", "DayOfWeek": "Sunday", "orders": 73, "revenue": 1474.011802}, {"YearMonth": "2008-03", "DayOfWeek": "Thursday", "orders": 93, "revenue": 1891.297609}, {"YearMonth": "2008-03", "DayOfWeek": "Tuesday", "orders": 93, "revenue": 2002.077554}, {"YearMonth": "2008-03", "DayOfWeek": "Wednesday", "orders": 95, "revenue": 2079.174725}, {"YearMonth": "2008-04", "DayOfWeek": "Friday", "orders": 78, "revenue": 1615.5349119999998}, {"YearMonth": "2008-04", "DayOfWeek": "Monday", "orders": 88, "revenue": 1634.738711}, {"YearMonth": "2008-04", "DayOfWeek": "Saturday", "orders": 40, "revenue": 836.104697}, {"YearMonth": "2008-04", "DayOfWeek": "Sunday", "orders": 54, "revenue": 1086.177807}, {"YearMonth": "2008-04", "DayOfWeek": "Thursday", "orders": 87, "revenue": 1528.918114}, {"YearMonth": "2008-04", "DayOfWeek": "Tuesday", "orders": 94, "revenue": 1648.902012}, {"YearMonth": "2008-04", "DayOfWeek": "Wednesday", "orders": 124, "revenue": 2310.677406}, {"YearMonth": "2008-05", "DayOfWeek": "Friday", "orders": 87, "revenue": 1611.193607}, {"YearMonth": "2008-05", "DayOfWeek": "Monday", "orders": 127, "revenue": 2493.952704}, {"YearMonth": "2008-05", "DayOfWeek": "Saturday", "orders": 58, "revenue": 1217.79051}, {"YearMonth": "2008-05", "DayOfWeek": "Sunday", "orders": 47, "revenue": 988.79901}, {"YearMonth": "2008-05", "DayOfWeek": "Thursday", "orders": 100, "revenue": 1882.898218}, {"YearMonth": "2008-05", "DayOfWeek": "Tuesday", "orders": 99, "revenue": 2091.421618}, {"YearMonth": "2008-05", "DayOfWeek": "Wednesday", "orders": 95, "revenue": 1767.578212}, {"YearMonth": "2008-06", "DayOfWeek": "Friday", "orders": 107, "revenue": 2219.020109}, {"YearMonth": "2008-06", "DayOfWeek": "Monday", "orders": 177, "revenue": 3788.369045}, {"YearMonth": "2008-06", "DayOfWeek": "Saturday", "orders": 64, "revenue": 1274.808708}, {"YearMonth": "2008-06", "DayOfWeek": "Sunday", "orders": 112, "revenue": 2181.2703149999998}, {"YearMonth": "2008-06", "DayOfWeek": "Thursday", "orders": 117, "revenue": 2072.393522}, {"YearMonth": "2008-06", "DayOfWeek": "Tuesday", "orders": 146, "revenue": 2901.647721}, {"YearMonth": "2008-06", "DayOfWeek": "Wednesday", "orders": 154, "revenue": 3047.218421}, {"YearMonth": "2008-07", "DayOfWeek": "Friday", "orders": 81, "revenue": 1440.437241}, {"YearMonth": "2008-07", "DayOfWeek": "Monday", "orders": 115, "revenue": 2016.2768429999999}, {"YearMonth": "2008-07", "DayOfWeek": "Saturday", "orders": 61, "revenue": 1279.4347089999999}, {"YearMonth": "2008-07", "DayOfWeek": "Sunday", "orders": 80, "revenue": 1531.442007}, {"YearMonth": "2008-07", "DayOfWeek": "Thursday", "orders": 164, "revenue": 3151.204904}, {"YearMonth": "2008-07", "DayOfWeek": "Tuesday", "orders": 184, "revenue": 3586.012842}, {"YearMonth": "2008-07", "DayOfWeek": "Wednesday", "orders": 148, "revenue": 3033.745614}, {"YearMonth": "2008-08", "DayOfWeek": "Friday", "orders": 168, "revenue": 2980.676523}, {"YearMonth": "2008-08", "DayOfWeek": "Monday", "orders": 191, "revenue": 3784.454227}, {"YearMonth": "2008-08", "DayOfWeek": "Saturday", "orders": 136, "revenue": 2592.602319}, {"YearMonth": "2008-08", "DayOfWeek": "Sunday", "orders": 149, "revenue": 2609.268227}, {"YearMonth": "2008-08", "DayOfWeek": "Thursday", "orders": 152, "revenue": 2592.08331}, {"YearMonth": "2008-08", "DayOfWeek": "Tuesday", "orders": 171, "revenue": 2979.17152}, {"YearMonth": "2008-08", "DayOfWeek": "Wednesday", "orders": 181, "revenue": 3663.250923}, {"YearMonth": "2008-09", "DayOfWeek": "Friday", "orders": 97, "revenue": 1725.966513}, {"YearMonth": "2008-09", "DayOfWeek": "Monday", "orders": 239, "revenue": 4989.986543}, {"YearMonth": "2008-09", "DayOfWeek": "Saturday", "orders": 68, "revenue": 1358.907502}, {"YearMonth": "2008-09", "DayOfWeek": "Sunday", "orders": 106, "revenue": 2062.796646}, {"YearMonth": "2008-09", "DayOfWeek": "Thursday", "orders": 115, "revenue": 2236.295217}, {"YearMonth": "2008-09", "DayOfWeek": "Tuesday", "orders": 202, "revenue": 3996.836217}, {"YearMonth": "2008-09", "DayOfWeek": "Wednesday", "orders": 137, "revenue": 2923.723102}, {"YearMonth": "2008-10", "DayOfWeek": "Friday", "orders": 169, "revenue": 3633.148137}, {"YearMonth": "2008-10", "DayOfWeek": "Monday", "orders": 197, "revenue": 3922.642002}, {"YearMonth": "2008-10", "DayOfWeek": "Saturday", "orders": 103, "revenue": 2220.777311}, {"YearMonth": "2008-10", "DayOfWeek": "Sunday", "orders": 145, "revenue": 2778.23992}, {"YearMonth": "2008-10", "DayOfWeek": "Thursday", "orders": 216, "revenue": 4487.731637}, {"YearMonth": "2008-10", "DayOfWeek": "Tuesday", "orders": 186, "revenue": 3569.454423}, {"YearMonth": "2008-10", "DayOfWeek": "Wednesday", "orders": 201, "revenue": 4201.106023}, {"YearMonth": "2008-11", "DayOfWeek": "Friday", "orders": 141, "revenue": 3044.09495}, {"YearMonth": "2008-11", "DayOfWeek": "Monday", "orders": 205, "revenue": 4286.970301}, {"YearMonth": "2008-11", "DayOfWeek": "Saturday", "orders": 153, "revenue": 3133.2932419999997}, {"YearMonth": "2008-11", "DayOfWeek": "Sunday", "orders": 161, "revenue": 3260.68278}, {"YearMonth": "2008-11", "DayOfWeek": "Thursday", "orders": 181, "revenue": 3684.439318}, {"YearMonth": "2008-11", "DayOfWeek": "Tuesday", "orders": 192, "revenue": 3620.411411}, {"YearMonth": "2008-11", "DayOfWeek": "Wednesday", "orders": 215, "revenue": 4410.612519}, {"YearMonth": "2008-12", "DayOfWeek": "Friday", "orders": 108, "revenue": 2584.979204}, {"YearMonth": "2008-12", "DayOfWeek": "Monday", "orders": 217, "revenue": 4384.146613}, {"YearMonth": "2008-12", "DayOfWeek": "Saturday", "orders": 84, "revenue": 1633.8268170000001}, {"YearMonth": "2008-12", "DayOfWeek": "Sunday", "orders": 102, "revenue": 2103.2032480000003}, {"YearMonth": "2008-12", "DayOfWeek": "Thursday", "orders": 123, "revenue": 2575.561218}, {"YearMonth": "2008-12", "DayOfWeek": "Tuesday", "orders": 221, "revenue": 4448.706117}, {"YearMonth": "2008-12", "DayOfWeek": "Wednesday", "orders": 133, "revenue": 2584.535611}, {"YearMonth": "2009-01", "DayOfWeek": "Friday", "orders": 245, "revenue": 4986.441522}, {"YearMonth": "2009-01", "DayOfWeek": "Monday", "orders": 259, "revenue": 5253.964488}, {"YearMonth": "2009-01", "DayOfWeek": "Saturday", "orders": 182, "revenue": 4109.952549}, {"YearMonth": "2009-01", "DayOfWeek": "Sunday", "orders": 176, "revenue": 3734.9252970000002}, {"YearMonth": "2009-01", "DayOfWeek": "Thursday", "orders": 273, "revenue": 5716.440902}, {"YearMonth": "2009-01", "DayOfWeek": "Tuesday", "orders": 233, "revenue": 4971.852926}, {"YearMonth": "2009-01", "DayOfWeek": "Wednesday", "orders": 300, "revenue": 6323.921881}, {"YearMonth": "2009-02", "DayOfWeek": "Friday", "orders": 190, "revenue": 3879.028734}, {"YearMonth": "2009-02", "DayOfWeek": "Monday", "orders": 272, "revenue": 5996.465141}, {"YearMonth": "2009-02", "DayOfWeek": "Saturday", "orders": 115, "revenue": 2564.597801}, {"YearMonth": "2009-02", "DayOfWeek": "Sunday", "orders": 191, "revenue": 4424.650584}, {"YearMonth": "2009-02", "DayOfWeek": "Thursday", "orders": 211, "revenue": 4378.876185}, {"YearMonth": "2009-02", "DayOfWeek": "Tuesday", "orders": 282, "revenue": 6878.212876}, {"YearMonth": "2009-02", "DayOfWeek": "Wednesday", "orders": 226, "revenue": 4777.549283}, {"YearMonth": "2009-03", "DayOfWeek": "Friday", "orders": 203, "revenue": 4458.154821}, {"YearMonth": "2009-03", "DayOfWeek": "Monday", "orders": 355, "revenue": 7964.699633}, {"YearMonth": "2009-03", "DayOfWeek": "Saturday", "orders": 130, "revenue": 2827.772402}, {"YearMonth": "2009-03", "DayOfWeek": "Sunday", "orders": 212, "revenue": 4741.424145}, {"YearMonth": "2009-03", "DayOfWeek": "Thursday", "orders": 245, "revenue": 5150.472421}, {"YearMonth": "2009-03", "DayOfWeek": "Tuesday", "orders": 323, "revenue": 6592.767129}, {"YearMonth": "2009-03", "DayOfWeek": "Wednesday", "orders": 257, "revenue": 5500.898766}, {"YearMonth": "2009-04", "DayOfWeek": "Friday", "orders": 189, "revenue": 4187.141122}, {"YearMonth": "2009-04", "DayOfWeek": "Monday", "orders": 283, "revenue": 6070.675928}, {"YearMonth": "2009-04", "DayOfWeek": "Saturday", "orders": 150, "revenue": 3262.273809}, {"YearMonth": "2009-04", "DayOfWeek": "Sunday", "orders": 142, "revenue": 3153.711915}, {"YearMonth": "2009-04", "DayOfWeek": "Thursday", "orders": 342, "revenue": 7892.104743}, {"YearMonth": "2009-04", "DayOfWeek": "Tuesday", "orders": 297, "revenue": 6193.232606}, {"YearMonth": "2009-04", "DayOfWeek": "Wednesday", "orders": 294, "revenue": 6536.121492}, {"YearMonth": "2009-05", "DayOfWeek": "Friday", "orders": 392, "revenue": 8683.090275}, {"YearMonth": "2009-05", "DayOfWeek": "Monday", "orders": 322, "revenue": 6952.942831}, {"YearMonth": "2009-05", "DayOfWeek": "Saturday", "orders": 229, "revenue": 5207.081812}, {"YearMonth": "2009-05", "DayOfWeek": "Sunday", "orders": 240, "revenue": 5515.67669}, {"YearMonth": "2009-05", "DayOfWeek": "Thursday", "orders": 231, "revenue": 5264.667557}, {"YearMonth": "2009-05", "DayOfWeek": "Tuesday", "orders": 320, "revenue": 6326.662454}, {"YearMonth": "2009-05", "DayOfWeek": "Wednesday", "orders": 281, "revenue": 6478.56588}, {"YearMonth": "2009-06", "DayOfWeek": "Friday", "orders": 199, "revenue": 4679.494813}, {"YearMonth": "2009-06", "DayOfWeek": "Monday", "orders": 366, "revenue": 7981.651789}, {"YearMonth": "2009-06", "DayOfWeek": "Saturday", "orders": 159, "revenue": 3623.791463}, {"YearMonth": "2009-06", "DayOfWeek": "Sunday", "orders": 187, "revenue": 3921.023283}, {"YearMonth": "2009-06", "DayOfWeek": "Thursday", "orders": 255, "revenue": 5631.6383}, {"YearMonth": "2009-06", "DayOfWeek": "Tuesday", "orders": 336, "revenue": 7148.282197}, {"YearMonth": "2009-06", "DayOfWeek": "Wednesday", "orders": 302, "revenue": 6421.470852}, {"YearMonth": "2009-07", "DayOfWeek": "Friday", "orders": 269, "revenue": 6632.467837}, {"YearMonth": "2009-07", "DayOfWeek": "Monday", "orders": 306, "revenue": 7217.239419}, {"YearMonth": "2009-07", "DayOfWeek": "Saturday", "orders": 142, "revenue": 3224.474099}, {"YearMonth": "2009-07", "DayOfWeek": "Sunday", "orders": 185, "revenue": 4540.822127}, {"YearMonth": "2009-07", "DayOfWeek": "Thursday", "orders": 290, "revenue": 6658.1878130000005}, {"YearMonth": "2009-07", "DayOfWeek": "Tuesday", "orders": 308, "revenue": 6762.508849}, {"YearMonth": "2009-07", "DayOfWeek": "Wednesday", "orders": 333, "revenue": 7253.876623}, {"YearMonth": "2009-08", "DayOfWeek": "Friday", "orders": 267, "revenue": 6604.435057}, {"YearMonth": "2009-08", "DayOfWeek": "Monday", "orders": 390, "revenue": 9261.099612}, {"YearMonth": "2009-08", "DayOfWeek": "Saturday", "orders": 182, "revenue": 3978.956327}, {"YearMonth": "2009-08", "DayOfWeek": "Sunday", "orders": 230, "revenue": 5793.339632}, {"YearMonth": "2009-08", "DayOfWeek": "Thursday", "orders": 246, "revenue": 5488.233247}, {"YearMonth": "2009-08", "DayOfWeek": "Tuesday", "orders": 296, "revenue": 6502.88914}, {"YearMonth": "2009-08", "DayOfWeek": "Wednesday", "orders": 247, "revenue": 5520.366493}, {"YearMonth": "2009-09", "DayOfWeek": "Friday", "orders": 204, "revenue": 4856.024523}, {"YearMonth": "2009-09", "DayOfWeek": "Monday", "orders": 248, "revenue": 6135.001331}, {"YearMonth": "2009-09", "DayOfWeek": "Saturday", "orders": 143, "revenue": 3562.653667}, {"YearMonth": "2009-09", "DayOfWeek": "Sunday", "orders": 179, "revenue": 4359.256162}, {"YearMonth": "2009-09", "DayOfWeek": "Thursday", "orders": 212, "revenue": 4874.950757}, {"YearMonth": "2009-09", "DayOfWeek": "Tuesday", "orders": 326, "revenue": 7753.458846}, {"YearMonth": "2009-09", "DayOfWeek": "Wednesday", "orders": 309, "revenue": 6991.126075}, {"YearMonth": "2009-10", "DayOfWeek": "Friday", "orders": 223, "revenue": 5321.705236}, {"YearMonth": "2009-10", "DayOfWeek": "Monday", "orders": 297, "revenue": 7098.545664}, {"YearMonth": "2009-10", "DayOfWeek": "Saturday", "orders": 181, "revenue": 4261.116527}, {"YearMonth": "2009-10", "DayOfWeek": "Sunday", "orders": 201, "revenue": 4970.123835}, {"YearMonth": "2009-10", "DayOfWeek": "Thursday", "orders": 291, "revenue": 6924.7718780000005}, {"YearMonth": "2009-10", "DayOfWeek": "Tuesday", "orders": 247, "revenue": 5433.263759}, {"YearMonth": "2009-10", "DayOfWeek": "Wednesday", "orders": 252, "revenue": 5573.146922}, {"YearMonth": "2009-11", "DayOfWeek": "Friday", "orders": 216, "revenue": 5329.426668}, {"YearMonth": "2009-11", "DayOfWeek": "Monday", "orders": 408, "revenue": 9297.655973}, {"YearMonth": "2009-11", "DayOfWeek": "Saturday", "orders": 141, "revenue": 3192.9739680000002}, {"YearMonth": "2009-11", "DayOfWeek": "Sunday", "orders": 235, "revenue": 5462.893344}, {"YearMonth": "2009-11", "DayOfWeek": "Thursday", "orders": 248, "revenue": 5549.857746}, {"YearMonth": "2009-11", "DayOfWeek": "Tuesday", "orders": 309, "revenue": 6631.27492}, {"YearMonth": "2009-11", "DayOfWeek": "Wednesday", "orders": 266, "revenue": 5957.575787}, {"YearMonth": "2009-12", "DayOfWeek": "Friday", "orders": 112, "revenue": 2759.752507}, {"YearMonth": "2009-12", "DayOfWeek": "Monday", "orders": 214, "revenue": 5194.145416}, {"YearMonth": "2009-12", "DayOfWeek": "Saturday", "orders": 122, "revenue": 2834.249982}, {"YearMonth": "2009-12", "DayOfWeek": "Sunday", "orders": 138, "revenue": 3621.879414}, {"YearMonth": "2009-12", "DayOfWeek": "Thursday", "orders": 240, "revenue": 5779.828773}, {"YearMonth": "2009-12", "DayOfWeek": "Tuesday", "orders": 263, "revenue": 6076.8246500000005}, {"YearMonth": "2009-12", "DayOfWeek": "Wednesday", "orders": 333, "revenue": 7851.811683}, {"YearMonth": "2010-01", "DayOfWeek": "Friday", "orders": 240, "revenue": 5779.667345}, {"YearMonth": "2010-01", "DayOfWeek": "Monday", "orders": 453, "revenue": 11090.261782}, {"YearMonth": "2010-01", "DayOfWeek": "Saturday", "orders": 216, "revenue": 5288.452862}, {"YearMonth": "2010-01", "DayOfWeek": "Sunday", "orders": 304, "revenue": 7290.537843}, {"YearMonth": "2010-01", "DayOfWeek": "Thursday", "orders": 233, "revenue": 5563.435829}, {"YearMonth": "2010-01", "DayOfWeek": "Tuesday", "orders": 420, "revenue": 10553.252414999999}, {"YearMonth": "2010-01", "DayOfWeek": "Wednesday", "orders": 273, "revenue": 6474.638524}, {"YearMonth": "2010-02", "DayOfWeek": "Friday", "orders": 231, "revenue": 6253.337796}, {"YearMonth": "2010-02", "DayOfWeek": "Monday", "orders": 333, "revenue": 8222.868526}, {"YearMonth": "2010-02", "DayOfWeek": "Saturday", "orders": 181, "revenue": 4085.6927029999997}, {"YearMonth": "2010-02", "DayOfWeek": "Sunday", "orders": 213, "revenue": 4884.5994}, {"YearMonth": "2010-02", "DayOfWeek": "Thursday", "orders": 224, "revenue": 5200.774059}, {"YearMonth": "2010-02", "DayOfWeek": "Tuesday", "orders": 289, "revenue": 6989.306229}, {"YearMonth": "2010-02", "DayOfWeek": "Wednesday", "orders": 268, "revenue": 6589.242197}, {"YearMonth": "2010-03", "DayOfWeek": "Friday", "orders": 209, "revenue": 4867.769027}, {"YearMonth": "2010-03", "DayOfWeek": "Monday", "orders": 350, "revenue": 7892.064647}, {"YearMonth": "2010-03", "DayOfWeek": "Saturday", "orders": 173, "revenue": 4356.407137}, {"YearMonth": "2010-03", "DayOfWeek": "Sunday", "orders": 210, "revenue": 5530.220228}, {"YearMonth": "2010-03", "DayOfWeek": "Thursday", "orders": 237, "revenue": 5546.141326}, {"YearMonth": "2010-03", "DayOfWeek": "Tuesday", "orders": 360, "revenue": 8676.718938}, {"YearMonth": "2010-03", "DayOfWeek": "Wednesday", "orders": 333, "revenue": 7811.01636}, {"YearMonth": "2010-04", "DayOfWeek": "Friday", "orders": 331, "revenue": 7832.9897599999995}, {"YearMonth": "2010-04", "DayOfWeek": "Monday", "orders": 283, "revenue": 6652.395873}, {"YearMonth": "2010-04", "DayOfWeek": "Saturday", "orders": 169, "revenue": 4278.726524}, {"YearMonth": "2010-04", "DayOfWeek": "Sunday", "orders": 173, "revenue": 4036.252115}, {"YearMonth": "2010-04", "DayOfWeek": "Thursday", "orders": 369, "revenue": 8653.278636}, {"YearMonth": "2010-04", "DayOfWeek": "Tuesday", "orders": 410, "revenue": 10397.029096}, {"YearMonth": "2010-04", "DayOfWeek": "Wednesday", "orders": 268, "revenue": 6075.935521}, {"YearMonth": "2010-05", "DayOfWeek": "Friday", "orders": 267, "revenue": 6557.391394}, {"YearMonth": "2010-05", "DayOfWeek": "Monday", "orders": 353, "revenue": 8535.213931}, {"YearMonth": "2010-05", "DayOfWeek": "Saturday", "orders": 255, "revenue": 6094.144911}, {"YearMonth": "2010-05", "DayOfWeek": "Sunday", "orders": 270, "revenue": 6817.84418}, {"YearMonth": "2010-05", "DayOfWeek": "Thursday", "orders": 227, "revenue": 5040.890726}, {"YearMonth": "2010-05", "DayOfWeek": "Tuesday", "orders": 373, "revenue": 9175.443017}, {"YearMonth": "2010-05", "DayOfWeek": "Wednesday", "orders": 238, "revenue": 5270.666089}, {"YearMonth": "2010-06", "DayOfWeek": "Friday", "orders": 214, "revenue": 5269.599129}, {"YearMonth": "2010-06", "DayOfWeek": "Monday", "orders": 306, "revenue": 7397.695645}, {"YearMonth": "2010-06", "DayOfWeek": "Saturday", "orders": 158, "revenue": 3528.250934}, {"YearMonth": "2010-06", "DayOfWeek": "Sunday", "orders": 219, "revenue": 5068.199712}, {"YearMonth": "2010-06", "DayOfWeek": "Thursday", "orders": 242, "revenue": 5914.61867}, {"YearMonth": "2010-06", "DayOfWeek": "Tuesday", "orders": 387, "revenue": 9572.629543}, {"YearMonth": "2010-06", "DayOfWeek": "Wednesday", "orders": 339, "revenue": 7725.341992}, {"YearMonth": "2010-07", "DayOfWeek": "Friday", "orders": 261, "revenue": 6396.856247}, {"YearMonth": "2010-07", "DayOfWeek": "Monday", "orders": 316, "revenue": 7244.441939}, {"YearMonth": "2010-07", "DayOfWeek": "Saturday", "orders": 218, "revenue": 5569.653114}, {"YearMonth": "2010-07", "DayOfWeek": "Sunday", "orders": 221, "revenue": 4884.754635}, {"YearMonth": "2010-07", "DayOfWeek": "Thursday", "orders": 342, "revenue": 8155.265344}, {"YearMonth": "2010-07", "DayOfWeek": "Tuesday", "orders": 305, "revenue": 7012.910313}, {"YearMonth": "2010-07", "DayOfWeek": "Wednesday", "orders": 299, "revenue": 6814.158604}, {"YearMonth": "2010-08", "DayOfWeek": "Friday", "orders": 264, "revenue": 6304.888749}, {"YearMonth": "2010-08", "DayOfWeek": "Monday", "orders": 421, "revenue": 11168.325862}, {"YearMonth": "2010-08", "DayOfWeek": "Saturday", "orders": 194, "revenue": 4803.682803}, {"YearMonth": "2010-08", "DayOfWeek": "Sunday", "orders": 277, "revenue": 6784.671604}, {"YearMonth": "2010-08", "DayOfWeek": "Thursday", "orders": 281, "revenue": 7543.506384}, {"YearMonth": "2010-08", "DayOfWeek": "Tuesday", "orders": 436, "revenue": 11603.746063}, {"YearMonth": "2010-08", "DayOfWeek": "Wednesday", "orders": 240, "revenue": 5968.195833}, {"YearMonth": "2010-09", "DayOfWeek": "Friday", "orders": 238, "revenue": 5513.193195}, {"YearMonth": "2010-09", "DayOfWeek": "Monday", "orders": 359, "revenue": 8568.058001}, {"YearMonth": "2010-09", "DayOfWeek": "Saturday", "orders": 175, "revenue": 4122.502494}, {"YearMonth": "2010-09", "DayOfWeek": "Sunday", "orders": 195, "revenue": 4988.561122}, {"YearMonth": "2010-09", "DayOfWeek": "Thursday", "orders": 366, "revenue": 9410.094135}, {"YearMonth": "2010-09", "DayOfWeek": "Tuesday", "orders": 279, "revenue": 6660.365512}, {"YearMonth": "2010-09", "DayOfWeek": "Wednesday", "orders": 321, "revenue": 8164.885536}, {"YearMonth": "2010-10", "DayOfWeek": "Friday", "orders": 292, "revenue": 8443.634013}, {"YearMonth": "2010-10", "DayOfWeek": "Monday", "orders": 326, "revenue": 8679.6516}, {"YearMonth": "2010-10", "DayOfWeek": "Saturday", "orders": 197, "revenue": 5064.598424}, {"YearMonth": "2010-10", "DayOfWeek": "Sunday", "orders": 271, "revenue": 6604.172422}, {"YearMonth": "2010-10", "DayOfWeek": "Thursday", "orders": 254, "revenue": 6775.7437899999995}, {"YearMonth": "2010-10", "DayOfWeek": "Tuesday", "orders": 274, "revenue": 6996.56231}, {"YearMonth": "2010-10", "DayOfWeek": "Wednesday", "orders": 260, "revenue": 6348.496954}, {"YearMonth": "2010-11", "DayOfWeek": "Friday", "orders": 206, "revenue": 5371.646732}, {"YearMonth": "2010-11", "DayOfWeek": "Monday", "orders": 375, "revenue": 9489.111513}, {"YearMonth": "2010-11", "DayOfWeek": "Saturday", "orders": 163, "revenue": 3587.181798}, {"YearMonth": "2010-11", "DayOfWeek": "Sunday", "orders": 206, "revenue": 4888.876677}, {"YearMonth": "2010-11", "DayOfWeek": "Thursday", "orders": 253, "revenue": 5995.637101}, {"YearMonth": "2010-11", "DayOfWeek": "Tuesday", "orders": 407, "revenue": 10831.134488}, {"YearMonth": "2010-11", "DayOfWeek": "Wednesday", "orders": 256, "revenue": 6688.25801}, {"YearMonth": "2010-12", "DayOfWeek": "Friday", "orders": 215, "revenue": 5807.86763}, {"YearMonth": "2010-12", "DayOfWeek": "Monday", "orders": 228, "revenue": 5448.424926}, {"YearMonth": "2010-12", "DayOfWeek": "Saturday", "orders": 97, "revenue": 2452.288207}, {"YearMonth": "2010-12", "DayOfWeek": "Sunday", "orders": 140, "revenue": 3225.293464}, {"YearMonth": "2010-12", "DayOfWeek": "Thursday", "orders": 328, "revenue": 8022.936444}, {"YearMonth": "2010-12", "DayOfWeek": "Tuesday", "orders": 221, "revenue": 5678.517457}, {"YearMonth": "2010-12", "DayOfWeek": "Wednesday", "orders": 325, "revenue": 8021.935901}, {"YearMonth": "2011-01", "DayOfWeek": "Friday", "orders": 257, "revenue": 6237.046480999999}, {"YearMonth": "2011-01", "DayOfWeek": "Monday", "orders": 422, "revenue": 10453.370725}, {"YearMonth": "2011-01", "DayOfWeek": "Saturday", "orders": 282, "revenue": 6969.20177}, {"YearMonth": "2011-01", "DayOfWeek": "Sunday", "orders": 344, "revenue": 9280.666833}, {"YearMonth": "2011-01", "DayOfWeek": "Thursday", "orders": 326, "revenue": 8306.399315}, {"YearMonth": "2011-01", "DayOfWeek": "Tuesday", "orders": 408, "revenue": 10176.097471}, {"YearMonth": "2011-01", "DayOfWeek": "Wednesday", "orders": 434, "revenue": 11640.393654}, {"YearMonth": "2011-02", "DayOfWeek": "Friday", "orders": 255, "revenue": 6369.6741759999995}, {"YearMonth": "2011-02", "DayOfWeek": "Monday", "orders": 330, "revenue": 7930.165594}, {"YearMonth": "2011-02", "DayOfWeek": "Saturday", "orders": 181, "revenue": 4659.217195}, {"YearMonth": "2011-02", "DayOfWeek": "Sunday", "orders": 241, "revenue": 6195.5342}, {"YearMonth": "2011-02", "DayOfWeek": "Thursday", "orders": 270, "revenue": 6624.782885}, {"YearMonth": "2011-02", "DayOfWeek": "Tuesday", "orders": 316, "revenue": 7676.973113}, {"YearMonth": "2011-02", "DayOfWeek": "Wednesday", "orders": 289, "revenue": 7501.806783}, {"YearMonth": "2011-03", "DayOfWeek": "Friday", "orders": 215, "revenue": 5088.0907879999995}, {"YearMonth": "2011-03", "DayOfWeek": "Monday", "orders": 291, "revenue": 7600.842731}, {"YearMonth": "2011-03", "DayOfWeek": "Saturday", "orders": 140, "revenue": 3169.636508}, {"YearMonth": "2011-03", "DayOfWeek": "Sunday", "orders": 251, "revenue": 6465.994901}, {"YearMonth": "2011-03", "DayOfWeek": "Thursday", "orders": 299, "revenue": 7449.141366}, {"YearMonth": "2011-03", "DayOfWeek": "Tuesday", "orders": 358, "revenue": 8679.828131}, {"YearMonth": "2011-03", "DayOfWeek": "Wednesday", "orders": 360, "revenue": 8749.347208}, {"YearMonth": "2011-04", "DayOfWeek": "Friday", "orders": 275, "revenue": 6773.813108}, {"YearMonth": "2011-04", "DayOfWeek": "Monday", "orders": 323, "revenue": 8251.270126}, {"YearMonth": "2011-04", "DayOfWeek": "Saturday", "orders": 224, "revenue": 5399.615527}, {"YearMonth": "2011-04", "DayOfWeek": "Sunday", "orders": 177, "revenue": 4627.67739}, {"YearMonth": "2011-04", "DayOfWeek": "Thursday", "orders": 297, "revenue": 7366.704325}, {"YearMonth": "2011-04", "DayOfWeek": "Tuesday", "orders": 385, "revenue": 9648.975285}, {"YearMonth": "2011-04", "DayOfWeek": "Wednesday", "orders": 263, "revenue": 6580.759508}, {"YearMonth": "2011-05", "DayOfWeek": "Friday", "orders": 258, "revenue": 6738.202875}, {"YearMonth": "2011-05", "DayOfWeek": "Monday", "orders": 375, "revenue": 9420.813001999999}, {"YearMonth": "2011-05", "DayOfWeek": "Saturday", "orders": 201, "revenue": 4840.736321}, {"YearMonth": "2011-05", "DayOfWeek": "Sunday", "orders": 283, "revenue": 6725.095722}, {"YearMonth": "2011-05", "DayOfWeek": "Thursday", "orders": 242, "revenue": 5998.663608}, {"YearMonth": "2011-05", "DayOfWeek": "Tuesday", "orders": 364, "revenue": 9331.894033}, {"YearMonth": "2011-05", "DayOfWeek": "Wednesday", "orders": 273, "revenue": 6639.796007}, {"YearMonth": "2011-06", "DayOfWeek": "Friday", "orders": 227, "revenue": 5686.262144}, {"YearMonth": "2011-06", "DayOfWeek": "Monday", "orders": 318, "revenue": 7772.427675}, {"YearMonth": "2011-06", "DayOfWeek": "Saturday", "orders": 204, "revenue": 4797.472285}, {"YearMonth": "2011-06", "DayOfWeek": "Sunday", "orders": 229, "revenue": 5319.364506}, {"YearMonth": "2011-06", "DayOfWeek": "Thursday", "orders": 352, "revenue": 8648.425294}, {"YearMonth": "2011-06", "DayOfWeek": "Tuesday", "orders": 297, "revenue": 7511.923688}, {"YearMonth": "2011-06", "DayOfWeek": "Wednesday", "orders": 349, "revenue": 8633.377601}, {"YearMonth": "2011-07", "DayOfWeek": "Friday", "orders": 347, "revenue": 8162.229781}, {"YearMonth": "2011-07", "DayOfWeek": "Monday", "orders": 312, "revenue": 6938.07809}, {"YearMonth": "2011-07", "DayOfWeek": "Saturday", "orders": 230, "revenue": 5724.652523}, {"YearMonth": "2011-07", "DayOfWeek": "Sunday", "orders": 296, "revenue": 7210.1229109999995}, {"YearMonth": "2011-07", "DayOfWeek": "Thursday", "orders": 284, "revenue": 7410.050293}, {"YearMonth": "2011-07", "DayOfWeek": "Tuesday", "orders": 335, "revenue": 8203.634489}, {"YearMonth": "2011-07", "DayOfWeek": "Wednesday", "orders": 356, "revenue": 8529.734977}, {"YearMonth": "2011-08", "DayOfWeek": "Friday", "orders": 310, "revenue": 7808.964087}, {"YearMonth": "2011-08", "DayOfWeek": "Monday", "orders": 432, "revenue": 10797.787724}, {"YearMonth": "2011-08", "DayOfWeek": "Saturday", "orders": 244, "revenue": 6940.907572}, {"YearMonth": "2011-08", "DayOfWeek": "Sunday", "orders": 286, "revenue": 7037.431725}, {"YearMonth": "2011-08", "DayOfWeek": "Thursday", "orders": 280, "revenue": 6867.437309}, {"YearMonth": "2011-08", "DayOfWeek": "Tuesday", "orders": 467, "revenue": 10601.351038}, {"YearMonth": "2011-08", "DayOfWeek": "Wednesday", "orders": 359, "revenue": 9111.665089}, {"YearMonth": "2011-09", "DayOfWeek": "Friday", "orders": 305, "revenue": 6662.785401}, {"YearMonth": "2011-09", "DayOfWeek": "Monday", "orders": 304, "revenue": 7762.833981}, {"YearMonth": "2011-09", "DayOfWeek": "Saturday", "orders": 176, "revenue": 3992.791698}, {"YearMonth": "2011-09", "DayOfWeek": "Sunday", "orders": 263, "revenue": 5711.515005}, {"YearMonth": "2011-09", "DayOfWeek": "Thursday", "orders": 334, "revenue": 7488.476686}, {"YearMonth": "2011-09", "DayOfWeek": "Tuesday", "orders": 336, "revenue": 7611.781196}, {"YearMonth": "2011-09", "DayOfWeek": "Wednesday", "orders": 302, "revenue": 6639.4481}, {"YearMonth": "2011-10", "DayOfWeek": "Friday", "orders": 308, "revenue": 6807.115898999999}, {"YearMonth": "2011-10", "DayOfWeek": "Monday", "orders": 444, "revenue": 9794.918758}, {"YearMonth": "2011-10", "DayOfWeek": "Saturday", "orders": 266, "revenue": 6196.987187}, {"YearMonth": "2011-10", "DayOfWeek": "Sunday", "orders": 338, "revenue": 7352.417409}, {"YearMonth": "2011-10", "DayOfWeek": "Thursday", "orders": 310, "revenue": 6863.641315}, {"YearMonth": "2011-10", "DayOfWeek": "Tuesday", "orders": 403, "revenue": 8848.791882}, {"YearMonth": "2011-10", "DayOfWeek": "Wednesday", "orders": 352, "revenue": 7649.198145}, {"YearMonth": "2011-11", "DayOfWeek": "Friday", "orders": 344, "revenue": 7005.663723}, {"YearMonth": "2011-11", "DayOfWeek": "Monday", "orders": 417, "revenue": 9634.888758}, {"YearMonth": "2011-11", "DayOfWeek": "Saturday", "orders": 266, "revenue": 6179.254086}, {"YearMonth": "2011-11", "DayOfWeek": "Sunday", "orders": 290, "revenue": 6690.855412}, {"YearMonth": "2011-11", "DayOfWeek": "Thursday", "orders": 339, "revenue": 7813.183886}, {"YearMonth": "2011-11", "DayOfWeek": "Tuesday", "orders": 467, "revenue": 9696.107662999999}, {"YearMonth": "2011-11", "DayOfWeek": "Wednesday", "orders": 442, "revenue": 9535.550791}, {"YearMonth": "2011-12", "DayOfWeek": "Friday", "orders": 379, "revenue": 8691.717709999999}, {"YearMonth": "2011-12", "DayOfWeek": "Monday", "orders": 285, "revenue": 6419.374099}, {"YearMonth": "2011-12", "DayOfWeek": "Saturday", "orders": 265, "revenue": 5820.6034629999995}, {"YearMonth": "2011-12", "DayOfWeek": "Sunday", "orders": 206, "revenue": 4480.71351}, {"YearMonth": "2011-12", "DayOfWeek": "Thursday", "orders": 416, "revenue": 9541.363127999999}, {"YearMonth": "2011-12", "DayOfWeek": "Tuesday", "orders": 331, "revenue": 7848.81418}, {"YearMonth": "2011-12", "DayOfWeek": "Wednesday", "orders": 315, "revenue": 6847.533273}, {"YearMonth": "2012-01", "DayOfWeek": "Friday", "orders": 345, "revenue": 7949.573181}, {"YearMonth": "2012-01", "DayOfWeek": "Monday", "orders": 558, "revenue": 13927.4961}, {"YearMonth": "2012-01", "DayOfWeek": "Saturday", "orders": 273, "revenue": 7093.043145}, {"YearMonth": "2012-01", "DayOfWeek": "Sunday", "orders": 382, "revenue": 8597.981328}, {"YearMonth": "2012-01", "DayOfWeek": "Thursday", "orders": 373, "revenue": 8284.594567}, {"YearMonth": "2012-01", "DayOfWeek": "Tuesday", "orders": 769, "revenue": 18561.788908}, {"YearMonth": "2012-01", "DayOfWeek": "Wednesday", "orders": 430, "revenue": 9322.387301}, {"YearMonth": "2012-02", "DayOfWeek": "Friday", "orders": 318, "revenue": 7529.9817969999995}, {"YearMonth": "2012-02", "DayOfWeek": "Monday", "orders": 372, "revenue": 7836.3353}, {"YearMonth": "2012-02", "DayOfWeek": "Saturday", "orders": 245, "revenue": 5815.229683}, {"YearMonth": "2012-02", "DayOfWeek": "Sunday", "orders": 323, "revenue": 7179.5680569999995}, {"YearMonth": "2012-02", "DayOfWeek": "Thursday", "orders": 346, "revenue": 7737.0259049999995}, {"YearMonth": "2012-02", "DayOfWeek": "Tuesday", "orders": 370, "revenue": 8624.837180999999}, {"YearMonth": "2012-02", "DayOfWeek": "Wednesday", "orders": 471, "revenue": 10514.298376}, {"YearMonth": "2012-03", "DayOfWeek": "Friday", "orders": 358, "revenue": 9117.088301}, {"YearMonth": "2012-03", "DayOfWeek": "Monday", "orders": 336, "revenue": 8010.95919}, {"YearMonth": "2012-03", "DayOfWeek": "Saturday", "orders": 267, "revenue": 6270.370591}, {"YearMonth": "2012-03", "DayOfWeek": "Sunday", "orders": 286, "revenue": 6799.066777999999}, {"YearMonth": "2012-03", "DayOfWeek": "Thursday", "orders": 415, "revenue": 10136.413097}, {"YearMonth": "2012-03", "DayOfWeek": "Tuesday", "orders": 308, "revenue": 7417.463416}, {"YearMonth": "2012-03", "DayOfWeek": "Wednesday", "orders": 287, "revenue": 7072.997384}, {"YearMonth": "2012-04", "DayOfWeek": "Friday", "orders": 282, "revenue": 6404.783123}, {"YearMonth": "2012-04", "DayOfWeek": "Monday", "orders": 447, "revenue": 10216.953435}, {"YearMonth": "2012-04", "DayOfWeek": "Saturday", "orders": 241, "revenue": 6499.070986}, {"YearMonth": "2012-04", "DayOfWeek": "Sunday", "orders": 319, "revenue": 7654.17838}, {"YearMonth": "2012-04", "DayOfWeek": "Thursday", "orders": 310, "revenue": 6839.730621}, {"YearMonth": "2012-04", "DayOfWeek": "Tuesday", "orders": 451, "revenue": 11504.100473999999}, {"YearMonth": "2012-04", "DayOfWeek": "Wednesday", "orders": 290, "revenue": 7072.975493}, {"YearMonth": "2012-05", "DayOfWeek": "Friday", "orders": 263, "revenue": 6977.891207}, {"YearMonth": "2012-05", "DayOfWeek": "Monday", "orders": 329, "revenue": 8571.292202}, {"YearMonth": "2012-05", "DayOfWeek": "Saturday", "orders": 205, "revenue": 5452.883873}, {"YearMonth": "2012-05", "DayOfWeek": "Sunday", "orders": 237, "revenue": 6101.189694}, {"YearMonth": "2012-05", "DayOfWeek": "Thursday", "orders": 332, "revenue": 7867.447907}, {"YearMonth": "2012-05", "DayOfWeek": "Tuesday", "orders": 504, "revenue": 12642.477606}, {"YearMonth": "2012-05", "DayOfWeek": "Wednesday", "orders": 358, "revenue": 8737.792227}, {"YearMonth": "2012-06", "DayOfWeek": "Friday", "orders": 297, "revenue": 7694.522265}, {"YearMonth": "2012-06", "DayOfWeek": "Monday", "orders": 284, "revenue": 7373.847396}, {"YearMonth": "2012-06", "DayOfWeek": "Saturday", "orders": 243, "revenue": 5682.9939349999995}, {"YearMonth": "2012-06", "DayOfWeek": "Sunday", "orders": 220, "revenue": 5927.245536}, {"YearMonth": "2012-06", "DayOfWeek": "Thursday", "orders": 231, "revenue": 5601.66308}, {"YearMonth": "2012-06", "DayOfWeek": "Tuesday", "orders": 296, "revenue": 7602.036621}, {"YearMonth": "2012-06", "DayOfWeek": "Wednesday", "orders": 359, "revenue": 10626.263974}, {"YearMonth": "2012-07", "DayOfWeek": "Friday", "orders": 303, "revenue": 7243.141457}, {"YearMonth": "2012-07", "DayOfWeek": "Monday", "orders": 375, "revenue": 9679.097988}, {"YearMonth": "2012-07", "DayOfWeek": "Saturday", "orders": 174, "revenue": 4661.719776}, {"YearMonth": "2012-07", "DayOfWeek": "Sunday", "orders": 321, "revenue": 7691.536967}, {"YearMonth": "2012-07", "DayOfWeek": "Thursday", "orders": 195, "revenue": 4513.228204}, {"YearMonth": "2012-07", "DayOfWeek": "Tuesday", "orders": 337, "revenue": 8085.117642}, {"YearMonth": "2012-07", "DayOfWeek": "Wednesday", "orders": 245, "revenue": 6499.881725}, {"YearMonth": "2012-08", "DayOfWeek": "Friday", "orders": 367, "revenue": 10143.497484}, {"YearMonth": "2012-08", "DayOfWeek": "Monday", "orders": 288, "revenue": 7090.170274}, {"YearMonth": "2012-08", "DayOfWeek": "Saturday", "orders": 148, "revenue": 4044.709863}, {"YearMonth": "2012-08", "DayOfWeek": "Sunday", "orders": 202, "revenue": 4905.554817}, {"YearMonth": "2012-08", "DayOfWeek": "Thursday", "orders": 289, "revenue": 7395.48306}, {"YearMonth": "2012-08", "DayOfWeek": "Tuesday", "orders": 300, "revenue": 7422.76968}, {"YearMonth": "2012-08", "DayOfWeek": "Wednesday", "orders": 332, "revenue": 7673.8720379999995}, {"YearMonth": "2012-09", "DayOfWeek": "Friday", "orders": 284, "revenue": 6984.8240749999995}, {"YearMonth": "2012-09", "DayOfWeek": "Monday", "orders": 369, "revenue": 9033.235005}, {"YearMonth": "2012-09", "DayOfWeek": "Saturday", "orders": 263, "revenue": 6196.587731}, {"YearMonth": "2012-09", "DayOfWeek": "Sunday", "orders": 316, "revenue": 8386.901484}, {"YearMonth": "2012-09", "DayOfWeek": "Thursday", "orders": 312, "revenue": 7517.326394}, {"YearMonth": "2012-09", "DayOfWeek": "Tuesday", "orders": 327, "revenue": 7865.429246}, {"YearMonth": "2012-09", "DayOfWeek": "Wednesday", "orders": 384, "revenue": 9458.211191}, {"YearMonth": "2012-10", "DayOfWeek": "Friday", "orders": 266, "revenue": 6542.631837}, {"YearMonth": "2012-10", "DayOfWeek": "Monday", "orders": 497, "revenue": 12684.251425}, {"YearMonth": "2012-10", "DayOfWeek": "Saturday", "orders": 221, "revenue": 5168.708489}, {"YearMonth": "2012-10", "DayOfWeek": "Sunday", "orders": 248, "revenue": 6277.024203}, {"YearMonth": "2012-10", "DayOfWeek": "Thursday", "orders": 267, "revenue": 6547.7155569999995}, {"YearMonth": "2012-10", "DayOfWeek": "Tuesday", "orders": 485, "revenue": 11818.391283}, {"YearMonth": "2012-10", "DayOfWeek": "Wednesday", "orders": 389, "revenue": 9781.9738}, {"YearMonth": "2012-11", "DayOfWeek": "Friday", "orders": 318, "revenue": 7470.125399}, {"YearMonth": "2012-11", "DayOfWeek": "Monday", "orders": 396, "revenue": 10490.818866}, {"YearMonth": "2012-11", "DayOfWeek": "Saturday", "orders": 190, "revenue": 4689.068801}, {"YearMonth": "2012-11", "DayOfWeek": "Sunday", "orders": 228, "revenue": 5264.696237}, {"YearMonth": "2012-11", "DayOfWeek": "Thursday", "orders": 477, "revenue": 11961.786596}, {"YearMonth": "2012-11", "DayOfWeek": "Tuesday", "orders": 378, "revenue": 9272.146548}, {"YearMonth": "2012-11", "DayOfWeek": "Wednesday", "orders": 287, "revenue": 7248.020706}, {"YearMonth": "2012-12", "DayOfWeek": "Friday", "orders": 206, "revenue": 4609.120879}, {"YearMonth": "2012-12", "DayOfWeek": "Monday", "orders": 301, "revenue": 7121.5049579999995}, {"YearMonth": "2012-12", "DayOfWeek": "Saturday", "orders": 199, "revenue": 4669.8086809999995}, {"YearMonth": "2012-12", "DayOfWeek": "Sunday", "orders": 219, "revenue": 5104.479638}, {"YearMonth": "2012-12", "DayOfWeek": "Thursday", "orders": 291, "revenue": 8085.564193}, {"YearMonth": "2012-12", "DayOfWeek": "Tuesday", "orders": 220, "revenue": 5368.952488}, {"YearMonth": "2012-12", "DayOfWeek": "Wednesday", "orders": 270, "revenue": 6245.774719}, {"YearMonth": "2013-01", "DayOfWeek": "Friday", "orders": 264, "revenue": 7413.741399}, {"YearMonth": "2013-01", "DayOfWeek": "Monday", "orders": 617, "revenue": 16401.153496}, {"YearMonth": "2013-01", "DayOfWeek": "Saturday", "orders": 222, "revenue": 5932.747788}, {"YearMonth": "2013-01", "DayOfWeek": "Sunday", "orders": 265, "revenue": 6398.559069}, {"YearMonth": "2013-01", "DayOfWeek": "Thursday", "orders": 396, "revenue": 9670.878498}, {"YearMonth": "2013-01", "DayOfWeek": "Tuesday", "orders": 439, "revenue": 12171.230543}, {"YearMonth": "2013-01", "DayOfWeek": "Wednesday", "orders": 529, "revenue": 13177.635521}, {"YearMonth": "2013-02", "DayOfWeek": "Friday", "orders": 230, "revenue": 5354.669501}, {"YearMonth": "2013-02", "DayOfWeek": "Monday", "orders": 293, "revenue": 6828.847504}, {"YearMonth": "2013-02", "DayOfWeek": "Saturday", "orders": 202, "revenue": 4980.10756}, {"YearMonth": "2013-02", "DayOfWeek": "Sunday", "orders": 252, "revenue": 6252.7376189999995}, {"YearMonth": "2013-02", "DayOfWeek": "Thursday", "orders": 282, "revenue": 6824.72577}, {"YearMonth": "2013-02", "DayOfWeek": "Tuesday", "orders": 445, "revenue": 10112.557387}, {"YearMonth": "2013-02", "DayOfWeek": "Wednesday", "orders": 307, "revenue": 7392.143231}, {"YearMonth": "2013-03", "DayOfWeek": "Friday", "orders": 351, "revenue": 9159.591618}, {"YearMonth": "2013-03", "DayOfWeek": "Monday", "orders": 336, "revenue": 8545.432087}, {"YearMonth": "2013-03", "DayOfWeek": "Saturday", "orders": 306, "revenue": 7788.278888}, {"YearMonth": "2013-03", "DayOfWeek": "Sunday", "orders": 337, "revenue": 8509.276631}, {"YearMonth": "2013-03", "DayOfWeek": "Thursday", "orders": 302, "revenue": 7076.279079}, {"YearMonth": "2013-03", "DayOfWeek": "Tuesday", "orders": 530, "revenue": 13654.162654}, {"YearMonth": "2013-03", "DayOfWeek": "Wednesday", "orders": 374, "revenue": 9188.400543}, {"YearMonth": "2013-04", "DayOfWeek": "Friday", "orders": 346, "revenue": 8770.443291}, {"YearMonth": "2013-04", "DayOfWeek": "Monday", "orders": 436, "revenue": 11385.413345}, {"YearMonth": "2013-04", "DayOfWeek": "Saturday", "orders": 218, "revenue": 5808.120259}, {"YearMonth": "2013-04", "DayOfWeek": "Sunday", "orders": 290, "revenue": 7538.431606}, {"YearMonth": "2013-04", "DayOfWeek": "Thursday", "orders": 346, "revenue": 7880.604765}, {"YearMonth": "2013-04", "DayOfWeek": "Tuesday", "orders": 591, "revenue": 14985.361013}, {"YearMonth": "2013-04", "DayOfWeek": "Wednesday", "orders": 342, "revenue": 8489.937199}, {"YearMonth": "2013-05", "DayOfWeek": "Friday", "orders": 371, "revenue": 8380.5416}, {"YearMonth": "2013-05", "DayOfWeek": "Monday", "orders": 380, "revenue": 9440.764007}, {"YearMonth": "2013-05", "DayOfWeek": "Saturday", "orders": 224, "revenue": 5154.625999}, {"YearMonth": "2013-05", "DayOfWeek": "Sunday", "orders": 225, "revenue": 4899.034001}, {"YearMonth": "2013-05", "DayOfWeek": "Thursday", "orders": 450, "revenue": 9773.469612}, {"YearMonth": "2013-05", "DayOfWeek": "Tuesday", "orders": 405, "revenue": 9640.278363}, {"YearMonth": "2013-05", "DayOfWeek": "Wednesday", "orders": 483, "revenue": 10926.716811}, {"YearMonth": "2013-06", "DayOfWeek": "Friday", "orders": 299, "revenue": 7462.499724}, {"YearMonth": "2013-06", "DayOfWeek": "Monday", "orders": 414, "revenue": 10867.750404}, {"YearMonth": "2013-06", "DayOfWeek": "Saturday", "orders": 305, "revenue": 7332.8717639999995}, {"YearMonth": "2013-06", "DayOfWeek": "Sunday", "orders": 376, "revenue": 8847.792476}, {"YearMonth": "2013-06", "DayOfWeek": "Thursday", "orders": 364, "revenue": 8458.307419}, {"YearMonth": "2013-06", "DayOfWeek": "Tuesday", "orders": 593, "revenue": 14343.316315}, {"YearMonth": "2013-06", "DayOfWeek": "Wednesday", "orders": 365, "revenue": 8585.179689}, {"YearMonth": "2013-07", "DayOfWeek": "Friday", "orders": 200, "revenue": 4562.063208}, {"YearMonth": "2013-07", "DayOfWeek": "Monday", "orders": 436, "revenue": 9908.752763}, {"YearMonth": "2013-07", "DayOfWeek": "Saturday", "orders": 234, "revenue": 5779.548006}, {"YearMonth": "2013-07", "DayOfWeek": "Sunday", "orders": 262, "revenue": 6645.275402}, {"YearMonth": "2013-07", "DayOfWeek": "Thursday", "orders": 319, "revenue": 8083.621207}, {"YearMonth": "2013-07", "DayOfWeek": "Tuesday", "orders": 500, "revenue": 11416.255194}, {"YearMonth": "2013-07", "DayOfWeek": "Wednesday", "orders": 370, "revenue": 8780.562007999999}, {"YearMonth": "2013-08", "DayOfWeek": "Friday", "orders": 320, "revenue": 7598.807416}, {"YearMonth": "2013-08", "DayOfWeek": "Monday", "orders": 305, "revenue": 7953.202594}, {"YearMonth": "2013-08", "DayOfWeek": "Saturday", "orders": 276, "revenue": 6093.807767}, {"YearMonth": "2013-08", "DayOfWeek": "Sunday", "orders": 240, "revenue": 5940.633412}, {"YearMonth": "2013-08", "DayOfWeek": "Thursday", "orders": 385, "revenue": 8692.535315}, {"YearMonth": "2013-08", "DayOfWeek": "Tuesday", "orders": 392, "revenue": 9074.257604}, {"YearMonth": "2013-08", "DayOfWeek": "Wednesday", "orders": 320, "revenue": 7831.926771}, {"YearMonth": "2013-09", "DayOfWeek": "Friday", "orders": 298, "revenue": 7763.264971}, {"YearMonth": "2013-09", "DayOfWeek": "Monday", "orders": 487, "revenue": 12121.59056}, {"YearMonth": "2013-09", "DayOfWeek": "Saturday", "orders": 251, "revenue": 6721.183172}, {"YearMonth": "2013-09", "DayOfWeek": "Sunday", "orders": 402, "revenue": 9819.373401}, {"YearMonth": "2013-09", "DayOfWeek": "Thursday", "orders": 357, "revenue": 9411.250367}, {"YearMonth": "2013-09", "DayOfWeek": "Tuesday", "orders": 517, "revenue": 13719.332586}, {"YearMonth": "2013-09", "DayOfWeek": "Wednesday", "orders": 346, "revenue": 7962.551413}, {"YearMonth": "2013-10", "DayOfWeek": "Friday", "orders": 261, "revenue": 6179.904007}, {"YearMonth": "2013-10", "DayOfWeek": "Monday", "orders": 325, "revenue": 7771.311608}, {"YearMonth": "2013-10", "DayOfWeek": "Saturday", "orders": 189, "revenue": 4321.485594}, {"YearMonth": "2013-10", "DayOfWeek": "Sunday", "orders": 255, "revenue": 5811.658002}, {"YearMonth": "2013-10", "DayOfWeek": "Thursday", "orders": 425, "revenue": 10357.33474}, {"YearMonth": "2013-10", "DayOfWeek": "Tuesday", "orders": 347, "revenue": 8192.388665}, {"YearMonth": "2013-10", "DayOfWeek": "Wednesday", "orders": 466, "revenue": 11496.824192}, {"YearMonth": "2013-11", "DayOfWeek": "Friday", "orders": 377, "revenue": 9851.909569}, {"YearMonth": "2013-11", "DayOfWeek": "Monday", "orders": 500, "revenue": 12249.98824}, {"YearMonth": "2013-11", "DayOfWeek": "Saturday", "orders": 308, "revenue": 7869.030385}, {"YearMonth": "2013-11", "DayOfWeek": "Sunday", "orders": 381, "revenue": 9404.043766}, {"YearMonth": "2013-11", "DayOfWeek": "Thursday", "orders": 455, "revenue": 11238.91221}, {"YearMonth": "2013-11", "DayOfWeek": "Tuesday", "orders": 484, "revenue": 12201.072516}, {"YearMonth": "2013-11", "DayOfWeek": "Wednesday", "orders": 332, "revenue": 8574.160919}, {"YearMonth": "2013-12", "DayOfWeek": "Friday", "orders": 283, "revenue": 6574.127576}, {"YearMonth": "2013-12", "DayOfWeek": "Monday", "orders": 425, "revenue": 10608.411562}, {"YearMonth": "2013-12", "DayOfWeek": "Saturday", "orders": 206, "revenue": 4871.154202}, {"YearMonth": "2013-12", "DayOfWeek": "Sunday", "orders": 297, "revenue": 7489.828519}, {"YearMonth": "2013-12", "DayOfWeek": "Thursday", "orders": 292, "revenue": 7077.272397}, {"YearMonth": "2013-12", "DayOfWeek": "Tuesday", "orders": 356, "revenue": 8362.39194}, {"YearMonth": "2013-12", "DayOfWeek": "Wednesday", "orders": 257, "revenue": 6389.749909}, {"YearMonth": "2014-01", "DayOfWeek": "Friday", "orders": 471, "revenue": 11721.832383}, {"YearMonth": "2014-01", "DayOfWeek": "Monday", "orders": 576, "revenue": 14314.193882}, {"YearMonth": "2014-01", "DayOfWeek": "Saturday", "orders": 314, "revenue": 8163.99807}, {"YearMonth": "2014-01", "DayOfWeek": "Sunday", "orders": 425, "revenue": 10569.760253}, {"YearMonth": "2014-01", "DayOfWeek": "Thursday", "orders": 757, "revenue": 17573.64054}, {"YearMonth": "2014-01", "DayOfWeek": "Tuesday", "orders": 655, "revenue": 17204.307347}, {"YearMonth": "2014-01", "DayOfWeek": "Wednesday", "orders": 535, "revenue": 13287.819186}, {"YearMonth": "2014-02", "DayOfWeek": "Friday", "orders": 366, "revenue": 8752.972551}, {"YearMonth": "2014-02", "DayOfWeek": "Monday", "orders": 376, "revenue": 8799.476647}, {"YearMonth": "2014-02", "DayOfWeek": "Saturday", "orders": 276, "revenue": 6331.184623}, {"YearMonth": "2014-02", "DayOfWeek": "Sunday", "orders": 310, "revenue": 7675.478054}, {"YearMonth": "2014-02", "DayOfWeek": "Thursday", "orders": 452, "revenue": 10385.718287}, {"YearMonth": "2014-02", "DayOfWeek": "Tuesday", "orders": 449, "revenue": 10222.465144}, {"YearMonth": "2014-02", "DayOfWeek": "Wednesday", "orders": 438, "revenue": 10005.521279}, {"YearMonth": "2014-03", "DayOfWeek": "Friday", "orders": 349, "revenue": 7753.595903}, {"YearMonth": "2014-03", "DayOfWeek": "Monday", "orders": 719, "revenue": 17535.243333}, {"YearMonth": "2014-03", "DayOfWeek": "Saturday", "orders": 397, "revenue": 8701.063804}, {"YearMonth": "2014-03", "DayOfWeek": "Sunday", "orders": 411, "revenue": 10194.967135}, {"YearMonth": "2014-03", "DayOfWeek": "Thursday", "orders": 397, "revenue": 9797.892461}, {"YearMonth": "2014-03", "DayOfWeek": "Tuesday", "orders": 471, "revenue": 10820.581319}, {"YearMonth": "2014-03", "DayOfWeek": "Wednesday", "orders": 379, "revenue": 8659.246517}, {"YearMonth": "2014-04", "DayOfWeek": "Friday", "orders": 337, "revenue": 7231.921967}, {"YearMonth": "2014-04", "DayOfWeek": "Monday", "orders": 447, "revenue": 10821.294928}, {"YearMonth": "2014-04", "DayOfWeek": "Saturday", "orders": 328, "revenue": 8197.518746}, {"YearMonth": "2014-04", "DayOfWeek": "Sunday", "orders": 301, "revenue": 7725.177855}, {"YearMonth": "2014-04", "DayOfWeek": "Thursday", "orders": 386, "revenue": 9110.142619}, {"YearMonth": "2014-04", "DayOfWeek": "Tuesday", "orders": 513, "revenue": 11963.091257}, {"YearMonth": "2014-04", "DayOfWeek": "Wednesday", "orders": 534, "revenue": 13417.605781}, {"YearMonth": "2014-05", "DayOfWeek": "Friday", "orders": 415, "revenue": 10106.037999}, {"YearMonth": "2014-05", "DayOfWeek": "Monday", "orders": 399, "revenue": 10057.010949}, {"YearMonth": "2014-05", "DayOfWeek": "Saturday", "orders": 322, "revenue": 8270.890422}, {"YearMonth": "2014-05", "DayOfWeek": "Sunday", "orders": 297, "revenue": 7309.605654}, {"YearMonth": "2014-05", "DayOfWeek": "Thursday", "orders": 455, "revenue": 11383.081584}, {"YearMonth": "2014-05", "DayOfWeek": "Tuesday", "orders": 471, "revenue": 11673.932268999999}, {"YearMonth": "2014-05", "DayOfWeek": "Wednesday", "orders": 384, "revenue": 8708.75536}, {"YearMonth": "2014-06", "DayOfWeek": "Friday", "orders": 287, "revenue": 6834.689283}, {"YearMonth": "2014-06", "DayOfWeek": "Monday", "orders": 526, "revenue": 12760.962653999999}, {"YearMonth": "2014-06", "DayOfWeek": "Saturday", "orders": 275, "revenue": 6702.213599}, {"YearMonth": "2014-06", "DayOfWeek": "Sunday", "orders": 370, "revenue": 9615.136801}, {"YearMonth": "2014-06", "DayOfWeek": "Thursday", "orders": 334, "revenue": 7690.990541}, {"YearMonth": "2014-06", "DayOfWeek": "Tuesday", "orders": 456, "revenue": 10551.980321}, {"YearMonth": "2014-06", "DayOfWeek": "Wednesday", "orders": 446, "revenue": 10987.736739}, {"YearMonth": "2014-07", "DayOfWeek": "Friday", "orders": 346, "revenue": 9304.540318}, {"YearMonth": "2014-07", "DayOfWeek": "Monday", "orders": 424, "revenue": 10748.570948999999}, {"YearMonth": "2014-07", "DayOfWeek": "Saturday", "orders": 235, "revenue": 5672.958481}, {"YearMonth": "2014-07", "DayOfWeek": "Sunday", "orders": 289, "revenue": 7220.384811}, {"YearMonth": "2014-07", "DayOfWeek": "Thursday", "orders": 557, "revenue": 13380.226458}, {"YearMonth": "2014-07", "DayOfWeek": "Tuesday", "orders": 575, "revenue": 15006.954278}, {"YearMonth": "2014-07", "DayOfWeek": "Wednesday", "orders": 474, "revenue": 12762.37178}, {"YearMonth": "2014-08", "DayOfWeek": "Friday", "orders": 446, "revenue": 10300.650462}, {"YearMonth": "2014-08", "DayOfWeek": "Monday", "orders": 349, "revenue": 8985.363401}, {"YearMonth": "2014-08", "DayOfWeek": "Saturday", "orders": 354, "revenue": 8823.65062}, {"YearMonth": "2014-08", "DayOfWeek": "Sunday", "orders": 381, "revenue": 10141.06918}, {"YearMonth": "2014-08", "DayOfWeek": "Thursday", "orders": 427, "revenue": 10567.808833}, {"YearMonth": "2014-08", "DayOfWeek": "Tuesday", "orders": 378, "revenue": 9148.210906}, {"YearMonth": "2014-08", "DayOfWeek": "Wednesday", "orders": 442, "revenue": 10775.527039}, {"YearMonth": "2014-09", "DayOfWeek": "Friday", "orders": 406, "revenue": 10961.179986}, {"YearMonth": "2014-09", "DayOfWeek": "Monday", "orders": 566, "revenue": 13657.718733}, {"YearMonth": "2014-09", "DayOfWeek": "Saturday", "orders": 272, "revenue": 6675.387316}, {"YearMonth": "2014-09", "DayOfWeek": "Sunday", "orders": 318, "revenue": 7929.69514}, {"YearMonth": "2014-09", "DayOfWeek": "Thursday", "orders": 456, "revenue": 10702.896317}, {"YearMonth": "2014-09", "DayOfWeek": "Tuesday", "orders": 597, "revenue": 13806.26697}, {"YearMonth": "2014-09", "DayOfWeek": "Wednesday", "orders": 396, "revenue": 9572.283766}, {"YearMonth": "2014-10", "DayOfWeek": "Friday", "orders": 398, "revenue": 10421.371579}, {"YearMonth": "2014-10", "DayOfWeek": "Monday", "orders": 406, "revenue": 10240.715954}, {"YearMonth": "2014-10", "DayOfWeek": "Saturday", "orders": 217, "revenue": 5486.742428}, {"YearMonth": "2014-10", "DayOfWeek": "Sunday", "orders": 298, "revenue": 7872.478724}, {"YearMonth": "2014-10", "DayOfWeek": "Thursday", "orders": 466, "revenue": 12638.408522}, {"YearMonth": "2014-10", "DayOfWeek": "Tuesday", "orders": 507, "revenue": 12762.148904}, {"YearMonth": "2014-10", "DayOfWeek": "Wednesday", "orders": 580, "revenue": 15326.773162}, {"YearMonth": "2014-11", "DayOfWeek": "Friday", "orders": 291, "revenue": 7852.92484}, {"YearMonth": "2014-11", "DayOfWeek": "Monday", "orders": 423, "revenue": 10774.14748}, {"YearMonth": "2014-11", "DayOfWeek": "Saturday", "orders": 361, "revenue": 8859.726133}, {"YearMonth": "2014-11", "DayOfWeek": "Sunday", "orders": 441, "revenue": 11045.62661}, {"YearMonth": "2014-11", "DayOfWeek": "Thursday", "orders": 538, "revenue": 13828.701549}, {"YearMonth": "2014-11", "DayOfWeek": "Tuesday", "orders": 439, "revenue": 10545.5301}, {"YearMonth": "2014-11", "DayOfWeek": "Wednesday", "orders": 452, "revenue": 12730.692099}, {"YearMonth": "2014-12", "DayOfWeek": "Friday", "orders": 255, "revenue": 6156.455162}, {"YearMonth": "2014-12", "DayOfWeek": "Monday", "orders": 470, "revenue": 11838.643985}, {"YearMonth": "2014-12", "DayOfWeek": "Saturday", "orders": 220, "revenue": 5926.257741}, {"YearMonth": "2014-12", "DayOfWeek": "Sunday", "orders": 248, "revenue": 6672.2505}, {"YearMonth": "2014-12", "DayOfWeek": "Thursday", "orders": 332, "revenue": 8496.243015}, {"YearMonth": "2014-12", "DayOfWeek": "Tuesday", "orders": 404, "revenue": 10260.746020999999}, {"YearMonth": "2014-12", "DayOfWeek": "Wednesday", "orders": 329, "revenue": 8095.637976}, {"YearMonth": "2015-01", "DayOfWeek": "Friday", "orders": 852, "revenue": 23870.599111}, {"YearMonth": "2015-01", "DayOfWeek": "Monday", "orders": 757, "revenue": 19000.580081}, {"YearMonth": "2015-01", "DayOfWeek": "Saturday", "orders": 686, "revenue": 19375.18611}, {"YearMonth": "2015-01", "DayOfWeek": "Sunday", "orders": 492, "revenue": 13514.393481}, {"YearMonth": "2015-01", "DayOfWeek": "Thursday", "orders": 681, "revenue": 18133.09725}, {"YearMonth": "2015-01", "DayOfWeek": "Tuesday", "orders": 526, "revenue": 15134.478933}, {"YearMonth": "2015-01", "DayOfWeek": "Wednesday", "orders": 638, "revenue": 16814.285653}, {"YearMonth": "2015-02", "DayOfWeek": "Friday", "orders": 286, "revenue": 7423.374529}, {"YearMonth": "2015-02", "DayOfWeek": "Monday", "orders": 412, "revenue": 10257.066254}, {"YearMonth": "2015-02", "DayOfWeek": "Saturday", "orders": 237, "revenue": 6482.206772}, {"YearMonth": "2015-02", "DayOfWeek": "Sunday", "orders": 345, "revenue": 9616.390334}, {"YearMonth": "2015-02", "DayOfWeek": "Thursday", "orders": 372, "revenue": 9641.02699}, {"YearMonth": "2015-02", "DayOfWeek": "Tuesday", "orders": 349, "revenue": 8631.046532}, {"YearMonth": "2015-02", "DayOfWeek": "Wednesday", "orders": 403, "revenue": 10024.615905}, {"YearMonth": "2015-03", "DayOfWeek": "Friday", "orders": 400, "revenue": 10495.302371}, {"YearMonth": "2015-03", "DayOfWeek": "Monday", "orders": 665, "revenue": 16968.921045}, {"YearMonth": "2015-03", "DayOfWeek": "Saturday", "orders": 398, "revenue": 10627.714901}, {"YearMonth": "2015-03", "DayOfWeek": "Sunday", "orders": 417, "revenue": 9875.601143}, {"YearMonth": "2015-03", "DayOfWeek": "Thursday", "orders": 418, "revenue": 9913.695051}, {"YearMonth": "2015-03", "DayOfWeek": "Tuesday", "orders": 729, "revenue": 19423.7147}, {"YearMonth": "2015-03", "DayOfWeek": "Wednesday", "orders": 510, "revenue": 12338.90254}, {"YearMonth": "2015-04", "DayOfWeek": "Friday", "orders": 329, "revenue": 7553.865384}, {"YearMonth": "2015-04", "DayOfWeek": "Monday", "orders": 449, "revenue": 11465.160318}, {"YearMonth": "2015-04", "DayOfWeek": "Saturday", "orders": 250, "revenue": 6410.248943}, {"YearMonth": "2015-04", "DayOfWeek": "Sunday", "orders": 320, "revenue": 8236.581955}, {"YearMonth": "2015-04", "DayOfWeek": "Thursday", "orders": 482, "revenue": 11634.01806}, {"YearMonth": "2015-04", "DayOfWeek": "Tuesday", "orders": 435, "revenue": 10712.390248}, {"YearMonth": "2015-04", "DayOfWeek": "Wednesday", "orders": 567, "revenue": 13216.317893}, {"YearMonth": "2015-05", "DayOfWeek": "Friday", "orders": 351, "revenue": 9267.824103}, {"YearMonth": "2015-05", "DayOfWeek": "Monday", "orders": 327, "revenue": 8923.683959}, {"YearMonth": "2015-05", "DayOfWeek": "Saturday", "orders": 348, "revenue": 9031.852586}, {"YearMonth": "2015-05", "DayOfWeek": "Sunday", "orders": 432, "revenue": 12327.623778}, {"YearMonth": "2015-05", "DayOfWeek": "Thursday", "orders": 330, "revenue": 8459.120728}, {"YearMonth": "2015-05", "DayOfWeek": "Tuesday", "orders": 438, "revenue": 11374.100765}, {"YearMonth": "2015-05", "DayOfWeek": "Wednesday", "orders": 388, "revenue": 10005.634572}, {"YearMonth": "2015-06", "DayOfWeek": "Friday", "orders": 343, "revenue": 8455.914394}, {"YearMonth": "2015-06", "DayOfWeek": "Monday", "orders": 578, "revenue": 14971.645500999999}, {"YearMonth": "2015-06", "DayOfWeek": "Saturday", "orders": 243, "revenue": 6641.685822}, {"YearMonth": "2015-06", "DayOfWeek": "Sunday", "orders": 311, "revenue": 8833.302627000001}, {"YearMonth": "2015-06", "DayOfWeek": "Thursday", "orders": 431, "revenue": 11581.451304}, {"YearMonth": "2015-06", "DayOfWeek": "Tuesday", "orders": 587, "revenue": 16449.865973}, {"YearMonth": "2015-06", "DayOfWeek": "Wednesday", "orders": 367, "revenue": 9065.613458}, {"YearMonth": "2015-07", "DayOfWeek": "Friday", "orders": 462, "revenue": 11978.110234}, {"YearMonth": "2015-07", "DayOfWeek": "Monday", "orders": 426, "revenue": 9918.193592}, {"YearMonth": "2015-07", "DayOfWeek": "Saturday", "orders": 219, "revenue": 5426.040274}, {"YearMonth": "2015-07", "DayOfWeek": "Sunday", "orders": 332, "revenue": 7702.596804}, {"YearMonth": "2015-07", "DayOfWeek": "Thursday", "orders": 404, "revenue": 9528.726757}, {"YearMonth": "2015-07", "DayOfWeek": "Tuesday", "orders": 377, "revenue": 9542.284115}, {"YearMonth": "2015-07", "DayOfWeek": "Wednesday", "orders": 402, "revenue": 10809.109897}, {"YearMonth": "2015-08", "DayOfWeek": "Friday", "orders": 351, "revenue": 9603.947787}, {"YearMonth": "2015-08", "DayOfWeek": "Monday", "orders": 563, "revenue": 14272.370786}, {"YearMonth": "2015-08", "DayOfWeek": "Saturday", "orders": 334, "revenue": 9458.579194}, {"YearMonth": "2015-08", "DayOfWeek": "Sunday", "orders": 345, "revenue": 8970.359265}, {"YearMonth": "2015-08", "DayOfWeek": "Thursday", "orders": 463, "revenue": 11774.592849999999}, {"YearMonth": "2015-08", "DayOfWeek": "Tuesday", "orders": 419, "revenue": 10490.50543}, {"YearMonth": "2015-08", "DayOfWeek": "Wednesday", "orders": 347, "revenue": 9793.714426999999}, {"YearMonth": "2015-09", "DayOfWeek": "Friday", "orders": 420, "revenue": 11427.258498}, {"YearMonth": "2015-09", "DayOfWeek": "Monday", "orders": 522, "revenue": 13505.804847}, {"YearMonth": "2015-09", "DayOfWeek": "Saturday", "orders": 317, "revenue": 9040.823667999999}, {"YearMonth": "2015-09", "DayOfWeek": "Sunday", "orders": 315, "revenue": 8022.207517}, {"YearMonth": "2015-09", "DayOfWeek": "Thursday", "orders": 519, "revenue": 13693.472657}, {"YearMonth": "2015-09", "DayOfWeek": "Tuesday", "orders": 506, "revenue": 13670.685245}, {"YearMonth": "2015-09", "DayOfWeek": "Wednesday", "orders": 556, "revenue": 15290.579760999999}, {"YearMonth": "2015-10", "DayOfWeek": "Friday", "orders": 348, "revenue": 8850.058531}, {"YearMonth": "2015-10", "DayOfWeek": "Monday", "orders": 422, "revenue": 10706.502134}, {"YearMonth": "2015-10", "DayOfWeek": "Saturday", "orders": 275, "revenue": 7052.282794}, {"YearMonth": "2015-10", "DayOfWeek": "Sunday", "orders": 296, "revenue": 7042.750482}, {"YearMonth": "2015-10", "DayOfWeek": "Thursday", "orders": 331, "revenue": 9205.18738}, {"YearMonth": "2015-10", "DayOfWeek": "Tuesday", "orders": 476, "revenue": 11998.685475}, {"YearMonth": "2015-10", "DayOfWeek": "Wednesday", "orders": 360, "revenue": 10434.638061}, {"YearMonth": "2015-11", "DayOfWeek": "Friday", "orders": 409, "revenue": 10694.680451}, {"YearMonth": "2015-11", "DayOfWeek": "Monday", "orders": 544, "revenue": 14753.236147}, {"YearMonth": "2015-11", "DayOfWeek": "Saturday", "orders": 309, "revenue": 8803.889998}, {"YearMonth": "2015-11", "DayOfWeek": "Sunday", "orders": 380, "revenue": 10372.672952}, {"YearMonth": "2015-11", "DayOfWeek": "Thursday", "orders": 337, "revenue": 9520.230391}, {"YearMonth": "2015-11", "DayOfWeek": "Tuesday", "orders": 448, "revenue": 11007.468743}, {"YearMonth": "2015-11", "DayOfWeek": "Wednesday", "orders": 319, "revenue": 8574.788724}, {"YearMonth": "2015-12", "DayOfWeek": "Friday", "orders": 278, "revenue": 7303.073557}, {"YearMonth": "2015-12", "DayOfWeek": "Monday", "orders": 343, "revenue": 9279.549723}, {"YearMonth": "2015-12", "DayOfWeek": "Saturday", "orders": 244, "revenue": 6390.921096}, {"YearMonth": "2015-12", "DayOfWeek": "Sunday", "orders": 279, "revenue": 7935.120222}, {"YearMonth": "2015-12", "DayOfWeek": "Thursday", "orders": 420, "revenue": 11440.167159}, {"YearMonth": "2015-12", "DayOfWeek": "Tuesday", "orders": 457, "revenue": 11089.710014}, {"YearMonth": "2015-12", "DayOfWeek": "Wednesday", "orders": 603, "revenue": 15536.410727}, {"YearMonth": "2016-01", "DayOfWeek": "Friday", "orders": 642, "revenue": 16460.341946}, {"YearMonth": "2016-01", "DayOfWeek": "Monday", "orders": 747, "revenue": 19005.624077}, {"YearMonth": "2016-01", "DayOfWeek": "Saturday", "orders": 507, "revenue": 14681.896575}, {"YearMonth": "2016-01", "DayOfWeek": "Sunday", "orders": 576, "revenue": 14526.403269}, {"YearMonth": "2016-01", "DayOfWeek": "Thursday", "orders": 625, "revenue": 16542.896356}, {"YearMonth": "2016-01", "DayOfWeek": "Tuesday", "orders": 760, "revenue": 18958.645738}, {"YearMonth": "2016-01", "DayOfWeek": "Wednesday", "orders": 674, "revenue": 18062.730615}, {"YearMonth": "2016-02", "DayOfWeek": "Friday", "orders": 254, "revenue": 6173.749182}, {"YearMonth": "2016-02", "DayOfWeek": "Monday", "orders": 543, "revenue": 14089.672185}, {"YearMonth": "2016-02", "DayOfWeek": "Saturday", "orders": 216, "revenue": 6105.44216}, {"YearMonth": "2016-02", "DayOfWeek": "Sunday", "orders": 279, "revenue": 7418.114771}, {"YearMonth": "2016-02", "DayOfWeek": "Thursday", "orders": 312, "revenue": 8148.829192}, {"YearMonth": "2016-02", "DayOfWeek": "Tuesday", "orders": 276, "revenue": 6912.330941}, {"YearMonth": "2016-02", "DayOfWeek": "Wednesday", "orders": 299, "revenue": 7500.4426}, {"YearMonth": "2016-03", "DayOfWeek": "Friday", "orders": 294, "revenue": 7555.999658}, {"YearMonth": "2016-03", "DayOfWeek": "Monday", "orders": 429, "revenue": 12062.676949}, {"YearMonth": "2016-03", "DayOfWeek": "Saturday", "orders": 303, "revenue": 8176.442496}, {"YearMonth": "2016-03", "DayOfWeek": "Sunday", "orders": 310, "revenue": 8247.304666}, {"YearMonth": "2016-03", "DayOfWeek": "Thursday", "orders": 598, "revenue": 18197.026104}, {"YearMonth": "2016-03", "DayOfWeek": "Tuesday", "orders": 576, "revenue": 15527.769232}, {"YearMonth": "2016-03", "DayOfWeek": "Wednesday", "orders": 651, "revenue": 17022.22756}, {"YearMonth": "2016-04", "DayOfWeek": "Friday", "orders": 473, "revenue": 11714.647984}, {"YearMonth": "2016-04", "DayOfWeek": "Monday", "orders": 457, "revenue": 11853.436737}, {"YearMonth": "2016-04", "DayOfWeek": "Saturday", "orders": 371, "revenue": 10670.345519}, {"YearMonth": "2016-04", "DayOfWeek": "Sunday", "orders": 297, "revenue": 7761.873211}, {"YearMonth": "2016-04", "DayOfWeek": "Thursday", "orders": 406, "revenue": 10953.867246}, {"YearMonth": "2016-04", "DayOfWeek": "Tuesday", "orders": 460, "revenue": 11258.315941}, {"YearMonth": "2016-04", "DayOfWeek": "Wednesday", "orders": 465, "revenue": 11940.386011}, {"YearMonth": "2016-05", "DayOfWeek": "Friday", "orders": 279, "revenue": 6601.70303}, {"YearMonth": "2016-05", "DayOfWeek": "Monday", "orders": 432, "revenue": 12172.935381}, {"YearMonth": "2016-05", "DayOfWeek": "Saturday", "orders": 248, "revenue": 6333.380038}, {"YearMonth": "2016-05", "DayOfWeek": "Sunday", "orders": 364, "revenue": 10439.022159}, {"YearMonth": "2016-05", "DayOfWeek": "Thursday", "orders": 441, "revenue": 11465.893393}, {"YearMonth": "2016-05", "DayOfWeek": "Tuesday", "orders": 524, "revenue": 12768.072318999999}, {"YearMonth": "2016-05", "DayOfWeek": "Wednesday", "orders": 302, "revenue": 7462.222113}, {"YearMonth": "2016-06", "DayOfWeek": "Friday", "orders": 333, "revenue": 9045.701245}, {"YearMonth": "2016-06", "DayOfWeek": "Monday", "orders": 389, "revenue": 10132.889697999999}, {"YearMonth": "2016-06", "DayOfWeek": "Saturday", "orders": 322, "revenue": 8883.864075}, {"YearMonth": "2016-06", "DayOfWeek": "Sunday", "orders": 379, "revenue": 11318.200552}, {"YearMonth": "2016-06", "DayOfWeek": "Thursday", "orders": 483, "revenue": 11898.716418}, {"YearMonth": "2016-06", "DayOfWeek": "Tuesday", "orders": 347, "revenue": 7984.322166}, {"YearMonth": "2016-06", "DayOfWeek": "Wednesday", "orders": 496, "revenue": 13222.794209}, {"YearMonth": "2016-07", "DayOfWeek": "Friday", "orders": 416, "revenue": 10897.239734}, {"YearMonth": "2016-07", "DayOfWeek": "Monday", "orders": 309, "revenue": 7870.284429}, {"YearMonth": "2016-07", "DayOfWeek": "Saturday", "orders": 281, "revenue": 6959.965686}, {"YearMonth": "2016-07", "DayOfWeek": "Sunday", "orders": 353, "revenue": 9221.258213}, {"YearMonth": "2016-07", "DayOfWeek": "Thursday", "orders": 393, "revenue": 9522.636595}, {"YearMonth": "2016-07", "DayOfWeek": "Tuesday", "orders": 408, "revenue": 9968.992598}, {"YearMonth": "2016-07", "DayOfWeek": "Wednesday", "orders": 333, "revenue": 8780.03596}, {"YearMonth": "2016-08", "DayOfWeek": "Friday", "orders": 323, "revenue": 9044.585362}, {"YearMonth": "2016-08", "DayOfWeek": "Monday", "orders": 578, "revenue": 16852.270265}, {"YearMonth": "2016-08", "DayOfWeek": "Saturday", "orders": 344, "revenue": 9497.042261}, {"YearMonth": "2016-08", "DayOfWeek": "Sunday", "orders": 367, "revenue": 10006.075546}, {"YearMonth": "2016-08", "DayOfWeek": "Thursday", "orders": 411, "revenue": 11586.945388}, {"YearMonth": "2016-08", "DayOfWeek": "Tuesday", "orders": 661, "revenue": 18335.769007}, {"YearMonth": "2016-08", "DayOfWeek": "Wednesday", "orders": 592, "revenue": 16360.141894}, {"YearMonth": "2016-09", "DayOfWeek": "Friday", "orders": 462, "revenue": 11997.836841}, {"YearMonth": "2016-09", "DayOfWeek": "Monday", "orders": 419, "revenue": 10289.129251}, {"YearMonth": "2016-09", "DayOfWeek": "Saturday", "orders": 250, "revenue": 6054.023087}, {"YearMonth": "2016-09", "DayOfWeek": "Sunday", "orders": 287, "revenue": 6811.231675}, {"YearMonth": "2016-09", "DayOfWeek": "Thursday", "orders": 527, "revenue": 12902.237542}, {"YearMonth": "2016-09", "DayOfWeek": "Tuesday", "orders": 509, "revenue": 12872.984445}, {"YearMonth": "2016-09", "DayOfWeek": "Wednesday", "orders": 403, "revenue": 10301.53457}, {"YearMonth": "2016-10", "DayOfWeek": "Friday", "orders": 358, "revenue": 9601.567196}, {"YearMonth": "2016-10", "DayOfWeek": "Monday", "orders": 554, "revenue": 14282.653357}, {"YearMonth": "2016-10", "DayOfWeek": "Saturday", "orders": 394, "revenue": 9697.042781}, {"YearMonth": "2016-10", "DayOfWeek": "Sunday", "orders": 469, "revenue": 12349.667894}, {"YearMonth": "2016-10", "DayOfWeek": "Thursday", "orders": 398, "revenue": 10032.17668}, {"YearMonth": "2016-10", "DayOfWeek": "Tuesday", "orders": 423, "revenue": 10437.328276}, {"YearMonth": "2016-10", "DayOfWeek": "Wednesday", "orders": 399, "revenue": 9970.794714}, {"YearMonth": "2016-11", "DayOfWeek": "Friday", "orders": 490, "revenue": 13311.336198}, {"YearMonth": "2016-11", "DayOfWeek": "Monday", "orders": 559, "revenue": 14921.826825}, {"YearMonth": "2016-11", "DayOfWeek": "Saturday", "orders": 275, "revenue": 7793.064508}, {"YearMonth": "2016-11", "DayOfWeek": "Sunday", "orders": 369, "revenue": 10199.921907}, {"YearMonth": "2016-11", "DayOfWeek": "Thursday", "orders": 452, "revenue": 11142.166393}, {"YearMonth": "2016-11", "DayOfWeek": "Tuesday", "orders": 493, "revenue": 13767.029495}, {"YearMonth": "2016-11", "DayOfWeek": "Wednesday", "orders": 754, "revenue": 20597.421503}, {"YearMonth": "2016-12", "DayOfWeek": "Friday", "orders": 484, "revenue": 12788.506113}, {"YearMonth": "2016-12", "DayOfWeek": "Monday", "orders": 267, "revenue": 6727.755384}, {"YearMonth": "2016-12", "DayOfWeek": "Saturday", "orders": 371, "revenue": 10755.815826}, {"YearMonth": "2016-12", "DayOfWeek": "Sunday", "orders": 207, "revenue": 6116.497103}, {"YearMonth": "2016-12", "DayOfWeek": "Thursday", "orders": 502, "revenue": 13261.274944}, {"YearMonth": "2016-12", "DayOfWeek": "Tuesday", "orders": 308, "revenue": 7837.335768}, {"YearMonth": "2016-12", "DayOfWeek": "Wednesday", "orders": 431, "revenue": 11259.029135}, {"YearMonth": "2017-01", "DayOfWeek": "Friday", "orders": 622, "revenue": 16197.189948}, {"YearMonth": "2017-01", "DayOfWeek": "Monday", "orders": 895, "revenue": 21284.449884}, {"YearMonth": "2017-01", "DayOfWeek": "Saturday", "orders": 630, "revenue": 15970.4299}, {"YearMonth": "2017-01", "DayOfWeek": "Sunday", "orders": 704, "revenue": 18733.869937}, {"YearMonth": "2017-01", "DayOfWeek": "Thursday", "orders": 594, "revenue": 14103.119934}, {"YearMonth": "2017-01", "DayOfWeek": "Tuesday", "orders": 916, "revenue": 22162.409873}, {"YearMonth": "2017-01", "DayOfWeek": "Wednesday", "orders": 759, "revenue": 18209.309912}, {"YearMonth": "2017-02", "DayOfWeek": "Friday", "orders": 454, "revenue": 11286.379967}, {"YearMonth": "2017-02", "DayOfWeek": "Monday", "orders": 594, "revenue": 13564.899946}, {"YearMonth": "2017-02", "DayOfWeek": "Saturday", "orders": 377, "revenue": 8606.899952}, {"YearMonth": "2017-02", "DayOfWeek": "Sunday", "orders": 489, "revenue": 10983.079956}, {"YearMonth": "2017-02", "DayOfWeek": "Thursday", "orders": 506, "revenue": 10850.679966}, {"YearMonth": "2017-02", "DayOfWeek": "Tuesday", "orders": 550, "revenue": 13284.649965999999}, {"YearMonth": "2017-02", "DayOfWeek": "Wednesday", "orders": 483, "revenue": 11414.079966}, {"YearMonth": "2017-03", "DayOfWeek": "Friday", "orders": 672, "revenue": 15869.149972}, {"YearMonth": "2017-03", "DayOfWeek": "Monday", "orders": 584, "revenue": 14397.68996}, {"YearMonth": "2017-03", "DayOfWeek": "Saturday", "orders": 419, "revenue": 10469.969959}, {"YearMonth": "2017-03", "DayOfWeek": "Sunday", "orders": 485, "revenue": 11292.559932}, {"YearMonth": "2017-03", "DayOfWeek": "Thursday", "orders": 640, "revenue": 15527.75995}, {"YearMonth": "2017-03", "DayOfWeek": "Tuesday", "orders": 645, "revenue": 15850.819913}, {"YearMonth": "2017-03", "DayOfWeek": "Wednesday", "orders": 581, "revenue": 15319.629936}, {"YearMonth": "2017-04", "DayOfWeek": "Friday", "orders": 394, "revenue": 10009.009957}, {"YearMonth": "2017-04", "DayOfWeek": "Monday", "orders": 589, "revenue": 14787.359957}, {"YearMonth": "2017-04", "DayOfWeek": "Saturday", "orders": 465, "revenue": 10989.369978}, {"YearMonth": "2017-04", "DayOfWeek": "Sunday", "orders": 509, "revenue": 13280.529951}, {"YearMonth": "2017-04", "DayOfWeek": "Thursday", "orders": 407, "revenue": 9115.299963}, {"YearMonth": "2017-04", "DayOfWeek": "Tuesday", "orders": 527, "revenue": 13264.499961}, {"YearMonth": "2017-04", "DayOfWeek": "Wednesday", "orders": 437, "revenue": 11255.099964}, {"YearMonth": "2017-05", "DayOfWeek": "Friday", "orders": 405, "revenue": 10745.39991}, {"YearMonth": "2017-05", "DayOfWeek": "Monday", "orders": 799, "revenue": 20711.9998}, {"YearMonth": "2017-05", "DayOfWeek": "Saturday", "orders": 366, "revenue": 8495.369934}, {"YearMonth": "2017-05", "DayOfWeek": "Sunday", "orders": 420, "revenue": 10374.559915}, {"YearMonth": "2017-05", "DayOfWeek": "Thursday", "orders": 527, "revenue": 12319.669901}, {"YearMonth": "2017-05", "DayOfWeek": "Tuesday", "orders": 806, "revenue": 20404.939781}, {"YearMonth": "2017-05", "DayOfWeek": "Wednesday", "orders": 703, "revenue": 18338.959855}, {"YearMonth": "2017-06", "DayOfWeek": "Friday", "orders": 486, "revenue": 11527.799859}, {"YearMonth": "2017-06", "DayOfWeek": "Monday", "orders": 529, "revenue": 13118.919881}, {"YearMonth": "2017-06", "DayOfWeek": "Saturday", "orders": 343, "revenue": 8839.389945}, {"YearMonth": "2017-06", "DayOfWeek": "Sunday", "orders": 436, "revenue": 10910.709898}, {"YearMonth": "2017-06", "DayOfWeek": "Thursday", "orders": 532, "revenue": 12911.249856}, {"YearMonth": "2017-06", "DayOfWeek": "Tuesday", "orders": 496, "revenue": 11939.279915}, {"YearMonth": "2017-06", "DayOfWeek": "Wednesday", "orders": 478, "revenue": 11827.639883}, {"YearMonth": "2017-07", "DayOfWeek": "Friday", "orders": 620, "revenue": 16940.839806}, {"YearMonth": "2017-07", "DayOfWeek": "Monday", "orders": 926, "revenue": 25691.519769}, {"YearMonth": "2017-07", "DayOfWeek": "Saturday", "orders": 640, "revenue": 19139.839818}, {"YearMonth": "2017-07", "DayOfWeek": "Sunday", "orders": 771, "revenue": 21876.50977}, {"YearMonth": "2017-07", "DayOfWeek": "Thursday", "orders": 657, "revenue": 17482.369843}, {"YearMonth": "2017-07", "DayOfWeek": "Tuesday", "orders": 866, "revenue": 24087.289744}, {"YearMonth": "2017-07", "DayOfWeek": "Wednesday", "orders": 653, "revenue": 18131.34981}, {"YearMonth": "2017-08", "DayOfWeek": "Friday", "orders": 458, "revenue": 11784.349869}, {"YearMonth": "2017-08", "DayOfWeek": "Monday", "orders": 551, "revenue": 14259.209875999999}, {"YearMonth": "2017-08", "DayOfWeek": "Saturday", "orders": 374, "revenue": 9653.599915}, {"YearMonth": "2017-08", "DayOfWeek": "Sunday", "orders": 414, "revenue": 10298.979895}, {"YearMonth": "2017-08", "DayOfWeek": "Thursday", "orders": 761, "revenue": 18174.659835}, {"YearMonth": "2017-08", "DayOfWeek": "Tuesday", "orders": 719, "revenue": 17503.959816}, {"YearMonth": "2017-08", "DayOfWeek": "Wednesday", "orders": 662, "revenue": 16081.529825}, {"YearMonth": "2017-09", "DayOfWeek": "Friday", "orders": 608, "revenue": 15161.219873}, {"YearMonth": "2017-09", "DayOfWeek": "Monday", "orders": 720, "revenue": 17984.739799}, {"YearMonth": "2017-09", "DayOfWeek": "Saturday", "orders": 495, "revenue": 12972.619837}, {"YearMonth": "2017-09", "DayOfWeek": "Sunday", "orders": 537, "revenue": 13245.24986}, {"YearMonth": "2017-09", "DayOfWeek": "Thursday", "orders": 445, "revenue": 10933.08989}, {"YearMonth": "2017-09", "DayOfWeek": "Tuesday", "orders": 560, "revenue": 15306.459856}, {"YearMonth": "2017-09", "DayOfWeek": "Wednesday", "orders": 563, "revenue": 14337.459869}, {"YearMonth": "2017-10", "DayOfWeek": "Friday", "orders": 664, "revenue": 17020.699837}, {"YearMonth": "2017-10", "DayOfWeek": "Monday", "orders": 741, "revenue": 18619.299774}, {"YearMonth": "2017-10", "DayOfWeek": "Saturday", "orders": 472, "revenue": 11114.229888}, {"YearMonth": "2017-10", "DayOfWeek": "Sunday", "orders": 715, "revenue": 18757.509806}, {"YearMonth": "2017-10", "DayOfWeek": "Thursday", "orders": 724, "revenue": 17676.259821}, {"YearMonth": "2017-10", "DayOfWeek": "Tuesday", "orders": 902, "revenue": 23650.799765}, {"YearMonth": "2017-10", "DayOfWeek": "Wednesday", "orders": 854, "revenue": 21336.109783}, {"YearMonth": "2017-11", "DayOfWeek": "Friday", "orders": 653, "revenue": 16620.38983}, {"YearMonth": "2017-11", "DayOfWeek": "Monday", "orders": 961, "revenue": 26535.659703}, {"YearMonth": "2017-11", "DayOfWeek": "Saturday", "orders": 449, "revenue": 12393.129896999999}, {"YearMonth": "2017-11", "DayOfWeek": "Sunday", "orders": 631, "revenue": 16823.41983}, {"YearMonth": "2017-11", "DayOfWeek": "Thursday", "orders": 815, "revenue": 21441.769777}, {"YearMonth": "2017-11", "DayOfWeek": "Tuesday", "orders": 608, "revenue": 16425.299834999998}, {"YearMonth": "2017-11", "DayOfWeek": "Wednesday", "orders": 1050, "revenue": 28151.819689}, {"YearMonth": "2017-12", "DayOfWeek": "Friday", "orders": 510, "revenue": 13917.599864}, {"YearMonth": "2017-12", "DayOfWeek": "Monday", "orders": 422, "revenue": 10912.529865}, {"YearMonth": "2017-12", "DayOfWeek": "Saturday", "orders": 824, "revenue": 21150.779832}, {"YearMonth": "2017-12", "DayOfWeek": "Sunday", "orders": 608, "revenue": 15214.899843}, {"YearMonth": "2017-12", "DayOfWeek": "Thursday", "orders": 468, "revenue": 10913.629906}, {"YearMonth": "2017-12", "DayOfWeek": "Tuesday", "orders": 460, "revenue": 11675.659876}, {"YearMonth": "2017-12", "DayOfWeek": "Wednesday", "orders": 456, "revenue": 11205.739898}, {"YearMonth": "2018-01", "DayOfWeek": "Friday", "orders": 902, "revenue": 23698.529838}, {"YearMonth": "2018-01", "DayOfWeek": "Monday", "orders": 1563, "revenue": 41085.149728}, {"YearMonth": "2018-01", "DayOfWeek": "Saturday", "orders": 797, "revenue": 21403.569855}, {"YearMonth": "2018-01", "DayOfWeek": "Sunday", "orders": 913, "revenue": 24798.749868}, {"YearMonth": "2018-01", "DayOfWeek": "Thursday", "orders": 1167, "revenue": 29159.509773}, {"YearMonth": "2018-01", "DayOfWeek": "Tuesday", "orders": 1440, "revenue": 36971.689817}, {"YearMonth": "2018-01", "DayOfWeek": "Wednesday", "orders": 1430, "revenue": 37785.809706}, {"YearMonth": "2018-02", "DayOfWeek": "Friday", "orders": 624, "revenue": 14905.119877000001}, {"YearMonth": "2018-02", "DayOfWeek": "Monday", "orders": 797, "revenue": 19908.239861000002}, {"YearMonth": "2018-02", "DayOfWeek": "Saturday", "orders": 524, "revenue": 12229.819878}, {"YearMonth": "2018-02", "DayOfWeek": "Sunday", "orders": 573, "revenue": 15151.789888}, {"YearMonth": "2018-02", "DayOfWeek": "Thursday", "orders": 676, "revenue": 16697.68991}, {"YearMonth": "2018-02", "DayOfWeek": "Tuesday", "orders": 762, "revenue": 19449.399884}, {"YearMonth": "2018-02", "DayOfWeek": "Wednesday", "orders": 742, "revenue": 19050.979917}, {"YearMonth": "2018-03", "DayOfWeek": "Friday", "orders": 782, "revenue": 18708.909859}, {"YearMonth": "2018-03", "DayOfWeek": "Monday", "orders": 994, "revenue": 25856.599822}, {"YearMonth": "2018-03", "DayOfWeek": "Saturday", "orders": 741, "revenue": 17475.879869}, {"YearMonth": "2018-03", "DayOfWeek": "Sunday", "orders": 662, "revenue": 17352.969913}, {"YearMonth": "2018-03", "DayOfWeek": "Thursday", "orders": 878, "revenue": 21622.679852}, {"YearMonth": "2018-03", "DayOfWeek": "Tuesday", "orders": 816, "revenue": 20231.349905}, {"YearMonth": "2018-03", "DayOfWeek": "Wednesday", "orders": 797, "revenue": 18549.029796}, {"YearMonth": "2018-04", "DayOfWeek": "Friday", "orders": 796, "revenue": 21690.329768}, {"YearMonth": "2018-04", "DayOfWeek": "Monday", "orders": 913, "revenue": 23876.879815}, {"YearMonth": "2018-04", "DayOfWeek": "Saturday", "orders": 552, "revenue": 14539.139868}, {"YearMonth": "2018-04", "DayOfWeek": "Sunday", "orders": 812, "revenue": 20619.349809}, {"YearMonth": "2018-04", "DayOfWeek": "Thursday", "orders": 592, "revenue": 15050.439853}, {"YearMonth": "2018-04", "DayOfWeek": "Tuesday", "orders": 811, "revenue": 19770.359827}, {"YearMonth": "2018-04", "DayOfWeek": "Wednesday", "orders": 697, "revenue": 17801.29982}, {"YearMonth": "2018-05", "DayOfWeek": "Friday", "orders": 612, "revenue": 16493.899848}, {"YearMonth": "2018-05", "DayOfWeek": "Monday", "orders": 630, "revenue": 16563.989801}, {"YearMonth": "2018-05", "DayOfWeek": "Saturday", "orders": 491, "revenue": 13239.769863}, {"YearMonth": "2018-05", "DayOfWeek": "Sunday", "orders": 499, "revenue": 12328.619846}, {"YearMonth": "2018-05", "DayOfWeek": "Thursday", "orders": 837, "revenue": 21262.919783}, {"YearMonth": "2018-05", "DayOfWeek": "Tuesday", "orders": 849, "revenue": 22030.36976}, {"YearMonth": "2018-05", "DayOfWeek": "Wednesday", "orders": 998, "revenue": 26640.149723}, {"YearMonth": "2018-06", "DayOfWeek": "Friday", "orders": 775, "revenue": 20179.42974}, {"YearMonth": "2018-06", "DayOfWeek": "Monday", "orders": 843, "revenue": 21516.949734}, {"YearMonth": "2018-06", "DayOfWeek": "Saturday", "orders": 743, "revenue": 18572.509801}, {"YearMonth": "2018-06", "DayOfWeek": "Sunday", "orders": 572, "revenue": 14993.689846}, {"YearMonth": "2018-06", "DayOfWeek": "Thursday", "orders": 589, "revenue": 15527.83984}, {"YearMonth": "2018-06", "DayOfWeek": "Tuesday", "orders": 670, "revenue": 16733.289787}, {"YearMonth": "2018-06", "DayOfWeek": "Wednesday", "orders": 608, "revenue": 15605.819802}, {"YearMonth": "2018-07", "DayOfWeek": "Friday", "orders": 577, "revenue": 16806.329859}, {"YearMonth": "2018-07", "DayOfWeek": "Monday", "orders": 753, "revenue": 20033.609784}, {"YearMonth": "2018-07", "DayOfWeek": "Saturday", "orders": 494, "revenue": 13631.909848}, {"YearMonth": "2018-07", "DayOfWeek": "Sunday", "orders": 673, "revenue": 19196.629793}, {"YearMonth": "2018-07", "DayOfWeek": "Thursday", "orders": 579, "revenue": 14774.449846}, {"YearMonth": "2018-07", "DayOfWeek": "Tuesday", "orders": 740, "revenue": 20114.519806}, {"YearMonth": "2018-07", "DayOfWeek": "Wednesday", "orders": 692, "revenue": 18865.409821999998}, {"YearMonth": "2018-08", "DayOfWeek": "Friday", "orders": 820, "revenue": 22329.389767}, {"YearMonth": "2018-08", "DayOfWeek": "Monday", "orders": 822, "revenue": 22232.129782}, {"YearMonth": "2018-08", "DayOfWeek": "Saturday", "orders": 597, "revenue": 17122.139831}, {"YearMonth": "2018-08", "DayOfWeek": "Sunday", "orders": 657, "revenue": 17654.979811}, {"YearMonth": "2018-08", "DayOfWeek": "Thursday", "orders": 1166, "revenue": 31133.009701}, {"YearMonth": "2018-08", "DayOfWeek": "Tuesday", "orders": 717, "revenue": 19815.259801}, {"YearMonth": "2018-08", "DayOfWeek": "Wednesday", "orders": 740, "revenue": 19880.369760999998}, {"YearMonth": "2018-09", "DayOfWeek": "Friday", "orders": 537, "revenue": 14103.859854}, {"YearMonth": "2018-09", "DayOfWeek": "Monday", "orders": 639, "revenue": 16438.339881}, {"YearMonth": "2018-09", "DayOfWeek": "Saturday", "orders": 536, "revenue": 14432.879863}, {"YearMonth": "2018-09", "DayOfWeek": "Sunday", "orders": 697, "revenue": 18407.889833}, {"YearMonth": "2018-09", "DayOfWeek": "Thursday", "orders": 591, "revenue": 16492.439832}, {"YearMonth": "2018-09", "DayOfWeek": "Tuesday", "orders": 605, "revenue": 15428.429863}, {"YearMonth": "2018-09", "DayOfWeek": "Wednesday", "orders": 715, "revenue": 19582.789853}, {"YearMonth": "2018-10", "DayOfWeek": "Friday", "orders": 590, "revenue": 15747.259897}, {"YearMonth": "2018-10", "DayOfWeek": "Monday", "orders": 941, "revenue": 25698.259814}, {"YearMonth": "2018-10", "DayOfWeek": "Saturday", "orders": 536, "revenue": 15207.009913}, {"YearMonth": "2018-10", "DayOfWeek": "Sunday", "orders": 511, "revenue": 14660.089899}, {"YearMonth": "2018-10", "DayOfWeek": "Thursday", "orders": 825, "revenue": 24361.779834}, {"YearMonth": "2018-10", "DayOfWeek": "Tuesday", "orders": 813, "revenue": 22101.279809}, {"YearMonth": "2018-10", "DayOfWeek": "Wednesday", "orders": 1069, "revenue": 30865.229821}, {"YearMonth": "2018-11", "DayOfWeek": "Friday", "orders": 750, "revenue": 21338.639963999998}, {"YearMonth": "2018-11", "DayOfWeek": "Monday", "orders": 744, "revenue": 19811.649978999998}, {"YearMonth": "2018-11", "DayOfWeek": "Saturday", "orders": 590, "revenue": 16980.98998}, {"YearMonth": "2018-11", "DayOfWeek": "Sunday", "orders": 622, "revenue": 17477.779975999998}, {"YearMonth": "2018-11", "DayOfWeek": "Thursday", "orders": 851, "revenue": 23041.260012}, {"YearMonth": "2018-11", "DayOfWeek": "Tuesday", "orders": 711, "revenue": 19567.459988}, {"YearMonth": "2018-11", "DayOfWeek": "Wednesday", "orders": 631, "revenue": 17370.699988}, {"YearMonth": "2018-12", "DayOfWeek": "Friday", "orders": 786, "revenue": 21481.509918}, {"YearMonth": "2018-12", "DayOfWeek": "Monday", "orders": 784, "revenue": 22251.579906}, {"YearMonth": "2018-12", "DayOfWeek": "Saturday", "orders": 689, "revenue": 19093.179917}, {"YearMonth": "2018-12", "DayOfWeek": "Sunday", "orders": 556, "revenue": 15479.309971}, {"YearMonth": "2018-12", "DayOfWeek": "Thursday", "orders": 660, "revenue": 18794.089922}, {"YearMonth": "2018-12", "DayOfWeek": "Tuesday", "orders": 480, "revenue": 11736.449993}, {"YearMonth": "2018-12", "DayOfWeek": "Wednesday", "orders": 558, "revenue": 15329.589987}, {"YearMonth": "2019-01", "DayOfWeek": "Friday", "orders": 739, "revenue": 21220.809864}, {"YearMonth": "2019-01", "DayOfWeek": "Monday", "orders": 1076, "revenue": 29946.919807}, {"YearMonth": "2019-01", "DayOfWeek": "Saturday", "orders": 690, "revenue": 19393.319854}, {"YearMonth": "2019-01", "DayOfWeek": "Sunday", "orders": 817, "revenue": 23390.059852}, {"YearMonth": "2019-01", "DayOfWeek": "Thursday", "orders": 1254, "revenue": 36474.499768}, {"YearMonth": "2019-01", "DayOfWeek": "Tuesday", "orders": 1162, "revenue": 32070.809764}, {"YearMonth": "2019-01", "DayOfWeek": "Wednesday", "orders": 1297, "revenue": 37372.649759}, {"YearMonth": "2019-02", "DayOfWeek": "Friday", "orders": 548, "revenue": 14630.729906}, {"YearMonth": "2019-02", "DayOfWeek": "Monday", "orders": 761, "revenue": 21411.689792999998}, {"YearMonth": "2019-02", "DayOfWeek": "Saturday", "orders": 458, "revenue": 11803.269885}, {"YearMonth": "2019-02", "DayOfWeek": "Sunday", "orders": 483, "revenue": 13296.769934}, {"YearMonth": "2019-02", "DayOfWeek": "Thursday", "orders": 588, "revenue": 16711.819854}, {"YearMonth": "2019-02", "DayOfWeek": "Tuesday", "orders": 643, "revenue": 18007.529851}, {"YearMonth": "2019-02", "DayOfWeek": "Wednesday", "orders": 670, "revenue": 19015.729844999998}, {"YearMonth": "2019-03", "DayOfWeek": "Friday", "orders": 879, "revenue": 27774.919829}, {"YearMonth": "2019-03", "DayOfWeek": "Monday", "orders": 667, "revenue": 19025.939851}, {"YearMonth": "2019-03", "DayOfWeek": "Saturday", "orders": 646, "revenue": 18761.359814}, {"YearMonth": "2019-03", "DayOfWeek": "Sunday", "orders": 695, "revenue": 20039.829846}, {"YearMonth": "2019-03", "DayOfWeek": "Thursday", "orders": 526, "revenue": 14634.329876}, {"YearMonth": "2019-03", "DayOfWeek": "Tuesday", "orders": 530, "revenue": 14559.699891}, {"YearMonth": "2019-03", "DayOfWeek": "Wednesday", "orders": 577, "revenue": 15684.569872}, {"YearMonth": "2019-04", "DayOfWeek": "Friday", "orders": 550, "revenue": 16510.379847}, {"YearMonth": "2019-04", "DayOfWeek": "Monday", "orders": 659, "revenue": 18776.03985}, {"YearMonth": "2019-04", "DayOfWeek": "Saturday", "orders": 419, "revenue": 11919.079886}, {"YearMonth": "2019-04", "DayOfWeek": "Sunday", "orders": 649, "revenue": 19715.669866}, {"YearMonth": "2019-04", "DayOfWeek": "Thursday", "orders": 479, "revenue": 13175.929881}, {"YearMonth": "2019-04", "DayOfWeek": "Tuesday", "orders": 824, "revenue": 22956.909782}, {"YearMonth": "2019-04", "DayOfWeek": "Wednesday", "orders": 572, "revenue": 15755.079855}, {"YearMonth": "2019-05", "DayOfWeek": "Friday", "orders": 708, "revenue": 19220.799816}, {"YearMonth": "2019-05", "DayOfWeek": "Monday", "orders": 751, "revenue": 22425.559866}, {"YearMonth": "2019-05", "DayOfWeek": "Saturday", "orders": 521, "revenue": 15593.379905}, {"YearMonth": "2019-05", "DayOfWeek": "Sunday", "orders": 475, "revenue": 13500.169926999999}, {"YearMonth": "2019-05", "DayOfWeek": "Thursday", "orders": 664, "revenue": 18101.44991}, {"YearMonth": "2019-05", "DayOfWeek": "Tuesday", "orders": 609, "revenue": 16812.539902}, {"YearMonth": "2019-05", "DayOfWeek": "Wednesday", "orders": 662, "revenue": 17723.389911}, {"YearMonth": "2019-06", "DayOfWeek": "Friday", "orders": 629, "revenue": 22010.05983}, {"YearMonth": "2019-06", "DayOfWeek": "Monday", "orders": 671, "revenue": 18650.249817}, {"YearMonth": "2019-06", "DayOfWeek": "Saturday", "orders": 535, "revenue": 15654.45988}, {"YearMonth": "2019-06", "DayOfWeek": "Sunday", "orders": 658, "revenue": 18867.659871}, {"YearMonth": "2019-06", "DayOfWeek": "Thursday", "orders": 581, "revenue": 18494.759843}, {"YearMonth": "2019-06", "DayOfWeek": "Tuesday", "orders": 591, "revenue": 16710.179874999998}, {"YearMonth": "2019-06", "DayOfWeek": "Wednesday", "orders": 511, "revenue": 14986.659869}, {"YearMonth": "2019-07", "DayOfWeek": "Friday", "orders": 557, "revenue": 18026.259857}, {"YearMonth": "2019-07", "DayOfWeek": "Monday", "orders": 990, "revenue": 33312.969673}, {"YearMonth": "2019-07", "DayOfWeek": "Saturday", "orders": 445, "revenue": 14914.709878}, {"YearMonth": "2019-07", "DayOfWeek": "Sunday", "orders": 504, "revenue": 16589.179855}, {"YearMonth": "2019-07", "DayOfWeek": "Thursday", "orders": 659, "revenue": 20888.389795}, {"YearMonth": "2019-07", "DayOfWeek": "Tuesday", "orders": 1000, "revenue": 34117.739691999996}, {"YearMonth": "2019-07", "DayOfWeek": "Wednesday", "orders": 1069, "revenue": 36814.079660999996}, {"YearMonth": "2019-08", "DayOfWeek": "Friday", "orders": 494, "revenue": 12841.579889999999}, {"YearMonth": "2019-08", "DayOfWeek": "Monday", "orders": 442, "revenue": 11689.189903}, {"YearMonth": "2019-08", "DayOfWeek": "Saturday", "orders": 432, "revenue": 11835.529919999999}, {"YearMonth": "2019-08", "DayOfWeek": "Sunday", "orders": 385, "revenue": 10870.119916}, {"YearMonth": "2019-08", "DayOfWeek": "Thursday", "orders": 481, "revenue": 13275.299876}, {"YearMonth": "2019-08", "DayOfWeek": "Tuesday", "orders": 456, "revenue": 13674.599903999999}, {"YearMonth": "2019-08", "DayOfWeek": "Wednesday", "orders": 425, "revenue": 12064.459939}, {"YearMonth": "2019-09", "DayOfWeek": "Friday", "orders": 475, "revenue": 13735.760041}, {"YearMonth": "2019-09", "DayOfWeek": "Monday", "orders": 615, "revenue": 17937.870009}, {"YearMonth": "2019-09", "DayOfWeek": "Saturday", "orders": 518, "revenue": 15446.30005}, {"YearMonth": "2019-09", "DayOfWeek": "Sunday", "orders": 730, "revenue": 21513.080066}, {"YearMonth": "2019-09", "DayOfWeek": "Thursday", "orders": 629, "revenue": 18541.98001}, {"YearMonth": "2019-09", "DayOfWeek": "Tuesday", "orders": 657, "revenue": 17094.63003}, {"YearMonth": "2019-09", "DayOfWeek": "Wednesday", "orders": 637, "revenue": 17234.410061}, {"YearMonth": "2019-10", "DayOfWeek": "Friday", "orders": 750, "revenue": 25116.779812}, {"YearMonth": "2019-10", "DayOfWeek": "Monday", "orders": 578, "revenue": 17201.349858999998}, {"YearMonth": "2019-10", "DayOfWeek": "Saturday", "orders": 474, "revenue": 14725.909845999999}, {"YearMonth": "2019-10", "DayOfWeek": "Sunday", "orders": 515, "revenue": 16488.419864}, {"YearMonth": "2019-10", "DayOfWeek": "Thursday", "orders": 617, "revenue": 18682.43991}, {"YearMonth": "2019-10", "DayOfWeek": "Tuesday", "orders": 676, "revenue": 20023.659878}, {"YearMonth": "2019-10", "DayOfWeek": "Wednesday", "orders": 636, "revenue": 19591.759909}, {"YearMonth": "2019-11", "DayOfWeek": "Friday", "orders": 835, "revenue": 24912.569788}, {"YearMonth": "2019-11", "DayOfWeek": "Monday", "orders": 611, "revenue": 16378.23984}, {"YearMonth": "2019-11", "DayOfWeek": "Saturday", "orders": 520, "revenue": 15141.029867}, {"YearMonth": "2019-11", "DayOfWeek": "Sunday", "orders": 448, "revenue": 13538.729895}, {"YearMonth": "2019-11", "DayOfWeek": "Thursday", "orders": 490, "revenue": 14257.099893999999}, {"YearMonth": "2019-11", "DayOfWeek": "Tuesday", "orders": 494, "revenue": 14146.349893999999}, {"YearMonth": "2019-11", "DayOfWeek": "Wednesday", "orders": 582, "revenue": 16213.549882}, {"YearMonth": "2019-12", "DayOfWeek": "Friday", "orders": 417, "revenue": 11463.239924}, {"YearMonth": "2019-12", "DayOfWeek": "Monday", "orders": 766, "revenue": 22606.689755}, {"YearMonth": "2019-12", "DayOfWeek": "Saturday", "orders": 562, "revenue": 18003.739854}, {"YearMonth": "2019-12", "DayOfWeek": "Sunday", "orders": 638, "revenue": 20405.399799}, {"YearMonth": "2019-12", "DayOfWeek": "Thursday", "orders": 323, "revenue": 8200.679966}, {"YearMonth": "2019-12", "DayOfWeek": "Tuesday", "orders": 459, "revenue": 13256.679873}, {"YearMonth": "2019-12", "DayOfWeek": "Wednesday", "orders": 367, "revenue": 10113.809928}, {"YearMonth": "2020-01", "DayOfWeek": "Friday", "orders": 1151, "revenue": 33323.499692}, {"YearMonth": "2020-01", "DayOfWeek": "Monday", "orders": 997, "revenue": 32244.169736}, {"YearMonth": "2020-01", "DayOfWeek": "Saturday", "orders": 481, "revenue": 14002.409894999999}, {"YearMonth": "2020-01", "DayOfWeek": "Sunday", "orders": 529, "revenue": 16283.719844}, {"YearMonth": "2020-01", "DayOfWeek": "Thursday", "orders": 858, "revenue": 24903.349832}, {"YearMonth": "2020-01", "DayOfWeek": "Tuesday", "orders": 898, "revenue": 27564.099809}, {"YearMonth": "2020-01", "DayOfWeek": "Wednesday", "orders": 799, "revenue": 24235.0598}, {"YearMonth": "2020-02", "DayOfWeek": "Friday", "orders": 346, "revenue": 8944.93993}, {"YearMonth": "2020-02", "DayOfWeek": "Monday", "orders": 397, "revenue": 10617.109895}, {"YearMonth": "2020-02", "DayOfWeek": "Saturday", "orders": 359, "revenue": 9599.599927}, {"YearMonth": "2020-02", "DayOfWeek": "Sunday", "orders": 374, "revenue": 10032.529884}, {"YearMonth": "2020-02", "DayOfWeek": "Thursday", "orders": 357, "revenue": 9575.969927}, {"YearMonth": "2020-02", "DayOfWeek": "Tuesday", "orders": 364, "revenue": 9945.829898}, {"YearMonth": "2020-02", "DayOfWeek": "Wednesday", "orders": 323, "revenue": 8431.619918999999}, {"YearMonth": "2020-03", "DayOfWeek": "Friday", "orders": 652, "revenue": 18920.509851}, {"YearMonth": "2020-03", "DayOfWeek": "Monday", "orders": 821, "revenue": 23429.859882}, {"YearMonth": "2020-03", "DayOfWeek": "Saturday", "orders": 612, "revenue": 16847.929879}, {"YearMonth": "2020-03", "DayOfWeek": "Sunday", "orders": 752, "revenue": 21208.089849}, {"YearMonth": "2020-03", "DayOfWeek": "Thursday", "orders": 699, "revenue": 18098.74991}, {"YearMonth": "2020-03", "DayOfWeek": "Tuesday", "orders": 893, "revenue": 23631.329915}, {"YearMonth": "2020-03", "DayOfWeek": "Wednesday", "orders": 763, "revenue": 23128.179895}, {"YearMonth": "2020-04", "DayOfWeek": "Friday", "orders": 786, "revenue": 17060.169909}, {"YearMonth": "2020-04", "DayOfWeek": "Monday", "orders": 911, "revenue": 21990.589891}, {"YearMonth": "2020-04", "DayOfWeek": "Saturday", "orders": 752, "revenue": 17636.269914}, {"YearMonth": "2020-04", "DayOfWeek": "Sunday", "orders": 784, "revenue": 17283.539893999998}, {"YearMonth": "2020-04", "DayOfWeek": "Thursday", "orders": 1506, "revenue": 33527.309833}, {"YearMonth": "2020-04", "DayOfWeek": "Tuesday", "orders": 879, "revenue": 20345.979919999998}, {"YearMonth": "2020-04", "DayOfWeek": "Wednesday", "orders": 1257, "revenue": 28265.199847}, {"YearMonth": "2020-05", "DayOfWeek": "Friday", "orders": 1134, "revenue": 26446.669873}, {"YearMonth": "2020-05", "DayOfWeek": "Monday", "orders": 867, "revenue": 19786.549856999998}, {"YearMonth": "2020-05", "DayOfWeek": "Saturday", "orders": 923, "revenue": 22403.549881}, {"YearMonth": "2020-05", "DayOfWeek": "Sunday", "orders": 972, "revenue": 23322.629878}, {"YearMonth": "2020-05", "DayOfWeek": "Thursday", "orders": 806, "revenue": 18667.059895}, {"YearMonth": "2020-05", "DayOfWeek": "Tuesday", "orders": 797, "revenue": 17994.179935}, {"YearMonth": "2020-05", "DayOfWeek": "Wednesday", "orders": 737, "revenue": 16957.139842}, {"YearMonth": "2020-06", "DayOfWeek": "Friday", "orders": 923, "revenue": 24006.529896}, {"YearMonth": "2020-06", "DayOfWeek": "Monday", "orders": 1123, "revenue": 29588.889804}, {"YearMonth": "2020-06", "DayOfWeek": "Saturday", "orders": 562, "revenue": 12968.149961}, {"YearMonth": "2020-06", "DayOfWeek": "Sunday", "orders": 592, "revenue": 15061.049939999999}, {"YearMonth": "2020-06", "DayOfWeek": "Thursday", "orders": 951, "revenue": 23350.859855}, {"YearMonth": "2020-06", "DayOfWeek": "Tuesday", "orders": 916, "revenue": 23176.499866}, {"YearMonth": "2020-06", "DayOfWeek": "Wednesday", "orders": 916, "revenue": 23234.339851}, {"YearMonth": "2020-07", "DayOfWeek": "Friday", "orders": 990, "revenue": 27850.309784}, {"YearMonth": "2020-07", "DayOfWeek": "Monday", "orders": 806, "revenue": 21702.119859}, {"YearMonth": "2020-07", "DayOfWeek": "Saturday", "orders": 546, "revenue": 14784.669949}, {"YearMonth": "2020-07", "DayOfWeek": "Sunday", "orders": 639, "revenue": 16779.249884}, {"YearMonth": "2020-07", "DayOfWeek": "Thursday", "orders": 1041, "revenue": 27665.419792}, {"YearMonth": "2020-07", "DayOfWeek": "Tuesday", "orders": 795, "revenue": 21211.419890999998}, {"YearMonth": "2020-07", "DayOfWeek": "Wednesday", "orders": 930, "revenue": 23442.249828}, {"YearMonth": "2020-08", "DayOfWeek": "Friday", "orders": 859, "revenue": 25673.879786}, {"YearMonth": "2020-08", "DayOfWeek": "Monday", "orders": 965, "revenue": 27658.489795999998}, {"YearMonth": "2020-08", "DayOfWeek": "Saturday", "orders": 640, "revenue": 16894.399892999998}, {"YearMonth": "2020-08", "DayOfWeek": "Sunday", "orders": 734, "revenue": 18694.369855}, {"YearMonth": "2020-08", "DayOfWeek": "Thursday", "orders": 759, "revenue": 20616.15986}, {"YearMonth": "2020-08", "DayOfWeek": "Tuesday", "orders": 686, "revenue": 18302.739905}, {"YearMonth": "2020-08", "DayOfWeek": "Wednesday", "orders": 1015, "revenue": 29354.089827}, {"YearMonth": "2020-09", "DayOfWeek": "Friday", "orders": 688, "revenue": 19375.849895}, {"YearMonth": "2020-09", "DayOfWeek": "Monday", "orders": 700, "revenue": 17483.039869}, {"YearMonth": "2020-09", "DayOfWeek": "Saturday", "orders": 601, "revenue": 14140.219928999999}, {"YearMonth": "2020-09", "DayOfWeek": "Sunday", "orders": 638, "revenue": 15081.029945999999}, {"YearMonth": "2020-09", "DayOfWeek": "Thursday", "orders": 617, "revenue": 17059.199889}, {"YearMonth": "2020-09", "DayOfWeek": "Tuesday", "orders": 768, "revenue": 20266.939917}, {"YearMonth": "2020-09", "DayOfWeek": "Wednesday", "orders": 905, "revenue": 25486.729874}, {"YearMonth": "2020-10", "DayOfWeek": "Friday", "orders": 1027, "revenue": 25177.209867999998}, {"YearMonth": "2020-10", "DayOfWeek": "Monday", "orders": 1308, "revenue": 33623.269788}, {"YearMonth": "2020-10", "DayOfWeek": "Saturday", "orders": 972, "revenue": 22736.719876}, {"YearMonth": "2020-10", "DayOfWeek": "Sunday", "orders": 792, "revenue": 20301.729922}, {"YearMonth": "2020-10", "DayOfWeek": "Thursday", "orders": 1265, "revenue": 30290.559831}, {"YearMonth": "2020-10", "DayOfWeek": "Tuesday", "orders": 1300, "revenue": 33053.129809}, {"YearMonth": "2020-10", "DayOfWeek": "Wednesday", "orders": 1293, "revenue": 31434.949846}, {"YearMonth": "2020-11", "DayOfWeek": "Friday", "orders": 956, "revenue": 23686.359888}, {"YearMonth": "2020-11", "DayOfWeek": "Monday", "orders": 1414, "revenue": 34855.55984}, {"YearMonth": "2020-11", "DayOfWeek": "Saturday", "orders": 1106, "revenue": 25911.329861}, {"YearMonth": "2020-11", "DayOfWeek": "Sunday", "orders": 1275, "revenue": 30011.13988}, {"YearMonth": "2020-11", "DayOfWeek": "Thursday", "orders": 837, "revenue": 20307.509953}, {"YearMonth": "2020-11", "DayOfWeek": "Tuesday", "orders": 965, "revenue": 22974.689879999998}, {"YearMonth": "2020-11", "DayOfWeek": "Wednesday", "orders": 848, "revenue": 21502.849937}, {"YearMonth": "2020-12", "DayOfWeek": "Friday", "orders": 769, "revenue": 20073.319789}, {"YearMonth": "2020-12", "DayOfWeek": "Monday", "orders": 872, "revenue": 24732.129860999998}, {"YearMonth": "2020-12", "DayOfWeek": "Saturday", "orders": 737, "revenue": 19855.679874999998}, {"YearMonth": "2020-12", "DayOfWeek": "Sunday", "orders": 988, "revenue": 26916.139798}, {"YearMonth": "2020-12", "DayOfWeek": "Thursday", "orders": 840, "revenue": 21078.209877999998}, {"YearMonth": "2020-12", "DayOfWeek": "Tuesday", "orders": 1105, "revenue": 27358.969888}, {"YearMonth": "2020-12", "DayOfWeek": "Wednesday", "orders": 1052, "revenue": 27517.579858}, {"YearMonth": "2021-01", "DayOfWeek": "Friday", "orders": 1350, "revenue": 33811.189791}, {"YearMonth": "2021-01", "DayOfWeek": "Monday", "orders": 1230, "revenue": 31922.909831}, {"YearMonth": "2021-01", "DayOfWeek": "Saturday", "orders": 1070, "revenue": 26416.979865}, {"YearMonth": "2021-01", "DayOfWeek": "Sunday", "orders": 1654, "revenue": 45125.999665}, {"YearMonth": "2021-01", "DayOfWeek": "Thursday", "orders": 1019, "revenue": 24957.309905}, {"YearMonth": "2021-01", "DayOfWeek": "Tuesday", "orders": 1149, "revenue": 28532.139822}, {"YearMonth": "2021-01", "DayOfWeek": "Wednesday", "orders": 1455, "revenue": 38343.899692}, {"YearMonth": "2021-02", "DayOfWeek": "Friday", "orders": 643, "revenue": 14699.619923}, {"YearMonth": "2021-02", "DayOfWeek": "Monday", "orders": 792, "revenue": 19663.7899}, {"YearMonth": "2021-02", "DayOfWeek": "Saturday", "orders": 601, "revenue": 14721.429932}, {"YearMonth": "2021-02", "DayOfWeek": "Sunday", "orders": 667, "revenue": 16073.82991}, {"YearMonth": "2021-02", "DayOfWeek": "Thursday", "orders": 832, "revenue": 20131.029871}, {"YearMonth": "2021-02", "DayOfWeek": "Tuesday", "orders": 775, "revenue": 18442.739922}, {"YearMonth": "2021-02", "DayOfWeek": "Wednesday", "orders": 802, "revenue": 19896.59991}, {"YearMonth": "2021-03", "DayOfWeek": "Friday", "orders": 724, "revenue": 18667.049842}, {"YearMonth": "2021-03", "DayOfWeek": "Monday", "orders": 1043, "revenue": 26592.859819}, {"YearMonth": "2021-03", "DayOfWeek": "Saturday", "orders": 746, "revenue": 20461.369865}, {"YearMonth": "2021-03", "DayOfWeek": "Sunday", "orders": 742, "revenue": 20407.659871}, {"YearMonth": "2021-03", "DayOfWeek": "Thursday", "orders": 754, "revenue": 19016.439911}, {"YearMonth": "2021-03", "DayOfWeek": "Tuesday", "orders": 995, "revenue": 26199.979839}, {"YearMonth": "2021-03", "DayOfWeek": "Wednesday", "orders": 1020, "revenue": 26627.399868}, {"YearMonth": "2021-04", "DayOfWeek": "Friday", "orders": 828, "revenue": 22172.799886}, {"YearMonth": "2021-04", "DayOfWeek": "Monday", "orders": 612, "revenue": 16191.009871}, {"YearMonth": "2021-04", "DayOfWeek": "Saturday", "orders": 481, "revenue": 12186.569904}, {"YearMonth": "2021-04", "DayOfWeek": "Sunday", "orders": 574, "revenue": 15212.949864}, {"YearMonth": "2021-04", "DayOfWeek": "Thursday", "orders": 878, "revenue": 23705.569777}, {"YearMonth": "2021-04", "DayOfWeek": "Tuesday", "orders": 717, "revenue": 18327.00985}, {"YearMonth": "2021-04", "DayOfWeek": "Wednesday", "orders": 852, "revenue": 22044.789854}, {"YearMonth": "2021-05", "DayOfWeek": "Friday", "orders": 607, "revenue": 15465.739868999999}, {"YearMonth": "2021-05", "DayOfWeek": "Monday", "orders": 969, "revenue": 25768.739803}, {"YearMonth": "2021-05", "DayOfWeek": "Saturday", "orders": 849, "revenue": 23269.6898}, {"YearMonth": "2021-05", "DayOfWeek": "Sunday", "orders": 652, "revenue": 17492.839896}, {"YearMonth": "2021-05", "DayOfWeek": "Thursday", "orders": 565, "revenue": 15120.339936}, {"YearMonth": "2021-05", "DayOfWeek": "Tuesday", "orders": 775, "revenue": 21187.969812}, {"YearMonth": "2021-05", "DayOfWeek": "Wednesday", "orders": 704, "revenue": 17677.119873}, {"YearMonth": "2021-06", "DayOfWeek": "Friday", "orders": 987, "revenue": 25464.669761999998}, {"YearMonth": "2021-06", "DayOfWeek": "Monday", "orders": 788, "revenue": 19669.869832}, {"YearMonth": "2021-06", "DayOfWeek": "Saturday", "orders": 501, "revenue": 13560.119859}, {"YearMonth": "2021-06", "DayOfWeek": "Sunday", "orders": 600, "revenue": 16568.989877}, {"YearMonth": "2021-06", "DayOfWeek": "Thursday", "orders": 777, "revenue": 20156.359822}, {"YearMonth": "2021-06", "DayOfWeek": "Tuesday", "orders": 857, "revenue": 22055.179807}, {"YearMonth": "2021-06", "DayOfWeek": "Wednesday", "orders": 1116, "revenue": 29341.909748}, {"YearMonth": "2021-07", "DayOfWeek": "Friday", "orders": 1185, "revenue": 32786.07977}, {"YearMonth": "2021-07", "DayOfWeek": "Monday", "orders": 955, "revenue": 24750.979822999998}, {"YearMonth": "2021-07", "DayOfWeek": "Saturday", "orders": 1015, "revenue": 28705.059824}, {"YearMonth": "2021-07", "DayOfWeek": "Sunday", "orders": 783, "revenue": 21606.119876}, {"YearMonth": "2021-07", "DayOfWeek": "Thursday", "orders": 1016, "revenue": 26107.19981}, {"YearMonth": "2021-07", "DayOfWeek": "Tuesday", "orders": 808, "revenue": 19921.599864}, {"YearMonth": "2021-07", "DayOfWeek": "Wednesday", "orders": 775, "revenue": 20326.36983}, {"YearMonth": "2021-08", "DayOfWeek": "Friday", "orders": 539, "revenue": 13851.049885999999}, {"YearMonth": "2021-08", "DayOfWeek": "Monday", "orders": 943, "revenue": 24496.529795}, {"YearMonth": "2021-08", "DayOfWeek": "Saturday", "orders": 520, "revenue": 14141.169909999999}, {"YearMonth": "2021-08", "DayOfWeek": "Sunday", "orders": 712, "revenue": 18790.479833}, {"YearMonth": "2021-08", "DayOfWeek": "Thursday", "orders": 551, "revenue": 15484.549856}, {"YearMonth": "2021-08", "DayOfWeek": "Tuesday", "orders": 839, "revenue": 22098.229852}, {"YearMonth": "2021-08", "DayOfWeek": "Wednesday", "orders": 625, "revenue": 15465.58988}, {"YearMonth": "2021-09", "DayOfWeek": "Friday", "orders": 683, "revenue": 17421.309877}, {"YearMonth": "2021-09", "DayOfWeek": "Monday", "orders": 723, "revenue": 19519.079896}, {"YearMonth": "2021-09", "DayOfWeek": "Saturday", "orders": 620, "revenue": 18111.129857}, {"YearMonth": "2021-09", "DayOfWeek": "Sunday", "orders": 638, "revenue": 17646.349937}, {"YearMonth": "2021-09", "DayOfWeek": "Thursday", "orders": 990, "revenue": 26587.529789}, {"YearMonth": "2021-09", "DayOfWeek": "Tuesday", "orders": 651, "revenue": 17536.929884}, {"YearMonth": "2021-09", "DayOfWeek": "Wednesday", "orders": 764, "revenue": 20744.019851}, {"YearMonth": "2021-10", "DayOfWeek": "Friday", "orders": 817, "revenue": 20602.659815}, {"YearMonth": "2021-10", "DayOfWeek": "Monday", "orders": 757, "revenue": 19388.879861}, {"YearMonth": "2021-10", "DayOfWeek": "Saturday", "orders": 701, "revenue": 17647.099847999998}, {"YearMonth": "2021-10", "DayOfWeek": "Sunday", "orders": 856, "revenue": 22177.699824}, {"YearMonth": "2021-10", "DayOfWeek": "Thursday", "orders": 727, "revenue": 17176.019862}, {"YearMonth": "2021-10", "DayOfWeek": "Tuesday", "orders": 692, "revenue": 17027.839902}, {"YearMonth": "2021-10", "DayOfWeek": "Wednesday", "orders": 758, "revenue": 17855.019873999998}, {"YearMonth": "2021-11", "DayOfWeek": "Friday", "orders": 906, "revenue": 25560.749832999998}, {"YearMonth": "2021-11", "DayOfWeek": "Monday", "orders": 1466, "revenue": 42184.729676}, {"YearMonth": "2021-11", "DayOfWeek": "Saturday", "orders": 703, "revenue": 18902.369838}, {"YearMonth": "2021-11", "DayOfWeek": "Sunday", "orders": 725, "revenue": 19384.139879}, {"YearMonth": "2021-11", "DayOfWeek": "Thursday", "orders": 953, "revenue": 25551.529814}, {"YearMonth": "2021-11", "DayOfWeek": "Tuesday", "orders": 919, "revenue": 25424.509833}, {"YearMonth": "2021-11", "DayOfWeek": "Wednesday", "orders": 636, "revenue": 15972.579894999999}, {"YearMonth": "2021-12", "DayOfWeek": "Friday", "orders": 719, "revenue": 21011.829712}, {"YearMonth": "2021-12", "DayOfWeek": "Monday", "orders": 543, "revenue": 13363.239934}, {"YearMonth": "2021-12", "DayOfWeek": "Saturday", "orders": 349, "revenue": 9484.829907}, {"YearMonth": "2021-12", "DayOfWeek": "Sunday", "orders": 446, "revenue": 12098.739921999999}, {"YearMonth": "2021-12", "DayOfWeek": "Thursday", "orders": 708, "revenue": 19226.589864999998}, {"YearMonth": "2021-12", "DayOfWeek": "Tuesday", "orders": 560, "revenue": 14483.129911}, {"YearMonth": "2021-12", "DayOfWeek": "Wednesday", "orders": 791, "revenue": 21199.559813}, {"YearMonth": "2022-01", "DayOfWeek": "Friday", "orders": 1011, "revenue": 25482.429844}, {"YearMonth": "2022-01", "DayOfWeek": "Monday", "orders": 1418, "revenue": 35977.759716}, {"YearMonth": "2022-01", "DayOfWeek": "Saturday", "orders": 1027, "revenue": 26194.7998}, {"YearMonth": "2022-01", "DayOfWeek": "Sunday", "orders": 1286, "revenue": 33228.809736}, {"YearMonth": "2022-01", "DayOfWeek": "Thursday", "orders": 993, "revenue": 24876.11984}, {"YearMonth": "2022-01", "DayOfWeek": "Tuesday", "orders": 1149, "revenue": 27152.26975}, {"YearMonth": "2022-01", "DayOfWeek": "Wednesday", "orders": 1298, "revenue": 32338.369773}, {"YearMonth": "2022-02", "DayOfWeek": "Friday", "orders": 445, "revenue": 10367.119934999999}, {"YearMonth": "2022-02", "DayOfWeek": "Monday", "orders": 597, "revenue": 14516.539885}, {"YearMonth": "2022-02", "DayOfWeek": "Saturday", "orders": 431, "revenue": 10728.909921999999}, {"YearMonth": "2022-02", "DayOfWeek": "Sunday", "orders": 573, "revenue": 14181.259888999999}, {"YearMonth": "2022-02", "DayOfWeek": "Thursday", "orders": 533, "revenue": 12562.529913}, {"YearMonth": "2022-02", "DayOfWeek": "Tuesday", "orders": 558, "revenue": 13061.189940999999}, {"YearMonth": "2022-02", "DayOfWeek": "Wednesday", "orders": 562, "revenue": 12676.679914999999}, {"YearMonth": "2022-03", "DayOfWeek": "Friday", "orders": 722, "revenue": 18124.489878}, {"YearMonth": "2022-03", "DayOfWeek": "Monday", "orders": 979, "revenue": 26293.279833}, {"YearMonth": "2022-03", "DayOfWeek": "Saturday", "orders": 567, "revenue": 13931.249853}, {"YearMonth": "2022-03", "DayOfWeek": "Sunday", "orders": 715, "revenue": 16899.779828}, {"YearMonth": "2022-03", "DayOfWeek": "Thursday", "orders": 965, "revenue": 25829.389806}, {"YearMonth": "2022-03", "DayOfWeek": "Tuesday", "orders": 908, "revenue": 22896.299827}, {"YearMonth": "2022-03", "DayOfWeek": "Wednesday", "orders": 1329, "revenue": 34063.039704}, {"YearMonth": "2022-04", "DayOfWeek": "Friday", "orders": 860, "revenue": 19923.929928999998}, {"YearMonth": "2022-04", "DayOfWeek": "Monday", "orders": 735, "revenue": 17742.609893}, {"YearMonth": "2022-04", "DayOfWeek": "Saturday", "orders": 776, "revenue": 19138.859921}, {"YearMonth": "2022-04", "DayOfWeek": "Sunday", "orders": 590, "revenue": 13944.769941999999}, {"YearMonth": "2022-04", "DayOfWeek": "Thursday", "orders": 810, "revenue": 19372.999939}, {"YearMonth": "2022-04", "DayOfWeek": "Tuesday", "orders": 911, "revenue": 21947.4199}, {"YearMonth": "2022-04", "DayOfWeek": "Wednesday", "orders": 690, "revenue": 17428.239913}, {"YearMonth": "2022-05", "DayOfWeek": "Friday", "orders": 482, "revenue": 13160.039942}, {"YearMonth": "2022-05", "DayOfWeek": "Monday", "orders": 1039, "revenue": 26896.669908}, {"YearMonth": "2022-05", "DayOfWeek": "Saturday", "orders": 402, "revenue": 10503.249961}, {"YearMonth": "2022-05", "DayOfWeek": "Sunday", "orders": 668, "revenue": 16720.529921999998}, {"YearMonth": "2022-05", "DayOfWeek": "Thursday", "orders": 467, "revenue": 11996.399969}, {"YearMonth": "2022-05", "DayOfWeek": "Tuesday", "orders": 885, "revenue": 22822.339913}, {"YearMonth": "2022-05", "DayOfWeek": "Wednesday", "orders": 551, "revenue": 13502.999942}, {"YearMonth": "2022-06", "DayOfWeek": "Friday", "orders": 411, "revenue": 11803.939955}, {"YearMonth": "2022-06", "DayOfWeek": "Monday", "orders": 761, "revenue": 20169.839915}, {"YearMonth": "2022-06", "DayOfWeek": "Saturday", "orders": 409, "revenue": 10865.679935}, {"YearMonth": "2022-06", "DayOfWeek": "Sunday", "orders": 477, "revenue": 12414.279924999999}, {"YearMonth": "2022-06", "DayOfWeek": "Thursday", "orders": 739, "revenue": 19238.709934}, {"YearMonth": "2022-06", "DayOfWeek": "Tuesday", "orders": 600, "revenue": 16448.169887}, {"YearMonth": "2022-06", "DayOfWeek": "Wednesday", "orders": 765, "revenue": 20445.159929999998}, {"YearMonth": "2022-07", "DayOfWeek": "Friday", "orders": 865, "revenue": 23167.009885}, {"YearMonth": "2022-07", "DayOfWeek": "Monday", "orders": 906, "revenue": 24718.079912}, {"YearMonth": "2022-07", "DayOfWeek": "Saturday", "orders": 639, "revenue": 18116.299917}, {"YearMonth": "2022-07", "DayOfWeek": "Sunday", "orders": 735, "revenue": 19862.899916}, {"YearMonth": "2022-07", "DayOfWeek": "Thursday", "orders": 558, "revenue": 14038.379938}, {"YearMonth": "2022-07", "DayOfWeek": "Tuesday", "orders": 615, "revenue": 16016.719918}, {"YearMonth": "2022-07", "DayOfWeek": "Wednesday", "orders": 643, "revenue": 18009.289968}, {"YearMonth": "2022-08", "DayOfWeek": "Friday", "orders": 535, "revenue": 14425.929904999999}, {"YearMonth": "2022-08", "DayOfWeek": "Monday", "orders": 662, "revenue": 17988.989965}, {"YearMonth": "2022-08", "DayOfWeek": "Saturday", "orders": 438, "revenue": 12085.05996}, {"YearMonth": "2022-08", "DayOfWeek": "Sunday", "orders": 574, "revenue": 16002.519945}, {"YearMonth": "2022-08", "DayOfWeek": "Thursday", "orders": 611, "revenue": 16275.529937}, {"YearMonth": "2022-08", "DayOfWeek": "Tuesday", "orders": 688, "revenue": 18648.059944}, {"YearMonth": "2022-08", "DayOfWeek": "Wednesday", "orders": 727, "revenue": 20143.789925}, {"YearMonth": "2022-09", "DayOfWeek": "Friday", "orders": 666, "revenue": 17942.199907}, {"YearMonth": "2022-09", "DayOfWeek": "Monday", "orders": 642, "revenue": 16230.579958}, {"YearMonth": "2022-09", "DayOfWeek": "Saturday", "orders": 435, "revenue": 12523.659937}, {"YearMonth": "2022-09", "DayOfWeek": "Sunday", "orders": 494, "revenue": 14516.749955}, {"YearMonth": "2022-09", "DayOfWeek": "Thursday", "orders": 681, "revenue": 19077.529926}, {"YearMonth": "2022-09", "DayOfWeek": "Tuesday", "orders": 540, "revenue": 14231.879956}, {"YearMonth": "2022-09", "DayOfWeek": "Wednesday", "orders": 587, "revenue": 15972.899970999999}, {"YearMonth": "2022-10", "DayOfWeek": "Friday", "orders": 491, "revenue": 12054.479959}, {"YearMonth": "2022-10", "DayOfWeek": "Monday", "orders": 688, "revenue": 18371.159893}, {"YearMonth": "2022-10", "DayOfWeek": "Saturday", "orders": 615, "revenue": 16085.649911}, {"YearMonth": "2022-10", "DayOfWeek": "Sunday", "orders": 718, "revenue": 18750.659925}, {"YearMonth": "2022-10", "DayOfWeek": "Thursday", "orders": 500, "revenue": 12854.91996}, {"YearMonth": "2022-10", "DayOfWeek": "Tuesday", "orders": 589, "revenue": 15186.519943}, {"YearMonth": "2022-10", "DayOfWeek": "Wednesday", "orders": 561, "revenue": 14142.899917}, {"YearMonth": "2022-11", "DayOfWeek": "Friday", "orders": 595, "revenue": 17455.829947}, {"YearMonth": "2022-11", "DayOfWeek": "Monday", "orders": 691, "revenue": 19680.529936}, {"YearMonth": "2022-11", "DayOfWeek": "Saturday", "orders": 480, "revenue": 14366.039945999999}, {"YearMonth": "2022-11", "DayOfWeek": "Sunday", "orders": 622, "revenue": 18867.389923}, {"YearMonth": "2022-11", "DayOfWeek": "Thursday", "orders": 601, "revenue": 17385.709988}, {"YearMonth": "2022-11", "DayOfWeek": "Tuesday", "orders": 939, "revenue": 27382.309876}, {"YearMonth": "2022-11", "DayOfWeek": "Wednesday", "orders": 779, "revenue": 20936.489884}, {"YearMonth": "2022-12", "DayOfWeek": "Friday", "orders": 834, "revenue": 24567.049753}, {"YearMonth": "2022-12", "DayOfWeek": "Monday", "orders": 403, "revenue": 10358.55991}, {"YearMonth": "2022-12", "DayOfWeek": "Saturday", "orders": 456, "revenue": 12750.889895}, {"YearMonth": "2022-12", "DayOfWeek": "Sunday", "orders": 340, "revenue": 9599.999947}, {"YearMonth": "2022-12", "DayOfWeek": "Thursday", "orders": 620, "revenue": 16629.429838}, {"YearMonth": "2022-12", "DayOfWeek": "Tuesday", "orders": 395, "revenue": 10568.349935}, {"YearMonth": "2022-12", "DayOfWeek": "Wednesday", "orders": 655, "revenue": 18647.189792}, {"YearMonth": "2023-01", "DayOfWeek": "Friday", "orders": 874, "revenue": 24112.229863}, {"YearMonth": "2023-01", "DayOfWeek": "Monday", "orders": 1059, "revenue": 29292.389811}, {"YearMonth": "2023-01", "DayOfWeek": "Saturday", "orders": 615, "revenue": 16180.599881}, {"YearMonth": "2023-01", "DayOfWeek": "Sunday", "orders": 907, "revenue": 25879.479838}, {"YearMonth": "2023-01", "DayOfWeek": "Thursday", "orders": 745, "revenue": 22009.979859}, {"YearMonth": "2023-01", "DayOfWeek": "Tuesday", "orders": 1143, "revenue": 33124.179783}, {"YearMonth": "2023-01", "DayOfWeek": "Wednesday", "orders": 1000, "revenue": 29872.57974}, {"YearMonth": "2023-02", "DayOfWeek": "Friday", "orders": 478, "revenue": 12147.609929}, {"YearMonth": "2023-02", "DayOfWeek": "Monday", "orders": 672, "revenue": 17823.149892999998}, {"YearMonth": "2023-02", "DayOfWeek": "Saturday", "orders": 459, "revenue": 11999.209931}, {"YearMonth": "2023-02", "DayOfWeek": "Sunday", "orders": 470, "revenue": 12530.599908}, {"YearMonth": "2023-02", "DayOfWeek": "Thursday", "orders": 489, "revenue": 12579.909943999999}, {"YearMonth": "2023-02", "DayOfWeek": "Tuesday", "orders": 561, "revenue": 15405.179928}, {"YearMonth": "2023-02", "DayOfWeek": "Wednesday", "orders": 471, "revenue": 12665.309935}, {"YearMonth": "2023-03", "DayOfWeek": "Friday", "orders": 662, "revenue": 19505.439948}, {"YearMonth": "2023-03", "DayOfWeek": "Monday", "orders": 578, "revenue": 16177.999962}, {"YearMonth": "2023-03", "DayOfWeek": "Saturday", "orders": 515, "revenue": 14977.219944}, {"YearMonth": "2023-03", "DayOfWeek": "Sunday", "orders": 657, "revenue": 18988.439922}, {"YearMonth": "2023-03", "DayOfWeek": "Thursday", "orders": 760, "revenue": 22291.639936}, {"YearMonth": "2023-03", "DayOfWeek": "Tuesday", "orders": 562, "revenue": 16114.339989}, {"YearMonth": "2023-03", "DayOfWeek": "Wednesday", "orders": 660, "revenue": 18201.029961}, {"YearMonth": "2023-04", "DayOfWeek": "Friday", "orders": 370, "revenue": 9927.849954}, {"YearMonth": "2023-04", "DayOfWeek": "Monday", "orders": 453, "revenue": 12336.449942}, {"YearMonth": "2023-04", "DayOfWeek": "Saturday", "orders": 414, "revenue": 12234.34998}, {"YearMonth": "2023-04", "DayOfWeek": "Sunday", "orders": 497, "revenue": 14591.609961}, {"YearMonth": "2023-04", "DayOfWeek": "Thursday", "orders": 381, "revenue": 10951.149951}, {"YearMonth": "2023-04", "DayOfWeek": "Tuesday", "orders": 387, "revenue": 11375.239971}, {"YearMonth": "2023-04", "DayOfWeek": "Wednesday", "orders": 421, "revenue": 12753.709977}, {"YearMonth": "2023-05", "DayOfWeek": "Friday", "orders": 470, "revenue": 14880.399955}, {"YearMonth": "2023-05", "DayOfWeek": "Monday", "orders": 699, "revenue": 21402.359943}, {"YearMonth": "2023-05", "DayOfWeek": "Saturday", "orders": 329, "revenue": 10953.879955}, {"YearMonth": "2023-05", "DayOfWeek": "Sunday", "orders": 386, "revenue": 12006.259966}, {"YearMonth": "2023-05", "DayOfWeek": "Thursday", "orders": 518, "revenue": 15111.57993}, {"YearMonth": "2023-05", "DayOfWeek": "Tuesday", "orders": 715, "revenue": 21772.02987}, {"YearMonth": "2023-05", "DayOfWeek": "Wednesday", "orders": 678, "revenue": 21419.849969}, {"YearMonth": "2023-06", "DayOfWeek": "Friday", "orders": 535, "revenue": 16490.329923}, {"YearMonth": "2023-06", "DayOfWeek": "Monday", "orders": 748, "revenue": 24426.959862}, {"YearMonth": "2023-06", "DayOfWeek": "Saturday", "orders": 343, "revenue": 10395.209937}, {"YearMonth": "2023-06", "DayOfWeek": "Sunday", "orders": 390, "revenue": 12060.959948}, {"YearMonth": "2023-06", "DayOfWeek": "Thursday", "orders": 510, "revenue": 16478.909924}, {"YearMonth": "2023-06", "DayOfWeek": "Tuesday", "orders": 448, "revenue": 13778.469925}, {"YearMonth": "2023-06", "DayOfWeek": "Wednesday", "orders": 453, "revenue": 13402.639872}, {"YearMonth": "2023-07", "DayOfWeek": "Friday", "orders": 394, "revenue": 11403.439962}, {"YearMonth": "2023-07", "DayOfWeek": "Monday", "orders": 948, "revenue": 29806.589784}, {"YearMonth": "2023-07", "DayOfWeek": "Saturday", "orders": 621, "revenue": 19603.289895}, {"YearMonth": "2023-07", "DayOfWeek": "Sunday", "orders": 721, "revenue": 22732.679844}, {"YearMonth": "2023-07", "DayOfWeek": "Thursday", "orders": 537, "revenue": 16088.549891}, {"YearMonth": "2023-07", "DayOfWeek": "Tuesday", "orders": 565, "revenue": 17195.709883}, {"YearMonth": "2023-07", "DayOfWeek": "Wednesday", "orders": 585, "revenue": 17290.70992}, {"YearMonth": "2023-08", "DayOfWeek": "Friday", "orders": 389, "revenue": 11378.359966}, {"YearMonth": "2023-08", "DayOfWeek": "Monday", "orders": 504, "revenue": 14590.019943}, {"YearMonth": "2023-08", "DayOfWeek": "Saturday", "orders": 346, "revenue": 10186.689972}, {"YearMonth": "2023-08", "DayOfWeek": "Sunday", "orders": 386, "revenue": 11781.789968}, {"YearMonth": "2023-08", "DayOfWeek": "Thursday", "orders": 553, "revenue": 16660.86994}, {"YearMonth": "2023-08", "DayOfWeek": "Tuesday", "orders": 540, "revenue": 15115.659953}, {"YearMonth": "2023-08", "DayOfWeek": "Wednesday", "orders": 524, "revenue": 16042.799941}, {"YearMonth": "2023-09", "DayOfWeek": "Friday", "orders": 598, "revenue": 19554.909982}, {"YearMonth": "2023-09", "DayOfWeek": "Monday", "orders": 564, "revenue": 17662.469908}, {"YearMonth": "2023-09", "DayOfWeek": "Saturday", "orders": 514, "revenue": 15900.859982}, {"YearMonth": "2023-09", "DayOfWeek": "Sunday", "orders": 372, "revenue": 11365.759978}, {"YearMonth": "2023-09", "DayOfWeek": "Thursday", "orders": 543, "revenue": 17744.6899}, {"YearMonth": "2023-09", "DayOfWeek": "Tuesday", "orders": 489, "revenue": 15789.999958}, {"YearMonth": "2023-09", "DayOfWeek": "Wednesday", "orders": 448, "revenue": 14304.769944}, {"YearMonth": "2023-10", "DayOfWeek": "Friday", "orders": 493, "revenue": 15353.169910999999}, {"YearMonth": "2023-10", "DayOfWeek": "Monday", "orders": 725, "revenue": 23465.979909}, {"YearMonth": "2023-10", "DayOfWeek": "Saturday", "orders": 327, "revenue": 10410.939961}, {"YearMonth": "2023-10", "DayOfWeek": "Sunday", "orders": 562, "revenue": 17692.539974}, {"YearMonth": "2023-10", "DayOfWeek": "Thursday", "orders": 490, "revenue": 14724.369963}, {"YearMonth": "2023-10", "DayOfWeek": "Tuesday", "orders": 641, "revenue": 20613.709973}, {"YearMonth": "2023-10", "DayOfWeek": "Wednesday", "orders": 497, "revenue": 15674.119952}, {"YearMonth": "2023-11", "DayOfWeek": "Friday", "orders": 395, "revenue": 12590.289968}, {"YearMonth": "2023-11", "DayOfWeek": "Monday", "orders": 431, "revenue": 13280.259947999999}, {"YearMonth": "2023-11", "DayOfWeek": "Saturday", "orders": 453, "revenue": 15933.389971}, {"YearMonth": "2023-11", "DayOfWeek": "Sunday", "orders": 508, "revenue": 18775.439953}, {"YearMonth": "2023-11", "DayOfWeek": "Thursday", "orders": 565, "revenue": 18573.81032}, {"YearMonth": "2023-11", "DayOfWeek": "Tuesday", "orders": 350, "revenue": 11445.91996}, {"YearMonth": "2023-11", "DayOfWeek": "Wednesday", "orders": 507, "revenue": 16525.399946}, {"YearMonth": "2023-12", "DayOfWeek": "Friday", "orders": 592, "revenue": 19379.719901}, {"YearMonth": "2023-12", "DayOfWeek": "Monday", "orders": 367, "revenue": 11187.219966999999}, {"YearMonth": "2023-12", "DayOfWeek": "Saturday", "orders": 409, "revenue": 14217.409969}, {"YearMonth": "2023-12", "DayOfWeek": "Sunday", "orders": 381, "revenue": 12664.649959}, {"YearMonth": "2023-12", "DayOfWeek": "Thursday", "orders": 410, "revenue": 13370.109951}, {"YearMonth": "2023-12", "DayOfWeek": "Tuesday", "orders": 419, "revenue": 13956.570395}, {"YearMonth": "2023-12", "DayOfWeek": "Wednesday", "orders": 479, "revenue": 15845.499942}, {"YearMonth": "2024-01", "DayOfWeek": "Friday", "orders": 648, "revenue": 21881.829888}, {"YearMonth": "2024-01", "DayOfWeek": "Monday", "orders": 933, "revenue": 31664.069802}, {"YearMonth": "2024-01", "DayOfWeek": "Saturday", "orders": 482, "revenue": 16653.739933}, {"YearMonth": "2024-01", "DayOfWeek": "Sunday", "orders": 461, "revenue": 16687.096435}, {"YearMonth": "2024-01", "DayOfWeek": "Thursday", "orders": 601, "revenue": 19155.27991}, {"YearMonth": "2024-01", "DayOfWeek": "Tuesday", "orders": 796, "revenue": 25093.349864}, {"YearMonth": "2024-01", "DayOfWeek": "Wednesday", "orders": 882, "revenue": 28886.33984}, {"YearMonth": "2024-02", "DayOfWeek": "Friday", "orders": 303, "revenue": 9215.509974}, {"YearMonth": "2024-02", "DayOfWeek": "Monday", "orders": 465, "revenue": 14461.429913}, {"YearMonth": "2024-02", "DayOfWeek": "Saturday", "orders": 267, "revenue": 8735.619976}, {"YearMonth": "2024-02", "DayOfWeek": "Sunday", "orders": 350, "revenue": 11121.689964}, {"YearMonth": "2024-02", "DayOfWeek": "Thursday", "orders": 499, "revenue": 14492.459938}, {"YearMonth": "2024-02", "DayOfWeek": "Tuesday", "orders": 371, "revenue": 11281.399992}, {"YearMonth": "2024-02", "DayOfWeek": "Wednesday", "orders": 354, "revenue": 11267.439966}, {"YearMonth": "2024-03", "DayOfWeek": "Friday", "orders": 520, "revenue": 16248.219958}, {"YearMonth": "2024-03", "DayOfWeek": "Monday", "orders": 524, "revenue": 16070.079975999999}, {"YearMonth": "2024-03", "DayOfWeek": "Saturday", "orders": 404, "revenue": 13831.82997}, {"YearMonth": "2024-03", "DayOfWeek": "Sunday", "orders": 447, "revenue": 14716.539964}, {"YearMonth": "2024-03", "DayOfWeek": "Thursday", "orders": 435, "revenue": 14201.52996}, {"YearMonth": "2024-03", "DayOfWeek": "Tuesday", "orders": 513, "revenue": 17122.489964}, {"YearMonth": "2024-03", "DayOfWeek": "Wednesday", "orders": 419, "revenue": 13851.869958}, {"YearMonth": "2024-04", "DayOfWeek": "Friday", "orders": 474, "revenue": 15066.829969}, {"YearMonth": "2024-04", "DayOfWeek": "Monday", "orders": 609, "revenue": 19516.489922}, {"YearMonth": "2024-04", "DayOfWeek": "Saturday", "orders": 302, "revenue": 8753.809968}, {"YearMonth": "2024-04", "DayOfWeek": "Sunday", "orders": 377, "revenue": 12424.539968}, {"YearMonth": "2024-04", "DayOfWeek": "Thursday", "orders": 476, "revenue": 15964.439995}, {"YearMonth": "2024-04", "DayOfWeek": "Tuesday", "orders": 610, "revenue": 19702.400394}, {"YearMonth": "2024-04", "DayOfWeek": "Wednesday", "orders": 514, "revenue": 16746.699953}, {"YearMonth": "2024-05", "DayOfWeek": "Friday", "orders": 490, "revenue": 15072.729957}, {"YearMonth": "2024-05", "DayOfWeek": "Monday", "orders": 406, "revenue": 13069.129935}, {"YearMonth": "2024-05", "DayOfWeek": "Saturday", "orders": 263, "revenue": 8439.599969}, {"YearMonth": "2024-05", "DayOfWeek": "Sunday", "orders": 312, "revenue": 11057.731997}, {"YearMonth": "2024-05", "DayOfWeek": "Thursday", "orders": 549, "revenue": 16803.169977}, {"YearMonth": "2024-05", "DayOfWeek": "Tuesday", "orders": 474, "revenue": 13450.970335}, {"YearMonth": "2024-05", "DayOfWeek": "Wednesday", "orders": 551, "revenue": 16806.09953}, {"YearMonth": "2024-06", "DayOfWeek": "Friday", "orders": 406, "revenue": 11791.009941}, {"YearMonth": "2024-06", "DayOfWeek": "Monday", "orders": 459, "revenue": 14396.279938}, {"YearMonth": "2024-06", "DayOfWeek": "Saturday", "orders": 375, "revenue": 11856.006007}, {"YearMonth": "2024-06", "DayOfWeek": "Sunday", "orders": 483, "revenue": 16786.019933}, {"YearMonth": "2024-06", "DayOfWeek": "Thursday", "orders": 389, "revenue": 12736.81992}, {"YearMonth": "2024-06", "DayOfWeek": "Tuesday", "orders": 414, "revenue": 12857.389978}, {"YearMonth": "2024-06", "DayOfWeek": "Wednesday", "orders": 374, "revenue": 11552.879958}, {"YearMonth": "2024-07", "DayOfWeek": "Friday", "orders": 482, "revenue": 15034.869906}, {"YearMonth": "2024-07", "DayOfWeek": "Monday", "orders": 833, "revenue": 26920.077612}, {"YearMonth": "2024-07", "DayOfWeek": "Saturday", "orders": 337, "revenue": 10728.999919}, {"YearMonth": "2024-07", "DayOfWeek": "Sunday", "orders": 395, "revenue": 13121.599905000001}, {"YearMonth": "2024-07", "DayOfWeek": "Thursday", "orders": 526, "revenue": 16637.559875}, {"YearMonth": "2024-07", "DayOfWeek": "Tuesday", "orders": 877, "revenue": 30067.530464}, {"YearMonth": "2024-07", "DayOfWeek": "Wednesday", "orders": 681, "revenue": 23326.869885}, {"YearMonth": "2024-08", "DayOfWeek": "Friday", "orders": 529, "revenue": 15815.19994}, {"YearMonth": "2024-08", "DayOfWeek": "Monday", "orders": 485, "revenue": 15614.11994}, {"YearMonth": "2024-08", "DayOfWeek": "Saturday", "orders": 384, "revenue": 13037.500426}, {"YearMonth": "2024-08", "DayOfWeek": "Sunday", "orders": 313, "revenue": 10915.370007}, {"YearMonth": "2024-08", "DayOfWeek": "Thursday", "orders": 484, "revenue": 14617.979952}, {"YearMonth": "2024-08", "DayOfWeek": "Tuesday", "orders": 404, "revenue": 12711.769968}, {"YearMonth": "2024-08", "DayOfWeek": "Wednesday", "orders": 363, "revenue": 12573.470005}, {"YearMonth": "2024-09", "DayOfWeek": "Friday", "orders": 385, "revenue": 12100.780009}, {"YearMonth": "2024-09", "DayOfWeek": "Monday", "orders": 563, "revenue": 18106.020007}, {"YearMonth": "2024-09", "DayOfWeek": "Saturday", "orders": 282, "revenue": 9026.329975}, {"YearMonth": "2024-09", "DayOfWeek": "Sunday", "orders": 426, "revenue": 14995.370002}, {"YearMonth": "2024-09", "DayOfWeek": "Thursday", "orders": 398, "revenue": 12253.849951}, {"YearMonth": "2024-09", "DayOfWeek": "Tuesday", "orders": 379, "revenue": 12929.429956}, {"YearMonth": "2024-09", "DayOfWeek": "Wednesday", "orders": 428, "revenue": 14876.549955}, {"YearMonth": "2024-10", "DayOfWeek": "Friday", "orders": 340, "revenue": 9648.469926}, {"YearMonth": "2024-10", "DayOfWeek": "Monday", "orders": 457, "revenue": 14139.729927}, {"YearMonth": "2024-10", "DayOfWeek": "Saturday", "orders": 249, "revenue": 7680.27998}, {"YearMonth": "2024-10", "DayOfWeek": "Sunday", "orders": 342, "revenue": 9895.040024}, {"YearMonth": "2024-10", "DayOfWeek": "Thursday", "orders": 626, "revenue": 18450.369943}, {"YearMonth": "2024-10", "DayOfWeek": "Tuesday", "orders": 583, "revenue": 19571.709933}, {"YearMonth": "2024-10", "DayOfWeek": "Wednesday", "orders": 522, "revenue": 16825.899984}, {"YearMonth": "2024-11", "DayOfWeek": "Friday", "orders": 560, "revenue": 18185.149926}, {"YearMonth": "2024-11", "DayOfWeek": "Monday", "orders": 552, "revenue": 16824.64991}, {"YearMonth": "2024-11", "DayOfWeek": "Saturday", "orders": 411, "revenue": 14070.389981}, {"YearMonth": "2024-11", "DayOfWeek": "Sunday", "orders": 335, "revenue": 12130.43996}, {"YearMonth": "2024-11", "DayOfWeek": "Thursday", "orders": 541, "revenue": 17810.559924}, {"YearMonth": "2024-11", "DayOfWeek": "Tuesday", "orders": 490, "revenue": 15655.219967}, {"YearMonth": "2024-11", "DayOfWeek": "Wednesday", "orders": 468, "revenue": 14662.389955}, {"YearMonth": "2024-12", "DayOfWeek": "Friday", "orders": 296, "revenue": 8787.799944}, {"YearMonth": "2024-12", "DayOfWeek": "Monday", "orders": 520, "revenue": 14890.80992}, {"YearMonth": "2024-12", "DayOfWeek": "Saturday", "orders": 216, "revenue": 8040.869972}, {"YearMonth": "2024-12", "DayOfWeek": "Sunday", "orders": 312, "revenue": 10631.429966}, {"YearMonth": "2024-12", "DayOfWeek": "Thursday", "orders": 214, "revenue": 7152.919959}, {"YearMonth": "2024-12", "DayOfWeek": "Tuesday", "orders": 419, "revenue": 12551.959909}, {"YearMonth": "2024-12", "DayOfWeek": "Wednesday", "orders": 350, "revenue": 10152.549567}, {"YearMonth": "2025-01", "DayOfWeek": "Friday", "orders": 617, "revenue": 20411.225185}, {"YearMonth": "2025-01", "DayOfWeek": "Monday", "orders": 521, "revenue": 19139.014505}, {"YearMonth": "2025-01", "DayOfWeek": "Saturday", "orders": 362, "revenue": 12883.99988}, {"YearMonth": "2025-01", "DayOfWeek": "Sunday", "orders": 427, "revenue": 15837.099871}, {"YearMonth": "2025-01", "DayOfWeek": "Thursday", "orders": 564, "revenue": 19447.679828}, {"YearMonth": "2025-01", "DayOfWeek": "Tuesday", "orders": 503, "revenue": 17818.719858}, {"YearMonth": "2025-01", "DayOfWeek": "Wednesday", "orders": 508, "revenue": 17254.479893}, {"YearMonth": "2025-02", "DayOfWeek": "Friday", "orders": 338, "revenue": 10384.959959}, {"YearMonth": "2025-02", "DayOfWeek": "Monday", "orders": 443, "revenue": 13814.339939}, {"YearMonth": "2025-02", "DayOfWeek": "Saturday", "orders": 234, "revenue": 8150.78995}, {"YearMonth": "2025-02", "DayOfWeek": "Sunday", "orders": 316, "revenue": 11874.109911}, {"YearMonth": "2025-02", "DayOfWeek": "Thursday", "orders": 333, "revenue": 10876.029929}, {"YearMonth": "2025-02", "DayOfWeek": "Tuesday", "orders": 410, "revenue": 13954.239934}, {"YearMonth": "2025-02", "DayOfWeek": "Wednesday", "orders": 344, "revenue": 11385.01993}, {"YearMonth": "2025-03", "DayOfWeek": "Friday", "orders": 283, "revenue": 9860.209954}, {"YearMonth": "2025-03", "DayOfWeek": "Monday", "orders": 535, "revenue": 17670.069876999998}, {"YearMonth": "2025-03", "DayOfWeek": "Saturday", "orders": 272, "revenue": 10116.509958999999}, {"YearMonth": "2025-03", "DayOfWeek": "Sunday", "orders": 324, "revenue": 13228.989932}, {"YearMonth": "2025-03", "DayOfWeek": "Thursday", "orders": 413, "revenue": 12810.169915}, {"YearMonth": "2025-03", "DayOfWeek": "Tuesday", "orders": 396, "revenue": 13068.549919}, {"YearMonth": "2025-03", "DayOfWeek": "Wednesday", "orders": 276, "revenue": 10170.769958}, {"YearMonth": "2025-04", "DayOfWeek": "Friday", "orders": 329, "revenue": 10926.259929}, {"YearMonth": "2025-04", "DayOfWeek": "Monday", "orders": 401, "revenue": 13904.309922999999}, {"YearMonth": "2025-04", "DayOfWeek": "Saturday", "orders": 200, "revenue": 7510.779982999999}, {"YearMonth": "2025-04", "DayOfWeek": "Sunday", "orders": 258, "revenue": 10154.399965999999}, {"YearMonth": "2025-04", "DayOfWeek": "Thursday", "orders": 344, "revenue": 11859.049949}, {"YearMonth": "2025-04", "DayOfWeek": "Tuesday", "orders": 525, "revenue": 18441.659879}, {"YearMonth": "2025-04", "DayOfWeek": "Wednesday", "orders": 519, "revenue": 17807.829931}, {"YearMonth": "2025-05", "DayOfWeek": "Friday", "orders": 511, "revenue": 16366.789891}, {"YearMonth": "2025-05", "DayOfWeek": "Monday", "orders": 311, "revenue": 11922.159939}, {"YearMonth": "2025-05", "DayOfWeek": "Saturday", "orders": 257, "revenue": 10975.039971}, {"YearMonth": "2025-05", "DayOfWeek": "Sunday", "orders": 262, "revenue": 10297.509986}, {"YearMonth": "2025-05", "DayOfWeek": "Thursday", "orders": 544, "revenue": 18839.279898}, {"YearMonth": "2025-05", "DayOfWeek": "Tuesday", "orders": 372, "revenue": 13894.059935}, {"YearMonth": "2025-05", "DayOfWeek": "Wednesday", "orders": 374, "revenue": 14229.899942}, {"YearMonth": "2025-06", "DayOfWeek": "Friday", "orders": 495, "revenue": 14911.639855}, {"YearMonth": "2025-06", "DayOfWeek": "Monday", "orders": 479, "revenue": 17364.669917}, {"YearMonth": "2025-06", "DayOfWeek": "Saturday", "orders": 197, "revenue": 8371.66995}, {"YearMonth": "2025-06", "DayOfWeek": "Sunday", "orders": 303, "revenue": 11950.249967}, {"YearMonth": "2025-06", "DayOfWeek": "Thursday", "orders": 305, "revenue": 10955.669948}, {"YearMonth": "2025-06", "DayOfWeek": "Tuesday", "orders": 295, "revenue": 10440.349963}, {"YearMonth": "2025-06", "DayOfWeek": "Wednesday", "orders": 270, "revenue": 9425.119919}, {"YearMonth": "2025-07", "DayOfWeek": "Friday", "orders": 501, "revenue": 14298.779841}, {"YearMonth": "2025-07", "DayOfWeek": "Monday", "orders": 352, "revenue": 12347.129946}, {"YearMonth": "2025-07", "DayOfWeek": "Saturday", "orders": 206, "revenue": 8335.879939}, {"YearMonth": "2025-07", "DayOfWeek": "Sunday", "orders": 245, "revenue": 9431.849933}, {"YearMonth": "2025-07", "DayOfWeek": "Thursday", "orders": 394, "revenue": 14101.419942}, {"YearMonth": "2025-07", "DayOfWeek": "Tuesday", "orders": 420, "revenue": 15022.989894}, {"YearMonth": "2025-07", "DayOfWeek": "Wednesday", "orders": 371, "revenue": 13950.989902}, {"YearMonth": "2025-08", "DayOfWeek": "Friday", "orders": 504, "revenue": 15258.78986}, {"YearMonth": "2025-08", "DayOfWeek": "Monday", "orders": 258, "revenue": 10745.399953}, {"YearMonth": "2025-08", "DayOfWeek": "Saturday", "orders": 240, "revenue": 8790.109959}, {"YearMonth": "2025-08", "DayOfWeek": "Sunday", "orders": 300, "revenue": 12696.179934}, {"YearMonth": "2025-08", "DayOfWeek": "Thursday", "orders": 357, "revenue": 12244.559896}, {"YearMonth": "2025-08", "DayOfWeek": "Tuesday", "orders": 361, "revenue": 12569.269951}, {"YearMonth": "2025-08", "DayOfWeek": "Wednesday", "orders": 474, "revenue": 15524.329893}, {"YearMonth": "2025-09", "DayOfWeek": "Friday", "orders": 414, "revenue": 12973.209893}, {"YearMonth": "2025-09", "DayOfWeek": "Monday", "orders": 488, "revenue": 15933.710668}, {"YearMonth": "2025-09", "DayOfWeek": "Saturday", "orders": 212, "revenue": 8439.739984}, {"YearMonth": "2025-09", "DayOfWeek": "Sunday", "orders": 235, "revenue": 8679.889938}, {"YearMonth": "2025-09", "DayOfWeek": "Thursday", "orders": 302, "revenue": 10260.299953}, {"YearMonth": "2025-09", "DayOfWeek": "Tuesday", "orders": 344, "revenue": 12800.569954}, {"YearMonth": "2025-09", "DayOfWeek": "Wednesday", "orders": 325, "revenue": 10756.789934}, {"YearMonth": "2025-10", "DayOfWeek": "Friday", "orders": 448, "revenue": 15230.449883}, {"YearMonth": "2025-10", "DayOfWeek": "Monday", "orders": 473, "revenue": 13877.719923}, {"YearMonth": "2025-10", "DayOfWeek": "Saturday", "orders": 220, "revenue": 8790.379973}, {"YearMonth": "2025-10", "DayOfWeek": "Sunday", "orders": 263, "revenue": 11143.32995}, {"YearMonth": "2025-10", "DayOfWeek": "Thursday", "orders": 355, "revenue": 12869.479906999999}, {"YearMonth": "2025-10", "DayOfWeek": "Tuesday", "orders": 395, "revenue": 13486.459901}, {"YearMonth": "2025-10", "DayOfWeek": "Wednesday", "orders": 406, "revenue": 14316.30991}, {"YearMonth": "2025-11", "DayOfWeek": "Friday", "orders": 314, "revenue": 10537.67993}, {"YearMonth": "2025-11", "DayOfWeek": "Monday", "orders": 404, "revenue": 13899.529918}, {"YearMonth": "2025-11", "DayOfWeek": "Saturday", "orders": 234, "revenue": 9444.429976}, {"YearMonth": "2025-11", "DayOfWeek": "Sunday", "orders": 269, "revenue": 10769.799986}, {"YearMonth": "2025-11", "DayOfWeek": "Thursday", "orders": 260, "revenue": 8720.939951}, {"YearMonth": "2025-11", "DayOfWeek": "Tuesday", "orders": 315, "revenue": 10251.409923}, {"YearMonth": "2025-11", "DayOfWeek": "Wednesday", "orders": 321, "revenue": 11173.589926}, {"YearMonth": "2025-12", "DayOfWeek": "Friday", "orders": 276, "revenue": 8984.059939}, {"YearMonth": "2025-12", "DayOfWeek": "Monday", "orders": 399, "revenue": 13229.629921}, {"YearMonth": "2025-12", "DayOfWeek": "Saturday", "orders": 156, "revenue": 5699.479978}, {"YearMonth": "2025-12", "DayOfWeek": "Sunday", "orders": 164, "revenue": 6627.259978}, {"YearMonth": "2025-12", "DayOfWeek": "Thursday", "orders": 213, "revenue": 7817.859969}, {"YearMonth": "2025-12", "DayOfWeek": "Tuesday", "orders": 357, "revenue": 12202.379929}, {"YearMonth": "2025-12", "DayOfWeek": "Wednesday", "orders": 404, "revenue": 12910.679885}, {"YearMonth": "2026-01", "DayOfWeek": "Friday", "orders": 155, "revenue": 6072.229986}, {"YearMonth": "2026-01", "DayOfWeek": "Monday", "orders": 220, "revenue": 7065.0699349999995}, {"YearMonth": "2026-01", "DayOfWeek": "Saturday", "orders": 93, "revenue": 3901.10998}, {"YearMonth": "2026-01", "DayOfWeek": "Sunday", "orders": 141, "revenue": 5476.6099779999995}, {"YearMonth": "2026-01", "DayOfWeek": "Thursday", "orders": 148, "revenue": 5113.299967}, {"YearMonth": "2026-01", "DayOfWeek": "Tuesday", "orders": 65, "revenue": 2852.669974}, {"YearMonth": "2026-01", "DayOfWeek": "Wednesday", "orders": 66, "revenue": 2491.269988}], "paymentMonthly": [{"YearMonth": "2005-11", "PaymentProcessor": "SagePay", "orders": 2, "revenue": 37.849901}, {"YearMonth": "2005-12", "PaymentProcessor": "SagePay", "orders": 1, "revenue": 17.9}, {"YearMonth": "2006-01", "PaymentProcessor": "SagePay", "orders": 4, "revenue": 106.44969900000001}, {"YearMonth": "2006-02", "PaymentProcessor": "SagePay", "orders": 5, "revenue": 121.100002}, {"YearMonth": "2006-03", "PaymentProcessor": "SagePay", "orders": 111, "revenue": 2284.330004}, {"YearMonth": "2006-04", "PaymentProcessor": "SagePay", "orders": 171, "revenue": 2960.534808}, {"YearMonth": "2006-05", "PaymentProcessor": "SagePay", "orders": 244, "revenue": 4318.036409}, {"YearMonth": "2006-06", "PaymentProcessor": "SagePay", "orders": 265, "revenue": 4865.121922}, {"YearMonth": "2006-07", "PaymentProcessor": "SagePay", "orders": 302, "revenue": 5482.026914}, {"YearMonth": "2006-08", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 8.95}, {"YearMonth": "2006-08", "PaymentProcessor": "SagePay", "orders": 282, "revenue": 5631.748835}, {"YearMonth": "2006-09", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 21.9}, {"YearMonth": "2006-09", "PaymentProcessor": "SagePay", "orders": 368, "revenue": 6806.957686}, {"YearMonth": "2006-10", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 26.949999}, {"YearMonth": "2006-10", "PaymentProcessor": "SagePay", "orders": 472, "revenue": 8748.704862999999}, {"YearMonth": "2006-11", "PaymentProcessor": "SagePay", "orders": 452, "revenue": 8036.807243}, {"YearMonth": "2006-12", "PaymentProcessor": "SagePay", "orders": 457, "revenue": 8702.449861}, {"YearMonth": "2007-01", "PaymentProcessor": "Cash", "orders": 1, "revenue": 12.95}, {"YearMonth": "2007-01", "PaymentProcessor": "Cheque", "orders": 2, "revenue": 31.898600000000002}, {"YearMonth": "2007-01", "PaymentProcessor": "SagePay", "orders": 636, "revenue": 11441.286816}, {"YearMonth": "2007-02", "PaymentProcessor": "Cheque", "orders": 14, "revenue": 207.249901}, {"YearMonth": "2007-02", "PaymentProcessor": "SagePay", "orders": 646, "revenue": 12009.076495}, {"YearMonth": "2007-03", "PaymentProcessor": "Cheque", "orders": 17, "revenue": 245.137804}, {"YearMonth": "2007-03", "PaymentProcessor": "SagePay", "orders": 538, "revenue": 10538.09964}, {"YearMonth": "2007-04", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 11.9497}, {"YearMonth": "2007-04", "PaymentProcessor": "SagePay", "orders": 451, "revenue": 8816.720235}, {"YearMonth": "2007-05", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 69.795002}, {"YearMonth": "2007-05", "PaymentProcessor": "SagePay", "orders": 511, "revenue": 9790.833858}, {"YearMonth": "2007-06", "PaymentProcessor": "Cash", "orders": 2, "revenue": 21.9}, {"YearMonth": "2007-06", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 92.694602}, {"YearMonth": "2007-06", "PaymentProcessor": "SagePay", "orders": 525, "revenue": 10465.886552}, {"YearMonth": "2007-07", "PaymentProcessor": "Cash", "orders": 1, "revenue": 10.95}, {"YearMonth": "2007-07", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 73.741799}, {"YearMonth": "2007-07", "PaymentProcessor": "SagePay", "orders": 519, "revenue": 10933.810835}, {"YearMonth": "2007-08", "PaymentProcessor": "Cash", "orders": 2, "revenue": 27.8544}, {"YearMonth": "2007-08", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 124.4954}, {"YearMonth": "2007-08", "PaymentProcessor": "SagePay", "orders": 484, "revenue": 9873.570048}, {"YearMonth": "2007-09", "PaymentProcessor": "Cash", "orders": 1, "revenue": 16.95}, {"YearMonth": "2007-09", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 75.744202}, {"YearMonth": "2007-09", "PaymentProcessor": "SagePay", "orders": 488, "revenue": 9578.963673}, {"YearMonth": "2007-10", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 71.700101}, {"YearMonth": "2007-10", "PaymentProcessor": "SagePay", "orders": 450, "revenue": 10628.25174}, {"YearMonth": "2007-11", "PaymentProcessor": "Cash", "orders": 1, "revenue": 11.9}, {"YearMonth": "2007-11", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 91.495002}, {"YearMonth": "2007-11", "PaymentProcessor": "SagePay", "orders": 460, "revenue": 9516.489784}, {"YearMonth": "2007-12", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 139.491399}, {"YearMonth": "2007-12", "PaymentProcessor": "SagePay", "orders": 368, "revenue": 7567.255448}, {"YearMonth": "2008-01", "PaymentProcessor": "Cash", "orders": 1, "revenue": 12.95}, {"YearMonth": "2008-01", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 115.592602}, {"YearMonth": "2008-01", "PaymentProcessor": "SagePay", "orders": 648, "revenue": 13113.015218}, {"YearMonth": "2008-02", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 11.9497}, {"YearMonth": "2008-02", "PaymentProcessor": "SagePay", "orders": 520, "revenue": 11020.09158}, {"YearMonth": "2008-03", "PaymentProcessor": "Cash", "orders": 2, "revenue": 28.8496}, {"YearMonth": "2008-03", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 92.692402}, {"YearMonth": "2008-03", "PaymentProcessor": "SagePay", "orders": 619, "revenue": 12547.049698}, {"YearMonth": "2008-04", "PaymentProcessor": "Cash", "orders": 1, "revenue": 12.95}, {"YearMonth": "2008-04", "PaymentProcessor": "Cheque", "orders": 3, "revenue": 67.7471}, {"YearMonth": "2008-04", "PaymentProcessor": "SagePay", "orders": 561, "revenue": 10580.356559}, {"YearMonth": "2008-05", "PaymentProcessor": "Cheque", "orders": 2, "revenue": 25.8994}, {"YearMonth": "2008-05", "PaymentProcessor": "SagePay", "orders": 611, "revenue": 12027.734478999999}, {"YearMonth": "2008-06", "PaymentProcessor": "Cash", "orders": 2, "revenue": 30.850001}, {"YearMonth": "2008-06", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 10.9499}, {"YearMonth": "2008-06", "PaymentProcessor": "SagePay", "orders": 874, "revenue": 17442.92794}, {"YearMonth": "2008-07", "PaymentProcessor": "Cash", "orders": 2, "revenue": 28.1497}, {"YearMonth": "2008-07", "PaymentProcessor": "Cheque", "orders": 7, "revenue": 142.596304}, {"YearMonth": "2008-07", "PaymentProcessor": "SagePay", "orders": 765, "revenue": 14868.78724}, {"YearMonth": "2008-07", "PaymentProcessor": "SagePayManual", "orders": 59, "revenue": 999.0209159999999}, {"YearMonth": "2008-08", "PaymentProcessor": "Cash", "orders": 1, "revenue": 10.95}, {"YearMonth": "2008-08", "PaymentProcessor": "Cheque", "orders": 8, "revenue": 228.347905}, {"YearMonth": "2008-08", "PaymentProcessor": "SagePay", "orders": 1059, "revenue": 19583.805836}, {"YearMonth": "2008-08", "PaymentProcessor": "SagePayManual", "orders": 80, "revenue": 1378.403308}, {"YearMonth": "2008-09", "PaymentProcessor": "Cash", "orders": 1, "revenue": 11.95}, {"YearMonth": "2008-09", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 123.802101}, {"YearMonth": "2008-09", "PaymentProcessor": "SagePay", "orders": 875, "revenue": 17309.696716}, {"YearMonth": "2008-09", "PaymentProcessor": "SagePayManual", "orders": 83, "revenue": 1849.062923}, {"YearMonth": "2008-10", "PaymentProcessor": "Cheque", "orders": 8, "revenue": 152.392004}, {"YearMonth": "2008-10", "PaymentProcessor": "GCheckout", "orders": 9, "revenue": 207.889902}, {"YearMonth": "2008-10", "PaymentProcessor": "SagePay", "orders": 1110, "revenue": 22399.383418999998}, {"YearMonth": "2008-10", "PaymentProcessor": "SagePayManual", "orders": 90, "revenue": 2053.434128}, {"YearMonth": "2008-11", "PaymentProcessor": "Cash", "orders": 1, "revenue": 16.8997}, {"YearMonth": "2008-11", "PaymentProcessor": "Cheque", "orders": 2, "revenue": 49.8512}, {"YearMonth": "2008-11", "PaymentProcessor": "GCheckout", "orders": 132, "revenue": 2610.514717}, {"YearMonth": "2008-11", "PaymentProcessor": "SagePay", "orders": 1023, "revenue": 20574.190900999998}, {"YearMonth": "2008-11", "PaymentProcessor": "SagePayManual", "orders": 90, "revenue": 2189.048003}, {"YearMonth": "2008-12", "PaymentProcessor": "Cash", "orders": 3, "revenue": 49.063899}, {"YearMonth": "2008-12", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 60.588}, {"YearMonth": "2008-12", "PaymentProcessor": "GCheckout", "orders": 105, "revenue": 1865.71701}, {"YearMonth": "2008-12", "PaymentProcessor": "SagePay", "orders": 802, "revenue": 16640.809302}, {"YearMonth": "2008-12", "PaymentProcessor": "SagePayManual", "orders": 77, "revenue": 1698.780617}, {"YearMonth": "2009-01", "PaymentProcessor": "Cash", "orders": 1, "revenue": 9.7383}, {"YearMonth": "2009-01", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 104.865801}, {"YearMonth": "2009-01", "PaymentProcessor": "GCheckout", "orders": 115, "revenue": 2293.931327}, {"YearMonth": "2009-01", "PaymentProcessor": "SagePay", "orders": 1438, "revenue": 30242.678718}, {"YearMonth": "2009-01", "PaymentProcessor": "SagePayManual", "orders": 110, "revenue": 2446.285419}, {"YearMonth": "2009-02", "PaymentProcessor": "Cash", "orders": 1, "revenue": 27.2572}, {"YearMonth": "2009-02", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 790.051936}, {"YearMonth": "2009-02", "PaymentProcessor": "GCheckout", "orders": 108, "revenue": 2084.142012}, {"YearMonth": "2009-02", "PaymentProcessor": "SagePay", "orders": 1272, "revenue": 27985.442045}, {"YearMonth": "2009-02", "PaymentProcessor": "SagePayManual", "orders": 102, "revenue": 2012.487411}, {"YearMonth": "2009-03", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 127.821102}, {"YearMonth": "2009-03", "PaymentProcessor": "GCheckout", "orders": 88, "revenue": 2051.1828179999998}, {"YearMonth": "2009-03", "PaymentProcessor": "SagePay", "orders": 1516, "revenue": 32255.444068}, {"YearMonth": "2009-03", "PaymentProcessor": "SagePayManual", "orders": 115, "revenue": 2801.741329}, {"YearMonth": "2009-04", "PaymentProcessor": "Cash", "orders": 1, "revenue": 17.5681}, {"YearMonth": "2009-04", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 117.050501}, {"YearMonth": "2009-04", "PaymentProcessor": "GCheckout", "orders": 115, "revenue": 2380.299811}, {"YearMonth": "2009-04", "PaymentProcessor": "SagePay", "orders": 1450, "revenue": 31872.125186}, {"YearMonth": "2009-04", "PaymentProcessor": "SagePayManual", "orders": 126, "revenue": 2908.218017}, {"YearMonth": "2009-05", "PaymentProcessor": "Cash", "orders": 1, "revenue": 20.4554}, {"YearMonth": "2009-05", "PaymentProcessor": "Cheque", "orders": 3, "revenue": 68.3149}, {"YearMonth": "2009-05", "PaymentProcessor": "GCheckout", "orders": 115, "revenue": 2437.317019}, {"YearMonth": "2009-05", "PaymentProcessor": "SagePay", "orders": 1781, "revenue": 39384.987994}, {"YearMonth": "2009-05", "PaymentProcessor": "SagePayManual", "orders": 115, "revenue": 2517.612186}, {"YearMonth": "2009-06", "PaymentProcessor": "Cash", "orders": 1, "revenue": 19.525501}, {"YearMonth": "2009-06", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 78.302673}, {"YearMonth": "2009-06", "PaymentProcessor": "GCheckout", "orders": 127, "revenue": 2671.311128}, {"YearMonth": "2009-06", "PaymentProcessor": "SagePay", "orders": 1542, "revenue": 33589.05718}, {"YearMonth": "2009-06", "PaymentProcessor": "SagePayManual", "orders": 130, "revenue": 3049.156215}, {"YearMonth": "2009-07", "PaymentProcessor": "Cash", "orders": 2, "revenue": 23.049}, {"YearMonth": "2009-07", "PaymentProcessor": "Cheque", "orders": 7, "revenue": 210.958302}, {"YearMonth": "2009-07", "PaymentProcessor": "GCheckout", "orders": 121, "revenue": 2562.708915}, {"YearMonth": "2009-07", "PaymentProcessor": "SagePay", "orders": 1578, "revenue": 36285.276227}, {"YearMonth": "2009-07", "PaymentProcessor": "SagePayManual", "orders": 125, "revenue": 3207.584323}, {"YearMonth": "2009-08", "PaymentProcessor": "Cash", "orders": 2, "revenue": 30.1447}, {"YearMonth": "2009-08", "PaymentProcessor": "Cheque", "orders": 3, "revenue": 67.780701}, {"YearMonth": "2009-08", "PaymentProcessor": "GCheckout", "orders": 99, "revenue": 2110.878905}, {"YearMonth": "2009-08", "PaymentProcessor": "SagePay", "orders": 1633, "revenue": 38054.10468}, {"YearMonth": "2009-08", "PaymentProcessor": "SagePayManual", "orders": 121, "revenue": 2886.410522}, {"YearMonth": "2009-09", "PaymentProcessor": "Cash", "orders": 2, "revenue": 33.129699}, {"YearMonth": "2009-09", "PaymentProcessor": "Cheque", "orders": 2, "revenue": 27.786}, {"YearMonth": "2009-09", "PaymentProcessor": "GCheckout", "orders": 106, "revenue": 2381.065316}, {"YearMonth": "2009-09", "PaymentProcessor": "SagePay", "orders": 1390, "revenue": 33189.41404}, {"YearMonth": "2009-09", "PaymentProcessor": "SagePayManual", "orders": 121, "revenue": 2901.076306}, {"YearMonth": "2009-10", "PaymentProcessor": "Cash", "orders": 2, "revenue": 47.360201}, {"YearMonth": "2009-10", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 114.16760099999999}, {"YearMonth": "2009-10", "PaymentProcessor": "GCheckout", "orders": 108, "revenue": 2500.212408}, {"YearMonth": "2009-10", "PaymentProcessor": "SagePay", "orders": 1471, "revenue": 33907.798004}, {"YearMonth": "2009-10", "PaymentProcessor": "SagePayManual", "orders": 105, "revenue": 3013.135607}, {"YearMonth": "2009-11", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 97.7157}, {"YearMonth": "2009-11", "PaymentProcessor": "GCheckout", "orders": 115, "revenue": 2444.872415}, {"YearMonth": "2009-11", "PaymentProcessor": "SagePay", "orders": 1557, "revenue": 35478.582271}, {"YearMonth": "2009-11", "PaymentProcessor": "SagePayManual", "orders": 145, "revenue": 3400.48802}, {"YearMonth": "2009-12", "PaymentProcessor": "Cheque", "orders": 2, "revenue": 63.263301}, {"YearMonth": "2009-12", "PaymentProcessor": "GCheckout", "orders": 78, "revenue": 1798.673896}, {"YearMonth": "2009-12", "PaymentProcessor": "SagePay", "orders": 1249, "revenue": 29962.61978}, {"YearMonth": "2009-12", "PaymentProcessor": "SagePayManual", "orders": 93, "revenue": 2293.935448}, {"YearMonth": "2010-01", "PaymentProcessor": "Cash", "orders": 3, "revenue": 47.8947}, {"YearMonth": "2010-01", "PaymentProcessor": "Cheque", "orders": 7, "revenue": 145.780001}, {"YearMonth": "2010-01", "PaymentProcessor": "GCheckout", "orders": 112, "revenue": 2694.601904}, {"YearMonth": "2010-01", "PaymentProcessor": "SagePay", "orders": 1907, "revenue": 46380.718662}, {"YearMonth": "2010-01", "PaymentProcessor": "SagePayManual", "orders": 110, "revenue": 2771.251333}, {"YearMonth": "2010-02", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 115.33010200000001}, {"YearMonth": "2010-02", "PaymentProcessor": "GCheckout", "orders": 113, "revenue": 3363.453118}, {"YearMonth": "2010-02", "PaymentProcessor": "SagePay", "orders": 1504, "revenue": 35451.44766}, {"YearMonth": "2010-02", "PaymentProcessor": "SagePayManual", "orders": 118, "revenue": 3295.59003}, {"YearMonth": "2010-03", "PaymentProcessor": "Cash", "orders": 1, "revenue": 11.2}, {"YearMonth": "2010-03", "PaymentProcessor": "Cheque", "orders": 7, "revenue": 139.080101}, {"YearMonth": "2010-03", "PaymentProcessor": "GCheckout", "orders": 98, "revenue": 2008.937496}, {"YearMonth": "2010-03", "PaymentProcessor": "SagePay", "orders": 1637, "revenue": 39541.531249}, {"YearMonth": "2010-03", "PaymentProcessor": "SagePayManual", "orders": 129, "revenue": 2979.588817}, {"YearMonth": "2010-04", "PaymentProcessor": "Cash", "orders": 2, "revenue": 35.8807}, {"YearMonth": "2010-04", "PaymentProcessor": "Cheque", "orders": 7, "revenue": 122.649602}, {"YearMonth": "2010-04", "PaymentProcessor": "GCheckout", "orders": 124, "revenue": 2853.282129}, {"YearMonth": "2010-04", "PaymentProcessor": "SagePay", "orders": 1760, "revenue": 41972.273104}, {"YearMonth": "2010-04", "PaymentProcessor": "SagePayManual", "orders": 110, "revenue": 2942.52199}, {"YearMonth": "2010-05", "PaymentProcessor": "Cheque", "orders": 3, "revenue": 92.1897}, {"YearMonth": "2010-05", "PaymentProcessor": "GCheckout", "orders": 131, "revenue": 2706.237629}, {"YearMonth": "2010-05", "PaymentProcessor": "SagePay", "orders": 1748, "revenue": 41858.447264}, {"YearMonth": "2010-05", "PaymentProcessor": "SagePayManual", "orders": 101, "revenue": 2834.719655}, {"YearMonth": "2010-06", "PaymentProcessor": "Cheque", "orders": 8, "revenue": 182.430001}, {"YearMonth": "2010-06", "PaymentProcessor": "GCheckout", "orders": 105, "revenue": 2456.582793}, {"YearMonth": "2010-06", "PaymentProcessor": "SagePay", "orders": 1639, "revenue": 38857.546707}, {"YearMonth": "2010-06", "PaymentProcessor": "SagePayManual", "orders": 113, "revenue": 2979.776124}, {"YearMonth": "2010-07", "PaymentProcessor": "Cash", "orders": 2, "revenue": 45.3897}, {"YearMonth": "2010-07", "PaymentProcessor": "Cheque", "orders": 3, "revenue": 54.340001}, {"YearMonth": "2010-07", "PaymentProcessor": "GCheckout", "orders": 131, "revenue": 2573.209519}, {"YearMonth": "2010-07", "PaymentProcessor": "SagePay", "orders": 1701, "revenue": 39987.80886}, {"YearMonth": "2010-07", "PaymentProcessor": "SagePayManual", "orders": 125, "revenue": 3417.292116}, {"YearMonth": "2010-08", "PaymentProcessor": "Cheque", "orders": 7, "revenue": 339.800103}, {"YearMonth": "2010-08", "PaymentProcessor": "GCheckout", "orders": 147, "revenue": 3838.507717}, {"YearMonth": "2010-08", "PaymentProcessor": "SagePay", "orders": 1844, "revenue": 47184.258369}, {"YearMonth": "2010-08", "PaymentProcessor": "SagePayManual", "orders": 115, "revenue": 2814.451109}, {"YearMonth": "2010-09", "PaymentProcessor": "Cash", "orders": 2, "revenue": 676.659984}, {"YearMonth": "2010-09", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 211.199496}, {"YearMonth": "2010-09", "PaymentProcessor": "GCheckout", "orders": 106, "revenue": 2301.977992}, {"YearMonth": "2010-09", "PaymentProcessor": "Paypal", "orders": 255, "revenue": 5992.316705}, {"YearMonth": "2010-09", "PaymentProcessor": "SagePay", "orders": 1434, "revenue": 35147.631108}, {"YearMonth": "2010-09", "PaymentProcessor": "SagePayManual", "orders": 131, "revenue": 3097.87471}, {"YearMonth": "2010-10", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 844.749791}, {"YearMonth": "2010-10", "PaymentProcessor": "GCheckout", "orders": 48, "revenue": 1272.452799}, {"YearMonth": "2010-10", "PaymentProcessor": "Paypal", "orders": 549, "revenue": 11802.798819}, {"YearMonth": "2010-10", "PaymentProcessor": "SagePay", "orders": 1158, "revenue": 31247.361547}, {"YearMonth": "2010-10", "PaymentProcessor": "SagePayManual", "orders": 114, "revenue": 3745.496557}, {"YearMonth": "2010-11", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 820.949901}, {"YearMonth": "2010-11", "PaymentProcessor": "GCheckout", "orders": 53, "revenue": 1331.7994899999999}, {"YearMonth": "2010-11", "PaymentProcessor": "Paypal", "orders": 543, "revenue": 12551.372118}, {"YearMonth": "2010-11", "PaymentProcessor": "SagePay", "orders": 1148, "revenue": 29049.230005}, {"YearMonth": "2010-11", "PaymentProcessor": "SagePayManual", "orders": 116, "revenue": 3098.494805}, {"YearMonth": "2010-12", "PaymentProcessor": "Cash", "orders": 3, "revenue": 39.234}, {"YearMonth": "2010-12", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 20.95}, {"YearMonth": "2010-12", "PaymentProcessor": "GCheckout", "orders": 43, "revenue": 1091.60951}, {"YearMonth": "2010-12", "PaymentProcessor": "Paypal", "orders": 522, "revenue": 11953.315847}, {"YearMonth": "2010-12", "PaymentProcessor": "SagePay", "orders": 903, "revenue": 23460.65977}, {"YearMonth": "2010-12", "PaymentProcessor": "SagePayManual", "orders": 82, "revenue": 2091.494902}, {"YearMonth": "2011-01", "PaymentProcessor": "Cash", "orders": 4, "revenue": 105.061698}, {"YearMonth": "2011-01", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 281.05000099999995}, {"YearMonth": "2011-01", "PaymentProcessor": "GCheckout", "orders": 60, "revenue": 1297.194108}, {"YearMonth": "2011-01", "PaymentProcessor": "Paypal", "orders": 904, "revenue": 22031.388182}, {"YearMonth": "2011-01", "PaymentProcessor": "SagePay", "orders": 1371, "revenue": 35912.487468}, {"YearMonth": "2011-01", "PaymentProcessor": "SagePayManual", "orders": 130, "revenue": 3435.994792}, {"YearMonth": "2011-02", "PaymentProcessor": "Cash", "orders": 1, "revenue": 96.700198}, {"YearMonth": "2011-02", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 482.14988999999997}, {"YearMonth": "2011-02", "PaymentProcessor": "GCheckout", "orders": 57, "revenue": 1270.376599}, {"YearMonth": "2011-02", "PaymentProcessor": "Paypal", "orders": 702, "revenue": 16898.103596}, {"YearMonth": "2011-02", "PaymentProcessor": "SagePay", "orders": 995, "revenue": 24966.534774}, {"YearMonth": "2011-02", "PaymentProcessor": "SagePayManual", "orders": 121, "revenue": 3244.288889}, {"YearMonth": "2011-03", "PaymentProcessor": "Cheque", "orders": 3, "revenue": 141.664997}, {"YearMonth": "2011-03", "PaymentProcessor": "GCheckout", "orders": 42, "revenue": 1022.351097}, {"YearMonth": "2011-03", "PaymentProcessor": "Paypal", "orders": 719, "revenue": 17027.897631}, {"YearMonth": "2011-03", "PaymentProcessor": "SagePay", "orders": 1037, "revenue": 26100.131612}, {"YearMonth": "2011-03", "PaymentProcessor": "SagePayManual", "orders": 113, "revenue": 2910.836296}, {"YearMonth": "2011-04", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 63.55}, {"YearMonth": "2011-04", "PaymentProcessor": "GCheckout", "orders": 39, "revenue": 1085.578994}, {"YearMonth": "2011-04", "PaymentProcessor": "Paypal", "orders": 698, "revenue": 15804.881564}, {"YearMonth": "2011-04", "PaymentProcessor": "SagePay", "orders": 1085, "revenue": 28147.875409}, {"YearMonth": "2011-04", "PaymentProcessor": "SagePayManual", "orders": 117, "revenue": 3546.929302}, {"YearMonth": "2011-05", "PaymentProcessor": "Cash", "orders": 1, "revenue": 17.9}, {"YearMonth": "2011-05", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 662.800006}, {"YearMonth": "2011-05", "PaymentProcessor": "GCheckout", "orders": 47, "revenue": 1092.136701}, {"YearMonth": "2011-05", "PaymentProcessor": "Paypal", "orders": 750, "revenue": 18034.058241}, {"YearMonth": "2011-05", "PaymentProcessor": "SagePay", "orders": 1065, "revenue": 26306.882533}, {"YearMonth": "2011-05", "PaymentProcessor": "SagePayManual", "orders": 128, "revenue": 3581.424087}, {"YearMonth": "2011-06", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 120.399999}, {"YearMonth": "2011-06", "PaymentProcessor": "GCheckout", "orders": 38, "revenue": 1075.644803}, {"YearMonth": "2011-06", "PaymentProcessor": "Paypal", "orders": 768, "revenue": 17898.541579}, {"YearMonth": "2011-06", "PaymentProcessor": "SagePay", "orders": 1035, "revenue": 25767.477716}, {"YearMonth": "2011-06", "PaymentProcessor": "SagePayManual", "orders": 130, "revenue": 3507.189096}, {"YearMonth": "2011-07", "PaymentProcessor": "Cheque", "orders": 6, "revenue": 182.200002}, {"YearMonth": "2011-07", "PaymentProcessor": "GCheckout", "orders": 50, "revenue": 1394.29838}, {"YearMonth": "2011-07", "PaymentProcessor": "Paypal", "orders": 837, "revenue": 18942.166484999998}, {"YearMonth": "2011-07", "PaymentProcessor": "SagePay", "orders": 1110, "revenue": 27426.900396}, {"YearMonth": "2011-07", "PaymentProcessor": "SagePayManual", "orders": 157, "revenue": 4232.937801}, {"YearMonth": "2011-08", "PaymentProcessor": "Cash", "orders": 1, "revenue": 12.95}, {"YearMonth": "2011-08", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 111.099901}, {"YearMonth": "2011-08", "PaymentProcessor": "GCheckout", "orders": 45, "revenue": 1114.579695}, {"YearMonth": "2011-08", "PaymentProcessor": "Paypal", "orders": 885, "revenue": 20954.013893}, {"YearMonth": "2011-08", "PaymentProcessor": "SagePay", "orders": 1287, "revenue": 32775.577669}, {"YearMonth": "2011-08", "PaymentProcessor": "SagePayManual", "orders": 156, "revenue": 4197.323386}, {"YearMonth": "2011-09", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 114.14989899999999}, {"YearMonth": "2011-09", "PaymentProcessor": "GCheckout", "orders": 38, "revenue": 881.149992}, {"YearMonth": "2011-09", "PaymentProcessor": "Paypal", "orders": 818, "revenue": 16634.777405}, {"YearMonth": "2011-09", "PaymentProcessor": "SagePay", "orders": 1018, "revenue": 24567.870269}, {"YearMonth": "2011-09", "PaymentProcessor": "SagePayManual", "orders": 141, "revenue": 3671.684502}, {"YearMonth": "2011-10", "PaymentProcessor": "Cheque", "orders": 5, "revenue": 135.349901}, {"YearMonth": "2011-10", "PaymentProcessor": "GCheckout", "orders": 42, "revenue": 982.200008}, {"YearMonth": "2011-10", "PaymentProcessor": "Paypal", "orders": 1001, "revenue": 21500.763381}, {"YearMonth": "2011-10", "PaymentProcessor": "SagePay", "orders": 1219, "revenue": 26947.977325}, {"YearMonth": "2011-10", "PaymentProcessor": "SagePayManual", "orders": 154, "revenue": 3946.77998}, {"YearMonth": "2011-11", "PaymentProcessor": "Cash", "orders": 1, "revenue": 40.099799}, {"YearMonth": "2011-11", "PaymentProcessor": "Cheque", "orders": 2, "revenue": 28.9}, {"YearMonth": "2011-11", "PaymentProcessor": "GCheckout", "orders": 37, "revenue": 918.879899}, {"YearMonth": "2011-11", "PaymentProcessor": "Paypal", "orders": 1050, "revenue": 22290.293247999998}, {"YearMonth": "2011-11", "PaymentProcessor": "SagePay", "orders": 1336, "revenue": 29940.742172}, {"YearMonth": "2011-11", "PaymentProcessor": "SagePayManual", "orders": 139, "revenue": 3336.589201}, {"YearMonth": "2011-12", "PaymentProcessor": "GCheckout", "orders": 36, "revenue": 907.009803}, {"YearMonth": "2011-12", "PaymentProcessor": "Paypal", "orders": 943, "revenue": 19940.573204}, {"YearMonth": "2011-12", "PaymentProcessor": "SagePay", "orders": 1102, "revenue": 26135.566773}, {"YearMonth": "2011-12", "PaymentProcessor": "SagePayManual", "orders": 116, "revenue": 2666.969583}, {"YearMonth": "2012-01", "PaymentProcessor": "Cheque", "orders": 7, "revenue": 134.9}, {"YearMonth": "2012-01", "PaymentProcessor": "GCheckout", "orders": 48, "revenue": 1142.090912}, {"YearMonth": "2012-01", "PaymentProcessor": "Paypal", "orders": 1280, "revenue": 28182.072611}, {"YearMonth": "2012-01", "PaymentProcessor": "SagePay", "orders": 1635, "revenue": 40157.319595}, {"YearMonth": "2012-01", "PaymentProcessor": "SagePayManual", "orders": 160, "revenue": 4120.481412}, {"YearMonth": "2012-02", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 9.95}, {"YearMonth": "2012-02", "PaymentProcessor": "GCheckout", "orders": 29, "revenue": 628.9449999999999}, {"YearMonth": "2012-02", "PaymentProcessor": "Paypal", "orders": 1006, "revenue": 22261.175152}, {"YearMonth": "2012-02", "PaymentProcessor": "SagePay", "orders": 1266, "revenue": 28701.750154}, {"YearMonth": "2012-02", "PaymentProcessor": "SagePayManual", "orders": 143, "revenue": 3635.455993}, {"YearMonth": "2012-03", "PaymentProcessor": "Cheque", "orders": 4, "revenue": 137.950001}, {"YearMonth": "2012-03", "PaymentProcessor": "GCheckout", "orders": 38, "revenue": 841.617294}, {"YearMonth": "2012-03", "PaymentProcessor": "Paypal", "orders": 948, "revenue": 22344.664775}, {"YearMonth": "2012-03", "PaymentProcessor": "SagePay", "orders": 1119, "revenue": 27849.887183}, {"YearMonth": "2012-03", "PaymentProcessor": "SagePayManual", "orders": 148, "revenue": 3650.239504}, {"YearMonth": "2012-04", "PaymentProcessor": "Cheque", "orders": 2, "revenue": 33.9}, {"YearMonth": "2012-04", "PaymentProcessor": "GCheckout", "orders": 29, "revenue": 733.914894}, {"YearMonth": "2012-04", "PaymentProcessor": "Paypal", "orders": 1031, "revenue": 24058.337129}, {"YearMonth": "2012-04", "PaymentProcessor": "SagePay", "orders": 1154, "revenue": 28376.336683}, {"YearMonth": "2012-04", "PaymentProcessor": "SagePayManual", "orders": 124, "revenue": 2989.303806}, {"YearMonth": "2012-05", "PaymentProcessor": "Cheque", "orders": 1, "revenue": 7.45}, {"YearMonth": "2012-05", "PaymentProcessor": "GCheckout", "orders": 21, "revenue": 613.905002}, {"YearMonth": "2012-05", "PaymentProcessor": "Paypal", "orders": 935, "revenue": 22964.188242}, {"YearMonth": "2012-05", "PaymentProcessor": "SagePay", "orders": 1137, "revenue": 29302.258364}, {"YearMonth": "2012-05", "PaymentProcessor": "SagePayManual", "orders": 134, "revenue": 3463.173108}, {"YearMonth": "2012-06", "PaymentProcessor": "Cheque", "orders": 2, "revenue": 150.100001}, {"YearMonth": "2012-06", "PaymentProcessor": "GCheckout", "orders": 22, "revenue": 581.634696}, {"YearMonth": "2012-06", "PaymentProcessor": "PAYPAL", "orders": 66, "revenue": 1413.95392}, {"YearMonth": "2012-06", "PaymentProcessor": "Paypal", "orders": 792, "revenue": 20162.491181}, {"YearMonth": "2012-06", "PaymentProcessor": "SAGEPAY", "orders": 56, "revenue": 1415.165679}, {"YearMonth": "2012-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 6, "revenue": 164.05079999999998}, {"YearMonth": "2012-06", "PaymentProcessor": "SagePay", "orders": 892, "revenue": 23846.011724}, {"YearMonth": "2012-06", "PaymentProcessor": "SagePayManual", "orders": 94, "revenue": 2775.1648059999998}, {"YearMonth": "2012-07", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 100.3296}, {"YearMonth": "2012-07", "PaymentProcessor": "PAYPAL", "orders": 841, "revenue": 19943.522099}, {"YearMonth": "2012-07", "PaymentProcessor": "SAGEPAY", "orders": 980, "revenue": 25119.532456}, {"YearMonth": "2012-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 126, "revenue": 3210.339604}, {"YearMonth": "2012-08", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 623.159629}, {"YearMonth": "2012-08", "PaymentProcessor": "PAYPAL", "orders": 790, "revenue": 19329.33178}, {"YearMonth": "2012-08", "PaymentProcessor": "SAGEPAY", "orders": 999, "revenue": 24870.65516}, {"YearMonth": "2012-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 135, "revenue": 3852.910647}, {"YearMonth": "2012-09", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 38.849999999999994}, {"YearMonth": "2012-09", "PaymentProcessor": "PAYPAL", "orders": 980, "revenue": 22715.544134}, {"YearMonth": "2012-09", "PaymentProcessor": "SAGEPAY", "orders": 1121, "revenue": 28869.370396}, {"YearMonth": "2012-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 152, "revenue": 3818.750596}, {"YearMonth": "2012-10", "PaymentProcessor": "CHEQUE", "orders": 5, "revenue": 233.5984}, {"YearMonth": "2012-10", "PaymentProcessor": "PAYPAL", "orders": 990, "revenue": 23724.351429}, {"YearMonth": "2012-10", "PaymentProcessor": "SAGEPAY", "orders": 1235, "revenue": 31171.637566}, {"YearMonth": "2012-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 143, "revenue": 3691.109199}, {"YearMonth": "2012-11", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 62.55}, {"YearMonth": "2012-11", "PaymentProcessor": "PAYPAL", "orders": 1006, "revenue": 23206.147707}, {"YearMonth": "2012-11", "PaymentProcessor": "SAGEPAY", "orders": 1139, "revenue": 29283.680201}, {"YearMonth": "2012-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 126, "revenue": 3844.285245}, {"YearMonth": "2012-12", "PaymentProcessor": "CASH", "orders": 1, "revenue": 29.9496}, {"YearMonth": "2012-12", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 49.8}, {"YearMonth": "2012-12", "PaymentProcessor": "PAYPAL", "orders": 759, "revenue": 17083.725763}, {"YearMonth": "2012-12", "PaymentProcessor": "SAGEPAY", "orders": 849, "revenue": 21604.856314}, {"YearMonth": "2012-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 96, "revenue": 2436.873879}, {"YearMonth": "2013-01", "PaymentProcessor": "CASH", "orders": 1, "revenue": 34.46572}, {"YearMonth": "2013-01", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 127.60040000000001}, {"YearMonth": "2013-01", "PaymentProcessor": "PAYPAL", "orders": 1185, "revenue": 28800.65686}, {"YearMonth": "2013-01", "PaymentProcessor": "SAGEPAY", "orders": 1364, "revenue": 36997.829458}, {"YearMonth": "2013-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 179, "revenue": 5205.393876}, {"YearMonth": "2013-02", "PaymentProcessor": "CASH", "orders": 1, "revenue": 13.8888}, {"YearMonth": "2013-02", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 75.2508}, {"YearMonth": "2013-02", "PaymentProcessor": "PAYPAL", "orders": 889, "revenue": 20371.630739}, {"YearMonth": "2013-02", "PaymentProcessor": "SAGEPAY", "orders": 997, "revenue": 24570.76811}, {"YearMonth": "2013-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 122, "revenue": 2714.250123}, {"YearMonth": "2013-03", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 21.9504}, {"YearMonth": "2013-03", "PaymentProcessor": "PAYPAL", "orders": 1138, "revenue": 27819.709085}, {"YearMonth": "2013-03", "PaymentProcessor": "SAGEPAY", "orders": 1256, "revenue": 32562.432737}, {"YearMonth": "2013-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 141, "revenue": 3517.329278}, {"YearMonth": "2013-04", "PaymentProcessor": "CHEQUE", "orders": 5, "revenue": 122.76612}, {"YearMonth": "2013-04", "PaymentProcessor": "PAYPAL", "orders": 1183, "revenue": 27979.898569}, {"YearMonth": "2013-04", "PaymentProcessor": "SAGEPAY", "orders": 1237, "revenue": 32978.431786}, {"YearMonth": "2013-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 144, "revenue": 3777.215003}, {"YearMonth": "2013-05", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 98.05080000000001}, {"YearMonth": "2013-05", "PaymentProcessor": "PAYPAL", "orders": 1144, "revenue": 24285.065484}, {"YearMonth": "2013-05", "PaymentProcessor": "SAGEPAY", "orders": 1206, "revenue": 28938.784102}, {"YearMonth": "2013-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 185, "revenue": 4893.530007}, {"YearMonth": "2013-06", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 1175.364751}, {"YearMonth": "2013-06", "PaymentProcessor": "PAYPAL", "orders": 1283, "revenue": 29155.602793}, {"YearMonth": "2013-06", "PaymentProcessor": "SAGEPAY", "orders": 1277, "revenue": 32161.361169}, {"YearMonth": "2013-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 153, "revenue": 3405.389078}, {"YearMonth": "2013-07", "PaymentProcessor": "CHEQUE", "orders": 8, "revenue": 329.0996}, {"YearMonth": "2013-07", "PaymentProcessor": "PAYPAL", "orders": 1068, "revenue": 23543.43}, {"YearMonth": "2013-07", "PaymentProcessor": "SAGEPAY", "orders": 1079, "revenue": 27212.784428}, {"YearMonth": "2013-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 166, "revenue": 4090.76376}, {"YearMonth": "2013-08", "PaymentProcessor": "CHEQUE", "orders": 6, "revenue": 98.8492}, {"YearMonth": "2013-08", "PaymentProcessor": "PAYPAL", "orders": 1017, "revenue": 21968.924819}, {"YearMonth": "2013-08", "PaymentProcessor": "SAGEPAY", "orders": 1070, "revenue": 27173.047454}, {"YearMonth": "2013-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 145, "revenue": 3944.349406}, {"YearMonth": "2013-09", "PaymentProcessor": "CHEQUE", "orders": 6, "revenue": 449.20719099999997}, {"YearMonth": "2013-09", "PaymentProcessor": "PAYPAL", "orders": 1228, "revenue": 29354.039724}, {"YearMonth": "2013-09", "PaymentProcessor": "SAGEPAY", "orders": 1278, "revenue": 33865.013754}, {"YearMonth": "2013-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 146, "revenue": 3850.285801}, {"YearMonth": "2013-10", "PaymentProcessor": "CHEQUE", "orders": 7, "revenue": 147.0508}, {"YearMonth": "2013-10", "PaymentProcessor": "PAYPAL", "orders": 1060, "revenue": 23360.591097}, {"YearMonth": "2013-10", "PaymentProcessor": "SAGEPAY", "orders": 1058, "revenue": 26867.36371}, {"YearMonth": "2013-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 143, "revenue": 3755.901201}, {"YearMonth": "2013-11", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 50.300399999999996}, {"YearMonth": "2013-11", "PaymentProcessor": "PAYPAL", "orders": 1301, "revenue": 30652.903600999998}, {"YearMonth": "2013-11", "PaymentProcessor": "SAGEPAY", "orders": 1390, "revenue": 37083.056001}, {"YearMonth": "2013-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 144, "revenue": 3602.857603}, {"YearMonth": "2013-12", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 186.094199}, {"YearMonth": "2013-12", "PaymentProcessor": "PAYPAL", "orders": 1025, "revenue": 24474.367347}, {"YearMonth": "2013-12", "PaymentProcessor": "SAGEPAY", "orders": 982, "revenue": 24032.795368}, {"YearMonth": "2013-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 106, "revenue": 2679.679191}, {"YearMonth": "2014-01", "PaymentProcessor": "CHEQUE", "orders": 8, "revenue": 123.0988}, {"YearMonth": "2014-01", "PaymentProcessor": "PAYPAL", "orders": 1788, "revenue": 41134.611111}, {"YearMonth": "2014-01", "PaymentProcessor": "SAGEPAY", "orders": 1774, "revenue": 46830.264124}, {"YearMonth": "2014-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 163, "revenue": 4747.577626}, {"YearMonth": "2014-02", "PaymentProcessor": "CHEQUE", "orders": 9, "revenue": 194.8508}, {"YearMonth": "2014-02", "PaymentProcessor": "PAYPAL", "orders": 1302, "revenue": 28764.568572}, {"YearMonth": "2014-02", "PaymentProcessor": "SAGEPAY", "orders": 1222, "revenue": 30000.74798}, {"YearMonth": "2014-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 134, "revenue": 3212.649233}, {"YearMonth": "2014-03", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 61.8}, {"YearMonth": "2014-03", "PaymentProcessor": "PAYPAL", "orders": 1553, "revenue": 33760.787877}, {"YearMonth": "2014-03", "PaymentProcessor": "SAGEPAY", "orders": 1417, "revenue": 36016.241996}, {"YearMonth": "2014-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 151, "revenue": 3623.760599}, {"YearMonth": "2014-04", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 84.7996}, {"YearMonth": "2014-04", "PaymentProcessor": "PAYPAL", "orders": 1357, "revenue": 30099.71438}, {"YearMonth": "2014-04", "PaymentProcessor": "SAGEPAY", "orders": 1334, "revenue": 34106.347126}, {"YearMonth": "2014-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 153, "revenue": 4175.892047}, {"YearMonth": "2014-05", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 21.8508}, {"YearMonth": "2014-05", "PaymentProcessor": "PAYPAL", "orders": 1364, "revenue": 31134.522969}, {"YearMonth": "2014-05", "PaymentProcessor": "SAGEPAY", "orders": 1266, "revenue": 33234.218237}, {"YearMonth": "2014-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 111, "revenue": 3118.722231}, {"YearMonth": "2014-06", "PaymentProcessor": "CHEQUE", "orders": 5, "revenue": 132.050001}, {"YearMonth": "2014-06", "PaymentProcessor": "PAYPAL", "orders": 1349, "revenue": 31153.34934}, {"YearMonth": "2014-06", "PaymentProcessor": "SAGEPAY", "orders": 1187, "revenue": 30171.335278}, {"YearMonth": "2014-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 153, "revenue": 3686.975319}, {"YearMonth": "2014-07", "PaymentProcessor": "CHEQUE", "orders": 6, "revenue": 498.58784699999995}, {"YearMonth": "2014-07", "PaymentProcessor": "PAYPAL", "orders": 1378, "revenue": 33341.324735}, {"YearMonth": "2014-07", "PaymentProcessor": "SAGEPAY", "orders": 1367, "revenue": 36392.994091}, {"YearMonth": "2014-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 149, "revenue": 3863.100402}, {"YearMonth": "2014-08", "PaymentProcessor": "PAYPAL", "orders": 1349, "revenue": 31073.85728}, {"YearMonth": "2014-08", "PaymentProcessor": "SAGEPAY", "orders": 1294, "revenue": 33951.275039}, {"YearMonth": "2014-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 134, "revenue": 3717.148122}, {"YearMonth": "2014-09", "PaymentProcessor": "CHEQUE", "orders": 7, "revenue": 203.2988}, {"YearMonth": "2014-09", "PaymentProcessor": "PAYPAL", "orders": 1468, "revenue": 33604.797747}, {"YearMonth": "2014-09", "PaymentProcessor": "SAGEPAY", "orders": 1417, "revenue": 36615.959843}, {"YearMonth": "2014-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 119, "revenue": 2881.371838}, {"YearMonth": "2014-10", "PaymentProcessor": "CHEQUE", "orders": 5, "revenue": 197.950801}, {"YearMonth": "2014-10", "PaymentProcessor": "PAYPAL", "orders": 1428, "revenue": 34141.617923}, {"YearMonth": "2014-10", "PaymentProcessor": "SAGEPAY", "orders": 1321, "revenue": 37302.615871}, {"YearMonth": "2014-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 118, "revenue": 3106.454678}, {"YearMonth": "2014-11", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 94.2942}, {"YearMonth": "2014-11", "PaymentProcessor": "PAYPAL", "orders": 1442, "revenue": 34382.698995}, {"YearMonth": "2014-11", "PaymentProcessor": "SAGEPAY", "orders": 1387, "revenue": 38424.67109}, {"YearMonth": "2014-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 112, "revenue": 2735.684526}, {"YearMonth": "2014-12", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 82.5646}, {"YearMonth": "2014-12", "PaymentProcessor": "PAYPAL", "orders": 1150, "revenue": 27323.019073}, {"YearMonth": "2014-12", "PaymentProcessor": "SAGEPAY", "orders": 1017, "revenue": 27876.814037}, {"YearMonth": "2014-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 88, "revenue": 2163.83669}, {"YearMonth": "2015-01", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 98.41171800000001}, {"YearMonth": "2015-01", "PaymentProcessor": "PAYPAL", "orders": 2336, "revenue": 58413.874678}, {"YearMonth": "2015-01", "PaymentProcessor": "SAGEPAY", "orders": 2115, "revenue": 62233.466441}, {"YearMonth": "2015-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 177, "revenue": 5096.867782}, {"YearMonth": "2015-02", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 165.40464}, {"YearMonth": "2015-02", "PaymentProcessor": "PAYPAL", "orders": 1160, "revenue": 27048.467622}, {"YearMonth": "2015-02", "PaymentProcessor": "SAGEPAY", "orders": 1149, "revenue": 32264.564781}, {"YearMonth": "2015-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 91, "revenue": 2597.290273}, {"YearMonth": "2015-03", "PaymentProcessor": "CASH", "orders": 2, "revenue": 19.5101}, {"YearMonth": "2015-03", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 19.95}, {"YearMonth": "2015-03", "PaymentProcessor": "PAYPAL", "orders": 1758, "revenue": 41959.679921}, {"YearMonth": "2015-03", "PaymentProcessor": "SAGEPAY", "orders": 1648, "revenue": 44313.80353}, {"YearMonth": "2015-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 128, "revenue": 3330.9082}, {"YearMonth": "2015-04", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 33.07837}, {"YearMonth": "2015-04", "PaymentProcessor": "PAYPAL", "orders": 1375, "revenue": 31405.726484}, {"YearMonth": "2015-04", "PaymentProcessor": "SAGEPAY", "orders": 1338, "revenue": 34387.813245}, {"YearMonth": "2015-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 116, "revenue": 3401.9647019999998}, {"YearMonth": "2015-05", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 41.85039999999999}, {"YearMonth": "2015-05", "PaymentProcessor": "PAYPAL", "orders": 1295, "revenue": 32543.179065}, {"YearMonth": "2015-05", "PaymentProcessor": "SAGEPAY", "orders": 1217, "revenue": 33819.705121}, {"YearMonth": "2015-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 100, "revenue": 2985.105905}, {"YearMonth": "2015-06", "PaymentProcessor": "CASH", "orders": 1, "revenue": 28.9504}, {"YearMonth": "2015-06", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 29.065}, {"YearMonth": "2015-06", "PaymentProcessor": "PAYPAL", "orders": 1450, "revenue": 36180.944554}, {"YearMonth": "2015-06", "PaymentProcessor": "SAGEPAY", "orders": 1280, "revenue": 36390.7419}, {"YearMonth": "2015-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 128, "revenue": 3369.777225}, {"YearMonth": "2015-07", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 106.279381}, {"YearMonth": "2015-07", "PaymentProcessor": "PAYPAL", "orders": 1318, "revenue": 30513.60409}, {"YearMonth": "2015-07", "PaymentProcessor": "SAGEPAY", "orders": 1186, "revenue": 31313.189935}, {"YearMonth": "2015-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 114, "revenue": 2971.988267}, {"YearMonth": "2015-08", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 146.858804}, {"YearMonth": "2015-08", "PaymentProcessor": "PAYPAL", "orders": 1395, "revenue": 35283.026268}, {"YearMonth": "2015-08", "PaymentProcessor": "SAGEPAY", "orders": 1309, "revenue": 35891.789245}, {"YearMonth": "2015-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 116, "revenue": 3042.395422}, {"YearMonth": "2015-09", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 13.56}, {"YearMonth": "2015-09", "PaymentProcessor": "PAYPAL", "orders": 1597, "revenue": 40076.340363999996}, {"YearMonth": "2015-09", "PaymentProcessor": "SAGEPAY", "orders": 1432, "revenue": 41367.718456}, {"YearMonth": "2015-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 125, "revenue": 3193.213373}, {"YearMonth": "2015-10", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 398.13680400000004}, {"YearMonth": "2015-10", "PaymentProcessor": "PAYPAL", "orders": 1229, "revenue": 30050.566336}, {"YearMonth": "2015-10", "PaymentProcessor": "SAGEPAY", "orders": 1173, "revenue": 31790.167783}, {"YearMonth": "2015-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 104, "revenue": 3051.233934}, {"YearMonth": "2015-11", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 39.9054}, {"YearMonth": "2015-11", "PaymentProcessor": "PAYPAL", "orders": 1338, "revenue": 33548.116046}, {"YearMonth": "2015-11", "PaymentProcessor": "SAGEPAY", "orders": 1300, "revenue": 37095.840879}, {"YearMonth": "2015-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 106, "revenue": 3043.105081}, {"YearMonth": "2015-12", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 14.53914}, {"YearMonth": "2015-12", "PaymentProcessor": "PAYPAL", "orders": 1338, "revenue": 32142.968731}, {"YearMonth": "2015-12", "PaymentProcessor": "SAGEPAY", "orders": 1179, "revenue": 34004.148357}, {"YearMonth": "2015-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 106, "revenue": 2813.29627}, {"YearMonth": "2016-01", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 53.071911}, {"YearMonth": "2016-01", "PaymentProcessor": "PAYPAL", "orders": 2319, "revenue": 56673.42238}, {"YearMonth": "2016-01", "PaymentProcessor": "SAGEPAY", "orders": 2060, "revenue": 57499.339205}, {"YearMonth": "2016-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 149, "revenue": 4012.70508}, {"YearMonth": "2016-02", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 13.902000000000001}, {"YearMonth": "2016-02", "PaymentProcessor": "PAYPAL", "orders": 1109, "revenue": 26721.429225}, {"YearMonth": "2016-02", "PaymentProcessor": "SAGEPAY", "orders": 973, "revenue": 26550.932381}, {"YearMonth": "2016-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 95, "revenue": 3062.317425}, {"YearMonth": "2016-03", "PaymentProcessor": "CASH", "orders": 1, "revenue": 7.45}, {"YearMonth": "2016-03", "PaymentProcessor": "PAYPAL", "orders": 1618, "revenue": 42070.541518}, {"YearMonth": "2016-03", "PaymentProcessor": "SAGEPAY", "orders": 1419, "revenue": 41338.987495}, {"YearMonth": "2016-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 123, "revenue": 3372.467652}, {"YearMonth": "2016-04", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 31.900399999999998}, {"YearMonth": "2016-04", "PaymentProcessor": "PAYPAL", "orders": 1438, "revenue": 35934.599049}, {"YearMonth": "2016-04", "PaymentProcessor": "SAGEPAY", "orders": 1372, "revenue": 37203.083515}, {"YearMonth": "2016-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 117, "revenue": 2983.289685}, {"YearMonth": "2016-05", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 105.029997}, {"YearMonth": "2016-05", "PaymentProcessor": "PAYPAL", "orders": 1296, "revenue": 31708.708921}, {"YearMonth": "2016-05", "PaymentProcessor": "SAGEPAY", "orders": 1190, "revenue": 32797.001318}, {"YearMonth": "2016-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 103, "revenue": 2632.488197}, {"YearMonth": "2016-06", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 18.95}, {"YearMonth": "2016-06", "PaymentProcessor": "PAYPAL", "orders": 1348, "revenue": 33799.574363}, {"YearMonth": "2016-06", "PaymentProcessor": "SAGEPAY", "orders": 1287, "revenue": 35815.367027}, {"YearMonth": "2016-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 113, "revenue": 2852.596973}, {"YearMonth": "2016-07", "PaymentProcessor": "PAYPAL", "orders": 1293, "revenue": 30916.437712}, {"YearMonth": "2016-07", "PaymentProcessor": "SAGEPAY", "orders": 1107, "revenue": 29516.895085}, {"YearMonth": "2016-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 93, "revenue": 2787.080418}, {"YearMonth": "2016-08", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 11.6554}, {"YearMonth": "2016-08", "PaymentProcessor": "PAYPAL", "orders": 1636, "revenue": 44984.411852}, {"YearMonth": "2016-08", "PaymentProcessor": "SAGEPAY", "orders": 1523, "revenue": 43357.262698}, {"YearMonth": "2016-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 116, "revenue": 3329.499773}, {"YearMonth": "2016-09", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 25.904999999999998}, {"YearMonth": "2016-09", "PaymentProcessor": "PAYPAL", "orders": 1457, "revenue": 35242.565108}, {"YearMonth": "2016-09", "PaymentProcessor": "SAGEPAY", "orders": 1298, "revenue": 33559.607961}, {"YearMonth": "2016-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 100, "revenue": 2400.899342}, {"YearMonth": "2016-10", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 17.055}, {"YearMonth": "2016-10", "PaymentProcessor": "PAYPAL", "orders": 1540, "revenue": 36643.994948}, {"YearMonth": "2016-10", "PaymentProcessor": "SAGEPAY", "orders": 1333, "revenue": 36643.075762}, {"YearMonth": "2016-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 121, "revenue": 3067.105188}, {"YearMonth": "2016-11", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 8.95}, {"YearMonth": "2016-11", "PaymentProcessor": "PAYPAL", "orders": 1728, "revenue": 43692.461710999996}, {"YearMonth": "2016-11", "PaymentProcessor": "SAGEPAY", "orders": 1538, "revenue": 44274.75993}, {"YearMonth": "2016-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 125, "revenue": 3756.5951880000002}, {"YearMonth": "2016-12", "PaymentProcessor": "PAYPAL", "orders": 1341, "revenue": 33529.944354}, {"YearMonth": "2016-12", "PaymentProcessor": "SAGEPAY", "orders": 1129, "revenue": 32342.806823}, {"YearMonth": "2016-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 100, "revenue": 2873.463096}, {"YearMonth": "2017-01", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 154.849998}, {"YearMonth": "2017-01", "PaymentProcessor": "PAYPAL", "orders": 2678, "revenue": 64283.809701}, {"YearMonth": "2017-01", "PaymentProcessor": "SAGEPAY", "orders": 2296, "revenue": 58819.379721}, {"YearMonth": "2017-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 143, "revenue": 3402.739968}, {"YearMonth": "2017-02", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 27.61}, {"YearMonth": "2017-02", "PaymentProcessor": "PAYPAL", "orders": 1777, "revenue": 39305.329843}, {"YearMonth": "2017-02", "PaymentProcessor": "SAGEPAY", "orders": 1547, "revenue": 37664.159885}, {"YearMonth": "2017-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 127, "revenue": 2993.569991}, {"YearMonth": "2017-03", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 18.95}, {"YearMonth": "2017-03", "PaymentProcessor": "PAYPAL", "orders": 2057, "revenue": 47831.779783}, {"YearMonth": "2017-03", "PaymentProcessor": "SAGEPAY", "orders": 1829, "revenue": 47164.819846}, {"YearMonth": "2017-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 139, "revenue": 3712.029993}, {"YearMonth": "2017-04", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 44.71}, {"YearMonth": "2017-04", "PaymentProcessor": "PAYPAL", "orders": 1729, "revenue": 40286.019890999996}, {"YearMonth": "2017-04", "PaymentProcessor": "SAGEPAY", "orders": 1499, "revenue": 39979.849852}, {"YearMonth": "2017-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 98, "revenue": 2390.589988}, {"YearMonth": "2017-05", "PaymentProcessor": "PAYPAL", "orders": 2093, "revenue": 50597.609551}, {"YearMonth": "2017-05", "PaymentProcessor": "SAGEPAY", "orders": 1788, "revenue": 47151.319572}, {"YearMonth": "2017-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 145, "revenue": 3641.969973}, {"YearMonth": "2017-06", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 39.95}, {"YearMonth": "2017-06", "PaymentProcessor": "PAYPAL", "orders": 1718, "revenue": 40806.649578}, {"YearMonth": "2017-06", "PaymentProcessor": "SAGEPAY", "orders": 1437, "revenue": 36849.0897}, {"YearMonth": "2017-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 142, "revenue": 3379.299959}, {"YearMonth": "2017-07", "PaymentProcessor": "CASH", "orders": 1, "revenue": 31.410001}, {"YearMonth": "2017-07", "PaymentProcessor": "CHEQUE", "orders": 12, "revenue": 416.589998}, {"YearMonth": "2017-07", "PaymentProcessor": "PAYPAL", "orders": 2525, "revenue": 68122.879356}, {"YearMonth": "2017-07", "PaymentProcessor": "SAGEPAY", "orders": 2318, "revenue": 65597.269266}, {"YearMonth": "2017-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 277, "revenue": 9181.569938999999}, {"YearMonth": "2017-08", "PaymentProcessor": "CHEQUE", "orders": 7, "revenue": 216.430001}, {"YearMonth": "2017-08", "PaymentProcessor": "PAYPAL", "orders": 2016, "revenue": 48173.02951}, {"YearMonth": "2017-08", "PaymentProcessor": "SAGEPAY", "orders": 1766, "revenue": 45231.659573}, {"YearMonth": "2017-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 150, "revenue": 4135.169947}, {"YearMonth": "2017-09", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 118.960001}, {"YearMonth": "2017-09", "PaymentProcessor": "PAYPAL", "orders": 2026, "revenue": 48845.179525}, {"YearMonth": "2017-09", "PaymentProcessor": "SAGEPAY", "orders": 1745, "revenue": 46264.409504}, {"YearMonth": "2017-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 153, "revenue": 4712.289954}, {"YearMonth": "2017-10", "PaymentProcessor": "CASH", "orders": 1, "revenue": 8.95}, {"YearMonth": "2017-10", "PaymentProcessor": "CHEQUE", "orders": 8, "revenue": 244.729998}, {"YearMonth": "2017-10", "PaymentProcessor": "PAYPAL", "orders": 2570, "revenue": 62166.83933}, {"YearMonth": "2017-10", "PaymentProcessor": "SAGEPAY", "orders": 2235, "revenue": 58354.249419}, {"YearMonth": "2017-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 258, "revenue": 7400.139927}, {"YearMonth": "2017-11", "PaymentProcessor": "CASH", "orders": 1, "revenue": 268.5}, {"YearMonth": "2017-11", "PaymentProcessor": "CHEQUE", "orders": 6, "revenue": 203.409998}, {"YearMonth": "2017-11", "PaymentProcessor": "PAYPAL", "orders": 2597, "revenue": 65986.739327}, {"YearMonth": "2017-11", "PaymentProcessor": "SAGEPAY", "orders": 2360, "revenue": 65901.909308}, {"YearMonth": "2017-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 203, "revenue": 6030.929928}, {"YearMonth": "2017-12", "PaymentProcessor": "CHEQUE", "orders": 7, "revenue": 224.869995}, {"YearMonth": "2017-12", "PaymentProcessor": "PAYPAL", "orders": 2035, "revenue": 48463.94952}, {"YearMonth": "2017-12", "PaymentProcessor": "SAGEPAY", "orders": 1607, "revenue": 43608.199604}, {"YearMonth": "2017-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 99, "revenue": 2693.819965}, {"YearMonth": "2018-01", "PaymentProcessor": "CHEQUE", "orders": 40, "revenue": 965.81}, {"YearMonth": "2018-01", "PaymentProcessor": "PAYPAL", "orders": 4133, "revenue": 102216.539351}, {"YearMonth": "2018-01", "PaymentProcessor": "SAGEPAY", "orders": 3669, "revenue": 101514.179305}, {"YearMonth": "2018-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 370, "revenue": 10206.479929}, {"YearMonth": "2018-02", "PaymentProcessor": "CASH", "orders": 1, "revenue": 13.46}, {"YearMonth": "2018-02", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 96.279998}, {"YearMonth": "2018-02", "PaymentProcessor": "PAYPAL", "orders": 2463, "revenue": 58840.279613}, {"YearMonth": "2018-02", "PaymentProcessor": "SAGEPAY", "orders": 2059, "revenue": 53536.079645}, {"YearMonth": "2018-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 171, "revenue": 4906.939959}, {"YearMonth": "2018-03", "PaymentProcessor": "CASH", "orders": 2, "revenue": 1112.1299940000001}, {"YearMonth": "2018-03", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 95.10000299999999}, {"YearMonth": "2018-03", "PaymentProcessor": "PAYPAL", "orders": 2973, "revenue": 69655.719548}, {"YearMonth": "2018-03", "PaymentProcessor": "SAGEPAY", "orders": 2513, "revenue": 64524.609517}, {"YearMonth": "2018-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 180, "revenue": 4409.859954}, {"YearMonth": "2018-04", "PaymentProcessor": "CHEQUE", "orders": 24, "revenue": 632.27}, {"YearMonth": "2018-04", "PaymentProcessor": "PAYPAL", "orders": 2578, "revenue": 62985.569418}, {"YearMonth": "2018-04", "PaymentProcessor": "SAGEPAY", "orders": 2292, "revenue": 62140.509429}, {"YearMonth": "2018-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 279, "revenue": 7589.449913}, {"YearMonth": "2018-05", "PaymentProcessor": "CHEQUE", "orders": 5, "revenue": 82.18}, {"YearMonth": "2018-05", "PaymentProcessor": "PAYPAL", "orders": 2498, "revenue": 62548.059349}, {"YearMonth": "2018-05", "PaymentProcessor": "SAGEPAY", "orders": 2206, "revenue": 60297.189309}, {"YearMonth": "2018-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 207, "revenue": 5632.289966}, {"YearMonth": "2018-06", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 49.92}, {"YearMonth": "2018-06", "PaymentProcessor": "PAYPAL", "orders": 2470, "revenue": 60188.839267}, {"YearMonth": "2018-06", "PaymentProcessor": "SAGEPAY", "orders": 2177, "revenue": 59103.369347}, {"YearMonth": "2018-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 150, "revenue": 3787.3999360000003}, {"YearMonth": "2018-07", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 10.45}, {"YearMonth": "2018-07", "PaymentProcessor": "PAYPAL", "orders": 2195, "revenue": 56433.769467}, {"YearMonth": "2018-07", "PaymentProcessor": "SAGEPAY", "orders": 2127, "revenue": 61258.719347}, {"YearMonth": "2018-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 185, "revenue": 5719.919944}, {"YearMonth": "2018-08", "PaymentProcessor": "CHEQUE", "orders": 30, "revenue": 845.359991}, {"YearMonth": "2018-08", "PaymentProcessor": "PAYPAL", "orders": 2726, "revenue": 71455.959325}, {"YearMonth": "2018-08", "PaymentProcessor": "SAGEPAY", "orders": 2429, "revenue": 68120.26927599999}, {"YearMonth": "2018-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 334, "revenue": 9745.689862}, {"YearMonth": "2018-09", "PaymentProcessor": "CASH", "orders": 2, "revenue": 24.759999999999998}, {"YearMonth": "2018-09", "PaymentProcessor": "CHEQUE", "orders": 5, "revenue": 87.86}, {"YearMonth": "2018-09", "PaymentProcessor": "PAYPAL", "orders": 2172, "revenue": 55466.519555}, {"YearMonth": "2018-09", "PaymentProcessor": "SAGEPAY", "orders": 1945, "revenue": 53945.919486}, {"YearMonth": "2018-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 196, "revenue": 5361.569938}, {"YearMonth": "2018-10", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 74.749998}, {"YearMonth": "2018-10", "PaymentProcessor": "PAYPAL", "orders": 2681, "revenue": 72781.229504}, {"YearMonth": "2018-10", "PaymentProcessor": "SAGEPAY", "orders": 2388, "revenue": 69601.129527}, {"YearMonth": "2018-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 214, "revenue": 6183.799958}, {"YearMonth": "2018-11", "PaymentProcessor": "CASH", "orders": 2, "revenue": 129.889997}, {"YearMonth": "2018-11", "PaymentProcessor": "CHEQUE", "orders": 21, "revenue": 574.87999}, {"YearMonth": "2018-11", "PaymentProcessor": "PAYPAL", "orders": 2426, "revenue": 63927.509957}, {"YearMonth": "2018-11", "PaymentProcessor": "SAGEPAY", "orders": 2183, "revenue": 63459.349936}, {"YearMonth": "2018-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 267, "revenue": 7496.850007}, {"YearMonth": "2018-12", "PaymentProcessor": "CASH", "orders": 1, "revenue": 293.809995}, {"YearMonth": "2018-12", "PaymentProcessor": "CHEQUE", "orders": 6, "revenue": 174.389995}, {"YearMonth": "2018-12", "PaymentProcessor": "PAYPAL", "orders": 2356, "revenue": 62023.379778}, {"YearMonth": "2018-12", "PaymentProcessor": "SAGEPAY", "orders": 1983, "revenue": 56498.589826999996}, {"YearMonth": "2018-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 167, "revenue": 5175.540019}, {"YearMonth": "2019-01", "PaymentProcessor": "CHEQUE", "orders": 33, "revenue": 1110.669999}, {"YearMonth": "2019-01", "PaymentProcessor": "PAYPAL", "orders": 3500, "revenue": 93761.529353}, {"YearMonth": "2019-01", "PaymentProcessor": "SAGEPAY", "orders": 3204, "revenue": 95255.11941}, {"YearMonth": "2019-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 298, "revenue": 9741.749906}, {"YearMonth": "2019-02", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 30.51}, {"YearMonth": "2019-02", "PaymentProcessor": "PAYPAL", "orders": 2095, "revenue": 54957.519529}, {"YearMonth": "2019-02", "PaymentProcessor": "SAGEPAY", "orders": 1899, "revenue": 55381.499588}, {"YearMonth": "2019-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 156, "revenue": 4508.009951}, {"YearMonth": "2019-03", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 73.349997}, {"YearMonth": "2019-03", "PaymentProcessor": "PAYPAL", "orders": 2227, "revenue": 63053.159568999996}, {"YearMonth": "2019-03", "PaymentProcessor": "SAGEPAY", "orders": 2115, "revenue": 62262.689469}, {"YearMonth": "2019-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 176, "revenue": 5091.449944}, {"YearMonth": "2019-04", "PaymentProcessor": "PAYPAL", "orders": 2082, "revenue": 57536.509521}, {"YearMonth": "2019-04", "PaymentProcessor": "SAGEPAY", "orders": 1922, "revenue": 56990.319496}, {"YearMonth": "2019-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 148, "revenue": 4282.25995}, {"YearMonth": "2019-05", "PaymentProcessor": "CASH", "orders": 1, "revenue": 14.49}, {"YearMonth": "2019-05", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 130.649999}, {"YearMonth": "2019-05", "PaymentProcessor": "PAYPAL", "orders": 2194, "revenue": 59873.339684}, {"YearMonth": "2019-05", "PaymentProcessor": "SAGEPAY", "orders": 2019, "revenue": 58106.139575}, {"YearMonth": "2019-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 174, "revenue": 5252.669979}, {"YearMonth": "2019-06", "PaymentProcessor": "PAYPAL", "orders": 2083, "revenue": 60437.739505}, {"YearMonth": "2019-06", "PaymentProcessor": "SAGEPAY", "orders": 1933, "revenue": 59993.309543999996}, {"YearMonth": "2019-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 160, "revenue": 4942.979936}, {"YearMonth": "2019-07", "PaymentProcessor": "CHEQUE", "orders": 10, "revenue": 298.449997}, {"YearMonth": "2019-07", "PaymentProcessor": "PAYPAL", "orders": 2468, "revenue": 78578.149297}, {"YearMonth": "2019-07", "PaymentProcessor": "SAGEPAY", "orders": 2511, "revenue": 87486.169186}, {"YearMonth": "2019-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 235, "revenue": 8300.559931}, {"YearMonth": "2019-08", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 134.64999799999998}, {"YearMonth": "2019-08", "PaymentProcessor": "PAYPAL", "orders": 1486, "revenue": 37569.729699999996}, {"YearMonth": "2019-08", "PaymentProcessor": "SAGEPAY", "orders": 1481, "revenue": 43941.089674999996}, {"YearMonth": "2019-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 144, "revenue": 4605.309975}, {"YearMonth": "2019-09", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 144.250004}, {"YearMonth": "2019-09", "PaymentProcessor": "PAYPAL", "orders": 2077, "revenue": 53554.080059}, {"YearMonth": "2019-09", "PaymentProcessor": "SAGEPAY", "orders": 2003, "revenue": 61997.620199}, {"YearMonth": "2019-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 180, "revenue": 5808.080005}, {"YearMonth": "2019-10", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 436.010006}, {"YearMonth": "2019-10", "PaymentProcessor": "PAYPAL", "orders": 2013, "revenue": 56793.699585999995}, {"YearMonth": "2019-10", "PaymentProcessor": "SAGEPAY", "orders": 2041, "revenue": 68184.10957}, {"YearMonth": "2019-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 191, "revenue": 6416.499916}, {"YearMonth": "2019-11", "PaymentProcessor": "PAYPAL", "orders": 1887, "revenue": 50136.499589}, {"YearMonth": "2019-11", "PaymentProcessor": "SAGEPAY", "orders": 1894, "revenue": 58721.309517}, {"YearMonth": "2019-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 199, "revenue": 5729.759954}, {"YearMonth": "2019-12", "PaymentProcessor": "PAYPAL", "orders": 1752, "revenue": 48967.909576}, {"YearMonth": "2019-12", "PaymentProcessor": "SAGEPAY", "orders": 1672, "revenue": 51870.49956}, {"YearMonth": "2019-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 108, "revenue": 3211.8299629999997}, {"YearMonth": "2020-01", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 118.650001}, {"YearMonth": "2020-01", "PaymentProcessor": "PAYPAL", "orders": 2713, "revenue": 77019.799337}, {"YearMonth": "2020-01", "PaymentProcessor": "SAGEPAY", "orders": 2788, "revenue": 88381.029335}, {"YearMonth": "2020-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 210, "revenue": 7036.829935}, {"YearMonth": "2020-02", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 189.589996}, {"YearMonth": "2020-02", "PaymentProcessor": "PAYPAL", "orders": 1258, "revenue": 30578.919715}, {"YearMonth": "2020-02", "PaymentProcessor": "SAGEPAY", "orders": 1151, "revenue": 32932.179694}, {"YearMonth": "2020-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 109, "revenue": 3446.909975}, {"YearMonth": "2020-03", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 73.8}, {"YearMonth": "2020-03", "PaymentProcessor": "PAYPAL", "orders": 2583, "revenue": 68709.049621}, {"YearMonth": "2020-03", "PaymentProcessor": "SAGEPAY", "orders": 2465, "revenue": 71393.379617}, {"YearMonth": "2020-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 143, "revenue": 5088.419943}, {"YearMonth": "2020-04", "PaymentProcessor": "PAYPAL", "orders": 3381, "revenue": 71139.979635}, {"YearMonth": "2020-04", "PaymentProcessor": "SAGEPAY", "orders": 3481, "revenue": 84539.919577}, {"YearMonth": "2020-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 13, "revenue": 429.159996}, {"YearMonth": "2020-05", "PaymentProcessor": "PAYPAL", "orders": 3268, "revenue": 71556.569582}, {"YearMonth": "2020-05", "PaymentProcessor": "SAGEPAY", "orders": 2959, "revenue": 73813.61958}, {"YearMonth": "2020-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 9, "revenue": 207.58999899999998}, {"YearMonth": "2020-06", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 22.949999}, {"YearMonth": "2020-06", "PaymentProcessor": "PAYPAL", "orders": 3019, "revenue": 71493.269636}, {"YearMonth": "2020-06", "PaymentProcessor": "SAGEPAY", "orders": 2938, "revenue": 79092.679531}, {"YearMonth": "2020-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 25, "revenue": 777.4200069999999}, {"YearMonth": "2020-07", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 128.749998}, {"YearMonth": "2020-07", "PaymentProcessor": "PAYPAL", "orders": 2958, "revenue": 74383.029509}, {"YearMonth": "2020-07", "PaymentProcessor": "SAGEPAY", "orders": 2695, "revenue": 75587.139513}, {"YearMonth": "2020-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 92, "revenue": 3336.5199669999997}, {"YearMonth": "2020-08", "PaymentProcessor": "PAYPAL", "orders": 2800, "revenue": 73473.24947}, {"YearMonth": "2020-08", "PaymentProcessor": "SAGEPAY", "orders": 2763, "revenue": 80841.069474}, {"YearMonth": "2020-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 95, "revenue": 2879.809978}, {"YearMonth": "2020-09", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 25.949999}, {"YearMonth": "2020-09", "PaymentProcessor": "PAYPAL", "orders": 2547, "revenue": 61540.039663999996}, {"YearMonth": "2020-09", "PaymentProcessor": "SAGEPAY", "orders": 2261, "revenue": 62701.279693}, {"YearMonth": "2020-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 108, "revenue": 4625.739963}, {"YearMonth": "2020-10", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 636.150008}, {"YearMonth": "2020-10", "PaymentProcessor": "PAYPAL", "orders": 4077, "revenue": 93342.099474}, {"YearMonth": "2020-10", "PaymentProcessor": "SAGEPAY", "orders": 3759, "revenue": 99011.499484}, {"YearMonth": "2020-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 119, "revenue": 3627.819974}, {"YearMonth": "2020-11", "PaymentProcessor": "PAYPAL", "orders": 3753, "revenue": 86118.47959799999}, {"YearMonth": "2020-11", "PaymentProcessor": "SAGEPAY", "orders": 3550, "revenue": 90391.97968}, {"YearMonth": "2020-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 98, "revenue": 2738.979961}, {"YearMonth": "2020-12", "PaymentProcessor": "PAYPAL", "orders": 3171, "revenue": 78537.339452}, {"YearMonth": "2020-12", "PaymentProcessor": "SAGEPAY", "orders": 3115, "revenue": 86648.999512}, {"YearMonth": "2020-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 77, "revenue": 2345.6899829999998}, {"YearMonth": "2021-01", "PaymentProcessor": "PAYPAL", "orders": 4417, "revenue": 107631.559279}, {"YearMonth": "2021-01", "PaymentProcessor": "SAGEPAY", "orders": 4369, "revenue": 117173.439341}, {"YearMonth": "2021-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 141, "revenue": 4305.429951}, {"YearMonth": "2021-02", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 13.45}, {"YearMonth": "2021-02", "PaymentProcessor": "PAYPAL", "orders": 2579, "revenue": 57787.929691}, {"YearMonth": "2021-02", "PaymentProcessor": "SAGEPAY", "orders": 2461, "revenue": 63336.33969}, {"YearMonth": "2021-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 71, "revenue": 2491.319987}, {"YearMonth": "2021-03", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 146.250002}, {"YearMonth": "2021-03", "PaymentProcessor": "PAYPAL", "orders": 2965, "revenue": 73825.789528}, {"YearMonth": "2021-03", "PaymentProcessor": "SAGEPAY", "orders": 2962, "revenue": 81206.48952}, {"YearMonth": "2021-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 95, "revenue": 2794.229965}, {"YearMonth": "2021-04", "PaymentProcessor": "PAYPAL", "orders": 2382, "revenue": 59930.039515}, {"YearMonth": "2021-04", "PaymentProcessor": "SAGEPAY", "orders": 2483, "revenue": 67670.939515}, {"YearMonth": "2021-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 77, "revenue": 2239.719976}, {"YearMonth": "2021-05", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 25.949999}, {"YearMonth": "2021-05", "PaymentProcessor": "PAYPAL", "orders": 2450, "revenue": 62736.319584}, {"YearMonth": "2021-05", "PaymentProcessor": "SAGEPAY", "orders": 2577, "revenue": 69795.169413}, {"YearMonth": "2021-05", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 93, "revenue": 3424.999993}, {"YearMonth": "2021-06", "PaymentProcessor": "PAYPAL", "orders": 2776, "revenue": 70682.269382}, {"YearMonth": "2021-06", "PaymentProcessor": "SAGEPAY", "orders": 2745, "revenue": 72864.269361}, {"YearMonth": "2021-06", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 105, "revenue": 3270.559964}, {"YearMonth": "2021-07", "PaymentProcessor": "PAYPAL", "orders": 3338, "revenue": 85720.449426}, {"YearMonth": "2021-07", "PaymentProcessor": "SAGEPAY", "orders": 3099, "revenue": 85592.199392}, {"YearMonth": "2021-07", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 100, "revenue": 2890.759979}, {"YearMonth": "2021-08", "PaymentProcessor": "PAYPAL", "orders": 2355, "revenue": 59043.789572}, {"YearMonth": "2021-08", "PaymentProcessor": "SAGEPAY", "orders": 2299, "revenue": 62832.14946}, {"YearMonth": "2021-08", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 75, "revenue": 2451.65998}, {"YearMonth": "2021-09", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 156.639999}, {"YearMonth": "2021-09", "PaymentProcessor": "PAYPAL", "orders": 2550, "revenue": 65698.71958599999}, {"YearMonth": "2021-09", "PaymentProcessor": "SAGEPAY", "orders": 2422, "revenue": 68594.559526}, {"YearMonth": "2021-09", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 96, "revenue": 3116.42998}, {"YearMonth": "2021-10", "PaymentProcessor": "PAYPAL", "orders": 2649, "revenue": 63452.749544}, {"YearMonth": "2021-10", "PaymentProcessor": "SAGEPAY", "orders": 2594, "revenue": 66472.839461}, {"YearMonth": "2021-10", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 65, "revenue": 1949.629981}, {"YearMonth": "2021-11", "PaymentProcessor": "PAYPAL", "orders": 3113, "revenue": 81637.669486}, {"YearMonth": "2021-11", "PaymentProcessor": "SAGEPAY", "orders": 3098, "revenue": 88528.879294}, {"YearMonth": "2021-11", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 97, "revenue": 2814.059988}, {"YearMonth": "2021-12", "PaymentProcessor": "PAYPAL", "orders": 2077, "revenue": 53734.419573}, {"YearMonth": "2021-12", "PaymentProcessor": "SAGEPAY", "orders": 1982, "revenue": 55498.719515}, {"YearMonth": "2021-12", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 57, "revenue": 1634.7799759999998}, {"YearMonth": "2022-01", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 9.86}, {"YearMonth": "2022-01", "PaymentProcessor": "PAYPAL", "orders": 4120, "revenue": 98558.599303}, {"YearMonth": "2022-01", "PaymentProcessor": "SAGEPAY", "orders": 3950, "revenue": 102948.759188}, {"YearMonth": "2022-01", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 111, "revenue": 3733.3399679999998}, {"YearMonth": "2022-02", "PaymentProcessor": "INVOICE", "orders": 19, "revenue": 0.0}, {"YearMonth": "2022-02", "PaymentProcessor": "PAYPAL", "orders": 1730, "revenue": 40656.719776}, {"YearMonth": "2022-02", "PaymentProcessor": "SAGEPAY", "orders": 853, "revenue": 20361.549862}, {"YearMonth": "2022-02", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 44, "revenue": 1429.4499839999999}, {"YearMonth": "2022-02", "PaymentProcessor": "STRIPE", "orders": 1053, "revenue": 25646.509778}, {"YearMonth": "2022-03", "PaymentProcessor": "INVOICE", "orders": 11, "revenue": 0.0}, {"YearMonth": "2022-03", "PaymentProcessor": "PAYPAL", "orders": 2577, "revenue": 63040.659494}, {"YearMonth": "2022-03", "PaymentProcessor": "SAGEPAY", "orders": 19, "revenue": 678.289998}, {"YearMonth": "2022-03", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 43, "revenue": 1103.189997}, {"YearMonth": "2022-03", "PaymentProcessor": "STRIPE", "orders": 3535, "revenue": 93215.38924}, {"YearMonth": "2022-04", "PaymentProcessor": "INVOICE", "orders": 15, "revenue": 0.0}, {"YearMonth": "2022-04", "PaymentProcessor": "PAYPAL", "orders": 2276, "revenue": 53698.789767999995}, {"YearMonth": "2022-04", "PaymentProcessor": "SAGEPAYMANUAL", "orders": 5, "revenue": 75.779999}, {"YearMonth": "2022-04", "PaymentProcessor": "STRIPE", "orders": 3076, "revenue": 75724.25967}, {"YearMonth": "2022-05", "PaymentProcessor": "CASH", "orders": 1, "revenue": 0.0}, {"YearMonth": "2022-05", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 27.950001}, {"YearMonth": "2022-05", "PaymentProcessor": "INVOICE", "orders": 13, "revenue": 0.0}, {"YearMonth": "2022-05", "PaymentProcessor": "PAYPAL", "orders": 1910, "revenue": 47500.72984}, {"YearMonth": "2022-05", "PaymentProcessor": "STRIPE", "orders": 2569, "revenue": 68073.549716}, {"YearMonth": "2022-06", "PaymentProcessor": "INVOICE", "orders": 5, "revenue": 0.0}, {"YearMonth": "2022-06", "PaymentProcessor": "PAYPAL", "orders": 1749, "revenue": 45103.759767999996}, {"YearMonth": "2022-06", "PaymentProcessor": "STRIPE", "orders": 2408, "revenue": 66282.019713}, {"YearMonth": "2022-07", "PaymentProcessor": "INVOICE", "orders": 8, "revenue": 0.0}, {"YearMonth": "2022-07", "PaymentProcessor": "PAYPAL", "orders": 2037, "revenue": 52201.23981}, {"YearMonth": "2022-07", "PaymentProcessor": "STRIPE", "orders": 2916, "revenue": 81727.439644}, {"YearMonth": "2022-08", "PaymentProcessor": "INVOICE", "orders": 4, "revenue": 0.0}, {"YearMonth": "2022-08", "PaymentProcessor": "PAYPAL", "orders": 1666, "revenue": 43219.059858}, {"YearMonth": "2022-08", "PaymentProcessor": "STRIPE", "orders": 2565, "revenue": 72350.819723}, {"YearMonth": "2022-09", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 69.609998}, {"YearMonth": "2022-09", "PaymentProcessor": "INVOICE", "orders": 3, "revenue": 0.0}, {"YearMonth": "2022-09", "PaymentProcessor": "PAYPAL", "orders": 1613, "revenue": 43225.499824}, {"YearMonth": "2022-09", "PaymentProcessor": "STRIPE", "orders": 2428, "revenue": 67200.389788}, {"YearMonth": "2022-10", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 79.200002}, {"YearMonth": "2022-10", "PaymentProcessor": "INVOICE", "orders": 15, "revenue": 0.0}, {"YearMonth": "2022-10", "PaymentProcessor": "PAYPAL", "orders": 1630, "revenue": 41437.059819}, {"YearMonth": "2022-10", "PaymentProcessor": "STRIPE", "orders": 2516, "revenue": 65930.029687}, {"YearMonth": "2022-11", "PaymentProcessor": "INVOICE", "orders": 13, "revenue": 0.0}, {"YearMonth": "2022-11", "PaymentProcessor": "PAYPAL", "orders": 1773, "revenue": 47758.519807}, {"YearMonth": "2022-11", "PaymentProcessor": "STRIPE", "orders": 2921, "revenue": 88315.779693}, {"YearMonth": "2022-12", "PaymentProcessor": "INVOICE", "orders": 12, "revenue": 0.0}, {"YearMonth": "2022-12", "PaymentProcessor": "PAYPAL", "orders": 1420, "revenue": 39160.629638}, {"YearMonth": "2022-12", "PaymentProcessor": "STRIPE", "orders": 2271, "revenue": 63960.839432}, {"YearMonth": "2023-01", "PaymentProcessor": "CASH", "orders": 1, "revenue": 12.66}, {"YearMonth": "2023-01", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 26.059999}, {"YearMonth": "2023-01", "PaymentProcessor": "INVOICE", "orders": 20, "revenue": 0.0}, {"YearMonth": "2023-01", "PaymentProcessor": "PAYPAL", "orders": 2397, "revenue": 65573.659528}, {"YearMonth": "2023-01", "PaymentProcessor": "STRIPE", "orders": 3924, "revenue": 114859.059248}, {"YearMonth": "2023-02", "PaymentProcessor": "INVOICE", "orders": 16, "revenue": 0.0}, {"YearMonth": "2023-02", "PaymentProcessor": "PAYPAL", "orders": 1353, "revenue": 33659.389817}, {"YearMonth": "2023-02", "PaymentProcessor": "STRIPE", "orders": 2231, "revenue": 61491.579651}, {"YearMonth": "2023-03", "PaymentProcessor": "INVOICE", "orders": 17, "revenue": 0.0}, {"YearMonth": "2023-03", "PaymentProcessor": "PAYPAL", "orders": 1673, "revenue": 45797.749887}, {"YearMonth": "2023-03", "PaymentProcessor": "STRIPE", "orders": 2704, "revenue": 80458.359775}, {"YearMonth": "2023-04", "PaymentProcessor": "INVOICE", "orders": 7, "revenue": 0.0}, {"YearMonth": "2023-04", "PaymentProcessor": "PAYPAL", "orders": 1009, "revenue": 27132.339931}, {"YearMonth": "2023-04", "PaymentProcessor": "STRIPE", "orders": 1907, "revenue": 57038.019805}, {"YearMonth": "2023-05", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 18.9}, {"YearMonth": "2023-05", "PaymentProcessor": "INVOICE", "orders": 13, "revenue": 0.0}, {"YearMonth": "2023-05", "PaymentProcessor": "PAYPAL", "orders": 1354, "revenue": 40533.499831}, {"YearMonth": "2023-05", "PaymentProcessor": "STRIPE", "orders": 2427, "revenue": 76993.959757}, {"YearMonth": "2023-06", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 31.449999}, {"YearMonth": "2023-06", "PaymentProcessor": "INVOICE", "orders": 9, "revenue": 0.0}, {"YearMonth": "2023-06", "PaymentProcessor": "PAYPAL", "orders": 1212, "revenue": 35803.789785}, {"YearMonth": "2023-06", "PaymentProcessor": "STRIPE", "orders": 2205, "revenue": 71198.239607}, {"YearMonth": "2023-07", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 133.009999}, {"YearMonth": "2023-07", "PaymentProcessor": "INVOICE", "orders": 13, "revenue": 0.0}, {"YearMonth": "2023-07", "PaymentProcessor": "PAYPAL", "orders": 1531, "revenue": 45790.749713}, {"YearMonth": "2023-07", "PaymentProcessor": "STRIPE", "orders": 2825, "revenue": 88197.209467}, {"YearMonth": "2023-08", "PaymentProcessor": "INVOICE", "orders": 11, "revenue": 0.0}, {"YearMonth": "2023-08", "PaymentProcessor": "PAYPAL", "orders": 1077, "revenue": 29345.429909}, {"YearMonth": "2023-08", "PaymentProcessor": "STRIPE", "orders": 2154, "revenue": 66410.759774}, {"YearMonth": "2023-09", "PaymentProcessor": "INVOICE", "orders": 18, "revenue": 0.0}, {"YearMonth": "2023-09", "PaymentProcessor": "PAYPAL", "orders": 1156, "revenue": 34463.43991}, {"YearMonth": "2023-09", "PaymentProcessor": "STRIPE", "orders": 2354, "revenue": 77860.019742}, {"YearMonth": "2023-10", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 10.45}, {"YearMonth": "2023-10", "PaymentProcessor": "INVOICE", "orders": 20, "revenue": 0.0}, {"YearMonth": "2023-10", "PaymentProcessor": "PAYPAL", "orders": 1151, "revenue": 35797.449905}, {"YearMonth": "2023-10", "PaymentProcessor": "STRIPE", "orders": 2563, "revenue": 82126.92973799999}, {"YearMonth": "2023-11", "PaymentProcessor": "INVOICE", "orders": 17, "revenue": 24.0}, {"YearMonth": "2023-11", "PaymentProcessor": "PAYPAL", "orders": 958, "revenue": 31103.73992}, {"YearMonth": "2023-11", "PaymentProcessor": "STRIPE", "orders": 2234, "revenue": 75996.770146}, {"YearMonth": "2023-12", "PaymentProcessor": "INVOICE", "orders": 20, "revenue": 0.0}, {"YearMonth": "2023-12", "PaymentProcessor": "PAYPAL", "orders": 878, "revenue": 27602.69994}, {"YearMonth": "2023-12", "PaymentProcessor": "STRIPE", "orders": 2159, "revenue": 73018.480144}, {"YearMonth": "2024-01", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 99.519999}, {"YearMonth": "2024-01", "PaymentProcessor": "INVOICE", "orders": 28, "revenue": 64.44}, {"YearMonth": "2024-01", "PaymentProcessor": "PAYPAL", "orders": 1464, "revenue": 47303.439756}, {"YearMonth": "2024-01", "PaymentProcessor": "STRIPE", "orders": 3308, "revenue": 112554.305917}, {"YearMonth": "2024-02", "PaymentProcessor": "INVOICE", "orders": 8, "revenue": 0.0}, {"YearMonth": "2024-02", "PaymentProcessor": "PAYPAL", "orders": 718, "revenue": 22363.47999}, {"YearMonth": "2024-02", "PaymentProcessor": "STRIPE", "orders": 1883, "revenue": 58212.069733}, {"YearMonth": "2024-03", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 73.849999}, {"YearMonth": "2024-03", "PaymentProcessor": "INVOICE", "orders": 11, "revenue": 0.0}, {"YearMonth": "2024-03", "PaymentProcessor": "PAYPAL", "orders": 906, "revenue": 28916.769992999998}, {"YearMonth": "2024-03", "PaymentProcessor": "STRIPE", "orders": 2342, "revenue": 77051.939758}, {"YearMonth": "2024-04", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 34.9}, {"YearMonth": "2024-04", "PaymentProcessor": "INVOICE", "orders": 24, "revenue": 0.0}, {"YearMonth": "2024-04", "PaymentProcessor": "PAYPAL", "orders": 909, "revenue": 27992.160022}, {"YearMonth": "2024-04", "PaymentProcessor": "STRIPE", "orders": 2428, "revenue": 80148.150147}, {"YearMonth": "2024-05", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 63.900001}, {"YearMonth": "2024-05", "PaymentProcessor": "INVOICE", "orders": 12, "revenue": 0.0}, {"YearMonth": "2024-05", "PaymentProcessor": "PAYPAL", "orders": 782, "revenue": 24433.629987}, {"YearMonth": "2024-05", "PaymentProcessor": "STRIPE", "orders": 2249, "revenue": 70201.901712}, {"YearMonth": "2024-06", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 167.299995}, {"YearMonth": "2024-06", "PaymentProcessor": "INVOICE", "orders": 5, "revenue": 0.0}, {"YearMonth": "2024-06", "PaymentProcessor": "PAYPAL", "orders": 753, "revenue": 24124.069976}, {"YearMonth": "2024-06", "PaymentProcessor": "STRIPE", "orders": 2140, "revenue": 67685.035704}, {"YearMonth": "2024-07", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 153.239999}, {"YearMonth": "2024-07", "PaymentProcessor": "INVOICE", "orders": 27, "revenue": 0.0}, {"YearMonth": "2024-07", "PaymentProcessor": "PAYPAL", "orders": 1118, "revenue": 36685.909731}, {"YearMonth": "2024-07", "PaymentProcessor": "STRIPE", "orders": 2984, "revenue": 98998.357836}, {"YearMonth": "2024-08", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 119.099998}, {"YearMonth": "2024-08", "PaymentProcessor": "INVOICE", "orders": 13, "revenue": 0.0}, {"YearMonth": "2024-08", "PaymentProcessor": "PAYPAL", "orders": 729, "revenue": 24419.460035}, {"YearMonth": "2024-08", "PaymentProcessor": "STRIPE", "orders": 2218, "revenue": 70746.850205}, {"YearMonth": "2024-09", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 115.28}, {"YearMonth": "2024-09", "PaymentProcessor": "INVOICE", "orders": 12, "revenue": 0.0}, {"YearMonth": "2024-09", "PaymentProcessor": "PAYPAL", "orders": 717, "revenue": 22272.410021}, {"YearMonth": "2024-09", "PaymentProcessor": "STRIPE", "orders": 2129, "revenue": 71900.639834}, {"YearMonth": "2024-10", "PaymentProcessor": "CHEQUE", "orders": 3, "revenue": 234.439995}, {"YearMonth": "2024-10", "PaymentProcessor": "INVOICE", "orders": 17, "revenue": 0.0}, {"YearMonth": "2024-10", "PaymentProcessor": "PAYPAL", "orders": 753, "revenue": 22578.779977}, {"YearMonth": "2024-10", "PaymentProcessor": "STRIPE", "orders": 2346, "revenue": 73398.279745}, {"YearMonth": "2024-11", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 294.37}, {"YearMonth": "2024-11", "PaymentProcessor": "INVOICE", "orders": 16, "revenue": 0.0}, {"YearMonth": "2024-11", "PaymentProcessor": "PAYPAL", "orders": 812, "revenue": 26867.999935}, {"YearMonth": "2024-11", "PaymentProcessor": "STRIPE", "orders": 2525, "revenue": 82176.429688}, {"YearMonth": "2024-12", "PaymentProcessor": "CHEQUE", "orders": 9, "revenue": 271.84999799999997}, {"YearMonth": "2024-12", "PaymentProcessor": "INVOICE", "orders": 20, "revenue": 0.0}, {"YearMonth": "2024-12", "PaymentProcessor": "PAYPAL", "orders": 499, "revenue": 16221.019935}, {"YearMonth": "2024-12", "PaymentProcessor": "STRIPE", "orders": 1799, "revenue": 55715.469304}, {"YearMonth": "2025-01", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 78.12}, {"YearMonth": "2025-01", "PaymentProcessor": "INVOICE", "orders": 11, "revenue": 0.0}, {"YearMonth": "2025-01", "PaymentProcessor": "PAYPAL", "orders": 832, "revenue": 28452.219779}, {"YearMonth": "2025-01", "PaymentProcessor": "STRIPE", "orders": 2657, "revenue": 94261.879241}, {"YearMonth": "2025-02", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 25.450001}, {"YearMonth": "2025-02", "PaymentProcessor": "INVOICE", "orders": 12, "revenue": 0.0}, {"YearMonth": "2025-02", "PaymentProcessor": "PAYPAL", "orders": 493, "revenue": 17439.839944}, {"YearMonth": "2025-02", "PaymentProcessor": "STRIPE", "orders": 1912, "revenue": 62974.199607}, {"YearMonth": "2025-03", "PaymentProcessor": "INVOICE", "orders": 8, "revenue": 9.950002}, {"YearMonth": "2025-03", "PaymentProcessor": "PAYPAL", "orders": 467, "revenue": 17399.47993}, {"YearMonth": "2025-03", "PaymentProcessor": "STRIPE", "orders": 2024, "revenue": 69515.839582}, {"YearMonth": "2025-04", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 15.6}, {"YearMonth": "2025-04", "PaymentProcessor": "INVOICE", "orders": 15, "revenue": 0.0}, {"YearMonth": "2025-04", "PaymentProcessor": "PAYPAL", "orders": 495, "revenue": 19315.739935999998}, {"YearMonth": "2025-04", "PaymentProcessor": "STRIPE", "orders": 2065, "revenue": 71272.949624}, {"YearMonth": "2025-05", "PaymentProcessor": "INVOICE", "orders": 11, "revenue": 0.0}, {"YearMonth": "2025-05", "PaymentProcessor": "PAYPAL", "orders": 486, "revenue": 20031.309973}, {"YearMonth": "2025-05", "PaymentProcessor": "STRIPE", "orders": 2134, "revenue": 76493.42958899999}, {"YearMonth": "2025-06", "PaymentProcessor": "CHEQUE", "orders": 4, "revenue": 330.840004}, {"YearMonth": "2025-06", "PaymentProcessor": "INVOICE", "orders": 12, "revenue": 0.0}, {"YearMonth": "2025-06", "PaymentProcessor": "PAYPAL", "orders": 439, "revenue": 17068.399942}, {"YearMonth": "2025-06", "PaymentProcessor": "STRIPE", "orders": 1889, "revenue": 66020.129573}, {"YearMonth": "2025-07", "PaymentProcessor": "INVOICE", "orders": 14, "revenue": 0.0}, {"YearMonth": "2025-07", "PaymentProcessor": "PAYPAL", "orders": 442, "revenue": 17776.449948}, {"YearMonth": "2025-07", "PaymentProcessor": "STRIPE", "orders": 2033, "revenue": 69712.58944899999}, {"YearMonth": "2025-08", "PaymentProcessor": "CHEQUE", "orders": 1, "revenue": 50.399998}, {"YearMonth": "2025-08", "PaymentProcessor": "INVOICE", "orders": 13, "revenue": 0.0}, {"YearMonth": "2025-08", "PaymentProcessor": "PAYPAL", "orders": 420, "revenue": 16737.179973}, {"YearMonth": "2025-08", "PaymentProcessor": "STRIPE", "orders": 2060, "revenue": 71041.059475}, {"YearMonth": "2025-09", "PaymentProcessor": "CHEQUE", "orders": 2, "revenue": 62.849998}, {"YearMonth": "2025-09", "PaymentProcessor": "INVOICE", "orders": 11, "revenue": 0.0}, {"YearMonth": "2025-09", "PaymentProcessor": "PAYPAL", "orders": 415, "revenue": 14537.169945}, {"YearMonth": "2025-09", "PaymentProcessor": "STRIPE", "orders": 1892, "revenue": 65244.190381}, {"YearMonth": "2025-10", "PaymentProcessor": "INVOICE", "orders": 13, "revenue": 0.0}, {"YearMonth": "2025-10", "PaymentProcessor": "PAYPAL", "orders": 420, "revenue": 16207.619964}, {"YearMonth": "2025-10", "PaymentProcessor": "STRIPE", "orders": 2127, "revenue": 73506.509483}, {"YearMonth": "2025-11", "PaymentProcessor": "INVOICE", "orders": 8, "revenue": 0.0}, {"YearMonth": "2025-11", "PaymentProcessor": "PAYPAL", "orders": 330, "revenue": 13165.889992999999}, {"YearMonth": "2025-11", "PaymentProcessor": "STRIPE", "orders": 1779, "revenue": 61631.489617}, {"YearMonth": "2025-12", "PaymentProcessor": "INVOICE", "orders": 13, "revenue": 0.0}, {"YearMonth": "2025-12", "PaymentProcessor": "PAYPAL", "orders": 322, "revenue": 12618.789956999999}, {"YearMonth": "2025-12", "PaymentProcessor": "STRIPE", "orders": 1634, "revenue": 54852.559642}, {"YearMonth": "2026-01", "PaymentProcessor": "INVOICE", "orders": 4, "revenue": 0.0}, {"YearMonth": "2026-01", "PaymentProcessor": "PAYPAL", "orders": 141, "revenue": 5756.339989}, {"YearMonth": "2026-01", "PaymentProcessor": "STRIPE", "orders": 743, "revenue": 27215.919819}], "countryMonthly": [{"YearMonth": "2005-11", "CustomerCountry": "GB", "orders": 2, "revenue": 37.849901}, {"YearMonth": "2005-12", "CustomerCountry": "GB", "orders": 1, "revenue": 17.9}, {"YearMonth": "2006-01", "CustomerCountry": "GB", "orders": 4, "revenue": 106.44969900000001}, {"YearMonth": "2006-02", "CustomerCountry": "GB", "orders": 5, "revenue": 121.100002}, {"YearMonth": "2006-03", "CustomerCountry": "DE", "orders": 1, "revenue": 36.65}, {"YearMonth": "2006-03", "CustomerCountry": "FR", "orders": 3, "revenue": 57.749999}, {"YearMonth": "2006-03", "CustomerCountry": "GB", "orders": 25, "revenue": 574.749403}, {"YearMonth": "2006-03", "CustomerCountry": "Other", "orders": 5, "revenue": 186.549702}, {"YearMonth": "2006-03", "CustomerCountry": "UN", "orders": 77, "revenue": 1428.6308999999999}, {"YearMonth": "2006-04", "CustomerCountry": "GB", "orders": 6, "revenue": 99.0499}, {"YearMonth": "2006-04", "CustomerCountry": "IE", "orders": 1, "revenue": 21.7499}, {"YearMonth": "2006-04", "CustomerCountry": "Other", "orders": 8, "revenue": 246.69980199999998}, {"YearMonth": "2006-04", "CustomerCountry": "UN", "orders": 156, "revenue": 2593.035206}, {"YearMonth": "2006-05", "CustomerCountry": "FR", "orders": 1, "revenue": 23.95}, {"YearMonth": "2006-05", "CustomerCountry": "GB", "orders": 6, "revenue": 123.996501}, {"YearMonth": "2006-05", "CustomerCountry": "Other", "orders": 4, "revenue": 88.7}, {"YearMonth": "2006-05", "CustomerCountry": "UN", "orders": 233, "revenue": 4081.389908}, {"YearMonth": "2006-06", "CustomerCountry": "BE", "orders": 1, "revenue": 8.45}, {"YearMonth": "2006-06", "CustomerCountry": "FR", "orders": 2, "revenue": 33.849999999999994}, {"YearMonth": "2006-06", "CustomerCountry": "GB", "orders": 13, "revenue": 279.900102}, {"YearMonth": "2006-06", "CustomerCountry": "Other", "orders": 7, "revenue": 299.400698}, {"YearMonth": "2006-06", "CustomerCountry": "UN", "orders": 242, "revenue": 4243.521122}, {"YearMonth": "2006-07", "CustomerCountry": "DE", "orders": 1, "revenue": 25.9}, {"YearMonth": "2006-07", "CustomerCountry": "DK", "orders": 1, "revenue": 44.850001}, {"YearMonth": "2006-07", "CustomerCountry": "ES", "orders": 2, "revenue": 22.8999}, {"YearMonth": "2006-07", "CustomerCountry": "FR", "orders": 2, "revenue": 60.7499}, {"YearMonth": "2006-07", "CustomerCountry": "GB", "orders": 139, "revenue": 2481.934109}, {"YearMonth": "2006-07", "CustomerCountry": "Other", "orders": 3, "revenue": 71.65}, {"YearMonth": "2006-07", "CustomerCountry": "UN", "orders": 154, "revenue": 2774.043004}, {"YearMonth": "2006-08", "CustomerCountry": "BE", "orders": 1, "revenue": 19.8999}, {"YearMonth": "2006-08", "CustomerCountry": "ES", "orders": 2, "revenue": 57.299999}, {"YearMonth": "2006-08", "CustomerCountry": "FR", "orders": 4, "revenue": 80.8999}, {"YearMonth": "2006-08", "CustomerCountry": "GB", "orders": 271, "revenue": 5358.100536}, {"YearMonth": "2006-08", "CustomerCountry": "IE", "orders": 3, "revenue": 102.5984}, {"YearMonth": "2006-08", "CustomerCountry": "IT", "orders": 1, "revenue": 9.9501}, {"YearMonth": "2006-08", "CustomerCountry": "NO", "orders": 1, "revenue": 11.95}, {"YearMonth": "2006-09", "CustomerCountry": "DE", "orders": 2, "revenue": 67.699998}, {"YearMonth": "2006-09", "CustomerCountry": "ES", "orders": 2, "revenue": 65.05000000000001}, {"YearMonth": "2006-09", "CustomerCountry": "FR", "orders": 2, "revenue": 47.913740000000004}, {"YearMonth": "2006-09", "CustomerCountry": "GB", "orders": 360, "revenue": 6574.224129}, {"YearMonth": "2006-09", "CustomerCountry": "IE", "orders": 2, "revenue": 64.019819}, {"YearMonth": "2006-09", "CustomerCountry": "Other", "orders": 1, "revenue": 9.95}, {"YearMonth": "2006-10", "CustomerCountry": "CH", "orders": 2, "revenue": 81.1999}, {"YearMonth": "2006-10", "CustomerCountry": "DE", "orders": 3, "revenue": 149.404901}, {"YearMonth": "2006-10", "CustomerCountry": "DK", "orders": 3, "revenue": 56.010001}, {"YearMonth": "2006-10", "CustomerCountry": "ES", "orders": 2, "revenue": 105.748503}, {"YearMonth": "2006-10", "CustomerCountry": "FR", "orders": 1, "revenue": 31.8486}, {"YearMonth": "2006-10", "CustomerCountry": "GB", "orders": 458, "revenue": 8246.993156999999}, {"YearMonth": "2006-10", "CustomerCountry": "NL", "orders": 1, "revenue": 22.35}, {"YearMonth": "2006-10", "CustomerCountry": "Other", "orders": 2, "revenue": 71.1499}, {"YearMonth": "2006-10", "CustomerCountry": "PT", "orders": 1, "revenue": 10.9499}, {"YearMonth": "2006-11", "CustomerCountry": "DE", "orders": 1, "revenue": 20.9}, {"YearMonth": "2006-11", "CustomerCountry": "DK", "orders": 1, "revenue": 19.95}, {"YearMonth": "2006-11", "CustomerCountry": "ES", "orders": 1, "revenue": 36.85}, {"YearMonth": "2006-11", "CustomerCountry": "FR", "orders": 1, "revenue": 10.95}, {"YearMonth": "2006-11", "CustomerCountry": "GB", "orders": 441, "revenue": 7823.7075429999995}, {"YearMonth": "2006-11", "CustomerCountry": "IE", "orders": 3, "revenue": 46.75}, {"YearMonth": "2006-11", "CustomerCountry": "IT", "orders": 2, "revenue": 51.7997}, {"YearMonth": "2006-11", "CustomerCountry": "NL", "orders": 1, "revenue": 12.95}, {"YearMonth": "2006-11", "CustomerCountry": "NO", "orders": 1, "revenue": 12.95}, {"YearMonth": "2006-12", "CustomerCountry": "DE", "orders": 1, "revenue": 15.95}, {"YearMonth": "2006-12", "CustomerCountry": "ES", "orders": 1, "revenue": 17.9}, {"YearMonth": "2006-12", "CustomerCountry": "FR", "orders": 3, "revenue": 69.700001}, {"YearMonth": "2006-12", "CustomerCountry": "GB", "orders": 450, "revenue": 8556.04986}, {"YearMonth": "2006-12", "CustomerCountry": "IE", "orders": 1, "revenue": 30.8999}, {"YearMonth": "2006-12", "CustomerCountry": "PT", "orders": 1, "revenue": 11.9501}, {"YearMonth": "2007-01", "CustomerCountry": "DK", "orders": 5, "revenue": 248.09990499999998}, {"YearMonth": "2007-01", "CustomerCountry": "ES", "orders": 4, "revenue": 209.64980200000002}, {"YearMonth": "2007-01", "CustomerCountry": "FR", "orders": 1, "revenue": 12.95}, {"YearMonth": "2007-01", "CustomerCountry": "GB", "orders": 626, "revenue": 10957.635608}, {"YearMonth": "2007-01", "CustomerCountry": "GR", "orders": 2, "revenue": 35.9003}, {"YearMonth": "2007-01", "CustomerCountry": "PT", "orders": 1, "revenue": 21.899801}, {"YearMonth": "2007-02", "CustomerCountry": "DK", "orders": 7, "revenue": 299.669704}, {"YearMonth": "2007-02", "CustomerCountry": "ES", "orders": 3, "revenue": 114.750299}, {"YearMonth": "2007-02", "CustomerCountry": "FR", "orders": 2, "revenue": 48.8}, {"YearMonth": "2007-02", "CustomerCountry": "GB", "orders": 646, "revenue": 11491.156189}, {"YearMonth": "2007-02", "CustomerCountry": "GR", "orders": 1, "revenue": 23.9502}, {"YearMonth": "2007-02", "CustomerCountry": "IE", "orders": 1, "revenue": 238.000004}, {"YearMonth": "2007-03", "CustomerCountry": "CH", "orders": 1, "revenue": 167.593597}, {"YearMonth": "2007-03", "CustomerCountry": "DE", "orders": 3, "revenue": 45.8499}, {"YearMonth": "2007-03", "CustomerCountry": "DK", "orders": 1, "revenue": 36.85}, {"YearMonth": "2007-03", "CustomerCountry": "ES", "orders": 5, "revenue": 136.347301}, {"YearMonth": "2007-03", "CustomerCountry": "FR", "orders": 1, "revenue": 20.9}, {"YearMonth": "2007-03", "CustomerCountry": "GB", "orders": 538, "revenue": 9904.994845}, {"YearMonth": "2007-03", "CustomerCountry": "IE", "orders": 5, "revenue": 423.451801}, {"YearMonth": "2007-03", "CustomerCountry": "PT", "orders": 1, "revenue": 47.25}, {"YearMonth": "2007-04", "CustomerCountry": "DE", "orders": 1, "revenue": 21.950001}, {"YearMonth": "2007-04", "CustomerCountry": "DK", "orders": 3, "revenue": 84.6502}, {"YearMonth": "2007-04", "CustomerCountry": "ES", "orders": 7, "revenue": 230.997701}, {"YearMonth": "2007-04", "CustomerCountry": "FR", "orders": 6, "revenue": 122.998598}, {"YearMonth": "2007-04", "CustomerCountry": "GB", "orders": 431, "revenue": 8265.525534}, {"YearMonth": "2007-04", "CustomerCountry": "IE", "orders": 2, "revenue": 66.698501}, {"YearMonth": "2007-04", "CustomerCountry": "NL", "orders": 1, "revenue": 24.8994}, {"YearMonth": "2007-04", "CustomerCountry": "Other", "orders": 1, "revenue": 10.95}, {"YearMonth": "2007-05", "CustomerCountry": "DE", "orders": 1, "revenue": 24.35}, {"YearMonth": "2007-05", "CustomerCountry": "DK", "orders": 3, "revenue": 209.9998}, {"YearMonth": "2007-05", "CustomerCountry": "ES", "orders": 3, "revenue": 89.7598}, {"YearMonth": "2007-05", "CustomerCountry": "FR", "orders": 4, "revenue": 90.701199}, {"YearMonth": "2007-05", "CustomerCountry": "GB", "orders": 500, "revenue": 9382.118161}, {"YearMonth": "2007-05", "CustomerCountry": "IE", "orders": 1, "revenue": 16.9}, {"YearMonth": "2007-05", "CustomerCountry": "Other", "orders": 1, "revenue": 17.95}, {"YearMonth": "2007-05", "CustomerCountry": "PT", "orders": 2, "revenue": 28.849899999999998}, {"YearMonth": "2007-06", "CustomerCountry": "DK", "orders": 2, "revenue": 39.849999999999994}, {"YearMonth": "2007-06", "CustomerCountry": "ES", "orders": 7, "revenue": 233.59910399999998}, {"YearMonth": "2007-06", "CustomerCountry": "FR", "orders": 9, "revenue": 261.094202}, {"YearMonth": "2007-06", "CustomerCountry": "GB", "orders": 510, "revenue": 9904.841746}, {"YearMonth": "2007-06", "CustomerCountry": "IE", "orders": 3, "revenue": 95.295901}, {"YearMonth": "2007-06", "CustomerCountry": "IT", "orders": 1, "revenue": 21.850001}, {"YearMonth": "2007-06", "CustomerCountry": "XX", "orders": 1, "revenue": 23.9502}, {"YearMonth": "2007-07", "CustomerCountry": "BE", "orders": 1, "revenue": 25.399399}, {"YearMonth": "2007-07", "CustomerCountry": "DE", "orders": 1, "revenue": 32.892001}, {"YearMonth": "2007-07", "CustomerCountry": "DK", "orders": 1, "revenue": 17.95}, {"YearMonth": "2007-07", "CustomerCountry": "ES", "orders": 3, "revenue": 49.300101}, {"YearMonth": "2007-07", "CustomerCountry": "FR", "orders": 2, "revenue": 51.600101}, {"YearMonth": "2007-07", "CustomerCountry": "GB", "orders": 514, "revenue": 10785.908834}, {"YearMonth": "2007-07", "CustomerCountry": "Other", "orders": 1, "revenue": 9.95}, {"YearMonth": "2007-07", "CustomerCountry": "XX", "orders": 1, "revenue": 45.502198}, {"YearMonth": "2007-08", "CustomerCountry": "DK", "orders": 4, "revenue": 204.704902}, {"YearMonth": "2007-08", "CustomerCountry": "ES", "orders": 4, "revenue": 111.397299}, {"YearMonth": "2007-08", "CustomerCountry": "FR", "orders": 10, "revenue": 261.806802}, {"YearMonth": "2007-08", "CustomerCountry": "GB", "orders": 468, "revenue": 9169.401633}, {"YearMonth": "2007-08", "CustomerCountry": "IE", "orders": 3, "revenue": 147.610411}, {"YearMonth": "2007-08", "CustomerCountry": "IT", "orders": 1, "revenue": 57.749501}, {"YearMonth": "2007-08", "CustomerCountry": "PT", "orders": 1, "revenue": 73.2493}, {"YearMonth": "2007-09", "CustomerCountry": "DK", "orders": 3, "revenue": 120.602601}, {"YearMonth": "2007-09", "CustomerCountry": "ES", "orders": 3, "revenue": 77.65}, {"YearMonth": "2007-09", "CustomerCountry": "FR", "orders": 4, "revenue": 86.804498}, {"YearMonth": "2007-09", "CustomerCountry": "GB", "orders": 480, "revenue": 9241.151976}, {"YearMonth": "2007-09", "CustomerCountry": "Other", "orders": 2, "revenue": 113.549701}, {"YearMonth": "2007-09", "CustomerCountry": "PT", "orders": 1, "revenue": 31.899099}, {"YearMonth": "2007-10", "CustomerCountry": "DK", "orders": 4, "revenue": 116.09990099999999}, {"YearMonth": "2007-10", "CustomerCountry": "ES", "orders": 7, "revenue": 286.849737}, {"YearMonth": "2007-10", "CustomerCountry": "FR", "orders": 3, "revenue": 91.199601}, {"YearMonth": "2007-10", "CustomerCountry": "GB", "orders": 438, "revenue": 10139.603301}, {"YearMonth": "2007-10", "CustomerCountry": "GR", "orders": 2, "revenue": 39.349601}, {"YearMonth": "2007-10", "CustomerCountry": "IE", "orders": 1, "revenue": 11.9}, {"YearMonth": "2007-10", "CustomerCountry": "Other", "orders": 1, "revenue": 14.9497}, {"YearMonth": "2007-11", "CustomerCountry": "CY", "orders": 1, "revenue": 55.847799}, {"YearMonth": "2007-11", "CustomerCountry": "DE", "orders": 1, "revenue": 11.95}, {"YearMonth": "2007-11", "CustomerCountry": "DK", "orders": 2, "revenue": 31.849901}, {"YearMonth": "2007-11", "CustomerCountry": "ES", "orders": 3, "revenue": 122.95020199999999}, {"YearMonth": "2007-11", "CustomerCountry": "FR", "orders": 4, "revenue": 90.399801}, {"YearMonth": "2007-11", "CustomerCountry": "GB", "orders": 452, "revenue": 9204.239481999999}, {"YearMonth": "2007-11", "CustomerCountry": "GR", "orders": 1, "revenue": 24.899801}, {"YearMonth": "2007-11", "CustomerCountry": "IT", "orders": 1, "revenue": 20.9}, {"YearMonth": "2007-11", "CustomerCountry": "NL", "orders": 1, "revenue": 21.950001}, {"YearMonth": "2007-11", "CustomerCountry": "PT", "orders": 1, "revenue": 34.897799}, {"YearMonth": "2007-12", "CustomerCountry": "DK", "orders": 3, "revenue": 86.75380200000001}, {"YearMonth": "2007-12", "CustomerCountry": "ES", "orders": 4, "revenue": 49.7994}, {"YearMonth": "2007-12", "CustomerCountry": "FR", "orders": 4, "revenue": 92.699798}, {"YearMonth": "2007-12", "CustomerCountry": "GB", "orders": 361, "revenue": 7407.691646}, {"YearMonth": "2007-12", "CustomerCountry": "IE", "orders": 1, "revenue": 16.9}, {"YearMonth": "2007-12", "CustomerCountry": "Other", "orders": 1, "revenue": 52.902201}, {"YearMonth": "2008-01", "CustomerCountry": "BE", "orders": 1, "revenue": 10.75}, {"YearMonth": "2008-01", "CustomerCountry": "DK", "orders": 1, "revenue": 37.8499}, {"YearMonth": "2008-01", "CustomerCountry": "ES", "orders": 10, "revenue": 296.889698}, {"YearMonth": "2008-01", "CustomerCountry": "FR", "orders": 5, "revenue": 181.307102}, {"YearMonth": "2008-01", "CustomerCountry": "GB", "orders": 629, "revenue": 12513.555416}, {"YearMonth": "2008-01", "CustomerCountry": "GR", "orders": 2, "revenue": 40.349700999999996}, {"YearMonth": "2008-01", "CustomerCountry": "IE", "orders": 2, "revenue": 80.104402}, {"YearMonth": "2008-01", "CustomerCountry": "NO", "orders": 2, "revenue": 50.852101000000005}, {"YearMonth": "2008-01", "CustomerCountry": "XX", "orders": 2, "revenue": 29.899500000000003}, {"YearMonth": "2008-02", "CustomerCountry": "DE", "orders": 2, "revenue": 76.79560000000001}, {"YearMonth": "2008-02", "CustomerCountry": "DK", "orders": 3, "revenue": 126.04729999999999}, {"YearMonth": "2008-02", "CustomerCountry": "ES", "orders": 4, "revenue": 144.5478}, {"YearMonth": "2008-02", "CustomerCountry": "FR", "orders": 5, "revenue": 112.1994}, {"YearMonth": "2008-02", "CustomerCountry": "GB", "orders": 495, "revenue": 10156.898579}, {"YearMonth": "2008-02", "CustomerCountry": "GR", "orders": 1, "revenue": 28.900001}, {"YearMonth": "2008-02", "CustomerCountry": "IE", "orders": 4, "revenue": 149.048701}, {"YearMonth": "2008-02", "CustomerCountry": "IT", "orders": 1, "revenue": 13.9499}, {"YearMonth": "2008-02", "CustomerCountry": "NO", "orders": 2, "revenue": 64.749999}, {"YearMonth": "2008-02", "CustomerCountry": "Other", "orders": 2, "revenue": 67.249999}, {"YearMonth": "2008-02", "CustomerCountry": "PT", "orders": 2, "revenue": 91.654001}, {"YearMonth": "2008-03", "CustomerCountry": "DE", "orders": 1, "revenue": 26.899901}, {"YearMonth": "2008-03", "CustomerCountry": "DK", "orders": 5, "revenue": 100.700901}, {"YearMonth": "2008-03", "CustomerCountry": "ES", "orders": 4, "revenue": 212.9044}, {"YearMonth": "2008-03", "CustomerCountry": "FR", "orders": 6, "revenue": 217.399598}, {"YearMonth": "2008-03", "CustomerCountry": "GB", "orders": 601, "revenue": 11930.392699}, {"YearMonth": "2008-03", "CustomerCountry": "GR", "orders": 1, "revenue": 23.899701}, {"YearMonth": "2008-03", "CustomerCountry": "IE", "orders": 1, "revenue": 27.849999}, {"YearMonth": "2008-03", "CustomerCountry": "IT", "orders": 1, "revenue": 12.95}, {"YearMonth": "2008-03", "CustomerCountry": "MT", "orders": 1, "revenue": 28.900001}, {"YearMonth": "2008-03", "CustomerCountry": "NO", "orders": 3, "revenue": 56.846000000000004}, {"YearMonth": "2008-03", "CustomerCountry": "XX", "orders": 1, "revenue": 29.8485}, {"YearMonth": "2008-04", "CustomerCountry": "DE", "orders": 1, "revenue": 20.9}, {"YearMonth": "2008-04", "CustomerCountry": "DK", "orders": 2, "revenue": 46.850801000000004}, {"YearMonth": "2008-04", "CustomerCountry": "ES", "orders": 4, "revenue": 84.748701}, {"YearMonth": "2008-04", "CustomerCountry": "FR", "orders": 2, "revenue": 46.549599}, {"YearMonth": "2008-04", "CustomerCountry": "GB", "orders": 553, "revenue": 10410.158357}, {"YearMonth": "2008-04", "CustomerCountry": "GR", "orders": 1, "revenue": 12.9499}, {"YearMonth": "2008-04", "CustomerCountry": "NO", "orders": 1, "revenue": 15.9485}, {"YearMonth": "2008-04", "CustomerCountry": "PT", "orders": 1, "revenue": 22.947801}, {"YearMonth": "2008-05", "CustomerCountry": "BE", "orders": 1, "revenue": 21.650001}, {"YearMonth": "2008-05", "CustomerCountry": "CH", "orders": 1, "revenue": 21.950001}, {"YearMonth": "2008-05", "CustomerCountry": "DE", "orders": 1, "revenue": 8.45}, {"YearMonth": "2008-05", "CustomerCountry": "DK", "orders": 2, "revenue": 89.700003}, {"YearMonth": "2008-05", "CustomerCountry": "ES", "orders": 3, "revenue": 104.695001}, {"YearMonth": "2008-05", "CustomerCountry": "FR", "orders": 2, "revenue": 54.8497}, {"YearMonth": "2008-05", "CustomerCountry": "GB", "orders": 591, "revenue": 11456.592674}, {"YearMonth": "2008-05", "CustomerCountry": "GR", "orders": 1, "revenue": 9.75}, {"YearMonth": "2008-05", "CustomerCountry": "IE", "orders": 3, "revenue": 81.20010099999999}, {"YearMonth": "2008-05", "CustomerCountry": "IT", "orders": 1, "revenue": 62.791999}, {"YearMonth": "2008-05", "CustomerCountry": "NO", "orders": 3, "revenue": 39.849999999999994}, {"YearMonth": "2008-05", "CustomerCountry": "Other", "orders": 2, "revenue": 56.304399}, {"YearMonth": "2008-05", "CustomerCountry": "PT", "orders": 1, "revenue": 32.9}, {"YearMonth": "2008-05", "CustomerCountry": "XX", "orders": 1, "revenue": 12.95}, {"YearMonth": "2008-06", "CustomerCountry": "BE", "orders": 1, "revenue": 24.899801}, {"YearMonth": "2008-06", "CustomerCountry": "DK", "orders": 6, "revenue": 361.548501}, {"YearMonth": "2008-06", "CustomerCountry": "ES", "orders": 6, "revenue": 142.300998}, {"YearMonth": "2008-06", "CustomerCountry": "FR", "orders": 7, "revenue": 193.2672}, {"YearMonth": "2008-06", "CustomerCountry": "GB", "orders": 847, "revenue": 16448.411744}, {"YearMonth": "2008-06", "CustomerCountry": "GR", "orders": 1, "revenue": 24.899801}, {"YearMonth": "2008-06", "CustomerCountry": "IE", "orders": 1, "revenue": 25.85}, {"YearMonth": "2008-06", "CustomerCountry": "NO", "orders": 4, "revenue": 206.34979700000002}, {"YearMonth": "2008-06", "CustomerCountry": "Other", "orders": 2, "revenue": 19.4}, {"YearMonth": "2008-06", "CustomerCountry": "XX", "orders": 2, "revenue": 37.799999}, {"YearMonth": "2008-07", "CustomerCountry": "BE", "orders": 1, "revenue": 10.9501}, {"YearMonth": "2008-07", "CustomerCountry": "CY", "orders": 1, "revenue": 21.950001}, {"YearMonth": "2008-07", "CustomerCountry": "DE", "orders": 1, "revenue": 21.950001}, {"YearMonth": "2008-07", "CustomerCountry": "DK", "orders": 2, "revenue": 69.099999}, {"YearMonth": "2008-07", "CustomerCountry": "ES", "orders": 7, "revenue": 150.112351}, {"YearMonth": "2008-07", "CustomerCountry": "FR", "orders": 6, "revenue": 132.704901}, {"YearMonth": "2008-07", "CustomerCountry": "GB", "orders": 802, "revenue": 15222.46168}, {"YearMonth": "2008-07", "CustomerCountry": "IE", "orders": 3, "revenue": 83.750001}, {"YearMonth": "2008-07", "CustomerCountry": "NL", "orders": 1, "revenue": 21.950001}, {"YearMonth": "2008-07", "CustomerCountry": "NO", "orders": 6, "revenue": 196.13444299999998}, {"YearMonth": "2008-07", "CustomerCountry": "Other", "orders": 1, "revenue": 21.950001}, {"YearMonth": "2008-07", "CustomerCountry": "PT", "orders": 2, "revenue": 85.540681}, {"YearMonth": "2008-08", "CustomerCountry": "DK", "orders": 6, "revenue": 198.803602}, {"YearMonth": "2008-08", "CustomerCountry": "ES", "orders": 9, "revenue": 219.555203}, {"YearMonth": "2008-08", "CustomerCountry": "FR", "orders": 4, "revenue": 87.5023}, {"YearMonth": "2008-08", "CustomerCountry": "GB", "orders": 1108, "revenue": 19889.448949999998}, {"YearMonth": "2008-08", "CustomerCountry": "GR", "orders": 2, "revenue": 55.75}, {"YearMonth": "2008-08", "CustomerCountry": "IE", "orders": 7, "revenue": 218.189997}, {"YearMonth": "2008-08", "CustomerCountry": "IT", "orders": 2, "revenue": 226.999999}, {"YearMonth": "2008-08", "CustomerCountry": "NO", "orders": 4, "revenue": 155.45229999999998}, {"YearMonth": "2008-08", "CustomerCountry": "Other", "orders": 4, "revenue": 92.00009800000001}, {"YearMonth": "2008-08", "CustomerCountry": "PT", "orders": 2, "revenue": 57.80459999999999}, {"YearMonth": "2008-09", "CustomerCountry": "CH", "orders": 1, "revenue": 40.900002}, {"YearMonth": "2008-09", "CustomerCountry": "CY", "orders": 1, "revenue": 16.95}, {"YearMonth": "2008-09", "CustomerCountry": "DE", "orders": 1, "revenue": 11.95}, {"YearMonth": "2008-09", "CustomerCountry": "DK", "orders": 2, "revenue": 54.8}, {"YearMonth": "2008-09", "CustomerCountry": "ES", "orders": 5, "revenue": 159.999402}, {"YearMonth": "2008-09", "CustomerCountry": "FI", "orders": 1, "revenue": 32.9}, {"YearMonth": "2008-09", "CustomerCountry": "FR", "orders": 5, "revenue": 72.15010099999999}, {"YearMonth": "2008-09", "CustomerCountry": "GB", "orders": 917, "revenue": 17927.932333}, {"YearMonth": "2008-09", "CustomerCountry": "GR", "orders": 1, "revenue": 40.852}, {"YearMonth": "2008-09", "CustomerCountry": "IE", "orders": 18, "revenue": 651.129203}, {"YearMonth": "2008-09", "CustomerCountry": "NO", "orders": 6, "revenue": 192.400199}, {"YearMonth": "2008-09", "CustomerCountry": "Other", "orders": 3, "revenue": 46.79849900000001}, {"YearMonth": "2008-09", "CustomerCountry": "PT", "orders": 3, "revenue": 45.750001}, {"YearMonth": "2008-10", "CustomerCountry": "BE", "orders": 1, "revenue": 11.95}, {"YearMonth": "2008-10", "CustomerCountry": "DE", "orders": 2, "revenue": 49.84989899999999}, {"YearMonth": "2008-10", "CustomerCountry": "DK", "orders": 2, "revenue": 37.849699}, {"YearMonth": "2008-10", "CustomerCountry": "ES", "orders": 5, "revenue": 206.396802}, {"YearMonth": "2008-10", "CustomerCountry": "FR", "orders": 9, "revenue": 182.903204}, {"YearMonth": "2008-10", "CustomerCountry": "GB", "orders": 1166, "revenue": 23568.353743}, {"YearMonth": "2008-10", "CustomerCountry": "GR", "orders": 1, "revenue": 19.9523}, {"YearMonth": "2008-10", "CustomerCountry": "IE", "orders": 15, "revenue": 296.500003}, {"YearMonth": "2008-10", "CustomerCountry": "IT", "orders": 2, "revenue": 100.197903}, {"YearMonth": "2008-10", "CustomerCountry": "NL", "orders": 1, "revenue": 32.950001}, {"YearMonth": "2008-10", "CustomerCountry": "NO", "orders": 3, "revenue": 58.8}, {"YearMonth": "2008-10", "CustomerCountry": "Other", "orders": 8, "revenue": 176.700401}, {"YearMonth": "2008-10", "CustomerCountry": "PT", "orders": 1, "revenue": 40.845199}, {"YearMonth": "2008-10", "CustomerCountry": "XX", "orders": 1, "revenue": 29.850299}, {"YearMonth": "2008-11", "CustomerCountry": "BE", "orders": 1, "revenue": 20.9}, {"YearMonth": "2008-11", "CustomerCountry": "DE", "orders": 3, "revenue": 124.69999899999999}, {"YearMonth": "2008-11", "CustomerCountry": "DK", "orders": 3, "revenue": 77.75119699999999}, {"YearMonth": "2008-11", "CustomerCountry": "ES", "orders": 8, "revenue": 225.680002}, {"YearMonth": "2008-11", "CustomerCountry": "FR", "orders": 11, "revenue": 334.279399}, {"YearMonth": "2008-11", "CustomerCountry": "GB", "orders": 1191, "revenue": 23834.205627}, {"YearMonth": "2008-11", "CustomerCountry": "GR", "orders": 2, "revenue": 34.8501}, {"YearMonth": "2008-11", "CustomerCountry": "IE", "orders": 23, "revenue": 586.898498}, {"YearMonth": "2008-11", "CustomerCountry": "IT", "orders": 1, "revenue": 28.899699}, {"YearMonth": "2008-11", "CustomerCountry": "MT", "orders": 1, "revenue": 24.9}, {"YearMonth": "2008-11", "CustomerCountry": "NO", "orders": 1, "revenue": 32.9}, {"YearMonth": "2008-11", "CustomerCountry": "Other", "orders": 2, "revenue": 49.900001}, {"YearMonth": "2008-11", "CustomerCountry": "PT", "orders": 1, "revenue": 64.639999}, {"YearMonth": "2008-12", "CustomerCountry": "BE", "orders": 1, "revenue": 61.625602}, {"YearMonth": "2008-12", "CustomerCountry": "CH", "orders": 2, "revenue": 25.4766}, {"YearMonth": "2008-12", "CustomerCountry": "CY", "orders": 1, "revenue": 17.6319}, {"YearMonth": "2008-12", "CustomerCountry": "DK", "orders": 10, "revenue": 266.019603}, {"YearMonth": "2008-12", "CustomerCountry": "ES", "orders": 7, "revenue": 124.111201}, {"YearMonth": "2008-12", "CustomerCountry": "FI", "orders": 2, "revenue": 62.767201}, {"YearMonth": "2008-12", "CustomerCountry": "FR", "orders": 7, "revenue": 171.3816}, {"YearMonth": "2008-12", "CustomerCountry": "GB", "orders": 910, "revenue": 18240.681215}, {"YearMonth": "2008-12", "CustomerCountry": "GR", "orders": 1, "revenue": 60.588}, {"YearMonth": "2008-12", "CustomerCountry": "IE", "orders": 27, "revenue": 590.328001}, {"YearMonth": "2008-12", "CustomerCountry": "MT", "orders": 1, "revenue": 22.7702}, {"YearMonth": "2008-12", "CustomerCountry": "NL", "orders": 4, "revenue": 153.719099}, {"YearMonth": "2008-12", "CustomerCountry": "NO", "orders": 7, "revenue": 259.120703}, {"YearMonth": "2008-12", "CustomerCountry": "Other", "orders": 3, "revenue": 82.296501}, {"YearMonth": "2008-12", "CustomerCountry": "PT", "orders": 4, "revenue": 164.681802}, {"YearMonth": "2008-12", "CustomerCountry": "XX", "orders": 1, "revenue": 11.7596}, {"YearMonth": "2009-01", "CustomerCountry": "BE", "orders": 4, "revenue": 121.1767}, {"YearMonth": "2009-01", "CustomerCountry": "CH", "orders": 6, "revenue": 185.14679900000002}, {"YearMonth": "2009-01", "CustomerCountry": "CY", "orders": 2, "revenue": 42.849098999999995}, {"YearMonth": "2009-01", "CustomerCountry": "DE", "orders": 13, "revenue": 343.525306}, {"YearMonth": "2009-01", "CustomerCountry": "DK", "orders": 38, "revenue": 1084.076962}, {"YearMonth": "2009-01", "CustomerCountry": "ES", "orders": 30, "revenue": 889.053206}, {"YearMonth": "2009-01", "CustomerCountry": "FI", "orders": 3, "revenue": 72.32340099999999}, {"YearMonth": "2009-01", "CustomerCountry": "FR", "orders": 24, "revenue": 554.834501}, {"YearMonth": "2009-01", "CustomerCountry": "GB", "orders": 1453, "revenue": 29096.523071}, {"YearMonth": "2009-01", "CustomerCountry": "GR", "orders": 1, "revenue": 80.808499}, {"YearMonth": "2009-01", "CustomerCountry": "IE", "orders": 44, "revenue": 1248.980398}, {"YearMonth": "2009-01", "CustomerCountry": "IT", "orders": 7, "revenue": 246.02650799999998}, {"YearMonth": "2009-01", "CustomerCountry": "NL", "orders": 9, "revenue": 350.938306}, {"YearMonth": "2009-01", "CustomerCountry": "NO", "orders": 14, "revenue": 321.819705}, {"YearMonth": "2009-01", "CustomerCountry": "Other", "orders": 7, "revenue": 195.7509}, {"YearMonth": "2009-01", "CustomerCountry": "PT", "orders": 13, "revenue": 263.666204}, {"YearMonth": "2009-02", "CustomerCountry": "BE", "orders": 4, "revenue": 180.832399}, {"YearMonth": "2009-02", "CustomerCountry": "CH", "orders": 8, "revenue": 170.7499}, {"YearMonth": "2009-02", "CustomerCountry": "CY", "orders": 1, "revenue": 71.359199}, {"YearMonth": "2009-02", "CustomerCountry": "DE", "orders": 18, "revenue": 720.881304}, {"YearMonth": "2009-02", "CustomerCountry": "DK", "orders": 18, "revenue": 561.713599}, {"YearMonth": "2009-02", "CustomerCountry": "ES", "orders": 19, "revenue": 576.5472}, {"YearMonth": "2009-02", "CustomerCountry": "FR", "orders": 18, "revenue": 426.479002}, {"YearMonth": "2009-02", "CustomerCountry": "GB", "orders": 1314, "revenue": 27710.449592}, {"YearMonth": "2009-02", "CustomerCountry": "GR", "orders": 2, "revenue": 108.37439800000001}, {"YearMonth": "2009-02", "CustomerCountry": "IE", "orders": 48, "revenue": 1318.976504}, {"YearMonth": "2009-02", "CustomerCountry": "IT", "orders": 2, "revenue": 60.465899}, {"YearMonth": "2009-02", "CustomerCountry": "MT", "orders": 2, "revenue": 45.002}, {"YearMonth": "2009-02", "CustomerCountry": "NL", "orders": 6, "revenue": 186.820201}, {"YearMonth": "2009-02", "CustomerCountry": "NO", "orders": 4, "revenue": 60.0064}, {"YearMonth": "2009-02", "CustomerCountry": "Other", "orders": 13, "revenue": 481.190302}, {"YearMonth": "2009-02", "CustomerCountry": "PT", "orders": 9, "revenue": 195.050705}, {"YearMonth": "2009-02", "CustomerCountry": "XX", "orders": 1, "revenue": 24.482}, {"YearMonth": "2009-03", "CustomerCountry": "BE", "orders": 4, "revenue": 109.040601}, {"YearMonth": "2009-03", "CustomerCountry": "CH", "orders": 3, "revenue": 102.693201}, {"YearMonth": "2009-03", "CustomerCountry": "CY", "orders": 3, "revenue": 57.202201}, {"YearMonth": "2009-03", "CustomerCountry": "DE", "orders": 15, "revenue": 682.335003}, {"YearMonth": "2009-03", "CustomerCountry": "DK", "orders": 15, "revenue": 565.187597}, {"YearMonth": "2009-03", "CustomerCountry": "ES", "orders": 30, "revenue": 869.4857049999999}, {"YearMonth": "2009-03", "CustomerCountry": "FI", "orders": 1, "revenue": 14.6957}, {"YearMonth": "2009-03", "CustomerCountry": "FR", "orders": 33, "revenue": 992.130448}, {"YearMonth": "2009-03", "CustomerCountry": "GB", "orders": 1534, "revenue": 31485.829438}, {"YearMonth": "2009-03", "CustomerCountry": "GR", "orders": 3, "revenue": 89.793603}, {"YearMonth": "2009-03", "CustomerCountry": "IE", "orders": 47, "revenue": 1220.781911}, {"YearMonth": "2009-03", "CustomerCountry": "IT", "orders": 9, "revenue": 311.839404}, {"YearMonth": "2009-03", "CustomerCountry": "MT", "orders": 3, "revenue": 101.293702}, {"YearMonth": "2009-03", "CustomerCountry": "NL", "orders": 1, "revenue": 19.5893}, {"YearMonth": "2009-03", "CustomerCountry": "NO", "orders": 3, "revenue": 55.832102}, {"YearMonth": "2009-03", "CustomerCountry": "Other", "orders": 6, "revenue": 168.43}, {"YearMonth": "2009-03", "CustomerCountry": "PT", "orders": 15, "revenue": 390.029401}, {"YearMonth": "2009-04", "CustomerCountry": "BE", "orders": 2, "revenue": 50.473201}, {"YearMonth": "2009-04", "CustomerCountry": "CH", "orders": 7, "revenue": 263.224804}, {"YearMonth": "2009-04", "CustomerCountry": "CY", "orders": 4, "revenue": 74.68719999999999}, {"YearMonth": "2009-04", "CustomerCountry": "DE", "orders": 7, "revenue": 243.43530099999998}, {"YearMonth": "2009-04", "CustomerCountry": "DK", "orders": 5, "revenue": 189.703301}, {"YearMonth": "2009-04", "CustomerCountry": "ES", "orders": 17, "revenue": 615.489499}, {"YearMonth": "2009-04", "CustomerCountry": "FI", "orders": 1, "revenue": 12.7383}, {"YearMonth": "2009-04", "CustomerCountry": "FR", "orders": 26, "revenue": 673.173799}, {"YearMonth": "2009-04", "CustomerCountry": "GB", "orders": 1543, "revenue": 32733.061317}, {"YearMonth": "2009-04", "CustomerCountry": "GR", "orders": 2, "revenue": 43.085001}, {"YearMonth": "2009-04", "CustomerCountry": "IE", "orders": 57, "revenue": 1471.6656}, {"YearMonth": "2009-04", "CustomerCountry": "IT", "orders": 3, "revenue": 195.251299}, {"YearMonth": "2009-04", "CustomerCountry": "MT", "orders": 1, "revenue": 29.3765}, {"YearMonth": "2009-04", "CustomerCountry": "NO", "orders": 6, "revenue": 152.329899}, {"YearMonth": "2009-04", "CustomerCountry": "Other", "orders": 5, "revenue": 148.231903}, {"YearMonth": "2009-04", "CustomerCountry": "PT", "orders": 11, "revenue": 399.334691}, {"YearMonth": "2009-05", "CustomerCountry": "BE", "orders": 7, "revenue": 167.570371}, {"YearMonth": "2009-05", "CustomerCountry": "CH", "orders": 2, "revenue": 33.349001}, {"YearMonth": "2009-05", "CustomerCountry": "CY", "orders": 3, "revenue": 109.117299}, {"YearMonth": "2009-05", "CustomerCountry": "DE", "orders": 5, "revenue": 166.29873099999998}, {"YearMonth": "2009-05", "CustomerCountry": "DK", "orders": 18, "revenue": 673.948543}, {"YearMonth": "2009-05", "CustomerCountry": "ES", "orders": 22, "revenue": 781.275982}, {"YearMonth": "2009-05", "CustomerCountry": "FR", "orders": 20, "revenue": 546.886593}, {"YearMonth": "2009-05", "CustomerCountry": "GB", "orders": 1853, "revenue": 39050.119056}, {"YearMonth": "2009-05", "CustomerCountry": "GR", "orders": 4, "revenue": 379.219645}, {"YearMonth": "2009-05", "CustomerCountry": "IE", "orders": 54, "revenue": 1618.03121}, {"YearMonth": "2009-05", "CustomerCountry": "IT", "orders": 6, "revenue": 220.720873}, {"YearMonth": "2009-05", "CustomerCountry": "MT", "orders": 1, "revenue": 19.6107}, {"YearMonth": "2009-05", "CustomerCountry": "NL", "orders": 1, "revenue": 23.281001}, {"YearMonth": "2009-05", "CustomerCountry": "NO", "orders": 4, "revenue": 90.7256}, {"YearMonth": "2009-05", "CustomerCountry": "Other", "orders": 8, "revenue": 342.672997}, {"YearMonth": "2009-05", "CustomerCountry": "PT", "orders": 6, "revenue": 175.483298}, {"YearMonth": "2009-05", "CustomerCountry": "XX", "orders": 1, "revenue": 30.376599}, {"YearMonth": "2009-06", "CustomerCountry": "BE", "orders": 2, "revenue": 72.44900200000001}, {"YearMonth": "2009-06", "CustomerCountry": "CH", "orders": 3, "revenue": 131.1006}, {"YearMonth": "2009-06", "CustomerCountry": "CY", "orders": 1, "revenue": 29.2022}, {"YearMonth": "2009-06", "CustomerCountry": "DE", "orders": 4, "revenue": 110.544799}, {"YearMonth": "2009-06", "CustomerCountry": "DK", "orders": 7, "revenue": 235.67990500000002}, {"YearMonth": "2009-06", "CustomerCountry": "ES", "orders": 22, "revenue": 941.115708}, {"YearMonth": "2009-06", "CustomerCountry": "FI", "orders": 2, "revenue": 127.159504}, {"YearMonth": "2009-06", "CustomerCountry": "FR", "orders": 15, "revenue": 352.6922}, {"YearMonth": "2009-06", "CustomerCountry": "GB", "orders": 1674, "revenue": 35254.740728}, {"YearMonth": "2009-06", "CustomerCountry": "GR", "orders": 4, "revenue": 227.11550300000002}, {"YearMonth": "2009-06", "CustomerCountry": "IE", "orders": 49, "revenue": 1194.540145}, {"YearMonth": "2009-06", "CustomerCountry": "IT", "orders": 6, "revenue": 223.02270099999998}, {"YearMonth": "2009-06", "CustomerCountry": "MT", "orders": 2, "revenue": 57.856201}, {"YearMonth": "2009-06", "CustomerCountry": "NO", "orders": 4, "revenue": 94.83619999999999}, {"YearMonth": "2009-06", "CustomerCountry": "Other", "orders": 2, "revenue": 103.134901}, {"YearMonth": "2009-06", "CustomerCountry": "PT", "orders": 6, "revenue": 197.46439900000001}, {"YearMonth": "2009-06", "CustomerCountry": "XX", "orders": 1, "revenue": 54.698001}, {"YearMonth": "2009-07", "CustomerCountry": "CH", "orders": 2, "revenue": 43.087301}, {"YearMonth": "2009-07", "CustomerCountry": "CY", "orders": 3, "revenue": 108.50230400000001}, {"YearMonth": "2009-07", "CustomerCountry": "DE", "orders": 8, "revenue": 230.440003}, {"YearMonth": "2009-07", "CustomerCountry": "DK", "orders": 9, "revenue": 556.929696}, {"YearMonth": "2009-07", "CustomerCountry": "ES", "orders": 22, "revenue": 1163.245307}, {"YearMonth": "2009-07", "CustomerCountry": "FI", "orders": 2, "revenue": 139.783495}, {"YearMonth": "2009-07", "CustomerCountry": "FR", "orders": 15, "revenue": 482.8549}, {"YearMonth": "2009-07", "CustomerCountry": "GB", "orders": 1675, "revenue": 35956.012853}, {"YearMonth": "2009-07", "CustomerCountry": "GR", "orders": 3, "revenue": 135.025602}, {"YearMonth": "2009-07", "CustomerCountry": "IE", "orders": 63, "revenue": 2053.317507}, {"YearMonth": "2009-07", "CustomerCountry": "IT", "orders": 5, "revenue": 432.016006}, {"YearMonth": "2009-07", "CustomerCountry": "MT", "orders": 2, "revenue": 57.816901}, {"YearMonth": "2009-07", "CustomerCountry": "NL", "orders": 1, "revenue": 21.5192}, {"YearMonth": "2009-07", "CustomerCountry": "NO", "orders": 11, "revenue": 376.511199}, {"YearMonth": "2009-07", "CustomerCountry": "Other", "orders": 8, "revenue": 411.206692}, {"YearMonth": "2009-07", "CustomerCountry": "PT", "orders": 4, "revenue": 121.307801}, {"YearMonth": "2009-08", "CustomerCountry": "BE", "orders": 2, "revenue": 66.513928}, {"YearMonth": "2009-08", "CustomerCountry": "CH", "orders": 5, "revenue": 135.52859899999999}, {"YearMonth": "2009-08", "CustomerCountry": "CY", "orders": 3, "revenue": 101.166829}, {"YearMonth": "2009-08", "CustomerCountry": "DE", "orders": 6, "revenue": 391.677003}, {"YearMonth": "2009-08", "CustomerCountry": "DK", "orders": 15, "revenue": 751.191405}, {"YearMonth": "2009-08", "CustomerCountry": "ES", "orders": 18, "revenue": 530.78801}, {"YearMonth": "2009-08", "CustomerCountry": "FI", "orders": 1, "revenue": 113.421204}, {"YearMonth": "2009-08", "CustomerCountry": "FR", "orders": 14, "revenue": 686.86209}, {"YearMonth": "2009-08", "CustomerCountry": "GB", "orders": 1699, "revenue": 37485.523485}, {"YearMonth": "2009-08", "CustomerCountry": "GR", "orders": 6, "revenue": 210.78819700000003}, {"YearMonth": "2009-08", "CustomerCountry": "IE", "orders": 57, "revenue": 1543.454499}, {"YearMonth": "2009-08", "CustomerCountry": "IT", "orders": 6, "revenue": 226.78551299999998}, {"YearMonth": "2009-08", "CustomerCountry": "MT", "orders": 1, "revenue": 29.2986}, {"YearMonth": "2009-08", "CustomerCountry": "NL", "orders": 1, "revenue": 29.349001}, {"YearMonth": "2009-08", "CustomerCountry": "NO", "orders": 7, "revenue": 273.125134}, {"YearMonth": "2009-08", "CustomerCountry": "Other", "orders": 9, "revenue": 346.657787}, {"YearMonth": "2009-08", "CustomerCountry": "PT", "orders": 5, "revenue": 184.150224}, {"YearMonth": "2009-08", "CustomerCountry": "XX", "orders": 3, "revenue": 43.038}, {"YearMonth": "2009-09", "CustomerCountry": "BE", "orders": 4, "revenue": 118.374498}, {"YearMonth": "2009-09", "CustomerCountry": "CH", "orders": 5, "revenue": 287.692583}, {"YearMonth": "2009-09", "CustomerCountry": "DE", "orders": 4, "revenue": 93.6617}, {"YearMonth": "2009-09", "CustomerCountry": "DK", "orders": 13, "revenue": 396.095605}, {"YearMonth": "2009-09", "CustomerCountry": "ES", "orders": 11, "revenue": 522.679391}, {"YearMonth": "2009-09", "CustomerCountry": "FI", "orders": 2, "revenue": 36.285201}, {"YearMonth": "2009-09", "CustomerCountry": "FR", "orders": 23, "revenue": 771.661697}, {"YearMonth": "2009-09", "CustomerCountry": "GB", "orders": 1464, "revenue": 33042.135038}, {"YearMonth": "2009-09", "CustomerCountry": "GR", "orders": 5, "revenue": 195.709499}, {"YearMonth": "2009-09", "CustomerCountry": "IE", "orders": 69, "revenue": 2415.711448}, {"YearMonth": "2009-09", "CustomerCountry": "IT", "orders": 2, "revenue": 61.682001}, {"YearMonth": "2009-09", "CustomerCountry": "NO", "orders": 9, "revenue": 196.823901}, {"YearMonth": "2009-09", "CustomerCountry": "Other", "orders": 4, "revenue": 242.427799}, {"YearMonth": "2009-09", "CustomerCountry": "PT", "orders": 4, "revenue": 122.0544}, {"YearMonth": "2009-09", "CustomerCountry": "XX", "orders": 2, "revenue": 29.4766}, {"YearMonth": "2009-10", "CustomerCountry": "BE", "orders": 2, "revenue": 74.093201}, {"YearMonth": "2009-10", "CustomerCountry": "CH", "orders": 4, "revenue": 180.953998}, {"YearMonth": "2009-10", "CustomerCountry": "CY", "orders": 1, "revenue": 46.2808}, {"YearMonth": "2009-10", "CustomerCountry": "DE", "orders": 1, "revenue": 18.8766}, {"YearMonth": "2009-10", "CustomerCountry": "DK", "orders": 9, "revenue": 418.024495}, {"YearMonth": "2009-10", "CustomerCountry": "ES", "orders": 10, "revenue": 626.614095}, {"YearMonth": "2009-10", "CustomerCountry": "FI", "orders": 3, "revenue": 155.187203}, {"YearMonth": "2009-10", "CustomerCountry": "FR", "orders": 14, "revenue": 497.126802}, {"YearMonth": "2009-10", "CustomerCountry": "GB", "orders": 1557, "revenue": 34048.398145}, {"YearMonth": "2009-10", "CustomerCountry": "GR", "orders": 3, "revenue": 119.277696}, {"YearMonth": "2009-10", "CustomerCountry": "IE", "orders": 55, "revenue": 1796.073597}, {"YearMonth": "2009-10", "CustomerCountry": "IT", "orders": 5, "revenue": 263.790204}, {"YearMonth": "2009-10", "CustomerCountry": "NL", "orders": 3, "revenue": 106.8817}, {"YearMonth": "2009-10", "CustomerCountry": "NO", "orders": 7, "revenue": 208.475598}, {"YearMonth": "2009-10", "CustomerCountry": "Other", "orders": 8, "revenue": 396.799299}, {"YearMonth": "2009-10", "CustomerCountry": "PT", "orders": 9, "revenue": 394.247394}, {"YearMonth": "2009-10", "CustomerCountry": "SI", "orders": 1, "revenue": 231.572994}, {"YearMonth": "2009-11", "CustomerCountry": "BE", "orders": 1, "revenue": 28.399599}, {"YearMonth": "2009-11", "CustomerCountry": "CH", "orders": 10, "revenue": 372.363785}, {"YearMonth": "2009-11", "CustomerCountry": "DE", "orders": 6, "revenue": 253.446597}, {"YearMonth": "2009-11", "CustomerCountry": "DK", "orders": 13, "revenue": 645.086106}, {"YearMonth": "2009-11", "CustomerCountry": "ES", "orders": 15, "revenue": 613.969197}, {"YearMonth": "2009-11", "CustomerCountry": "FI", "orders": 1, "revenue": 41.9779}, {"YearMonth": "2009-11", "CustomerCountry": "FR", "orders": 27, "revenue": 750.454108}, {"YearMonth": "2009-11", "CustomerCountry": "GB", "orders": 1671, "revenue": 35944.149215}, {"YearMonth": "2009-11", "CustomerCountry": "GR", "orders": 5, "revenue": 206.2018}, {"YearMonth": "2009-11", "CustomerCountry": "IE", "orders": 53, "revenue": 1744.871406}, {"YearMonth": "2009-11", "CustomerCountry": "IT", "orders": 1, "revenue": 90.808099}, {"YearMonth": "2009-11", "CustomerCountry": "MT", "orders": 4, "revenue": 153.461598}, {"YearMonth": "2009-11", "CustomerCountry": "NL", "orders": 2, "revenue": 57.269098}, {"YearMonth": "2009-11", "CustomerCountry": "NO", "orders": 3, "revenue": 47.5668}, {"YearMonth": "2009-11", "CustomerCountry": "Other", "orders": 4, "revenue": 209.102198}, {"YearMonth": "2009-11", "CustomerCountry": "PT", "orders": 4, "revenue": 155.467999}, {"YearMonth": "2009-11", "CustomerCountry": "SI", "orders": 1, "revenue": 57.7319}, {"YearMonth": "2009-11", "CustomerCountry": "XX", "orders": 2, "revenue": 49.331001}, {"YearMonth": "2009-12", "CustomerCountry": "BE", "orders": 3, "revenue": 86.794151}, {"YearMonth": "2009-12", "CustomerCountry": "CH", "orders": 5, "revenue": 170.874891}, {"YearMonth": "2009-12", "CustomerCountry": "CY", "orders": 1, "revenue": 28.3702}, {"YearMonth": "2009-12", "CustomerCountry": "DE", "orders": 4, "revenue": 140.28789799999998}, {"YearMonth": "2009-12", "CustomerCountry": "DK", "orders": 9, "revenue": 413.952808}, {"YearMonth": "2009-12", "CustomerCountry": "ES", "orders": 18, "revenue": 831.987041}, {"YearMonth": "2009-12", "CustomerCountry": "FI", "orders": 1, "revenue": 33.312801}, {"YearMonth": "2009-12", "CustomerCountry": "FR", "orders": 17, "revenue": 682.45305}, {"YearMonth": "2009-12", "CustomerCountry": "GB", "orders": 1281, "revenue": 28847.282199}, {"YearMonth": "2009-12", "CustomerCountry": "GR", "orders": 5, "revenue": 157.158101}, {"YearMonth": "2009-12", "CustomerCountry": "IE", "orders": 50, "revenue": 1533.091515}, {"YearMonth": "2009-12", "CustomerCountry": "IT", "orders": 6, "revenue": 384.586796}, {"YearMonth": "2009-12", "CustomerCountry": "MT", "orders": 4, "revenue": 159.862401}, {"YearMonth": "2009-12", "CustomerCountry": "NL", "orders": 4, "revenue": 160.732917}, {"YearMonth": "2009-12", "CustomerCountry": "NO", "orders": 2, "revenue": 37.073031}, {"YearMonth": "2009-12", "CustomerCountry": "Other", "orders": 7, "revenue": 287.70360700000003}, {"YearMonth": "2009-12", "CustomerCountry": "PT", "orders": 4, "revenue": 150.730718}, {"YearMonth": "2009-12", "CustomerCountry": "XX", "orders": 1, "revenue": 12.2383}, {"YearMonth": "2010-01", "CustomerCountry": "BE", "orders": 4, "revenue": 106.2398}, {"YearMonth": "2010-01", "CustomerCountry": "CH", "orders": 2, "revenue": 49.749801000000005}, {"YearMonth": "2010-01", "CustomerCountry": "CY", "orders": 4, "revenue": 147.475008}, {"YearMonth": "2010-01", "CustomerCountry": "DE", "orders": 7, "revenue": 307.091404}, {"YearMonth": "2010-01", "CustomerCountry": "DK", "orders": 14, "revenue": 816.347215}, {"YearMonth": "2010-01", "CustomerCountry": "ES", "orders": 26, "revenue": 1143.681024}, {"YearMonth": "2010-01", "CustomerCountry": "FI", "orders": 1, "revenue": 25.949}, {"YearMonth": "2010-01", "CustomerCountry": "FR", "orders": 25, "revenue": 1102.821919}, {"YearMonth": "2010-01", "CustomerCountry": "GB", "orders": 1910, "revenue": 43422.359103}, {"YearMonth": "2010-01", "CustomerCountry": "GR", "orders": 7, "revenue": 301.440006}, {"YearMonth": "2010-01", "CustomerCountry": "IE", "orders": 111, "revenue": 3453.550904}, {"YearMonth": "2010-01", "CustomerCountry": "IT", "orders": 5, "revenue": 228.44620400000002}, {"YearMonth": "2010-01", "CustomerCountry": "MT", "orders": 4, "revenue": 153.25709799999998}, {"YearMonth": "2010-01", "CustomerCountry": "NL", "orders": 1, "revenue": 63.900002}, {"YearMonth": "2010-01", "CustomerCountry": "NO", "orders": 4, "revenue": 72.814809}, {"YearMonth": "2010-01", "CustomerCountry": "Other", "orders": 6, "revenue": 170.109703}, {"YearMonth": "2010-01", "CustomerCountry": "PT", "orders": 5, "revenue": 400.2237}, {"YearMonth": "2010-01", "CustomerCountry": "SI", "orders": 3, "revenue": 74.7899}, {"YearMonth": "2010-02", "CustomerCountry": "BE", "orders": 3, "revenue": 94.239001}, {"YearMonth": "2010-02", "CustomerCountry": "CH", "orders": 4, "revenue": 112.13940099999999}, {"YearMonth": "2010-02", "CustomerCountry": "CY", "orders": 1, "revenue": 31.950001}, {"YearMonth": "2010-02", "CustomerCountry": "DE", "orders": 5, "revenue": 169.049999}, {"YearMonth": "2010-02", "CustomerCountry": "DK", "orders": 9, "revenue": 566.708992}, {"YearMonth": "2010-02", "CustomerCountry": "ES", "orders": 16, "revenue": 598.0120929999999}, {"YearMonth": "2010-02", "CustomerCountry": "FR", "orders": 14, "revenue": 447.215076}, {"YearMonth": "2010-02", "CustomerCountry": "GB", "orders": 1575, "revenue": 36563.021563}, {"YearMonth": "2010-02", "CustomerCountry": "GR", "orders": 4, "revenue": 97.119998}, {"YearMonth": "2010-02", "CustomerCountry": "IE", "orders": 85, "revenue": 2601.389987}, {"YearMonth": "2010-02", "CustomerCountry": "IT", "orders": 3, "revenue": 179.889698}, {"YearMonth": "2010-02", "CustomerCountry": "MT", "orders": 2, "revenue": 22.439999999999998}, {"YearMonth": "2010-02", "CustomerCountry": "NL", "orders": 1, "revenue": 33.9}, {"YearMonth": "2010-02", "CustomerCountry": "NO", "orders": 4, "revenue": 123.28529999999999}, {"YearMonth": "2010-02", "CustomerCountry": "Other", "orders": 4, "revenue": 92.7498}, {"YearMonth": "2010-02", "CustomerCountry": "PT", "orders": 4, "revenue": 152.34}, {"YearMonth": "2010-02", "CustomerCountry": "SI", "orders": 2, "revenue": 276.770001}, {"YearMonth": "2010-02", "CustomerCountry": "XX", "orders": 3, "revenue": 63.599999999999994}, {"YearMonth": "2010-03", "CustomerCountry": "BE", "orders": 7, "revenue": 166.029002}, {"YearMonth": "2010-03", "CustomerCountry": "CH", "orders": 3, "revenue": 385.778395}, {"YearMonth": "2010-03", "CustomerCountry": "CY", "orders": 2, "revenue": 84.469902}, {"YearMonth": "2010-03", "CustomerCountry": "DE", "orders": 12, "revenue": 574.662094}, {"YearMonth": "2010-03", "CustomerCountry": "DK", "orders": 15, "revenue": 620.437699}, {"YearMonth": "2010-03", "CustomerCountry": "ES", "orders": 15, "revenue": 656.190107}, {"YearMonth": "2010-03", "CustomerCountry": "FI", "orders": 1, "revenue": 46.949999}, {"YearMonth": "2010-03", "CustomerCountry": "FR", "orders": 17, "revenue": 620.8912}, {"YearMonth": "2010-03", "CustomerCountry": "GB", "orders": 1670, "revenue": 37385.655728}, {"YearMonth": "2010-03", "CustomerCountry": "GR", "orders": 9, "revenue": 355.655335}, {"YearMonth": "2010-03", "CustomerCountry": "IE", "orders": 84, "revenue": 2548.41989}, {"YearMonth": "2010-03", "CustomerCountry": "IT", "orders": 3, "revenue": 218.375703}, {"YearMonth": "2010-03", "CustomerCountry": "MT", "orders": 4, "revenue": 92.092399}, {"YearMonth": "2010-03", "CustomerCountry": "NL", "orders": 2, "revenue": 52.899998999999994}, {"YearMonth": "2010-03", "CustomerCountry": "NO", "orders": 7, "revenue": 154.649903}, {"YearMonth": "2010-03", "CustomerCountry": "Other", "orders": 5, "revenue": 265.350106}, {"YearMonth": "2010-03", "CustomerCountry": "PT", "orders": 13, "revenue": 372.990101}, {"YearMonth": "2010-03", "CustomerCountry": "SI", "orders": 2, "revenue": 67.390101}, {"YearMonth": "2010-03", "CustomerCountry": "XX", "orders": 1, "revenue": 11.45}, {"YearMonth": "2010-04", "CustomerCountry": "BE", "orders": 3, "revenue": 65.479911}, {"YearMonth": "2010-04", "CustomerCountry": "CH", "orders": 5, "revenue": 190.138101}, {"YearMonth": "2010-04", "CustomerCountry": "CY", "orders": 4, "revenue": 140.919901}, {"YearMonth": "2010-04", "CustomerCountry": "DE", "orders": 5, "revenue": 126.974909}, {"YearMonth": "2010-04", "CustomerCountry": "DK", "orders": 15, "revenue": 823.9673379999999}, {"YearMonth": "2010-04", "CustomerCountry": "ES", "orders": 19, "revenue": 932.543956}, {"YearMonth": "2010-04", "CustomerCountry": "FI", "orders": 1, "revenue": 92.694819}, {"YearMonth": "2010-04", "CustomerCountry": "FR", "orders": 21, "revenue": 751.401076}, {"YearMonth": "2010-04", "CustomerCountry": "GB", "orders": 1798, "revenue": 40016.965309}, {"YearMonth": "2010-04", "CustomerCountry": "GR", "orders": 7, "revenue": 252.335151}, {"YearMonth": "2010-04", "CustomerCountry": "IE", "orders": 80, "revenue": 2417.592283}, {"YearMonth": "2010-04", "CustomerCountry": "IT", "orders": 7, "revenue": 305.31109000000004}, {"YearMonth": "2010-04", "CustomerCountry": "MT", "orders": 4, "revenue": 152.98489999999998}, {"YearMonth": "2010-04", "CustomerCountry": "NL", "orders": 4, "revenue": 169.05}, {"YearMonth": "2010-04", "CustomerCountry": "NO", "orders": 11, "revenue": 270.704822}, {"YearMonth": "2010-04", "CustomerCountry": "Other", "orders": 9, "revenue": 773.164241}, {"YearMonth": "2010-04", "CustomerCountry": "PT", "orders": 7, "revenue": 302.474818}, {"YearMonth": "2010-04", "CustomerCountry": "SI", "orders": 2, "revenue": 127.9549}, {"YearMonth": "2010-04", "CustomerCountry": "XX", "orders": 1, "revenue": 13.95}, {"YearMonth": "2010-05", "CustomerCountry": "BE", "orders": 4, "revenue": 185.889004}, {"YearMonth": "2010-05", "CustomerCountry": "CH", "orders": 2, "revenue": 76.749701}, {"YearMonth": "2010-05", "CustomerCountry": "CY", "orders": 3, "revenue": 101.154999}, {"YearMonth": "2010-05", "CustomerCountry": "DE", "orders": 5, "revenue": 374.692296}, {"YearMonth": "2010-05", "CustomerCountry": "DK", "orders": 4, "revenue": 240.86780299999998}, {"YearMonth": "2010-05", "CustomerCountry": "ES", "orders": 21, "revenue": 779.227307}, {"YearMonth": "2010-05", "CustomerCountry": "FR", "orders": 18, "revenue": 638.231901}, {"YearMonth": "2010-05", "CustomerCountry": "GB", "orders": 1805, "revenue": 40555.909417}, {"YearMonth": "2010-05", "CustomerCountry": "GR", "orders": 12, "revenue": 454.52599299999997}, {"YearMonth": "2010-05", "CustomerCountry": "IE", "orders": 74, "revenue": 2709.926014}, {"YearMonth": "2010-05", "CustomerCountry": "IT", "orders": 7, "revenue": 256.15871}, {"YearMonth": "2010-05", "CustomerCountry": "MT", "orders": 4, "revenue": 89.825201}, {"YearMonth": "2010-05", "CustomerCountry": "NL", "orders": 1, "revenue": 11.95}, {"YearMonth": "2010-05", "CustomerCountry": "NO", "orders": 6, "revenue": 145.540199}, {"YearMonth": "2010-05", "CustomerCountry": "Other", "orders": 12, "revenue": 569.920704}, {"YearMonth": "2010-05", "CustomerCountry": "PT", "orders": 5, "revenue": 301.024999}, {"YearMonth": "2010-06", "CustomerCountry": "BE", "orders": 3, "revenue": 84.699901}, {"YearMonth": "2010-06", "CustomerCountry": "CH", "orders": 6, "revenue": 196.11970300000002}, {"YearMonth": "2010-06", "CustomerCountry": "CY", "orders": 1, "revenue": 79.649797}, {"YearMonth": "2010-06", "CustomerCountry": "DE", "orders": 6, "revenue": 236.540202}, {"YearMonth": "2010-06", "CustomerCountry": "DK", "orders": 14, "revenue": 684.365901}, {"YearMonth": "2010-06", "CustomerCountry": "ES", "orders": 17, "revenue": 549.144803}, {"YearMonth": "2010-06", "CustomerCountry": "FI", "orders": 1, "revenue": 46.3401}, {"YearMonth": "2010-06", "CustomerCountry": "FR", "orders": 26, "revenue": 979.891825}, {"YearMonth": "2010-06", "CustomerCountry": "GB", "orders": 1684, "revenue": 37801.954712}, {"YearMonth": "2010-06", "CustomerCountry": "GR", "orders": 5, "revenue": 153.6}, {"YearMonth": "2010-06", "CustomerCountry": "IE", "orders": 78, "revenue": 2688.782189}, {"YearMonth": "2010-06", "CustomerCountry": "IT", "orders": 2, "revenue": 107.640002}, {"YearMonth": "2010-06", "CustomerCountry": "NL", "orders": 2, "revenue": 98.243499}, {"YearMonth": "2010-06", "CustomerCountry": "NO", "orders": 5, "revenue": 130.282182}, {"YearMonth": "2010-06", "CustomerCountry": "Other", "orders": 9, "revenue": 410.74840900000004}, {"YearMonth": "2010-06", "CustomerCountry": "PT", "orders": 5, "revenue": 182.432301}, {"YearMonth": "2010-06", "CustomerCountry": "SI", "orders": 1, "revenue": 45.900099}, {"YearMonth": "2010-07", "CustomerCountry": "BE", "orders": 3, "revenue": 54.8499}, {"YearMonth": "2010-07", "CustomerCountry": "CH", "orders": 4, "revenue": 117.649999}, {"YearMonth": "2010-07", "CustomerCountry": "DE", "orders": 3, "revenue": 99.650898}, {"YearMonth": "2010-07", "CustomerCountry": "DK", "orders": 9, "revenue": 310.388307}, {"YearMonth": "2010-07", "CustomerCountry": "ES", "orders": 21, "revenue": 825.954701}, {"YearMonth": "2010-07", "CustomerCountry": "FI", "orders": 3, "revenue": 203.650003}, {"YearMonth": "2010-07", "CustomerCountry": "FR", "orders": 20, "revenue": 626.577798}, {"YearMonth": "2010-07", "CustomerCountry": "GB", "orders": 1796, "revenue": 40234.83668}, {"YearMonth": "2010-07", "CustomerCountry": "GR", "orders": 6, "revenue": 494.92989400000005}, {"YearMonth": "2010-07", "CustomerCountry": "IE", "orders": 70, "revenue": 2252.487807}, {"YearMonth": "2010-07", "CustomerCountry": "IT", "orders": 4, "revenue": 103.10490200000001}, {"YearMonth": "2010-07", "CustomerCountry": "MT", "orders": 5, "revenue": 159.280201}, {"YearMonth": "2010-07", "CustomerCountry": "NL", "orders": 1, "revenue": 41.700001}, {"YearMonth": "2010-07", "CustomerCountry": "NO", "orders": 5, "revenue": 94.550001}, {"YearMonth": "2010-07", "CustomerCountry": "Other", "orders": 3, "revenue": 51.8}, {"YearMonth": "2010-07", "CustomerCountry": "PT", "orders": 7, "revenue": 322.18960200000004}, {"YearMonth": "2010-07", "CustomerCountry": "SI", "orders": 1, "revenue": 60.039701}, {"YearMonth": "2010-07", "CustomerCountry": "XX", "orders": 1, "revenue": 24.399801}, {"YearMonth": "2010-08", "CustomerCountry": "BE", "orders": 6, "revenue": 206.404898}, {"YearMonth": "2010-08", "CustomerCountry": "CH", "orders": 8, "revenue": 303.03692}, {"YearMonth": "2010-08", "CustomerCountry": "CY", "orders": 4, "revenue": 117.599901}, {"YearMonth": "2010-08", "CustomerCountry": "DE", "orders": 8, "revenue": 238.604895}, {"YearMonth": "2010-08", "CustomerCountry": "DK", "orders": 11, "revenue": 523.764723}, {"YearMonth": "2010-08", "CustomerCountry": "ES", "orders": 11, "revenue": 486.664923}, {"YearMonth": "2010-08", "CustomerCountry": "FI", "orders": 3, "revenue": 152.119721}, {"YearMonth": "2010-08", "CustomerCountry": "FR", "orders": 18, "revenue": 714.582705}, {"YearMonth": "2010-08", "CustomerCountry": "GB", "orders": 1919, "revenue": 46612.881011}, {"YearMonth": "2010-08", "CustomerCountry": "GR", "orders": 8, "revenue": 359.50501099999997}, {"YearMonth": "2010-08", "CustomerCountry": "IE", "orders": 80, "revenue": 2839.642796}, {"YearMonth": "2010-08", "CustomerCountry": "IT", "orders": 4, "revenue": 176.900001}, {"YearMonth": "2010-08", "CustomerCountry": "MT", "orders": 5, "revenue": 169.674997}, {"YearMonth": "2010-08", "CustomerCountry": "NL", "orders": 2, "revenue": 66.600099}, {"YearMonth": "2010-08", "CustomerCountry": "NO", "orders": 7, "revenue": 206.35}, {"YearMonth": "2010-08", "CustomerCountry": "Other", "orders": 9, "revenue": 411.389598}, {"YearMonth": "2010-08", "CustomerCountry": "PT", "orders": 5, "revenue": 163.429902}, {"YearMonth": "2010-08", "CustomerCountry": "SI", "orders": 4, "revenue": 416.915297}, {"YearMonth": "2010-08", "CustomerCountry": "XX", "orders": 1, "revenue": 10.9499}, {"YearMonth": "2010-09", "CustomerCountry": "BE", "orders": 3, "revenue": 57.64}, {"YearMonth": "2010-09", "CustomerCountry": "CH", "orders": 8, "revenue": 439.149299}, {"YearMonth": "2010-09", "CustomerCountry": "CY", "orders": 6, "revenue": 188.350001}, {"YearMonth": "2010-09", "CustomerCountry": "DE", "orders": 2, "revenue": 197.899703}, {"YearMonth": "2010-09", "CustomerCountry": "DK", "orders": 8, "revenue": 345.6498}, {"YearMonth": "2010-09", "CustomerCountry": "ES", "orders": 22, "revenue": 941.449411}, {"YearMonth": "2010-09", "CustomerCountry": "FI", "orders": 2, "revenue": 74.89999900000001}, {"YearMonth": "2010-09", "CustomerCountry": "FR", "orders": 17, "revenue": 460.89959699999997}, {"YearMonth": "2010-09", "CustomerCountry": "GB", "orders": 1755, "revenue": 40244.53368}, {"YearMonth": "2010-09", "CustomerCountry": "GR", "orders": 4, "revenue": 256.590003}, {"YearMonth": "2010-09", "CustomerCountry": "IE", "orders": 80, "revenue": 2774.578504}, {"YearMonth": "2010-09", "CustomerCountry": "IT", "orders": 5, "revenue": 159.305101}, {"YearMonth": "2010-09", "CustomerCountry": "MT", "orders": 2, "revenue": 25.9}, {"YearMonth": "2010-09", "CustomerCountry": "NL", "orders": 2, "revenue": 128.65}, {"YearMonth": "2010-09", "CustomerCountry": "NO", "orders": 6, "revenue": 140.39999799999998}, {"YearMonth": "2010-09", "CustomerCountry": "Other", "orders": 4, "revenue": 213.150003}, {"YearMonth": "2010-09", "CustomerCountry": "PT", "orders": 5, "revenue": 99.454911}, {"YearMonth": "2010-09", "CustomerCountry": "SI", "orders": 2, "revenue": 679.159985}, {"YearMonth": "2010-10", "CustomerCountry": "BE", "orders": 1, "revenue": 16.95}, {"YearMonth": "2010-10", "CustomerCountry": "CY", "orders": 1, "revenue": 15.95}, {"YearMonth": "2010-10", "CustomerCountry": "DE", "orders": 6, "revenue": 203.8999}, {"YearMonth": "2010-10", "CustomerCountry": "DK", "orders": 20, "revenue": 956.038898}, {"YearMonth": "2010-10", "CustomerCountry": "ES", "orders": 22, "revenue": 743.149394}, {"YearMonth": "2010-10", "CustomerCountry": "FI", "orders": 3, "revenue": 134.550001}, {"YearMonth": "2010-10", "CustomerCountry": "FR", "orders": 18, "revenue": 675.0387079999999}, {"YearMonth": "2010-10", "CustomerCountry": "GB", "orders": 1694, "revenue": 40775.253278}, {"YearMonth": "2010-10", "CustomerCountry": "GR", "orders": 10, "revenue": 603.949902}, {"YearMonth": "2010-10", "CustomerCountry": "IE", "orders": 53, "revenue": 1771.878901}, {"YearMonth": "2010-10", "CustomerCountry": "IT", "orders": 5, "revenue": 331.004545}, {"YearMonth": "2010-10", "CustomerCountry": "MT", "orders": 5, "revenue": 195.800001}, {"YearMonth": "2010-10", "CustomerCountry": "NL", "orders": 4, "revenue": 296.99989700000003}, {"YearMonth": "2010-10", "CustomerCountry": "NO", "orders": 4, "revenue": 54.2998}, {"YearMonth": "2010-10", "CustomerCountry": "Other", "orders": 10, "revenue": 452.2468}, {"YearMonth": "2010-10", "CustomerCountry": "PT", "orders": 10, "revenue": 570.049893}, {"YearMonth": "2010-10", "CustomerCountry": "SI", "orders": 5, "revenue": 1011.0996930000001}, {"YearMonth": "2010-10", "CustomerCountry": "XX", "orders": 3, "revenue": 104.69990200000001}, {"YearMonth": "2010-11", "CustomerCountry": "BE", "orders": 1, "revenue": 27.75991}, {"YearMonth": "2010-11", "CustomerCountry": "CH", "orders": 3, "revenue": 114.315898}, {"YearMonth": "2010-11", "CustomerCountry": "CY", "orders": 3, "revenue": 231.449905}, {"YearMonth": "2010-11", "CustomerCountry": "DE", "orders": 3, "revenue": 138.149901}, {"YearMonth": "2010-11", "CustomerCountry": "DK", "orders": 12, "revenue": 613.739496}, {"YearMonth": "2010-11", "CustomerCountry": "ES", "orders": 23, "revenue": 917.639516}, {"YearMonth": "2010-11", "CustomerCountry": "FI", "orders": 4, "revenue": 142.649697}, {"YearMonth": "2010-11", "CustomerCountry": "FR", "orders": 23, "revenue": 807.928505}, {"YearMonth": "2010-11", "CustomerCountry": "GB", "orders": 1697, "revenue": 39956.879212}, {"YearMonth": "2010-11", "CustomerCountry": "GR", "orders": 7, "revenue": 265.8923}, {"YearMonth": "2010-11", "CustomerCountry": "IE", "orders": 47, "revenue": 1613.48899}, {"YearMonth": "2010-11", "CustomerCountry": "IT", "orders": 6, "revenue": 172.690002}, {"YearMonth": "2010-11", "CustomerCountry": "MT", "orders": 6, "revenue": 161.649999}, {"YearMonth": "2010-11", "CustomerCountry": "NL", "orders": 1, "revenue": 81.899998}, {"YearMonth": "2010-11", "CustomerCountry": "NO", "orders": 7, "revenue": 160.52439999999999}, {"YearMonth": "2010-11", "CustomerCountry": "Other", "orders": 12, "revenue": 528.984101}, {"YearMonth": "2010-11", "CustomerCountry": "PT", "orders": 8, "revenue": 194.059891}, {"YearMonth": "2010-11", "CustomerCountry": "SI", "orders": 2, "revenue": 692.399899}, {"YearMonth": "2010-11", "CustomerCountry": "XX", "orders": 1, "revenue": 29.744699}, {"YearMonth": "2010-12", "CustomerCountry": "CH", "orders": 5, "revenue": 147.367369}, {"YearMonth": "2010-12", "CustomerCountry": "CY", "orders": 1, "revenue": 13.4501}, {"YearMonth": "2010-12", "CustomerCountry": "DE", "orders": 5, "revenue": 140.349999}, {"YearMonth": "2010-12", "CustomerCountry": "DK", "orders": 8, "revenue": 248.6164}, {"YearMonth": "2010-12", "CustomerCountry": "ES", "orders": 19, "revenue": 718.546602}, {"YearMonth": "2010-12", "CustomerCountry": "FI", "orders": 2, "revenue": 162.949795}, {"YearMonth": "2010-12", "CustomerCountry": "FR", "orders": 17, "revenue": 512.180599}, {"YearMonth": "2010-12", "CustomerCountry": "GB", "orders": 1403, "revenue": 34033.539981}, {"YearMonth": "2010-12", "CustomerCountry": "GR", "orders": 6, "revenue": 147.9998}, {"YearMonth": "2010-12", "CustomerCountry": "IE", "orders": 45, "revenue": 1401.511703}, {"YearMonth": "2010-12", "CustomerCountry": "IT", "orders": 6, "revenue": 209.724999}, {"YearMonth": "2010-12", "CustomerCountry": "NO", "orders": 16, "revenue": 329.191478}, {"YearMonth": "2010-12", "CustomerCountry": "Other", "orders": 10, "revenue": 296.895004}, {"YearMonth": "2010-12", "CustomerCountry": "PT", "orders": 4, "revenue": 89.24990199999999}, {"YearMonth": "2010-12", "CustomerCountry": "SE", "orders": 1, "revenue": 30.9}, {"YearMonth": "2010-12", "CustomerCountry": "SI", "orders": 1, "revenue": 59.149899}, {"YearMonth": "2010-12", "CustomerCountry": "XX", "orders": 5, "revenue": 115.640399}, {"YearMonth": "2011-01", "CustomerCountry": "BE", "orders": 9, "revenue": 254.246799}, {"YearMonth": "2011-01", "CustomerCountry": "CH", "orders": 1, "revenue": 20.2083}, {"YearMonth": "2011-01", "CustomerCountry": "CY", "orders": 2, "revenue": 27.9}, {"YearMonth": "2011-01", "CustomerCountry": "DE", "orders": 13, "revenue": 554.452097}, {"YearMonth": "2011-01", "CustomerCountry": "DK", "orders": 17, "revenue": 996.440902}, {"YearMonth": "2011-01", "CustomerCountry": "ES", "orders": 30, "revenue": 1228.902599}, {"YearMonth": "2011-01", "CustomerCountry": "FI", "orders": 4, "revenue": 176.549804}, {"YearMonth": "2011-01", "CustomerCountry": "FR", "orders": 38, "revenue": 1596.316205}, {"YearMonth": "2011-01", "CustomerCountry": "GB", "orders": 2202, "revenue": 51565.212235}, {"YearMonth": "2011-01", "CustomerCountry": "GR", "orders": 8, "revenue": 282.59999700000003}, {"YearMonth": "2011-01", "CustomerCountry": "IE", "orders": 83, "revenue": 3014.225896}, {"YearMonth": "2011-01", "CustomerCountry": "IT", "orders": 6, "revenue": 626.499996}, {"YearMonth": "2011-01", "CustomerCountry": "MT", "orders": 3, "revenue": 127.2}, {"YearMonth": "2011-01", "CustomerCountry": "NL", "orders": 3, "revenue": 202.92991}, {"YearMonth": "2011-01", "CustomerCountry": "NO", "orders": 13, "revenue": 268.458618}, {"YearMonth": "2011-01", "CustomerCountry": "Other", "orders": 23, "revenue": 1186.477795}, {"YearMonth": "2011-01", "CustomerCountry": "PT", "orders": 9, "revenue": 405.454998}, {"YearMonth": "2011-01", "CustomerCountry": "SI", "orders": 3, "revenue": 393.5738}, {"YearMonth": "2011-01", "CustomerCountry": "XX", "orders": 6, "revenue": 135.526298}, {"YearMonth": "2011-02", "CustomerCountry": "BE", "orders": 4, "revenue": 122.905002}, {"YearMonth": "2011-02", "CustomerCountry": "CH", "orders": 8, "revenue": 280.708099}, {"YearMonth": "2011-02", "CustomerCountry": "DE", "orders": 8, "revenue": 382.2499}, {"YearMonth": "2011-02", "CustomerCountry": "DK", "orders": 13, "revenue": 576.904908}, {"YearMonth": "2011-02", "CustomerCountry": "ES", "orders": 18, "revenue": 589.151804}, {"YearMonth": "2011-02", "CustomerCountry": "FI", "orders": 3, "revenue": 266.299403}, {"YearMonth": "2011-02", "CustomerCountry": "FR", "orders": 17, "revenue": 570.349995}, {"YearMonth": "2011-02", "CustomerCountry": "GB", "orders": 1692, "revenue": 39599.650258}, {"YearMonth": "2011-02", "CustomerCountry": "GR", "orders": 10, "revenue": 438.050101}, {"YearMonth": "2011-02", "CustomerCountry": "IE", "orders": 57, "revenue": 1935.894787}, {"YearMonth": "2011-02", "CustomerCountry": "IT", "orders": 5, "revenue": 175.000003}, {"YearMonth": "2011-02", "CustomerCountry": "MT", "orders": 6, "revenue": 149.1}, {"YearMonth": "2011-02", "CustomerCountry": "NL", "orders": 5, "revenue": 396.0}, {"YearMonth": "2011-02", "CustomerCountry": "NO", "orders": 9, "revenue": 167.9583}, {"YearMonth": "2011-02", "CustomerCountry": "Other", "orders": 8, "revenue": 224.72500200000002}, {"YearMonth": "2011-02", "CustomerCountry": "PT", "orders": 10, "revenue": 422.90659800000003}, {"YearMonth": "2011-02", "CustomerCountry": "SE", "orders": 1, "revenue": 39.899999}, {"YearMonth": "2011-02", "CustomerCountry": "SI", "orders": 3, "revenue": 518.6498879999999}, {"YearMonth": "2011-02", "CustomerCountry": "XX", "orders": 5, "revenue": 101.749899}, {"YearMonth": "2011-03", "CustomerCountry": "BE", "orders": 6, "revenue": 180.39000000000001}, {"YearMonth": "2011-03", "CustomerCountry": "CH", "orders": 2, "revenue": 97.791603}, {"YearMonth": "2011-03", "CustomerCountry": "CY", "orders": 5, "revenue": 204.849998}, {"YearMonth": "2011-03", "CustomerCountry": "DE", "orders": 5, "revenue": 119.149999}, {"YearMonth": "2011-03", "CustomerCountry": "DK", "orders": 10, "revenue": 511.250003}, {"YearMonth": "2011-03", "CustomerCountry": "ES", "orders": 29, "revenue": 1053.179603}, {"YearMonth": "2011-03", "CustomerCountry": "FI", "orders": 2, "revenue": 93.105002}, {"YearMonth": "2011-03", "CustomerCountry": "FR", "orders": 23, "revenue": 763.189702}, {"YearMonth": "2011-03", "CustomerCountry": "GB", "orders": 1726, "revenue": 40607.602154}, {"YearMonth": "2011-03", "CustomerCountry": "GR", "orders": 7, "revenue": 366.399901}, {"YearMonth": "2011-03", "CustomerCountry": "IE", "orders": 60, "revenue": 1957.420692}, {"YearMonth": "2011-03", "CustomerCountry": "IT", "orders": 4, "revenue": 180.900001}, {"YearMonth": "2011-03", "CustomerCountry": "MT", "orders": 4, "revenue": 150.702003}, {"YearMonth": "2011-03", "CustomerCountry": "NL", "orders": 3, "revenue": 156.44670200000002}, {"YearMonth": "2011-03", "CustomerCountry": "NO", "orders": 3, "revenue": 47.7083}, {"YearMonth": "2011-03", "CustomerCountry": "Other", "orders": 8, "revenue": 330.158298}, {"YearMonth": "2011-03", "CustomerCountry": "PT", "orders": 9, "revenue": 186.4}, {"YearMonth": "2011-03", "CustomerCountry": "SE", "orders": 2, "revenue": 52.4}, {"YearMonth": "2011-03", "CustomerCountry": "XX", "orders": 6, "revenue": 143.837672}, {"YearMonth": "2011-04", "CustomerCountry": "BE", "orders": 2, "revenue": 44.849999999999994}, {"YearMonth": "2011-04", "CustomerCountry": "CH", "orders": 2, "revenue": 66.612411}, {"YearMonth": "2011-04", "CustomerCountry": "CY", "orders": 1, "revenue": 35.2}, {"YearMonth": "2011-04", "CustomerCountry": "DE", "orders": 7, "revenue": 202.154999}, {"YearMonth": "2011-04", "CustomerCountry": "DK", "orders": 17, "revenue": 699.834912}, {"YearMonth": "2011-04", "CustomerCountry": "ES", "orders": 27, "revenue": 831.559905}, {"YearMonth": "2011-04", "CustomerCountry": "FI", "orders": 6, "revenue": 158.509909}, {"YearMonth": "2011-04", "CustomerCountry": "FR", "orders": 21, "revenue": 765.412292}, {"YearMonth": "2011-04", "CustomerCountry": "GB", "orders": 1747, "revenue": 41439.466695}, {"YearMonth": "2011-04", "CustomerCountry": "GR", "orders": 8, "revenue": 472.32500600000003}, {"YearMonth": "2011-04", "CustomerCountry": "IE", "orders": 59, "revenue": 2074.035513}, {"YearMonth": "2011-04", "CustomerCountry": "IT", "orders": 8, "revenue": 263.549998}, {"YearMonth": "2011-04", "CustomerCountry": "MT", "orders": 4, "revenue": 142.25}, {"YearMonth": "2011-04", "CustomerCountry": "NL", "orders": 2, "revenue": 43.629999999999995}, {"YearMonth": "2011-04", "CustomerCountry": "NO", "orders": 6, "revenue": 115.754069}, {"YearMonth": "2011-04", "CustomerCountry": "Other", "orders": 12, "revenue": 715.14796}, {"YearMonth": "2011-04", "CustomerCountry": "PT", "orders": 6, "revenue": 167.699997}, {"YearMonth": "2011-04", "CustomerCountry": "SE", "orders": 2, "revenue": 23.2}, {"YearMonth": "2011-04", "CustomerCountry": "SI", "orders": 4, "revenue": 318.20500200000004}, {"YearMonth": "2011-04", "CustomerCountry": "XX", "orders": 3, "revenue": 69.416601}, {"YearMonth": "2011-05", "CustomerCountry": "BE", "orders": 2, "revenue": 108.19999999999999}, {"YearMonth": "2011-05", "CustomerCountry": "CY", "orders": 4, "revenue": 220.200003}, {"YearMonth": "2011-05", "CustomerCountry": "DE", "orders": 5, "revenue": 211.549998}, {"YearMonth": "2011-05", "CustomerCountry": "DK", "orders": 11, "revenue": 560.0499980000001}, {"YearMonth": "2011-05", "CustomerCountry": "ES", "orders": 28, "revenue": 1165.914599}, {"YearMonth": "2011-05", "CustomerCountry": "FI", "orders": 3, "revenue": 180.679598}, {"YearMonth": "2011-05", "CustomerCountry": "FR", "orders": 25, "revenue": 1145.895}, {"YearMonth": "2011-05", "CustomerCountry": "GB", "orders": 1818, "revenue": 42185.630366}, {"YearMonth": "2011-05", "CustomerCountry": "GR", "orders": 10, "revenue": 786.764907}, {"YearMonth": "2011-05", "CustomerCountry": "IE", "orders": 54, "revenue": 1703.082295}, {"YearMonth": "2011-05", "CustomerCountry": "IT", "orders": 2, "revenue": 69.299999}, {"YearMonth": "2011-05", "CustomerCountry": "MT", "orders": 4, "revenue": 90.94999999999999}, {"YearMonth": "2011-05", "CustomerCountry": "NL", "orders": 5, "revenue": 255.155001}, {"YearMonth": "2011-05", "CustomerCountry": "NO", "orders": 7, "revenue": 145.249899}, {"YearMonth": "2011-05", "CustomerCountry": "Other", "orders": 8, "revenue": 468.350004}, {"YearMonth": "2011-05", "CustomerCountry": "PT", "orders": 7, "revenue": 261.604998}, {"YearMonth": "2011-05", "CustomerCountry": "SI", "orders": 2, "revenue": 113.749903}, {"YearMonth": "2011-05", "CustomerCountry": "XX", "orders": 1, "revenue": 22.875}, {"YearMonth": "2011-06", "CustomerCountry": "BE", "orders": 2, "revenue": 61.485001}, {"YearMonth": "2011-06", "CustomerCountry": "CH", "orders": 2, "revenue": 37.041599000000005}, {"YearMonth": "2011-06", "CustomerCountry": "CY", "orders": 3, "revenue": 55.3}, {"YearMonth": "2011-06", "CustomerCountry": "DE", "orders": 6, "revenue": 224.03680300000002}, {"YearMonth": "2011-06", "CustomerCountry": "DK", "orders": 11, "revenue": 683.449903}, {"YearMonth": "2011-06", "CustomerCountry": "ES", "orders": 20, "revenue": 653.949896}, {"YearMonth": "2011-06", "CustomerCountry": "FI", "orders": 4, "revenue": 153.499898}, {"YearMonth": "2011-06", "CustomerCountry": "FR", "orders": 28, "revenue": 1159.679591}, {"YearMonth": "2011-06", "CustomerCountry": "GB", "orders": 1786, "revenue": 41745.376006}, {"YearMonth": "2011-06", "CustomerCountry": "GR", "orders": 6, "revenue": 311.200098}, {"YearMonth": "2011-06", "CustomerCountry": "IE", "orders": 60, "revenue": 1663.424704}, {"YearMonth": "2011-06", "CustomerCountry": "IT", "orders": 1, "revenue": 15.95}, {"YearMonth": "2011-06", "CustomerCountry": "MT", "orders": 9, "revenue": 285.5118}, {"YearMonth": "2011-06", "CustomerCountry": "NL", "orders": 2, "revenue": 121.89999900000001}, {"YearMonth": "2011-06", "CustomerCountry": "NO", "orders": 9, "revenue": 191.9167}, {"YearMonth": "2011-06", "CustomerCountry": "Other", "orders": 11, "revenue": 432.649699}, {"YearMonth": "2011-06", "CustomerCountry": "PT", "orders": 12, "revenue": 520.774796}, {"YearMonth": "2011-06", "CustomerCountry": "SE", "orders": 1, "revenue": 12.44}, {"YearMonth": "2011-06", "CustomerCountry": "XX", "orders": 3, "revenue": 39.6667}, {"YearMonth": "2011-07", "CustomerCountry": "BE", "orders": 3, "revenue": 165.54989899999998}, {"YearMonth": "2011-07", "CustomerCountry": "CH", "orders": 2, "revenue": 140.158298}, {"YearMonth": "2011-07", "CustomerCountry": "CY", "orders": 1, "revenue": 28.9}, {"YearMonth": "2011-07", "CustomerCountry": "DE", "orders": 5, "revenue": 165.054998}, {"YearMonth": "2011-07", "CustomerCountry": "DK", "orders": 10, "revenue": 472.554912}, {"YearMonth": "2011-07", "CustomerCountry": "ES", "orders": 25, "revenue": 1184.121304}, {"YearMonth": "2011-07", "CustomerCountry": "FI", "orders": 3, "revenue": 65.250001}, {"YearMonth": "2011-07", "CustomerCountry": "FR", "orders": 28, "revenue": 887.049893}, {"YearMonth": "2011-07", "CustomerCountry": "GB", "orders": 1988, "revenue": 45301.592463}, {"YearMonth": "2011-07", "CustomerCountry": "GR", "orders": 9, "revenue": 513.499996}, {"YearMonth": "2011-07", "CustomerCountry": "IE", "orders": 51, "revenue": 1967.364701}, {"YearMonth": "2011-07", "CustomerCountry": "IT", "orders": 5, "revenue": 166.6499}, {"YearMonth": "2011-07", "CustomerCountry": "MT", "orders": 4, "revenue": 99.55}, {"YearMonth": "2011-07", "CustomerCountry": "NL", "orders": 3, "revenue": 113.25009800000001}, {"YearMonth": "2011-07", "CustomerCountry": "NO", "orders": 6, "revenue": 241.150098}, {"YearMonth": "2011-07", "CustomerCountry": "Other", "orders": 11, "revenue": 448.67990399999996}, {"YearMonth": "2011-07", "CustomerCountry": "PT", "orders": 1, "revenue": 25.735}, {"YearMonth": "2011-07", "CustomerCountry": "SE", "orders": 1, "revenue": 23.2}, {"YearMonth": "2011-07", "CustomerCountry": "SI", "orders": 1, "revenue": 125.149899}, {"YearMonth": "2011-07", "CustomerCountry": "XX", "orders": 3, "revenue": 44.0417}, {"YearMonth": "2011-08", "CustomerCountry": "BE", "orders": 6, "revenue": 145.29999899999999}, {"YearMonth": "2011-08", "CustomerCountry": "CH", "orders": 4, "revenue": 137.708399}, {"YearMonth": "2011-08", "CustomerCountry": "CY", "orders": 6, "revenue": 312.154994}, {"YearMonth": "2011-08", "CustomerCountry": "DE", "orders": 9, "revenue": 507.759896}, {"YearMonth": "2011-08", "CustomerCountry": "DK", "orders": 21, "revenue": 1281.084803}, {"YearMonth": "2011-08", "CustomerCountry": "ES", "orders": 28, "revenue": 1260.514815}, {"YearMonth": "2011-08", "CustomerCountry": "FI", "orders": 5, "revenue": 296.796696}, {"YearMonth": "2011-08", "CustomerCountry": "FR", "orders": 33, "revenue": 998.0359109999999}, {"YearMonth": "2011-08", "CustomerCountry": "GB", "orders": 2143, "revenue": 49792.342381}, {"YearMonth": "2011-08", "CustomerCountry": "GR", "orders": 7, "revenue": 434.540002}, {"YearMonth": "2011-08", "CustomerCountry": "IE", "orders": 70, "revenue": 2367.678397}, {"YearMonth": "2011-08", "CustomerCountry": "IT", "orders": 10, "revenue": 614.639903}, {"YearMonth": "2011-08", "CustomerCountry": "MT", "orders": 1, "revenue": 9.25}, {"YearMonth": "2011-08", "CustomerCountry": "NL", "orders": 2, "revenue": 48.754999999999995}, {"YearMonth": "2011-08", "CustomerCountry": "NO", "orders": 14, "revenue": 311.14167}, {"YearMonth": "2011-08", "CustomerCountry": "Other", "orders": 6, "revenue": 257.840103}, {"YearMonth": "2011-08", "CustomerCountry": "PT", "orders": 6, "revenue": 180.14999899999998}, {"YearMonth": "2011-08", "CustomerCountry": "SE", "orders": 1, "revenue": 24.9}, {"YearMonth": "2011-08", "CustomerCountry": "SI", "orders": 1, "revenue": 51.610002}, {"YearMonth": "2011-08", "CustomerCountry": "XX", "orders": 5, "revenue": 133.341574}, {"YearMonth": "2011-09", "CustomerCountry": "BE", "orders": 4, "revenue": 97.74999799999999}, {"YearMonth": "2011-09", "CustomerCountry": "CH", "orders": 4, "revenue": 136.116997}, {"YearMonth": "2011-09", "CustomerCountry": "CY", "orders": 1, "revenue": 23.95}, {"YearMonth": "2011-09", "CustomerCountry": "DE", "orders": 1, "revenue": 142.5499}, {"YearMonth": "2011-09", "CustomerCountry": "DK", "orders": 14, "revenue": 668.095001}, {"YearMonth": "2011-09", "CustomerCountry": "ES", "orders": 31, "revenue": 998.554799}, {"YearMonth": "2011-09", "CustomerCountry": "FI", "orders": 7, "revenue": 431.09999899999997}, {"YearMonth": "2011-09", "CustomerCountry": "FR", "orders": 27, "revenue": 1056.146599}, {"YearMonth": "2011-09", "CustomerCountry": "GB", "orders": 1826, "revenue": 38491.612587999996}, {"YearMonth": "2011-09", "CustomerCountry": "GR", "orders": 8, "revenue": 233.349997}, {"YearMonth": "2011-09", "CustomerCountry": "IE", "orders": 53, "revenue": 2349.841592}, {"YearMonth": "2011-09", "CustomerCountry": "IT", "orders": 6, "revenue": 222.689897}, {"YearMonth": "2011-09", "CustomerCountry": "MT", "orders": 5, "revenue": 165.3}, {"YearMonth": "2011-09", "CustomerCountry": "NL", "orders": 6, "revenue": 159.750003}, {"YearMonth": "2011-09", "CustomerCountry": "NO", "orders": 9, "revenue": 155.6667}, {"YearMonth": "2011-09", "CustomerCountry": "Other", "orders": 12, "revenue": 371.758098}, {"YearMonth": "2011-09", "CustomerCountry": "PT", "orders": 3, "revenue": 116.15}, {"YearMonth": "2011-09", "CustomerCountry": "XX", "orders": 3, "revenue": 49.249899}, {"YearMonth": "2011-10", "CustomerCountry": "BE", "orders": 6, "revenue": 243.089995}, {"YearMonth": "2011-10", "CustomerCountry": "CH", "orders": 9, "revenue": 272.36749}, {"YearMonth": "2011-10", "CustomerCountry": "CY", "orders": 7, "revenue": 186.15}, {"YearMonth": "2011-10", "CustomerCountry": "DE", "orders": 10, "revenue": 362.40000200000003}, {"YearMonth": "2011-10", "CustomerCountry": "DK", "orders": 18, "revenue": 882.654999}, {"YearMonth": "2011-10", "CustomerCountry": "ES", "orders": 19, "revenue": 766.634705}, {"YearMonth": "2011-10", "CustomerCountry": "FI", "orders": 3, "revenue": 123.38999899999999}, {"YearMonth": "2011-10", "CustomerCountry": "FR", "orders": 25, "revenue": 950.524801}, {"YearMonth": "2011-10", "CustomerCountry": "GB", "orders": 2188, "revenue": 44817.702627}, {"YearMonth": "2011-10", "CustomerCountry": "GR", "orders": 13, "revenue": 398.849899}, {"YearMonth": "2011-10", "CustomerCountry": "IE", "orders": 64, "revenue": 2311.289684}, {"YearMonth": "2011-10", "CustomerCountry": "IT", "orders": 10, "revenue": 517.880003}, {"YearMonth": "2011-10", "CustomerCountry": "MT", "orders": 9, "revenue": 363.329793}, {"YearMonth": "2011-10", "CustomerCountry": "NL", "orders": 4, "revenue": 286.100002}, {"YearMonth": "2011-10", "CustomerCountry": "NO", "orders": 11, "revenue": 271.083501}, {"YearMonth": "2011-10", "CustomerCountry": "Other", "orders": 10, "revenue": 357.316498}, {"YearMonth": "2011-10", "CustomerCountry": "PT", "orders": 7, "revenue": 280.689998}, {"YearMonth": "2011-10", "CustomerCountry": "SI", "orders": 1, "revenue": 31.949899}, {"YearMonth": "2011-10", "CustomerCountry": "XX", "orders": 7, "revenue": 89.66669999999999}, {"YearMonth": "2011-11", "CustomerCountry": "BE", "orders": 4, "revenue": 88.749901}, {"YearMonth": "2011-11", "CustomerCountry": "CH", "orders": 4, "revenue": 102.041498}, {"YearMonth": "2011-11", "CustomerCountry": "CY", "orders": 4, "revenue": 280.349794}, {"YearMonth": "2011-11", "CustomerCountry": "DE", "orders": 7, "revenue": 250.549999}, {"YearMonth": "2011-11", "CustomerCountry": "DK", "orders": 16, "revenue": 782.299999}, {"YearMonth": "2011-11", "CustomerCountry": "ES", "orders": 35, "revenue": 1433.1797}, {"YearMonth": "2011-11", "CustomerCountry": "FI", "orders": 8, "revenue": 393.029898}, {"YearMonth": "2011-11", "CustomerCountry": "FR", "orders": 34, "revenue": 1013.370001}, {"YearMonth": "2011-11", "CustomerCountry": "GB", "orders": 2327, "revenue": 48120.102399999996}, {"YearMonth": "2011-11", "CustomerCountry": "GR", "orders": 9, "revenue": 381.349801}, {"YearMonth": "2011-11", "CustomerCountry": "IE", "orders": 56, "revenue": 1537.220001}, {"YearMonth": "2011-11", "CustomerCountry": "IT", "orders": 6, "revenue": 259.15999899999997}, {"YearMonth": "2011-11", "CustomerCountry": "MT", "orders": 5, "revenue": 148.755002}, {"YearMonth": "2011-11", "CustomerCountry": "NL", "orders": 4, "revenue": 99.30000000000001}, {"YearMonth": "2011-11", "CustomerCountry": "NO", "orders": 16, "revenue": 365.25003}, {"YearMonth": "2011-11", "CustomerCountry": "Other", "orders": 13, "revenue": 631.2898}, {"YearMonth": "2011-11", "CustomerCountry": "PT", "orders": 7, "revenue": 201.89000099999998}, {"YearMonth": "2011-11", "CustomerCountry": "SI", "orders": 6, "revenue": 408.499895}, {"YearMonth": "2011-11", "CustomerCountry": "XX", "orders": 4, "revenue": 59.116600000000005}, {"YearMonth": "2011-12", "CustomerCountry": "BE", "orders": 2, "revenue": 59.0968}, {"YearMonth": "2011-12", "CustomerCountry": "CH", "orders": 2, "revenue": 50.166601}, {"YearMonth": "2011-12", "CustomerCountry": "CY", "orders": 7, "revenue": 200.54989899999998}, {"YearMonth": "2011-12", "CustomerCountry": "DE", "orders": 6, "revenue": 410.550001}, {"YearMonth": "2011-12", "CustomerCountry": "DK", "orders": 12, "revenue": 539.0751}, {"YearMonth": "2011-12", "CustomerCountry": "ES", "orders": 25, "revenue": 754.709793}, {"YearMonth": "2011-12", "CustomerCountry": "FI", "orders": 1, "revenue": 45.040001}, {"YearMonth": "2011-12", "CustomerCountry": "FR", "orders": 27, "revenue": 992.196413}, {"YearMonth": "2011-12", "CustomerCountry": "GB", "orders": 1980, "revenue": 41727.022699}, {"YearMonth": "2011-12", "CustomerCountry": "GR", "orders": 16, "revenue": 828.665002}, {"YearMonth": "2011-12", "CustomerCountry": "IE", "orders": 48, "revenue": 1690.549902}, {"YearMonth": "2011-12", "CustomerCountry": "IT", "orders": 8, "revenue": 538.40989}, {"YearMonth": "2011-12", "CustomerCountry": "MT", "orders": 6, "revenue": 136.29989799999998}, {"YearMonth": "2011-12", "CustomerCountry": "NL", "orders": 6, "revenue": 153.549998}, {"YearMonth": "2011-12", "CustomerCountry": "NO", "orders": 12, "revenue": 243.137595}, {"YearMonth": "2011-12", "CustomerCountry": "Other", "orders": 20, "revenue": 660.294199}, {"YearMonth": "2011-12", "CustomerCountry": "PT", "orders": 11, "revenue": 479.629903}, {"YearMonth": "2011-12", "CustomerCountry": "SE", "orders": 1, "revenue": 13.95}, {"YearMonth": "2011-12", "CustomerCountry": "SI", "orders": 3, "revenue": 65.67999999999999}, {"YearMonth": "2011-12", "CustomerCountry": "XX", "orders": 4, "revenue": 61.545669000000004}, {"YearMonth": "2012-01", "CustomerCountry": "BE", "orders": 7, "revenue": 306.849998}, {"YearMonth": "2012-01", "CustomerCountry": "CH", "orders": 6, "revenue": 208.30804}, {"YearMonth": "2012-01", "CustomerCountry": "CY", "orders": 4, "revenue": 103.30489899999999}, {"YearMonth": "2012-01", "CustomerCountry": "DE", "orders": 14, "revenue": 548.56341}, {"YearMonth": "2012-01", "CustomerCountry": "DK", "orders": 19, "revenue": 900.421}, {"YearMonth": "2012-01", "CustomerCountry": "ES", "orders": 34, "revenue": 1457.5849990000002}, {"YearMonth": "2012-01", "CustomerCountry": "FI", "orders": 6, "revenue": 218.18}, {"YearMonth": "2012-01", "CustomerCountry": "FR", "orders": 41, "revenue": 1501.584795}, {"YearMonth": "2012-01", "CustomerCountry": "GB", "orders": 2820, "revenue": 62061.862771}, {"YearMonth": "2012-01", "CustomerCountry": "GR", "orders": 12, "revenue": 461.049894}, {"YearMonth": "2012-01", "CustomerCountry": "IE", "orders": 92, "revenue": 3238.754815}, {"YearMonth": "2012-01", "CustomerCountry": "IT", "orders": 13, "revenue": 552.866003}, {"YearMonth": "2012-01", "CustomerCountry": "MT", "orders": 7, "revenue": 225.875}, {"YearMonth": "2012-01", "CustomerCountry": "NL", "orders": 3, "revenue": 158.49249700000001}, {"YearMonth": "2012-01", "CustomerCountry": "NO", "orders": 18, "revenue": 416.349999}, {"YearMonth": "2012-01", "CustomerCountry": "Other", "orders": 11, "revenue": 439.750004}, {"YearMonth": "2012-01", "CustomerCountry": "PT", "orders": 7, "revenue": 319.04999899999996}, {"YearMonth": "2012-01", "CustomerCountry": "SE", "orders": 4, "revenue": 130.8}, {"YearMonth": "2012-01", "CustomerCountry": "SI", "orders": 10, "revenue": 444.249707}, {"YearMonth": "2012-01", "CustomerCountry": "XX", "orders": 2, "revenue": 42.966699999999996}, {"YearMonth": "2012-02", "CustomerCountry": "BE", "orders": 4, "revenue": 81.75}, {"YearMonth": "2012-02", "CustomerCountry": "CH", "orders": 6, "revenue": 173.875}, {"YearMonth": "2012-02", "CustomerCountry": "CY", "orders": 7, "revenue": 231.60000300000002}, {"YearMonth": "2012-02", "CustomerCountry": "DE", "orders": 6, "revenue": 202.55}, {"YearMonth": "2012-02", "CustomerCountry": "DK", "orders": 18, "revenue": 843.000008}, {"YearMonth": "2012-02", "CustomerCountry": "ES", "orders": 28, "revenue": 1271.279393}, {"YearMonth": "2012-02", "CustomerCountry": "FI", "orders": 3, "revenue": 60.349999999999994}, {"YearMonth": "2012-02", "CustomerCountry": "FR", "orders": 27, "revenue": 1026.799896}, {"YearMonth": "2012-02", "CustomerCountry": "GB", "orders": 2210, "revenue": 46513.30851}, {"YearMonth": "2012-02", "CustomerCountry": "GR", "orders": 14, "revenue": 700.449794}, {"YearMonth": "2012-02", "CustomerCountry": "IE", "orders": 71, "revenue": 2062.162207}, {"YearMonth": "2012-02", "CustomerCountry": "IT", "orders": 11, "revenue": 607.289993}, {"YearMonth": "2012-02", "CustomerCountry": "MT", "orders": 4, "revenue": 115.010002}, {"YearMonth": "2012-02", "CustomerCountry": "NL", "orders": 9, "revenue": 429.120001}, {"YearMonth": "2012-02", "CustomerCountry": "NO", "orders": 12, "revenue": 272.999997}, {"YearMonth": "2012-02", "CustomerCountry": "Other", "orders": 8, "revenue": 419.266595}, {"YearMonth": "2012-02", "CustomerCountry": "PT", "orders": 4, "revenue": 153.7499}, {"YearMonth": "2012-02", "CustomerCountry": "SE", "orders": 2, "revenue": 49.265}, {"YearMonth": "2012-02", "CustomerCountry": "SI", "orders": 1, "revenue": 23.45}, {"YearMonth": "2012-03", "CustomerCountry": "BE", "orders": 8, "revenue": 336.299999}, {"YearMonth": "2012-03", "CustomerCountry": "CH", "orders": 2, "revenue": 46.2083}, {"YearMonth": "2012-03", "CustomerCountry": "CY", "orders": 10, "revenue": 275.300001}, {"YearMonth": "2012-03", "CustomerCountry": "DE", "orders": 8, "revenue": 297.689998}, {"YearMonth": "2012-03", "CustomerCountry": "DK", "orders": 8, "revenue": 418.685004}, {"YearMonth": "2012-03", "CustomerCountry": "ES", "orders": 33, "revenue": 1215.939899}, {"YearMonth": "2012-03", "CustomerCountry": "FI", "orders": 5, "revenue": 303.54}, {"YearMonth": "2012-03", "CustomerCountry": "FR", "orders": 22, "revenue": 802.489896}, {"YearMonth": "2012-03", "CustomerCountry": "GB", "orders": 2017, "revenue": 45879.361766}, {"YearMonth": "2012-03", "CustomerCountry": "GR", "orders": 10, "revenue": 537.639899}, {"YearMonth": "2012-03", "CustomerCountry": "IE", "orders": 73, "revenue": 2112.729792}, {"YearMonth": "2012-03", "CustomerCountry": "IT", "orders": 8, "revenue": 414.199902}, {"YearMonth": "2012-03", "CustomerCountry": "MT", "orders": 6, "revenue": 174.25}, {"YearMonth": "2012-03", "CustomerCountry": "NL", "orders": 5, "revenue": 163.7999}, {"YearMonth": "2012-03", "CustomerCountry": "NO", "orders": 13, "revenue": 308.374798}, {"YearMonth": "2012-03", "CustomerCountry": "Other", "orders": 13, "revenue": 637.449695}, {"YearMonth": "2012-03", "CustomerCountry": "PT", "orders": 11, "revenue": 433.1}, {"YearMonth": "2012-03", "CustomerCountry": "SE", "orders": 2, "revenue": 316.850007}, {"YearMonth": "2012-03", "CustomerCountry": "SI", "orders": 3, "revenue": 150.449901}, {"YearMonth": "2012-04", "CustomerCountry": "BE", "orders": 3, "revenue": 145.599999}, {"YearMonth": "2012-04", "CustomerCountry": "CH", "orders": 10, "revenue": 234.06397099999998}, {"YearMonth": "2012-04", "CustomerCountry": "CY", "orders": 6, "revenue": 129.6}, {"YearMonth": "2012-04", "CustomerCountry": "DE", "orders": 7, "revenue": 266.750001}, {"YearMonth": "2012-04", "CustomerCountry": "DK", "orders": 16, "revenue": 744.779903}, {"YearMonth": "2012-04", "CustomerCountry": "ES", "orders": 27, "revenue": 965.241707}, {"YearMonth": "2012-04", "CustomerCountry": "FI", "orders": 4, "revenue": 203.629998}, {"YearMonth": "2012-04", "CustomerCountry": "FR", "orders": 27, "revenue": 1017.6448}, {"YearMonth": "2012-04", "CustomerCountry": "GB", "orders": 2110, "revenue": 47692.880914}, {"YearMonth": "2012-04", "CustomerCountry": "GR", "orders": 10, "revenue": 554.435003}, {"YearMonth": "2012-04", "CustomerCountry": "IE", "orders": 68, "revenue": 2306.807695}, {"YearMonth": "2012-04", "CustomerCountry": "IT", "orders": 6, "revenue": 268.355001}, {"YearMonth": "2012-04", "CustomerCountry": "MT", "orders": 2, "revenue": 69.65}, {"YearMonth": "2012-04", "CustomerCountry": "NL", "orders": 4, "revenue": 156.1}, {"YearMonth": "2012-04", "CustomerCountry": "NO", "orders": 16, "revenue": 344.320318}, {"YearMonth": "2012-04", "CustomerCountry": "Other", "orders": 8, "revenue": 473.583201}, {"YearMonth": "2012-04", "CustomerCountry": "PT", "orders": 9, "revenue": 349.189997}, {"YearMonth": "2012-04", "CustomerCountry": "SE", "orders": 2, "revenue": 47.849999999999994}, {"YearMonth": "2012-04", "CustomerCountry": "SI", "orders": 5, "revenue": 221.31000400000002}, {"YearMonth": "2012-05", "CustomerCountry": "BE", "orders": 8, "revenue": 367.13599899999997}, {"YearMonth": "2012-05", "CustomerCountry": "CH", "orders": 5, "revenue": 486.241901}, {"YearMonth": "2012-05", "CustomerCountry": "CY", "orders": 16, "revenue": 457.244801}, {"YearMonth": "2012-05", "CustomerCountry": "DE", "orders": 3, "revenue": 88.650001}, {"YearMonth": "2012-05", "CustomerCountry": "DK", "orders": 14, "revenue": 650.360005}, {"YearMonth": "2012-05", "CustomerCountry": "ES", "orders": 19, "revenue": 889.105003}, {"YearMonth": "2012-05", "CustomerCountry": "FI", "orders": 3, "revenue": 96.259998}, {"YearMonth": "2012-05", "CustomerCountry": "FR", "orders": 26, "revenue": 1268.849404}, {"YearMonth": "2012-05", "CustomerCountry": "GB", "orders": 2011, "revenue": 47189.73639}, {"YearMonth": "2012-05", "CustomerCountry": "GR", "orders": 10, "revenue": 523.399999}, {"YearMonth": "2012-05", "CustomerCountry": "IE", "orders": 57, "revenue": 2227.459701}, {"YearMonth": "2012-05", "CustomerCountry": "IT", "orders": 6, "revenue": 264.055}, {"YearMonth": "2012-05", "CustomerCountry": "MT", "orders": 5, "revenue": 161.849998}, {"YearMonth": "2012-05", "CustomerCountry": "NL", "orders": 8, "revenue": 302.825}, {"YearMonth": "2012-05", "CustomerCountry": "NO", "orders": 9, "revenue": 206.095742}, {"YearMonth": "2012-05", "CustomerCountry": "Other", "orders": 12, "revenue": 629.585773}, {"YearMonth": "2012-05", "CustomerCountry": "PT", "orders": 10, "revenue": 229.89999999999998}, {"YearMonth": "2012-05", "CustomerCountry": "SE", "orders": 2, "revenue": 160.67}, {"YearMonth": "2012-05", "CustomerCountry": "SI", "orders": 4, "revenue": 151.550001}, {"YearMonth": "2012-06", "CustomerCountry": "BE", "orders": 8, "revenue": 300.299998}, {"YearMonth": "2012-06", "CustomerCountry": "CH", "orders": 1, "revenue": 15.625}, {"YearMonth": "2012-06", "CustomerCountry": "CY", "orders": 7, "revenue": 259.455}, {"YearMonth": "2012-06", "CustomerCountry": "DE", "orders": 4, "revenue": 145.650002}, {"YearMonth": "2012-06", "CustomerCountry": "DK", "orders": 14, "revenue": 698.4824}, {"YearMonth": "2012-06", "CustomerCountry": "ES", "orders": 26, "revenue": 1281.344488}, {"YearMonth": "2012-06", "CustomerCountry": "FI", "orders": 4, "revenue": 208.635}, {"YearMonth": "2012-06", "CustomerCountry": "FR", "orders": 31, "revenue": 1305.868293}, {"YearMonth": "2012-06", "CustomerCountry": "GB", "orders": 1729, "revenue": 42425.881726}, {"YearMonth": "2012-06", "CustomerCountry": "GR", "orders": 10, "revenue": 328.199898}, {"YearMonth": "2012-06", "CustomerCountry": "IE", "orders": 38, "revenue": 1219.219008}, {"YearMonth": "2012-06", "CustomerCountry": "IT", "orders": 11, "revenue": 458.544914}, {"YearMonth": "2012-06", "CustomerCountry": "MT", "orders": 3, "revenue": 116.95489900000001}, {"YearMonth": "2012-06", "CustomerCountry": "NL", "orders": 6, "revenue": 292.59999799999997}, {"YearMonth": "2012-06", "CustomerCountry": "NO", "orders": 9, "revenue": 194.974798}, {"YearMonth": "2012-06", "CustomerCountry": "Other", "orders": 10, "revenue": 535.683578}, {"YearMonth": "2012-06", "CustomerCountry": "PT", "orders": 14, "revenue": 520.543802}, {"YearMonth": "2012-06", "CustomerCountry": "SE", "orders": 4, "revenue": 109.41000199999999}, {"YearMonth": "2012-06", "CustomerCountry": "SI", "orders": 1, "revenue": 91.200003}, {"YearMonth": "2012-07", "CustomerCountry": "BE", "orders": 5, "revenue": 223.306041}, {"YearMonth": "2012-07", "CustomerCountry": "CH", "orders": 2, "revenue": 82.375}, {"YearMonth": "2012-07", "CustomerCountry": "CY", "orders": 4, "revenue": 127.25536}, {"YearMonth": "2012-07", "CustomerCountry": "DE", "orders": 7, "revenue": 230.36848}, {"YearMonth": "2012-07", "CustomerCountry": "DK", "orders": 17, "revenue": 693.8518389999999}, {"YearMonth": "2012-07", "CustomerCountry": "ES", "orders": 17, "revenue": 844.439116}, {"YearMonth": "2012-07", "CustomerCountry": "FI", "orders": 3, "revenue": 188.794802}, {"YearMonth": "2012-07", "CustomerCountry": "FR", "orders": 21, "revenue": 782.541442}, {"YearMonth": "2012-07", "CustomerCountry": "GB", "orders": 1775, "revenue": 41269.229029}, {"YearMonth": "2012-07", "CustomerCountry": "GR", "orders": 7, "revenue": 559.498922}, {"YearMonth": "2012-07", "CustomerCountry": "IE", "orders": 47, "revenue": 2030.5922879999998}, {"YearMonth": "2012-07", "CustomerCountry": "IT", "orders": 5, "revenue": 125.21468}, {"YearMonth": "2012-07", "CustomerCountry": "MT", "orders": 5, "revenue": 170.648}, {"YearMonth": "2012-07", "CustomerCountry": "NL", "orders": 3, "revenue": 152.0354}, {"YearMonth": "2012-07", "CustomerCountry": "NO", "orders": 9, "revenue": 185.623}, {"YearMonth": "2012-07", "CustomerCountry": "Other", "orders": 2, "revenue": 54.388921}, {"YearMonth": "2012-07", "CustomerCountry": "PT", "orders": 7, "revenue": 215.407239}, {"YearMonth": "2012-07", "CustomerCountry": "SE", "orders": 4, "revenue": 168.4042}, {"YearMonth": "2012-07", "CustomerCountry": "SI", "orders": 2, "revenue": 104.2496}, {"YearMonth": "2012-07", "CustomerCountry": "XX", "orders": 8, "revenue": 165.50039999999998}, {"YearMonth": "2012-08", "CustomerCountry": "BE", "orders": 3, "revenue": 118.69919999999999}, {"YearMonth": "2012-08", "CustomerCountry": "CH", "orders": 4, "revenue": 94.8962}, {"YearMonth": "2012-08", "CustomerCountry": "CY", "orders": 2, "revenue": 38.9}, {"YearMonth": "2012-08", "CustomerCountry": "DE", "orders": 3, "revenue": 71.77036000000001}, {"YearMonth": "2012-08", "CustomerCountry": "DK", "orders": 13, "revenue": 611.3898419999999}, {"YearMonth": "2012-08", "CustomerCountry": "ES", "orders": 15, "revenue": 509.827321}, {"YearMonth": "2012-08", "CustomerCountry": "FI", "orders": 7, "revenue": 270.556961}, {"YearMonth": "2012-08", "CustomerCountry": "FR", "orders": 31, "revenue": 1249.26996}, {"YearMonth": "2012-08", "CustomerCountry": "GB", "orders": 1756, "revenue": 42072.206522}, {"YearMonth": "2012-08", "CustomerCountry": "GR", "orders": 4, "revenue": 668.010829}, {"YearMonth": "2012-08", "CustomerCountry": "IE", "orders": 45, "revenue": 1626.883282}, {"YearMonth": "2012-08", "CustomerCountry": "IT", "orders": 5, "revenue": 232.967899}, {"YearMonth": "2012-08", "CustomerCountry": "MT", "orders": 4, "revenue": 65.7496}, {"YearMonth": "2012-08", "CustomerCountry": "NL", "orders": 3, "revenue": 72.25464000000001}, {"YearMonth": "2012-08", "CustomerCountry": "NO", "orders": 7, "revenue": 159.667}, {"YearMonth": "2012-08", "CustomerCountry": "Other", "orders": 8, "revenue": 274.11736}, {"YearMonth": "2012-08", "CustomerCountry": "PT", "orders": 6, "revenue": 240.058}, {"YearMonth": "2012-08", "CustomerCountry": "SE", "orders": 3, "revenue": 105.69959999999999}, {"YearMonth": "2012-08", "CustomerCountry": "SI", "orders": 1, "revenue": 72.26464}, {"YearMonth": "2012-08", "CustomerCountry": "XX", "orders": 6, "revenue": 120.868}, {"YearMonth": "2012-09", "CustomerCountry": "BE", "orders": 4, "revenue": 204.11848}, {"YearMonth": "2012-09", "CustomerCountry": "CH", "orders": 8, "revenue": 225.38549899999998}, {"YearMonth": "2012-09", "CustomerCountry": "CY", "orders": 5, "revenue": 205.44920000000002}, {"YearMonth": "2012-09", "CustomerCountry": "DE", "orders": 3, "revenue": 80.85000000000001}, {"YearMonth": "2012-09", "CustomerCountry": "DK", "orders": 17, "revenue": 701.644397}, {"YearMonth": "2012-09", "CustomerCountry": "ES", "orders": 22, "revenue": 655.75584}, {"YearMonth": "2012-09", "CustomerCountry": "FI", "orders": 4, "revenue": 283.349194}, {"YearMonth": "2012-09", "CustomerCountry": "FR", "orders": 39, "revenue": 1629.779557}, {"YearMonth": "2012-09", "CustomerCountry": "GB", "orders": 2057, "revenue": 47791.775555}, {"YearMonth": "2012-09", "CustomerCountry": "GR", "orders": 6, "revenue": 178.289601}, {"YearMonth": "2012-09", "CustomerCountry": "IE", "orders": 40, "revenue": 1396.2846}, {"YearMonth": "2012-09", "CustomerCountry": "IT", "orders": 3, "revenue": 171.4488}, {"YearMonth": "2012-09", "CustomerCountry": "MT", "orders": 11, "revenue": 410.130801}, {"YearMonth": "2012-09", "CustomerCountry": "NL", "orders": 2, "revenue": 67.8488}, {"YearMonth": "2012-09", "CustomerCountry": "NO", "orders": 7, "revenue": 137.667001}, {"YearMonth": "2012-09", "CustomerCountry": "Other", "orders": 5, "revenue": 232.067}, {"YearMonth": "2012-09", "CustomerCountry": "PT", "orders": 12, "revenue": 545.5872019999999}, {"YearMonth": "2012-09", "CustomerCountry": "SE", "orders": 1, "revenue": 45.85}, {"YearMonth": "2012-09", "CustomerCountry": "SI", "orders": 1, "revenue": 19.9504}, {"YearMonth": "2012-09", "CustomerCountry": "XX", "orders": 8, "revenue": 459.283199}, {"YearMonth": "2012-10", "CustomerCountry": "BE", "orders": 6, "revenue": 293.047201}, {"YearMonth": "2012-10", "CustomerCountry": "CH", "orders": 8, "revenue": 487.712603}, {"YearMonth": "2012-10", "CustomerCountry": "CY", "orders": 5, "revenue": 203.45239899999999}, {"YearMonth": "2012-10", "CustomerCountry": "DE", "orders": 9, "revenue": 273.252}, {"YearMonth": "2012-10", "CustomerCountry": "DK", "orders": 14, "revenue": 877.751609}, {"YearMonth": "2012-10", "CustomerCountry": "ES", "orders": 29, "revenue": 1312.559841}, {"YearMonth": "2012-10", "CustomerCountry": "FI", "orders": 2, "revenue": 53.849599999999995}, {"YearMonth": "2012-10", "CustomerCountry": "FR", "orders": 29, "revenue": 1361.378802}, {"YearMonth": "2012-10", "CustomerCountry": "GB", "orders": 2101, "revenue": 47667.731602}, {"YearMonth": "2012-10", "CustomerCountry": "GR", "orders": 9, "revenue": 295.339201}, {"YearMonth": "2012-10", "CustomerCountry": "IE", "orders": 72, "revenue": 2499.801199}, {"YearMonth": "2012-10", "CustomerCountry": "IT", "orders": 16, "revenue": 789.927939}, {"YearMonth": "2012-10", "CustomerCountry": "MT", "orders": 13, "revenue": 416.5972}, {"YearMonth": "2012-10", "CustomerCountry": "NL", "orders": 3, "revenue": 81.80000000000001}, {"YearMonth": "2012-10", "CustomerCountry": "NO", "orders": 19, "revenue": 566.687201}, {"YearMonth": "2012-10", "CustomerCountry": "Other", "orders": 4, "revenue": 151.48319899999998}, {"YearMonth": "2012-10", "CustomerCountry": "PT", "orders": 9, "revenue": 402.950001}, {"YearMonth": "2012-10", "CustomerCountry": "SE", "orders": 11, "revenue": 489.2}, {"YearMonth": "2012-10", "CustomerCountry": "SI", "orders": 6, "revenue": 331.001999}, {"YearMonth": "2012-10", "CustomerCountry": "XX", "orders": 8, "revenue": 265.17299799999995}, {"YearMonth": "2012-11", "CustomerCountry": "BE", "orders": 5, "revenue": 307.006277}, {"YearMonth": "2012-11", "CustomerCountry": "CH", "orders": 4, "revenue": 136.16}, {"YearMonth": "2012-11", "CustomerCountry": "CY", "orders": 6, "revenue": 355.919161}, {"YearMonth": "2012-11", "CustomerCountry": "DE", "orders": 5, "revenue": 151.570279}, {"YearMonth": "2012-11", "CustomerCountry": "DK", "orders": 18, "revenue": 921.479519}, {"YearMonth": "2012-11", "CustomerCountry": "ES", "orders": 27, "revenue": 977.786441}, {"YearMonth": "2012-11", "CustomerCountry": "FI", "orders": 9, "revenue": 450.180001}, {"YearMonth": "2012-11", "CustomerCountry": "FR", "orders": 25, "revenue": 906.3655180000001}, {"YearMonth": "2012-11", "CustomerCountry": "GB", "orders": 2028, "revenue": 46927.581544}, {"YearMonth": "2012-11", "CustomerCountry": "GR", "orders": 10, "revenue": 310.0996}, {"YearMonth": "2012-11", "CustomerCountry": "IE", "orders": 69, "revenue": 2249.490883}, {"YearMonth": "2012-11", "CustomerCountry": "IT", "orders": 14, "revenue": 848.647754}, {"YearMonth": "2012-11", "CustomerCountry": "MT", "orders": 5, "revenue": 191.11448}, {"YearMonth": "2012-11", "CustomerCountry": "NL", "orders": 4, "revenue": 105.45456}, {"YearMonth": "2012-11", "CustomerCountry": "NO", "orders": 13, "revenue": 249.942641}, {"YearMonth": "2012-11", "CustomerCountry": "Other", "orders": 8, "revenue": 549.051695}, {"YearMonth": "2012-11", "CustomerCountry": "PT", "orders": 10, "revenue": 267.55576}, {"YearMonth": "2012-11", "CustomerCountry": "SE", "orders": 7, "revenue": 199.50039999999998}, {"YearMonth": "2012-11", "CustomerCountry": "SI", "orders": 6, "revenue": 262.25664}, {"YearMonth": "2012-11", "CustomerCountry": "XX", "orders": 1, "revenue": 29.5}, {"YearMonth": "2012-12", "CustomerCountry": "BE", "orders": 1, "revenue": 191.103998}, {"YearMonth": "2012-12", "CustomerCountry": "CH", "orders": 5, "revenue": 223.556196}, {"YearMonth": "2012-12", "CustomerCountry": "CY", "orders": 2, "revenue": 31.900399999999998}, {"YearMonth": "2012-12", "CustomerCountry": "DE", "orders": 8, "revenue": 350.671279}, {"YearMonth": "2012-12", "CustomerCountry": "DK", "orders": 8, "revenue": 462.742399}, {"YearMonth": "2012-12", "CustomerCountry": "ES", "orders": 23, "revenue": 711.732879}, {"YearMonth": "2012-12", "CustomerCountry": "FI", "orders": 4, "revenue": 190.062762}, {"YearMonth": "2012-12", "CustomerCountry": "FR", "orders": 22, "revenue": 1055.550806}, {"YearMonth": "2012-12", "CustomerCountry": "GB", "orders": 1528, "revenue": 33995.154958}, {"YearMonth": "2012-12", "CustomerCountry": "GR", "orders": 8, "revenue": 594.076639}, {"YearMonth": "2012-12", "CustomerCountry": "IE", "orders": 42, "revenue": 1282.334401}, {"YearMonth": "2012-12", "CustomerCountry": "IT", "orders": 11, "revenue": 340.53736}, {"YearMonth": "2012-12", "CustomerCountry": "MT", "orders": 4, "revenue": 105.85000000000001}, {"YearMonth": "2012-12", "CustomerCountry": "NL", "orders": 2, "revenue": 112.7}, {"YearMonth": "2012-12", "CustomerCountry": "NO", "orders": 10, "revenue": 280.465799}, {"YearMonth": "2012-12", "CustomerCountry": "Other", "orders": 1, "revenue": 24.709}, {"YearMonth": "2012-12", "CustomerCountry": "PT", "orders": 16, "revenue": 787.9298799999999}, {"YearMonth": "2012-12", "CustomerCountry": "SE", "orders": 5, "revenue": 104.752}, {"YearMonth": "2012-12", "CustomerCountry": "SI", "orders": 6, "revenue": 359.3748}, {"YearMonth": "2013-01", "CustomerCountry": "BE", "orders": 12, "revenue": 428.928118}, {"YearMonth": "2013-01", "CustomerCountry": "CH", "orders": 12, "revenue": 386.176921}, {"YearMonth": "2013-01", "CustomerCountry": "CY", "orders": 6, "revenue": 200.7996}, {"YearMonth": "2013-01", "CustomerCountry": "DE", "orders": 8, "revenue": 296.652442}, {"YearMonth": "2013-01", "CustomerCountry": "DK", "orders": 27, "revenue": 1487.707037}, {"YearMonth": "2013-01", "CustomerCountry": "ES", "orders": 30, "revenue": 1107.469599}, {"YearMonth": "2013-01", "CustomerCountry": "FI", "orders": 9, "revenue": 704.470306}, {"YearMonth": "2013-01", "CustomerCountry": "FR", "orders": 39, "revenue": 1305.63832}, {"YearMonth": "2013-01", "CustomerCountry": "GB", "orders": 2375, "revenue": 55984.344141}, {"YearMonth": "2013-01", "CustomerCountry": "GR", "orders": 13, "revenue": 666.506434}, {"YearMonth": "2013-01", "CustomerCountry": "IE", "orders": 91, "revenue": 3789.316681}, {"YearMonth": "2013-01", "CustomerCountry": "IT", "orders": 18, "revenue": 902.702291}, {"YearMonth": "2013-01", "CustomerCountry": "MT", "orders": 7, "revenue": 240.495401}, {"YearMonth": "2013-01", "CustomerCountry": "NL", "orders": 4, "revenue": 299.6968}, {"YearMonth": "2013-01", "CustomerCountry": "NO", "orders": 28, "revenue": 708.7886}, {"YearMonth": "2013-01", "CustomerCountry": "Other", "orders": 18, "revenue": 1072.1843039999999}, {"YearMonth": "2013-01", "CustomerCountry": "PT", "orders": 16, "revenue": 801.542717}, {"YearMonth": "2013-01", "CustomerCountry": "SE", "orders": 8, "revenue": 199.890799}, {"YearMonth": "2013-01", "CustomerCountry": "SI", "orders": 10, "revenue": 567.677803}, {"YearMonth": "2013-01", "CustomerCountry": "XX", "orders": 1, "revenue": 14.958}, {"YearMonth": "2013-02", "CustomerCountry": "BE", "orders": 8, "revenue": 390.801201}, {"YearMonth": "2013-02", "CustomerCountry": "CH", "orders": 4, "revenue": 100.042849}, {"YearMonth": "2013-02", "CustomerCountry": "CY", "orders": 3, "revenue": 144.9}, {"YearMonth": "2013-02", "CustomerCountry": "DE", "orders": 8, "revenue": 213.5012}, {"YearMonth": "2013-02", "CustomerCountry": "DK", "orders": 19, "revenue": 686.349999}, {"YearMonth": "2013-02", "CustomerCountry": "ES", "orders": 25, "revenue": 939.293201}, {"YearMonth": "2013-02", "CustomerCountry": "FI", "orders": 2, "revenue": 103.9496}, {"YearMonth": "2013-02", "CustomerCountry": "FR", "orders": 35, "revenue": 1429.00052}, {"YearMonth": "2013-02", "CustomerCountry": "GB", "orders": 1764, "revenue": 38764.110922}, {"YearMonth": "2013-02", "CustomerCountry": "GR", "orders": 15, "revenue": 406.898801}, {"YearMonth": "2013-02", "CustomerCountry": "IE", "orders": 55, "revenue": 1870.338882}, {"YearMonth": "2013-02", "CustomerCountry": "IT", "orders": 14, "revenue": 573.399199}, {"YearMonth": "2013-02", "CustomerCountry": "MT", "orders": 3, "revenue": 102.3}, {"YearMonth": "2013-02", "CustomerCountry": "NL", "orders": 5, "revenue": 196.74880000000002}, {"YearMonth": "2013-02", "CustomerCountry": "NO", "orders": 15, "revenue": 310.544999}, {"YearMonth": "2013-02", "CustomerCountry": "Other", "orders": 13, "revenue": 551.371601}, {"YearMonth": "2013-02", "CustomerCountry": "PT", "orders": 10, "revenue": 507.104798}, {"YearMonth": "2013-02", "CustomerCountry": "SE", "orders": 9, "revenue": 344.9988}, {"YearMonth": "2013-02", "CustomerCountry": "SI", "orders": 3, "revenue": 96.0492}, {"YearMonth": "2013-02", "CustomerCountry": "XX", "orders": 1, "revenue": 14.084}, {"YearMonth": "2013-03", "CustomerCountry": "BE", "orders": 5, "revenue": 329.263287}, {"YearMonth": "2013-03", "CustomerCountry": "CH", "orders": 9, "revenue": 327.679103}, {"YearMonth": "2013-03", "CustomerCountry": "CY", "orders": 3, "revenue": 153.98543999999998}, {"YearMonth": "2013-03", "CustomerCountry": "DE", "orders": 8, "revenue": 285.26696}, {"YearMonth": "2013-03", "CustomerCountry": "DK", "orders": 20, "revenue": 874.6305209999999}, {"YearMonth": "2013-03", "CustomerCountry": "ES", "orders": 35, "revenue": 1218.471558}, {"YearMonth": "2013-03", "CustomerCountry": "FI", "orders": 3, "revenue": 90.820319}, {"YearMonth": "2013-03", "CustomerCountry": "FR", "orders": 34, "revenue": 1188.4942}, {"YearMonth": "2013-03", "CustomerCountry": "GB", "orders": 2224, "revenue": 51685.218363}, {"YearMonth": "2013-03", "CustomerCountry": "GR", "orders": 16, "revenue": 891.808409}, {"YearMonth": "2013-03", "CustomerCountry": "IE", "orders": 78, "revenue": 2870.063039}, {"YearMonth": "2013-03", "CustomerCountry": "IT", "orders": 20, "revenue": 849.8549790000001}, {"YearMonth": "2013-03", "CustomerCountry": "MT", "orders": 15, "revenue": 565.02264}, {"YearMonth": "2013-03", "CustomerCountry": "NL", "orders": 4, "revenue": 309.723278}, {"YearMonth": "2013-03", "CustomerCountry": "NO", "orders": 21, "revenue": 428.1944}, {"YearMonth": "2013-03", "CustomerCountry": "Other", "orders": 15, "revenue": 717.81864}, {"YearMonth": "2013-03", "CustomerCountry": "PT", "orders": 14, "revenue": 576.823481}, {"YearMonth": "2013-03", "CustomerCountry": "SE", "orders": 5, "revenue": 216.348921}, {"YearMonth": "2013-03", "CustomerCountry": "SI", "orders": 4, "revenue": 233.172762}, {"YearMonth": "2013-03", "CustomerCountry": "XX", "orders": 3, "revenue": 108.7612}, {"YearMonth": "2013-04", "CustomerCountry": "BE", "orders": 12, "revenue": 461.095922}, {"YearMonth": "2013-04", "CustomerCountry": "CH", "orders": 14, "revenue": 395.4323}, {"YearMonth": "2013-04", "CustomerCountry": "CY", "orders": 3, "revenue": 98.7012}, {"YearMonth": "2013-04", "CustomerCountry": "DE", "orders": 8, "revenue": 352.851199}, {"YearMonth": "2013-04", "CustomerCountry": "DK", "orders": 19, "revenue": 772.916443}, {"YearMonth": "2013-04", "CustomerCountry": "ES", "orders": 40, "revenue": 2007.703284}, {"YearMonth": "2013-04", "CustomerCountry": "FI", "orders": 10, "revenue": 273.34799999999996}, {"YearMonth": "2013-04", "CustomerCountry": "FR", "orders": 43, "revenue": 1487.561487}, {"YearMonth": "2013-04", "CustomerCountry": "GB", "orders": 2254, "revenue": 52626.293614}, {"YearMonth": "2013-04", "CustomerCountry": "GR", "orders": 20, "revenue": 1123.084161}, {"YearMonth": "2013-04", "CustomerCountry": "IE", "orders": 63, "revenue": 2271.522603}, {"YearMonth": "2013-04", "CustomerCountry": "IT", "orders": 15, "revenue": 522.28084}, {"YearMonth": "2013-04", "CustomerCountry": "MT", "orders": 11, "revenue": 377.23416000000003}, {"YearMonth": "2013-04", "CustomerCountry": "NL", "orders": 4, "revenue": 199.757201}, {"YearMonth": "2013-04", "CustomerCountry": "NO", "orders": 17, "revenue": 336.701001}, {"YearMonth": "2013-04", "CustomerCountry": "Other", "orders": 11, "revenue": 507.118}, {"YearMonth": "2013-04", "CustomerCountry": "PT", "orders": 13, "revenue": 635.501323}, {"YearMonth": "2013-04", "CustomerCountry": "SE", "orders": 5, "revenue": 250.3508}, {"YearMonth": "2013-04", "CustomerCountry": "SI", "orders": 3, "revenue": 73.07004}, {"YearMonth": "2013-04", "CustomerCountry": "XX", "orders": 4, "revenue": 85.7879}, {"YearMonth": "2013-05", "CustomerCountry": "BE", "orders": 12, "revenue": 588.5988}, {"YearMonth": "2013-05", "CustomerCountry": "CH", "orders": 11, "revenue": 426.063602}, {"YearMonth": "2013-05", "CustomerCountry": "CY", "orders": 7, "revenue": 319.447601}, {"YearMonth": "2013-05", "CustomerCountry": "DE", "orders": 8, "revenue": 289.040401}, {"YearMonth": "2013-05", "CustomerCountry": "DK", "orders": 11, "revenue": 443.151201}, {"YearMonth": "2013-05", "CustomerCountry": "ES", "orders": 30, "revenue": 1294.394002}, {"YearMonth": "2013-05", "CustomerCountry": "FI", "orders": 1, "revenue": 47.05}, {"YearMonth": "2013-05", "CustomerCountry": "FR", "orders": 28, "revenue": 1195.367401}, {"YearMonth": "2013-05", "CustomerCountry": "GB", "orders": 2281, "revenue": 48295.160145}, {"YearMonth": "2013-05", "CustomerCountry": "GR", "orders": 12, "revenue": 680.027997}, {"YearMonth": "2013-05", "CustomerCountry": "IE", "orders": 59, "revenue": 1880.921202}, {"YearMonth": "2013-05", "CustomerCountry": "IT", "orders": 17, "revenue": 683.298802}, {"YearMonth": "2013-05", "CustomerCountry": "MT", "orders": 6, "revenue": 203.7996}, {"YearMonth": "2013-05", "CustomerCountry": "NL", "orders": 3, "revenue": 154.1496}, {"YearMonth": "2013-05", "CustomerCountry": "NO", "orders": 16, "revenue": 326.25}, {"YearMonth": "2013-05", "CustomerCountry": "Other", "orders": 7, "revenue": 323.775799}, {"YearMonth": "2013-05", "CustomerCountry": "PT", "orders": 12, "revenue": 407.111041}, {"YearMonth": "2013-05", "CustomerCountry": "SE", "orders": 8, "revenue": 314.6984}, {"YearMonth": "2013-05", "CustomerCountry": "SI", "orders": 6, "revenue": 303.25079900000003}, {"YearMonth": "2013-05", "CustomerCountry": "XX", "orders": 3, "revenue": 39.874}, {"YearMonth": "2013-06", "CustomerCountry": "BE", "orders": 4, "revenue": 463.988108}, {"YearMonth": "2013-06", "CustomerCountry": "CH", "orders": 9, "revenue": 287.518601}, {"YearMonth": "2013-06", "CustomerCountry": "CY", "orders": 3, "revenue": 98.0004}, {"YearMonth": "2013-06", "CustomerCountry": "DE", "orders": 6, "revenue": 291.828801}, {"YearMonth": "2013-06", "CustomerCountry": "DK", "orders": 17, "revenue": 860.563033}, {"YearMonth": "2013-06", "CustomerCountry": "ES", "orders": 38, "revenue": 1604.798436}, {"YearMonth": "2013-06", "CustomerCountry": "FI", "orders": 5, "revenue": 162.33464}, {"YearMonth": "2013-06", "CustomerCountry": "FR", "orders": 27, "revenue": 1109.24992}, {"YearMonth": "2013-06", "CustomerCountry": "GB", "orders": 2419, "revenue": 52672.530931}, {"YearMonth": "2013-06", "CustomerCountry": "GR", "orders": 19, "revenue": 1811.5824479999999}, {"YearMonth": "2013-06", "CustomerCountry": "IE", "orders": 81, "revenue": 3027.600715}, {"YearMonth": "2013-06", "CustomerCountry": "IT", "orders": 9, "revenue": 337.099561}, {"YearMonth": "2013-06", "CustomerCountry": "MT", "orders": 8, "revenue": 319.802601}, {"YearMonth": "2013-06", "CustomerCountry": "NL", "orders": 3, "revenue": 276.32424100000003}, {"YearMonth": "2013-06", "CustomerCountry": "NO", "orders": 23, "revenue": 537.250198}, {"YearMonth": "2013-06", "CustomerCountry": "Other", "orders": 9, "revenue": 385.84256}, {"YearMonth": "2013-06", "CustomerCountry": "PT", "orders": 14, "revenue": 659.1617219999999}, {"YearMonth": "2013-06", "CustomerCountry": "SE", "orders": 13, "revenue": 747.681675}, {"YearMonth": "2013-06", "CustomerCountry": "SI", "orders": 5, "revenue": 155.6012}, {"YearMonth": "2013-06", "CustomerCountry": "XX", "orders": 4, "revenue": 88.958}, {"YearMonth": "2013-07", "CustomerCountry": "BE", "orders": 6, "revenue": 193.4484}, {"YearMonth": "2013-07", "CustomerCountry": "CH", "orders": 5, "revenue": 189.983002}, {"YearMonth": "2013-07", "CustomerCountry": "CY", "orders": 6, "revenue": 331.150799}, {"YearMonth": "2013-07", "CustomerCountry": "DE", "orders": 7, "revenue": 320.8924}, {"YearMonth": "2013-07", "CustomerCountry": "DK", "orders": 19, "revenue": 721.7808}, {"YearMonth": "2013-07", "CustomerCountry": "ES", "orders": 33, "revenue": 1104.199999}, {"YearMonth": "2013-07", "CustomerCountry": "FI", "orders": 2, "revenue": 55.8488}, {"YearMonth": "2013-07", "CustomerCountry": "FR", "orders": 39, "revenue": 1688.794801}, {"YearMonth": "2013-07", "CustomerCountry": "GB", "orders": 2104, "revenue": 46709.840776}, {"YearMonth": "2013-07", "CustomerCountry": "GR", "orders": 8, "revenue": 220.738001}, {"YearMonth": "2013-07", "CustomerCountry": "IE", "orders": 50, "revenue": 2059.109611}, {"YearMonth": "2013-07", "CustomerCountry": "IT", "orders": 10, "revenue": 434.552399}, {"YearMonth": "2013-07", "CustomerCountry": "MT", "orders": 6, "revenue": 238.390401}, {"YearMonth": "2013-07", "CustomerCountry": "NO", "orders": 7, "revenue": 182.834}, {"YearMonth": "2013-07", "CustomerCountry": "Other", "orders": 5, "revenue": 141.724001}, {"YearMonth": "2013-07", "CustomerCountry": "PT", "orders": 6, "revenue": 352.540797}, {"YearMonth": "2013-07", "CustomerCountry": "SE", "orders": 3, "revenue": 103.7504}, {"YearMonth": "2013-07", "CustomerCountry": "SI", "orders": 4, "revenue": 103.548001}, {"YearMonth": "2013-07", "CustomerCountry": "XX", "orders": 1, "revenue": 22.9504}, {"YearMonth": "2013-08", "CustomerCountry": "BE", "orders": 7, "revenue": 326.079597}, {"YearMonth": "2013-08", "CustomerCountry": "CH", "orders": 5, "revenue": 137.0}, {"YearMonth": "2013-08", "CustomerCountry": "CY", "orders": 5, "revenue": 173.1488}, {"YearMonth": "2013-08", "CustomerCountry": "DE", "orders": 5, "revenue": 186.3008}, {"YearMonth": "2013-08", "CustomerCountry": "DK", "orders": 14, "revenue": 498.984801}, {"YearMonth": "2013-08", "CustomerCountry": "ES", "orders": 23, "revenue": 952.9060039999999}, {"YearMonth": "2013-08", "CustomerCountry": "FI", "orders": 10, "revenue": 488.504804}, {"YearMonth": "2013-08", "CustomerCountry": "FR", "orders": 25, "revenue": 1210.2996}, {"YearMonth": "2013-08", "CustomerCountry": "GB", "orders": 2004, "revenue": 44029.11247}, {"YearMonth": "2013-08", "CustomerCountry": "GR", "orders": 8, "revenue": 476.9919990000001}, {"YearMonth": "2013-08", "CustomerCountry": "IE", "orders": 59, "revenue": 2491.0812029999997}, {"YearMonth": "2013-08", "CustomerCountry": "IT", "orders": 12, "revenue": 556.592}, {"YearMonth": "2013-08", "CustomerCountry": "MT", "orders": 13, "revenue": 395.491599}, {"YearMonth": "2013-08", "CustomerCountry": "NL", "orders": 1, "revenue": 29.9008}, {"YearMonth": "2013-08", "CustomerCountry": "NO", "orders": 18, "revenue": 353.110001}, {"YearMonth": "2013-08", "CustomerCountry": "Other", "orders": 8, "revenue": 181.178}, {"YearMonth": "2013-08", "CustomerCountry": "PT", "orders": 8, "revenue": 246.488001}, {"YearMonth": "2013-08", "CustomerCountry": "SE", "orders": 4, "revenue": 158.6008}, {"YearMonth": "2013-08", "CustomerCountry": "SI", "orders": 5, "revenue": 221.94920000000002}, {"YearMonth": "2013-08", "CustomerCountry": "XX", "orders": 4, "revenue": 71.4504}, {"YearMonth": "2013-09", "CustomerCountry": "BE", "orders": 8, "revenue": 334.97}, {"YearMonth": "2013-09", "CustomerCountry": "CH", "orders": 11, "revenue": 239.9291}, {"YearMonth": "2013-09", "CustomerCountry": "CY", "orders": 9, "revenue": 434.410681}, {"YearMonth": "2013-09", "CustomerCountry": "DE", "orders": 13, "revenue": 681.7204}, {"YearMonth": "2013-09", "CustomerCountry": "DK", "orders": 21, "revenue": 847.338601}, {"YearMonth": "2013-09", "CustomerCountry": "ES", "orders": 39, "revenue": 1553.735208}, {"YearMonth": "2013-09", "CustomerCountry": "FI", "orders": 10, "revenue": 562.193802}, {"YearMonth": "2013-09", "CustomerCountry": "FR", "orders": 37, "revenue": 1720.126202}, {"YearMonth": "2013-09", "CustomerCountry": "GB", "orders": 2300, "revenue": 52370.588714}, {"YearMonth": "2013-09", "CustomerCountry": "GR", "orders": 13, "revenue": 814.363601}, {"YearMonth": "2013-09", "CustomerCountry": "IE", "orders": 100, "revenue": 3951.333807}, {"YearMonth": "2013-09", "CustomerCountry": "IT", "orders": 18, "revenue": 750.998638}, {"YearMonth": "2013-09", "CustomerCountry": "MT", "orders": 7, "revenue": 253.219121}, {"YearMonth": "2013-09", "CustomerCountry": "NL", "orders": 4, "revenue": 255.384761}, {"YearMonth": "2013-09", "CustomerCountry": "NO", "orders": 23, "revenue": 459.01030000000003}, {"YearMonth": "2013-09", "CustomerCountry": "Other", "orders": 15, "revenue": 721.312263}, {"YearMonth": "2013-09", "CustomerCountry": "PT", "orders": 10, "revenue": 501.800559}, {"YearMonth": "2013-09", "CustomerCountry": "SE", "orders": 9, "revenue": 309.8838}, {"YearMonth": "2013-09", "CustomerCountry": "SI", "orders": 8, "revenue": 700.968312}, {"YearMonth": "2013-09", "CustomerCountry": "XX", "orders": 3, "revenue": 55.2586}, {"YearMonth": "2013-10", "CustomerCountry": "BE", "orders": 7, "revenue": 486.347201}, {"YearMonth": "2013-10", "CustomerCountry": "CH", "orders": 15, "revenue": 456.6124}, {"YearMonth": "2013-10", "CustomerCountry": "CY", "orders": 3, "revenue": 78.699601}, {"YearMonth": "2013-10", "CustomerCountry": "DE", "orders": 10, "revenue": 311.052398}, {"YearMonth": "2013-10", "CustomerCountry": "DK", "orders": 19, "revenue": 679.190401}, {"YearMonth": "2013-10", "CustomerCountry": "ES", "orders": 30, "revenue": 1140.823604}, {"YearMonth": "2013-10", "CustomerCountry": "FI", "orders": 8, "revenue": 369.5912}, {"YearMonth": "2013-10", "CustomerCountry": "FR", "orders": 30, "revenue": 1353.363998}, {"YearMonth": "2013-10", "CustomerCountry": "GB", "orders": 1986, "revenue": 42952.0158}, {"YearMonth": "2013-10", "CustomerCountry": "GR", "orders": 7, "revenue": 368.951199}, {"YearMonth": "2013-10", "CustomerCountry": "IE", "orders": 70, "revenue": 2202.476801}, {"YearMonth": "2013-10", "CustomerCountry": "IT", "orders": 16, "revenue": 832.186001}, {"YearMonth": "2013-10", "CustomerCountry": "MT", "orders": 10, "revenue": 356.79}, {"YearMonth": "2013-10", "CustomerCountry": "NL", "orders": 2, "revenue": 157.588802}, {"YearMonth": "2013-10", "CustomerCountry": "NO", "orders": 20, "revenue": 499.992001}, {"YearMonth": "2013-10", "CustomerCountry": "Other", "orders": 3, "revenue": 459.40319999999997}, {"YearMonth": "2013-10", "CustomerCountry": "PT", "orders": 13, "revenue": 716.9012}, {"YearMonth": "2013-10", "CustomerCountry": "SE", "orders": 12, "revenue": 479.1984}, {"YearMonth": "2013-10", "CustomerCountry": "SI", "orders": 4, "revenue": 162.847601}, {"YearMonth": "2013-10", "CustomerCountry": "XX", "orders": 3, "revenue": 66.875}, {"YearMonth": "2013-11", "CustomerCountry": "BE", "orders": 10, "revenue": 584.684796}, {"YearMonth": "2013-11", "CustomerCountry": "CH", "orders": 11, "revenue": 350.607126}, {"YearMonth": "2013-11", "CustomerCountry": "CY", "orders": 4, "revenue": 254.08599800000002}, {"YearMonth": "2013-11", "CustomerCountry": "DE", "orders": 8, "revenue": 360.196101}, {"YearMonth": "2013-11", "CustomerCountry": "DK", "orders": 23, "revenue": 1261.85286}, {"YearMonth": "2013-11", "CustomerCountry": "ES", "orders": 36, "revenue": 1321.017661}, {"YearMonth": "2013-11", "CustomerCountry": "FI", "orders": 9, "revenue": 340.432649}, {"YearMonth": "2013-11", "CustomerCountry": "FR", "orders": 33, "revenue": 1941.8478949999999}, {"YearMonth": "2013-11", "CustomerCountry": "GB", "orders": 2509, "revenue": 56578.147291}, {"YearMonth": "2013-11", "CustomerCountry": "GR", "orders": 19, "revenue": 1218.300888}, {"YearMonth": "2013-11", "CustomerCountry": "IE", "orders": 78, "revenue": 3200.9420489999998}, {"YearMonth": "2013-11", "CustomerCountry": "IT", "orders": 19, "revenue": 814.285794}, {"YearMonth": "2013-11", "CustomerCountry": "MT", "orders": 12, "revenue": 604.72785}, {"YearMonth": "2013-11", "CustomerCountry": "NL", "orders": 1, "revenue": 54.0934}, {"YearMonth": "2013-11", "CustomerCountry": "NO", "orders": 23, "revenue": 511.91290100000003}, {"YearMonth": "2013-11", "CustomerCountry": "Other", "orders": 17, "revenue": 1004.928434}, {"YearMonth": "2013-11", "CustomerCountry": "PT", "orders": 10, "revenue": 394.544951}, {"YearMonth": "2013-11", "CustomerCountry": "SE", "orders": 10, "revenue": 407.85226}, {"YearMonth": "2013-11", "CustomerCountry": "SI", "orders": 3, "revenue": 148.790701}, {"YearMonth": "2013-11", "CustomerCountry": "XX", "orders": 2, "revenue": 35.866}, {"YearMonth": "2013-12", "CustomerCountry": "BE", "orders": 6, "revenue": 613.1483989999999}, {"YearMonth": "2013-12", "CustomerCountry": "CH", "orders": 8, "revenue": 340.323}, {"YearMonth": "2013-12", "CustomerCountry": "CY", "orders": 4, "revenue": 227.5996}, {"YearMonth": "2013-12", "CustomerCountry": "DE", "orders": 8, "revenue": 498.38836200000003}, {"YearMonth": "2013-12", "CustomerCountry": "DK", "orders": 17, "revenue": 580.265553}, {"YearMonth": "2013-12", "CustomerCountry": "ES", "orders": 29, "revenue": 1128.772789}, {"YearMonth": "2013-12", "CustomerCountry": "FI", "orders": 3, "revenue": 101.553048}, {"YearMonth": "2013-12", "CustomerCountry": "FR", "orders": 27, "revenue": 1222.632944}, {"YearMonth": "2013-12", "CustomerCountry": "GB", "orders": 1833, "revenue": 40161.912111}, {"YearMonth": "2013-12", "CustomerCountry": "GR", "orders": 17, "revenue": 661.56668}, {"YearMonth": "2013-12", "CustomerCountry": "IE", "orders": 66, "revenue": 2362.3385240000002}, {"YearMonth": "2013-12", "CustomerCountry": "IT", "orders": 19, "revenue": 846.207999}, {"YearMonth": "2013-12", "CustomerCountry": "MT", "orders": 10, "revenue": 345.708352}, {"YearMonth": "2013-12", "CustomerCountry": "NL", "orders": 3, "revenue": 379.899591}, {"YearMonth": "2013-12", "CustomerCountry": "NO", "orders": 19, "revenue": 423.78700100000003}, {"YearMonth": "2013-12", "CustomerCountry": "Other", "orders": 8, "revenue": 308.600799}, {"YearMonth": "2013-12", "CustomerCountry": "PT", "orders": 11, "revenue": 296.392857}, {"YearMonth": "2013-12", "CustomerCountry": "SE", "orders": 18, "revenue": 645.680596}, {"YearMonth": "2013-12", "CustomerCountry": "SI", "orders": 5, "revenue": 143.6492}, {"YearMonth": "2013-12", "CustomerCountry": "XX", "orders": 5, "revenue": 84.5087}, {"YearMonth": "2014-01", "CustomerCountry": "BE", "orders": 6, "revenue": 302.9694}, {"YearMonth": "2014-01", "CustomerCountry": "CH", "orders": 15, "revenue": 492.32407}, {"YearMonth": "2014-01", "CustomerCountry": "CY", "orders": 6, "revenue": 401.705067}, {"YearMonth": "2014-01", "CustomerCountry": "DE", "orders": 17, "revenue": 543.979052}, {"YearMonth": "2014-01", "CustomerCountry": "DK", "orders": 31, "revenue": 1747.763922}, {"YearMonth": "2014-01", "CustomerCountry": "ES", "orders": 60, "revenue": 2157.089269}, {"YearMonth": "2014-01", "CustomerCountry": "FI", "orders": 8, "revenue": 324.798153}, {"YearMonth": "2014-01", "CustomerCountry": "FR", "orders": 49, "revenue": 2278.1225329999997}, {"YearMonth": "2014-01", "CustomerCountry": "GB", "orders": 3309, "revenue": 75197.90962}, {"YearMonth": "2014-01", "CustomerCountry": "GR", "orders": 8, "revenue": 572.968496}, {"YearMonth": "2014-01", "CustomerCountry": "IE", "orders": 83, "revenue": 3202.77012}, {"YearMonth": "2014-01", "CustomerCountry": "IT", "orders": 18, "revenue": 1014.8142829999999}, {"YearMonth": "2014-01", "CustomerCountry": "MT", "orders": 12, "revenue": 445.576849}, {"YearMonth": "2014-01", "CustomerCountry": "NL", "orders": 6, "revenue": 241.935347}, {"YearMonth": "2014-01", "CustomerCountry": "NO", "orders": 31, "revenue": 595.45116}, {"YearMonth": "2014-01", "CustomerCountry": "Other", "orders": 23, "revenue": 1063.083461}, {"YearMonth": "2014-01", "CustomerCountry": "PT", "orders": 19, "revenue": 870.252536}, {"YearMonth": "2014-01", "CustomerCountry": "SE", "orders": 20, "revenue": 820.684936}, {"YearMonth": "2014-01", "CustomerCountry": "SI", "orders": 8, "revenue": 460.446848}, {"YearMonth": "2014-01", "CustomerCountry": "XX", "orders": 4, "revenue": 100.90653900000001}, {"YearMonth": "2014-02", "CustomerCountry": "BE", "orders": 6, "revenue": 235.237798}, {"YearMonth": "2014-02", "CustomerCountry": "CH", "orders": 14, "revenue": 449.957852}, {"YearMonth": "2014-02", "CustomerCountry": "CY", "orders": 6, "revenue": 284.66748}, {"YearMonth": "2014-02", "CustomerCountry": "DE", "orders": 11, "revenue": 460.849513}, {"YearMonth": "2014-02", "CustomerCountry": "DK", "orders": 20, "revenue": 855.5424399999999}, {"YearMonth": "2014-02", "CustomerCountry": "ES", "orders": 36, "revenue": 1558.215327}, {"YearMonth": "2014-02", "CustomerCountry": "FI", "orders": 8, "revenue": 330.20924}, {"YearMonth": "2014-02", "CustomerCountry": "FR", "orders": 32, "revenue": 994.258521}, {"YearMonth": "2014-02", "CustomerCountry": "GB", "orders": 2318, "revenue": 49428.061691}, {"YearMonth": "2014-02", "CustomerCountry": "GR", "orders": 13, "revenue": 487.240601}, {"YearMonth": "2014-02", "CustomerCountry": "IE", "orders": 98, "revenue": 3183.689179}, {"YearMonth": "2014-02", "CustomerCountry": "IT", "orders": 20, "revenue": 642.3110409999999}, {"YearMonth": "2014-02", "CustomerCountry": "MT", "orders": 12, "revenue": 398.703295}, {"YearMonth": "2014-02", "CustomerCountry": "NL", "orders": 3, "revenue": 244.822269}, {"YearMonth": "2014-02", "CustomerCountry": "NO", "orders": 21, "revenue": 480.8762}, {"YearMonth": "2014-02", "CustomerCountry": "Other", "orders": 12, "revenue": 712.6563639999999}, {"YearMonth": "2014-02", "CustomerCountry": "PT", "orders": 17, "revenue": 656.155995}, {"YearMonth": "2014-02", "CustomerCountry": "SE", "orders": 15, "revenue": 506.20992}, {"YearMonth": "2014-02", "CustomerCountry": "SI", "orders": 3, "revenue": 208.756559}, {"YearMonth": "2014-02", "CustomerCountry": "XX", "orders": 2, "revenue": 54.3953}, {"YearMonth": "2014-03", "CustomerCountry": "BE", "orders": 10, "revenue": 601.177882}, {"YearMonth": "2014-03", "CustomerCountry": "CH", "orders": 15, "revenue": 566.985101}, {"YearMonth": "2014-03", "CustomerCountry": "CY", "orders": 8, "revenue": 352.41895999999997}, {"YearMonth": "2014-03", "CustomerCountry": "DE", "orders": 9, "revenue": 345.419401}, {"YearMonth": "2014-03", "CustomerCountry": "DK", "orders": 24, "revenue": 1350.93612}, {"YearMonth": "2014-03", "CustomerCountry": "ES", "orders": 27, "revenue": 965.827436}, {"YearMonth": "2014-03", "CustomerCountry": "FI", "orders": 6, "revenue": 170.57076}, {"YearMonth": "2014-03", "CustomerCountry": "FR", "orders": 49, "revenue": 2229.295434}, {"YearMonth": "2014-03", "CustomerCountry": "GB", "orders": 2732, "revenue": 57194.467849}, {"YearMonth": "2014-03", "CustomerCountry": "GR", "orders": 9, "revenue": 603.586678}, {"YearMonth": "2014-03", "CustomerCountry": "IE", "orders": 112, "revenue": 4223.868974}, {"YearMonth": "2014-03", "CustomerCountry": "IT", "orders": 19, "revenue": 854.881239}, {"YearMonth": "2014-03", "CustomerCountry": "MT", "orders": 15, "revenue": 550.765082}, {"YearMonth": "2014-03", "CustomerCountry": "NL", "orders": 6, "revenue": 262.65168}, {"YearMonth": "2014-03", "CustomerCountry": "NO", "orders": 26, "revenue": 557.788901}, {"YearMonth": "2014-03", "CustomerCountry": "Other", "orders": 20, "revenue": 752.47476}, {"YearMonth": "2014-03", "CustomerCountry": "PT", "orders": 19, "revenue": 560.547962}, {"YearMonth": "2014-03", "CustomerCountry": "SE", "orders": 11, "revenue": 1013.6675329999999}, {"YearMonth": "2014-03", "CustomerCountry": "SI", "orders": 5, "revenue": 286.13372000000004}, {"YearMonth": "2014-03", "CustomerCountry": "XX", "orders": 1, "revenue": 19.125}, {"YearMonth": "2014-04", "CustomerCountry": "BE", "orders": 3, "revenue": 69.70967999999999}, {"YearMonth": "2014-04", "CustomerCountry": "CH", "orders": 9, "revenue": 234.647103}, {"YearMonth": "2014-04", "CustomerCountry": "CY", "orders": 1, "revenue": 36.9004}, {"YearMonth": "2014-04", "CustomerCountry": "DE", "orders": 9, "revenue": 534.902635}, {"YearMonth": "2014-04", "CustomerCountry": "DK", "orders": 15, "revenue": 786.303905}, {"YearMonth": "2014-04", "CustomerCountry": "ES", "orders": 43, "revenue": 1830.335579}, {"YearMonth": "2014-04", "CustomerCountry": "FI", "orders": 5, "revenue": 245.592282}, {"YearMonth": "2014-04", "CustomerCountry": "FR", "orders": 30, "revenue": 1342.511123}, {"YearMonth": "2014-04", "CustomerCountry": "GB", "orders": 2532, "revenue": 55647.166322}, {"YearMonth": "2014-04", "CustomerCountry": "GR", "orders": 13, "revenue": 376.47268099999997}, {"YearMonth": "2014-04", "CustomerCountry": "IE", "orders": 74, "revenue": 2813.46816}, {"YearMonth": "2014-04", "CustomerCountry": "IT", "orders": 20, "revenue": 948.687413}, {"YearMonth": "2014-04", "CustomerCountry": "MT", "orders": 19, "revenue": 871.809703}, {"YearMonth": "2014-04", "CustomerCountry": "NL", "orders": 4, "revenue": 151.614881}, {"YearMonth": "2014-04", "CustomerCountry": "NO", "orders": 23, "revenue": 483.408761}, {"YearMonth": "2014-04", "CustomerCountry": "Other", "orders": 13, "revenue": 702.597008}, {"YearMonth": "2014-04", "CustomerCountry": "PT", "orders": 17, "revenue": 772.154843}, {"YearMonth": "2014-04", "CustomerCountry": "SE", "orders": 10, "revenue": 465.063994}, {"YearMonth": "2014-04", "CustomerCountry": "SI", "orders": 4, "revenue": 93.56008}, {"YearMonth": "2014-04", "CustomerCountry": "XX", "orders": 2, "revenue": 59.846599999999995}, {"YearMonth": "2014-05", "CustomerCountry": "BE", "orders": 5, "revenue": 248.42828}, {"YearMonth": "2014-05", "CustomerCountry": "CH", "orders": 13, "revenue": 387.341197}, {"YearMonth": "2014-05", "CustomerCountry": "CY", "orders": 5, "revenue": 207.319881}, {"YearMonth": "2014-05", "CustomerCountry": "DE", "orders": 7, "revenue": 292.147601}, {"YearMonth": "2014-05", "CustomerCountry": "DK", "orders": 15, "revenue": 744.315444}, {"YearMonth": "2014-05", "CustomerCountry": "ES", "orders": 39, "revenue": 1792.917477}, {"YearMonth": "2014-05", "CustomerCountry": "FI", "orders": 5, "revenue": 707.147595}, {"YearMonth": "2014-05", "CustomerCountry": "FR", "orders": 29, "revenue": 1066.338559}, {"YearMonth": "2014-05", "CustomerCountry": "GB", "orders": 2440, "revenue": 54671.412469}, {"YearMonth": "2014-05", "CustomerCountry": "GR", "orders": 7, "revenue": 204.546401}, {"YearMonth": "2014-05", "CustomerCountry": "IE", "orders": 77, "revenue": 3129.606012}, {"YearMonth": "2014-05", "CustomerCountry": "IT", "orders": 16, "revenue": 736.43798}, {"YearMonth": "2014-05", "CustomerCountry": "MT", "orders": 11, "revenue": 468.046518}, {"YearMonth": "2014-05", "CustomerCountry": "NL", "orders": 1, "revenue": 29.9008}, {"YearMonth": "2014-05", "CustomerCountry": "NO", "orders": 18, "revenue": 322.27535}, {"YearMonth": "2014-05", "CustomerCountry": "Other", "orders": 22, "revenue": 1161.445805}, {"YearMonth": "2014-05", "CustomerCountry": "PT", "orders": 10, "revenue": 500.028908}, {"YearMonth": "2014-05", "CustomerCountry": "SE", "orders": 15, "revenue": 506.29956}, {"YearMonth": "2014-05", "CustomerCountry": "SI", "orders": 6, "revenue": 274.3584}, {"YearMonth": "2014-05", "CustomerCountry": "XX", "orders": 2, "revenue": 59.0}, {"YearMonth": "2014-06", "CustomerCountry": "BE", "orders": 8, "revenue": 749.802571}, {"YearMonth": "2014-06", "CustomerCountry": "CH", "orders": 13, "revenue": 497.98879900000003}, {"YearMonth": "2014-06", "CustomerCountry": "CY", "orders": 3, "revenue": 122.08800099999999}, {"YearMonth": "2014-06", "CustomerCountry": "DE", "orders": 9, "revenue": 259.77768100000003}, {"YearMonth": "2014-06", "CustomerCountry": "DK", "orders": 17, "revenue": 779.92832}, {"YearMonth": "2014-06", "CustomerCountry": "ES", "orders": 27, "revenue": 1153.6116}, {"YearMonth": "2014-06", "CustomerCountry": "FI", "orders": 2, "revenue": 41.849599999999995}, {"YearMonth": "2014-06", "CustomerCountry": "FR", "orders": 34, "revenue": 1602.165515}, {"YearMonth": "2014-06", "CustomerCountry": "GB", "orders": 2369, "revenue": 52532.337101}, {"YearMonth": "2014-06", "CustomerCountry": "GR", "orders": 12, "revenue": 497.271}, {"YearMonth": "2014-06", "CustomerCountry": "IE", "orders": 90, "revenue": 3194.275744}, {"YearMonth": "2014-06", "CustomerCountry": "IT", "orders": 24, "revenue": 1134.6334299999999}, {"YearMonth": "2014-06", "CustomerCountry": "MT", "orders": 16, "revenue": 518.276802}, {"YearMonth": "2014-06", "CustomerCountry": "NL", "orders": 1, "revenue": 16.9504}, {"YearMonth": "2014-06", "CustomerCountry": "NO", "orders": 22, "revenue": 444.188302}, {"YearMonth": "2014-06", "CustomerCountry": "Other", "orders": 15, "revenue": 658.141133}, {"YearMonth": "2014-06", "CustomerCountry": "PT", "orders": 8, "revenue": 223.790001}, {"YearMonth": "2014-06", "CustomerCountry": "SE", "orders": 20, "revenue": 601.789818}, {"YearMonth": "2014-06", "CustomerCountry": "SI", "orders": 2, "revenue": 52.511120000000005}, {"YearMonth": "2014-06", "CustomerCountry": "XX", "orders": 2, "revenue": 62.333}, {"YearMonth": "2014-07", "CustomerCountry": "BE", "orders": 10, "revenue": 558.642765}, {"YearMonth": "2014-07", "CustomerCountry": "CH", "orders": 9, "revenue": 319.4752}, {"YearMonth": "2014-07", "CustomerCountry": "CY", "orders": 4, "revenue": 188.947601}, {"YearMonth": "2014-07", "CustomerCountry": "DE", "orders": 7, "revenue": 381.918759}, {"YearMonth": "2014-07", "CustomerCountry": "DK", "orders": 24, "revenue": 1222.4886020000001}, {"YearMonth": "2014-07", "CustomerCountry": "ES", "orders": 41, "revenue": 1696.64101}, {"YearMonth": "2014-07", "CustomerCountry": "FI", "orders": 3, "revenue": 60.37536}, {"YearMonth": "2014-07", "CustomerCountry": "FR", "orders": 37, "revenue": 1741.090939}, {"YearMonth": "2014-07", "CustomerCountry": "GB", "orders": 2566, "revenue": 59589.256182}, {"YearMonth": "2014-07", "CustomerCountry": "GR", "orders": 17, "revenue": 1349.57229}, {"YearMonth": "2014-07", "CustomerCountry": "IE", "orders": 81, "revenue": 3058.983626}, {"YearMonth": "2014-07", "CustomerCountry": "IT", "orders": 14, "revenue": 794.220563}, {"YearMonth": "2014-07", "CustomerCountry": "MT", "orders": 12, "revenue": 558.771962}, {"YearMonth": "2014-07", "CustomerCountry": "NL", "orders": 1, "revenue": 49.9}, {"YearMonth": "2014-07", "CustomerCountry": "NO", "orders": 16, "revenue": 344.3613}, {"YearMonth": "2014-07", "CustomerCountry": "Other", "orders": 16, "revenue": 708.0969620000001}, {"YearMonth": "2014-07", "CustomerCountry": "PT", "orders": 21, "revenue": 780.7128789999999}, {"YearMonth": "2014-07", "CustomerCountry": "SE", "orders": 13, "revenue": 454.51691500000004}, {"YearMonth": "2014-07", "CustomerCountry": "SI", "orders": 4, "revenue": 144.50956}, {"YearMonth": "2014-07", "CustomerCountry": "XX", "orders": 4, "revenue": 93.52459999999999}, {"YearMonth": "2014-08", "CustomerCountry": "BE", "orders": 7, "revenue": 332.36675199999996}, {"YearMonth": "2014-08", "CustomerCountry": "CH", "orders": 13, "revenue": 593.386083}, {"YearMonth": "2014-08", "CustomerCountry": "CY", "orders": 3, "revenue": 145.507297}, {"YearMonth": "2014-08", "CustomerCountry": "DE", "orders": 10, "revenue": 528.1071000000001}, {"YearMonth": "2014-08", "CustomerCountry": "DK", "orders": 20, "revenue": 1062.569748}, {"YearMonth": "2014-08", "CustomerCountry": "ES", "orders": 45, "revenue": 1681.170451}, {"YearMonth": "2014-08", "CustomerCountry": "FI", "orders": 6, "revenue": 323.8344}, {"YearMonth": "2014-08", "CustomerCountry": "FR", "orders": 35, "revenue": 1258.232815}, {"YearMonth": "2014-08", "CustomerCountry": "GB", "orders": 2443, "revenue": 54882.80641}, {"YearMonth": "2014-08", "CustomerCountry": "GR", "orders": 5, "revenue": 167.951648}, {"YearMonth": "2014-08", "CustomerCountry": "IE", "orders": 72, "revenue": 2915.613831}, {"YearMonth": "2014-08", "CustomerCountry": "IT", "orders": 18, "revenue": 883.062287}, {"YearMonth": "2014-08", "CustomerCountry": "MT", "orders": 13, "revenue": 536.330847}, {"YearMonth": "2014-08", "CustomerCountry": "NL", "orders": 4, "revenue": 325.200399}, {"YearMonth": "2014-08", "CustomerCountry": "NO", "orders": 17, "revenue": 382.60839799999997}, {"YearMonth": "2014-08", "CustomerCountry": "Other", "orders": 22, "revenue": 1216.218231}, {"YearMonth": "2014-08", "CustomerCountry": "PT", "orders": 9, "revenue": 416.516303}, {"YearMonth": "2014-08", "CustomerCountry": "SE", "orders": 23, "revenue": 630.324513}, {"YearMonth": "2014-08", "CustomerCountry": "SI", "orders": 9, "revenue": 389.553888}, {"YearMonth": "2014-08", "CustomerCountry": "XX", "orders": 3, "revenue": 70.91904}, {"YearMonth": "2014-09", "CustomerCountry": "BE", "orders": 1, "revenue": 13.9504}, {"YearMonth": "2014-09", "CustomerCountry": "CH", "orders": 16, "revenue": 478.851252}, {"YearMonth": "2014-09", "CustomerCountry": "CY", "orders": 5, "revenue": 144.275359}, {"YearMonth": "2014-09", "CustomerCountry": "DE", "orders": 3, "revenue": 109.530359}, {"YearMonth": "2014-09", "CustomerCountry": "DK", "orders": 21, "revenue": 1081.714803}, {"YearMonth": "2014-09", "CustomerCountry": "ES", "orders": 49, "revenue": 2292.933318}, {"YearMonth": "2014-09", "CustomerCountry": "FI", "orders": 5, "revenue": 189.48464}, {"YearMonth": "2014-09", "CustomerCountry": "FR", "orders": 32, "revenue": 1274.040524}, {"YearMonth": "2014-09", "CustomerCountry": "GB", "orders": 2678, "revenue": 59836.800427}, {"YearMonth": "2014-09", "CustomerCountry": "GR", "orders": 12, "revenue": 664.996446}, {"YearMonth": "2014-09", "CustomerCountry": "IE", "orders": 79, "revenue": 2931.75474}, {"YearMonth": "2014-09", "CustomerCountry": "IT", "orders": 18, "revenue": 824.195647}, {"YearMonth": "2014-09", "CustomerCountry": "MT", "orders": 19, "revenue": 895.953358}, {"YearMonth": "2014-09", "CustomerCountry": "NL", "orders": 6, "revenue": 352.052398}, {"YearMonth": "2014-09", "CustomerCountry": "NO", "orders": 14, "revenue": 257.6055}, {"YearMonth": "2014-09", "CustomerCountry": "Other", "orders": 13, "revenue": 531.230336}, {"YearMonth": "2014-09", "CustomerCountry": "PT", "orders": 14, "revenue": 615.137241}, {"YearMonth": "2014-09", "CustomerCountry": "SE", "orders": 22, "revenue": 707.71308}, {"YearMonth": "2014-09", "CustomerCountry": "SI", "orders": 3, "revenue": 88.2504}, {"YearMonth": "2014-09", "CustomerCountry": "XX", "orders": 1, "revenue": 14.958}, {"YearMonth": "2014-10", "CustomerCountry": "BE", "orders": 5, "revenue": 395.353249}, {"YearMonth": "2014-10", "CustomerCountry": "CH", "orders": 12, "revenue": 405.849649}, {"YearMonth": "2014-10", "CustomerCountry": "CY", "orders": 5, "revenue": 283.394123}, {"YearMonth": "2014-10", "CustomerCountry": "DE", "orders": 6, "revenue": 409.513438}, {"YearMonth": "2014-10", "CustomerCountry": "DK", "orders": 10, "revenue": 594.677692}, {"YearMonth": "2014-10", "CustomerCountry": "ES", "orders": 37, "revenue": 1526.678483}, {"YearMonth": "2014-10", "CustomerCountry": "FI", "orders": 9, "revenue": 370.253282}, {"YearMonth": "2014-10", "CustomerCountry": "FR", "orders": 37, "revenue": 1563.9114379999999}, {"YearMonth": "2014-10", "CustomerCountry": "GB", "orders": 2532, "revenue": 59994.747989}, {"YearMonth": "2014-10", "CustomerCountry": "GR", "orders": 21, "revenue": 877.232355}, {"YearMonth": "2014-10", "CustomerCountry": "IE", "orders": 68, "revenue": 3046.890122}, {"YearMonth": "2014-10", "CustomerCountry": "IT", "orders": 25, "revenue": 1078.411933}, {"YearMonth": "2014-10", "CustomerCountry": "MT", "orders": 21, "revenue": 1062.132761}, {"YearMonth": "2014-10", "CustomerCountry": "NL", "orders": 3, "revenue": 100.61112}, {"YearMonth": "2014-10", "CustomerCountry": "NO", "orders": 15, "revenue": 299.2424}, {"YearMonth": "2014-10", "CustomerCountry": "Other", "orders": 19, "revenue": 898.2659160000001}, {"YearMonth": "2014-10", "CustomerCountry": "PT", "orders": 12, "revenue": 631.7448059999999}, {"YearMonth": "2014-10", "CustomerCountry": "SE", "orders": 27, "revenue": 1036.172777}, {"YearMonth": "2014-10", "CustomerCountry": "SI", "orders": 6, "revenue": 142.31333999999998}, {"YearMonth": "2014-10", "CustomerCountry": "XX", "orders": 2, "revenue": 31.242399999999996}, {"YearMonth": "2014-11", "CustomerCountry": "BE", "orders": 7, "revenue": 354.446163}, {"YearMonth": "2014-11", "CustomerCountry": "CH", "orders": 7, "revenue": 210.47082799999998}, {"YearMonth": "2014-11", "CustomerCountry": "CY", "orders": 6, "revenue": 230.41999900000002}, {"YearMonth": "2014-11", "CustomerCountry": "DE", "orders": 9, "revenue": 448.61411499999997}, {"YearMonth": "2014-11", "CustomerCountry": "DK", "orders": 15, "revenue": 1077.632434}, {"YearMonth": "2014-11", "CustomerCountry": "ES", "orders": 47, "revenue": 2141.991411}, {"YearMonth": "2014-11", "CustomerCountry": "FI", "orders": 8, "revenue": 390.318001}, {"YearMonth": "2014-11", "CustomerCountry": "FR", "orders": 45, "revenue": 1680.685999}, {"YearMonth": "2014-11", "CustomerCountry": "GB", "orders": 2587, "revenue": 59476.510548}, {"YearMonth": "2014-11", "CustomerCountry": "GR", "orders": 13, "revenue": 825.3107620000001}, {"YearMonth": "2014-11", "CustomerCountry": "IE", "orders": 73, "revenue": 2820.473005}, {"YearMonth": "2014-11", "CustomerCountry": "IT", "orders": 20, "revenue": 1225.988962}, {"YearMonth": "2014-11", "CustomerCountry": "MT", "orders": 19, "revenue": 903.717996}, {"YearMonth": "2014-11", "CustomerCountry": "NO", "orders": 16, "revenue": 324.85027}, {"YearMonth": "2014-11", "CustomerCountry": "Other", "orders": 24, "revenue": 1715.9046629999998}, {"YearMonth": "2014-11", "CustomerCountry": "PT", "orders": 18, "revenue": 651.716201}, {"YearMonth": "2014-11", "CustomerCountry": "SE", "orders": 18, "revenue": 621.579678}, {"YearMonth": "2014-11", "CustomerCountry": "SI", "orders": 9, "revenue": 458.213077}, {"YearMonth": "2014-11", "CustomerCountry": "XX", "orders": 4, "revenue": 78.504699}, {"YearMonth": "2014-12", "CustomerCountry": "BE", "orders": 4, "revenue": 246.260761}, {"YearMonth": "2014-12", "CustomerCountry": "CH", "orders": 8, "revenue": 372.261555}, {"YearMonth": "2014-12", "CustomerCountry": "CY", "orders": 4, "revenue": 101.07964}, {"YearMonth": "2014-12", "CustomerCountry": "DE", "orders": 6, "revenue": 196.349511}, {"YearMonth": "2014-12", "CustomerCountry": "DK", "orders": 17, "revenue": 650.535803}, {"YearMonth": "2014-12", "CustomerCountry": "ES", "orders": 32, "revenue": 1579.457281}, {"YearMonth": "2014-12", "CustomerCountry": "FI", "orders": 3, "revenue": 75.06036}, {"YearMonth": "2014-12", "CustomerCountry": "FR", "orders": 23, "revenue": 992.1727}, {"YearMonth": "2014-12", "CustomerCountry": "GB", "orders": 2015, "revenue": 47333.38959}, {"YearMonth": "2014-12", "CustomerCountry": "GR", "orders": 9, "revenue": 316.437654}, {"YearMonth": "2014-12", "CustomerCountry": "IE", "orders": 54, "revenue": 2004.222191}, {"YearMonth": "2014-12", "CustomerCountry": "IT", "orders": 18, "revenue": 662.1864499999999}, {"YearMonth": "2014-12", "CustomerCountry": "MT", "orders": 8, "revenue": 487.98924}, {"YearMonth": "2014-12", "CustomerCountry": "NO", "orders": 13, "revenue": 220.83960100000002}, {"YearMonth": "2014-12", "CustomerCountry": "Other", "orders": 15, "revenue": 1125.598255}, {"YearMonth": "2014-12", "CustomerCountry": "PT", "orders": 9, "revenue": 229.56820199999999}, {"YearMonth": "2014-12", "CustomerCountry": "SE", "orders": 13, "revenue": 523.654212}, {"YearMonth": "2014-12", "CustomerCountry": "SI", "orders": 4, "revenue": 236.87919399999998}, {"YearMonth": "2014-12", "CustomerCountry": "XX", "orders": 3, "revenue": 92.29220000000001}, {"YearMonth": "2015-01", "CustomerCountry": "BE", "orders": 7, "revenue": 528.269629}, {"YearMonth": "2015-01", "CustomerCountry": "CH", "orders": 16, "revenue": 496.777776}, {"YearMonth": "2015-01", "CustomerCountry": "CY", "orders": 8, "revenue": 272.87605}, {"YearMonth": "2015-01", "CustomerCountry": "DE", "orders": 14, "revenue": 834.671505}, {"YearMonth": "2015-01", "CustomerCountry": "DK", "orders": 32, "revenue": 2097.226103}, {"YearMonth": "2015-01", "CustomerCountry": "ES", "orders": 61, "revenue": 2656.654414}, {"YearMonth": "2015-01", "CustomerCountry": "FI", "orders": 13, "revenue": 873.0282470000001}, {"YearMonth": "2015-01", "CustomerCountry": "FR", "orders": 60, "revenue": 2575.248845}, {"YearMonth": "2015-01", "CustomerCountry": "GB", "orders": 4074, "revenue": 98703.402065}, {"YearMonth": "2015-01", "CustomerCountry": "GR", "orders": 24, "revenue": 1345.59075}, {"YearMonth": "2015-01", "CustomerCountry": "IE", "orders": 93, "revenue": 4251.082722}, {"YearMonth": "2015-01", "CustomerCountry": "IT", "orders": 39, "revenue": 2022.468933}, {"YearMonth": "2015-01", "CustomerCountry": "MT", "orders": 27, "revenue": 1247.136862}, {"YearMonth": "2015-01", "CustomerCountry": "NL", "orders": 6, "revenue": 596.7454700000001}, {"YearMonth": "2015-01", "CustomerCountry": "NO", "orders": 33, "revenue": 681.8955550000001}, {"YearMonth": "2015-01", "CustomerCountry": "Other", "orders": 50, "revenue": 3121.746182}, {"YearMonth": "2015-01", "CustomerCountry": "PT", "orders": 20, "revenue": 865.747548}, {"YearMonth": "2015-01", "CustomerCountry": "SE", "orders": 40, "revenue": 2112.503983}, {"YearMonth": "2015-01", "CustomerCountry": "SI", "orders": 9, "revenue": 400.02693}, {"YearMonth": "2015-01", "CustomerCountry": "XX", "orders": 6, "revenue": 159.52105}, {"YearMonth": "2015-02", "CustomerCountry": "CH", "orders": 3, "revenue": 238.709202}, {"YearMonth": "2015-02", "CustomerCountry": "CY", "orders": 4, "revenue": 183.726398}, {"YearMonth": "2015-02", "CustomerCountry": "DE", "orders": 12, "revenue": 830.237891}, {"YearMonth": "2015-02", "CustomerCountry": "DK", "orders": 18, "revenue": 904.248382}, {"YearMonth": "2015-02", "CustomerCountry": "ES", "orders": 22, "revenue": 873.722999}, {"YearMonth": "2015-02", "CustomerCountry": "FI", "orders": 7, "revenue": 548.774003}, {"YearMonth": "2015-02", "CustomerCountry": "FR", "orders": 29, "revenue": 1517.570137}, {"YearMonth": "2015-02", "CustomerCountry": "GB", "orders": 2117, "revenue": 49954.072329}, {"YearMonth": "2015-02", "CustomerCountry": "GR", "orders": 6, "revenue": 267.009698}, {"YearMonth": "2015-02", "CustomerCountry": "IE", "orders": 78, "revenue": 2685.569372}, {"YearMonth": "2015-02", "CustomerCountry": "IT", "orders": 13, "revenue": 773.7281029999999}, {"YearMonth": "2015-02", "CustomerCountry": "MT", "orders": 14, "revenue": 589.450904}, {"YearMonth": "2015-02", "CustomerCountry": "NL", "orders": 1, "revenue": 65.754599}, {"YearMonth": "2015-02", "CustomerCountry": "NO", "orders": 21, "revenue": 495.632898}, {"YearMonth": "2015-02", "CustomerCountry": "Other", "orders": 13, "revenue": 373.119903}, {"YearMonth": "2015-02", "CustomerCountry": "PT", "orders": 9, "revenue": 344.7256}, {"YearMonth": "2015-02", "CustomerCountry": "SE", "orders": 33, "revenue": 1330.500999}, {"YearMonth": "2015-02", "CustomerCountry": "SI", "orders": 3, "revenue": 76.273899}, {"YearMonth": "2015-02", "CustomerCountry": "XX", "orders": 1, "revenue": 22.9}, {"YearMonth": "2015-03", "CustomerCountry": "BE", "orders": 8, "revenue": 377.194007}, {"YearMonth": "2015-03", "CustomerCountry": "CH", "orders": 13, "revenue": 522.025129}, {"YearMonth": "2015-03", "CustomerCountry": "CY", "orders": 5, "revenue": 286.29263699999996}, {"YearMonth": "2015-03", "CustomerCountry": "DE", "orders": 9, "revenue": 406.72249999999997}, {"YearMonth": "2015-03", "CustomerCountry": "DK", "orders": 24, "revenue": 1142.131994}, {"YearMonth": "2015-03", "CustomerCountry": "ES", "orders": 55, "revenue": 2646.750157}, {"YearMonth": "2015-03", "CustomerCountry": "FI", "orders": 6, "revenue": 259.951289}, {"YearMonth": "2015-03", "CustomerCountry": "FR", "orders": 43, "revenue": 1876.306912}, {"YearMonth": "2015-03", "CustomerCountry": "GB", "orders": 3122, "revenue": 72508.977391}, {"YearMonth": "2015-03", "CustomerCountry": "GR", "orders": 12, "revenue": 624.583797}, {"YearMonth": "2015-03", "CustomerCountry": "IE", "orders": 100, "revenue": 3736.366732}, {"YearMonth": "2015-03", "CustomerCountry": "IT", "orders": 26, "revenue": 1084.474557}, {"YearMonth": "2015-03", "CustomerCountry": "MT", "orders": 16, "revenue": 573.638149}, {"YearMonth": "2015-03", "CustomerCountry": "NL", "orders": 1, "revenue": 39.821439}, {"YearMonth": "2015-03", "CustomerCountry": "NO", "orders": 16, "revenue": 396.706166}, {"YearMonth": "2015-03", "CustomerCountry": "Other", "orders": 30, "revenue": 1368.849768}, {"YearMonth": "2015-03", "CustomerCountry": "PT", "orders": 9, "revenue": 526.020451}, {"YearMonth": "2015-03", "CustomerCountry": "SE", "orders": 26, "revenue": 777.4162699999999}, {"YearMonth": "2015-03", "CustomerCountry": "SI", "orders": 11, "revenue": 392.459578}, {"YearMonth": "2015-03", "CustomerCountry": "XX", "orders": 5, "revenue": 97.16282799999999}, {"YearMonth": "2015-04", "CustomerCountry": "BE", "orders": 4, "revenue": 136.24318}, {"YearMonth": "2015-04", "CustomerCountry": "CH", "orders": 5, "revenue": 135.761101}, {"YearMonth": "2015-04", "CustomerCountry": "CY", "orders": 4, "revenue": 101.202781}, {"YearMonth": "2015-04", "CustomerCountry": "DE", "orders": 8, "revenue": 403.242502}, {"YearMonth": "2015-04", "CustomerCountry": "DK", "orders": 15, "revenue": 665.0431}, {"YearMonth": "2015-04", "CustomerCountry": "ES", "orders": 34, "revenue": 1053.203607}, {"YearMonth": "2015-04", "CustomerCountry": "FI", "orders": 7, "revenue": 136.221409}, {"YearMonth": "2015-04", "CustomerCountry": "FR", "orders": 48, "revenue": 1887.289915}, {"YearMonth": "2015-04", "CustomerCountry": "GB", "orders": 2515, "revenue": 56517.663133}, {"YearMonth": "2015-04", "CustomerCountry": "GR", "orders": 7, "revenue": 258.9331}, {"YearMonth": "2015-04", "CustomerCountry": "IE", "orders": 60, "revenue": 2329.723654}, {"YearMonth": "2015-04", "CustomerCountry": "IT", "orders": 16, "revenue": 748.509667}, {"YearMonth": "2015-04", "CustomerCountry": "MT", "orders": 12, "revenue": 622.502042}, {"YearMonth": "2015-04", "CustomerCountry": "NL", "orders": 5, "revenue": 332.970798}, {"YearMonth": "2015-04", "CustomerCountry": "NO", "orders": 16, "revenue": 346.62510000000003}, {"YearMonth": "2015-04", "CustomerCountry": "Other", "orders": 29, "revenue": 1679.347645}, {"YearMonth": "2015-04", "CustomerCountry": "PT", "orders": 14, "revenue": 554.511437}, {"YearMonth": "2015-04", "CustomerCountry": "SE", "orders": 28, "revenue": 1101.269771}, {"YearMonth": "2015-04", "CustomerCountry": "SI", "orders": 4, "revenue": 203.90925900000002}, {"YearMonth": "2015-04", "CustomerCountry": "XX", "orders": 1, "revenue": 14.4096}, {"YearMonth": "2015-05", "CustomerCountry": "BE", "orders": 5, "revenue": 330.98681799999997}, {"YearMonth": "2015-05", "CustomerCountry": "CH", "orders": 10, "revenue": 342.490752}, {"YearMonth": "2015-05", "CustomerCountry": "CY", "orders": 4, "revenue": 167.6004}, {"YearMonth": "2015-05", "CustomerCountry": "DE", "orders": 7, "revenue": 354.10539700000004}, {"YearMonth": "2015-05", "CustomerCountry": "DK", "orders": 15, "revenue": 1001.582312}, {"YearMonth": "2015-05", "CustomerCountry": "ES", "orders": 34, "revenue": 1661.675657}, {"YearMonth": "2015-05", "CustomerCountry": "FI", "orders": 2, "revenue": 74.805482}, {"YearMonth": "2015-05", "CustomerCountry": "FR", "orders": 30, "revenue": 1452.0174140000001}, {"YearMonth": "2015-05", "CustomerCountry": "GB", "orders": 2331, "revenue": 56859.278268}, {"YearMonth": "2015-05", "CustomerCountry": "GR", "orders": 11, "revenue": 409.529039}, {"YearMonth": "2015-05", "CustomerCountry": "IE", "orders": 59, "revenue": 2278.802207}, {"YearMonth": "2015-05", "CustomerCountry": "IT", "orders": 18, "revenue": 927.9334289999999}, {"YearMonth": "2015-05", "CustomerCountry": "MT", "orders": 11, "revenue": 596.192276}, {"YearMonth": "2015-05", "CustomerCountry": "NL", "orders": 6, "revenue": 490.077739}, {"YearMonth": "2015-05", "CustomerCountry": "NO", "orders": 8, "revenue": 169.73575499999998}, {"YearMonth": "2015-05", "CustomerCountry": "Other", "orders": 13, "revenue": 644.503432}, {"YearMonth": "2015-05", "CustomerCountry": "PT", "orders": 17, "revenue": 644.776585}, {"YearMonth": "2015-05", "CustomerCountry": "SE", "orders": 24, "revenue": 691.810958}, {"YearMonth": "2015-05", "CustomerCountry": "SI", "orders": 3, "revenue": 136.809321}, {"YearMonth": "2015-05", "CustomerCountry": "XX", "orders": 6, "revenue": 155.12725}, {"YearMonth": "2015-06", "CustomerCountry": "BE", "orders": 6, "revenue": 224.251318}, {"YearMonth": "2015-06", "CustomerCountry": "CH", "orders": 11, "revenue": 569.84629}, {"YearMonth": "2015-06", "CustomerCountry": "CY", "orders": 5, "revenue": 163.726159}, {"YearMonth": "2015-06", "CustomerCountry": "DE", "orders": 4, "revenue": 141.319559}, {"YearMonth": "2015-06", "CustomerCountry": "DK", "orders": 22, "revenue": 813.981316}, {"YearMonth": "2015-06", "CustomerCountry": "ES", "orders": 37, "revenue": 1731.117973}, {"YearMonth": "2015-06", "CustomerCountry": "FI", "orders": 2, "revenue": 83.964859}, {"YearMonth": "2015-06", "CustomerCountry": "FR", "orders": 32, "revenue": 1670.294698}, {"YearMonth": "2015-06", "CustomerCountry": "GB", "orders": 2547, "revenue": 61572.985199}, {"YearMonth": "2015-06", "CustomerCountry": "GR", "orders": 14, "revenue": 801.729345}, {"YearMonth": "2015-06", "CustomerCountry": "IE", "orders": 77, "revenue": 3300.898435}, {"YearMonth": "2015-06", "CustomerCountry": "IT", "orders": 20, "revenue": 998.148723}, {"YearMonth": "2015-06", "CustomerCountry": "MT", "orders": 8, "revenue": 358.64923799999997}, {"YearMonth": "2015-06", "CustomerCountry": "NL", "orders": 2, "revenue": 98.56664}, {"YearMonth": "2015-06", "CustomerCountry": "NO", "orders": 17, "revenue": 378.2302}, {"YearMonth": "2015-06", "CustomerCountry": "Other", "orders": 17, "revenue": 1233.02938}, {"YearMonth": "2015-06", "CustomerCountry": "PT", "orders": 10, "revenue": 556.454314}, {"YearMonth": "2015-06", "CustomerCountry": "SE", "orders": 24, "revenue": 994.886656}, {"YearMonth": "2015-06", "CustomerCountry": "SI", "orders": 4, "revenue": 290.773777}, {"YearMonth": "2015-06", "CustomerCountry": "XX", "orders": 1, "revenue": 16.625}, {"YearMonth": "2015-07", "CustomerCountry": "BE", "orders": 2, "revenue": 75.161982}, {"YearMonth": "2015-07", "CustomerCountry": "CH", "orders": 2, "revenue": 173.330994}, {"YearMonth": "2015-07", "CustomerCountry": "CY", "orders": 2, "revenue": 88.3004}, {"YearMonth": "2015-07", "CustomerCountry": "DE", "orders": 5, "revenue": 186.289201}, {"YearMonth": "2015-07", "CustomerCountry": "DK", "orders": 11, "revenue": 443.699419}, {"YearMonth": "2015-07", "CustomerCountry": "ES", "orders": 31, "revenue": 1547.271642}, {"YearMonth": "2015-07", "CustomerCountry": "FI", "orders": 5, "revenue": 199.442792}, {"YearMonth": "2015-07", "CustomerCountry": "FR", "orders": 22, "revenue": 1188.907946}, {"YearMonth": "2015-07", "CustomerCountry": "GB", "orders": 2389, "revenue": 55612.52568}, {"YearMonth": "2015-07", "CustomerCountry": "GR", "orders": 3, "revenue": 133.650398}, {"YearMonth": "2015-07", "CustomerCountry": "IE", "orders": 53, "revenue": 1764.4023750000001}, {"YearMonth": "2015-07", "CustomerCountry": "IT", "orders": 10, "revenue": 393.42132}, {"YearMonth": "2015-07", "CustomerCountry": "MT", "orders": 9, "revenue": 353.446403}, {"YearMonth": "2015-07", "CustomerCountry": "NL", "orders": 4, "revenue": 133.523401}, {"YearMonth": "2015-07", "CustomerCountry": "NO", "orders": 15, "revenue": 344.739801}, {"YearMonth": "2015-07", "CustomerCountry": "Other", "orders": 5, "revenue": 164.89202}, {"YearMonth": "2015-07", "CustomerCountry": "PT", "orders": 13, "revenue": 411.36652}, {"YearMonth": "2015-07", "CustomerCountry": "SE", "orders": 33, "revenue": 1294.431857}, {"YearMonth": "2015-07", "CustomerCountry": "SI", "orders": 4, "revenue": 232.573919}, {"YearMonth": "2015-07", "CustomerCountry": "XX", "orders": 4, "revenue": 163.683603}, {"YearMonth": "2015-08", "CustomerCountry": "BE", "orders": 4, "revenue": 163.65707}, {"YearMonth": "2015-08", "CustomerCountry": "CH", "orders": 10, "revenue": 368.281866}, {"YearMonth": "2015-08", "CustomerCountry": "CY", "orders": 1, "revenue": 42.93034}, {"YearMonth": "2015-08", "CustomerCountry": "DE", "orders": 5, "revenue": 247.977491}, {"YearMonth": "2015-08", "CustomerCountry": "DK", "orders": 20, "revenue": 1302.246999}, {"YearMonth": "2015-08", "CustomerCountry": "ES", "orders": 30, "revenue": 1302.425677}, {"YearMonth": "2015-08", "CustomerCountry": "FI", "orders": 3, "revenue": 129.738239}, {"YearMonth": "2015-08", "CustomerCountry": "FR", "orders": 42, "revenue": 2089.963887}, {"YearMonth": "2015-08", "CustomerCountry": "GB", "orders": 2530, "revenue": 60712.011492}, {"YearMonth": "2015-08", "CustomerCountry": "GR", "orders": 4, "revenue": 132.306637}, {"YearMonth": "2015-08", "CustomerCountry": "IE", "orders": 61, "revenue": 1991.464992}, {"YearMonth": "2015-08", "CustomerCountry": "IT", "orders": 13, "revenue": 698.320414}, {"YearMonth": "2015-08", "CustomerCountry": "MT", "orders": 8, "revenue": 532.7170550000001}, {"YearMonth": "2015-08", "CustomerCountry": "NL", "orders": 9, "revenue": 604.956133}, {"YearMonth": "2015-08", "CustomerCountry": "NO", "orders": 11, "revenue": 234.29324300000002}, {"YearMonth": "2015-08", "CustomerCountry": "Other", "orders": 20, "revenue": 1344.663193}, {"YearMonth": "2015-08", "CustomerCountry": "PT", "orders": 11, "revenue": 526.060973}, {"YearMonth": "2015-08", "CustomerCountry": "SE", "orders": 30, "revenue": 1421.204199}, {"YearMonth": "2015-08", "CustomerCountry": "SI", "orders": 5, "revenue": 413.59333499999997}, {"YearMonth": "2015-08", "CustomerCountry": "XX", "orders": 5, "revenue": 105.256504}, {"YearMonth": "2015-09", "CustomerCountry": "BE", "orders": 5, "revenue": 287.46849599999996}, {"YearMonth": "2015-09", "CustomerCountry": "CH", "orders": 15, "revenue": 612.675808}, {"YearMonth": "2015-09", "CustomerCountry": "CY", "orders": 1, "revenue": 93.6194}, {"YearMonth": "2015-09", "CustomerCountry": "DE", "orders": 5, "revenue": 217.281098}, {"YearMonth": "2015-09", "CustomerCountry": "DK", "orders": 18, "revenue": 903.991896}, {"YearMonth": "2015-09", "CustomerCountry": "ES", "orders": 38, "revenue": 1676.873595}, {"YearMonth": "2015-09", "CustomerCountry": "FI", "orders": 6, "revenue": 218.51341100000002}, {"YearMonth": "2015-09", "CustomerCountry": "FR", "orders": 39, "revenue": 1573.47326}, {"YearMonth": "2015-09", "CustomerCountry": "GB", "orders": 2791, "revenue": 68642.028189}, {"YearMonth": "2015-09", "CustomerCountry": "GR", "orders": 13, "revenue": 862.743996}, {"YearMonth": "2015-09", "CustomerCountry": "IE", "orders": 69, "revenue": 3033.534199}, {"YearMonth": "2015-09", "CustomerCountry": "IT", "orders": 26, "revenue": 1206.715898}, {"YearMonth": "2015-09", "CustomerCountry": "MT", "orders": 12, "revenue": 521.866096}, {"YearMonth": "2015-09", "CustomerCountry": "NL", "orders": 1, "revenue": 361.546898}, {"YearMonth": "2015-09", "CustomerCountry": "NO", "orders": 20, "revenue": 407.011558}, {"YearMonth": "2015-09", "CustomerCountry": "Other", "orders": 21, "revenue": 1064.38411}, {"YearMonth": "2015-09", "CustomerCountry": "PT", "orders": 17, "revenue": 909.313578}, {"YearMonth": "2015-09", "CustomerCountry": "SE", "orders": 40, "revenue": 1280.147407}, {"YearMonth": "2015-09", "CustomerCountry": "SI", "orders": 11, "revenue": 611.3543999999999}, {"YearMonth": "2015-09", "CustomerCountry": "XX", "orders": 7, "revenue": 166.28889999999998}, {"YearMonth": "2015-10", "CustomerCountry": "BE", "orders": 4, "revenue": 198.49120299999998}, {"YearMonth": "2015-10", "CustomerCountry": "CH", "orders": 6, "revenue": 221.598957}, {"YearMonth": "2015-10", "CustomerCountry": "CY", "orders": 4, "revenue": 149.441999}, {"YearMonth": "2015-10", "CustomerCountry": "DE", "orders": 11, "revenue": 510.35299299999997}, {"YearMonth": "2015-10", "CustomerCountry": "DK", "orders": 14, "revenue": 659.099199}, {"YearMonth": "2015-10", "CustomerCountry": "ES", "orders": 34, "revenue": 1814.567288}, {"YearMonth": "2015-10", "CustomerCountry": "FI", "orders": 1, "revenue": 72.0622}, {"YearMonth": "2015-10", "CustomerCountry": "FR", "orders": 30, "revenue": 1414.8674859999999}, {"YearMonth": "2015-10", "CustomerCountry": "GB", "orders": 2251, "revenue": 53502.91427}, {"YearMonth": "2015-10", "CustomerCountry": "GR", "orders": 11, "revenue": 912.354203}, {"YearMonth": "2015-10", "CustomerCountry": "IE", "orders": 46, "revenue": 1781.484476}, {"YearMonth": "2015-10", "CustomerCountry": "IT", "orders": 16, "revenue": 1072.871316}, {"YearMonth": "2015-10", "CustomerCountry": "MT", "orders": 11, "revenue": 501.791895}, {"YearMonth": "2015-10", "CustomerCountry": "NL", "orders": 2, "revenue": 158.381601}, {"YearMonth": "2015-10", "CustomerCountry": "NO", "orders": 11, "revenue": 246.596797}, {"YearMonth": "2015-10", "CustomerCountry": "Other", "orders": 10, "revenue": 345.207519}, {"YearMonth": "2015-10", "CustomerCountry": "PT", "orders": 8, "revenue": 283.866499}, {"YearMonth": "2015-10", "CustomerCountry": "SE", "orders": 32, "revenue": 1164.155655}, {"YearMonth": "2015-10", "CustomerCountry": "SI", "orders": 5, "revenue": 265.874301}, {"YearMonth": "2015-10", "CustomerCountry": "XX", "orders": 1, "revenue": 14.125}, {"YearMonth": "2015-11", "CustomerCountry": "BE", "orders": 5, "revenue": 200.41271999999998}, {"YearMonth": "2015-11", "CustomerCountry": "CH", "orders": 9, "revenue": 527.23549}, {"YearMonth": "2015-11", "CustomerCountry": "CY", "orders": 4, "revenue": 153.2746}, {"YearMonth": "2015-11", "CustomerCountry": "DE", "orders": 6, "revenue": 405.224644}, {"YearMonth": "2015-11", "CustomerCountry": "DK", "orders": 19, "revenue": 968.189314}, {"YearMonth": "2015-11", "CustomerCountry": "ES", "orders": 31, "revenue": 1567.2084}, {"YearMonth": "2015-11", "CustomerCountry": "FI", "orders": 2, "revenue": 89.583558}, {"YearMonth": "2015-11", "CustomerCountry": "FR", "orders": 42, "revenue": 1776.337471}, {"YearMonth": "2015-11", "CustomerCountry": "GB", "orders": 2446, "revenue": 60493.549419}, {"YearMonth": "2015-11", "CustomerCountry": "GR", "orders": 7, "revenue": 308.92071599999997}, {"YearMonth": "2015-11", "CustomerCountry": "IE", "orders": 53, "revenue": 2174.775322}, {"YearMonth": "2015-11", "CustomerCountry": "IT", "orders": 28, "revenue": 1245.385}, {"YearMonth": "2015-11", "CustomerCountry": "MT", "orders": 9, "revenue": 466.852678}, {"YearMonth": "2015-11", "CustomerCountry": "NL", "orders": 2, "revenue": 130.255998}, {"YearMonth": "2015-11", "CustomerCountry": "NO", "orders": 17, "revenue": 313.44026}, {"YearMonth": "2015-11", "CustomerCountry": "Other", "orders": 16, "revenue": 799.3687}, {"YearMonth": "2015-11", "CustomerCountry": "PT", "orders": 15, "revenue": 782.881681}, {"YearMonth": "2015-11", "CustomerCountry": "SE", "orders": 26, "revenue": 976.119679}, {"YearMonth": "2015-11", "CustomerCountry": "SI", "orders": 4, "revenue": 243.905556}, {"YearMonth": "2015-11", "CustomerCountry": "XX", "orders": 5, "revenue": 104.0462}, {"YearMonth": "2015-12", "CustomerCountry": "BE", "orders": 4, "revenue": 113.7504}, {"YearMonth": "2015-12", "CustomerCountry": "CH", "orders": 7, "revenue": 272.971318}, {"YearMonth": "2015-12", "CustomerCountry": "CY", "orders": 2, "revenue": 135.295901}, {"YearMonth": "2015-12", "CustomerCountry": "DE", "orders": 5, "revenue": 484.362933}, {"YearMonth": "2015-12", "CustomerCountry": "DK", "orders": 10, "revenue": 365.797399}, {"YearMonth": "2015-12", "CustomerCountry": "ES", "orders": 31, "revenue": 1420.957102}, {"YearMonth": "2015-12", "CustomerCountry": "FI", "orders": 2, "revenue": 64.79429999999999}, {"YearMonth": "2015-12", "CustomerCountry": "FR", "orders": 30, "revenue": 1675.900634}, {"YearMonth": "2015-12", "CustomerCountry": "GB", "orders": 2375, "revenue": 57001.940289}, {"YearMonth": "2015-12", "CustomerCountry": "GR", "orders": 6, "revenue": 325.898004}, {"YearMonth": "2015-12", "CustomerCountry": "IE", "orders": 51, "revenue": 2663.73462}, {"YearMonth": "2015-12", "CustomerCountry": "IT", "orders": 17, "revenue": 675.857602}, {"YearMonth": "2015-12", "CustomerCountry": "MT", "orders": 11, "revenue": 751.13461}, {"YearMonth": "2015-12", "CustomerCountry": "NL", "orders": 4, "revenue": 122.12560099999999}, {"YearMonth": "2015-12", "CustomerCountry": "NO", "orders": 10, "revenue": 209.364799}, {"YearMonth": "2015-12", "CustomerCountry": "Other", "orders": 17, "revenue": 830.910201}, {"YearMonth": "2015-12", "CustomerCountry": "PT", "orders": 13, "revenue": 434.539897}, {"YearMonth": "2015-12", "CustomerCountry": "SE", "orders": 25, "revenue": 1126.2007899999999}, {"YearMonth": "2015-12", "CustomerCountry": "SI", "orders": 3, "revenue": 291.958098}, {"YearMonth": "2015-12", "CustomerCountry": "XX", "orders": 1, "revenue": 7.458}, {"YearMonth": "2016-01", "CustomerCountry": "BE", "orders": 6, "revenue": 741.411605}, {"YearMonth": "2016-01", "CustomerCountry": "CH", "orders": 18, "revenue": 675.170376}, {"YearMonth": "2016-01", "CustomerCountry": "CY", "orders": 8, "revenue": 390.885876}, {"YearMonth": "2016-01", "CustomerCountry": "DE", "orders": 8, "revenue": 360.983327}, {"YearMonth": "2016-01", "CustomerCountry": "DK", "orders": 30, "revenue": 1683.2068610000001}, {"YearMonth": "2016-01", "CustomerCountry": "ES", "orders": 55, "revenue": 2500.608253}, {"YearMonth": "2016-01", "CustomerCountry": "FR", "orders": 59, "revenue": 3198.731026}, {"YearMonth": "2016-01", "CustomerCountry": "GB", "orders": 4041, "revenue": 95909.457501}, {"YearMonth": "2016-01", "CustomerCountry": "GR", "orders": 15, "revenue": 689.049804}, {"YearMonth": "2016-01", "CustomerCountry": "IE", "orders": 102, "revenue": 3725.38168}, {"YearMonth": "2016-01", "CustomerCountry": "IT", "orders": 28, "revenue": 1394.816995}, {"YearMonth": "2016-01", "CustomerCountry": "MT", "orders": 10, "revenue": 543.825441}, {"YearMonth": "2016-01", "CustomerCountry": "NL", "orders": 1, "revenue": 202.033798}, {"YearMonth": "2016-01", "CustomerCountry": "NO", "orders": 23, "revenue": 560.667219}, {"YearMonth": "2016-01", "CustomerCountry": "Other", "orders": 34, "revenue": 2080.112305}, {"YearMonth": "2016-01", "CustomerCountry": "PT", "orders": 16, "revenue": 642.437145}, {"YearMonth": "2016-01", "CustomerCountry": "SE", "orders": 59, "revenue": 2393.5454290000002}, {"YearMonth": "2016-01", "CustomerCountry": "SI", "orders": 8, "revenue": 248.148031}, {"YearMonth": "2016-01", "CustomerCountry": "XX", "orders": 10, "revenue": 298.065904}, {"YearMonth": "2016-02", "CustomerCountry": "BE", "orders": 1, "revenue": 16.9504}, {"YearMonth": "2016-02", "CustomerCountry": "CH", "orders": 4, "revenue": 185.86290100000002}, {"YearMonth": "2016-02", "CustomerCountry": "CY", "orders": 4, "revenue": 134.4484}, {"YearMonth": "2016-02", "CustomerCountry": "DE", "orders": 4, "revenue": 311.001198}, {"YearMonth": "2016-02", "CustomerCountry": "DK", "orders": 12, "revenue": 646.659519}, {"YearMonth": "2016-02", "CustomerCountry": "ES", "orders": 31, "revenue": 1540.430589}, {"YearMonth": "2016-02", "CustomerCountry": "FI", "orders": 1, "revenue": 439.300003}, {"YearMonth": "2016-02", "CustomerCountry": "FR", "orders": 23, "revenue": 985.27169}, {"YearMonth": "2016-02", "CustomerCountry": "GB", "orders": 1982, "revenue": 47800.563211}, {"YearMonth": "2016-02", "CustomerCountry": "GR", "orders": 3, "revenue": 165.879961}, {"YearMonth": "2016-02", "CustomerCountry": "IE", "orders": 46, "revenue": 1391.46492}, {"YearMonth": "2016-02", "CustomerCountry": "IT", "orders": 11, "revenue": 445.13908}, {"YearMonth": "2016-02", "CustomerCountry": "MT", "orders": 6, "revenue": 419.311853}, {"YearMonth": "2016-02", "CustomerCountry": "NL", "orders": 2, "revenue": 98.73920100000001}, {"YearMonth": "2016-02", "CustomerCountry": "NO", "orders": 10, "revenue": 245.916799}, {"YearMonth": "2016-02", "CustomerCountry": "Other", "orders": 7, "revenue": 243.576202}, {"YearMonth": "2016-02", "CustomerCountry": "PT", "orders": 6, "revenue": 287.251645}, {"YearMonth": "2016-02", "CustomerCountry": "SE", "orders": 23, "revenue": 910.138858}, {"YearMonth": "2016-02", "CustomerCountry": "SI", "orders": 2, "revenue": 45.799600999999996}, {"YearMonth": "2016-02", "CustomerCountry": "XX", "orders": 1, "revenue": 34.875}, {"YearMonth": "2016-03", "CustomerCountry": "BE", "orders": 2, "revenue": 121.79839999999999}, {"YearMonth": "2016-03", "CustomerCountry": "CH", "orders": 13, "revenue": 508.131171}, {"YearMonth": "2016-03", "CustomerCountry": "CY", "orders": 8, "revenue": 251.598897}, {"YearMonth": "2016-03", "CustomerCountry": "DE", "orders": 6, "revenue": 456.510738}, {"YearMonth": "2016-03", "CustomerCountry": "DK", "orders": 24, "revenue": 1229.062753}, {"YearMonth": "2016-03", "CustomerCountry": "ES", "orders": 51, "revenue": 2728.354408}, {"YearMonth": "2016-03", "CustomerCountry": "FI", "orders": 7, "revenue": 389.806543}, {"YearMonth": "2016-03", "CustomerCountry": "FR", "orders": 36, "revenue": 1496.49184}, {"YearMonth": "2016-03", "CustomerCountry": "GB", "orders": 2796, "revenue": 70466.633597}, {"YearMonth": "2016-03", "CustomerCountry": "GR", "orders": 10, "revenue": 423.15751900000004}, {"YearMonth": "2016-03", "CustomerCountry": "IE", "orders": 74, "revenue": 2642.018727}, {"YearMonth": "2016-03", "CustomerCountry": "IT", "orders": 16, "revenue": 811.113217}, {"YearMonth": "2016-03", "CustomerCountry": "MT", "orders": 14, "revenue": 538.695643}, {"YearMonth": "2016-03", "CustomerCountry": "NL", "orders": 2, "revenue": 68.12207000000001}, {"YearMonth": "2016-03", "CustomerCountry": "NO", "orders": 21, "revenue": 651.250868}, {"YearMonth": "2016-03", "CustomerCountry": "Other", "orders": 36, "revenue": 1875.723417}, {"YearMonth": "2016-03", "CustomerCountry": "PT", "orders": 8, "revenue": 534.042646}, {"YearMonth": "2016-03", "CustomerCountry": "SE", "orders": 28, "revenue": 1307.036578}, {"YearMonth": "2016-03", "CustomerCountry": "SI", "orders": 4, "revenue": 186.409362}, {"YearMonth": "2016-03", "CustomerCountry": "XX", "orders": 5, "revenue": 103.488271}, {"YearMonth": "2016-04", "CustomerCountry": "BE", "orders": 5, "revenue": 181.522758}, {"YearMonth": "2016-04", "CustomerCountry": "CH", "orders": 12, "revenue": 398.949716}, {"YearMonth": "2016-04", "CustomerCountry": "CY", "orders": 4, "revenue": 164.580939}, {"YearMonth": "2016-04", "CustomerCountry": "DE", "orders": 5, "revenue": 252.75322}, {"YearMonth": "2016-04", "CustomerCountry": "DK", "orders": 14, "revenue": 593.1014289999999}, {"YearMonth": "2016-04", "CustomerCountry": "ES", "orders": 25, "revenue": 1097.524157}, {"YearMonth": "2016-04", "CustomerCountry": "FI", "orders": 2, "revenue": 55.655001}, {"YearMonth": "2016-04", "CustomerCountry": "FR", "orders": 28, "revenue": 1797.212458}, {"YearMonth": "2016-04", "CustomerCountry": "GB", "orders": 2658, "revenue": 63990.102048}, {"YearMonth": "2016-04", "CustomerCountry": "GR", "orders": 4, "revenue": 290.491651}, {"YearMonth": "2016-04", "CustomerCountry": "IE", "orders": 59, "revenue": 2289.220361}, {"YearMonth": "2016-04", "CustomerCountry": "IT", "orders": 19, "revenue": 938.030688}, {"YearMonth": "2016-04", "CustomerCountry": "MT", "orders": 8, "revenue": 378.536269}, {"YearMonth": "2016-04", "CustomerCountry": "NL", "orders": 3, "revenue": 207.019548}, {"YearMonth": "2016-04", "CustomerCountry": "NO", "orders": 15, "revenue": 318.434389}, {"YearMonth": "2016-04", "CustomerCountry": "Other", "orders": 21, "revenue": 805.625794}, {"YearMonth": "2016-04", "CustomerCountry": "PT", "orders": 8, "revenue": 371.564218}, {"YearMonth": "2016-04", "CustomerCountry": "SE", "orders": 33, "revenue": 1686.0031179999999}, {"YearMonth": "2016-04", "CustomerCountry": "SI", "orders": 5, "revenue": 323.575787}, {"YearMonth": "2016-04", "CustomerCountry": "XX", "orders": 1, "revenue": 12.9691}, {"YearMonth": "2016-05", "CustomerCountry": "BE", "orders": 4, "revenue": 221.67579999999998}, {"YearMonth": "2016-05", "CustomerCountry": "CH", "orders": 11, "revenue": 460.263796}, {"YearMonth": "2016-05", "CustomerCountry": "DE", "orders": 4, "revenue": 229.788917}, {"YearMonth": "2016-05", "CustomerCountry": "DK", "orders": 13, "revenue": 642.428816}, {"YearMonth": "2016-05", "CustomerCountry": "ES", "orders": 33, "revenue": 1451.588763}, {"YearMonth": "2016-05", "CustomerCountry": "FI", "orders": 2, "revenue": 171.083179}, {"YearMonth": "2016-05", "CustomerCountry": "FR", "orders": 31, "revenue": 1426.3859}, {"YearMonth": "2016-05", "CustomerCountry": "GB", "orders": 2324, "revenue": 55793.529335}, {"YearMonth": "2016-05", "CustomerCountry": "GR", "orders": 7, "revenue": 394.61719700000003}, {"YearMonth": "2016-05", "CustomerCountry": "IE", "orders": 76, "revenue": 2824.210938}, {"YearMonth": "2016-05", "CustomerCountry": "IT", "orders": 15, "revenue": 1226.436563}, {"YearMonth": "2016-05", "CustomerCountry": "MT", "orders": 5, "revenue": 162.87854}, {"YearMonth": "2016-05", "CustomerCountry": "NL", "orders": 1, "revenue": 5.9076}, {"YearMonth": "2016-05", "CustomerCountry": "NO", "orders": 9, "revenue": 213.609417}, {"YearMonth": "2016-05", "CustomerCountry": "Other", "orders": 21, "revenue": 966.061232}, {"YearMonth": "2016-05", "CustomerCountry": "PT", "orders": 7, "revenue": 333.301858}, {"YearMonth": "2016-05", "CustomerCountry": "SE", "orders": 20, "revenue": 525.097472}, {"YearMonth": "2016-05", "CustomerCountry": "SI", "orders": 4, "revenue": 136.26478}, {"YearMonth": "2016-05", "CustomerCountry": "XX", "orders": 3, "revenue": 58.09833}, {"YearMonth": "2016-06", "CustomerCountry": "BE", "orders": 5, "revenue": 203.382209}, {"YearMonth": "2016-06", "CustomerCountry": "CH", "orders": 16, "revenue": 617.195488}, {"YearMonth": "2016-06", "CustomerCountry": "CY", "orders": 5, "revenue": 157.700901}, {"YearMonth": "2016-06", "CustomerCountry": "DE", "orders": 5, "revenue": 131.48893}, {"YearMonth": "2016-06", "CustomerCountry": "DK", "orders": 14, "revenue": 688.515773}, {"YearMonth": "2016-06", "CustomerCountry": "ES", "orders": 28, "revenue": 1305.443424}, {"YearMonth": "2016-06", "CustomerCountry": "FI", "orders": 3, "revenue": 173.948279}, {"YearMonth": "2016-06", "CustomerCountry": "FR", "orders": 31, "revenue": 1402.766813}, {"YearMonth": "2016-06", "CustomerCountry": "GB", "orders": 2473, "revenue": 59898.701062}, {"YearMonth": "2016-06", "CustomerCountry": "GR", "orders": 5, "revenue": 206.98878}, {"YearMonth": "2016-06", "CustomerCountry": "IE", "orders": 54, "revenue": 1962.609389}, {"YearMonth": "2016-06", "CustomerCountry": "IT", "orders": 13, "revenue": 776.673417}, {"YearMonth": "2016-06", "CustomerCountry": "MT", "orders": 12, "revenue": 741.702756}, {"YearMonth": "2016-06", "CustomerCountry": "NL", "orders": 2, "revenue": 200.759242}, {"YearMonth": "2016-06", "CustomerCountry": "NO", "orders": 16, "revenue": 342.380671}, {"YearMonth": "2016-06", "CustomerCountry": "Other", "orders": 20, "revenue": 1320.795027}, {"YearMonth": "2016-06", "CustomerCountry": "PT", "orders": 8, "revenue": 255.455196}, {"YearMonth": "2016-06", "CustomerCountry": "SE", "orders": 30, "revenue": 1712.935088}, {"YearMonth": "2016-06", "CustomerCountry": "SI", "orders": 5, "revenue": 325.394543}, {"YearMonth": "2016-06", "CustomerCountry": "XX", "orders": 4, "revenue": 61.651375}, {"YearMonth": "2016-07", "CustomerCountry": "BE", "orders": 3, "revenue": 73.96679900000001}, {"YearMonth": "2016-07", "CustomerCountry": "CH", "orders": 5, "revenue": 201.87980000000002}, {"YearMonth": "2016-07", "CustomerCountry": "CY", "orders": 5, "revenue": 179.866399}, {"YearMonth": "2016-07", "CustomerCountry": "DE", "orders": 5, "revenue": 265.67068}, {"YearMonth": "2016-07", "CustomerCountry": "DK", "orders": 13, "revenue": 713.2977980000001}, {"YearMonth": "2016-07", "CustomerCountry": "ES", "orders": 25, "revenue": 1355.267676}, {"YearMonth": "2016-07", "CustomerCountry": "FI", "orders": 4, "revenue": 215.061077}, {"YearMonth": "2016-07", "CustomerCountry": "FR", "orders": 34, "revenue": 1844.690841}, {"YearMonth": "2016-07", "CustomerCountry": "GB", "orders": 2271, "revenue": 53426.00271}, {"YearMonth": "2016-07", "CustomerCountry": "GR", "orders": 6, "revenue": 230.568198}, {"YearMonth": "2016-07", "CustomerCountry": "IE", "orders": 49, "revenue": 1960.883892}, {"YearMonth": "2016-07", "CustomerCountry": "IT", "orders": 11, "revenue": 573.431319}, {"YearMonth": "2016-07", "CustomerCountry": "MT", "orders": 8, "revenue": 321.749798}, {"YearMonth": "2016-07", "CustomerCountry": "NO", "orders": 11, "revenue": 266.12145}, {"YearMonth": "2016-07", "CustomerCountry": "Other", "orders": 12, "revenue": 454.12377499999997}, {"YearMonth": "2016-07", "CustomerCountry": "PT", "orders": 11, "revenue": 368.20439700000003}, {"YearMonth": "2016-07", "CustomerCountry": "SE", "orders": 13, "revenue": 563.471458}, {"YearMonth": "2016-07", "CustomerCountry": "SI", "orders": 3, "revenue": 79.784199}, {"YearMonth": "2016-07", "CustomerCountry": "XX", "orders": 4, "revenue": 126.370949}, {"YearMonth": "2016-08", "CustomerCountry": "BE", "orders": 6, "revenue": 269.325598}, {"YearMonth": "2016-08", "CustomerCountry": "CH", "orders": 13, "revenue": 534.7552009999999}, {"YearMonth": "2016-08", "CustomerCountry": "CY", "orders": 2, "revenue": 36.664199999999994}, {"YearMonth": "2016-08", "CustomerCountry": "DE", "orders": 6, "revenue": 355.9876}, {"YearMonth": "2016-08", "CustomerCountry": "DK", "orders": 19, "revenue": 753.7346}, {"YearMonth": "2016-08", "CustomerCountry": "ES", "orders": 47, "revenue": 2110.9792}, {"YearMonth": "2016-08", "CustomerCountry": "FI", "orders": 5, "revenue": 171.117502}, {"YearMonth": "2016-08", "CustomerCountry": "FR", "orders": 38, "revenue": 2066.069397}, {"YearMonth": "2016-08", "CustomerCountry": "GB", "orders": 2921, "revenue": 74420.225226}, {"YearMonth": "2016-08", "CustomerCountry": "GR", "orders": 6, "revenue": 247.933198}, {"YearMonth": "2016-08", "CustomerCountry": "IE", "orders": 71, "revenue": 2948.416888}, {"YearMonth": "2016-08", "CustomerCountry": "IT", "orders": 19, "revenue": 1307.319896}, {"YearMonth": "2016-08", "CustomerCountry": "MT", "orders": 15, "revenue": 831.54739}, {"YearMonth": "2016-08", "CustomerCountry": "NL", "orders": 4, "revenue": 393.412907}, {"YearMonth": "2016-08", "CustomerCountry": "NO", "orders": 21, "revenue": 597.175299}, {"YearMonth": "2016-08", "CustomerCountry": "Other", "orders": 33, "revenue": 1889.096794}, {"YearMonth": "2016-08", "CustomerCountry": "PT", "orders": 11, "revenue": 580.151809}, {"YearMonth": "2016-08", "CustomerCountry": "SE", "orders": 29, "revenue": 1822.138811}, {"YearMonth": "2016-08", "CustomerCountry": "SI", "orders": 6, "revenue": 249.27930500000002}, {"YearMonth": "2016-08", "CustomerCountry": "XX", "orders": 4, "revenue": 97.498902}, {"YearMonth": "2016-09", "CustomerCountry": "BE", "orders": 6, "revenue": 246.235656}, {"YearMonth": "2016-09", "CustomerCountry": "CH", "orders": 8, "revenue": 279.389899}, {"YearMonth": "2016-09", "CustomerCountry": "CY", "orders": 4, "revenue": 190.9819}, {"YearMonth": "2016-09", "CustomerCountry": "DE", "orders": 4, "revenue": 328.782995}, {"YearMonth": "2016-09", "CustomerCountry": "DK", "orders": 10, "revenue": 430.571746}, {"YearMonth": "2016-09", "CustomerCountry": "ES", "orders": 34, "revenue": 1532.731232}, {"YearMonth": "2016-09", "CustomerCountry": "FI", "orders": 5, "revenue": 270.126089}, {"YearMonth": "2016-09", "CustomerCountry": "FR", "orders": 32, "revenue": 1294.248058}, {"YearMonth": "2016-09", "CustomerCountry": "GB", "orders": 2597, "revenue": 60250.506644}, {"YearMonth": "2016-09", "CustomerCountry": "GR", "orders": 5, "revenue": 178.4396}, {"YearMonth": "2016-09", "CustomerCountry": "IE", "orders": 58, "revenue": 2116.327148}, {"YearMonth": "2016-09", "CustomerCountry": "IT", "orders": 21, "revenue": 920.261556}, {"YearMonth": "2016-09", "CustomerCountry": "MT", "orders": 8, "revenue": 251.654371}, {"YearMonth": "2016-09", "CustomerCountry": "NO", "orders": 9, "revenue": 215.534391}, {"YearMonth": "2016-09", "CustomerCountry": "Other", "orders": 16, "revenue": 774.5913969999999}, {"YearMonth": "2016-09", "CustomerCountry": "PT", "orders": 11, "revenue": 506.519796}, {"YearMonth": "2016-09", "CustomerCountry": "SE", "orders": 21, "revenue": 920.546434}, {"YearMonth": "2016-09", "CustomerCountry": "SI", "orders": 6, "revenue": 436.173781}, {"YearMonth": "2016-09", "CustomerCountry": "XX", "orders": 2, "revenue": 85.35471799999999}, {"YearMonth": "2016-10", "CustomerCountry": "BE", "orders": 4, "revenue": 280.186204}, {"YearMonth": "2016-10", "CustomerCountry": "CH", "orders": 12, "revenue": 394.183904}, {"YearMonth": "2016-10", "CustomerCountry": "CY", "orders": 8, "revenue": 190.863801}, {"YearMonth": "2016-10", "CustomerCountry": "DE", "orders": 9, "revenue": 479.168397}, {"YearMonth": "2016-10", "CustomerCountry": "DK", "orders": 21, "revenue": 1003.0531659999999}, {"YearMonth": "2016-10", "CustomerCountry": "ES", "orders": 36, "revenue": 1281.776102}, {"YearMonth": "2016-10", "CustomerCountry": "FI", "orders": 4, "revenue": 111.50099999999999}, {"YearMonth": "2016-10", "CustomerCountry": "FR", "orders": 36, "revenue": 1722.379693}, {"YearMonth": "2016-10", "CustomerCountry": "GB", "orders": 2679, "revenue": 62994.506554}, {"YearMonth": "2016-10", "CustomerCountry": "GR", "orders": 11, "revenue": 515.516995}, {"YearMonth": "2016-10", "CustomerCountry": "IE", "orders": 69, "revenue": 2320.107493}, {"YearMonth": "2016-10", "CustomerCountry": "IT", "orders": 19, "revenue": 976.88221}, {"YearMonth": "2016-10", "CustomerCountry": "MT", "orders": 16, "revenue": 677.733496}, {"YearMonth": "2016-10", "CustomerCountry": "NL", "orders": 7, "revenue": 384.492191}, {"YearMonth": "2016-10", "CustomerCountry": "NO", "orders": 9, "revenue": 301.689901}, {"YearMonth": "2016-10", "CustomerCountry": "Other", "orders": 24, "revenue": 1371.1055959999999}, {"YearMonth": "2016-10", "CustomerCountry": "PT", "orders": 6, "revenue": 246.991798}, {"YearMonth": "2016-10", "CustomerCountry": "SE", "orders": 20, "revenue": 993.999497}, {"YearMonth": "2016-10", "CustomerCountry": "SI", "orders": 2, "revenue": 63.7127}, {"YearMonth": "2016-10", "CustomerCountry": "XX", "orders": 3, "revenue": 61.3802}, {"YearMonth": "2016-11", "CustomerCountry": "BE", "orders": 7, "revenue": 291.62059999999997}, {"YearMonth": "2016-11", "CustomerCountry": "CH", "orders": 12, "revenue": 466.690796}, {"YearMonth": "2016-11", "CustomerCountry": "CY", "orders": 4, "revenue": 202.026802}, {"YearMonth": "2016-11", "CustomerCountry": "DE", "orders": 7, "revenue": 455.123196}, {"YearMonth": "2016-11", "CustomerCountry": "DK", "orders": 17, "revenue": 838.229196}, {"YearMonth": "2016-11", "CustomerCountry": "ES", "orders": 46, "revenue": 1944.997144}, {"YearMonth": "2016-11", "CustomerCountry": "FI", "orders": 2, "revenue": 65.281602}, {"YearMonth": "2016-11", "CustomerCountry": "FR", "orders": 41, "revenue": 1826.170613}, {"YearMonth": "2016-11", "CustomerCountry": "GB", "orders": 3055, "revenue": 75957.99099}, {"YearMonth": "2016-11", "CustomerCountry": "GR", "orders": 11, "revenue": 817.250494}, {"YearMonth": "2016-11", "CustomerCountry": "IE", "orders": 90, "revenue": 3992.612692}, {"YearMonth": "2016-11", "CustomerCountry": "IT", "orders": 13, "revenue": 862.833404}, {"YearMonth": "2016-11", "CustomerCountry": "MT", "orders": 7, "revenue": 253.954501}, {"YearMonth": "2016-11", "CustomerCountry": "NL", "orders": 4, "revenue": 77.3671}, {"YearMonth": "2016-11", "CustomerCountry": "NO", "orders": 15, "revenue": 347.360099}, {"YearMonth": "2016-11", "CustomerCountry": "Other", "orders": 23, "revenue": 1634.8048999999999}, {"YearMonth": "2016-11", "CustomerCountry": "PT", "orders": 8, "revenue": 388.581105}, {"YearMonth": "2016-11", "CustomerCountry": "SE", "orders": 22, "revenue": 1001.23219}, {"YearMonth": "2016-11", "CustomerCountry": "SI", "orders": 3, "revenue": 182.232303}, {"YearMonth": "2016-11", "CustomerCountry": "XX", "orders": 5, "revenue": 126.407102}, {"YearMonth": "2016-12", "CustomerCountry": "BE", "orders": 2, "revenue": 77.849998}, {"YearMonth": "2016-12", "CustomerCountry": "CH", "orders": 10, "revenue": 425.408396}, {"YearMonth": "2016-12", "CustomerCountry": "CY", "orders": 5, "revenue": 249.26080399999998}, {"YearMonth": "2016-12", "CustomerCountry": "DE", "orders": 5, "revenue": 245.825593}, {"YearMonth": "2016-12", "CustomerCountry": "DK", "orders": 17, "revenue": 1120.6919930000001}, {"YearMonth": "2016-12", "CustomerCountry": "ES", "orders": 22, "revenue": 1062.604603}, {"YearMonth": "2016-12", "CustomerCountry": "FI", "orders": 5, "revenue": 178.127196}, {"YearMonth": "2016-12", "CustomerCountry": "FR", "orders": 27, "revenue": 1462.401806}, {"YearMonth": "2016-12", "CustomerCountry": "GB", "orders": 2342, "revenue": 58253.659681}, {"YearMonth": "2016-12", "CustomerCountry": "GR", "orders": 6, "revenue": 195.718398}, {"YearMonth": "2016-12", "CustomerCountry": "IE", "orders": 51, "revenue": 2072.493794}, {"YearMonth": "2016-12", "CustomerCountry": "IT", "orders": 10, "revenue": 346.7924}, {"YearMonth": "2016-12", "CustomerCountry": "MT", "orders": 6, "revenue": 339.097907}, {"YearMonth": "2016-12", "CustomerCountry": "NL", "orders": 2, "revenue": 95.920001}, {"YearMonth": "2016-12", "CustomerCountry": "NO", "orders": 11, "revenue": 448.939799}, {"YearMonth": "2016-12", "CustomerCountry": "Other", "orders": 13, "revenue": 697.555604}, {"YearMonth": "2016-12", "CustomerCountry": "PT", "orders": 9, "revenue": 289.455598}, {"YearMonth": "2016-12", "CustomerCountry": "SE", "orders": 18, "revenue": 743.8908}, {"YearMonth": "2016-12", "CustomerCountry": "SI", "orders": 7, "revenue": 381.3286}, {"YearMonth": "2016-12", "CustomerCountry": "XX", "orders": 2, "revenue": 59.19130200000001}, {"YearMonth": "2017-01", "CustomerCountry": "BE", "orders": 4, "revenue": 212.539997}, {"YearMonth": "2017-01", "CustomerCountry": "CH", "orders": 18, "revenue": 751.459993}, {"YearMonth": "2017-01", "CustomerCountry": "CY", "orders": 7, "revenue": 223.840001}, {"YearMonth": "2017-01", "CustomerCountry": "DE", "orders": 10, "revenue": 881.3399959999999}, {"YearMonth": "2017-01", "CustomerCountry": "DK", "orders": 18, "revenue": 971.8499909999999}, {"YearMonth": "2017-01", "CustomerCountry": "ES", "orders": 49, "revenue": 2213.269994}, {"YearMonth": "2017-01", "CustomerCountry": "FI", "orders": 10, "revenue": 892.5799979999999}, {"YearMonth": "2017-01", "CustomerCountry": "FR", "orders": 47, "revenue": 2342.439997}, {"YearMonth": "2017-01", "CustomerCountry": "GB", "orders": 4679, "revenue": 106456.959476}, {"YearMonth": "2017-01", "CustomerCountry": "GR", "orders": 10, "revenue": 361.819999}, {"YearMonth": "2017-01", "CustomerCountry": "IE", "orders": 97, "revenue": 3626.739988}, {"YearMonth": "2017-01", "CustomerCountry": "IT", "orders": 23, "revenue": 1275.429989}, {"YearMonth": "2017-01", "CustomerCountry": "MT", "orders": 11, "revenue": 526.489998}, {"YearMonth": "2017-01", "CustomerCountry": "NL", "orders": 5, "revenue": 328.64000300000004}, {"YearMonth": "2017-01", "CustomerCountry": "NO", "orders": 23, "revenue": 571.479994}, {"YearMonth": "2017-01", "CustomerCountry": "Other", "orders": 42, "revenue": 2224.119978}, {"YearMonth": "2017-01", "CustomerCountry": "PT", "orders": 23, "revenue": 990.679997}, {"YearMonth": "2017-01", "CustomerCountry": "SE", "orders": 32, "revenue": 1212.109997}, {"YearMonth": "2017-01", "CustomerCountry": "SI", "orders": 9, "revenue": 545.8100019999999}, {"YearMonth": "2017-01", "CustomerCountry": "XX", "orders": 3, "revenue": 51.18}, {"YearMonth": "2017-02", "CustomerCountry": "BE", "orders": 8, "revenue": 323.020002}, {"YearMonth": "2017-02", "CustomerCountry": "CH", "orders": 8, "revenue": 243.280001}, {"YearMonth": "2017-02", "CustomerCountry": "CY", "orders": 6, "revenue": 186.449998}, {"YearMonth": "2017-02", "CustomerCountry": "DE", "orders": 3, "revenue": 749.969991}, {"YearMonth": "2017-02", "CustomerCountry": "DK", "orders": 15, "revenue": 659.8199960000001}, {"YearMonth": "2017-02", "CustomerCountry": "ES", "orders": 23, "revenue": 920.059992}, {"YearMonth": "2017-02", "CustomerCountry": "FI", "orders": 4, "revenue": 166.989998}, {"YearMonth": "2017-02", "CustomerCountry": "FR", "orders": 23, "revenue": 983.269993}, {"YearMonth": "2017-02", "CustomerCountry": "GB", "orders": 3181, "revenue": 69295.389781}, {"YearMonth": "2017-02", "CustomerCountry": "GR", "orders": 5, "revenue": 151.389997}, {"YearMonth": "2017-02", "CustomerCountry": "IE", "orders": 85, "revenue": 2880.199994}, {"YearMonth": "2017-02", "CustomerCountry": "IT", "orders": 12, "revenue": 660.040007}, {"YearMonth": "2017-02", "CustomerCountry": "MT", "orders": 8, "revenue": 239.29}, {"YearMonth": "2017-02", "CustomerCountry": "NL", "orders": 1, "revenue": 111.969997}, {"YearMonth": "2017-02", "CustomerCountry": "NO", "orders": 15, "revenue": 316.239995}, {"YearMonth": "2017-02", "CustomerCountry": "Other", "orders": 25, "revenue": 1073.809984}, {"YearMonth": "2017-02", "CustomerCountry": "PT", "orders": 9, "revenue": 350.79}, {"YearMonth": "2017-02", "CustomerCountry": "SE", "orders": 18, "revenue": 581.289995}, {"YearMonth": "2017-02", "CustomerCountry": "SI", "orders": 3, "revenue": 48.8}, {"YearMonth": "2017-02", "CustomerCountry": "XX", "orders": 1, "revenue": 48.599998}, {"YearMonth": "2017-03", "CustomerCountry": "BE", "orders": 5, "revenue": 194.929993}, {"YearMonth": "2017-03", "CustomerCountry": "CH", "orders": 15, "revenue": 685.5500079999999}, {"YearMonth": "2017-03", "CustomerCountry": "CY", "orders": 6, "revenue": 197.66999800000002}, {"YearMonth": "2017-03", "CustomerCountry": "DE", "orders": 1, "revenue": 104.930002}, {"YearMonth": "2017-03", "CustomerCountry": "DK", "orders": 14, "revenue": 525.460007}, {"YearMonth": "2017-03", "CustomerCountry": "ES", "orders": 44, "revenue": 1963.900011}, {"YearMonth": "2017-03", "CustomerCountry": "FI", "orders": 4, "revenue": 124.31}, {"YearMonth": "2017-03", "CustomerCountry": "FR", "orders": 33, "revenue": 1537.100004}, {"YearMonth": "2017-03", "CustomerCountry": "GB", "orders": 3667, "revenue": 82790.389659}, {"YearMonth": "2017-03", "CustomerCountry": "GR", "orders": 13, "revenue": 1423.099983}, {"YearMonth": "2017-03", "CustomerCountry": "IE", "orders": 81, "revenue": 2707.099982}, {"YearMonth": "2017-03", "CustomerCountry": "IT", "orders": 20, "revenue": 1068.389993}, {"YearMonth": "2017-03", "CustomerCountry": "MT", "orders": 11, "revenue": 760.939995}, {"YearMonth": "2017-03", "CustomerCountry": "NL", "orders": 3, "revenue": 237.35999900000002}, {"YearMonth": "2017-03", "CustomerCountry": "NO", "orders": 16, "revenue": 448.580002}, {"YearMonth": "2017-03", "CustomerCountry": "Other", "orders": 34, "revenue": 2016.779993}, {"YearMonth": "2017-03", "CustomerCountry": "PT", "orders": 15, "revenue": 516.549998}, {"YearMonth": "2017-03", "CustomerCountry": "SE", "orders": 31, "revenue": 1092.249995}, {"YearMonth": "2017-03", "CustomerCountry": "SI", "orders": 9, "revenue": 260.53}, {"YearMonth": "2017-03", "CustomerCountry": "XX", "orders": 4, "revenue": 71.76}, {"YearMonth": "2017-04", "CustomerCountry": "BE", "orders": 3, "revenue": 126.969999}, {"YearMonth": "2017-04", "CustomerCountry": "CH", "orders": 11, "revenue": 709.8499879999999}, {"YearMonth": "2017-04", "CustomerCountry": "CY", "orders": 4, "revenue": 112.810002}, {"YearMonth": "2017-04", "CustomerCountry": "DE", "orders": 5, "revenue": 252.84000400000002}, {"YearMonth": "2017-04", "CustomerCountry": "DK", "orders": 25, "revenue": 1063.790003}, {"YearMonth": "2017-04", "CustomerCountry": "ES", "orders": 28, "revenue": 1347.409984}, {"YearMonth": "2017-04", "CustomerCountry": "FI", "orders": 5, "revenue": 155.220001}, {"YearMonth": "2017-04", "CustomerCountry": "FR", "orders": 24, "revenue": 981.5}, {"YearMonth": "2017-04", "CustomerCountry": "GB", "orders": 3039, "revenue": 71197.43977}, {"YearMonth": "2017-04", "CustomerCountry": "GR", "orders": 9, "revenue": 436.550004}, {"YearMonth": "2017-04", "CustomerCountry": "IE", "orders": 71, "revenue": 2098.050001}, {"YearMonth": "2017-04", "CustomerCountry": "IT", "orders": 17, "revenue": 881.2099949999999}, {"YearMonth": "2017-04", "CustomerCountry": "MT", "orders": 12, "revenue": 488.249994}, {"YearMonth": "2017-04", "CustomerCountry": "NL", "orders": 2, "revenue": 51.709999999999994}, {"YearMonth": "2017-04", "CustomerCountry": "NO", "orders": 12, "revenue": 200.609999}, {"YearMonth": "2017-04", "CustomerCountry": "Other", "orders": 17, "revenue": 582.890005}, {"YearMonth": "2017-04", "CustomerCountry": "PT", "orders": 16, "revenue": 776.099991}, {"YearMonth": "2017-04", "CustomerCountry": "SE", "orders": 23, "revenue": 1054.489991}, {"YearMonth": "2017-04", "CustomerCountry": "SI", "orders": 3, "revenue": 141.929999}, {"YearMonth": "2017-04", "CustomerCountry": "XX", "orders": 2, "revenue": 41.550001}, {"YearMonth": "2017-05", "CustomerCountry": "BE", "orders": 7, "revenue": 339.33999900000003}, {"YearMonth": "2017-05", "CustomerCountry": "CH", "orders": 15, "revenue": 648.189993}, {"YearMonth": "2017-05", "CustomerCountry": "CY", "orders": 7, "revenue": 293.939998}, {"YearMonth": "2017-05", "CustomerCountry": "DE", "orders": 8, "revenue": 373.65999}, {"YearMonth": "2017-05", "CustomerCountry": "DK", "orders": 18, "revenue": 608.5899939999999}, {"YearMonth": "2017-05", "CustomerCountry": "ES", "orders": 38, "revenue": 1563.209984}, {"YearMonth": "2017-05", "CustomerCountry": "FI", "orders": 6, "revenue": 307.139995}, {"YearMonth": "2017-05", "CustomerCountry": "FR", "orders": 40, "revenue": 1825.119987}, {"YearMonth": "2017-05", "CustomerCountry": "GB", "orders": 3664, "revenue": 86622.569213}, {"YearMonth": "2017-05", "CustomerCountry": "GR", "orders": 10, "revenue": 571.08999}, {"YearMonth": "2017-05", "CustomerCountry": "IE", "orders": 87, "revenue": 3066.519986}, {"YearMonth": "2017-05", "CustomerCountry": "IT", "orders": 12, "revenue": 881.309989}, {"YearMonth": "2017-05", "CustomerCountry": "MT", "orders": 7, "revenue": 418.220007}, {"YearMonth": "2017-05", "CustomerCountry": "NL", "orders": 2, "revenue": 95.13000199999999}, {"YearMonth": "2017-05", "CustomerCountry": "NO", "orders": 23, "revenue": 633.79}, {"YearMonth": "2017-05", "CustomerCountry": "Other", "orders": 30, "revenue": 1366.01998}, {"YearMonth": "2017-05", "CustomerCountry": "PT", "orders": 10, "revenue": 444.879996}, {"YearMonth": "2017-05", "CustomerCountry": "SE", "orders": 28, "revenue": 1041.419994}, {"YearMonth": "2017-05", "CustomerCountry": "SI", "orders": 9, "revenue": 176.979999}, {"YearMonth": "2017-05", "CustomerCountry": "XX", "orders": 5, "revenue": 113.78}, {"YearMonth": "2017-06", "CustomerCountry": "BE", "orders": 2, "revenue": 121.199996}, {"YearMonth": "2017-06", "CustomerCountry": "CH", "orders": 4, "revenue": 159.80999500000001}, {"YearMonth": "2017-06", "CustomerCountry": "CY", "orders": 7, "revenue": 220.08999599999999}, {"YearMonth": "2017-06", "CustomerCountry": "DE", "orders": 6, "revenue": 433.370003}, {"YearMonth": "2017-06", "CustomerCountry": "DK", "orders": 21, "revenue": 1015.9699919999999}, {"YearMonth": "2017-06", "CustomerCountry": "ES", "orders": 29, "revenue": 1097.329997}, {"YearMonth": "2017-06", "CustomerCountry": "FI", "orders": 2, "revenue": 32.36}, {"YearMonth": "2017-06", "CustomerCountry": "FR", "orders": 19, "revenue": 1055.760002}, {"YearMonth": "2017-06", "CustomerCountry": "GB", "orders": 3035, "revenue": 70319.589303}, {"YearMonth": "2017-06", "CustomerCountry": "GR", "orders": 6, "revenue": 268.85999300000003}, {"YearMonth": "2017-06", "CustomerCountry": "IE", "orders": 62, "revenue": 2144.769985}, {"YearMonth": "2017-06", "CustomerCountry": "IT", "orders": 6, "revenue": 259.240002}, {"YearMonth": "2017-06", "CustomerCountry": "MT", "orders": 10, "revenue": 549.120008}, {"YearMonth": "2017-06", "CustomerCountry": "NL", "orders": 6, "revenue": 334.159993}, {"YearMonth": "2017-06", "CustomerCountry": "NO", "orders": 16, "revenue": 346.929995}, {"YearMonth": "2017-06", "CustomerCountry": "Other", "orders": 21, "revenue": 832.439986}, {"YearMonth": "2017-06", "CustomerCountry": "PT", "orders": 6, "revenue": 163.399998}, {"YearMonth": "2017-06", "CustomerCountry": "SE", "orders": 35, "revenue": 1426.079989}, {"YearMonth": "2017-06", "CustomerCountry": "SI", "orders": 4, "revenue": 245.240003}, {"YearMonth": "2017-06", "CustomerCountry": "XX", "orders": 3, "revenue": 49.270001}, {"YearMonth": "2017-07", "CustomerCountry": "BE", "orders": 8, "revenue": 444.779992}, {"YearMonth": "2017-07", "CustomerCountry": "CH", "orders": 11, "revenue": 468.649991}, {"YearMonth": "2017-07", "CustomerCountry": "CY", "orders": 7, "revenue": 350.59999500000004}, {"YearMonth": "2017-07", "CustomerCountry": "DE", "orders": 11, "revenue": 1149.810012}, {"YearMonth": "2017-07", "CustomerCountry": "DK", "orders": 24, "revenue": 1508.499981}, {"YearMonth": "2017-07", "CustomerCountry": "ES", "orders": 50, "revenue": 2084.979988}, {"YearMonth": "2017-07", "CustomerCountry": "FI", "orders": 6, "revenue": 214.980001}, {"YearMonth": "2017-07", "CustomerCountry": "FR", "orders": 41, "revenue": 2030.95}, {"YearMonth": "2017-07", "CustomerCountry": "GB", "orders": 4705, "revenue": 124238.698679}, {"YearMonth": "2017-07", "CustomerCountry": "GR", "orders": 11, "revenue": 650.269993}, {"YearMonth": "2017-07", "CustomerCountry": "IE", "orders": 98, "revenue": 3763.359969}, {"YearMonth": "2017-07", "CustomerCountry": "IT", "orders": 18, "revenue": 1132.240004}, {"YearMonth": "2017-07", "CustomerCountry": "MT", "orders": 17, "revenue": 852.8}, {"YearMonth": "2017-07", "CustomerCountry": "NL", "orders": 3, "revenue": 256.389998}, {"YearMonth": "2017-07", "CustomerCountry": "NO", "orders": 18, "revenue": 336.539993}, {"YearMonth": "2017-07", "CustomerCountry": "Other", "orders": 47, "revenue": 1603.94999}, {"YearMonth": "2017-07", "CustomerCountry": "PT", "orders": 11, "revenue": 536.029991}, {"YearMonth": "2017-07", "CustomerCountry": "SE", "orders": 32, "revenue": 1104.37999}, {"YearMonth": "2017-07", "CustomerCountry": "SI", "orders": 9, "revenue": 469.819995}, {"YearMonth": "2017-07", "CustomerCountry": "XX", "orders": 6, "revenue": 151.989998}, {"YearMonth": "2017-08", "CustomerCountry": "BE", "orders": 5, "revenue": 211.629999}, {"YearMonth": "2017-08", "CustomerCountry": "CH", "orders": 15, "revenue": 553.480003}, {"YearMonth": "2017-08", "CustomerCountry": "CY", "orders": 5, "revenue": 154.23}, {"YearMonth": "2017-08", "CustomerCountry": "DE", "orders": 5, "revenue": 215.499999}, {"YearMonth": "2017-08", "CustomerCountry": "DK", "orders": 16, "revenue": 575.569997}, {"YearMonth": "2017-08", "CustomerCountry": "ES", "orders": 43, "revenue": 2188.359981}, {"YearMonth": "2017-08", "CustomerCountry": "FI", "orders": 4, "revenue": 128.709999}, {"YearMonth": "2017-08", "CustomerCountry": "FR", "orders": 27, "revenue": 1136.140001}, {"YearMonth": "2017-08", "CustomerCountry": "GB", "orders": 3625, "revenue": 85532.60909}, {"YearMonth": "2017-08", "CustomerCountry": "GR", "orders": 5, "revenue": 247.98000100000002}, {"YearMonth": "2017-08", "CustomerCountry": "IE", "orders": 72, "revenue": 2169.219981}, {"YearMonth": "2017-08", "CustomerCountry": "IT", "orders": 7, "revenue": 319.429997}, {"YearMonth": "2017-08", "CustomerCountry": "MT", "orders": 8, "revenue": 260.449999}, {"YearMonth": "2017-08", "CustomerCountry": "NL", "orders": 3, "revenue": 257.810008}, {"YearMonth": "2017-08", "CustomerCountry": "NO", "orders": 19, "revenue": 436.239995}, {"YearMonth": "2017-08", "CustomerCountry": "Other", "orders": 39, "revenue": 1702.519983}, {"YearMonth": "2017-08", "CustomerCountry": "PT", "orders": 6, "revenue": 266.83}, {"YearMonth": "2017-08", "CustomerCountry": "SE", "orders": 31, "revenue": 1157.619995}, {"YearMonth": "2017-08", "CustomerCountry": "SI", "orders": 3, "revenue": 215.38000300000002}, {"YearMonth": "2017-08", "CustomerCountry": "XX", "orders": 1, "revenue": 26.58}, {"YearMonth": "2017-09", "CustomerCountry": "BE", "orders": 1, "revenue": 11.95}, {"YearMonth": "2017-09", "CustomerCountry": "CH", "orders": 7, "revenue": 323.880004}, {"YearMonth": "2017-09", "CustomerCountry": "CY", "orders": 7, "revenue": 299.749998}, {"YearMonth": "2017-09", "CustomerCountry": "DE", "orders": 6, "revenue": 180.85999999999999}, {"YearMonth": "2017-09", "CustomerCountry": "DK", "orders": 23, "revenue": 1255.299992}, {"YearMonth": "2017-09", "CustomerCountry": "ES", "orders": 26, "revenue": 1217.580005}, {"YearMonth": "2017-09", "CustomerCountry": "FI", "orders": 1, "revenue": 55.899998}, {"YearMonth": "2017-09", "CustomerCountry": "FR", "orders": 36, "revenue": 1511.450006}, {"YearMonth": "2017-09", "CustomerCountry": "GB", "orders": 3584, "revenue": 86259.019053}, {"YearMonth": "2017-09", "CustomerCountry": "GR", "orders": 7, "revenue": 448.289994}, {"YearMonth": "2017-09", "CustomerCountry": "IE", "orders": 88, "revenue": 3329.849972}, {"YearMonth": "2017-09", "CustomerCountry": "IT", "orders": 14, "revenue": 563.760002}, {"YearMonth": "2017-09", "CustomerCountry": "MT", "orders": 13, "revenue": 607.099998}, {"YearMonth": "2017-09", "CustomerCountry": "NL", "orders": 2, "revenue": 60.709998}, {"YearMonth": "2017-09", "CustomerCountry": "NO", "orders": 12, "revenue": 224.810001}, {"YearMonth": "2017-09", "CustomerCountry": "Other", "orders": 42, "revenue": 1372.229979}, {"YearMonth": "2017-09", "CustomerCountry": "PT", "orders": 9, "revenue": 289.329997}, {"YearMonth": "2017-09", "CustomerCountry": "SE", "orders": 39, "revenue": 1692.269989}, {"YearMonth": "2017-09", "CustomerCountry": "SI", "orders": 8, "revenue": 184.049999}, {"YearMonth": "2017-09", "CustomerCountry": "XX", "orders": 3, "revenue": 52.749999}, {"YearMonth": "2017-10", "CustomerCountry": "BE", "orders": 3, "revenue": 211.05}, {"YearMonth": "2017-10", "CustomerCountry": "CH", "orders": 15, "revenue": 492.049998}, {"YearMonth": "2017-10", "CustomerCountry": "CY", "orders": 13, "revenue": 364.249998}, {"YearMonth": "2017-10", "CustomerCountry": "DE", "orders": 4, "revenue": 240.469998}, {"YearMonth": "2017-10", "CustomerCountry": "DK", "orders": 28, "revenue": 1264.619987}, {"YearMonth": "2017-10", "CustomerCountry": "ES", "orders": 38, "revenue": 1706.869992}, {"YearMonth": "2017-10", "CustomerCountry": "FI", "orders": 9, "revenue": 274.24}, {"YearMonth": "2017-10", "CustomerCountry": "FR", "orders": 38, "revenue": 1617.269986}, {"YearMonth": "2017-10", "CustomerCountry": "GB", "orders": 4685, "revenue": 113416.13881599999}, {"YearMonth": "2017-10", "CustomerCountry": "GR", "orders": 11, "revenue": 513.299992}, {"YearMonth": "2017-10", "CustomerCountry": "IE", "orders": 68, "revenue": 2288.9499729999998}, {"YearMonth": "2017-10", "CustomerCountry": "IT", "orders": 17, "revenue": 622.749996}, {"YearMonth": "2017-10", "CustomerCountry": "MT", "orders": 12, "revenue": 494.559999}, {"YearMonth": "2017-10", "CustomerCountry": "NL", "orders": 2, "revenue": 142.510003}, {"YearMonth": "2017-10", "CustomerCountry": "NO", "orders": 25, "revenue": 484.759993}, {"YearMonth": "2017-10", "CustomerCountry": "Other", "orders": 53, "revenue": 2126.889963}, {"YearMonth": "2017-10", "CustomerCountry": "PT", "orders": 9, "revenue": 389.489998}, {"YearMonth": "2017-10", "CustomerCountry": "SE", "orders": 34, "revenue": 1261.449985}, {"YearMonth": "2017-10", "CustomerCountry": "SI", "orders": 4, "revenue": 171.109999}, {"YearMonth": "2017-10", "CustomerCountry": "XX", "orders": 4, "revenue": 92.179998}, {"YearMonth": "2017-11", "CustomerCountry": "BE", "orders": 7, "revenue": 310.449996}, {"YearMonth": "2017-11", "CustomerCountry": "CH", "orders": 17, "revenue": 615.259991}, {"YearMonth": "2017-11", "CustomerCountry": "CY", "orders": 6, "revenue": 228.249995}, {"YearMonth": "2017-11", "CustomerCountry": "DE", "orders": 6, "revenue": 299.019998}, {"YearMonth": "2017-11", "CustomerCountry": "DK", "orders": 32, "revenue": 1252.650003}, {"YearMonth": "2017-11", "CustomerCountry": "ES", "orders": 44, "revenue": 1833.289969}, {"YearMonth": "2017-11", "CustomerCountry": "FI", "orders": 5, "revenue": 179.399996}, {"YearMonth": "2017-11", "CustomerCountry": "FR", "orders": 47, "revenue": 1904.889977}, {"YearMonth": "2017-11", "CustomerCountry": "GB", "orders": 4697, "revenue": 119281.498735}, {"YearMonth": "2017-11", "CustomerCountry": "GR", "orders": 16, "revenue": 884.329992}, {"YearMonth": "2017-11", "CustomerCountry": "IE", "orders": 106, "revenue": 4066.809971}, {"YearMonth": "2017-11", "CustomerCountry": "IT", "orders": 20, "revenue": 1105.359991}, {"YearMonth": "2017-11", "CustomerCountry": "MT", "orders": 11, "revenue": 322.129998}, {"YearMonth": "2017-11", "CustomerCountry": "NL", "orders": 4, "revenue": 94.41999799999999}, {"YearMonth": "2017-11", "CustomerCountry": "NO", "orders": 27, "revenue": 713.879981}, {"YearMonth": "2017-11", "CustomerCountry": "Other", "orders": 54, "revenue": 2356.419981}, {"YearMonth": "2017-11", "CustomerCountry": "PT", "orders": 16, "revenue": 699.249993}, {"YearMonth": "2017-11", "CustomerCountry": "SE", "orders": 38, "revenue": 1656.900003}, {"YearMonth": "2017-11", "CustomerCountry": "SI", "orders": 10, "revenue": 430.689994}, {"YearMonth": "2017-11", "CustomerCountry": "XX", "orders": 4, "revenue": 156.589999}, {"YearMonth": "2017-12", "CustomerCountry": "BE", "orders": 5, "revenue": 162.37}, {"YearMonth": "2017-12", "CustomerCountry": "CH", "orders": 12, "revenue": 515.149992}, {"YearMonth": "2017-12", "CustomerCountry": "CY", "orders": 5, "revenue": 137.95}, {"YearMonth": "2017-12", "CustomerCountry": "DE", "orders": 6, "revenue": 299.94}, {"YearMonth": "2017-12", "CustomerCountry": "DK", "orders": 22, "revenue": 1045.969997}, {"YearMonth": "2017-12", "CustomerCountry": "ES", "orders": 40, "revenue": 1795.679996}, {"YearMonth": "2017-12", "CustomerCountry": "FI", "orders": 4, "revenue": 141.439996}, {"YearMonth": "2017-12", "CustomerCountry": "FR", "orders": 31, "revenue": 1397.6199880000001}, {"YearMonth": "2017-12", "CustomerCountry": "GB", "orders": 3414, "revenue": 81817.589179}, {"YearMonth": "2017-12", "CustomerCountry": "GR", "orders": 9, "revenue": 310.089999}, {"YearMonth": "2017-12", "CustomerCountry": "IE", "orders": 72, "revenue": 2545.609976}, {"YearMonth": "2017-12", "CustomerCountry": "IT", "orders": 10, "revenue": 592.359988}, {"YearMonth": "2017-12", "CustomerCountry": "MT", "orders": 13, "revenue": 504.06}, {"YearMonth": "2017-12", "CustomerCountry": "NL", "orders": 2, "revenue": 86.89}, {"YearMonth": "2017-12", "CustomerCountry": "NO", "orders": 21, "revenue": 463.509997}, {"YearMonth": "2017-12", "CustomerCountry": "Other", "orders": 38, "revenue": 1457.449986}, {"YearMonth": "2017-12", "CustomerCountry": "PT", "orders": 10, "revenue": 492.72999500000003}, {"YearMonth": "2017-12", "CustomerCountry": "SE", "orders": 26, "revenue": 943.27}, {"YearMonth": "2017-12", "CustomerCountry": "SI", "orders": 6, "revenue": 187.789996}, {"YearMonth": "2017-12", "CustomerCountry": "XX", "orders": 2, "revenue": 93.369999}, {"YearMonth": "2018-01", "CustomerCountry": "BE", "orders": 7, "revenue": 505.70999500000005}, {"YearMonth": "2018-01", "CustomerCountry": "CH", "orders": 20, "revenue": 618.130005}, {"YearMonth": "2018-01", "CustomerCountry": "CY", "orders": 14, "revenue": 530.120002}, {"YearMonth": "2018-01", "CustomerCountry": "DE", "orders": 12, "revenue": 458.899999}, {"YearMonth": "2018-01", "CustomerCountry": "DK", "orders": 44, "revenue": 1537.379994}, {"YearMonth": "2018-01", "CustomerCountry": "ES", "orders": 62, "revenue": 2289.830002}, {"YearMonth": "2018-01", "CustomerCountry": "FI", "orders": 10, "revenue": 843.070003}, {"YearMonth": "2018-01", "CustomerCountry": "FR", "orders": 58, "revenue": 2367.319984}, {"YearMonth": "2018-01", "CustomerCountry": "GB", "orders": 7540, "revenue": 189643.21864}, {"YearMonth": "2018-01", "CustomerCountry": "GR", "orders": 16, "revenue": 689.9300010000001}, {"YearMonth": "2018-01", "CustomerCountry": "IE", "orders": 186, "revenue": 6397.409989}, {"YearMonth": "2018-01", "CustomerCountry": "IT", "orders": 21, "revenue": 1064.889985}, {"YearMonth": "2018-01", "CustomerCountry": "MT", "orders": 19, "revenue": 541.319998}, {"YearMonth": "2018-01", "CustomerCountry": "NL", "orders": 3, "revenue": 347.42}, {"YearMonth": "2018-01", "CustomerCountry": "NO", "orders": 36, "revenue": 796.140002}, {"YearMonth": "2018-01", "CustomerCountry": "Other", "orders": 69, "revenue": 2511.2400000000002}, {"YearMonth": "2018-01", "CustomerCountry": "PT", "orders": 23, "revenue": 1130.019999}, {"YearMonth": "2018-01", "CustomerCountry": "SE", "orders": 51, "revenue": 1808.959985}, {"YearMonth": "2018-01", "CustomerCountry": "SI", "orders": 18, "revenue": 733.410002}, {"YearMonth": "2018-01", "CustomerCountry": "XX", "orders": 3, "revenue": 88.59}, {"YearMonth": "2018-02", "CustomerCountry": "BE", "orders": 6, "revenue": 455.170006}, {"YearMonth": "2018-02", "CustomerCountry": "CH", "orders": 14, "revenue": 475.85}, {"YearMonth": "2018-02", "CustomerCountry": "CY", "orders": 6, "revenue": 179.689999}, {"YearMonth": "2018-02", "CustomerCountry": "DE", "orders": 7, "revenue": 287.689996}, {"YearMonth": "2018-02", "CustomerCountry": "DK", "orders": 43, "revenue": 1491.219988}, {"YearMonth": "2018-02", "CustomerCountry": "ES", "orders": 37, "revenue": 1627.049995}, {"YearMonth": "2018-02", "CustomerCountry": "FI", "orders": 3, "revenue": 81.439998}, {"YearMonth": "2018-02", "CustomerCountry": "FR", "orders": 34, "revenue": 1217.900002}, {"YearMonth": "2018-02", "CustomerCountry": "GB", "orders": 4269, "revenue": 101130.95926}, {"YearMonth": "2018-02", "CustomerCountry": "GR", "orders": 12, "revenue": 516.19}, {"YearMonth": "2018-02", "CustomerCountry": "IE", "orders": 128, "revenue": 4308.769988}, {"YearMonth": "2018-02", "CustomerCountry": "IT", "orders": 9, "revenue": 306.84000000000003}, {"YearMonth": "2018-02", "CustomerCountry": "MT", "orders": 11, "revenue": 383.09999999999997}, {"YearMonth": "2018-02", "CustomerCountry": "NL", "orders": 2, "revenue": 265.160006}, {"YearMonth": "2018-02", "CustomerCountry": "NO", "orders": 14, "revenue": 314.859998}, {"YearMonth": "2018-02", "CustomerCountry": "Other", "orders": 38, "revenue": 1881.819987}, {"YearMonth": "2018-02", "CustomerCountry": "PT", "orders": 16, "revenue": 586.210005}, {"YearMonth": "2018-02", "CustomerCountry": "SE", "orders": 35, "revenue": 1521.369989}, {"YearMonth": "2018-02", "CustomerCountry": "SI", "orders": 10, "revenue": 272.249999}, {"YearMonth": "2018-02", "CustomerCountry": "XX", "orders": 4, "revenue": 89.499999}, {"YearMonth": "2018-03", "CustomerCountry": "BE", "orders": 6, "revenue": 300.410004}, {"YearMonth": "2018-03", "CustomerCountry": "CH", "orders": 12, "revenue": 348.839995}, {"YearMonth": "2018-03", "CustomerCountry": "CY", "orders": 8, "revenue": 301.079997}, {"YearMonth": "2018-03", "CustomerCountry": "DE", "orders": 6, "revenue": 211.39000000000001}, {"YearMonth": "2018-03", "CustomerCountry": "DK", "orders": 31, "revenue": 1029.919996}, {"YearMonth": "2018-03", "CustomerCountry": "ES", "orders": 48, "revenue": 1825.890001}, {"YearMonth": "2018-03", "CustomerCountry": "FI", "orders": 2, "revenue": 55.989999999999995}, {"YearMonth": "2018-03", "CustomerCountry": "FR", "orders": 47, "revenue": 2030.520008}, {"YearMonth": "2018-03", "CustomerCountry": "GB", "orders": 5234, "revenue": 123858.499068}, {"YearMonth": "2018-03", "CustomerCountry": "GR", "orders": 13, "revenue": 459.43}, {"YearMonth": "2018-03", "CustomerCountry": "IE", "orders": 122, "revenue": 4253.319963}, {"YearMonth": "2018-03", "CustomerCountry": "IT", "orders": 20, "revenue": 1127.529994}, {"YearMonth": "2018-03", "CustomerCountry": "MT", "orders": 12, "revenue": 577.480008}, {"YearMonth": "2018-03", "CustomerCountry": "NL", "orders": 1, "revenue": 36.120001}, {"YearMonth": "2018-03", "CustomerCountry": "NO", "orders": 14, "revenue": 251.88}, {"YearMonth": "2018-03", "CustomerCountry": "Other", "orders": 47, "revenue": 1408.83999}, {"YearMonth": "2018-03", "CustomerCountry": "PT", "orders": 10, "revenue": 346.679998}, {"YearMonth": "2018-03", "CustomerCountry": "SE", "orders": 27, "revenue": 1024.209992}, {"YearMonth": "2018-03", "CustomerCountry": "SI", "orders": 6, "revenue": 166.099999}, {"YearMonth": "2018-03", "CustomerCountry": "XX", "orders": 4, "revenue": 183.29000200000002}, {"YearMonth": "2018-04", "CustomerCountry": "BE", "orders": 9, "revenue": 621.989998}, {"YearMonth": "2018-04", "CustomerCountry": "CH", "orders": 8, "revenue": 479.039988}, {"YearMonth": "2018-04", "CustomerCountry": "CY", "orders": 12, "revenue": 514.059991}, {"YearMonth": "2018-04", "CustomerCountry": "DE", "orders": 5, "revenue": 139.70000100000001}, {"YearMonth": "2018-04", "CustomerCountry": "DK", "orders": 35, "revenue": 1862.2800009999999}, {"YearMonth": "2018-04", "CustomerCountry": "ES", "orders": 46, "revenue": 1835.30999}, {"YearMonth": "2018-04", "CustomerCountry": "FI", "orders": 9, "revenue": 322.849999}, {"YearMonth": "2018-04", "CustomerCountry": "FR", "orders": 32, "revenue": 1567.619988}, {"YearMonth": "2018-04", "CustomerCountry": "GB", "orders": 4734, "revenue": 116330.358854}, {"YearMonth": "2018-04", "CustomerCountry": "GR", "orders": 14, "revenue": 597.119994}, {"YearMonth": "2018-04", "CustomerCountry": "IE", "orders": 126, "revenue": 4087.059971}, {"YearMonth": "2018-04", "CustomerCountry": "IT", "orders": 11, "revenue": 433.119997}, {"YearMonth": "2018-04", "CustomerCountry": "MT", "orders": 11, "revenue": 297.449997}, {"YearMonth": "2018-04", "CustomerCountry": "NO", "orders": 19, "revenue": 387.759999}, {"YearMonth": "2018-04", "CustomerCountry": "Other", "orders": 41, "revenue": 1326.519992}, {"YearMonth": "2018-04", "CustomerCountry": "PT", "orders": 14, "revenue": 475.149995}, {"YearMonth": "2018-04", "CustomerCountry": "SE", "orders": 34, "revenue": 1628.570006}, {"YearMonth": "2018-04", "CustomerCountry": "SI", "orders": 11, "revenue": 356.949999}, {"YearMonth": "2018-04", "CustomerCountry": "XX", "orders": 2, "revenue": 84.89}, {"YearMonth": "2018-05", "CustomerCountry": "BE", "orders": 5, "revenue": 239.889999}, {"YearMonth": "2018-05", "CustomerCountry": "CH", "orders": 5, "revenue": 299.279994}, {"YearMonth": "2018-05", "CustomerCountry": "CY", "orders": 3, "revenue": 67.969999}, {"YearMonth": "2018-05", "CustomerCountry": "DE", "orders": 6, "revenue": 335.310002}, {"YearMonth": "2018-05", "CustomerCountry": "DK", "orders": 20, "revenue": 862.290001}, {"YearMonth": "2018-05", "CustomerCountry": "ES", "orders": 33, "revenue": 1907.119982}, {"YearMonth": "2018-05", "CustomerCountry": "FI", "orders": 5, "revenue": 191.81}, {"YearMonth": "2018-05", "CustomerCountry": "FR", "orders": 27, "revenue": 1207.059993}, {"YearMonth": "2018-05", "CustomerCountry": "GB", "orders": 4562, "revenue": 114126.468709}, {"YearMonth": "2018-05", "CustomerCountry": "GR", "orders": 10, "revenue": 386.359994}, {"YearMonth": "2018-05", "CustomerCountry": "IE", "orders": 107, "revenue": 3534.979963}, {"YearMonth": "2018-05", "CustomerCountry": "IT", "orders": 12, "revenue": 550.880006}, {"YearMonth": "2018-05", "CustomerCountry": "MT", "orders": 17, "revenue": 646.759999}, {"YearMonth": "2018-05", "CustomerCountry": "NL", "orders": 3, "revenue": 253.740003}, {"YearMonth": "2018-05", "CustomerCountry": "NO", "orders": 10, "revenue": 244.98000000000002}, {"YearMonth": "2018-05", "CustomerCountry": "Other", "orders": 41, "revenue": 1713.6699879999999}, {"YearMonth": "2018-05", "CustomerCountry": "PT", "orders": 11, "revenue": 333.269995}, {"YearMonth": "2018-05", "CustomerCountry": "SE", "orders": 36, "revenue": 1514.529998}, {"YearMonth": "2018-05", "CustomerCountry": "SI", "orders": 2, "revenue": 98.16999899999999}, {"YearMonth": "2018-05", "CustomerCountry": "XX", "orders": 1, "revenue": 45.18}, {"YearMonth": "2018-06", "CustomerCountry": "BE", "orders": 10, "revenue": 558.090002}, {"YearMonth": "2018-06", "CustomerCountry": "CH", "orders": 12, "revenue": 373.499993}, {"YearMonth": "2018-06", "CustomerCountry": "CY", "orders": 10, "revenue": 322.530005}, {"YearMonth": "2018-06", "CustomerCountry": "DE", "orders": 7, "revenue": 229.66999800000002}, {"YearMonth": "2018-06", "CustomerCountry": "DK", "orders": 35, "revenue": 1965.039973}, {"YearMonth": "2018-06", "CustomerCountry": "ES", "orders": 37, "revenue": 1748.449985}, {"YearMonth": "2018-06", "CustomerCountry": "FI", "orders": 3, "revenue": 95.549998}, {"YearMonth": "2018-06", "CustomerCountry": "FR", "orders": 35, "revenue": 1429.949997}, {"YearMonth": "2018-06", "CustomerCountry": "GB", "orders": 4406, "revenue": 107187.99868}, {"YearMonth": "2018-06", "CustomerCountry": "GR", "orders": 7, "revenue": 339.879997}, {"YearMonth": "2018-06", "CustomerCountry": "IE", "orders": 88, "revenue": 3079.019976}, {"YearMonth": "2018-06", "CustomerCountry": "IT", "orders": 15, "revenue": 822.25}, {"YearMonth": "2018-06", "CustomerCountry": "MT", "orders": 14, "revenue": 496.349998}, {"YearMonth": "2018-06", "CustomerCountry": "NL", "orders": 1, "revenue": 5.95}, {"YearMonth": "2018-06", "CustomerCountry": "NO", "orders": 18, "revenue": 395.669989}, {"YearMonth": "2018-06", "CustomerCountry": "Other", "orders": 39, "revenue": 1684.439982}, {"YearMonth": "2018-06", "CustomerCountry": "PT", "orders": 12, "revenue": 459.449994}, {"YearMonth": "2018-06", "CustomerCountry": "SE", "orders": 36, "revenue": 1426.319987}, {"YearMonth": "2018-06", "CustomerCountry": "SI", "orders": 10, "revenue": 459.65999600000004}, {"YearMonth": "2018-06", "CustomerCountry": "XX", "orders": 5, "revenue": 49.760000000000005}, {"YearMonth": "2018-07", "CustomerCountry": "BE", "orders": 5, "revenue": 139.089999}, {"YearMonth": "2018-07", "CustomerCountry": "CH", "orders": 9, "revenue": 343.929996}, {"YearMonth": "2018-07", "CustomerCountry": "CY", "orders": 5, "revenue": 187.71000099999998}, {"YearMonth": "2018-07", "CustomerCountry": "DE", "orders": 5, "revenue": 190.25}, {"YearMonth": "2018-07", "CustomerCountry": "DK", "orders": 30, "revenue": 1092.629988}, {"YearMonth": "2018-07", "CustomerCountry": "ES", "orders": 42, "revenue": 2162.209985}, {"YearMonth": "2018-07", "CustomerCountry": "FI", "orders": 1, "revenue": 27.959999}, {"YearMonth": "2018-07", "CustomerCountry": "FR", "orders": 33, "revenue": 1602.919993}, {"YearMonth": "2018-07", "CustomerCountry": "GB", "orders": 4127, "revenue": 107328.50887599999}, {"YearMonth": "2018-07", "CustomerCountry": "GR", "orders": 12, "revenue": 600.799995}, {"YearMonth": "2018-07", "CustomerCountry": "IE", "orders": 100, "revenue": 3805.349953}, {"YearMonth": "2018-07", "CustomerCountry": "IT", "orders": 8, "revenue": 223.31}, {"YearMonth": "2018-07", "CustomerCountry": "MT", "orders": 11, "revenue": 593.570004}, {"YearMonth": "2018-07", "CustomerCountry": "NL", "orders": 3, "revenue": 475.690001}, {"YearMonth": "2018-07", "CustomerCountry": "NO", "orders": 12, "revenue": 239.819993}, {"YearMonth": "2018-07", "CustomerCountry": "Other", "orders": 47, "revenue": 2110.259994}, {"YearMonth": "2018-07", "CustomerCountry": "PT", "orders": 9, "revenue": 400.409995}, {"YearMonth": "2018-07", "CustomerCountry": "SE", "orders": 40, "revenue": 1261.689984}, {"YearMonth": "2018-07", "CustomerCountry": "SI", "orders": 5, "revenue": 528.820003}, {"YearMonth": "2018-07", "CustomerCountry": "XX", "orders": 4, "revenue": 107.92999900000001}, {"YearMonth": "2018-08", "CustomerCountry": "BE", "orders": 4, "revenue": 245.029993}, {"YearMonth": "2018-08", "CustomerCountry": "CH", "orders": 4, "revenue": 362.89}, {"YearMonth": "2018-08", "CustomerCountry": "CY", "orders": 5, "revenue": 209.449999}, {"YearMonth": "2018-08", "CustomerCountry": "DE", "orders": 2, "revenue": 280.269997}, {"YearMonth": "2018-08", "CustomerCountry": "DK", "orders": 32, "revenue": 1540.460004}, {"YearMonth": "2018-08", "CustomerCountry": "ES", "orders": 39, "revenue": 1772.4299879999999}, {"YearMonth": "2018-08", "CustomerCountry": "FI", "orders": 2, "revenue": 85.19999999999999}, {"YearMonth": "2018-08", "CustomerCountry": "FR", "orders": 34, "revenue": 1927.819995}, {"YearMonth": "2018-08", "CustomerCountry": "GB", "orders": 5164, "revenue": 135571.518507}, {"YearMonth": "2018-08", "CustomerCountry": "GR", "orders": 15, "revenue": 583.029991}, {"YearMonth": "2018-08", "CustomerCountry": "IE", "orders": 101, "revenue": 3271.259973}, {"YearMonth": "2018-08", "CustomerCountry": "IT", "orders": 13, "revenue": 553.929995}, {"YearMonth": "2018-08", "CustomerCountry": "MT", "orders": 8, "revenue": 357.33000100000004}, {"YearMonth": "2018-08", "CustomerCountry": "NL", "orders": 2, "revenue": 269.70000600000003}, {"YearMonth": "2018-08", "CustomerCountry": "NO", "orders": 10, "revenue": 223.03}, {"YearMonth": "2018-08", "CustomerCountry": "Other", "orders": 34, "revenue": 1259.980008}, {"YearMonth": "2018-08", "CustomerCountry": "PT", "orders": 10, "revenue": 403.790007}, {"YearMonth": "2018-08", "CustomerCountry": "SE", "orders": 35, "revenue": 1116.319992}, {"YearMonth": "2018-08", "CustomerCountry": "SI", "orders": 4, "revenue": 105.829998}, {"YearMonth": "2018-08", "CustomerCountry": "XX", "orders": 1, "revenue": 28.01}, {"YearMonth": "2018-09", "CustomerCountry": "BE", "orders": 3, "revenue": 109.069999}, {"YearMonth": "2018-09", "CustomerCountry": "CH", "orders": 8, "revenue": 272.90000399999997}, {"YearMonth": "2018-09", "CustomerCountry": "CY", "orders": 8, "revenue": 273.939998}, {"YearMonth": "2018-09", "CustomerCountry": "DE", "orders": 4, "revenue": 210.35}, {"YearMonth": "2018-09", "CustomerCountry": "DK", "orders": 30, "revenue": 1388.739992}, {"YearMonth": "2018-09", "CustomerCountry": "ES", "orders": 41, "revenue": 1583.199982}, {"YearMonth": "2018-09", "CustomerCountry": "FI", "orders": 7, "revenue": 297.000003}, {"YearMonth": "2018-09", "CustomerCountry": "FR", "orders": 25, "revenue": 1128.67999}, {"YearMonth": "2018-09", "CustomerCountry": "GB", "orders": 3954, "revenue": 100884.189077}, {"YearMonth": "2018-09", "CustomerCountry": "GR", "orders": 6, "revenue": 233.26999899999998}, {"YearMonth": "2018-09", "CustomerCountry": "IE", "orders": 90, "revenue": 3121.459976}, {"YearMonth": "2018-09", "CustomerCountry": "IT", "orders": 12, "revenue": 457.17}, {"YearMonth": "2018-09", "CustomerCountry": "MT", "orders": 12, "revenue": 605.579987}, {"YearMonth": "2018-09", "CustomerCountry": "NL", "orders": 1, "revenue": 26.259999}, {"YearMonth": "2018-09", "CustomerCountry": "NO", "orders": 14, "revenue": 275.519996}, {"YearMonth": "2018-09", "CustomerCountry": "Other", "orders": 36, "revenue": 1444.3199869999999}, {"YearMonth": "2018-09", "CustomerCountry": "PT", "orders": 10, "revenue": 358.089997}, {"YearMonth": "2018-09", "CustomerCountry": "SE", "orders": 46, "revenue": 1662.749994}, {"YearMonth": "2018-09", "CustomerCountry": "SI", "orders": 9, "revenue": 441.370002}, {"YearMonth": "2018-09", "CustomerCountry": "XX", "orders": 4, "revenue": 112.76999699999999}, {"YearMonth": "2018-10", "CustomerCountry": "BE", "orders": 4, "revenue": 154.709996}, {"YearMonth": "2018-10", "CustomerCountry": "CH", "orders": 9, "revenue": 302.150001}, {"YearMonth": "2018-10", "CustomerCountry": "CY", "orders": 13, "revenue": 454.61}, {"YearMonth": "2018-10", "CustomerCountry": "DE", "orders": 10, "revenue": 557.269996}, {"YearMonth": "2018-10", "CustomerCountry": "DK", "orders": 47, "revenue": 2446.409999}, {"YearMonth": "2018-10", "CustomerCountry": "ES", "orders": 59, "revenue": 2689.939983}, {"YearMonth": "2018-10", "CustomerCountry": "FI", "orders": 6, "revenue": 279.639993}, {"YearMonth": "2018-10", "CustomerCountry": "FR", "orders": 51, "revenue": 2802.189999}, {"YearMonth": "2018-10", "CustomerCountry": "GB", "orders": 4774, "revenue": 127076.449074}, {"YearMonth": "2018-10", "CustomerCountry": "GR", "orders": 11, "revenue": 366.050001}, {"YearMonth": "2018-10", "CustomerCountry": "IE", "orders": 125, "revenue": 4703.229982}, {"YearMonth": "2018-10", "CustomerCountry": "IT", "orders": 17, "revenue": 937.989996}, {"YearMonth": "2018-10", "CustomerCountry": "MT", "orders": 16, "revenue": 569.779998}, {"YearMonth": "2018-10", "CustomerCountry": "NL", "orders": 2, "revenue": 46.26}, {"YearMonth": "2018-10", "CustomerCountry": "NO", "orders": 24, "revenue": 480.059998}, {"YearMonth": "2018-10", "CustomerCountry": "Other", "orders": 49, "revenue": 1850.130004}, {"YearMonth": "2018-10", "CustomerCountry": "PT", "orders": 16, "revenue": 556.389998}, {"YearMonth": "2018-10", "CustomerCountry": "SE", "orders": 37, "revenue": 1743.57997}, {"YearMonth": "2018-10", "CustomerCountry": "SI", "orders": 9, "revenue": 462.689998}, {"YearMonth": "2018-10", "CustomerCountry": "XX", "orders": 6, "revenue": 161.380001}, {"YearMonth": "2018-11", "CustomerCountry": "BE", "orders": 3, "revenue": 174.319994}, {"YearMonth": "2018-11", "CustomerCountry": "CH", "orders": 12, "revenue": 452.749995}, {"YearMonth": "2018-11", "CustomerCountry": "CY", "orders": 6, "revenue": 228.84999499999998}, {"YearMonth": "2018-11", "CustomerCountry": "DE", "orders": 5, "revenue": 154.309997}, {"YearMonth": "2018-11", "CustomerCountry": "DK", "orders": 31, "revenue": 1296.15}, {"YearMonth": "2018-11", "CustomerCountry": "ES", "orders": 36, "revenue": 1422.519996}, {"YearMonth": "2018-11", "CustomerCountry": "FI", "orders": 4, "revenue": 586.780005}, {"YearMonth": "2018-11", "CustomerCountry": "FR", "orders": 33, "revenue": 1441.790003}, {"YearMonth": "2018-11", "CustomerCountry": "GB", "orders": 4483, "revenue": 118778.859942}, {"YearMonth": "2018-11", "CustomerCountry": "GR", "orders": 14, "revenue": 468.209995}, {"YearMonth": "2018-11", "CustomerCountry": "IE", "orders": 108, "revenue": 3690.299987}, {"YearMonth": "2018-11", "CustomerCountry": "IT", "orders": 22, "revenue": 1221.619997}, {"YearMonth": "2018-11", "CustomerCountry": "MT", "orders": 18, "revenue": 672.39}, {"YearMonth": "2018-11", "CustomerCountry": "NL", "orders": 3, "revenue": 156.95999899999998}, {"YearMonth": "2018-11", "CustomerCountry": "NO", "orders": 14, "revenue": 371.279993}, {"YearMonth": "2018-11", "CustomerCountry": "Other", "orders": 34, "revenue": 1923.71}, {"YearMonth": "2018-11", "CustomerCountry": "PT", "orders": 10, "revenue": 308.819999}, {"YearMonth": "2018-11", "CustomerCountry": "SE", "orders": 50, "revenue": 1619.4399899999999}, {"YearMonth": "2018-11", "CustomerCountry": "SI", "orders": 10, "revenue": 480.199999}, {"YearMonth": "2018-11", "CustomerCountry": "XX", "orders": 3, "revenue": 139.220001}, {"YearMonth": "2018-12", "CustomerCountry": "BE", "orders": 3, "revenue": 323.34000100000003}, {"YearMonth": "2018-12", "CustomerCountry": "CH", "orders": 14, "revenue": 505.069998}, {"YearMonth": "2018-12", "CustomerCountry": "CY", "orders": 7, "revenue": 392.09000000000003}, {"YearMonth": "2018-12", "CustomerCountry": "DE", "orders": 7, "revenue": 329.140002}, {"YearMonth": "2018-12", "CustomerCountry": "DK", "orders": 28, "revenue": 1218.699991}, {"YearMonth": "2018-12", "CustomerCountry": "ES", "orders": 40, "revenue": 2024.369988}, {"YearMonth": "2018-12", "CustomerCountry": "FI", "orders": 5, "revenue": 291.389995}, {"YearMonth": "2018-12", "CustomerCountry": "FR", "orders": 37, "revenue": 1582.579985}, {"YearMonth": "2018-12", "CustomerCountry": "GB", "orders": 4126, "revenue": 106540.299695}, {"YearMonth": "2018-12", "CustomerCountry": "GR", "orders": 9, "revenue": 614.58}, {"YearMonth": "2018-12", "CustomerCountry": "IE", "orders": 91, "revenue": 3529.439997}, {"YearMonth": "2018-12", "CustomerCountry": "IT", "orders": 14, "revenue": 752.600001}, {"YearMonth": "2018-12", "CustomerCountry": "MT", "orders": 10, "revenue": 286.409998}, {"YearMonth": "2018-12", "CustomerCountry": "NL", "orders": 1, "revenue": 51.280001}, {"YearMonth": "2018-12", "CustomerCountry": "NO", "orders": 13, "revenue": 292.5}, {"YearMonth": "2018-12", "CustomerCountry": "Other", "orders": 47, "revenue": 2727.249974}, {"YearMonth": "2018-12", "CustomerCountry": "PT", "orders": 11, "revenue": 573.809992}, {"YearMonth": "2018-12", "CustomerCountry": "SE", "orders": 37, "revenue": 1637.629999}, {"YearMonth": "2018-12", "CustomerCountry": "SI", "orders": 10, "revenue": 407.549999}, {"YearMonth": "2018-12", "CustomerCountry": "XX", "orders": 3, "revenue": 85.67999800000001}, {"YearMonth": "2019-01", "CustomerCountry": "BE", "orders": 9, "revenue": 426.130001}, {"YearMonth": "2019-01", "CustomerCountry": "CH", "orders": 14, "revenue": 593.4299980000001}, {"YearMonth": "2019-01", "CustomerCountry": "CY", "orders": 5, "revenue": 158.409995}, {"YearMonth": "2019-01", "CustomerCountry": "DE", "orders": 9, "revenue": 495.180006}, {"YearMonth": "2019-01", "CustomerCountry": "DK", "orders": 45, "revenue": 2172.939994}, {"YearMonth": "2019-01", "CustomerCountry": "ES", "orders": 55, "revenue": 3046.2000080000003}, {"YearMonth": "2019-01", "CustomerCountry": "FI", "orders": 7, "revenue": 315.120001}, {"YearMonth": "2019-01", "CustomerCountry": "FR", "orders": 49, "revenue": 2582.189982}, {"YearMonth": "2019-01", "CustomerCountry": "GB", "orders": 6444, "revenue": 173598.788746}, {"YearMonth": "2019-01", "CustomerCountry": "GR", "orders": 14, "revenue": 793.019995}, {"YearMonth": "2019-01", "CustomerCountry": "IE", "orders": 170, "revenue": 7567.299982}, {"YearMonth": "2019-01", "CustomerCountry": "IT", "orders": 22, "revenue": 879.349995}, {"YearMonth": "2019-01", "CustomerCountry": "MT", "orders": 12, "revenue": 661.370005}, {"YearMonth": "2019-01", "CustomerCountry": "NL", "orders": 4, "revenue": 211.609993}, {"YearMonth": "2019-01", "CustomerCountry": "NO", "orders": 23, "revenue": 565.349998}, {"YearMonth": "2019-01", "CustomerCountry": "Other", "orders": 56, "revenue": 1924.919998}, {"YearMonth": "2019-01", "CustomerCountry": "PT", "orders": 20, "revenue": 922.35}, {"YearMonth": "2019-01", "CustomerCountry": "SE", "orders": 57, "revenue": 2091.279989}, {"YearMonth": "2019-01", "CustomerCountry": "SI", "orders": 15, "revenue": 760.289983}, {"YearMonth": "2019-01", "CustomerCountry": "XX", "orders": 5, "revenue": 103.839999}, {"YearMonth": "2019-02", "CustomerCountry": "CH", "orders": 5, "revenue": 158.39999699999998}, {"YearMonth": "2019-02", "CustomerCountry": "CY", "orders": 12, "revenue": 695.449998}, {"YearMonth": "2019-02", "CustomerCountry": "DE", "orders": 2, "revenue": 55.469999}, {"YearMonth": "2019-02", "CustomerCountry": "DK", "orders": 35, "revenue": 1519.689988}, {"YearMonth": "2019-02", "CustomerCountry": "ES", "orders": 41, "revenue": 1802.1499979999999}, {"YearMonth": "2019-02", "CustomerCountry": "FI", "orders": 1, "revenue": 19.96}, {"YearMonth": "2019-02", "CustomerCountry": "FR", "orders": 29, "revenue": 1490.699993}, {"YearMonth": "2019-02", "CustomerCountry": "GB", "orders": 3766, "revenue": 98451.489143}, {"YearMonth": "2019-02", "CustomerCountry": "GR", "orders": 8, "revenue": 263.709999}, {"YearMonth": "2019-02", "CustomerCountry": "IE", "orders": 133, "revenue": 4962.699958}, {"YearMonth": "2019-02", "CustomerCountry": "IT", "orders": 12, "revenue": 871.369998}, {"YearMonth": "2019-02", "CustomerCountry": "MT", "orders": 8, "revenue": 262.85}, {"YearMonth": "2019-02", "CustomerCountry": "NL", "orders": 5, "revenue": 464.460005}, {"YearMonth": "2019-02", "CustomerCountry": "NO", "orders": 12, "revenue": 326.329999}, {"YearMonth": "2019-02", "CustomerCountry": "Other", "orders": 30, "revenue": 1118.489987}, {"YearMonth": "2019-02", "CustomerCountry": "PT", "orders": 10, "revenue": 355.379999}, {"YearMonth": "2019-02", "CustomerCountry": "SE", "orders": 31, "revenue": 1361.9099999999999}, {"YearMonth": "2019-02", "CustomerCountry": "SI", "orders": 8, "revenue": 551.440006}, {"YearMonth": "2019-02", "CustomerCountry": "XX", "orders": 3, "revenue": 145.590001}, {"YearMonth": "2019-03", "CustomerCountry": "BE", "orders": 4, "revenue": 224.469996}, {"YearMonth": "2019-03", "CustomerCountry": "CH", "orders": 7, "revenue": 263.599994}, {"YearMonth": "2019-03", "CustomerCountry": "CY", "orders": 8, "revenue": 332.539994}, {"YearMonth": "2019-03", "CustomerCountry": "DE", "orders": 7, "revenue": 358.190001}, {"YearMonth": "2019-03", "CustomerCountry": "DK", "orders": 37, "revenue": 1414.969992}, {"YearMonth": "2019-03", "CustomerCountry": "ES", "orders": 40, "revenue": 1695.490003}, {"YearMonth": "2019-03", "CustomerCountry": "FI", "orders": 9, "revenue": 352.149996}, {"YearMonth": "2019-03", "CustomerCountry": "FR", "orders": 27, "revenue": 1051.649995}, {"YearMonth": "2019-03", "CustomerCountry": "GB", "orders": 4112, "revenue": 114332.659068}, {"YearMonth": "2019-03", "CustomerCountry": "GR", "orders": 7, "revenue": 394.09999400000004}, {"YearMonth": "2019-03", "CustomerCountry": "IE", "orders": 100, "revenue": 3449.139975}, {"YearMonth": "2019-03", "CustomerCountry": "IT", "orders": 15, "revenue": 695.3100019999999}, {"YearMonth": "2019-03", "CustomerCountry": "MT", "orders": 19, "revenue": 749.68}, {"YearMonth": "2019-03", "CustomerCountry": "NL", "orders": 4, "revenue": 148.619999}, {"YearMonth": "2019-03", "CustomerCountry": "NO", "orders": 18, "revenue": 413.610002}, {"YearMonth": "2019-03", "CustomerCountry": "Other", "orders": 44, "revenue": 2152.31999}, {"YearMonth": "2019-03", "CustomerCountry": "PT", "orders": 12, "revenue": 666.170002}, {"YearMonth": "2019-03", "CustomerCountry": "SE", "orders": 45, "revenue": 1583.0699789999999}, {"YearMonth": "2019-03", "CustomerCountry": "SI", "orders": 4, "revenue": 161.319997}, {"YearMonth": "2019-03", "CustomerCountry": "XX", "orders": 1, "revenue": 41.59}, {"YearMonth": "2019-04", "CustomerCountry": "BE", "orders": 4, "revenue": 163.669999}, {"YearMonth": "2019-04", "CustomerCountry": "CH", "orders": 10, "revenue": 380.490001}, {"YearMonth": "2019-04", "CustomerCountry": "CY", "orders": 5, "revenue": 152.58}, {"YearMonth": "2019-04", "CustomerCountry": "DE", "orders": 4, "revenue": 244.24}, {"YearMonth": "2019-04", "CustomerCountry": "DK", "orders": 24, "revenue": 1522.049996}, {"YearMonth": "2019-04", "CustomerCountry": "ES", "orders": 31, "revenue": 1190.649999}, {"YearMonth": "2019-04", "CustomerCountry": "FI", "orders": 5, "revenue": 218.720003}, {"YearMonth": "2019-04", "CustomerCountry": "FR", "orders": 28, "revenue": 1359.520007}, {"YearMonth": "2019-04", "CustomerCountry": "GB", "orders": 3779, "revenue": 102705.839031}, {"YearMonth": "2019-04", "CustomerCountry": "GR", "orders": 7, "revenue": 204.829999}, {"YearMonth": "2019-04", "CustomerCountry": "IE", "orders": 100, "revenue": 4410.379959}, {"YearMonth": "2019-04", "CustomerCountry": "IT", "orders": 18, "revenue": 993.189994}, {"YearMonth": "2019-04", "CustomerCountry": "MT", "orders": 18, "revenue": 687.5999949999999}, {"YearMonth": "2019-04", "CustomerCountry": "NL", "orders": 1, "revenue": 13.45}, {"YearMonth": "2019-04", "CustomerCountry": "NO", "orders": 10, "revenue": 266.719997}, {"YearMonth": "2019-04", "CustomerCountry": "Other", "orders": 50, "revenue": 1866.019999}, {"YearMonth": "2019-04", "CustomerCountry": "PT", "orders": 13, "revenue": 668.479992}, {"YearMonth": "2019-04", "CustomerCountry": "SE", "orders": 34, "revenue": 1328.200006}, {"YearMonth": "2019-04", "CustomerCountry": "SI", "orders": 8, "revenue": 331.00999}, {"YearMonth": "2019-04", "CustomerCountry": "XX", "orders": 3, "revenue": 101.45}, {"YearMonth": "2019-05", "CustomerCountry": "BE", "orders": 8, "revenue": 464.229993}, {"YearMonth": "2019-05", "CustomerCountry": "CH", "orders": 9, "revenue": 321.339995}, {"YearMonth": "2019-05", "CustomerCountry": "CY", "orders": 9, "revenue": 342.619998}, {"YearMonth": "2019-05", "CustomerCountry": "DE", "orders": 3, "revenue": 179.14}, {"YearMonth": "2019-05", "CustomerCountry": "DK", "orders": 27, "revenue": 1127.080003}, {"YearMonth": "2019-05", "CustomerCountry": "ES", "orders": 44, "revenue": 1887.489991}, {"YearMonth": "2019-05", "CustomerCountry": "FI", "orders": 4, "revenue": 89.030001}, {"YearMonth": "2019-05", "CustomerCountry": "FR", "orders": 35, "revenue": 1751.179998}, {"YearMonth": "2019-05", "CustomerCountry": "GB", "orders": 3997, "revenue": 106792.259296}, {"YearMonth": "2019-05", "CustomerCountry": "GR", "orders": 11, "revenue": 530.510003}, {"YearMonth": "2019-05", "CustomerCountry": "IE", "orders": 112, "revenue": 4404.449961}, {"YearMonth": "2019-05", "CustomerCountry": "IT", "orders": 11, "revenue": 609.610001}, {"YearMonth": "2019-05", "CustomerCountry": "MT", "orders": 19, "revenue": 830.380005}, {"YearMonth": "2019-05", "CustomerCountry": "NL", "orders": 1, "revenue": 28.409999}, {"YearMonth": "2019-05", "CustomerCountry": "NO", "orders": 12, "revenue": 570.720007}, {"YearMonth": "2019-05", "CustomerCountry": "Other", "orders": 37, "revenue": 1238.68}, {"YearMonth": "2019-05", "CustomerCountry": "PT", "orders": 8, "revenue": 420.26}, {"YearMonth": "2019-05", "CustomerCountry": "SE", "orders": 31, "revenue": 1302.369988}, {"YearMonth": "2019-05", "CustomerCountry": "SI", "orders": 9, "revenue": 352.510001}, {"YearMonth": "2019-05", "CustomerCountry": "XX", "orders": 3, "revenue": 135.019997}, {"YearMonth": "2019-06", "CustomerCountry": "BE", "orders": 6, "revenue": 403.54000299999996}, {"YearMonth": "2019-06", "CustomerCountry": "CH", "orders": 9, "revenue": 312.220001}, {"YearMonth": "2019-06", "CustomerCountry": "CY", "orders": 10, "revenue": 518.6800049999999}, {"YearMonth": "2019-06", "CustomerCountry": "DE", "orders": 6, "revenue": 402.31}, {"YearMonth": "2019-06", "CustomerCountry": "DK", "orders": 31, "revenue": 1671.110004}, {"YearMonth": "2019-06", "CustomerCountry": "ES", "orders": 32, "revenue": 1605.779987}, {"YearMonth": "2019-06", "CustomerCountry": "FI", "orders": 4, "revenue": 220.049996}, {"YearMonth": "2019-06", "CustomerCountry": "FR", "orders": 37, "revenue": 2045.959981}, {"YearMonth": "2019-06", "CustomerCountry": "GB", "orders": 3824, "revenue": 108517.909066}, {"YearMonth": "2019-06", "CustomerCountry": "GR", "orders": 6, "revenue": 493.859998}, {"YearMonth": "2019-06", "CustomerCountry": "IE", "orders": 107, "revenue": 4497.179958}, {"YearMonth": "2019-06", "CustomerCountry": "IT", "orders": 14, "revenue": 447.28999799999997}, {"YearMonth": "2019-06", "CustomerCountry": "MT", "orders": 8, "revenue": 493.270003}, {"YearMonth": "2019-06", "CustomerCountry": "NL", "orders": 3, "revenue": 439.180002}, {"YearMonth": "2019-06", "CustomerCountry": "NO", "orders": 8, "revenue": 257.679996}, {"YearMonth": "2019-06", "CustomerCountry": "Other", "orders": 29, "revenue": 1553.760005}, {"YearMonth": "2019-06", "CustomerCountry": "PT", "orders": 13, "revenue": 425.06}, {"YearMonth": "2019-06", "CustomerCountry": "SE", "orders": 22, "revenue": 786.9999829999999}, {"YearMonth": "2019-06", "CustomerCountry": "SI", "orders": 5, "revenue": 246.77}, {"YearMonth": "2019-06", "CustomerCountry": "XX", "orders": 2, "revenue": 35.419999}, {"YearMonth": "2019-07", "CustomerCountry": "BE", "orders": 7, "revenue": 317.889998}, {"YearMonth": "2019-07", "CustomerCountry": "CH", "orders": 10, "revenue": 517.5600009999999}, {"YearMonth": "2019-07", "CustomerCountry": "CY", "orders": 9, "revenue": 331.449997}, {"YearMonth": "2019-07", "CustomerCountry": "DE", "orders": 6, "revenue": 458.250004}, {"YearMonth": "2019-07", "CustomerCountry": "DK", "orders": 38, "revenue": 2049.119971}, {"YearMonth": "2019-07", "CustomerCountry": "ES", "orders": 57, "revenue": 2387.1999779999996}, {"YearMonth": "2019-07", "CustomerCountry": "FI", "orders": 3, "revenue": 77.75}, {"YearMonth": "2019-07", "CustomerCountry": "FR", "orders": 39, "revenue": 1582.859993}, {"YearMonth": "2019-07", "CustomerCountry": "GB", "orders": 4735, "revenue": 153757.78861}, {"YearMonth": "2019-07", "CustomerCountry": "GR", "orders": 16, "revenue": 567.4400009999999}, {"YearMonth": "2019-07", "CustomerCountry": "IE", "orders": 137, "revenue": 5976.769933}, {"YearMonth": "2019-07", "CustomerCountry": "IT", "orders": 13, "revenue": 629.809995}, {"YearMonth": "2019-07", "CustomerCountry": "MT", "orders": 17, "revenue": 636.0799969999999}, {"YearMonth": "2019-07", "CustomerCountry": "NL", "orders": 5, "revenue": 245.399996}, {"YearMonth": "2019-07", "CustomerCountry": "NO", "orders": 14, "revenue": 294.65}, {"YearMonth": "2019-07", "CustomerCountry": "Other", "orders": 42, "revenue": 1441.959981}, {"YearMonth": "2019-07", "CustomerCountry": "PT", "orders": 13, "revenue": 519.779996}, {"YearMonth": "2019-07", "CustomerCountry": "SE", "orders": 49, "revenue": 2011.969959}, {"YearMonth": "2019-07", "CustomerCountry": "SI", "orders": 10, "revenue": 699.500001}, {"YearMonth": "2019-07", "CustomerCountry": "XX", "orders": 4, "revenue": 160.10000000000002}, {"YearMonth": "2019-08", "CustomerCountry": "BE", "orders": 2, "revenue": 173.879998}, {"YearMonth": "2019-08", "CustomerCountry": "CH", "orders": 7, "revenue": 206.429998}, {"YearMonth": "2019-08", "CustomerCountry": "CY", "orders": 6, "revenue": 374.92}, {"YearMonth": "2019-08", "CustomerCountry": "DE", "orders": 3, "revenue": 106.77999799999999}, {"YearMonth": "2019-08", "CustomerCountry": "DK", "orders": 19, "revenue": 1067.85}, {"YearMonth": "2019-08", "CustomerCountry": "ES", "orders": 30, "revenue": 1378.549999}, {"YearMonth": "2019-08", "CustomerCountry": "FI", "orders": 3, "revenue": 80.749999}, {"YearMonth": "2019-08", "CustomerCountry": "FR", "orders": 25, "revenue": 1324.339993}, {"YearMonth": "2019-08", "CustomerCountry": "GB", "orders": 2867, "revenue": 74850.349357}, {"YearMonth": "2019-08", "CustomerCountry": "GR", "orders": 5, "revenue": 208.44}, {"YearMonth": "2019-08", "CustomerCountry": "IE", "orders": 77, "revenue": 2999.6500029999997}, {"YearMonth": "2019-08", "CustomerCountry": "IT", "orders": 10, "revenue": 551.9399999999999}, {"YearMonth": "2019-08", "CustomerCountry": "MT", "orders": 4, "revenue": 119.770003}, {"YearMonth": "2019-08", "CustomerCountry": "NL", "orders": 3, "revenue": 150.000002}, {"YearMonth": "2019-08", "CustomerCountry": "NO", "orders": 8, "revenue": 281.799999}, {"YearMonth": "2019-08", "CustomerCountry": "Other", "orders": 18, "revenue": 1016.55}, {"YearMonth": "2019-08", "CustomerCountry": "PT", "orders": 7, "revenue": 300.459994}, {"YearMonth": "2019-08", "CustomerCountry": "SE", "orders": 14, "revenue": 708.920004}, {"YearMonth": "2019-08", "CustomerCountry": "SI", "orders": 2, "revenue": 174.33999999999997}, {"YearMonth": "2019-08", "CustomerCountry": "XX", "orders": 5, "revenue": 175.060001}, {"YearMonth": "2019-09", "CustomerCountry": "BE", "orders": 2, "revenue": 51.32}, {"YearMonth": "2019-09", "CustomerCountry": "CH", "orders": 11, "revenue": 361.3}, {"YearMonth": "2019-09", "CustomerCountry": "CY", "orders": 11, "revenue": 354.129998}, {"YearMonth": "2019-09", "CustomerCountry": "DE", "orders": 4, "revenue": 448.670008}, {"YearMonth": "2019-09", "CustomerCountry": "DK", "orders": 29, "revenue": 1642.979994}, {"YearMonth": "2019-09", "CustomerCountry": "ES", "orders": 54, "revenue": 2578.799991}, {"YearMonth": "2019-09", "CustomerCountry": "FI", "orders": 6, "revenue": 1244.319978}, {"YearMonth": "2019-09", "CustomerCountry": "FR", "orders": 41, "revenue": 2038.570003}, {"YearMonth": "2019-09", "CustomerCountry": "GB", "orders": 3860, "revenue": 103367.210275}, {"YearMonth": "2019-09", "CustomerCountry": "GR", "orders": 16, "revenue": 760.749998}, {"YearMonth": "2019-09", "CustomerCountry": "IE", "orders": 101, "revenue": 3420.710008}, {"YearMonth": "2019-09", "CustomerCountry": "IT", "orders": 15, "revenue": 861.97}, {"YearMonth": "2019-09", "CustomerCountry": "MT", "orders": 7, "revenue": 330.180005}, {"YearMonth": "2019-09", "CustomerCountry": "NL", "orders": 3, "revenue": 127.099996}, {"YearMonth": "2019-09", "CustomerCountry": "NO", "orders": 12, "revenue": 231.789999}, {"YearMonth": "2019-09", "CustomerCountry": "Other", "orders": 31, "revenue": 1376.6100040000001}, {"YearMonth": "2019-09", "CustomerCountry": "PT", "orders": 11, "revenue": 468.090001}, {"YearMonth": "2019-09", "CustomerCountry": "SE", "orders": 39, "revenue": 1544.950005}, {"YearMonth": "2019-09", "CustomerCountry": "SI", "orders": 6, "revenue": 221.420002}, {"YearMonth": "2019-09", "CustomerCountry": "XX", "orders": 2, "revenue": 73.160002}, {"YearMonth": "2019-10", "CustomerCountry": "BE", "orders": 6, "revenue": 729.7299929999999}, {"YearMonth": "2019-10", "CustomerCountry": "CH", "orders": 11, "revenue": 506.989998}, {"YearMonth": "2019-10", "CustomerCountry": "CY", "orders": 10, "revenue": 492.09}, {"YearMonth": "2019-10", "CustomerCountry": "DE", "orders": 5, "revenue": 148.989997}, {"YearMonth": "2019-10", "CustomerCountry": "DK", "orders": 34, "revenue": 1808.9000019999999}, {"YearMonth": "2019-10", "CustomerCountry": "ES", "orders": 54, "revenue": 2230.51999}, {"YearMonth": "2019-10", "CustomerCountry": "FI", "orders": 4, "revenue": 132.1}, {"YearMonth": "2019-10", "CustomerCountry": "FR", "orders": 41, "revenue": 2251.729994}, {"YearMonth": "2019-10", "CustomerCountry": "GB", "orders": 3822, "revenue": 113343.599152}, {"YearMonth": "2019-10", "CustomerCountry": "GR", "orders": 22, "revenue": 672.529998}, {"YearMonth": "2019-10", "CustomerCountry": "IE", "orders": 85, "revenue": 3363.63998}, {"YearMonth": "2019-10", "CustomerCountry": "IT", "orders": 9, "revenue": 411.719994}, {"YearMonth": "2019-10", "CustomerCountry": "MT", "orders": 27, "revenue": 1170.580008}, {"YearMonth": "2019-10", "CustomerCountry": "NL", "orders": 5, "revenue": 217.719997}, {"YearMonth": "2019-10", "CustomerCountry": "NO", "orders": 24, "revenue": 688.970003}, {"YearMonth": "2019-10", "CustomerCountry": "Other", "orders": 36, "revenue": 1657.319986}, {"YearMonth": "2019-10", "CustomerCountry": "PT", "orders": 12, "revenue": 505.159997}, {"YearMonth": "2019-10", "CustomerCountry": "SE", "orders": 26, "revenue": 970.429995}, {"YearMonth": "2019-10", "CustomerCountry": "SI", "orders": 9, "revenue": 446.549994}, {"YearMonth": "2019-10", "CustomerCountry": "XX", "orders": 4, "revenue": 81.05}, {"YearMonth": "2019-11", "CustomerCountry": "BE", "orders": 4, "revenue": 226.529996}, {"YearMonth": "2019-11", "CustomerCountry": "CH", "orders": 11, "revenue": 434.850001}, {"YearMonth": "2019-11", "CustomerCountry": "CY", "orders": 10, "revenue": 388.639994}, {"YearMonth": "2019-11", "CustomerCountry": "DE", "orders": 3, "revenue": 109.60999999999999}, {"YearMonth": "2019-11", "CustomerCountry": "DK", "orders": 30, "revenue": 1701.919987}, {"YearMonth": "2019-11", "CustomerCountry": "ES", "orders": 44, "revenue": 1886.4099899999999}, {"YearMonth": "2019-11", "CustomerCountry": "FI", "orders": 3, "revenue": 129.749999}, {"YearMonth": "2019-11", "CustomerCountry": "FR", "orders": 38, "revenue": 1315.2600009999999}, {"YearMonth": "2019-11", "CustomerCountry": "GB", "orders": 3602, "revenue": 98298.069154}, {"YearMonth": "2019-11", "CustomerCountry": "GR", "orders": 14, "revenue": 526.939992}, {"YearMonth": "2019-11", "CustomerCountry": "IE", "orders": 86, "revenue": 4171.479976}, {"YearMonth": "2019-11", "CustomerCountry": "IT", "orders": 12, "revenue": 699.099995}, {"YearMonth": "2019-11", "CustomerCountry": "MT", "orders": 15, "revenue": 540.410001}, {"YearMonth": "2019-11", "CustomerCountry": "NL", "orders": 2, "revenue": 189.509997}, {"YearMonth": "2019-11", "CustomerCountry": "NO", "orders": 16, "revenue": 378.200001}, {"YearMonth": "2019-11", "CustomerCountry": "Other", "orders": 30, "revenue": 1176.299997}, {"YearMonth": "2019-11", "CustomerCountry": "PT", "orders": 18, "revenue": 730.309991}, {"YearMonth": "2019-11", "CustomerCountry": "SE", "orders": 36, "revenue": 1453.599993}, {"YearMonth": "2019-11", "CustomerCountry": "SI", "orders": 5, "revenue": 208.259995}, {"YearMonth": "2019-11", "CustomerCountry": "XX", "orders": 1, "revenue": 22.42}, {"YearMonth": "2019-12", "CustomerCountry": "BE", "orders": 2, "revenue": 34.18}, {"YearMonth": "2019-12", "CustomerCountry": "CH", "orders": 8, "revenue": 344.49}, {"YearMonth": "2019-12", "CustomerCountry": "CY", "orders": 7, "revenue": 344.710001}, {"YearMonth": "2019-12", "CustomerCountry": "DE", "orders": 2, "revenue": 131.60999900000002}, {"YearMonth": "2019-12", "CustomerCountry": "DK", "orders": 22, "revenue": 1013.609992}, {"YearMonth": "2019-12", "CustomerCountry": "ES", "orders": 38, "revenue": 1900.38999}, {"YearMonth": "2019-12", "CustomerCountry": "FI", "orders": 5, "revenue": 291.820001}, {"YearMonth": "2019-12", "CustomerCountry": "FR", "orders": 30, "revenue": 1429.819991}, {"YearMonth": "2019-12", "CustomerCountry": "GB", "orders": 3229, "revenue": 89748.15921}, {"YearMonth": "2019-12", "CustomerCountry": "GR", "orders": 10, "revenue": 476.469996}, {"YearMonth": "2019-12", "CustomerCountry": "IE", "orders": 69, "revenue": 2675.239968}, {"YearMonth": "2019-12", "CustomerCountry": "IT", "orders": 10, "revenue": 414.599997}, {"YearMonth": "2019-12", "CustomerCountry": "MT", "orders": 13, "revenue": 567.069994}, {"YearMonth": "2019-12", "CustomerCountry": "NL", "orders": 4, "revenue": 181.59999599999998}, {"YearMonth": "2019-12", "CustomerCountry": "NO", "orders": 13, "revenue": 347.29999699999996}, {"YearMonth": "2019-12", "CustomerCountry": "Other", "orders": 25, "revenue": 1657.899977}, {"YearMonth": "2019-12", "CustomerCountry": "PT", "orders": 9, "revenue": 333.429998}, {"YearMonth": "2019-12", "CustomerCountry": "SE", "orders": 24, "revenue": 1693.159998}, {"YearMonth": "2019-12", "CustomerCountry": "SI", "orders": 10, "revenue": 409.839994}, {"YearMonth": "2019-12", "CustomerCountry": "XX", "orders": 2, "revenue": 54.84}, {"YearMonth": "2020-01", "CustomerCountry": "BE", "orders": 8, "revenue": 393.310001}, {"YearMonth": "2020-01", "CustomerCountry": "CH", "orders": 17, "revenue": 623.529997}, {"YearMonth": "2020-01", "CustomerCountry": "CY", "orders": 9, "revenue": 343.349998}, {"YearMonth": "2020-01", "CustomerCountry": "DE", "orders": 11, "revenue": 827.6299969999999}, {"YearMonth": "2020-01", "CustomerCountry": "DK", "orders": 43, "revenue": 2771.940001}, {"YearMonth": "2020-01", "CustomerCountry": "ES", "orders": 69, "revenue": 2769.569967}, {"YearMonth": "2020-01", "CustomerCountry": "FI", "orders": 1, "revenue": 17.959999}, {"YearMonth": "2020-01", "CustomerCountry": "FR", "orders": 57, "revenue": 2482.239988}, {"YearMonth": "2020-01", "CustomerCountry": "GB", "orders": 5167, "revenue": 147415.79876099998}, {"YearMonth": "2020-01", "CustomerCountry": "GR", "orders": 19, "revenue": 767.379988}, {"YearMonth": "2020-01", "CustomerCountry": "IE", "orders": 131, "revenue": 5420.359951}, {"YearMonth": "2020-01", "CustomerCountry": "IT", "orders": 28, "revenue": 1386.609985}, {"YearMonth": "2020-01", "CustomerCountry": "MT", "orders": 25, "revenue": 1134.399995}, {"YearMonth": "2020-01", "CustomerCountry": "NL", "orders": 3, "revenue": 247.499998}, {"YearMonth": "2020-01", "CustomerCountry": "NO", "orders": 5, "revenue": 182.909999}, {"YearMonth": "2020-01", "CustomerCountry": "Other", "orders": 46, "revenue": 1999.440005}, {"YearMonth": "2020-01", "CustomerCountry": "PT", "orders": 18, "revenue": 1145.309994}, {"YearMonth": "2020-01", "CustomerCountry": "SE", "orders": 45, "revenue": 2137.9299849999998}, {"YearMonth": "2020-01", "CustomerCountry": "SI", "orders": 10, "revenue": 443.380001}, {"YearMonth": "2020-01", "CustomerCountry": "XX", "orders": 1, "revenue": 45.759998}, {"YearMonth": "2020-02", "CustomerCountry": "CH", "orders": 5, "revenue": 187.539999}, {"YearMonth": "2020-02", "CustomerCountry": "CY", "orders": 4, "revenue": 431.749998}, {"YearMonth": "2020-02", "CustomerCountry": "DE", "orders": 2, "revenue": 139.149999}, {"YearMonth": "2020-02", "CustomerCountry": "DK", "orders": 11, "revenue": 483.78999799999997}, {"YearMonth": "2020-02", "CustomerCountry": "ES", "orders": 22, "revenue": 1127.179986}, {"YearMonth": "2020-02", "CustomerCountry": "FI", "orders": 2, "revenue": 91.74999700000001}, {"YearMonth": "2020-02", "CustomerCountry": "FR", "orders": 29, "revenue": 1325.129989}, {"YearMonth": "2020-02", "CustomerCountry": "GB", "orders": 2318, "revenue": 58005.459438}, {"YearMonth": "2020-02", "CustomerCountry": "GR", "orders": 6, "revenue": 186.219998}, {"YearMonth": "2020-02", "CustomerCountry": "IE", "orders": 44, "revenue": 1661.099997}, {"YearMonth": "2020-02", "CustomerCountry": "IT", "orders": 9, "revenue": 656.0799989999999}, {"YearMonth": "2020-02", "CustomerCountry": "MT", "orders": 14, "revenue": 507.62999499999995}, {"YearMonth": "2020-02", "CustomerCountry": "NL", "orders": 1, "revenue": 136.549997}, {"YearMonth": "2020-02", "CustomerCountry": "NO", "orders": 2, "revenue": 91.790001}, {"YearMonth": "2020-02", "CustomerCountry": "Other", "orders": 25, "revenue": 1021.599992}, {"YearMonth": "2020-02", "CustomerCountry": "PT", "orders": 4, "revenue": 172.039999}, {"YearMonth": "2020-02", "CustomerCountry": "SE", "orders": 20, "revenue": 759.45999}, {"YearMonth": "2020-02", "CustomerCountry": "SI", "orders": 2, "revenue": 163.380008}, {"YearMonth": "2020-03", "CustomerCountry": "BE", "orders": 3, "revenue": 133.2}, {"YearMonth": "2020-03", "CustomerCountry": "CH", "orders": 7, "revenue": 267.09000000000003}, {"YearMonth": "2020-03", "CustomerCountry": "CY", "orders": 1, "revenue": 9.95}, {"YearMonth": "2020-03", "CustomerCountry": "DE", "orders": 3, "revenue": 96.650001}, {"YearMonth": "2020-03", "CustomerCountry": "DK", "orders": 14, "revenue": 834.9699959999999}, {"YearMonth": "2020-03", "CustomerCountry": "ES", "orders": 30, "revenue": 1378.230003}, {"YearMonth": "2020-03", "CustomerCountry": "FI", "orders": 3, "revenue": 149.04999899999999}, {"YearMonth": "2020-03", "CustomerCountry": "FR", "orders": 25, "revenue": 965.3499879999999}, {"YearMonth": "2020-03", "CustomerCountry": "GB", "orders": 4894, "revenue": 132675.879224}, {"YearMonth": "2020-03", "CustomerCountry": "GR", "orders": 8, "revenue": 378.20000300000004}, {"YearMonth": "2020-03", "CustomerCountry": "IE", "orders": 100, "revenue": 3754.749976}, {"YearMonth": "2020-03", "CustomerCountry": "IT", "orders": 6, "revenue": 312.670002}, {"YearMonth": "2020-03", "CustomerCountry": "MT", "orders": 11, "revenue": 563.14}, {"YearMonth": "2020-03", "CustomerCountry": "NL", "orders": 4, "revenue": 263.099994}, {"YearMonth": "2020-03", "CustomerCountry": "NO", "orders": 8, "revenue": 185.21999399999999}, {"YearMonth": "2020-03", "CustomerCountry": "Other", "orders": 24, "revenue": 1232.550001}, {"YearMonth": "2020-03", "CustomerCountry": "PT", "orders": 18, "revenue": 639.769999}, {"YearMonth": "2020-03", "CustomerCountry": "SE", "orders": 26, "revenue": 1036.109997}, {"YearMonth": "2020-03", "CustomerCountry": "SI", "orders": 4, "revenue": 213.400005}, {"YearMonth": "2020-03", "CustomerCountry": "XX", "orders": 3, "revenue": 175.369999}, {"YearMonth": "2020-04", "CustomerCountry": "BE", "orders": 3, "revenue": 299.57000800000003}, {"YearMonth": "2020-04", "CustomerCountry": "CH", "orders": 11, "revenue": 276.749997}, {"YearMonth": "2020-04", "CustomerCountry": "DE", "orders": 2, "revenue": 72.749999}, {"YearMonth": "2020-04", "CustomerCountry": "DK", "orders": 27, "revenue": 969.929991}, {"YearMonth": "2020-04", "CustomerCountry": "ES", "orders": 39, "revenue": 1864.079994}, {"YearMonth": "2020-04", "CustomerCountry": "FI", "orders": 5, "revenue": 130.350002}, {"YearMonth": "2020-04", "CustomerCountry": "FR", "orders": 41, "revenue": 1853.750008}, {"YearMonth": "2020-04", "CustomerCountry": "GB", "orders": 6454, "revenue": 141726.769217}, {"YearMonth": "2020-04", "CustomerCountry": "GR", "orders": 9, "revenue": 404.760002}, {"YearMonth": "2020-04", "CustomerCountry": "IE", "orders": 158, "revenue": 4893.3699799999995}, {"YearMonth": "2020-04", "CustomerCountry": "NL", "orders": 2, "revenue": 41.320001}, {"YearMonth": "2020-04", "CustomerCountry": "NO", "orders": 8, "revenue": 289.110001}, {"YearMonth": "2020-04", "CustomerCountry": "Other", "orders": 59, "revenue": 1255.400014}, {"YearMonth": "2020-04", "CustomerCountry": "PT", "orders": 25, "revenue": 1037.379993}, {"YearMonth": "2020-04", "CustomerCountry": "SE", "orders": 29, "revenue": 937.3399999999999}, {"YearMonth": "2020-04", "CustomerCountry": "XX", "orders": 3, "revenue": 56.430001000000004}, {"YearMonth": "2020-05", "CustomerCountry": "BE", "orders": 3, "revenue": 146.999999}, {"YearMonth": "2020-05", "CustomerCountry": "CH", "orders": 10, "revenue": 387.839993}, {"YearMonth": "2020-05", "CustomerCountry": "DE", "orders": 4, "revenue": 199.699997}, {"YearMonth": "2020-05", "CustomerCountry": "DK", "orders": 34, "revenue": 1883.999972}, {"YearMonth": "2020-05", "CustomerCountry": "ES", "orders": 37, "revenue": 1649.999994}, {"YearMonth": "2020-05", "CustomerCountry": "FI", "orders": 3, "revenue": 80.729998}, {"YearMonth": "2020-05", "CustomerCountry": "FR", "orders": 34, "revenue": 1380.490001}, {"YearMonth": "2020-05", "CustomerCountry": "GB", "orders": 5868, "revenue": 130673.319219}, {"YearMonth": "2020-05", "CustomerCountry": "GR", "orders": 12, "revenue": 428.949994}, {"YearMonth": "2020-05", "CustomerCountry": "IE", "orders": 143, "revenue": 5302.739986}, {"YearMonth": "2020-05", "CustomerCountry": "MT", "orders": 1, "revenue": 35.840001}, {"YearMonth": "2020-05", "CustomerCountry": "NL", "orders": 3, "revenue": 69.7}, {"YearMonth": "2020-05", "CustomerCountry": "NO", "orders": 7, "revenue": 172.009998}, {"YearMonth": "2020-05", "CustomerCountry": "Other", "orders": 28, "revenue": 1114.350003}, {"YearMonth": "2020-05", "CustomerCountry": "PT", "orders": 16, "revenue": 633.880002}, {"YearMonth": "2020-05", "CustomerCountry": "SE", "orders": 24, "revenue": 1170.210002}, {"YearMonth": "2020-05", "CustomerCountry": "SI", "orders": 3, "revenue": 104.10000099999999}, {"YearMonth": "2020-05", "CustomerCountry": "XX", "orders": 6, "revenue": 142.920001}, {"YearMonth": "2020-06", "CustomerCountry": "BE", "orders": 1, "revenue": 66.99}, {"YearMonth": "2020-06", "CustomerCountry": "CH", "orders": 12, "revenue": 362.170001}, {"YearMonth": "2020-06", "CustomerCountry": "DE", "orders": 7, "revenue": 221.64999899999998}, {"YearMonth": "2020-06", "CustomerCountry": "DK", "orders": 24, "revenue": 986.8299979999999}, {"YearMonth": "2020-06", "CustomerCountry": "ES", "orders": 44, "revenue": 2150.440002}, {"YearMonth": "2020-06", "CustomerCountry": "FI", "orders": 1, "revenue": 29.11}, {"YearMonth": "2020-06", "CustomerCountry": "FR", "orders": 39, "revenue": 1648.369998}, {"YearMonth": "2020-06", "CustomerCountry": "GB", "orders": 5605, "revenue": 136286.469212}, {"YearMonth": "2020-06", "CustomerCountry": "GR", "orders": 14, "revenue": 503.739997}, {"YearMonth": "2020-06", "CustomerCountry": "IE", "orders": 153, "revenue": 5505.659967}, {"YearMonth": "2020-06", "CustomerCountry": "NL", "orders": 3, "revenue": 272.980002}, {"YearMonth": "2020-06", "CustomerCountry": "NO", "orders": 14, "revenue": 281.029998}, {"YearMonth": "2020-06", "CustomerCountry": "Other", "orders": 16, "revenue": 720.079994}, {"YearMonth": "2020-06", "CustomerCountry": "PT", "orders": 14, "revenue": 866.0799969999999}, {"YearMonth": "2020-06", "CustomerCountry": "SE", "orders": 23, "revenue": 876.0500119999999}, {"YearMonth": "2020-06", "CustomerCountry": "SI", "orders": 7, "revenue": 482.879995}, {"YearMonth": "2020-06", "CustomerCountry": "XX", "orders": 6, "revenue": 125.790001}, {"YearMonth": "2020-07", "CustomerCountry": "BE", "orders": 3, "revenue": 94.88999999999999}, {"YearMonth": "2020-07", "CustomerCountry": "CH", "orders": 6, "revenue": 220.419994}, {"YearMonth": "2020-07", "CustomerCountry": "DE", "orders": 2, "revenue": 172.099997}, {"YearMonth": "2020-07", "CustomerCountry": "DK", "orders": 24, "revenue": 1210.850004}, {"YearMonth": "2020-07", "CustomerCountry": "ES", "orders": 43, "revenue": 2181.819997}, {"YearMonth": "2020-07", "CustomerCountry": "FI", "orders": 3, "revenue": 83.69000199999999}, {"YearMonth": "2020-07", "CustomerCountry": "FR", "orders": 36, "revenue": 1670.919988}, {"YearMonth": "2020-07", "CustomerCountry": "GB", "orders": 5403, "revenue": 138626.999048}, {"YearMonth": "2020-07", "CustomerCountry": "GR", "orders": 6, "revenue": 199.189999}, {"YearMonth": "2020-07", "CustomerCountry": "IE", "orders": 137, "revenue": 5002.419974}, {"YearMonth": "2020-07", "CustomerCountry": "NL", "orders": 3, "revenue": 146.559997}, {"YearMonth": "2020-07", "CustomerCountry": "NO", "orders": 6, "revenue": 272.859997}, {"YearMonth": "2020-07", "CustomerCountry": "Other", "orders": 15, "revenue": 1110.340003}, {"YearMonth": "2020-07", "CustomerCountry": "PT", "orders": 14, "revenue": 605.849997}, {"YearMonth": "2020-07", "CustomerCountry": "SE", "orders": 37, "revenue": 1597.7799909999999}, {"YearMonth": "2020-07", "CustomerCountry": "SI", "orders": 2, "revenue": 86.97}, {"YearMonth": "2020-07", "CustomerCountry": "XX", "orders": 7, "revenue": 151.779999}, {"YearMonth": "2020-08", "CustomerCountry": "BE", "orders": 4, "revenue": 200.420002}, {"YearMonth": "2020-08", "CustomerCountry": "CH", "orders": 11, "revenue": 575.009996}, {"YearMonth": "2020-08", "CustomerCountry": "DE", "orders": 8, "revenue": 294.940003}, {"YearMonth": "2020-08", "CustomerCountry": "DK", "orders": 29, "revenue": 1294.009994}, {"YearMonth": "2020-08", "CustomerCountry": "ES", "orders": 57, "revenue": 2453.93999}, {"YearMonth": "2020-08", "CustomerCountry": "FI", "orders": 5, "revenue": 174.80000099999998}, {"YearMonth": "2020-08", "CustomerCountry": "FR", "orders": 45, "revenue": 2086.399989}, {"YearMonth": "2020-08", "CustomerCountry": "GB", "orders": 5263, "revenue": 140302.529013}, {"YearMonth": "2020-08", "CustomerCountry": "GR", "orders": 5, "revenue": 192.629999}, {"YearMonth": "2020-08", "CustomerCountry": "IE", "orders": 142, "revenue": 5981.5099549999995}, {"YearMonth": "2020-08", "CustomerCountry": "NL", "orders": 2, "revenue": 83.30999899999999}, {"YearMonth": "2020-08", "CustomerCountry": "NO", "orders": 12, "revenue": 368.79999499999997}, {"YearMonth": "2020-08", "CustomerCountry": "Other", "orders": 13, "revenue": 791.3299959999999}, {"YearMonth": "2020-08", "CustomerCountry": "PT", "orders": 19, "revenue": 716.880002}, {"YearMonth": "2020-08", "CustomerCountry": "SE", "orders": 34, "revenue": 1231.189996}, {"YearMonth": "2020-08", "CustomerCountry": "SI", "orders": 8, "revenue": 420.259992}, {"YearMonth": "2020-08", "CustomerCountry": "XX", "orders": 1, "revenue": 26.17}, {"YearMonth": "2020-09", "CustomerCountry": "BE", "orders": 3, "revenue": 174.020004}, {"YearMonth": "2020-09", "CustomerCountry": "CH", "orders": 11, "revenue": 399.269991}, {"YearMonth": "2020-09", "CustomerCountry": "DE", "orders": 5, "revenue": 515.750009}, {"YearMonth": "2020-09", "CustomerCountry": "DK", "orders": 23, "revenue": 983.549993}, {"YearMonth": "2020-09", "CustomerCountry": "ES", "orders": 29, "revenue": 1028.719991}, {"YearMonth": "2020-09", "CustomerCountry": "FI", "orders": 4, "revenue": 169.659998}, {"YearMonth": "2020-09", "CustomerCountry": "FR", "orders": 37, "revenue": 1562.089998}, {"YearMonth": "2020-09", "CustomerCountry": "GB", "orders": 4617, "revenue": 116359.219346}, {"YearMonth": "2020-09", "CustomerCountry": "GR", "orders": 8, "revenue": 297.34}, {"YearMonth": "2020-09", "CustomerCountry": "IE", "orders": 98, "revenue": 3996.119991}, {"YearMonth": "2020-09", "CustomerCountry": "MT", "orders": 8, "revenue": 515.860002}, {"YearMonth": "2020-09", "CustomerCountry": "NL", "orders": 3, "revenue": 208.91000300000002}, {"YearMonth": "2020-09", "CustomerCountry": "NO", "orders": 5, "revenue": 100.83999800000001}, {"YearMonth": "2020-09", "CustomerCountry": "Other", "orders": 10, "revenue": 409.699998}, {"YearMonth": "2020-09", "CustomerCountry": "PT", "orders": 14, "revenue": 553.899995}, {"YearMonth": "2020-09", "CustomerCountry": "SE", "orders": 31, "revenue": 1198.969999}, {"YearMonth": "2020-09", "CustomerCountry": "SI", "orders": 4, "revenue": 263.930006}, {"YearMonth": "2020-09", "CustomerCountry": "XX", "orders": 7, "revenue": 155.159997}, {"YearMonth": "2020-10", "CustomerCountry": "BE", "orders": 6, "revenue": 300.219998}, {"YearMonth": "2020-10", "CustomerCountry": "CH", "orders": 9, "revenue": 305.279997}, {"YearMonth": "2020-10", "CustomerCountry": "DE", "orders": 4, "revenue": 70.19999899999999}, {"YearMonth": "2020-10", "CustomerCountry": "DK", "orders": 35, "revenue": 1857.329997}, {"YearMonth": "2020-10", "CustomerCountry": "ES", "orders": 54, "revenue": 2181.92998}, {"YearMonth": "2020-10", "CustomerCountry": "FI", "orders": 8, "revenue": 344.749998}, {"YearMonth": "2020-10", "CustomerCountry": "FR", "orders": 51, "revenue": 2111.089985}, {"YearMonth": "2020-10", "CustomerCountry": "GB", "orders": 7504, "revenue": 178288.579041}, {"YearMonth": "2020-10", "CustomerCountry": "GR", "orders": 14, "revenue": 715.769994}, {"YearMonth": "2020-10", "CustomerCountry": "IE", "orders": 160, "revenue": 6092.489981}, {"YearMonth": "2020-10", "CustomerCountry": "MT", "orders": 20, "revenue": 727.3299989999999}, {"YearMonth": "2020-10", "CustomerCountry": "NL", "orders": 3, "revenue": 140.869999}, {"YearMonth": "2020-10", "CustomerCountry": "NO", "orders": 12, "revenue": 293.319996}, {"YearMonth": "2020-10", "CustomerCountry": "Other", "orders": 22, "revenue": 913.849992}, {"YearMonth": "2020-10", "CustomerCountry": "PT", "orders": 18, "revenue": 702.519985}, {"YearMonth": "2020-10", "CustomerCountry": "SE", "orders": 22, "revenue": 1054.1700019999998}, {"YearMonth": "2020-10", "CustomerCountry": "SI", "orders": 8, "revenue": 272.779996}, {"YearMonth": "2020-10", "CustomerCountry": "XX", "orders": 7, "revenue": 245.090001}, {"YearMonth": "2020-11", "CustomerCountry": "BE", "orders": 4, "revenue": 252.789995}, {"YearMonth": "2020-11", "CustomerCountry": "CH", "orders": 18, "revenue": 797.599997}, {"YearMonth": "2020-11", "CustomerCountry": "DE", "orders": 3, "revenue": 152.649996}, {"YearMonth": "2020-11", "CustomerCountry": "DK", "orders": 28, "revenue": 1917.799992}, {"YearMonth": "2020-11", "CustomerCountry": "ES", "orders": 62, "revenue": 3285.489995}, {"YearMonth": "2020-11", "CustomerCountry": "FI", "orders": 2, "revenue": 194.739996}, {"YearMonth": "2020-11", "CustomerCountry": "FR", "orders": 52, "revenue": 2184.009987}, {"YearMonth": "2020-11", "CustomerCountry": "GB", "orders": 6972, "revenue": 158551.789315}, {"YearMonth": "2020-11", "CustomerCountry": "GR", "orders": 16, "revenue": 645.139997}, {"YearMonth": "2020-11", "CustomerCountry": "IE", "orders": 120, "revenue": 4660.419973}, {"YearMonth": "2020-11", "CustomerCountry": "MT", "orders": 15, "revenue": 820.739995}, {"YearMonth": "2020-11", "CustomerCountry": "NL", "orders": 4, "revenue": 82.77}, {"YearMonth": "2020-11", "CustomerCountry": "NO", "orders": 8, "revenue": 209.450001}, {"YearMonth": "2020-11", "CustomerCountry": "Other", "orders": 18, "revenue": 1322.029997}, {"YearMonth": "2020-11", "CustomerCountry": "PT", "orders": 20, "revenue": 1418.760004}, {"YearMonth": "2020-11", "CustomerCountry": "SE", "orders": 41, "revenue": 2012.940006}, {"YearMonth": "2020-11", "CustomerCountry": "SI", "orders": 15, "revenue": 639.659995}, {"YearMonth": "2020-11", "CustomerCountry": "XX", "orders": 3, "revenue": 100.659998}, {"YearMonth": "2020-12", "CustomerCountry": "BE", "orders": 2, "revenue": 86.29999799999999}, {"YearMonth": "2020-12", "CustomerCountry": "CH", "orders": 11, "revenue": 359.769992}, {"YearMonth": "2020-12", "CustomerCountry": "DE", "orders": 4, "revenue": 343.91999599999997}, {"YearMonth": "2020-12", "CustomerCountry": "DK", "orders": 32, "revenue": 1542.819999}, {"YearMonth": "2020-12", "CustomerCountry": "ES", "orders": 33, "revenue": 1843.679978}, {"YearMonth": "2020-12", "CustomerCountry": "FI", "orders": 1, "revenue": 28.930001}, {"YearMonth": "2020-12", "CustomerCountry": "FR", "orders": 38, "revenue": 1964.920008}, {"YearMonth": "2020-12", "CustomerCountry": "GB", "orders": 6029, "revenue": 151714.349028}, {"YearMonth": "2020-12", "CustomerCountry": "GR", "orders": 6, "revenue": 226.199999}, {"YearMonth": "2020-12", "CustomerCountry": "IE", "orders": 109, "revenue": 4811.729963}, {"YearMonth": "2020-12", "CustomerCountry": "MT", "orders": 9, "revenue": 622.080009}, {"YearMonth": "2020-12", "CustomerCountry": "NL", "orders": 9, "revenue": 275.349991}, {"YearMonth": "2020-12", "CustomerCountry": "NO", "orders": 9, "revenue": 214.88999700000002}, {"YearMonth": "2020-12", "CustomerCountry": "Other", "orders": 16, "revenue": 1054.599988}, {"YearMonth": "2020-12", "CustomerCountry": "PT", "orders": 19, "revenue": 741.349995}, {"YearMonth": "2020-12", "CustomerCountry": "SE", "orders": 25, "revenue": 1285.180003}, {"YearMonth": "2020-12", "CustomerCountry": "SI", "orders": 5, "revenue": 302.96000200000003}, {"YearMonth": "2020-12", "CustomerCountry": "XX", "orders": 6, "revenue": 113.0}, {"YearMonth": "2021-01", "CustomerCountry": "GB", "orders": 8926, "revenue": 229085.938571}, {"YearMonth": "2021-01", "CustomerCountry": "IE", "orders": 1, "revenue": 24.49}, {"YearMonth": "2021-02", "CustomerCountry": "ES", "orders": 29, "revenue": 1068.170001}, {"YearMonth": "2021-02", "CustomerCountry": "GB", "orders": 4991, "revenue": 119598.40939}, {"YearMonth": "2021-02", "CustomerCountry": "IE", "orders": 87, "revenue": 2802.0499760000002}, {"YearMonth": "2021-02", "CustomerCountry": "Other", "orders": 1, "revenue": 79.900002}, {"YearMonth": "2021-02", "CustomerCountry": "XX", "orders": 4, "revenue": 80.50999900000001}, {"YearMonth": "2021-03", "CustomerCountry": "BE", "orders": 1, "revenue": 45.639999}, {"YearMonth": "2021-03", "CustomerCountry": "CH", "orders": 7, "revenue": 231.23999400000002}, {"YearMonth": "2021-03", "CustomerCountry": "CY", "orders": 3, "revenue": 47.43}, {"YearMonth": "2021-03", "CustomerCountry": "DE", "orders": 2, "revenue": 62.070001}, {"YearMonth": "2021-03", "CustomerCountry": "DK", "orders": 13, "revenue": 640.5500010000001}, {"YearMonth": "2021-03", "CustomerCountry": "ES", "orders": 26, "revenue": 1232.400006}, {"YearMonth": "2021-03", "CustomerCountry": "FI", "orders": 3, "revenue": 169.590001}, {"YearMonth": "2021-03", "CustomerCountry": "FR", "orders": 36, "revenue": 1912.690004}, {"YearMonth": "2021-03", "CustomerCountry": "GB", "orders": 5753, "revenue": 146804.389067}, {"YearMonth": "2021-03", "CustomerCountry": "GR", "orders": 5, "revenue": 257.539998}, {"YearMonth": "2021-03", "CustomerCountry": "IE", "orders": 100, "revenue": 3152.2399570000002}, {"YearMonth": "2021-03", "CustomerCountry": "IT", "orders": 9, "revenue": 506.029998}, {"YearMonth": "2021-03", "CustomerCountry": "MT", "orders": 10, "revenue": 589.820009}, {"YearMonth": "2021-03", "CustomerCountry": "NL", "orders": 1, "revenue": 43.09}, {"YearMonth": "2021-03", "CustomerCountry": "NO", "orders": 5, "revenue": 197.520001}, {"YearMonth": "2021-03", "CustomerCountry": "Other", "orders": 13, "revenue": 732.5699920000001}, {"YearMonth": "2021-03", "CustomerCountry": "PT", "orders": 10, "revenue": 281.659996}, {"YearMonth": "2021-03", "CustomerCountry": "SE", "orders": 18, "revenue": 816.9799929999999}, {"YearMonth": "2021-03", "CustomerCountry": "SI", "orders": 6, "revenue": 201.649998}, {"YearMonth": "2021-03", "CustomerCountry": "XX", "orders": 3, "revenue": 47.66}, {"YearMonth": "2021-04", "CustomerCountry": "BE", "orders": 1, "revenue": 17.38}, {"YearMonth": "2021-04", "CustomerCountry": "CH", "orders": 8, "revenue": 303.78999899999997}, {"YearMonth": "2021-04", "CustomerCountry": "CY", "orders": 3, "revenue": 89.86999999999999}, {"YearMonth": "2021-04", "CustomerCountry": "DE", "orders": 3, "revenue": 40.62}, {"YearMonth": "2021-04", "CustomerCountry": "DK", "orders": 12, "revenue": 489.809997}, {"YearMonth": "2021-04", "CustomerCountry": "ES", "orders": 13, "revenue": 480.929999}, {"YearMonth": "2021-04", "CustomerCountry": "FI", "orders": 3, "revenue": 246.029993}, {"YearMonth": "2021-04", "CustomerCountry": "FR", "orders": 17, "revenue": 654.59999}, {"YearMonth": "2021-04", "CustomerCountry": "GB", "orders": 4721, "revenue": 121727.259083}, {"YearMonth": "2021-04", "CustomerCountry": "GR", "orders": 3, "revenue": 79.88}, {"YearMonth": "2021-04", "CustomerCountry": "IE", "orders": 98, "revenue": 3115.709964}, {"YearMonth": "2021-04", "CustomerCountry": "IT", "orders": 4, "revenue": 156.060002}, {"YearMonth": "2021-04", "CustomerCountry": "MT", "orders": 8, "revenue": 247.539998}, {"YearMonth": "2021-04", "CustomerCountry": "NL", "orders": 3, "revenue": 422.759992}, {"YearMonth": "2021-04", "CustomerCountry": "NO", "orders": 3, "revenue": 132.270001}, {"YearMonth": "2021-04", "CustomerCountry": "Other", "orders": 13, "revenue": 492.189996}, {"YearMonth": "2021-04", "CustomerCountry": "PT", "orders": 11, "revenue": 465.259995}, {"YearMonth": "2021-04", "CustomerCountry": "SE", "orders": 12, "revenue": 422.990001}, {"YearMonth": "2021-04", "CustomerCountry": "SI", "orders": 4, "revenue": 129.019999}, {"YearMonth": "2021-04", "CustomerCountry": "XX", "orders": 2, "revenue": 126.729997}, {"YearMonth": "2021-05", "CustomerCountry": "BE", "orders": 2, "revenue": 286.399988}, {"YearMonth": "2021-05", "CustomerCountry": "CH", "orders": 9, "revenue": 442.519992}, {"YearMonth": "2021-05", "CustomerCountry": "CY", "orders": 1, "revenue": 12.79}, {"YearMonth": "2021-05", "CustomerCountry": "DE", "orders": 2, "revenue": 29.75}, {"YearMonth": "2021-05", "CustomerCountry": "DK", "orders": 10, "revenue": 389.550005}, {"YearMonth": "2021-05", "CustomerCountry": "ES", "orders": 28, "revenue": 1400.7200010000001}, {"YearMonth": "2021-05", "CustomerCountry": "FI", "orders": 3, "revenue": 165.500004}, {"YearMonth": "2021-05", "CustomerCountry": "FR", "orders": 29, "revenue": 1118.71}, {"YearMonth": "2021-05", "CustomerCountry": "GB", "orders": 4882, "revenue": 127355.50904599999}, {"YearMonth": "2021-05", "CustomerCountry": "GR", "orders": 2, "revenue": 70.269998}, {"YearMonth": "2021-05", "CustomerCountry": "IE", "orders": 93, "revenue": 3001.969982}, {"YearMonth": "2021-05", "CustomerCountry": "IT", "orders": 4, "revenue": 110.050002}, {"YearMonth": "2021-05", "CustomerCountry": "MT", "orders": 8, "revenue": 234.029997}, {"YearMonth": "2021-05", "CustomerCountry": "NL", "orders": 2, "revenue": 84.64999900000001}, {"YearMonth": "2021-05", "CustomerCountry": "NO", "orders": 7, "revenue": 127.009997}, {"YearMonth": "2021-05", "CustomerCountry": "Other", "orders": 20, "revenue": 443.339993}, {"YearMonth": "2021-05", "CustomerCountry": "PT", "orders": 4, "revenue": 152.069997}, {"YearMonth": "2021-05", "CustomerCountry": "SE", "orders": 9, "revenue": 400.96999100000005}, {"YearMonth": "2021-05", "CustomerCountry": "SI", "orders": 2, "revenue": 95.919998}, {"YearMonth": "2021-05", "CustomerCountry": "XX", "orders": 4, "revenue": 60.709999}, {"YearMonth": "2021-06", "CustomerCountry": "BE", "orders": 4, "revenue": 183.329996}, {"YearMonth": "2021-06", "CustomerCountry": "CH", "orders": 7, "revenue": 273.029999}, {"YearMonth": "2021-06", "CustomerCountry": "CY", "orders": 2, "revenue": 69.92999800000001}, {"YearMonth": "2021-06", "CustomerCountry": "DE", "orders": 2, "revenue": 41.33}, {"YearMonth": "2021-06", "CustomerCountry": "DK", "orders": 9, "revenue": 504.139998}, {"YearMonth": "2021-06", "CustomerCountry": "ES", "orders": 26, "revenue": 1068.979997}, {"YearMonth": "2021-06", "CustomerCountry": "FI", "orders": 2, "revenue": 132.079998}, {"YearMonth": "2021-06", "CustomerCountry": "FR", "orders": 36, "revenue": 1449.509992}, {"YearMonth": "2021-06", "CustomerCountry": "GB", "orders": 5372, "revenue": 137742.608762}, {"YearMonth": "2021-06", "CustomerCountry": "GR", "orders": 2, "revenue": 42.969999}, {"YearMonth": "2021-06", "CustomerCountry": "IE", "orders": 105, "revenue": 3000.749962}, {"YearMonth": "2021-06", "CustomerCountry": "IT", "orders": 4, "revenue": 469.100015}, {"YearMonth": "2021-06", "CustomerCountry": "MT", "orders": 7, "revenue": 198.479996}, {"YearMonth": "2021-06", "CustomerCountry": "NL", "orders": 2, "revenue": 140.340005}, {"YearMonth": "2021-06", "CustomerCountry": "NO", "orders": 2, "revenue": 41.759998}, {"YearMonth": "2021-06", "CustomerCountry": "Other", "orders": 17, "revenue": 606.859996}, {"YearMonth": "2021-06", "CustomerCountry": "PT", "orders": 9, "revenue": 324.14999800000004}, {"YearMonth": "2021-06", "CustomerCountry": "SE", "orders": 14, "revenue": 418.479999}, {"YearMonth": "2021-06", "CustomerCountry": "XX", "orders": 4, "revenue": 109.269999}, {"YearMonth": "2021-07", "CustomerCountry": "CH", "orders": 5, "revenue": 297.510002}, {"YearMonth": "2021-07", "CustomerCountry": "CY", "orders": 3, "revenue": 123.189997}, {"YearMonth": "2021-07", "CustomerCountry": "DE", "orders": 2, "revenue": 49.38}, {"YearMonth": "2021-07", "CustomerCountry": "DK", "orders": 6, "revenue": 388.599998}, {"YearMonth": "2021-07", "CustomerCountry": "ES", "orders": 18, "revenue": 905.760006}, {"YearMonth": "2021-07", "CustomerCountry": "FI", "orders": 3, "revenue": 249.250001}, {"YearMonth": "2021-07", "CustomerCountry": "FR", "orders": 23, "revenue": 1314.569991}, {"YearMonth": "2021-07", "CustomerCountry": "GB", "orders": 6367, "revenue": 166417.898832}, {"YearMonth": "2021-07", "CustomerCountry": "IE", "orders": 68, "revenue": 2714.789971}, {"YearMonth": "2021-07", "CustomerCountry": "IT", "orders": 7, "revenue": 308.359996}, {"YearMonth": "2021-07", "CustomerCountry": "MT", "orders": 6, "revenue": 232.15}, {"YearMonth": "2021-07", "CustomerCountry": "NO", "orders": 2, "revenue": 105.299995}, {"YearMonth": "2021-07", "CustomerCountry": "Other", "orders": 8, "revenue": 223.000001}, {"YearMonth": "2021-07", "CustomerCountry": "PT", "orders": 9, "revenue": 319.34}, {"YearMonth": "2021-07", "CustomerCountry": "SE", "orders": 1, "revenue": 173.740007}, {"YearMonth": "2021-07", "CustomerCountry": "SI", "orders": 3, "revenue": 178.510001}, {"YearMonth": "2021-07", "CustomerCountry": "XX", "orders": 6, "revenue": 202.059999}, {"YearMonth": "2021-08", "CustomerCountry": "BE", "orders": 1, "revenue": 93.28}, {"YearMonth": "2021-08", "CustomerCountry": "CH", "orders": 9, "revenue": 335.54000099999996}, {"YearMonth": "2021-08", "CustomerCountry": "CY", "orders": 2, "revenue": 48.33}, {"YearMonth": "2021-08", "CustomerCountry": "DE", "orders": 1, "revenue": 54.299999}, {"YearMonth": "2021-08", "CustomerCountry": "DK", "orders": 7, "revenue": 469.180001}, {"YearMonth": "2021-08", "CustomerCountry": "ES", "orders": 14, "revenue": 655.679999}, {"YearMonth": "2021-08", "CustomerCountry": "FI", "orders": 1, "revenue": 30.629999}, {"YearMonth": "2021-08", "CustomerCountry": "FR", "orders": 17, "revenue": 770.1899970000001}, {"YearMonth": "2021-08", "CustomerCountry": "GB", "orders": 4601, "revenue": 118857.709044}, {"YearMonth": "2021-08", "CustomerCountry": "IE", "orders": 45, "revenue": 2088.919987}, {"YearMonth": "2021-08", "CustomerCountry": "IT", "orders": 1, "revenue": 17.25}, {"YearMonth": "2021-08", "CustomerCountry": "MT", "orders": 4, "revenue": 167.899999}, {"YearMonth": "2021-08", "CustomerCountry": "NL", "orders": 2, "revenue": 102.469996}, {"YearMonth": "2021-08", "CustomerCountry": "NO", "orders": 4, "revenue": 125.349996}, {"YearMonth": "2021-08", "CustomerCountry": "Other", "orders": 8, "revenue": 239.179998}, {"YearMonth": "2021-08", "CustomerCountry": "PT", "orders": 2, "revenue": 48.139998000000006}, {"YearMonth": "2021-08", "CustomerCountry": "SI", "orders": 2, "revenue": 59.510000000000005}, {"YearMonth": "2021-08", "CustomerCountry": "XX", "orders": 8, "revenue": 164.039998}, {"YearMonth": "2021-09", "CustomerCountry": "CH", "orders": 6, "revenue": 268.489996}, {"YearMonth": "2021-09", "CustomerCountry": "CY", "orders": 3, "revenue": 156.050003}, {"YearMonth": "2021-09", "CustomerCountry": "DK", "orders": 7, "revenue": 360.389994}, {"YearMonth": "2021-09", "CustomerCountry": "ES", "orders": 4, "revenue": 151.42999700000001}, {"YearMonth": "2021-09", "CustomerCountry": "FI", "orders": 1, "revenue": 123.580002}, {"YearMonth": "2021-09", "CustomerCountry": "FR", "orders": 16, "revenue": 741.4300010000001}, {"YearMonth": "2021-09", "CustomerCountry": "GB", "orders": 4976, "revenue": 133436.249112}, {"YearMonth": "2021-09", "CustomerCountry": "IE", "orders": 20, "revenue": 854.399997}, {"YearMonth": "2021-09", "CustomerCountry": "IT", "orders": 2, "revenue": 57.049998}, {"YearMonth": "2021-09", "CustomerCountry": "MT", "orders": 7, "revenue": 357.189998}, {"YearMonth": "2021-09", "CustomerCountry": "NO", "orders": 5, "revenue": 165.54}, {"YearMonth": "2021-09", "CustomerCountry": "Other", "orders": 7, "revenue": 223.23999700000002}, {"YearMonth": "2021-09", "CustomerCountry": "PT", "orders": 5, "revenue": 206.119993}, {"YearMonth": "2021-09", "CustomerCountry": "SI", "orders": 5, "revenue": 341.330006}, {"YearMonth": "2021-09", "CustomerCountry": "XX", "orders": 5, "revenue": 123.859997}, {"YearMonth": "2021-10", "CustomerCountry": "CH", "orders": 5, "revenue": 132.49}, {"YearMonth": "2021-10", "CustomerCountry": "CY", "orders": 1, "revenue": 12.74}, {"YearMonth": "2021-10", "CustomerCountry": "DE", "orders": 2, "revenue": 108.390001}, {"YearMonth": "2021-10", "CustomerCountry": "DK", "orders": 6, "revenue": 515.589999}, {"YearMonth": "2021-10", "CustomerCountry": "ES", "orders": 14, "revenue": 526.369997}, {"YearMonth": "2021-10", "CustomerCountry": "FI", "orders": 1, "revenue": 155.470001}, {"YearMonth": "2021-10", "CustomerCountry": "FR", "orders": 22, "revenue": 939.719986}, {"YearMonth": "2021-10", "CustomerCountry": "GB", "orders": 5225, "revenue": 128122.99901099999}, {"YearMonth": "2021-10", "CustomerCountry": "IT", "orders": 2, "revenue": 269.740005}, {"YearMonth": "2021-10", "CustomerCountry": "MT", "orders": 4, "revenue": 274.54000099999996}, {"YearMonth": "2021-10", "CustomerCountry": "NL", "orders": 1, "revenue": 37.16}, {"YearMonth": "2021-10", "CustomerCountry": "NO", "orders": 3, "revenue": 73.299998}, {"YearMonth": "2021-10", "CustomerCountry": "Other", "orders": 11, "revenue": 305.029996}, {"YearMonth": "2021-10", "CustomerCountry": "PT", "orders": 5, "revenue": 264.729993}, {"YearMonth": "2021-10", "CustomerCountry": "SI", "orders": 2, "revenue": 42.400000000000006}, {"YearMonth": "2021-10", "CustomerCountry": "XX", "orders": 4, "revenue": 94.549998}, {"YearMonth": "2021-11", "CustomerCountry": "CH", "orders": 7, "revenue": 218.430005}, {"YearMonth": "2021-11", "CustomerCountry": "CY", "orders": 3, "revenue": 120.79000099999999}, {"YearMonth": "2021-11", "CustomerCountry": "DE", "orders": 1, "revenue": 21.629999}, {"YearMonth": "2021-11", "CustomerCountry": "DK", "orders": 4, "revenue": 197.49}, {"YearMonth": "2021-11", "CustomerCountry": "ES", "orders": 17, "revenue": 804.4599910000001}, {"YearMonth": "2021-11", "CustomerCountry": "FI", "orders": 2, "revenue": 126.77000000000001}, {"YearMonth": "2021-11", "CustomerCountry": "FR", "orders": 12, "revenue": 553.029986}, {"YearMonth": "2021-11", "CustomerCountry": "GB", "orders": 6220, "revenue": 169005.8388}, {"YearMonth": "2021-11", "CustomerCountry": "IT", "orders": 8, "revenue": 423.749995}, {"YearMonth": "2021-11", "CustomerCountry": "MT", "orders": 5, "revenue": 173.090001}, {"YearMonth": "2021-11", "CustomerCountry": "NL", "orders": 3, "revenue": 353.970003}, {"YearMonth": "2021-11", "CustomerCountry": "NO", "orders": 6, "revenue": 174.449994}, {"YearMonth": "2021-11", "CustomerCountry": "Other", "orders": 10, "revenue": 541.919995}, {"YearMonth": "2021-11", "CustomerCountry": "PT", "orders": 4, "revenue": 115.799999}, {"YearMonth": "2021-11", "CustomerCountry": "XX", "orders": 6, "revenue": 149.189999}, {"YearMonth": "2021-12", "CustomerCountry": "CH", "orders": 8, "revenue": 316.70000100000004}, {"YearMonth": "2021-12", "CustomerCountry": "CY", "orders": 2, "revenue": 80.789998}, {"YearMonth": "2021-12", "CustomerCountry": "DK", "orders": 1, "revenue": 107.139999}, {"YearMonth": "2021-12", "CustomerCountry": "ES", "orders": 3, "revenue": 229.530001}, {"YearMonth": "2021-12", "CustomerCountry": "FR", "orders": 7, "revenue": 404.26}, {"YearMonth": "2021-12", "CustomerCountry": "GB", "orders": 4068, "revenue": 108336.08908199999}, {"YearMonth": "2021-12", "CustomerCountry": "IE", "orders": 1, "revenue": 80.199997}, {"YearMonth": "2021-12", "CustomerCountry": "IT", "orders": 2, "revenue": 96.099998}, {"YearMonth": "2021-12", "CustomerCountry": "MT", "orders": 4, "revenue": 415.929999}, {"YearMonth": "2021-12", "CustomerCountry": "NL", "orders": 1, "revenue": 23.129999}, {"YearMonth": "2021-12", "CustomerCountry": "NO", "orders": 2, "revenue": 69.519998}, {"YearMonth": "2021-12", "CustomerCountry": "Other", "orders": 6, "revenue": 277.639993}, {"YearMonth": "2021-12", "CustomerCountry": "PT", "orders": 3, "revenue": 165.869999}, {"YearMonth": "2021-12", "CustomerCountry": "SI", "orders": 1, "revenue": 120.82}, {"YearMonth": "2021-12", "CustomerCountry": "XX", "orders": 7, "revenue": 144.20000000000002}, {"YearMonth": "2022-01", "CustomerCountry": "GB", "orders": 8172, "revenue": 204951.388463}, {"YearMonth": "2022-01", "CustomerCountry": "IE", "orders": 2, "revenue": 44.219998}, {"YearMonth": "2022-01", "CustomerCountry": "XX", "orders": 8, "revenue": 254.949998}, {"YearMonth": "2022-02", "CustomerCountry": "GB", "orders": 3698, "revenue": 88082.59939999999}, {"YearMonth": "2022-02", "CustomerCountry": "XX", "orders": 1, "revenue": 11.63}, {"YearMonth": "2022-03", "CustomerCountry": "GB", "orders": 6179, "revenue": 157819.408735}, {"YearMonth": "2022-03", "CustomerCountry": "XX", "orders": 6, "revenue": 218.11999400000002}, {"YearMonth": "2022-04", "CustomerCountry": "GB", "orders": 5361, "revenue": 129173.129441}, {"YearMonth": "2022-04", "CustomerCountry": "XX", "orders": 11, "revenue": 325.699996}, {"YearMonth": "2022-05", "CustomerCountry": "GB", "orders": 4490, "revenue": 115470.79956}, {"YearMonth": "2022-05", "CustomerCountry": "XX", "orders": 4, "revenue": 131.429997}, {"YearMonth": "2022-06", "CustomerCountry": "GB", "orders": 4158, "revenue": 111299.23948}, {"YearMonth": "2022-06", "CustomerCountry": "XX", "orders": 4, "revenue": 86.540001}, {"YearMonth": "2022-07", "CustomerCountry": "GB", "orders": 4959, "revenue": 133856.839452}, {"YearMonth": "2022-07", "CustomerCountry": "XX", "orders": 2, "revenue": 71.840002}, {"YearMonth": "2022-08", "CustomerCountry": "GB", "orders": 4231, "revenue": 115484.429582}, {"YearMonth": "2022-08", "CustomerCountry": "XX", "orders": 4, "revenue": 85.449999}, {"YearMonth": "2022-09", "CustomerCountry": "GB", "orders": 4039, "revenue": 110282.349613}, {"YearMonth": "2022-09", "CustomerCountry": "XX", "orders": 6, "revenue": 213.14999699999998}, {"YearMonth": "2022-10", "CustomerCountry": "GB", "orders": 4160, "revenue": 107408.319508}, {"YearMonth": "2022-10", "CustomerCountry": "XX", "orders": 2, "revenue": 37.97}, {"YearMonth": "2022-11", "CustomerCountry": "GB", "orders": 4700, "revenue": 135812.169502}, {"YearMonth": "2022-11", "CustomerCountry": "XX", "orders": 7, "revenue": 262.129998}, {"YearMonth": "2022-12", "CustomerCountry": "GB", "orders": 3699, "revenue": 103022.759073}, {"YearMonth": "2022-12", "CustomerCountry": "XX", "orders": 4, "revenue": 98.709997}, {"YearMonth": "2023-01", "CustomerCountry": "GB", "orders": 6336, "revenue": 180316.828776}, {"YearMonth": "2023-01", "CustomerCountry": "XX", "orders": 7, "revenue": 154.60999900000002}, {"YearMonth": "2023-02", "CustomerCountry": "GB", "orders": 3593, "revenue": 94960.879468}, {"YearMonth": "2023-02", "CustomerCountry": "XX", "orders": 7, "revenue": 190.09}, {"YearMonth": "2023-03", "CustomerCountry": "GB", "orders": 4387, "revenue": 126048.489666}, {"YearMonth": "2023-03", "CustomerCountry": "XX", "orders": 7, "revenue": 207.61999600000001}, {"YearMonth": "2023-04", "CustomerCountry": "GB", "orders": 2915, "revenue": 83984.59974}, {"YearMonth": "2023-04", "CustomerCountry": "XX", "orders": 8, "revenue": 185.759996}, {"YearMonth": "2023-05", "CustomerCountry": "GB", "orders": 3789, "revenue": 117418.41959}, {"YearMonth": "2023-05", "CustomerCountry": "XX", "orders": 6, "revenue": 127.939998}, {"YearMonth": "2023-06", "CustomerCountry": "GB", "orders": 3421, "revenue": 106781.659392}, {"YearMonth": "2023-06", "CustomerCountry": "Other", "orders": 1, "revenue": 35.489999}, {"YearMonth": "2023-06", "CustomerCountry": "XX", "orders": 5, "revenue": 216.33}, {"YearMonth": "2023-07", "CustomerCountry": "GB", "orders": 4362, "revenue": 133986.859179}, {"YearMonth": "2023-07", "CustomerCountry": "XX", "orders": 9, "revenue": 134.11}, {"YearMonth": "2023-08", "CustomerCountry": "GB", "orders": 3237, "revenue": 95646.399682}, {"YearMonth": "2023-08", "CustomerCountry": "XX", "orders": 5, "revenue": 109.790001}, {"YearMonth": "2023-09", "CustomerCountry": "FR", "orders": 5, "revenue": 472.43999}, {"YearMonth": "2023-09", "CustomerCountry": "GB", "orders": 3503, "revenue": 111088.879664}, {"YearMonth": "2023-09", "CustomerCountry": "IE", "orders": 13, "revenue": 592.23}, {"YearMonth": "2023-09", "CustomerCountry": "XX", "orders": 7, "revenue": 169.909998}, {"YearMonth": "2023-10", "CustomerCountry": "DK", "orders": 4, "revenue": 312.53}, {"YearMonth": "2023-10", "CustomerCountry": "ES", "orders": 5, "revenue": 400.34}, {"YearMonth": "2023-10", "CustomerCountry": "FR", "orders": 4, "revenue": 150.419999}, {"YearMonth": "2023-10", "CustomerCountry": "GB", "orders": 3672, "revenue": 114836.469663}, {"YearMonth": "2023-10", "CustomerCountry": "IE", "orders": 28, "revenue": 1187.629982}, {"YearMonth": "2023-10", "CustomerCountry": "MT", "orders": 8, "revenue": 455.800002}, {"YearMonth": "2023-10", "CustomerCountry": "PT", "orders": 5, "revenue": 289.78999999999996}, {"YearMonth": "2023-10", "CustomerCountry": "SE", "orders": 2, "revenue": 106.369998}, {"YearMonth": "2023-10", "CustomerCountry": "XX", "orders": 7, "revenue": 195.47999900000002}, {"YearMonth": "2023-11", "CustomerCountry": "DK", "orders": 8, "revenue": 536.369996}, {"YearMonth": "2023-11", "CustomerCountry": "ES", "orders": 1, "revenue": 38.600001}, {"YearMonth": "2023-11", "CustomerCountry": "FR", "orders": 5, "revenue": 194.819999}, {"YearMonth": "2023-11", "CustomerCountry": "GB", "orders": 3164, "revenue": 104910.690073}, {"YearMonth": "2023-11", "CustomerCountry": "IE", "orders": 24, "revenue": 1085.999998}, {"YearMonth": "2023-11", "CustomerCountry": "MT", "orders": 3, "revenue": 193.219997}, {"YearMonth": "2023-11", "CustomerCountry": "PT", "orders": 2, "revenue": 124.13000100000001}, {"YearMonth": "2023-11", "CustomerCountry": "XX", "orders": 2, "revenue": 40.680001000000004}, {"YearMonth": "2023-12", "CustomerCountry": "DK", "orders": 4, "revenue": 349.20000600000003}, {"YearMonth": "2023-12", "CustomerCountry": "FR", "orders": 4, "revenue": 219.08999599999999}, {"YearMonth": "2023-12", "CustomerCountry": "GB", "orders": 3028, "revenue": 98906.630078}, {"YearMonth": "2023-12", "CustomerCountry": "IE", "orders": 12, "revenue": 802.640003}, {"YearMonth": "2023-12", "CustomerCountry": "MT", "orders": 1, "revenue": 56.760002}, {"YearMonth": "2023-12", "CustomerCountry": "PT", "orders": 1, "revenue": 67.359998}, {"YearMonth": "2023-12", "CustomerCountry": "XX", "orders": 7, "revenue": 219.500001}, {"YearMonth": "2024-01", "CustomerCountry": "DK", "orders": 3, "revenue": 124.380002}, {"YearMonth": "2024-01", "CustomerCountry": "FR", "orders": 14, "revenue": 1034.899995}, {"YearMonth": "2024-01", "CustomerCountry": "GB", "orders": 4772, "revenue": 158330.95568}, {"YearMonth": "2024-01", "CustomerCountry": "MT", "orders": 5, "revenue": 279.969996}, {"YearMonth": "2024-01", "CustomerCountry": "PT", "orders": 1, "revenue": 54.070001}, {"YearMonth": "2024-01", "CustomerCountry": "SE", "orders": 2, "revenue": 55.18000000000001}, {"YearMonth": "2024-01", "CustomerCountry": "XX", "orders": 6, "revenue": 142.249998}, {"YearMonth": "2024-02", "CustomerCountry": "DK", "orders": 2, "revenue": 87.58}, {"YearMonth": "2024-02", "CustomerCountry": "FR", "orders": 2, "revenue": 71.390001}, {"YearMonth": "2024-02", "CustomerCountry": "GB", "orders": 2591, "revenue": 79812.57972}, {"YearMonth": "2024-02", "CustomerCountry": "MT", "orders": 2, "revenue": 136.190002}, {"YearMonth": "2024-02", "CustomerCountry": "PT", "orders": 2, "revenue": 89.989998}, {"YearMonth": "2024-02", "CustomerCountry": "SE", "orders": 3, "revenue": 230.26000200000001}, {"YearMonth": "2024-02", "CustomerCountry": "XX", "orders": 7, "revenue": 147.56}, {"YearMonth": "2024-03", "CustomerCountry": "DK", "orders": 2, "revenue": 173.919999}, {"YearMonth": "2024-03", "CustomerCountry": "ES", "orders": 1, "revenue": 82.92}, {"YearMonth": "2024-03", "CustomerCountry": "FR", "orders": 4, "revenue": 241.940003}, {"YearMonth": "2024-03", "CustomerCountry": "GB", "orders": 3230, "revenue": 104728.089748}, {"YearMonth": "2024-03", "CustomerCountry": "IE", "orders": 19, "revenue": 547.870001}, {"YearMonth": "2024-03", "CustomerCountry": "MT", "orders": 2, "revenue": 103.249998}, {"YearMonth": "2024-03", "CustomerCountry": "PT", "orders": 1, "revenue": 112.140001}, {"YearMonth": "2024-03", "CustomerCountry": "SE", "orders": 1, "revenue": 25.11}, {"YearMonth": "2024-03", "CustomerCountry": "XX", "orders": 2, "revenue": 27.32}, {"YearMonth": "2024-04", "CustomerCountry": "DK", "orders": 3, "revenue": 187.56999399999998}, {"YearMonth": "2024-04", "CustomerCountry": "ES", "orders": 1, "revenue": 46.72}, {"YearMonth": "2024-04", "CustomerCountry": "FR", "orders": 3, "revenue": 73.27000100000001}, {"YearMonth": "2024-04", "CustomerCountry": "GB", "orders": 3340, "revenue": 107230.360181}, {"YearMonth": "2024-04", "CustomerCountry": "IE", "orders": 9, "revenue": 417.239997}, {"YearMonth": "2024-04", "CustomerCountry": "MT", "orders": 2, "revenue": 127.85999699999999}, {"YearMonth": "2024-04", "CustomerCountry": "PT", "orders": 1, "revenue": 40.17}, {"YearMonth": "2024-04", "CustomerCountry": "XX", "orders": 3, "revenue": 52.019999}, {"YearMonth": "2024-05", "CustomerCountry": "DK", "orders": 1, "revenue": 106.879997}, {"YearMonth": "2024-05", "CustomerCountry": "ES", "orders": 2, "revenue": 181.739995}, {"YearMonth": "2024-05", "CustomerCountry": "FR", "orders": 9, "revenue": 442.86}, {"YearMonth": "2024-05", "CustomerCountry": "GB", "orders": 3011, "revenue": 92651.811708}, {"YearMonth": "2024-05", "CustomerCountry": "IE", "orders": 14, "revenue": 877.710005}, {"YearMonth": "2024-05", "CustomerCountry": "MT", "orders": 2, "revenue": 237.83999699999998}, {"YearMonth": "2024-05", "CustomerCountry": "Other", "orders": 1, "revenue": 14.36}, {"YearMonth": "2024-05", "CustomerCountry": "PT", "orders": 1, "revenue": 62.62}, {"YearMonth": "2024-05", "CustomerCountry": "SE", "orders": 1, "revenue": 29.289999}, {"YearMonth": "2024-05", "CustomerCountry": "XX", "orders": 3, "revenue": 94.319999}, {"YearMonth": "2024-06", "CustomerCountry": "FR", "orders": 2, "revenue": 74.81}, {"YearMonth": "2024-06", "CustomerCountry": "GB", "orders": 2870, "revenue": 90442.345678}, {"YearMonth": "2024-06", "CustomerCountry": "IE", "orders": 19, "revenue": 982.999997}, {"YearMonth": "2024-06", "CustomerCountry": "MT", "orders": 2, "revenue": 165.750003}, {"YearMonth": "2024-06", "CustomerCountry": "Other", "orders": 1, "revenue": 21.87}, {"YearMonth": "2024-06", "CustomerCountry": "PT", "orders": 1, "revenue": 88.559998}, {"YearMonth": "2024-06", "CustomerCountry": "SE", "orders": 3, "revenue": 139.04999800000002}, {"YearMonth": "2024-06", "CustomerCountry": "XX", "orders": 2, "revenue": 61.02000100000001}, {"YearMonth": "2024-07", "CustomerCountry": "BE", "orders": 1, "revenue": 61.249999}, {"YearMonth": "2024-07", "CustomerCountry": "CY", "orders": 1, "revenue": 28.46}, {"YearMonth": "2024-07", "CustomerCountry": "DE", "orders": 1, "revenue": 45.319998}, {"YearMonth": "2024-07", "CustomerCountry": "DK", "orders": 6, "revenue": 438.999996}, {"YearMonth": "2024-07", "CustomerCountry": "ES", "orders": 4, "revenue": 246.51999800000002}, {"YearMonth": "2024-07", "CustomerCountry": "FR", "orders": 3, "revenue": 154.180002}, {"YearMonth": "2024-07", "CustomerCountry": "GB", "orders": 4076, "revenue": 132397.327591}, {"YearMonth": "2024-07", "CustomerCountry": "IE", "orders": 23, "revenue": 1429.849983}, {"YearMonth": "2024-07", "CustomerCountry": "IT", "orders": 1, "revenue": 39.31}, {"YearMonth": "2024-07", "CustomerCountry": "MT", "orders": 3, "revenue": 282.729996}, {"YearMonth": "2024-07", "CustomerCountry": "Other", "orders": 1, "revenue": 28.7}, {"YearMonth": "2024-07", "CustomerCountry": "PT", "orders": 4, "revenue": 249.739999}, {"YearMonth": "2024-07", "CustomerCountry": "SE", "orders": 4, "revenue": 239.1}, {"YearMonth": "2024-07", "CustomerCountry": "XX", "orders": 3, "revenue": 196.020004}, {"YearMonth": "2024-08", "CustomerCountry": "BE", "orders": 1, "revenue": 97.810001}, {"YearMonth": "2024-08", "CustomerCountry": "CY", "orders": 1, "revenue": 120.779997}, {"YearMonth": "2024-08", "CustomerCountry": "DE", "orders": 1, "revenue": 49.979999}, {"YearMonth": "2024-08", "CustomerCountry": "DK", "orders": 1, "revenue": 126.810002}, {"YearMonth": "2024-08", "CustomerCountry": "FR", "orders": 6, "revenue": 358.360007}, {"YearMonth": "2024-08", "CustomerCountry": "GB", "orders": 2914, "revenue": 93018.300243}, {"YearMonth": "2024-08", "CustomerCountry": "IE", "orders": 25, "revenue": 894.799997}, {"YearMonth": "2024-08", "CustomerCountry": "MT", "orders": 2, "revenue": 99.759999}, {"YearMonth": "2024-08", "CustomerCountry": "NL", "orders": 1, "revenue": 23.45}, {"YearMonth": "2024-08", "CustomerCountry": "PT", "orders": 1, "revenue": 59.5}, {"YearMonth": "2024-08", "CustomerCountry": "SE", "orders": 3, "revenue": 181.46999599999998}, {"YearMonth": "2024-08", "CustomerCountry": "SI", "orders": 3, "revenue": 153.27999799999998}, {"YearMonth": "2024-08", "CustomerCountry": "XX", "orders": 3, "revenue": 101.109999}, {"YearMonth": "2024-09", "CustomerCountry": "CY", "orders": 1, "revenue": 17.89}, {"YearMonth": "2024-09", "CustomerCountry": "DE", "orders": 1, "revenue": 66.53}, {"YearMonth": "2024-09", "CustomerCountry": "DK", "orders": 4, "revenue": 205.6}, {"YearMonth": "2024-09", "CustomerCountry": "FR", "orders": 6, "revenue": 421.150004}, {"YearMonth": "2024-09", "CustomerCountry": "GB", "orders": 2817, "revenue": 92090.189856}, {"YearMonth": "2024-09", "CustomerCountry": "IE", "orders": 16, "revenue": 796.839995}, {"YearMonth": "2024-09", "CustomerCountry": "MT", "orders": 2, "revenue": 185.60999800000002}, {"YearMonth": "2024-09", "CustomerCountry": "Other", "orders": 1, "revenue": 31.5}, {"YearMonth": "2024-09", "CustomerCountry": "PT", "orders": 1, "revenue": 53.319999}, {"YearMonth": "2024-09", "CustomerCountry": "SE", "orders": 1, "revenue": 25.11}, {"YearMonth": "2024-09", "CustomerCountry": "SI", "orders": 1, "revenue": 63.980002}, {"YearMonth": "2024-09", "CustomerCountry": "XX", "orders": 10, "revenue": 330.610001}, {"YearMonth": "2024-10", "CustomerCountry": "DE", "orders": 1, "revenue": 31.259999}, {"YearMonth": "2024-10", "CustomerCountry": "DK", "orders": 2, "revenue": 172.42999700000001}, {"YearMonth": "2024-10", "CustomerCountry": "FR", "orders": 4, "revenue": 248.109996}, {"YearMonth": "2024-10", "CustomerCountry": "GB", "orders": 3065, "revenue": 93010.21974}, {"YearMonth": "2024-10", "CustomerCountry": "GR", "orders": 2, "revenue": 105.37}, {"YearMonth": "2024-10", "CustomerCountry": "IE", "orders": 25, "revenue": 1542.9199899999999}, {"YearMonth": "2024-10", "CustomerCountry": "MT", "orders": 6, "revenue": 336.92}, {"YearMonth": "2024-10", "CustomerCountry": "NL", "orders": 1, "revenue": 48.62}, {"YearMonth": "2024-10", "CustomerCountry": "Other", "orders": 4, "revenue": 273.519999}, {"YearMonth": "2024-10", "CustomerCountry": "PT", "orders": 4, "revenue": 207.949998}, {"YearMonth": "2024-10", "CustomerCountry": "XX", "orders": 5, "revenue": 234.17999799999998}, {"YearMonth": "2024-11", "CustomerCountry": "DK", "orders": 1, "revenue": 145.499998}, {"YearMonth": "2024-11", "CustomerCountry": "FI", "orders": 1, "revenue": 42.200001}, {"YearMonth": "2024-11", "CustomerCountry": "FR", "orders": 7, "revenue": 660.639996}, {"YearMonth": "2024-11", "CustomerCountry": "GB", "orders": 3314, "revenue": 106861.059634}, {"YearMonth": "2024-11", "CustomerCountry": "IE", "orders": 13, "revenue": 520.329998}, {"YearMonth": "2024-11", "CustomerCountry": "MT", "orders": 2, "revenue": 113.36}, {"YearMonth": "2024-11", "CustomerCountry": "Other", "orders": 5, "revenue": 272.790001}, {"YearMonth": "2024-11", "CustomerCountry": "PT", "orders": 6, "revenue": 429.920001}, {"YearMonth": "2024-11", "CustomerCountry": "SE", "orders": 3, "revenue": 102.19999899999999}, {"YearMonth": "2024-11", "CustomerCountry": "SI", "orders": 1, "revenue": 78.979997}, {"YearMonth": "2024-11", "CustomerCountry": "XX", "orders": 4, "revenue": 111.819998}, {"YearMonth": "2024-12", "CustomerCountry": "CH", "orders": 1, "revenue": 44.03}, {"YearMonth": "2024-12", "CustomerCountry": "DK", "orders": 1, "revenue": 78.41}, {"YearMonth": "2024-12", "CustomerCountry": "FR", "orders": 1, "revenue": 71.259998}, {"YearMonth": "2024-12", "CustomerCountry": "GB", "orders": 2296, "revenue": 70721.92923}, {"YearMonth": "2024-12", "CustomerCountry": "IE", "orders": 17, "revenue": 727.000006}, {"YearMonth": "2024-12", "CustomerCountry": "MT", "orders": 3, "revenue": 196.240001}, {"YearMonth": "2024-12", "CustomerCountry": "Other", "orders": 2, "revenue": 135.639998}, {"YearMonth": "2024-12", "CustomerCountry": "PT", "orders": 1, "revenue": 34.070001}, {"YearMonth": "2024-12", "CustomerCountry": "SE", "orders": 3, "revenue": 152.700003}, {"YearMonth": "2024-12", "CustomerCountry": "XX", "orders": 2, "revenue": 47.06}, {"YearMonth": "2025-01", "CustomerCountry": "DE", "orders": 1, "revenue": 90.479997}, {"YearMonth": "2025-01", "CustomerCountry": "DK", "orders": 4, "revenue": 261.359995}, {"YearMonth": "2025-01", "CustomerCountry": "ES", "orders": 5, "revenue": 319.869999}, {"YearMonth": "2025-01", "CustomerCountry": "FR", "orders": 6, "revenue": 317.040001}, {"YearMonth": "2025-01", "CustomerCountry": "GB", "orders": 3447, "revenue": 119871.219046}, {"YearMonth": "2025-01", "CustomerCountry": "GR", "orders": 1, "revenue": 76.300001}, {"YearMonth": "2025-01", "CustomerCountry": "IE", "orders": 29, "revenue": 1233.909985}, {"YearMonth": "2025-01", "CustomerCountry": "MT", "orders": 1, "revenue": 94.759996}, {"YearMonth": "2025-01", "CustomerCountry": "Other", "orders": 1, "revenue": 101.589999}, {"YearMonth": "2025-01", "CustomerCountry": "PT", "orders": 4, "revenue": 205.909998}, {"YearMonth": "2025-01", "CustomerCountry": "SE", "orders": 1, "revenue": 33.3}, {"YearMonth": "2025-01", "CustomerCountry": "XX", "orders": 2, "revenue": 186.480003}, {"YearMonth": "2025-02", "CustomerCountry": "CH", "orders": 1, "revenue": 86.909999}, {"YearMonth": "2025-02", "CustomerCountry": "CY", "orders": 1, "revenue": 28.95}, {"YearMonth": "2025-02", "CustomerCountry": "FR", "orders": 2, "revenue": 222.33999899999998}, {"YearMonth": "2025-02", "CustomerCountry": "GB", "orders": 2384, "revenue": 78592.489549}, {"YearMonth": "2025-02", "CustomerCountry": "IE", "orders": 24, "revenue": 879.099996}, {"YearMonth": "2025-02", "CustomerCountry": "MT", "orders": 3, "revenue": 166.319999}, {"YearMonth": "2025-02", "CustomerCountry": "Other", "orders": 2, "revenue": 396.56001200000003}, {"YearMonth": "2025-02", "CustomerCountry": "PT", "orders": 1, "revenue": 66.819998}, {"YearMonth": "2025-03", "CustomerCountry": "BE", "orders": 1, "revenue": 49.899998}, {"YearMonth": "2025-03", "CustomerCountry": "CY", "orders": 2, "revenue": 78.9}, {"YearMonth": "2025-03", "CustomerCountry": "DK", "orders": 5, "revenue": 295.53000099999997}, {"YearMonth": "2025-03", "CustomerCountry": "FR", "orders": 3, "revenue": 175.879999}, {"YearMonth": "2025-03", "CustomerCountry": "GB", "orders": 2468, "revenue": 85369.899518}, {"YearMonth": "2025-03", "CustomerCountry": "IE", "orders": 10, "revenue": 497.400003}, {"YearMonth": "2025-03", "CustomerCountry": "MT", "orders": 3, "revenue": 188.799996}, {"YearMonth": "2025-03", "CustomerCountry": "NL", "orders": 1, "revenue": 33.660001}, {"YearMonth": "2025-03", "CustomerCountry": "Other", "orders": 1, "revenue": 53.169998}, {"YearMonth": "2025-03", "CustomerCountry": "PT", "orders": 1, "revenue": 56.529999}, {"YearMonth": "2025-03", "CustomerCountry": "SE", "orders": 1, "revenue": 25.11}, {"YearMonth": "2025-03", "CustomerCountry": "SI", "orders": 1, "revenue": 28.980001}, {"YearMonth": "2025-03", "CustomerCountry": "XX", "orders": 2, "revenue": 71.51}, {"YearMonth": "2025-04", "CustomerCountry": "DK", "orders": 1, "revenue": 22.63}, {"YearMonth": "2025-04", "CustomerCountry": "FR", "orders": 5, "revenue": 300.71999800000003}, {"YearMonth": "2025-04", "CustomerCountry": "GB", "orders": 2546, "revenue": 89229.199563}, {"YearMonth": "2025-04", "CustomerCountry": "IE", "orders": 18, "revenue": 684.419997}, {"YearMonth": "2025-04", "CustomerCountry": "MT", "orders": 1, "revenue": 75.729999}, {"YearMonth": "2025-04", "CustomerCountry": "PT", "orders": 2, "revenue": 115.09}, {"YearMonth": "2025-04", "CustomerCountry": "SE", "orders": 1, "revenue": 99.820001}, {"YearMonth": "2025-04", "CustomerCountry": "XX", "orders": 2, "revenue": 76.680002}, {"YearMonth": "2025-05", "CustomerCountry": "DK", "orders": 3, "revenue": 290.58}, {"YearMonth": "2025-05", "CustomerCountry": "FR", "orders": 4, "revenue": 189.270003}, {"YearMonth": "2025-05", "CustomerCountry": "GB", "orders": 2597, "revenue": 94615.649555}, {"YearMonth": "2025-05", "CustomerCountry": "GR", "orders": 1, "revenue": 51.190001}, {"YearMonth": "2025-05", "CustomerCountry": "IE", "orders": 18, "revenue": 794.620002}, {"YearMonth": "2025-05", "CustomerCountry": "MT", "orders": 2, "revenue": 176.550002}, {"YearMonth": "2025-05", "CustomerCountry": "Other", "orders": 2, "revenue": 126.800001}, {"YearMonth": "2025-05", "CustomerCountry": "PT", "orders": 1, "revenue": 93.430003}, {"YearMonth": "2025-05", "CustomerCountry": "SE", "orders": 2, "revenue": 159.859994}, {"YearMonth": "2025-05", "CustomerCountry": "XX", "orders": 1, "revenue": 26.790001}, {"YearMonth": "2025-06", "CustomerCountry": "CH", "orders": 1, "revenue": 49.47}, {"YearMonth": "2025-06", "CustomerCountry": "FR", "orders": 5, "revenue": 430.459991}, {"YearMonth": "2025-06", "CustomerCountry": "GB", "orders": 2316, "revenue": 81355.569529}, {"YearMonth": "2025-06", "CustomerCountry": "IE", "orders": 13, "revenue": 674.27}, {"YearMonth": "2025-06", "CustomerCountry": "MT", "orders": 1, "revenue": 95.300003}, {"YearMonth": "2025-06", "CustomerCountry": "Other", "orders": 1, "revenue": 81.899998}, {"YearMonth": "2025-06", "CustomerCountry": "PT", "orders": 2, "revenue": 151.459997}, {"YearMonth": "2025-06", "CustomerCountry": "SI", "orders": 1, "revenue": 52.599998}, {"YearMonth": "2025-06", "CustomerCountry": "XX", "orders": 4, "revenue": 528.340003}, {"YearMonth": "2025-07", "CustomerCountry": "CH", "orders": 1, "revenue": 83.549998}, {"YearMonth": "2025-07", "CustomerCountry": "DK", "orders": 1, "revenue": 79.129998}, {"YearMonth": "2025-07", "CustomerCountry": "FR", "orders": 2, "revenue": 116.65}, {"YearMonth": "2025-07", "CustomerCountry": "GB", "orders": 2472, "revenue": 86423.999407}, {"YearMonth": "2025-07", "CustomerCountry": "IE", "orders": 12, "revenue": 751.139994}, {"YearMonth": "2025-07", "CustomerCountry": "XX", "orders": 1, "revenue": 34.57}, {"YearMonth": "2025-08", "CustomerCountry": "BE", "orders": 1, "revenue": 85.500002}, {"YearMonth": "2025-08", "CustomerCountry": "DK", "orders": 2, "revenue": 94.729998}, {"YearMonth": "2025-08", "CustomerCountry": "FR", "orders": 6, "revenue": 458.570002}, {"YearMonth": "2025-08", "CustomerCountry": "GB", "orders": 2459, "revenue": 85527.609442}, {"YearMonth": "2025-08", "CustomerCountry": "IE", "orders": 12, "revenue": 813.769999}, {"YearMonth": "2025-08", "CustomerCountry": "MT", "orders": 4, "revenue": 280.359999}, {"YearMonth": "2025-08", "CustomerCountry": "Other", "orders": 2, "revenue": 111.760001}, {"YearMonth": "2025-08", "CustomerCountry": "PT", "orders": 5, "revenue": 341.830003}, {"YearMonth": "2025-08", "CustomerCountry": "SE", "orders": 2, "revenue": 74.64}, {"YearMonth": "2025-08", "CustomerCountry": "XX", "orders": 1, "revenue": 39.87}, {"YearMonth": "2025-09", "CustomerCountry": "BE", "orders": 2, "revenue": 147.250001}, {"YearMonth": "2025-09", "CustomerCountry": "DK", "orders": 2, "revenue": 37.31}, {"YearMonth": "2025-09", "CustomerCountry": "FR", "orders": 3, "revenue": 157.969997}, {"YearMonth": "2025-09", "CustomerCountry": "GB", "orders": 2290, "revenue": 78239.69033699999}, {"YearMonth": "2025-09", "CustomerCountry": "IE", "orders": 16, "revenue": 838.039987}, {"YearMonth": "2025-09", "CustomerCountry": "MT", "orders": 4, "revenue": 258.550002}, {"YearMonth": "2025-09", "CustomerCountry": "Other", "orders": 1, "revenue": 33.21}, {"YearMonth": "2025-09", "CustomerCountry": "PT", "orders": 1, "revenue": 104.649999}, {"YearMonth": "2025-09", "CustomerCountry": "XX", "orders": 1, "revenue": 27.540001}, {"YearMonth": "2025-10", "CustomerCountry": "BE", "orders": 2, "revenue": 59.909999}, {"YearMonth": "2025-10", "CustomerCountry": "DK", "orders": 2, "revenue": 73.050001}, {"YearMonth": "2025-10", "CustomerCountry": "FR", "orders": 4, "revenue": 340.699999}, {"YearMonth": "2025-10", "CustomerCountry": "GB", "orders": 2524, "revenue": 87820.70944}, {"YearMonth": "2025-10", "CustomerCountry": "GR", "orders": 1, "revenue": 77.8}, {"YearMonth": "2025-10", "CustomerCountry": "IE", "orders": 16, "revenue": 637.470007}, {"YearMonth": "2025-10", "CustomerCountry": "MT", "orders": 5, "revenue": 327.550004}, {"YearMonth": "2025-10", "CustomerCountry": "Other", "orders": 2, "revenue": 98.65}, {"YearMonth": "2025-10", "CustomerCountry": "PT", "orders": 3, "revenue": 255.04999700000002}, {"YearMonth": "2025-10", "CustomerCountry": "XX", "orders": 1, "revenue": 23.24}, {"YearMonth": "2025-11", "CustomerCountry": "CH", "orders": 1, "revenue": 79.530002}, {"YearMonth": "2025-11", "CustomerCountry": "FR", "orders": 1, "revenue": 43.579998}, {"YearMonth": "2025-11", "CustomerCountry": "GB", "orders": 2097, "revenue": 73543.47962299999}, {"YearMonth": "2025-11", "CustomerCountry": "IE", "orders": 6, "revenue": 400.979995}, {"YearMonth": "2025-11", "CustomerCountry": "MT", "orders": 2, "revenue": 174.599997}, {"YearMonth": "2025-11", "CustomerCountry": "Other", "orders": 1, "revenue": 49.79}, {"YearMonth": "2025-11", "CustomerCountry": "PT", "orders": 2, "revenue": 164.199998}, {"YearMonth": "2025-11", "CustomerCountry": "SE", "orders": 1, "revenue": 110.379999}, {"YearMonth": "2025-11", "CustomerCountry": "XX", "orders": 6, "revenue": 230.83999799999998}, {"YearMonth": "2025-12", "CustomerCountry": "BE", "orders": 1, "revenue": 38.959999}, {"YearMonth": "2025-12", "CustomerCountry": "DE", "orders": 3, "revenue": 81.869999}, {"YearMonth": "2025-12", "CustomerCountry": "DK", "orders": 1, "revenue": 18.86}, {"YearMonth": "2025-12", "CustomerCountry": "FR", "orders": 7, "revenue": 347.439994}, {"YearMonth": "2025-12", "CustomerCountry": "GB", "orders": 1933, "revenue": 66028.15961}, {"YearMonth": "2025-12", "CustomerCountry": "GR", "orders": 1, "revenue": 21.32}, {"YearMonth": "2025-12", "CustomerCountry": "IE", "orders": 7, "revenue": 370.76}, {"YearMonth": "2025-12", "CustomerCountry": "IT", "orders": 3, "revenue": 153.749999}, {"YearMonth": "2025-12", "CustomerCountry": "NO", "orders": 1, "revenue": 36.240001}, {"YearMonth": "2025-12", "CustomerCountry": "Other", "orders": 5, "revenue": 148.939998}, {"YearMonth": "2025-12", "CustomerCountry": "PT", "orders": 1, "revenue": 32.029999}, {"YearMonth": "2025-12", "CustomerCountry": "SE", "orders": 3, "revenue": 115.350002}, {"YearMonth": "2025-12", "CustomerCountry": "XX", "orders": 3, "revenue": 77.66999799999999}, {"YearMonth": "2026-01", "CustomerCountry": "BE", "orders": 3, "revenue": 83.879999}, {"YearMonth": "2026-01", "CustomerCountry": "DK", "orders": 1, "revenue": 104.299996}, {"YearMonth": "2026-01", "CustomerCountry": "FR", "orders": 5, "revenue": 253.820002}, {"YearMonth": "2026-01", "CustomerCountry": "GB", "orders": 867, "revenue": 31948.229821}, {"YearMonth": "2026-01", "CustomerCountry": "IE", "orders": 3, "revenue": 226.459995}, {"YearMonth": "2026-01", "CustomerCountry": "MT", "orders": 1, "revenue": 79.889999}, {"YearMonth": "2026-01", "CustomerCountry": "Other", "orders": 1, "revenue": 50.399998}, {"YearMonth": "2026-01", "CustomerCountry": "PT", "orders": 3, "revenue": 118.979999}, {"YearMonth": "2026-01", "CustomerCountry": "XX", "orders": 4, "revenue": 106.299999}], "deliveryMonthly": [{"YearMonth": "2005-11", "DeliveryMethod": "Other", "orders": 2, "revenue": 37.849901, "avgShipping": 0.0, "avgAOV": 18.9249505}, {"YearMonth": "2005-12", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1, "revenue": 17.9, "avgShipping": 0.0, "avgAOV": 17.9}, {"YearMonth": "2006-01", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 4, "revenue": 106.44969900000001, "avgShipping": 0.0, "avgAOV": 26.612424750000002}, {"YearMonth": "2006-02", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 2, "revenue": 84.550002, "avgShipping": 1.0, "avgAOV": 42.275001}, {"YearMonth": "2006-02", "DeliveryMethod": "Other", "orders": 3, "revenue": 36.55, "avgShipping": 0.6666666666666666, "avgAOV": 12.183333333333332}, {"YearMonth": "2006-03", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 3, "revenue": 34.849999999999994, "avgShipping": 0.6666666666666666, "avgAOV": 11.616666666666665}, {"YearMonth": "2006-03", "DeliveryMethod": "Other", "orders": 108, "revenue": 2249.480004, "avgShipping": 0.7825, "avgAOV": 24.6822748475}, {"YearMonth": "2006-04", "DeliveryMethod": "Other", "orders": 171, "revenue": 2960.5348080000003, "avgShipping": 0.613240418118467, "avgAOV": 17.286285825783974}, {"YearMonth": "2006-05", "DeliveryMethod": "Other", "orders": 244, "revenue": 4318.036408999999, "avgShipping": 0.5245098039215685, "avgAOV": 19.144049960084033}, {"YearMonth": "2006-06", "DeliveryMethod": "Other", "orders": 265, "revenue": 4865.121921999999, "avgShipping": 0.3601953601953602, "avgAOV": 19.86305087973138}, {"YearMonth": "2006-07", "DeliveryMethod": "Other", "orders": 302, "revenue": 5482.026914, "avgShipping": 0.371551724137931, "avgAOV": 18.510620265229885}, {"YearMonth": "2006-08", "DeliveryMethod": "Other", "orders": 283, "revenue": 5640.698834999999, "avgShipping": 0.4202786377708978, "avgAOV": 22.685239588898717}, {"YearMonth": "2006-09", "DeliveryMethod": "Other", "orders": 369, "revenue": 6828.857685999999, "avgShipping": 0.5192307692307692, "avgAOV": 19.711371030790836}, {"YearMonth": "2006-10", "DeliveryMethod": "Other", "orders": 473, "revenue": 8775.654862, "avgShipping": 0.38479027468448407, "avgAOV": 22.344769438474387}, {"YearMonth": "2006-11", "DeliveryMethod": "Other", "orders": 452, "revenue": 8036.807243, "avgShipping": 0.47585902110264056, "avgAOV": 18.541833286542925}, {"YearMonth": "2006-12", "DeliveryMethod": "Other", "orders": 457, "revenue": 8702.449861, "avgShipping": 0.24087481146304673, "avgAOV": 18.309961861840122}, {"YearMonth": "2007-01", "DeliveryMethod": "Other", "orders": 639, "revenue": 11486.135416, "avgShipping": 0.34040066777963274, "avgAOV": 17.013343865609347}, {"YearMonth": "2007-02", "DeliveryMethod": "Other", "orders": 660, "revenue": 12216.326396, "avgShipping": 0.23664295874822192, "avgAOV": 17.622472932176386}, {"YearMonth": "2007-03", "DeliveryMethod": "Other", "orders": 555, "revenue": 10783.237444, "avgShipping": 0.2739702517162471, "avgAOV": 18.91926825583524}, {"YearMonth": "2007-04", "DeliveryMethod": "Other", "orders": 452, "revenue": 8828.669935, "avgShipping": 0.3823292525773196, "avgAOV": 20.510479461903994}, {"YearMonth": "2007-05", "DeliveryMethod": "Other", "orders": 515, "revenue": 9860.628859999999, "avgShipping": 0.3367521367521368, "avgAOV": 19.233924801111108}, {"YearMonth": "2007-06", "DeliveryMethod": "Other", "orders": 533, "revenue": 10580.481154000001, "avgShipping": 1.4607114005481463, "avgAOV": 21.27652715753216}, {"YearMonth": "2007-07", "DeliveryMethod": "Other", "orders": 524, "revenue": 11018.502634, "avgShipping": 1.878826616430061, "avgAOV": 22.478533419731693}, {"YearMonth": "2007-08", "DeliveryMethod": "Other", "orders": 491, "revenue": 10025.919848, "avgShipping": 1.8989310829817159, "avgAOV": 25.766474718298173}, {"YearMonth": "2007-09", "DeliveryMethod": "Other", "orders": 493, "revenue": 9671.657874999999, "avgShipping": 1.9168315644300533, "avgAOV": 24.779067998131925}, {"YearMonth": "2007-10", "DeliveryMethod": "Other", "orders": 456, "revenue": 10699.951841, "avgShipping": 2.004965986394558, "avgAOV": 41.76849006055322}, {"YearMonth": "2007-11", "DeliveryMethod": "Other", "orders": 467, "revenue": 9619.884786, "avgShipping": 1.8677945480253857, "avgAOV": 23.089692896328632}, {"YearMonth": "2007-12", "DeliveryMethod": "Other", "orders": 374, "revenue": 7706.746847, "avgShipping": 1.931077694235589, "avgAOV": 22.422440463851938}, {"YearMonth": "2008-01", "DeliveryMethod": "Other", "orders": 654, "revenue": 13241.55782, "avgShipping": 1.8940148272225326, "avgAOV": 23.713549837123754}, {"YearMonth": "2008-02", "DeliveryMethod": "Other", "orders": 521, "revenue": 11032.04128, "avgShipping": 1.8867095391211146, "avgAOV": 24.332333256597593}, {"YearMonth": "2008-03", "DeliveryMethod": "Other", "orders": 625, "revenue": 12668.591699999999, "avgShipping": 1.442511592931445, "avgAOV": 18.599256836881427}, {"YearMonth": "2008-04", "DeliveryMethod": "Other", "orders": 565, "revenue": 10661.053659, "avgShipping": 1.4207348484848485, "avgAOV": 20.714750564619756}, {"YearMonth": "2008-05", "DeliveryMethod": "Other", "orders": 613, "revenue": 12053.633878999999, "avgShipping": 1.9325958099763645, "avgAOV": 22.138378287948424}, {"YearMonth": "2008-06", "DeliveryMethod": "Other", "orders": 877, "revenue": 17484.727841, "avgShipping": 1.935516090221174, "avgAOV": 24.917797613619033}, {"YearMonth": "2008-07", "DeliveryMethod": "Other", "orders": 833, "revenue": 16038.554160000002, "avgShipping": 1.4958043694141012, "avgAOV": 19.24811762596446}, {"YearMonth": "2008-08", "DeliveryMethod": "Other", "orders": 1148, "revenue": 21201.507049, "avgShipping": 1.543767941375878, "avgAOV": 20.202120295915226}, {"YearMonth": "2008-09", "DeliveryMethod": "Other", "orders": 964, "revenue": 19294.511739999998, "avgShipping": 1.488357245298913, "avgAOV": 25.471047926429065}, {"YearMonth": "2008-10", "DeliveryMethod": "Other", "orders": 1217, "revenue": 24813.099453, "avgShipping": 3.223648353116753, "avgAOV": 23.393508225391532}, {"YearMonth": "2008-11", "DeliveryMethod": "Other", "orders": 1248, "revenue": 25440.504521, "avgShipping": 3.6476103103597564, "avgAOV": 25.119311823126576}, {"YearMonth": "2008-12", "DeliveryMethod": "Other", "orders": 988, "revenue": 20314.958828000003, "avgShipping": 2.8155869281033916, "avgAOV": 22.04096685937808}, {"YearMonth": "2009-01", "DeliveryMethod": "Other", "orders": 1668, "revenue": 35097.499565, "avgShipping": 2.394676571188083, "avgAOV": 22.486457221408113}, {"YearMonth": "2009-02", "DeliveryMethod": "Other", "orders": 1487, "revenue": 32899.380604000005, "avgShipping": 3.9744020272299925, "avgAOV": 38.39320971479285}, {"YearMonth": "2009-03", "DeliveryMethod": "Other", "orders": 1725, "revenue": 37236.189317, "avgShipping": 3.6843530310571766, "avgAOV": 26.28694973437802}, {"YearMonth": "2009-04", "DeliveryMethod": "Other", "orders": 1697, "revenue": 37295.261614999996, "avgShipping": 4.079115354690901, "avgAOV": 32.47571642667244}, {"YearMonth": "2009-05", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 550, "revenue": 13631.510429, "avgShipping": 2.909090909090909, "avgAOV": 24.784564416363636}, {"YearMonth": "2009-05", "DeliveryMethod": "Other", "orders": 1465, "revenue": 30797.177069999998, "avgShipping": 5.669086839884254, "avgAOV": 33.298316456602834}, {"YearMonth": "2009-06", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 532, "revenue": 12645.345556, "avgShipping": 2.918233082706767, "avgAOV": 23.769446533834586}, {"YearMonth": "2009-06", "DeliveryMethod": "Other", "orders": 1272, "revenue": 26762.007141000002, "avgShipping": 9.325992095530284, "avgAOV": 31.037842424669172}, {"YearMonth": "2009-07", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 516, "revenue": 12904.007942, "avgShipping": 2.873062015503876, "avgAOV": 25.007767329457366}, {"YearMonth": "2009-07", "DeliveryMethod": "Other", "orders": 1317, "revenue": 29385.568825000002, "avgShipping": 7.6324614937518165, "avgAOV": 42.318452840322955}, {"YearMonth": "2009-08", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 521, "revenue": 12915.134581, "avgShipping": 2.8694817658349328, "avgAOV": 24.789125875239925}, {"YearMonth": "2009-08", "DeliveryMethod": "Other", "orders": 1337, "revenue": 30234.184927000002, "avgShipping": 8.849381002731517, "avgAOV": 39.002842194834436}, {"YearMonth": "2009-09", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 523, "revenue": 12997.042935, "avgShipping": 2.6959847036328872, "avgAOV": 24.850942514340343}, {"YearMonth": "2009-09", "DeliveryMethod": "Other", "orders": 1098, "revenue": 25535.428426000002, "avgShipping": 8.755582350839585, "avgAOV": 29.952373593903552}, {"YearMonth": "2009-10", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 366, "revenue": 9495.963882, "avgShipping": 2.7459016393442623, "avgAOV": 25.94525650819672}, {"YearMonth": "2009-10", "DeliveryMethod": "Other", "orders": 891, "revenue": 20878.582321, "avgShipping": 10.496364653243848, "avgAOV": 44.801768954275325}, {"YearMonth": "2009-10", "DeliveryMethod": "Standard (Royal Mail)", "orders": 435, "revenue": 9208.127618, "avgShipping": 0.27011494252873564, "avgAOV": 21.168109466666667}, {"YearMonth": "2009-11", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 481, "revenue": 11655.33318, "avgShipping": 2.7027027027027026, "avgAOV": 24.23146191268191}, {"YearMonth": "2009-11", "DeliveryMethod": "Other", "orders": 160, "revenue": 5621.12669, "avgShipping": 10.70238095238095, "avgAOV": 37.90000652502497}, {"YearMonth": "2009-11", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1182, "revenue": 24145.198536, "avgShipping": 0.2305414551607445, "avgAOV": 20.42740992893401}, {"YearMonth": "2009-12", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 442, "revenue": 11238.081479, "avgShipping": 2.737556561085973, "avgAOV": 25.425523708144798}, {"YearMonth": "2009-12", "DeliveryMethod": "Other", "orders": 147, "revenue": 5432.370574, "avgShipping": 10.557142857142857, "avgAOV": 41.93147595909091}, {"YearMonth": "2009-12", "DeliveryMethod": "Standard (Royal Mail)", "orders": 833, "revenue": 17448.040372, "avgShipping": 0.29411764705882354, "avgAOV": 20.946026857142858}, {"YearMonth": "2010-01", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 624, "revenue": 15918.509872999999, "avgShipping": 2.672275641025641, "avgAOV": 25.51043248878205}, {"YearMonth": "2010-01", "DeliveryMethod": "Other", "orders": 233, "revenue": 8804.467401, "avgShipping": 10.5, "avgAOV": 52.67369492641878}, {"YearMonth": "2010-01", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1282, "revenue": 27317.269326, "avgShipping": 0.28081123244929795, "avgAOV": 21.308322407176288}, {"YearMonth": "2010-02", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 549, "revenue": 15044.047367, "avgShipping": 2.7003642987249545, "avgAOV": 27.402636369763204}, {"YearMonth": "2010-02", "DeliveryMethod": "Other", "orders": 167, "revenue": 5726.638647999999, "avgShipping": 9.3, "avgAOV": 31.047916287499998}, {"YearMonth": "2010-02", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1023, "revenue": 21455.134895, "avgShipping": 0.2541544477028348, "avgAOV": 20.972761383186704}, {"YearMonth": "2010-03", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 554, "revenue": 13974.549993999999, "avgShipping": 2.734657039711191, "avgAOV": 25.224819483754512}, {"YearMonth": "2010-03", "DeliveryMethod": "Other", "orders": 217, "revenue": 7736.4909339999995, "avgShipping": 10.561538461538461, "avgAOV": 46.51880878174048}, {"YearMonth": "2010-03", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1101, "revenue": 22969.296735, "avgShipping": 0.279291553133515, "avgAOV": 20.862213201634876}, {"YearMonth": "2010-04", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 531, "revenue": 13045.336014, "avgShipping": 2.707156308851224, "avgAOV": 24.567487785310735}, {"YearMonth": "2010-04", "DeliveryMethod": "Other", "orders": 208, "revenue": 8026.391815, "avgShipping": 13.0, "avgAOV": 68.60540733900169}, {"YearMonth": "2010-04", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1264, "revenue": 26854.879696, "avgShipping": 0.25712025316455694, "avgAOV": 21.24594912658228}, {"YearMonth": "2010-05", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 571, "revenue": 14586.941751, "avgShipping": 2.683887915936953, "avgAOV": 25.54630779509632}, {"YearMonth": "2010-05", "DeliveryMethod": "Other", "orders": 190, "revenue": 7330.2132249999995, "avgShipping": 12.540000000000001, "avgAOV": 48.976212993563216}, {"YearMonth": "2010-05", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1222, "revenue": 25574.439272, "avgShipping": 0.263911620294599, "avgAOV": 20.928346376432078}, {"YearMonth": "2010-06", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 527, "revenue": 13732.554232, "avgShipping": 2.7229601518026567, "avgAOV": 26.057977669829224}, {"YearMonth": "2010-06", "DeliveryMethod": "Other", "orders": 192, "revenue": 6975.95091, "avgShipping": 12.58, "avgAOV": 45.1040114140545}, {"YearMonth": "2010-06", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1146, "revenue": 23767.830482999998, "avgShipping": 0.3075916230366492, "avgAOV": 20.73981717539267}, {"YearMonth": "2010-07", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 555, "revenue": 14425.649673, "avgShipping": 2.644144144144144, "avgAOV": 25.99216157297297}, {"YearMonth": "2010-07", "DeliveryMethod": "Other", "orders": 171, "revenue": 6098.587216, "avgShipping": 12.583333333333334, "avgAOV": 48.47867203167702}, {"YearMonth": "2010-07", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1236, "revenue": 25553.803307, "avgShipping": 0.32362459546925565, "avgAOV": 20.674598144822006}, {"YearMonth": "2010-08", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 629, "revenue": 17467.126491, "avgShipping": 2.651033386327504, "avgAOV": 27.769676456279807}, {"YearMonth": "2010-08", "DeliveryMethod": "Other", "orders": 199, "revenue": 7733.296389, "avgShipping": 7.453125, "avgAOV": 83.79309583545009}, {"YearMonth": "2010-08", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1285, "revenue": 28976.594418, "avgShipping": 0.2178988326848249, "avgAOV": 22.54987892451362}, {"YearMonth": "2010-09", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 581, "revenue": 14658.733312, "avgShipping": 2.697934595524957, "avgAOV": 25.230177817555937}, {"YearMonth": "2010-09", "DeliveryMethod": "Other", "orders": 202, "revenue": 7740.286316999999, "avgShipping": 6.080068027210885, "avgAOV": 52.21483684435374}, {"YearMonth": "2010-09", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1150, "revenue": 25028.640366, "avgShipping": 0.1782608695652174, "avgAOV": 21.764035100869563}, {"YearMonth": "2010-10", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 610, "revenue": 16555.159759, "avgShipping": 2.6639344262295084, "avgAOV": 27.139606162295077}, {"YearMonth": "2010-10", "DeliveryMethod": "Other", "orders": 178, "revenue": 7996.609429, "avgShipping": 3.8333333333333335, "avgAOV": 118.12784325751635}, {"YearMonth": "2010-10", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1086, "revenue": 24361.090325, "avgShipping": 0.22099447513812154, "avgAOV": 22.43194320902394}, {"YearMonth": "2010-11", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 555, "revenue": 14828.630309, "avgShipping": 2.671171171171171, "avgAOV": 26.71825280900901}, {"YearMonth": "2010-11", "DeliveryMethod": "Other", "orders": 173, "revenue": 6900.86931, "avgShipping": 3.9722222222222228, "avgAOV": 81.57839939621677}, {"YearMonth": "2010-11", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1138, "revenue": 25122.3467, "avgShipping": 0.1977152899824253, "avgAOV": 22.07587583479789}, {"YearMonth": "2010-12", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 446, "revenue": 12205.523837, "avgShipping": 2.679372197309417, "avgAOV": 27.366645374439464}, {"YearMonth": "2010-12", "DeliveryMethod": "Other", "orders": 145, "revenue": 4446.533449999999, "avgShipping": 3.0, "avgAOV": 22.787025868794323}, {"YearMonth": "2010-12", "DeliveryMethod": "Standard (Royal Mail)", "orders": 963, "revenue": 22005.206742, "avgShipping": 0.2050882658359294, "avgAOV": 22.85068197507788}, {"YearMonth": "2011-01", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 692, "revenue": 18314.247527, "avgShipping": 2.6842485549132946, "avgAOV": 26.46567561705202}, {"YearMonth": "2011-01", "DeliveryMethod": "Other", "orders": 262, "revenue": 11201.482715, "avgShipping": 5.1, "avgAOV": 38.60847545336418}, {"YearMonth": "2011-01", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1519, "revenue": 33547.446007, "avgShipping": 0.2271231073074391, "avgAOV": 22.08521791112574}, {"YearMonth": "2011-02", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 523, "revenue": 14662.402786999999, "avgShipping": 2.6625239005736137, "avgAOV": 28.035186973231355}, {"YearMonth": "2011-02", "DeliveryMethod": "Other", "orders": 188, "revenue": 7275.806988, "avgShipping": 4.111111111111112, "avgAOV": 86.7625874037037}, {"YearMonth": "2011-02", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1171, "revenue": 25019.944171, "avgShipping": 0.2412467976088813, "avgAOV": 21.366305867634498}, {"YearMonth": "2011-03", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 540, "revenue": 13994.861607, "avgShipping": 2.662037037037037, "avgAOV": 25.916410383333336}, {"YearMonth": "2011-03", "DeliveryMethod": "Other", "orders": 188, "revenue": 6653.216809, "avgShipping": 3.8333333333333335, "avgAOV": 26.964757508253967}, {"YearMonth": "2011-03", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1186, "revenue": 26554.803217, "avgShipping": 0.23608768971332209, "avgAOV": 22.390221936762227}, {"YearMonth": "2011-04", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 547, "revenue": 14424.969548, "avgShipping": 2.6416819012797075, "avgAOV": 26.371059502742227}, {"YearMonth": "2011-04", "DeliveryMethod": "Other", "orders": 199, "revenue": 7422.593470000001, "avgShipping": 3.875, "avgAOV": 24.9515984619709}, {"YearMonth": "2011-04", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1198, "revenue": 26801.252250999998, "avgShipping": 0.22537562604340566, "avgAOV": 22.371662980801332}, {"YearMonth": "2011-05", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 595, "revenue": 15453.739305, "avgShipping": 2.680672268907563, "avgAOV": 25.972671100840333}, {"YearMonth": "2011-05", "DeliveryMethod": "Other", "orders": 183, "revenue": 7633.592898000001, "avgShipping": 5.888888888888889, "avgAOV": 34.063006359195406}, {"YearMonth": "2011-05", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1218, "revenue": 26607.869365, "avgShipping": 0.24014778325123154, "avgAOV": 21.845541350574713}, {"YearMonth": "2011-06", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 551, "revenue": 15216.154892, "avgShipping": 2.6361161524500907, "avgAOV": 27.615526119782213}, {"YearMonth": "2011-06", "DeliveryMethod": "Other", "orders": 191, "revenue": 6843.163893, "avgShipping": 4.0, "avgAOV": 32.935321797085614}, {"YearMonth": "2011-06", "DeliveryMethod": "Standard (Royal Mail)", "orders": 1234, "revenue": 26309.934408, "avgShipping": 0.23095623987034036, "avgAOV": 21.320854463533227}, {"YearMonth": "2011-07", "DeliveryMethod": "Express: Approx 1-2 days (+ \u00a32.50)", "orders": 72, "revenue": 2221.039314, "avgShipping": 2.5347222222222223, "avgAOV": 30.84776825}, {"YearMonth": "2011-07", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1309, "revenue": 28116.309374, "avgShipping": 0.0, "avgAOV": 21.479227940412528}, {"YearMonth": "2011-07", "DeliveryMethod": "Other", "orders": 605, "revenue": 18076.542482, "avgShipping": 3.6714285714285717, "avgAOV": 24.486422949192455}, {"YearMonth": "2011-07", "DeliveryMethod": "Standard (Royal Mail)", "orders": 174, "revenue": 3764.611894, "avgShipping": 0.1867816091954023, "avgAOV": 21.635700540229887}, {"YearMonth": "2011-08", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1639, "revenue": 36335.793380999996, "avgShipping": 0.0, "avgAOV": 22.169489555216593}, {"YearMonth": "2011-08", "DeliveryMethod": "Other", "orders": 739, "revenue": 22829.751163, "avgShipping": 3.5, "avgAOV": 33.4155094147232}, {"YearMonth": "2011-09", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1370, "revenue": 27240.291215999998, "avgShipping": 0.0, "avgAOV": 19.883424245255473}, {"YearMonth": "2011-09", "DeliveryMethod": "Other", "orders": 650, "revenue": 18629.340851, "avgShipping": 3.5, "avgAOV": 27.604978703033265}, {"YearMonth": "2011-10", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1647, "revenue": 31318.161845, "avgShipping": 0.0, "avgAOV": 19.015277380085003}, {"YearMonth": "2011-10", "DeliveryMethod": "Other", "orders": 774, "revenue": 22194.908750000002, "avgShipping": 3.6, "avgAOV": 28.82122493262626}, {"YearMonth": "2011-11", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1764, "revenue": 34983.573736, "avgShipping": 0.0, "avgAOV": 19.831957900226758}, {"YearMonth": "2011-11", "DeliveryMethod": "Other", "orders": 801, "revenue": 21571.930583, "avgShipping": 3.5, "avgAOV": 26.623337494502877}, {"YearMonth": "2011-12", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1698, "revenue": 34440.404594, "avgShipping": 0.0, "avgAOV": 20.28292378916372}, {"YearMonth": "2011-12", "DeliveryMethod": "Other", "orders": 499, "revenue": 15209.714769, "avgShipping": 3.6, "avgAOV": 32.69234486914241}, {"YearMonth": "2012-01", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2220, "revenue": 46974.645928, "avgShipping": 0.0, "avgAOV": 21.159750418018017}, {"YearMonth": "2012-01", "DeliveryMethod": "Other", "orders": 910, "revenue": 26762.218601999997, "avgShipping": 3.6, "avgAOV": 32.070722726741465}, {"YearMonth": "2012-02", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1664, "revenue": 33637.32125, "avgShipping": 0.0, "avgAOV": 20.214736328125}, {"YearMonth": "2012-02", "DeliveryMethod": "Other", "orders": 781, "revenue": 21599.955049, "avgShipping": 3.6, "avgAOV": 42.489395556194}, {"YearMonth": "2012-03", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1488, "revenue": 32080.847876, "avgShipping": 0.0, "avgAOV": 21.559709594086023}, {"YearMonth": "2012-03", "DeliveryMethod": "Other", "orders": 769, "revenue": 22743.510881000002, "avgShipping": 3.6, "avgAOV": 34.73994183130198}, {"YearMonth": "2012-04", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1580, "revenue": 34007.033691, "avgShipping": 0.0, "avgAOV": 21.52343904493671}, {"YearMonth": "2012-04", "DeliveryMethod": "Other", "orders": 760, "revenue": 22184.758821, "avgShipping": 4.5, "avgAOV": 25.252889074613773}, {"YearMonth": "2012-05", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1494, "revenue": 33392.954879, "avgShipping": 0.0, "avgAOV": 22.3513754210174}, {"YearMonth": "2012-05", "DeliveryMethod": "Other", "orders": 734, "revenue": 22958.019837, "avgShipping": 3.6, "avgAOV": 29.703515155095637}, {"YearMonth": "2012-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 8, "revenue": 252.998001, "avgShipping": 4.0, "avgAOV": 31.624750125}, {"YearMonth": "2012-06", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1215, "revenue": 28696.160308, "avgShipping": 0.0, "avgAOV": 23.618238936625513}, {"YearMonth": "2012-06", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 102, "revenue": 2278.7892, "avgShipping": 0.0, "avgAOV": 22.341070588235297}, {"YearMonth": "2012-06", "DeliveryMethod": "Other", "orders": 605, "revenue": 19280.625298, "avgShipping": 4.571428571428571, "avgAOV": 33.095181407708665}, {"YearMonth": "2012-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 176, "revenue": 7109.974729, "avgShipping": 4.0, "avgAOV": 40.397583687499996}, {"YearMonth": "2012-07", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1470, "revenue": 32728.309548, "avgShipping": 0.0, "avgAOV": 22.264156155102043}, {"YearMonth": "2012-07", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 21, "revenue": 528.465241, "avgShipping": 0.0, "avgAOV": 25.165011476190475}, {"YearMonth": "2012-07", "DeliveryMethod": "Other", "orders": 283, "revenue": 8006.974241, "avgShipping": 3.5, "avgAOV": 41.569680149545455}, {"YearMonth": "2012-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 181, "revenue": 7439.844135, "avgShipping": 4.0, "avgAOV": 41.104111243093925}, {"YearMonth": "2012-08", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1459, "revenue": 33389.686645, "avgShipping": 0.0, "avgAOV": 22.885323265935572}, {"YearMonth": "2012-08", "DeliveryMethod": "Other", "orders": 286, "revenue": 7846.526436, "avgShipping": 4.666666666666667, "avgAOV": 32.493510753309266}, {"YearMonth": "2012-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 218, "revenue": 8652.675766, "avgShipping": 4.0, "avgAOV": 39.69117323853211}, {"YearMonth": "2012-09", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1735, "revenue": 38407.511521, "avgShipping": 0.0, "avgAOV": 22.136894248414986}, {"YearMonth": "2012-09", "DeliveryMethod": "Other", "orders": 302, "revenue": 8382.327838999998, "avgShipping": 4.666666666666667, "avgAOV": 24.985323051627386}, {"YearMonth": "2012-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 273, "revenue": 11095.025391, "avgShipping": 4.0, "avgAOV": 40.64111864835164}, {"YearMonth": "2012-10", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1754, "revenue": 38330.097367, "avgShipping": 0.0, "avgAOV": 21.85296315108324}, {"YearMonth": "2012-10", "DeliveryMethod": "Other", "orders": 346, "revenue": 9395.573836, "avgShipping": 4.666666666666667, "avgAOV": 30.751404518518523}, {"YearMonth": "2012-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 247, "revenue": 9580.870648, "avgShipping": 4.0, "avgAOV": 38.78894999190283}, {"YearMonth": "2012-11", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1735, "revenue": 39128.384909, "avgShipping": 0.0, "avgAOV": 22.552383232853025}, {"YearMonth": "2012-11", "DeliveryMethod": "Other", "orders": 292, "revenue": 7687.407595999999, "avgShipping": 3.3333333333333335, "avgAOV": 20.24833632756632}, {"YearMonth": "2012-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 178, "revenue": 7227.082998, "avgShipping": 4.0, "avgAOV": 40.601589876404496}, {"YearMonth": "2012-12", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1297, "revenue": 27633.777318, "avgShipping": 0.0, "avgAOV": 21.30591928912876}, {"YearMonth": "2012-12", "DeliveryMethod": "Other", "orders": 231, "revenue": 6344.345240000001, "avgShipping": 4.666666666666667, "avgAOV": 28.928612326055315}, {"YearMonth": "2013-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 360, "revenue": 15414.780510999999, "avgShipping": 4.0, "avgAOV": 42.818834752777775}, {"YearMonth": "2013-01", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 2023, "revenue": 45720.469564, "avgShipping": 0.0, "avgAOV": 22.600330975778547}, {"YearMonth": "2013-01", "DeliveryMethod": "Other", "orders": 349, "revenue": 10030.696239, "avgShipping": 4.666666666666667, "avgAOV": 34.466788836363634}, {"YearMonth": "2013-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 259, "revenue": 9372.536333, "avgShipping": 4.0, "avgAOV": 36.18739896911197}, {"YearMonth": "2013-02", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1498, "revenue": 31739.318372, "avgShipping": 0.0, "avgAOV": 21.18779597596796}, {"YearMonth": "2013-02", "DeliveryMethod": "Other", "orders": 254, "revenue": 6633.933867, "avgShipping": 4.666666666666667, "avgAOV": 34.58283247210884}, {"YearMonth": "2013-03", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 314, "revenue": 12411.311717999999, "avgShipping": 4.0, "avgAOV": 39.526470439490446}, {"YearMonth": "2013-03", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1892, "revenue": 42619.281761, "avgShipping": 0.0, "avgAOV": 22.526047442389004}, {"YearMonth": "2013-03", "DeliveryMethod": "Other", "orders": 330, "revenue": 8890.828021000001, "avgShipping": 4.666666666666667, "avgAOV": 37.039868091097304}, {"YearMonth": "2013-04", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 317, "revenue": 12556.4352, "avgShipping": 4.0, "avgAOV": 39.61020567823344}, {"YearMonth": "2013-04", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1925, "revenue": 42868.013274, "avgShipping": 0.0, "avgAOV": 22.269097804675322}, {"YearMonth": "2013-04", "DeliveryMethod": "Other", "orders": 327, "revenue": 9433.863004, "avgShipping": 4.666666666666667, "avgAOV": 26.848422}, {"YearMonth": "2013-05", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 256, "revenue": 10078.852249, "avgShipping": 4.0, "avgAOV": 39.37051659765625}, {"YearMonth": "2013-05", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1953, "revenue": 39592.490937, "avgShipping": 0.0, "avgAOV": 20.272652809523812}, {"YearMonth": "2013-05", "DeliveryMethod": "Other", "orders": 329, "revenue": 8544.087207000002, "avgShipping": 4.666666666666667, "avgAOV": 26.868829474399167}, {"YearMonth": "2013-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 299, "revenue": 13325.256938999999, "avgShipping": 4.0, "avgAOV": 44.56607671906354}, {"YearMonth": "2013-06", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 2028, "revenue": 42844.605169, "avgShipping": 0.0, "avgAOV": 21.126531148422092}, {"YearMonth": "2013-06", "DeliveryMethod": "Other", "orders": 389, "revenue": 9727.855683, "avgShipping": 4.666666666666667, "avgAOV": 25.153596078993058}, {"YearMonth": "2013-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 215, "revenue": 8477.090612, "avgShipping": 4.0, "avgAOV": 39.428328427906976}, {"YearMonth": "2013-07", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1767, "revenue": 37490.062772, "avgShipping": 0.0, "avgAOV": 21.216787080928125}, {"YearMonth": "2013-07", "DeliveryMethod": "Other", "orders": 339, "revenue": 9208.924404000001, "avgShipping": 4.666666666666667, "avgAOV": 27.191476165731547}, {"YearMonth": "2013-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 234, "revenue": 9380.67501, "avgShipping": 4.0, "avgAOV": 40.08835474358975}, {"YearMonth": "2013-08", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1679, "revenue": 34957.348294, "avgShipping": 0.0, "avgAOV": 20.820338471709352}, {"YearMonth": "2013-08", "DeliveryMethod": "Other", "orders": 325, "revenue": 8847.147575, "avgShipping": 4.666666666666667, "avgAOV": 32.95184630909091}, {"YearMonth": "2013-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 367, "revenue": 15600.279199999999, "avgShipping": 4.0, "avgAOV": 42.50757275204359}, {"YearMonth": "2013-09", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1955, "revenue": 43475.656302, "avgShipping": 0.0, "avgAOV": 22.23818736675192}, {"YearMonth": "2013-09", "DeliveryMethod": "Other", "orders": 336, "revenue": 8442.610968, "avgShipping": 4.666666666666667, "avgAOV": 29.158938061416922}, {"YearMonth": "2013-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 281, "revenue": 11177.917204, "avgShipping": 4.0, "avgAOV": 39.77906478291815}, {"YearMonth": "2013-10", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 1709, "revenue": 35843.931061, "avgShipping": 0.0, "avgAOV": 20.973628473376245}, {"YearMonth": "2013-10", "DeliveryMethod": "Other", "orders": 278, "revenue": 7109.058543, "avgShipping": 5.0, "avgAOV": 25.462050664835164}, {"YearMonth": "2013-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 325, "revenue": 14833.33492, "avgShipping": 4.0, "avgAOV": 45.64103052307692}, {"YearMonth": "2013-11", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 2164, "revenue": 47037.977528, "avgShipping": 0.0, "avgAOV": 21.736588506469502}, {"YearMonth": "2013-11", "DeliveryMethod": "Other", "orders": 348, "revenue": 9517.805156999999, "avgShipping": 4.666666666666667, "avgAOV": 31.45829022715319}, {"YearMonth": "2013-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 275, "revenue": 11395.093448, "avgShipping": 4.0, "avgAOV": 41.43670344727273}, {"YearMonth": "2013-12", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1, "revenue": 19.45, "avgShipping": 2.5, "avgAOV": 19.45}, {"YearMonth": "2013-12", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days) ", "orders": 927, "revenue": 19355.383559, "avgShipping": 0.0, "avgAOV": 20.87959391477886}, {"YearMonth": "2013-12", "DeliveryMethod": "Other", "orders": 913, "revenue": 20603.009098000002, "avgShipping": 3.5, "avgAOV": 31.52030411507389}, {"YearMonth": "2014-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 448, "revenue": 18802.677208, "avgShipping": 4.0, "avgAOV": 41.970261625}, {"YearMonth": "2014-01", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 385, "revenue": 10636.624923, "avgShipping": 2.5, "avgAOV": 27.6275972025974}, {"YearMonth": "2014-01", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2804, "revenue": 60984.186233, "avgShipping": 0.0, "avgAOV": 21.748996516761768}, {"YearMonth": "2014-01", "DeliveryMethod": "Other", "orders": 96, "revenue": 2412.0632969999997, "avgShipping": 3.8333333333333335, "avgAOV": 31.331632060699587}, {"YearMonth": "2014-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 360, "revenue": 13266.748173, "avgShipping": 4.0, "avgAOV": 36.852078258333336}, {"YearMonth": "2014-02", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 329, "revenue": 8138.902524, "avgShipping": 2.5, "avgAOV": 24.738305544072947}, {"YearMonth": "2014-02", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1966, "revenue": 40220.612087, "avgShipping": 0.0, "avgAOV": 20.458093635300102}, {"YearMonth": "2014-02", "DeliveryMethod": "Other", "orders": 12, "revenue": 546.553801, "avgShipping": 7.5, "avgAOV": 45.54615008333334}, {"YearMonth": "2014-03", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 386, "revenue": 16224.028344, "avgShipping": 4.0, "avgAOV": 42.03116151295337}, {"YearMonth": "2014-03", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 363, "revenue": 9084.977886, "avgShipping": 2.5, "avgAOV": 25.0274872892562}, {"YearMonth": "2014-03", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2359, "revenue": 47674.900243, "avgShipping": 0.0, "avgAOV": 20.209792387876217}, {"YearMonth": "2014-03", "DeliveryMethod": "Other", "orders": 15, "revenue": 478.68399900000003, "avgShipping": 5.75, "avgAOV": 42.27965359615384}, {"YearMonth": "2014-04", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 317, "revenue": 12861.282031, "avgShipping": 4.0, "avgAOV": 40.571867605678236}, {"YearMonth": "2014-04", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 340, "revenue": 8540.914996, "avgShipping": 2.5, "avgAOV": 25.12033822352941}, {"YearMonth": "2014-04", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2171, "revenue": 46541.064086, "avgShipping": 0.0, "avgAOV": 21.43761588484569}, {"YearMonth": "2014-04", "DeliveryMethod": "Other", "orders": 18, "revenue": 523.49204, "avgShipping": 5.75, "avgAOV": 24.699601333333334}, {"YearMonth": "2014-05", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 307, "revenue": 13228.995346, "avgShipping": 4.0, "avgAOV": 43.09119005211726}, {"YearMonth": "2014-05", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 364, "revenue": 9691.112074, "avgShipping": 2.5, "avgAOV": 26.62393426923077}, {"YearMonth": "2014-05", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2048, "revenue": 43748.734, "avgShipping": 0.0, "avgAOV": 21.3616865234375}, {"YearMonth": "2014-05", "DeliveryMethod": "Other", "orders": 24, "revenue": 840.472817, "avgShipping": 5.75, "avgAOV": 39.403461426315786}, {"YearMonth": "2014-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 336, "revenue": 13176.301576, "avgShipping": 4.0, "avgAOV": 39.21518326190476}, {"YearMonth": "2014-06", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 306, "revenue": 7475.379605, "avgShipping": 2.5, "avgAOV": 24.429345114379085}, {"YearMonth": "2014-06", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2040, "revenue": 44091.464656, "avgShipping": 0.0, "avgAOV": 21.613463066666665}, {"YearMonth": "2014-06", "DeliveryMethod": "Other", "orders": 12, "revenue": 400.564101, "avgShipping": 5.75, "avgAOV": 30.1867375625}, {"YearMonth": "2014-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 331, "revenue": 14633.716412, "avgShipping": 4.0, "avgAOV": 44.21062360120846}, {"YearMonth": "2014-07", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 314, "revenue": 9004.02581, "avgShipping": 2.5, "avgAOV": 28.675241433121016}, {"YearMonth": "2014-07", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2235, "revenue": 49821.272854, "avgShipping": 0.0, "avgAOV": 22.291397250111856}, {"YearMonth": "2014-07", "DeliveryMethod": "Other", "orders": 20, "revenue": 636.991999, "avgShipping": 5.75, "avgAOV": 29.50380389215686}, {"YearMonth": "2014-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 348, "revenue": 14407.68063, "avgShipping": 4.0, "avgAOV": 41.401381120689656}, {"YearMonth": "2014-08", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 293, "revenue": 7745.276941, "avgShipping": 2.5, "avgAOV": 26.43439229010239}, {"YearMonth": "2014-08", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2111, "revenue": 45693.890752, "avgShipping": 0.0, "avgAOV": 21.645613809568925}, {"YearMonth": "2014-08", "DeliveryMethod": "Other", "orders": 25, "revenue": 895.432118, "avgShipping": 5.75, "avgAOV": 31.74137795}, {"YearMonth": "2014-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 341, "revenue": 13765.238469, "avgShipping": 4.0, "avgAOV": 40.367268237536656}, {"YearMonth": "2014-09", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 331, "revenue": 8530.078046999999, "avgShipping": 2.5, "avgAOV": 25.770628540785495}, {"YearMonth": "2014-09", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2326, "revenue": 50714.138912, "avgShipping": 0.0, "avgAOV": 21.80315516423044}, {"YearMonth": "2014-09", "DeliveryMethod": "Other", "orders": 13, "revenue": 295.9728, "avgShipping": 5.75, "avgAOV": 19.502536363636363}, {"YearMonth": "2014-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 343, "revenue": 14718.28067, "avgShipping": 4.0, "avgAOV": 42.91043927113703}, {"YearMonth": "2014-10", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 355, "revenue": 9570.917286, "avgShipping": 2.5, "avgAOV": 26.96033038309859}, {"YearMonth": "2014-10", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2163, "revenue": 50053.078817, "avgShipping": 0.0, "avgAOV": 23.14058197734628}, {"YearMonth": "2014-10", "DeliveryMethod": "Other", "orders": 11, "revenue": 406.3625, "avgShipping": 5.75, "avgAOV": 34.1178}, {"YearMonth": "2014-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 354, "revenue": 16037.661686, "avgShipping": 4.0, "avgAOV": 45.304129056497175}, {"YearMonth": "2014-11", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 384, "revenue": 10212.549674, "avgShipping": 2.5, "avgAOV": 26.595181442708334}, {"YearMonth": "2014-11", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2197, "revenue": 48916.055575, "avgShipping": 0.0, "avgAOV": 22.264931986800182}, {"YearMonth": "2014-11", "DeliveryMethod": "Other", "orders": 10, "revenue": 471.081876, "avgShipping": 5.75, "avgAOV": 41.37965780952381}, {"YearMonth": "2014-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 246, "revenue": 10329.792103, "avgShipping": 4.0, "avgAOV": 41.99102480894309}, {"YearMonth": "2014-12", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 246, "revenue": 6627.530201, "avgShipping": 2.5, "avgAOV": 26.941179678861786}, {"YearMonth": "2014-12", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1749, "revenue": 39991.459533, "avgShipping": 0.0, "avgAOV": 22.865328492281304}, {"YearMonth": "2014-12", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 4, "revenue": 114.598056, "avgShipping": 0.0, "avgAOV": 28.649514}, {"YearMonth": "2014-12", "DeliveryMethod": "Other", "orders": 13, "revenue": 382.85450699999996, "avgShipping": 5.75, "avgAOV": 27.93633511363636}, {"YearMonth": "2015-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 569, "revenue": 27541.054418, "avgShipping": 4.0, "avgAOV": 48.40255609490334}, {"YearMonth": "2015-01", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 495, "revenue": 13892.419187, "avgShipping": 2.5, "avgAOV": 28.065493307070707}, {"YearMonth": "2015-01", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 3552, "revenue": 83645.482046, "avgShipping": 0.0, "avgAOV": 23.548840666103604}, {"YearMonth": "2015-01", "DeliveryMethod": "Other", "orders": 16, "revenue": 763.664968, "avgShipping": 21.3, "avgAOV": 62.0077643}, {"YearMonth": "2015-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 283, "revenue": 12202.917986, "avgShipping": 4.0, "avgAOV": 43.11985154063604}, {"YearMonth": "2015-02", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 320, "revenue": 8661.499568, "avgShipping": 2.5, "avgAOV": 27.067186149999998}, {"YearMonth": "2015-02", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1792, "revenue": 40970.90276, "avgShipping": 0.0, "avgAOV": 22.863226986607142}, {"YearMonth": "2015-02", "DeliveryMethod": "Other", "orders": 9, "revenue": 240.407002, "avgShipping": 5.75, "avgAOV": 27.31787525}, {"YearMonth": "2015-03", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 410, "revenue": 17265.898444, "avgShipping": 4.0, "avgAOV": 42.11194742439024}, {"YearMonth": "2015-03", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 404, "revenue": 10919.534717, "avgShipping": 2.5, "avgAOV": 27.02855127970297}, {"YearMonth": "2015-03", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2706, "revenue": 60886.60065, "avgShipping": 0.0, "avgAOV": 22.500591518847006}, {"YearMonth": "2015-03", "DeliveryMethod": "Other", "orders": 17, "revenue": 571.81794, "avgShipping": 5.75, "avgAOV": 34.0218893125}, {"YearMonth": "2015-04", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 324, "revenue": 13372.227342, "avgShipping": 4.0, "avgAOV": 41.27230661111111}, {"YearMonth": "2015-04", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 391, "revenue": 9855.091572, "avgShipping": 2.493606138107417, "avgAOV": 25.20483778005115}, {"YearMonth": "2015-04", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2100, "revenue": 45362.771489, "avgShipping": 0.0, "avgAOV": 21.601319756666665}, {"YearMonth": "2015-04", "DeliveryMethod": "Other", "orders": 17, "revenue": 638.492398, "avgShipping": 5.75, "avgAOV": 55.616729283333335}, {"YearMonth": "2015-05", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 292, "revenue": 12928.793165, "avgShipping": 4.0, "avgAOV": 44.276688921232875}, {"YearMonth": "2015-05", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 323, "revenue": 9178.133418, "avgShipping": 2.5, "avgAOV": 28.41527373993808}, {"YearMonth": "2015-05", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1986, "revenue": 46830.027608, "avgShipping": 0.0, "avgAOV": 23.580074324269887}, {"YearMonth": "2015-05", "DeliveryMethod": "Other", "orders": 13, "revenue": 452.88629999999995, "avgShipping": 5.75, "avgAOV": 36.58812974999999}, {"YearMonth": "2015-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 328, "revenue": 15074.862143, "avgShipping": 4.0, "avgAOV": 45.95994555792683}, {"YearMonth": "2015-06", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 341, "revenue": 9685.429053, "avgShipping": 2.5, "avgAOV": 28.403017750733138}, {"YearMonth": "2015-06", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 2172, "revenue": 50686.302743, "avgShipping": 0.0, "avgAOV": 23.336235148710866}, {"YearMonth": "2015-06", "DeliveryMethod": "Other", "orders": 19, "revenue": 552.88514, "avgShipping": 5.75, "avgAOV": 28.411985}, {"YearMonth": "2015-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 222, "revenue": 9070.300556, "avgShipping": 4.0, "avgAOV": 40.85720971171171}, {"YearMonth": "2015-07", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 550, "revenue": 14932.192262, "avgShipping": 2.5, "avgAOV": 27.149440476363637}, {"YearMonth": "2015-07", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1830, "revenue": 40075.282435, "avgShipping": 0.0, "avgAOV": 21.899061439890712}, {"YearMonth": "2015-07", "DeliveryMethod": "Other", "orders": 20, "revenue": 827.28642, "avgShipping": 5.75, "avgAOV": 36.685388686274514}, {"YearMonth": "2015-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 291, "revenue": 13530.276298, "avgShipping": 4.0, "avgAOV": 46.495794838487974}, {"YearMonth": "2015-08", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 735, "revenue": 19167.963494, "avgShipping": 2.5, "avgAOV": 26.07886189659864}, {"YearMonth": "2015-08", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 1783, "revenue": 40842.586736, "avgShipping": 0.0, "avgAOV": 22.90666670555244}, {"YearMonth": "2015-08", "DeliveryMethod": "Other", "orders": 13, "revenue": 823.243211, "avgShipping": 5.75, "avgAOV": 70.5981934625}, {"YearMonth": "2015-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 360, "revenue": 16215.139859, "avgShipping": 4.0, "avgAOV": 45.04205516388889}, {"YearMonth": "2015-09", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 670, "revenue": 19881.318929, "avgShipping": 2.5, "avgAOV": 29.673610341791047}, {"YearMonth": "2015-09", "DeliveryMethod": "FREE Standard Delivery (approx 3-5 days)", "orders": 316, "revenue": 7293.8173, "avgShipping": 0.0, "avgAOV": 23.081700316455695}, {"YearMonth": "2015-09", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1781, "revenue": 40594.551509, "avgShipping": 0.0, "avgAOV": 22.793122688938798}, {"YearMonth": "2015-09", "DeliveryMethod": "Other", "orders": 28, "revenue": 666.004596, "avgShipping": 3.8333333333333335, "avgAOV": 25.281220993386242}, {"YearMonth": "2015-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 265, "revenue": 12246.749286, "avgShipping": 4.0, "avgAOV": 46.214148249056606}, {"YearMonth": "2015-10", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 484, "revenue": 13289.751097, "avgShipping": 2.5, "avgAOV": 27.45816342355372}, {"YearMonth": "2015-10", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1753, "revenue": 39614.175774, "avgShipping": 0.0, "avgAOV": 22.597932557900744}, {"YearMonth": "2015-10", "DeliveryMethod": "Other", "orders": 6, "revenue": 139.4287, "avgShipping": 5.75, "avgAOV": 21.227990000000002}, {"YearMonth": "2015-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 303, "revenue": 13533.087221, "avgShipping": 4.0, "avgAOV": 44.66365419471947}, {"YearMonth": "2015-11", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 478, "revenue": 13084.039764, "avgShipping": 2.5, "avgAOV": 27.37246812552301}, {"YearMonth": "2015-11", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1955, "revenue": 46796.97856, "avgShipping": 0.0, "avgAOV": 23.937073432225066}, {"YearMonth": "2015-11", "DeliveryMethod": "Other", "orders": 10, "revenue": 312.861861, "avgShipping": 5.75, "avgAOV": 28.109360437499998}, {"YearMonth": "2015-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 247, "revenue": 12043.177709, "avgShipping": 4.0, "avgAOV": 48.75780448987854}, {"YearMonth": "2015-12", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 349, "revenue": 9408.916415, "avgShipping": 2.5, "avgAOV": 26.959645888252147}, {"YearMonth": "2015-12", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 5, "revenue": 96.643402, "avgShipping": 0.0, "avgAOV": 19.3286804}, {"YearMonth": "2015-12", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2010, "revenue": 46913.388575, "avgShipping": 0.0, "avgAOV": 23.339994315920396}, {"YearMonth": "2015-12", "DeliveryMethod": "Other", "orders": 13, "revenue": 512.826397, "avgShipping": 5.75, "avgAOV": 47.87925101388889}, {"YearMonth": "2016-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 493, "revenue": 22496.547021, "avgShipping": 4.0, "avgAOV": 45.63194121906693}, {"YearMonth": "2016-01", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 757, "revenue": 19539.878014, "avgShipping": 2.5, "avgAOV": 25.81225629326288}, {"YearMonth": "2016-01", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3261, "revenue": 75476.032155, "avgShipping": 0.0, "avgAOV": 23.14505739190432}, {"YearMonth": "2016-01", "DeliveryMethod": "Other", "orders": 20, "revenue": 726.0813860000001, "avgShipping": 5.75, "avgAOV": 39.561370329670325}, {"YearMonth": "2016-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 205, "revenue": 8698.313958, "avgShipping": 4.0, "avgAOV": 42.430799795121956}, {"YearMonth": "2016-02", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 427, "revenue": 12398.462068, "avgShipping": 2.5, "avgAOV": 29.036210932084312}, {"YearMonth": "2016-02", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1535, "revenue": 34310.664987, "avgShipping": 0.0, "avgAOV": 22.35222474723127}, {"YearMonth": "2016-02", "DeliveryMethod": "Other", "orders": 12, "revenue": 941.140018, "avgShipping": 5.75, "avgAOV": 68.15636536363637}, {"YearMonth": "2016-03", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 369, "revenue": 17042.939969, "avgShipping": 4.0, "avgAOV": 46.18682918428184}, {"YearMonth": "2016-03", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 574, "revenue": 15721.840872, "avgShipping": 2.5, "avgAOV": 27.38996667595819}, {"YearMonth": "2016-03", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2200, "revenue": 53092.090266, "avgShipping": 0.0, "avgAOV": 24.13276830272727}, {"YearMonth": "2016-03", "DeliveryMethod": "Other", "orders": 18, "revenue": 932.575558, "avgShipping": 5.75, "avgAOV": 52.935514958333336}, {"YearMonth": "2016-04", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 270, "revenue": 12475.194912, "avgShipping": 4.0, "avgAOV": 46.2044256}, {"YearMonth": "2016-04", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 595, "revenue": 16636.55556, "avgShipping": 2.5, "avgAOV": 27.960597579831934}, {"YearMonth": "2016-04", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2035, "revenue": 45969.003274, "avgShipping": 0.0, "avgAOV": 22.589190798034398}, {"YearMonth": "2016-04", "DeliveryMethod": "Other", "orders": 29, "revenue": 1072.118903, "avgShipping": 5.75, "avgAOV": 36.44962418055556}, {"YearMonth": "2016-05", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 268, "revenue": 11681.443506, "avgShipping": 4.0, "avgAOV": 43.58747576865672}, {"YearMonth": "2016-05", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 482, "revenue": 13007.125562, "avgShipping": 2.5, "avgAOV": 26.985737680497923}, {"YearMonth": "2016-05", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1824, "revenue": 41958.377613, "avgShipping": 0.0, "avgAOV": 23.00349649835526}, {"YearMonth": "2016-05", "DeliveryMethod": "Other", "orders": 16, "revenue": 596.281752, "avgShipping": 5.75, "avgAOV": 41.99568158333334}, {"YearMonth": "2016-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 282, "revenue": 12961.890844, "avgShipping": 4.0, "avgAOV": 45.964151929078014}, {"YearMonth": "2016-06", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 551, "revenue": 14770.065698, "avgShipping": 2.5, "avgAOV": 26.80592685662432}, {"YearMonth": "2016-06", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1910, "revenue": 44582.130301, "avgShipping": 0.0, "avgAOV": 23.34142947696335}, {"YearMonth": "2016-06", "DeliveryMethod": "Other", "orders": 6, "revenue": 172.40152, "avgShipping": 5.75, "avgAOV": 26.73844}, {"YearMonth": "2016-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 217, "revenue": 9494.045419, "avgShipping": 4.0, "avgAOV": 43.75136137788019}, {"YearMonth": "2016-07", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 512, "revenue": 13524.778589, "avgShipping": 2.5, "avgAOV": 26.415583181640624}, {"YearMonth": "2016-07", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1753, "revenue": 39668.559533, "avgShipping": 0.0, "avgAOV": 22.62895580889903}, {"YearMonth": "2016-07", "DeliveryMethod": "Other", "orders": 11, "revenue": 533.029674, "avgShipping": 27.066666666666666, "avgAOV": 58.416791777777775}, {"YearMonth": "2016-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 357, "revenue": 17651.151699000002, "avgShipping": 4.0, "avgAOV": 49.4430019579832}, {"YearMonth": "2016-08", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 649, "revenue": 18217.641281, "avgShipping": 2.5, "avgAOV": 28.07032554853621}, {"YearMonth": "2016-08", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2254, "revenue": 54927.282233, "avgShipping": 0.0, "avgAOV": 24.3688031202307}, {"YearMonth": "2016-08", "DeliveryMethod": "Other", "orders": 16, "revenue": 886.75451, "avgShipping": 5.75, "avgAOV": 49.289579333333336}, {"YearMonth": "2016-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 256, "revenue": 11088.285352, "avgShipping": 4.0, "avgAOV": 43.31361465625}, {"YearMonth": "2016-09", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 594, "revenue": 15300.621051, "avgShipping": 2.5, "avgAOV": 25.758621297979797}, {"YearMonth": "2016-09", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1987, "revenue": 44084.003006, "avgShipping": 0.0, "avgAOV": 22.18621188022144}, {"YearMonth": "2016-09", "DeliveryMethod": "Other", "orders": 20, "revenue": 756.068002, "avgShipping": 5.75, "avgAOV": 38.79187159523809}, {"YearMonth": "2016-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 316, "revenue": 13360.064952, "avgShipping": 4.0, "avgAOV": 42.27868655696203}, {"YearMonth": "2016-10", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 579, "revenue": 15833.95316, "avgShipping": 2.5, "avgAOV": 27.347069360967183}, {"YearMonth": "2016-10", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2081, "revenue": 46369.018794999996, "avgShipping": 0.0, "avgAOV": 22.28208495675156}, {"YearMonth": "2016-10", "DeliveryMethod": "Other", "orders": 19, "revenue": 808.193991, "avgShipping": 5.75, "avgAOV": 43.226760920454545}, {"YearMonth": "2016-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 343, "revenue": 15843.636543999999, "avgShipping": 4.0, "avgAOV": 46.191360186588916}, {"YearMonth": "2016-11", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 604, "revenue": 16595.378878, "avgShipping": 2.5, "avgAOV": 27.47579284437086}, {"YearMonth": "2016-11", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 23.8992, "avgShipping": 0.0, "avgAOV": 23.8992}, {"YearMonth": "2016-11", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2431, "revenue": 58520.527012, "avgShipping": 0.0, "avgAOV": 24.07261497819827}, {"YearMonth": "2016-11", "DeliveryMethod": "Other", "orders": 13, "revenue": 749.325195, "avgShipping": 7.5, "avgAOV": 57.64039961538462}, {"YearMonth": "2016-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 225, "revenue": 10386.033484, "avgShipping": 4.0, "avgAOV": 46.160148817777774}, {"YearMonth": "2016-12", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 386, "revenue": 10116.55799, "avgShipping": 2.5, "avgAOV": 26.20869945595855}, {"YearMonth": "2016-12", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2, "revenue": 16.01, "avgShipping": 0.0, "avgAOV": 8.005}, {"YearMonth": "2016-12", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1942, "revenue": 47186.469904, "avgShipping": 0.0, "avgAOV": 24.297873277033986}, {"YearMonth": "2016-12", "DeliveryMethod": "Other", "orders": 15, "revenue": 1041.142895, "avgShipping": 20.3, "avgAOV": 66.40404856944444}, {"YearMonth": "2017-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 433, "revenue": 19959.689933, "avgShipping": 3.5658198614318706, "avgAOV": 46.0962816004619}, {"YearMonth": "2017-01", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1029, "revenue": 25314.659911, "avgShipping": 2.5, "avgAOV": 24.601224403304176}, {"YearMonth": "2017-01", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 86.439999, "avgShipping": 0.0, "avgAOV": 86.439999}, {"YearMonth": "2017-01", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3630, "revenue": 80365.999555, "avgShipping": 0.0, "avgAOV": 22.139393816804407}, {"YearMonth": "2017-01", "DeliveryMethod": "Other", "orders": 27, "revenue": 933.98999, "avgShipping": 5.75, "avgAOV": 34.82153808241758}, {"YearMonth": "2017-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 162, "revenue": 6189.729956, "avgShipping": 2.0, "avgAOV": 38.208209604938276}, {"YearMonth": "2017-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a34) ", "orders": 114, "revenue": 4570.889978, "avgShipping": 2.0, "avgAOV": 40.095526122807016}, {"YearMonth": "2017-02", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 777, "revenue": 19694.619975, "avgShipping": 2.5, "avgAOV": 25.347001254826257}, {"YearMonth": "2017-02", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2378, "revenue": 48727.359812, "avgShipping": 0.0, "avgAOV": 20.49089983683768}, {"YearMonth": "2017-02", "DeliveryMethod": "Other", "orders": 22, "revenue": 808.069998, "avgShipping": 3.8333333333333335, "avgAOV": 29.914124958333332}, {"YearMonth": "2017-03", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 366, "revenue": 16347.539961, "avgShipping": 2.0, "avgAOV": 44.6654097295082}, {"YearMonth": "2017-03", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 973, "revenue": 23429.829883, "avgShipping": 2.5, "avgAOV": 24.079989602261048}, {"YearMonth": "2017-03", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2664, "revenue": 58325.969774, "avgShipping": 0.0, "avgAOV": 21.894132798048048}, {"YearMonth": "2017-03", "DeliveryMethod": "Other", "orders": 23, "revenue": 624.240004, "avgShipping": 5.75, "avgAOV": 28.40303604017857}, {"YearMonth": "2017-04", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 292, "revenue": 11747.529954, "avgShipping": 2.0, "avgAOV": 40.23126696575342}, {"YearMonth": "2017-04", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 764, "revenue": 19538.58995, "avgShipping": 2.5, "avgAOV": 25.57407061518325}, {"YearMonth": "2017-04", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2252, "revenue": 50771.689823, "avgShipping": 0.0, "avgAOV": 22.54515533880995}, {"YearMonth": "2017-04", "DeliveryMethod": "Other", "orders": 20, "revenue": 643.360004, "avgShipping": 5.75, "avgAOV": 31.977912406593408}, {"YearMonth": "2017-05", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 359, "revenue": 14754.179891, "avgShipping": 2.0, "avgAOV": 41.09799412534819}, {"YearMonth": "2017-05", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 963, "revenue": 25508.359752, "avgShipping": 2.5, "avgAOV": 26.4884317258567}, {"YearMonth": "2017-05", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 12, "revenue": 152.17000199999998, "avgShipping": 0.0, "avgAOV": 12.680833499999999}, {"YearMonth": "2017-05", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2661, "revenue": 59442.309459, "avgShipping": 0.0, "avgAOV": 22.338335009019165}, {"YearMonth": "2017-05", "DeliveryMethod": "Other", "orders": 31, "revenue": 1533.879992, "avgShipping": 17.166666666666668, "avgAOV": 56.66534036363637}, {"YearMonth": "2017-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 269, "revenue": 10860.049941, "avgShipping": 2.0, "avgAOV": 40.371932866171}, {"YearMonth": "2017-06", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 816, "revenue": 21047.059807999998, "avgShipping": 2.5, "avgAOV": 25.79296545098039}, {"YearMonth": "2017-06", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 10, "revenue": 272.769996, "avgShipping": 0.0, "avgAOV": 27.2769996}, {"YearMonth": "2017-06", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2187, "revenue": 48333.339502999996, "avgShipping": 0.0, "avgAOV": 22.100292411065386}, {"YearMonth": "2017-06", "DeliveryMethod": "Other", "orders": 18, "revenue": 561.769989, "avgShipping": 3.8333333333333335, "avgAOV": 29.389999083333333}, {"YearMonth": "2017-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 426, "revenue": 19124.819884, "avgShipping": 2.0, "avgAOV": 44.893943389671364}, {"YearMonth": "2017-07", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1100, "revenue": 30243.729715, "avgShipping": 2.5, "avgAOV": 27.494299740909092}, {"YearMonth": "2017-07", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 17, "revenue": 588.929997, "avgShipping": 0.0, "avgAOV": 34.642941}, {"YearMonth": "2017-07", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3550, "revenue": 92186.418972, "avgShipping": 0.0, "avgAOV": 25.96800534422535}, {"YearMonth": "2017-07", "DeliveryMethod": "Other", "orders": 40, "revenue": 1205.819992, "avgShipping": 3.8333333333333335, "avgAOV": 33.43229002826511}, {"YearMonth": "2017-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 315, "revenue": 12113.659932, "avgShipping": 2.0, "avgAOV": 38.45606327619048}, {"YearMonth": "2017-08", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 958, "revenue": 24775.539737, "avgShipping": 2.5, "avgAOV": 25.861732502087683}, {"YearMonth": "2017-08", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 8, "revenue": 172.95, "avgShipping": 0.0, "avgAOV": 21.61875}, {"YearMonth": "2017-08", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2618, "revenue": 59218.819362, "avgShipping": 0.0, "avgAOV": 22.61986988617265}, {"YearMonth": "2017-08", "DeliveryMethod": "Other", "orders": 40, "revenue": 1475.32, "avgShipping": 3.8333333333333335, "avgAOV": 44.7741386025641}, {"YearMonth": "2017-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 331, "revenue": 13169.25993, "avgShipping": 2.0, "avgAOV": 39.78628377643505}, {"YearMonth": "2017-09", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 967, "revenue": 24729.699744999998, "avgShipping": 2.5, "avgAOV": 25.57362951913133}, {"YearMonth": "2017-09", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 6, "revenue": 174.849999, "avgShipping": 0.0, "avgAOV": 29.1416665}, {"YearMonth": "2017-09", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2587, "revenue": 60642.269318, "avgShipping": 0.0, "avgAOV": 23.44115551526865}, {"YearMonth": "2017-09", "DeliveryMethod": "Other", "orders": 37, "revenue": 1224.759992, "avgShipping": 5.75, "avgAOV": 33.10043838304094}, {"YearMonth": "2017-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 359, "revenue": 13905.429867, "avgShipping": 2.0, "avgAOV": 38.73378793036212}, {"YearMonth": "2017-10", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1126, "revenue": 30456.829665, "avgShipping": 2.5, "avgAOV": 27.048694196269985}, {"YearMonth": "2017-10", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 8, "revenue": 126.129999, "avgShipping": 0.0, "avgAOV": 15.766249875}, {"YearMonth": "2017-10", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3517, "revenue": 81495.469161, "avgShipping": 0.0, "avgAOV": 23.17187067415411}, {"YearMonth": "2017-10", "DeliveryMethod": "Other", "orders": 62, "revenue": 2191.049982, "avgShipping": 3.8333333333333335, "avgAOV": 49.80951255821372}, {"YearMonth": "2017-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 461, "revenue": 18826.90983, "avgShipping": 2.0, "avgAOV": 40.839283796095444}, {"YearMonth": "2017-11", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1144, "revenue": 31176.669649, "avgShipping": 2.5, "avgAOV": 27.252333609265733}, {"YearMonth": "2017-11", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 13, "revenue": 215.36999600000001, "avgShipping": 0.0, "avgAOV": 16.56692276923077}, {"YearMonth": "2017-11", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3512, "revenue": 86849.749092, "avgShipping": 0.0, "avgAOV": 24.729427417995442}, {"YearMonth": "2017-11", "DeliveryMethod": "Other", "orders": 37, "revenue": 1322.789994, "avgShipping": 3.8333333333333335, "avgAOV": 36.59683650181818}, {"YearMonth": "2017-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 318, "revenue": 12511.539925, "avgShipping": 2.0, "avgAOV": 39.34446517295597}, {"YearMonth": "2017-12", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 583, "revenue": 15817.019835, "avgShipping": 2.5, "avgAOV": 27.13039422813036}, {"YearMonth": "2017-12", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 14, "revenue": 274.449995, "avgShipping": 0.0, "avgAOV": 19.603571071428572}, {"YearMonth": "2017-12", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2807, "revenue": 65736.059334, "avgShipping": 0.0, "avgAOV": 23.418617504096904}, {"YearMonth": "2017-12", "DeliveryMethod": "Other", "orders": 26, "revenue": 651.769995, "avgShipping": 5.75, "avgAOV": 24.997083148809523}, {"YearMonth": "2018-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 675, "revenue": 25774.399943, "avgShipping": 2.0, "avgAOV": 38.18429621185185}, {"YearMonth": "2018-01", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1522, "revenue": 40385.909683, "avgShipping": 2.5, "avgAOV": 26.534763260840997}, {"YearMonth": "2018-01", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 19, "revenue": 458.52000200000003, "avgShipping": 0.0, "avgAOV": 24.132631684210526}, {"YearMonth": "2018-01", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 5939, "revenue": 146596.288967, "avgShipping": 0.0, "avgAOV": 24.6836654263344}, {"YearMonth": "2018-01", "DeliveryMethod": "Other", "orders": 57, "revenue": 1687.8899900000001, "avgShipping": 3.8333333333333335, "avgAOV": 34.32661512201964}, {"YearMonth": "2018-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 429, "revenue": 16683.94996, "avgShipping": 2.0, "avgAOV": 38.89032624708625}, {"YearMonth": "2018-02", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1128, "revenue": 28940.159764, "avgShipping": 2.5, "avgAOV": 25.656170003546098}, {"YearMonth": "2018-02", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 4, "revenue": 72.53, "avgShipping": 0.0, "avgAOV": 18.1325}, {"YearMonth": "2018-02", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3099, "revenue": 70269.899494, "avgShipping": 0.0, "avgAOV": 22.6750240380768}, {"YearMonth": "2018-02", "DeliveryMethod": "Other", "orders": 38, "revenue": 1426.4999970000001, "avgShipping": 3.8333333333333335, "avgAOV": 30.079927436853}, {"YearMonth": "2018-03", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 442, "revenue": 16520.419934, "avgShipping": 2.0, "avgAOV": 37.376515687782806}, {"YearMonth": "2018-03", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1375, "revenue": 35193.129739, "avgShipping": 2.5, "avgAOV": 25.59500344654546}, {"YearMonth": "2018-03", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3, "revenue": 68.829999, "avgShipping": 0.0, "avgAOV": 22.943333}, {"YearMonth": "2018-03", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3813, "revenue": 87006.05935, "avgShipping": 0.0, "avgAOV": 22.81826890899554}, {"YearMonth": "2018-03", "DeliveryMethod": "Other", "orders": 37, "revenue": 1008.979994, "avgShipping": 3.8333333333333335, "avgAOV": 25.6196662375}, {"YearMonth": "2018-04", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 449, "revenue": 17711.179914, "avgShipping": 2.0, "avgAOV": 39.44583499777283}, {"YearMonth": "2018-04", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1195, "revenue": 31006.529691, "avgShipping": 2.5, "avgAOV": 25.9468867707113}, {"YearMonth": "2018-04", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 8, "revenue": 217.23999999999998, "avgShipping": 0.0, "avgAOV": 27.154999999999998}, {"YearMonth": "2018-04", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3479, "revenue": 82816.899162, "avgShipping": 0.0, "avgAOV": 23.80479998907732}, {"YearMonth": "2018-04", "DeliveryMethod": "Other", "orders": 42, "revenue": 1595.949993, "avgShipping": 5.75, "avgAOV": 36.501399794117646}, {"YearMonth": "2018-05", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 366, "revenue": 14492.549898, "avgShipping": 2.0, "avgAOV": 39.59713086885246}, {"YearMonth": "2018-05", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1169, "revenue": 30309.549647, "avgShipping": 2.5, "avgAOV": 25.927758466210435}, {"YearMonth": "2018-05", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2, "revenue": 23.17, "avgShipping": 0.0, "avgAOV": 11.585}, {"YearMonth": "2018-05", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3351, "revenue": 82567.079089, "avgShipping": 0.0, "avgAOV": 24.63953419546404}, {"YearMonth": "2018-05", "DeliveryMethod": "Other", "orders": 28, "revenue": 1167.36999, "avgShipping": 3.8333333333333335, "avgAOV": 39.04195126315789}, {"YearMonth": "2018-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 383, "revenue": 16118.949869, "avgShipping": 2.0, "avgAOV": 42.086030989556136}, {"YearMonth": "2018-06", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1117, "revenue": 29991.87962, "avgShipping": 2.5, "avgAOV": 26.85038461951656}, {"YearMonth": "2018-06", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3, "revenue": 88.349998, "avgShipping": 0.0, "avgAOV": 29.449999333333334}, {"YearMonth": "2018-06", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3263, "revenue": 75106.17907, "avgShipping": 0.0, "avgAOV": 23.017523466135458}, {"YearMonth": "2018-06", "DeliveryMethod": "Other", "orders": 34, "revenue": 1824.169993, "avgShipping": 5.75, "avgAOV": 54.87947897222222}, {"YearMonth": "2018-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 385, "revenue": 16492.889901, "avgShipping": 2.0, "avgAOV": 42.83867506753246}, {"YearMonth": "2018-07", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1095, "revenue": 29956.259711, "avgShipping": 2.5, "avgAOV": 27.357314804566208}, {"YearMonth": "2018-07", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 7, "revenue": 135.719999, "avgShipping": 0.0, "avgAOV": 19.388571285714285}, {"YearMonth": "2018-07", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2972, "revenue": 74776.819172, "avgShipping": 0.0, "avgAOV": 25.160437137281292}, {"YearMonth": "2018-07", "DeliveryMethod": "Other", "orders": 49, "revenue": 2061.169975, "avgShipping": 17.166666666666668, "avgAOV": 90.73197085452246}, {"YearMonth": "2018-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 366, "revenue": 15083.439943, "avgShipping": 2.0, "avgAOV": 41.211584543715844}, {"YearMonth": "2018-08", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1285, "revenue": 35685.739607999996, "avgShipping": 2.498054474708171, "avgAOV": 27.771003585992215}, {"YearMonth": "2018-08", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 14.96, "avgShipping": 0.0, "avgAOV": 14.96}, {"YearMonth": "2018-08", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3834, "revenue": 98108.978907, "avgShipping": 0.0, "avgAOV": 25.589196376369326}, {"YearMonth": "2018-08", "DeliveryMethod": "Other", "orders": 33, "revenue": 1274.1599959999999, "avgShipping": 5.75, "avgAOV": 37.375178422619044}, {"YearMonth": "2018-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 365, "revenue": 14307.689903, "avgShipping": 2.0, "avgAOV": 39.19915041917808}, {"YearMonth": "2018-09", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1062, "revenue": 29353.389739, "avgShipping": 2.5, "avgAOV": 27.639726684557438}, {"YearMonth": "2018-09", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2, "revenue": 82.819998, "avgShipping": 0.0, "avgAOV": 41.409999}, {"YearMonth": "2018-09", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2852, "revenue": 69666.049357, "avgShipping": 0.0, "avgAOV": 24.427086029803647}, {"YearMonth": "2018-09", "DeliveryMethod": "Other", "orders": 39, "revenue": 1476.679982, "avgShipping": 3.8333333333333335, "avgAOV": 47.58371122666667}, {"YearMonth": "2018-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 514, "revenue": 21915.929908, "avgShipping": 2.0, "avgAOV": 42.637995929961086}, {"YearMonth": "2018-10", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1251, "revenue": 35201.629753, "avgShipping": 2.5, "avgAOV": 28.138792768185453}, {"YearMonth": "2018-10", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2, "revenue": 15.69, "avgShipping": 0.0, "avgAOV": 7.845}, {"YearMonth": "2018-10", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3486, "revenue": 90203.969331, "avgShipping": 0.0, "avgAOV": 25.87606693373494}, {"YearMonth": "2018-10", "DeliveryMethod": "Other", "orders": 32, "revenue": 1303.689995, "avgShipping": 5.75, "avgAOV": 40.74031234375}, {"YearMonth": "2018-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 426, "revenue": 17306.499959, "avgShipping": 2.0, "avgAOV": 40.62558675821597}, {"YearMonth": "2018-11", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1100, "revenue": 30451.749965, "avgShipping": 2.5, "avgAOV": 27.68340905909091}, {"YearMonth": "2018-11", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2, "revenue": 48.879999, "avgShipping": 0.0, "avgAOV": 24.4399995}, {"YearMonth": "2018-11", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3339, "revenue": 86528.849969, "avgShipping": 0.0, "avgAOV": 25.914600170410303}, {"YearMonth": "2018-11", "DeliveryMethod": "Other", "orders": 32, "revenue": 1252.4999950000001, "avgShipping": 5.75, "avgAOV": 41.169230589068825}, {"YearMonth": "2018-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 387, "revenue": 17707.509917, "avgShipping": 2.0, "avgAOV": 45.75583957881137}, {"YearMonth": "2018-12", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 711, "revenue": 20247.759962, "avgShipping": 2.5, "avgAOV": 28.47786211251758}, {"YearMonth": "2018-12", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3, "revenue": 113.260003, "avgShipping": 0.0, "avgAOV": 37.753334333333335}, {"YearMonth": "2018-12", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3386, "revenue": 85093.499736, "avgShipping": 0.0, "avgAOV": 25.130980430005906}, {"YearMonth": "2018-12", "DeliveryMethod": "Other", "orders": 26, "revenue": 1003.6799960000001, "avgShipping": 3.8333333333333335, "avgAOV": 33.839221788888885}, {"YearMonth": "2019-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 600, "revenue": 26572.589926, "avgShipping": 2.0, "avgAOV": 44.28764987666667}, {"YearMonth": "2019-01", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1584, "revenue": 44452.369739, "avgShipping": 2.5, "avgAOV": 28.063364734217174}, {"YearMonth": "2019-01", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 5, "revenue": 91.489998, "avgShipping": 0.0, "avgAOV": 18.2979996}, {"YearMonth": "2019-01", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 4804, "revenue": 126962.379019, "avgShipping": 0.0, "avgAOV": 26.428471902373023}, {"YearMonth": "2019-01", "DeliveryMethod": "Other", "orders": 42, "revenue": 1790.2399859999998, "avgShipping": 3.8333333333333335, "avgAOV": 57.71087461279461}, {"YearMonth": "2019-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 375, "revenue": 15912.379934, "avgShipping": 2.0, "avgAOV": 42.433013157333335}, {"YearMonth": "2019-02", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1107, "revenue": 31257.12972, "avgShipping": 2.5, "avgAOV": 28.235889539295393}, {"YearMonth": "2019-02", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2, "revenue": 51.279998, "avgShipping": 0.0, "avgAOV": 25.639999}, {"YearMonth": "2019-02", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2644, "revenue": 66855.239422, "avgShipping": 0.0, "avgAOV": 25.285642746596068}, {"YearMonth": "2019-02", "DeliveryMethod": "Other", "orders": 23, "revenue": 801.509994, "avgShipping": 5.75, "avgAOV": 35.008636102272725}, {"YearMonth": "2019-03", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 413, "revenue": 16155.459909, "avgShipping": 2.0, "avgAOV": 39.117336341404354}, {"YearMonth": "2019-03", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1100, "revenue": 33280.719765, "avgShipping": 2.5, "avgAOV": 30.255199786363637}, {"YearMonth": "2019-03", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3, "revenue": 37.809999000000005, "avgShipping": 0.0, "avgAOV": 12.603333000000001}, {"YearMonth": "2019-03", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2965, "revenue": 79227.52930899999, "avgShipping": 0.0, "avgAOV": 26.720920508937603}, {"YearMonth": "2019-03", "DeliveryMethod": "Other", "orders": 39, "revenue": 1779.129997, "avgShipping": 5.75, "avgAOV": 47.866141220108695}, {"YearMonth": "2019-04", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 359, "revenue": 15521.679932, "avgShipping": 2.0, "avgAOV": 43.235877247910864}, {"YearMonth": "2019-04", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1042, "revenue": 30226.649772999997, "avgShipping": 2.5, "avgAOV": 29.00830112571977}, {"YearMonth": "2019-04", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 14.96, "avgShipping": 0.0, "avgAOV": 14.96}, {"YearMonth": "2019-04", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2709, "revenue": 71559.919274, "avgShipping": 0.0, "avgAOV": 26.41562173274271}, {"YearMonth": "2019-04", "DeliveryMethod": "Other", "orders": 41, "revenue": 1485.879988, "avgShipping": 3.8333333333333335, "avgAOV": 49.1960790377193}, {"YearMonth": "2019-05", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 383, "revenue": 16291.219951, "avgShipping": 2.0, "avgAOV": 42.535822326370756}, {"YearMonth": "2019-05", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1086, "revenue": 33299.939865, "avgShipping": 2.5, "avgAOV": 30.662928052486187}, {"YearMonth": "2019-05", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 4.46, "avgShipping": 0.0, "avgAOV": 4.46}, {"YearMonth": "2019-05", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2897, "revenue": 72589.169418, "avgShipping": 0.0, "avgAOV": 25.056668767000346}, {"YearMonth": "2019-05", "DeliveryMethod": "Other", "orders": 23, "revenue": 1192.500003, "avgShipping": 3.8333333333333335, "avgAOV": 52.92727281818182}, {"YearMonth": "2019-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 351, "revenue": 17097.269913, "avgShipping": 2.0, "avgAOV": 48.71017069230769}, {"YearMonth": "2019-06", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1040, "revenue": 32149.6198, "avgShipping": 2.5, "avgAOV": 30.913095961538463}, {"YearMonth": "2019-06", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 18.26, "avgShipping": 0.0, "avgAOV": 18.26}, {"YearMonth": "2019-06", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2756, "revenue": 74888.67926599999, "avgShipping": 0.0, "avgAOV": 27.17296054644412}, {"YearMonth": "2019-06", "DeliveryMethod": "Other", "orders": 28, "revenue": 1220.200006, "avgShipping": 5.75, "avgAOV": 43.57468767708333}, {"YearMonth": "2019-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 486, "revenue": 20973.139809, "avgShipping": 2.0, "avgAOV": 43.15460866049383}, {"YearMonth": "2019-07", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1200, "revenue": 41059.939669, "avgShipping": 2.5, "avgAOV": 34.21661639083333}, {"YearMonth": "2019-07", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2, "revenue": 121.319998, "avgShipping": 0.0, "avgAOV": 60.659999}, {"YearMonth": "2019-07", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3497, "revenue": 110665.548941, "avgShipping": 0.0, "avgAOV": 31.645853285959394}, {"YearMonth": "2019-07", "DeliveryMethod": "Other", "orders": 39, "revenue": 1843.379994, "avgShipping": 5.75, "avgAOV": 45.36572829428572}, {"YearMonth": "2019-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 247, "revenue": 10995.949982, "avgShipping": 2.0, "avgAOV": 44.51801612145749}, {"YearMonth": "2019-08", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 813, "revenue": 23442.46979, "avgShipping": 2.5, "avgAOV": 28.83452618696187}, {"YearMonth": "2019-08", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2033, "revenue": 50716.859573, "avgShipping": 0.0, "avgAOV": 24.94680746335465}, {"YearMonth": "2019-08", "DeliveryMethod": "Other", "orders": 22, "revenue": 1095.500003, "avgShipping": 5.75, "avgAOV": 50.241750175}, {"YearMonth": "2019-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 399, "revenue": 18169.689993, "avgShipping": 2.0, "avgAOV": 45.53807015789474}, {"YearMonth": "2019-09", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1045, "revenue": 30858.310103, "avgShipping": 2.5, "avgAOV": 29.52948335215311}, {"YearMonth": "2019-09", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 39.82, "avgShipping": 0.0, "avgAOV": 39.82}, {"YearMonth": "2019-09", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2786, "revenue": 71274.490169, "avgShipping": 0.0, "avgAOV": 25.58309051292175}, {"YearMonth": "2019-09", "DeliveryMethod": "Other", "orders": 30, "revenue": 1161.720002, "avgShipping": 5.75, "avgAOV": 36.54698420634921}, {"YearMonth": "2019-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 431, "revenue": 19131.44993, "avgShipping": 2.0, "avgAOV": 44.388514918793504}, {"YearMonth": "2019-10", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1000, "revenue": 30290.699804, "avgShipping": 2.5, "avgAOV": 30.290699804}, {"YearMonth": "2019-10", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 19.129999, "avgShipping": 0.0, "avgAOV": 19.129999}, {"YearMonth": "2019-10", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2792, "revenue": 81369.40935799999, "avgShipping": 0.0, "avgAOV": 29.14377126002865}, {"YearMonth": "2019-10", "DeliveryMethod": "Other", "orders": 22, "revenue": 1019.6299869999999, "avgShipping": 5.75, "avgAOV": 46.5724108882353}, {"YearMonth": "2019-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 383, "revenue": 16600.009896, "avgShipping": 2.0, "avgAOV": 43.34206239164491}, {"YearMonth": "2019-11", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 934, "revenue": 27200.339817, "avgShipping": 2.5, "avgAOV": 29.122419504282654}, {"YearMonth": "2019-11", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1, "revenue": 3.51, "avgShipping": 0.0, "avgAOV": 3.51}, {"YearMonth": "2019-11", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2639, "revenue": 69743.689339, "avgShipping": 0.0, "avgAOV": 26.428074777946193}, {"YearMonth": "2019-11", "DeliveryMethod": "Other", "orders": 23, "revenue": 1040.020008, "avgShipping": 5.75, "avgAOV": 46.62551627777778}, {"YearMonth": "2019-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 293, "revenue": 13939.179889, "avgShipping": 2.0, "avgAOV": 47.57399279522184}, {"YearMonth": "2019-12", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 582, "revenue": 17505.199901, "avgShipping": 2.5, "avgAOV": 30.077663060137457}, {"YearMonth": "2019-12", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 7, "revenue": 331.189995, "avgShipping": 0.0, "avgAOV": 47.31285642857143}, {"YearMonth": "2019-12", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 2633, "revenue": 71598.629323, "avgShipping": 0.0, "avgAOV": 27.19279503342195}, {"YearMonth": "2019-12", "DeliveryMethod": "Other", "orders": 17, "revenue": 676.0399910000001, "avgShipping": 3.8333333333333335, "avgAOV": 37.13267818452381}, {"YearMonth": "2020-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 553, "revenue": 25257.03984, "avgShipping": 2.0, "avgAOV": 45.67276643761302}, {"YearMonth": "2020-01", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 1207, "revenue": 36503.349748, "avgShipping": 2.5, "avgAOV": 30.243040387738194}, {"YearMonth": "2020-01", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3, "revenue": 41.879999999999995, "avgShipping": 0.0, "avgAOV": 13.959999999999999}, {"YearMonth": "2020-01", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3925, "revenue": 109441.079019, "avgShipping": 0.0, "avgAOV": 27.883077457070062}, {"YearMonth": "2020-01", "DeliveryMethod": "Other", "orders": 25, "revenue": 1312.960001, "avgShipping": 5.75, "avgAOV": 52.31179491346154}, {"YearMonth": "2020-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 202, "revenue": 9045.469934, "avgShipping": 2.0, "avgAOV": 44.779554128712874}, {"YearMonth": "2020-02", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 692, "revenue": 20038.129828, "avgShipping": 2.5, "avgAOV": 28.956835011560695}, {"YearMonth": "2020-02", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1603, "revenue": 37244.589615, "avgShipping": 0.0, "avgAOV": 23.234304189020584}, {"YearMonth": "2020-02", "DeliveryMethod": "Other", "orders": 23, "revenue": 819.410003, "avgShipping": 5.75, "avgAOV": 37.555250275}, {"YearMonth": "2020-03", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 311, "revenue": 13241.059949999999, "avgShipping": 2.0, "avgAOV": 42.575755466237936}, {"YearMonth": "2020-03", "DeliveryMethod": "Express Delivery (approx 2-3 days) + \u00a32.50 ", "orders": 337, "revenue": 10765.519941, "avgShipping": 2.5, "avgAOV": 31.94516302967359}, {"YearMonth": "2020-03", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 3189, "revenue": 81073.209462, "avgShipping": 0.0, "avgAOV": 25.422768724365003}, {"YearMonth": "2020-03", "DeliveryMethod": "Other", "orders": 1355, "revenue": 40184.85982799999, "avgShipping": 4.666666666666667, "avgAOV": 44.72694555661375}, {"YearMonth": "2020-04", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 430, "revenue": 14641.809986, "avgShipping": 2.0, "avgAOV": 34.05072089767442}, {"YearMonth": "2020-04", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2385, "revenue": 49001.209674, "avgShipping": 0.0, "avgAOV": 20.54558057610063}, {"YearMonth": "2020-04", "DeliveryMethod": "FREE UK Standard Delivery (3-5 working days)", "orders": 1453, "revenue": 30897.849804999998, "avgShipping": 0.0, "avgAOV": 21.264865660701993}, {"YearMonth": "2020-04", "DeliveryMethod": "Other", "orders": 901, "revenue": 21022.019929000002, "avgShipping": 4.3, "avgAOV": 45.1655010518131}, {"YearMonth": "2020-04", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1706, "revenue": 40546.169814, "avgShipping": 2.5, "avgAOV": 23.766805283704574}, {"YearMonth": "2020-05", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 395, "revenue": 16083.13993, "avgShipping": 2.0, "avgAOV": 40.71680994936709}, {"YearMonth": "2020-05", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3615, "revenue": 76274.519502, "avgShipping": 0.0, "avgAOV": 21.099452144398338}, {"YearMonth": "2020-05", "DeliveryMethod": "Other", "orders": 42, "revenue": 1360.599995, "avgShipping": 5.75, "avgAOV": 46.4005004125}, {"YearMonth": "2020-05", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2184, "revenue": 51859.519734, "avgShipping": 2.5, "avgAOV": 23.745201343406595}, {"YearMonth": "2020-06", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 401, "revenue": 15936.809962, "avgShipping": 2.0, "avgAOV": 39.74266823441396}, {"YearMonth": "2020-06", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3630, "revenue": 84940.979479, "avgShipping": 0.0, "avgAOV": 23.399718864738293}, {"YearMonth": "2020-06", "DeliveryMethod": "Other", "orders": 33, "revenue": 1219.269993, "avgShipping": 5.75, "avgAOV": 25.425468640625}, {"YearMonth": "2020-06", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1919, "revenue": 49289.259739, "avgShipping": 2.497394476289734, "avgAOV": 25.68486698228244}, {"YearMonth": "2020-07", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 355, "revenue": 15645.739935, "avgShipping": 1.9943661971830986, "avgAOV": 44.07250685915493}, {"YearMonth": "2020-07", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3443, "revenue": 85180.529359, "avgShipping": 0.0, "avgAOV": 24.740206029334882}, {"YearMonth": "2020-07", "DeliveryMethod": "Other", "orders": 29, "revenue": 1233.0299929999999, "avgShipping": 5.75, "avgAOV": 43.20657394444444}, {"YearMonth": "2020-07", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1920, "revenue": 51376.1397, "avgShipping": 2.5, "avgAOV": 26.75840609375}, {"YearMonth": "2020-08", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 412, "revenue": 18036.7399, "avgShipping": 2.0, "avgAOV": 43.77849490291262}, {"YearMonth": "2020-08", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3415, "revenue": 87841.01938499999, "avgShipping": 0.0, "avgAOV": 25.72211402196193}, {"YearMonth": "2020-08", "DeliveryMethod": "Other", "orders": 24, "revenue": 935.8499879999999, "avgShipping": 5.75, "avgAOV": 41.12613563636364}, {"YearMonth": "2020-08", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1807, "revenue": 50380.519649, "avgShipping": 2.5, "avgAOV": 27.880752434421694}, {"YearMonth": "2020-09", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 304, "revenue": 12894.15997, "avgShipping": 2.0, "avgAOV": 42.41499990131579}, {"YearMonth": "2020-09", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3161, "revenue": 76629.039596, "avgShipping": 0.0, "avgAOV": 24.242024547927873}, {"YearMonth": "2020-09", "DeliveryMethod": "Other", "orders": 23, "revenue": 802.7199909999999, "avgShipping": 5.75, "avgAOV": 31.960454340909088}, {"YearMonth": "2020-09", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1429, "revenue": 38567.089761999996, "avgShipping": 2.5, "avgAOV": 26.988866173547933}, {"YearMonth": "2020-10", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 476, "revenue": 19780.349913, "avgShipping": 2.0, "avgAOV": 41.55535696008403}, {"YearMonth": "2020-10", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 4797, "revenue": 107536.269355, "avgShipping": 0.0, "avgAOV": 22.417400324160933}, {"YearMonth": "2020-10", "DeliveryMethod": "Other", "orders": 27, "revenue": 1161.840004, "avgShipping": 7.5, "avgAOV": 43.031111259259255}, {"YearMonth": "2020-10", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2657, "revenue": 68139.109668, "avgShipping": 2.5, "avgAOV": 25.645129720737675}, {"YearMonth": "2020-11", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 445, "revenue": 21256.919929, "avgShipping": 2.0, "avgAOV": 47.76835939101124}, {"YearMonth": "2020-11", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 4345, "revenue": 93129.129547, "avgShipping": 0.0, "avgAOV": 21.433631656386652}, {"YearMonth": "2020-11", "DeliveryMethod": "Other", "orders": 30, "revenue": 1169.479996, "avgShipping": 7.5, "avgAOV": 38.98266653333334}, {"YearMonth": "2020-11", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2581, "revenue": 63693.909767, "avgShipping": 2.5, "avgAOV": 24.677996810151104}, {"YearMonth": "2020-12", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 341, "revenue": 16047.419915999999, "avgShipping": 2.0, "avgAOV": 47.0598824516129}, {"YearMonth": "2020-12", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3529, "revenue": 85986.69937, "avgShipping": 0.0, "avgAOV": 24.3657408245962}, {"YearMonth": "2020-12", "DeliveryMethod": "Other", "orders": 31, "revenue": 1169.140001, "avgShipping": 7.5, "avgAOV": 37.71419358064516}, {"YearMonth": "2020-12", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2462, "revenue": 64328.76966, "avgShipping": 2.5, "avgAOV": 26.12866354995938}, {"YearMonth": "2021-01", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 7, "revenue": 229.500002, "avgShipping": 2.0, "avgAOV": 32.78571457142857}, {"YearMonth": "2021-01", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 5242, "revenue": 134170.709037, "avgShipping": 0.0, "avgAOV": 25.595327935330026}, {"YearMonth": "2021-01", "DeliveryMethod": "Other", "orders": 12, "revenue": 450.799998, "avgShipping": 3.8333333333333335, "avgAOV": 22.430666300000002}, {"YearMonth": "2021-01", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 3666, "revenue": 94259.419534, "avgShipping": 2.4972722313147844, "avgAOV": 25.711789289143482}, {"YearMonth": "2021-02", "DeliveryMethod": "Europe-Standard Delivery (\u00a32) ", "orders": 2, "revenue": 91.260001, "avgShipping": 2.0, "avgAOV": 45.6300005}, {"YearMonth": "2021-02", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2871, "revenue": 64434.729582, "avgShipping": 0.0017415534656913968, "avgAOV": 22.44330532288401}, {"YearMonth": "2021-02", "DeliveryMethod": "Other", "orders": 147, "revenue": 5364.619984, "avgShipping": 4.461538461538462, "avgAOV": 42.44896225905912}, {"YearMonth": "2021-02", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2092, "revenue": 53738.429801, "avgShipping": 2.4916347992351815, "avgAOV": 25.687585946940725}, {"YearMonth": "2021-03", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3459, "revenue": 85454.699399, "avgShipping": 0.003613761202659728, "avgAOV": 24.705030181844464}, {"YearMonth": "2021-03", "DeliveryMethod": "Other", "orders": 300, "revenue": 12068.819942999999, "avgShipping": 4.485714285714286, "avgAOV": 38.93717288708095}, {"YearMonth": "2021-03", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2265, "revenue": 60449.239673, "avgShipping": 2.492273730684327, "avgAOV": 26.68840603664459}, {"YearMonth": "2021-04", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2953, "revenue": 72859.81936, "avgShipping": 0.0023704707077548256, "avgAOV": 24.673152509312562}, {"YearMonth": "2021-04", "DeliveryMethod": "Other", "orders": 249, "revenue": 8986.459923999999, "avgShipping": 3.375, "avgAOV": 32.92380703023406}, {"YearMonth": "2021-04", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1740, "revenue": 47994.419722, "avgShipping": 2.4942528735632186, "avgAOV": 27.582999840229885}, {"YearMonth": "2021-05", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3263, "revenue": 82685.02932, "avgShipping": 0.005363162733680662, "avgAOV": 25.340186736132395}, {"YearMonth": "2021-05", "DeliveryMethod": "Other", "orders": 254, "revenue": 9143.469933, "avgShipping": 4.745901639344263, "avgAOV": 35.32376601639344}, {"YearMonth": "2021-05", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1604, "revenue": 44153.939736, "avgShipping": 2.4950124688279303, "avgAOV": 27.527393850374064}, {"YearMonth": "2021-06", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3444, "revenue": 84568.85917499999, "avgShipping": 0.0007259001161440186, "avgAOV": 24.555417878919858}, {"YearMonth": "2021-06", "DeliveryMethod": "Other", "orders": 282, "revenue": 10141.089945, "avgShipping": 4.750965250965251, "avgAOV": 36.882607730317275}, {"YearMonth": "2021-06", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1900, "revenue": 52107.149587, "avgShipping": 2.4934210526315788, "avgAOV": 27.424815572105263}, {"YearMonth": "2021-07", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3948, "revenue": 101985.609279, "avgShipping": 0.0006332320162107396, "avgAOV": 25.832221195288753}, {"YearMonth": "2021-07", "DeliveryMethod": "Other", "orders": 198, "revenue": 8738.949962, "avgShipping": 4.5, "avgAOV": 41.70339729961686}, {"YearMonth": "2021-07", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2391, "revenue": 63478.849556, "avgShipping": 2.492680886658302, "avgAOV": 26.549079697197826}, {"YearMonth": "2021-08", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 2623, "revenue": 62890.809483, "avgShipping": 0.0, "avgAOV": 23.976671552802134}, {"YearMonth": "2021-08", "DeliveryMethod": "Other", "orders": 147, "revenue": 7542.719959, "avgShipping": 5.743852459016393, "avgAOV": 66.28439306786885}, {"YearMonth": "2021-08", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1959, "revenue": 53894.06957, "avgShipping": 2.494895354772843, "avgAOV": 27.51101050025523}, {"YearMonth": "2021-09", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3057, "revenue": 80112.229425, "avgShipping": 0.0024533856722276743, "avgAOV": 26.206159445534837}, {"YearMonth": "2021-09", "DeliveryMethod": "Other", "orders": 119, "revenue": 5197.4899860000005, "avgShipping": 5.61235632183908, "avgAOV": 42.003850520306514}, {"YearMonth": "2021-09", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1893, "revenue": 52256.62968, "avgShipping": 2.4960380348652933, "avgAOV": 27.60519264659271}, {"YearMonth": "2021-10", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3247, "revenue": 74938.469379, "avgShipping": 0.000769941484447182, "avgAOV": 23.079294542346783}, {"YearMonth": "2021-10", "DeliveryMethod": "Other", "orders": 107, "revenue": 5073.119975, "avgShipping": 5.740963855421687, "avgAOV": 47.360858209086345}, {"YearMonth": "2021-10", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1954, "revenue": 51863.629632, "avgShipping": 2.4910440122824973, "avgAOV": 26.542287426816785}, {"YearMonth": "2021-11", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 3942, "revenue": 103728.529242, "avgShipping": 0.0031709791983764585, "avgAOV": 26.313680680365298}, {"YearMonth": "2021-11", "DeliveryMethod": "Other", "orders": 114, "revenue": 5249.27995, "avgShipping": 5.579545454545455, "avgAOV": 47.34776626729249}, {"YearMonth": "2021-11", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2252, "revenue": 64002.799576, "avgShipping": 2.494449378330373, "avgAOV": 28.42042609946714}, {"YearMonth": "2021-12", "DeliveryMethod": "FREE UK Standard (5-8 working days)", "orders": 1022, "revenue": 27676.709673999998, "avgShipping": 0.0, "avgAOV": 27.080929230919764}, {"YearMonth": "2021-12", "DeliveryMethod": "FREE UK Standard (via Royal Mail 2nd class)", "orders": 1387, "revenue": 33879.05973, "avgShipping": 0.001802451333813987, "avgAOV": 24.426142559480894}, {"YearMonth": "2021-12", "DeliveryMethod": "Other", "orders": 67, "revenue": 3617.339978, "avgShipping": 5.611111111111111, "avgAOV": 53.004772825}, {"YearMonth": "2021-12", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 1640, "revenue": 45694.809682, "avgShipping": 2.4984756097560976, "avgAOV": 27.862688830487805}, {"YearMonth": "2022-01", "DeliveryMethod": "FREE UK Standard (5-8 working days)", "orders": 5178, "revenue": 126297.638992, "avgShipping": 0.0, "avgAOV": 24.391201041328696}, {"YearMonth": "2022-01", "DeliveryMethod": "Other", "orders": 28, "revenue": 1471.659998, "avgShipping": 6.875, "avgAOV": 52.55928564285715}, {"YearMonth": "2022-01", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 2976, "revenue": 77481.259469, "avgShipping": 2.494119623655914, "avgAOV": 26.035369445228493}, {"YearMonth": "2022-02", "DeliveryMethod": "FREE UK Standard (5-8 working days)", "orders": 2072, "revenue": 46791.489624, "avgShipping": 0.0012065637065637065, "avgAOV": 22.582765262548264}, {"YearMonth": "2022-02", "DeliveryMethod": "Other", "orders": 1031, "revenue": 26403.599845999997, "avgShipping": 2.596131556070704, "avgAOV": 47.17038531599537}, {"YearMonth": "2022-02", "DeliveryMethod": "UK Priority (via Royal Mail 1st class) + \u00a32.50 ", "orders": 596, "revenue": 14899.13993, "avgShipping": 2.4832214765100673, "avgAOV": 24.9985569295302}, {"YearMonth": "2022-03", "DeliveryMethod": "FREE UK Standard (5-8 working days)", "orders": 3338, "revenue": 81698.91923, "avgShipping": 0.0007489514679448772, "avgAOV": 24.47541019472738}, {"YearMonth": "2022-03", "DeliveryMethod": "Other", "orders": 2847, "revenue": 76338.609499, "avgShipping": 3.98241005519718, "avgAOV": 48.632696150194505}, {"YearMonth": "2022-04", "DeliveryMethod": "FREE UK Standard (5-8 working days)", "orders": 3070, "revenue": 66127.079676, "avgShipping": 0.0024429967426710096, "avgAOV": 21.539765366775242}, {"YearMonth": "2022-04", "DeliveryMethod": "Other", "orders": 2302, "revenue": 63371.749761, "avgShipping": 3.0630005314306312, "avgAOV": 58.18528096942336}, {"YearMonth": "2022-05", "DeliveryMethod": "FREE UK Standard (5-8 working days)", "orders": 2511, "revenue": 58036.489732999995, "avgShipping": 0.0009956192751891676, "avgAOV": 23.11289913699721}, {"YearMonth": "2022-05", "DeliveryMethod": "Other", "orders": 1983, "revenue": 57565.739824000004, "avgShipping": 2.2697772657450077, "avgAOV": 43.349345101690375}, {"YearMonth": "2022-06", "DeliveryMethod": "FREE UK Standard (5-8 working days)", "orders": 1027, "revenue": 26291.499886999998, "avgShipping": 0.0024342745861733205, "avgAOV": 25.600292002921126}, {"YearMonth": "2022-06", "DeliveryMethod": "Other", "orders": 988, "revenue": 33789.38985, "avgShipping": 2.764097171863669, "avgAOV": 53.10802859355315}, {"YearMonth": "2022-06", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 922, "revenue": 23457.279874, "avgShipping": 2.9084056399132323, "avgAOV": 25.441735221258135}, {"YearMonth": "2022-06", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 1225, "revenue": 27847.60987, "avgShipping": 0.1657142857142857, "avgAOV": 22.732742751020407}, {"YearMonth": "2022-07", "DeliveryMethod": "Other", "orders": 209, "revenue": 17741.069945, "avgShipping": 2.7934451219512195, "avgAOV": 77.62351386345819}, {"YearMonth": "2022-07", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1929, "revenue": 47442.239857, "avgShipping": 2.920943494038362, "avgAOV": 24.594214544841886}, {"YearMonth": "2022-07", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 2823, "revenue": 68745.369652, "avgShipping": 0.21392136025504782, "avgAOV": 24.351884396741053}, {"YearMonth": "2022-08", "DeliveryMethod": "Other", "orders": 197, "revenue": 16274.530012, "avgShipping": 3.6319209636517327, "avgAOV": 68.29056655610735}, {"YearMonth": "2022-08", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1738, "revenue": 43139.149806, "avgShipping": 2.929631760644419, "avgAOV": 24.821144882623706}, {"YearMonth": "2022-08", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 2300, "revenue": 56156.199763, "avgShipping": 0.2464782608695652, "avgAOV": 24.415739027391304}, {"YearMonth": "2022-09", "DeliveryMethod": "Other", "orders": 159, "revenue": 13571.789966, "avgShipping": 2.334905660377358, "avgAOV": 88.0386790235849}, {"YearMonth": "2022-09", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1234, "revenue": 32925.859874, "avgShipping": 2.863938411669368, "avgAOV": 26.682220319286873}, {"YearMonth": "2022-09", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 2652, "revenue": 63997.84977, "avgShipping": 0.26395173453996984, "avgAOV": 24.131919219457014}, {"YearMonth": "2022-10", "DeliveryMethod": "Other", "orders": 184, "revenue": 11427.219947000001, "avgShipping": 3.880246268656716, "avgAOV": 66.93663261298508}, {"YearMonth": "2022-10", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1154, "revenue": 30719.569872, "avgShipping": 2.855415944540728, "avgAOV": 26.620077878682842}, {"YearMonth": "2022-10", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 2824, "revenue": 65299.499689, "avgShipping": 0.31373937677053826, "avgAOV": 23.12305229780453}, {"YearMonth": "2022-11", "DeliveryMethod": "Other", "orders": 300, "revenue": 20081.82995, "avgShipping": 2.7533061762880195, "avgAOV": 52.194383688469884}, {"YearMonth": "2022-11", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1178, "revenue": 34688.199906, "avgShipping": 2.809762308998302, "avgAOV": 29.44668922410866}, {"YearMonth": "2022-11", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 3229, "revenue": 81304.269644, "avgShipping": 0.2468101579436358, "avgAOV": 25.179395987612263}, {"YearMonth": "2022-12", "DeliveryMethod": "Other", "orders": 330, "revenue": 18208.709927, "avgShipping": 4.220960365853658, "avgAOV": 66.39513658689025}, {"YearMonth": "2022-12", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1147, "revenue": 28358.579811, "avgShipping": 2.9205318221447256, "avgAOV": 24.72413235483871}, {"YearMonth": "2022-12", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 2226, "revenue": 56554.179332, "avgShipping": 0.5422506738544475, "avgAOV": 25.40619017610063}, {"YearMonth": "2023-01", "DeliveryMethod": "Other", "orders": 394, "revenue": 26979.069931, "avgShipping": 3.805581140350877, "avgAOV": 69.05918526763784}, {"YearMonth": "2023-01", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1970, "revenue": 49736.799728, "avgShipping": 2.8496700507614214, "avgAOV": 25.247106460913706}, {"YearMonth": "2023-01", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 3979, "revenue": 103755.569116, "avgShipping": 0.7738250816788137, "avgAOV": 26.075790177431514}, {"YearMonth": "2023-02", "DeliveryMethod": "Other", "orders": 231, "revenue": 12284.789971, "avgShipping": 5.634920634920634, "avgAOV": 51.611110997354494}, {"YearMonth": "2023-02", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 805, "revenue": 20104.359928, "avgShipping": 2.8477018633540374, "avgAOV": 24.974360159006213}, {"YearMonth": "2023-02", "DeliveryMethod": "Standard Delivery (5-8 working days)", "orders": 542, "revenue": 12694.049891999999, "avgShipping": 0.9498154981549815, "avgAOV": 23.420756258302582}, {"YearMonth": "2023-02", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2022, "revenue": 50067.769677, "avgShipping": 0.8270029673590504, "avgAOV": 24.76150824777448}, {"YearMonth": "2023-03", "DeliveryMethod": "Other", "orders": 90, "revenue": 7600.350004, "avgShipping": 5.428506787330317, "avgAOV": 86.03245103770739}, {"YearMonth": "2023-03", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1426, "revenue": 39368.939874, "avgShipping": 2.832082748948107, "avgAOV": 27.607952225806454}, {"YearMonth": "2023-03", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2878, "revenue": 79286.819784, "avgShipping": 1.1857192494788047, "avgAOV": 27.549277200833913}, {"YearMonth": "2023-04", "DeliveryMethod": "Other", "orders": 38, "revenue": 2959.689963, "avgShipping": 6.248363095238096, "avgAOV": 74.47568357440477}, {"YearMonth": "2023-04", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1086, "revenue": 31253.349884, "avgShipping": 2.857642725598527, "avgAOV": 28.778406891344382}, {"YearMonth": "2023-04", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1799, "revenue": 49957.319889, "avgShipping": 1.1685936631461922, "avgAOV": 27.76949410172318}, {"YearMonth": "2023-05", "DeliveryMethod": "Other", "orders": 67, "revenue": 5714.600003, "avgShipping": 5.674750453720509, "avgAOV": 86.5066652345735}, {"YearMonth": "2023-05", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1303, "revenue": 38499.069829, "avgShipping": 2.8639677666922485, "avgAOV": 29.546484903300076}, {"YearMonth": "2023-05", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2425, "revenue": 73332.689756, "avgShipping": 1.0831546391752578, "avgAOV": 30.24028443546392}, {"YearMonth": "2023-06", "DeliveryMethod": "Other", "orders": 44, "revenue": 3536.619979, "avgShipping": 4.9750000000000005, "avgAOV": 80.37772679545455}, {"YearMonth": "2023-06", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1127, "revenue": 34777.069818, "avgShipping": 2.840062111801242, "avgAOV": 30.858092118899737}, {"YearMonth": "2023-06", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2256, "revenue": 68719.789594, "avgShipping": 1.0648936170212766, "avgAOV": 30.460899642730496}, {"YearMonth": "2023-07", "DeliveryMethod": "Other", "orders": 58, "revenue": 5582.599946, "avgShipping": 4.80344827586207, "avgAOV": 96.25172320689654}, {"YearMonth": "2023-07", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1405, "revenue": 42330.929745, "avgShipping": 2.836619217081851, "avgAOV": 30.128775619217084}, {"YearMonth": "2023-07", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2908, "revenue": 86207.439488, "avgShipping": 1.1533700137551581, "avgAOV": 29.644924170563964}, {"YearMonth": "2023-08", "DeliveryMethod": "Other", "orders": 45, "revenue": 3282.069993, "avgShipping": 7.001851851851852, "avgAOV": 74.1666665462963}, {"YearMonth": "2023-08", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1239, "revenue": 36522.419888, "avgShipping": 2.835714285714286, "avgAOV": 29.477336471347858}, {"YearMonth": "2023-08", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1958, "revenue": 55951.699802, "avgShipping": 1.172191011235955, "avgAOV": 28.575944740551584}, {"YearMonth": "2023-09", "DeliveryMethod": "Other", "orders": 75, "revenue": 6314.359948, "avgShipping": 6.941846437346437, "avgAOV": 69.89799877130221}, {"YearMonth": "2023-09", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1045, "revenue": 34058.599905, "avgShipping": 3.1210526315789475, "avgAOV": 32.59196163157895}, {"YearMonth": "2023-09", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2379, "revenue": 71402.739806, "avgShipping": 1.214396805380412, "avgAOV": 30.013762003362757}, {"YearMonth": "2023-09", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 29, "revenue": 547.759993, "avgShipping": 0.0, "avgAOV": 18.888275620689654}, {"YearMonth": "2023-10", "DeliveryMethod": "Other", "orders": 107, "revenue": 8562.97994, "avgShipping": 7.2397530864197535, "avgAOV": 68.53709488580246}, {"YearMonth": "2023-10", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1085, "revenue": 33744.509927, "avgShipping": 3.261290322580645, "avgAOV": 31.10093080829493}, {"YearMonth": "2023-10", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2435, "revenue": 73007.699832, "avgShipping": 1.2905544147843941, "avgAOV": 29.982628267761807}, {"YearMonth": "2023-10", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 108, "revenue": 2619.639944, "avgShipping": 0.023148148148148147, "avgAOV": 24.255925407407407}, {"YearMonth": "2023-11", "DeliveryMethod": "Other", "orders": 100, "revenue": 8813.070005, "avgShipping": 7.1763310185185185, "avgAOV": 68.62618868356482}, {"YearMonth": "2023-11", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 912, "revenue": 30810.319918, "avgShipping": 3.2735745614035086, "avgAOV": 33.783245524122805}, {"YearMonth": "2023-11", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2071, "revenue": 64465.190206, "avgShipping": 1.2554321583775954, "avgAOV": 31.127566492515694}, {"YearMonth": "2023-11", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 126, "revenue": 3035.929937, "avgShipping": 0.0, "avgAOV": 24.09468203968254}, {"YearMonth": "2023-12", "DeliveryMethod": "Other", "orders": 100, "revenue": 7831.610006999999, "avgShipping": 7.844278850867732, "avgAOV": 71.30937024218878}, {"YearMonth": "2023-12", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 921, "revenue": 30385.220359, "avgShipping": 3.297991313789359, "avgAOV": 32.99155304994571}, {"YearMonth": "2023-12", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1752, "revenue": 56008.80983, "avgShipping": 1.6609589041095891, "avgAOV": 31.968498761415525}, {"YearMonth": "2023-12", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 284, "revenue": 6395.539888, "avgShipping": 0.0, "avgAOV": 22.519506647887326}, {"YearMonth": "2024-01", "DeliveryMethod": "Other", "orders": 131, "revenue": 11266.899958, "avgShipping": 7.575355300557954, "avgAOV": 57.64640993545987}, {"YearMonth": "2024-01", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1261, "revenue": 42081.646332, "avgShipping": 3.2073750991276766, "avgAOV": 33.37164657573354}, {"YearMonth": "2024-01", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 3199, "revenue": 102078.619443, "avgShipping": 1.684588934041888, "avgAOV": 31.909540307283528}, {"YearMonth": "2024-01", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 212, "revenue": 4594.539939, "avgShipping": 0.0, "avgAOV": 21.67235820283019}, {"YearMonth": "2024-02", "DeliveryMethod": "Other", "orders": 71, "revenue": 4603.699995, "avgShipping": 8.186459836459836, "avgAOV": 57.426957814574315}, {"YearMonth": "2024-02", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 827, "revenue": 25841.439938, "avgShipping": 3.3784764207980653, "avgAOV": 31.24720669649335}, {"YearMonth": "2024-02", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1416, "revenue": 43442.319914, "avgShipping": 1.7630649717514124, "avgAOV": 30.67960445903955}, {"YearMonth": "2024-02", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 295, "revenue": 6688.089876, "avgShipping": 0.0, "avgAOV": 22.671491105084744}, {"YearMonth": "2024-03", "DeliveryMethod": "Other", "orders": 130, "revenue": 10097.649992999999, "avgShipping": 7.857483974358975, "avgAOV": 64.92342255785256}, {"YearMonth": "2024-03", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1013, "revenue": 30828.629936999998, "avgShipping": 3.676110562685094, "avgAOV": 30.433000924975318}, {"YearMonth": "2024-03", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1844, "revenue": 59066.049935999996, "avgShipping": 1.9074566160520607, "avgAOV": 32.03148044251627}, {"YearMonth": "2024-03", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 275, "revenue": 6050.229884, "avgShipping": 0.0, "avgAOV": 22.000835941818185}, {"YearMonth": "2024-04", "DeliveryMethod": "Other", "orders": 126, "revenue": 9899.189989, "avgShipping": 7.841288082437276, "avgAOV": 55.72731319018817}, {"YearMonth": "2024-04", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1044, "revenue": 28653.360361, "avgShipping": 3.8705459770114947, "avgAOV": 27.445747472222223}, {"YearMonth": "2024-04", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1905, "revenue": 62555.799969, "avgShipping": 2.059501312335958, "avgAOV": 32.837690272440945}, {"YearMonth": "2024-04", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 287, "revenue": 7066.85985, "avgShipping": 0.0, "avgAOV": 24.623205052264808}, {"YearMonth": "2024-05", "DeliveryMethod": "Other", "orders": 102, "revenue": 8497.867988, "avgShipping": 7.7985711133178865, "avgAOV": 76.96321126542509}, {"YearMonth": "2024-05", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 892, "revenue": 25701.399908, "avgShipping": 3.898542600896861, "avgAOV": 28.813228596412554}, {"YearMonth": "2024-05", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1688, "revenue": 52336.973949, "avgShipping": 2.1789691943127965, "avgAOV": 31.00531632049763}, {"YearMonth": "2024-05", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 363, "revenue": 8163.1898550000005, "avgShipping": 0.0, "avgAOV": 22.488126322314052}, {"YearMonth": "2024-06", "DeliveryMethod": "Other", "orders": 109, "revenue": 9402.959985, "avgShipping": 7.744375, "avgAOV": 63.45096517437344}, {"YearMonth": "2024-06", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 793, "revenue": 23186.095936, "avgShipping": 3.9295712484237075, "avgAOV": 29.23845641361917}, {"YearMonth": "2024-06", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1663, "revenue": 51549.119894999996, "avgShipping": 2.1536380036079374, "avgAOV": 30.99766680396873}, {"YearMonth": "2024-06", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 335, "revenue": 7838.229859, "avgShipping": 0.0, "avgAOV": 23.39770107164179}, {"YearMonth": "2024-07", "DeliveryMethod": "Other", "orders": 163, "revenue": 15837.059932000002, "avgShipping": 8.271754535147393, "avgAOV": 62.345682423403666}, {"YearMonth": "2024-07", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 1002, "revenue": 27358.305156, "avgShipping": 3.843562874251497, "avgAOV": 27.30369776047904}, {"YearMonth": "2024-07", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2572, "revenue": 84631.152487, "avgShipping": 2.0107503888024887, "avgAOV": 32.90480267768274}, {"YearMonth": "2024-07", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 394, "revenue": 8010.989991, "avgShipping": 0.0, "avgAOV": 20.33246190609137}, {"YearMonth": "2024-08", "DeliveryMethod": "Other", "orders": 124, "revenue": 10189.700023, "avgShipping": 7.942226143421795, "avgAOV": 66.28925927614343}, {"YearMonth": "2024-08", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 752, "revenue": 21307.509954, "avgShipping": 3.8817154255319153, "avgAOV": 28.334454726063832}, {"YearMonth": "2024-08", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1653, "revenue": 53607.490451, "avgShipping": 2.0526315789473686, "avgAOV": 32.43042374531155}, {"YearMonth": "2024-08", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 433, "revenue": 10180.70981, "avgShipping": 0.0, "avgAOV": 23.512031893764433}, {"YearMonth": "2024-09", "DeliveryMethod": "Other", "orders": 115, "revenue": 10486.729985, "avgShipping": 7.067972024115875, "avgAOV": 72.55067885491876}, {"YearMonth": "2024-09", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 710, "revenue": 20453.639967, "avgShipping": 3.8909154929577467, "avgAOV": 28.807943615492956}, {"YearMonth": "2024-09", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1672, "revenue": 54978.43006, "avgShipping": 2.0639055023923447, "avgAOV": 32.88183616028708}, {"YearMonth": "2024-09", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 364, "revenue": 8369.529843, "avgShipping": 0.0, "avgAOV": 22.993213854395606}, {"YearMonth": "2024-10", "DeliveryMethod": "Other", "orders": 127, "revenue": 10812.959986, "avgShipping": 6.925469924812031, "avgAOV": 74.7152965396472}, {"YearMonth": "2024-10", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 807, "revenue": 22587.879943, "avgShipping": 3.8716852540272617, "avgAOV": 27.98993797149938}, {"YearMonth": "2024-10", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1710, "revenue": 51883.319968, "avgShipping": 2.3135087719298246, "avgAOV": 30.341122788304094}, {"YearMonth": "2024-10", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 475, "revenue": 10927.339820000001, "avgShipping": 0.0, "avgAOV": 23.004925936842106}, {"YearMonth": "2024-11", "DeliveryMethod": "Other", "orders": 102, "revenue": 9618.240007, "avgShipping": 8.339055944055945, "avgAOV": 76.18790699999195}, {"YearMonth": "2024-11", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 760, "revenue": 23247.779926, "avgShipping": 3.861644736842105, "avgAOV": 30.589184113157895}, {"YearMonth": "2024-11", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2063, "revenue": 66947.019824, "avgShipping": 2.2937469704314104, "avgAOV": 32.451294146388754}, {"YearMonth": "2024-11", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 432, "revenue": 9525.759866, "avgShipping": 0.0, "avgAOV": 22.050370060185188}, {"YearMonth": "2024-12", "DeliveryMethod": "Other", "orders": 88, "revenue": 7176.01001, "avgShipping": 9.191816239316239, "avgAOV": 67.80341152197138}, {"YearMonth": "2024-12", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 586, "revenue": 17835.719962, "avgShipping": 4.183361774744028, "avgAOV": 30.43638218771331}, {"YearMonth": "2024-12", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1145, "revenue": 36127.219845, "avgShipping": 2.620305676855895, "avgAOV": 31.552157069868997}, {"YearMonth": "2024-12", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 508, "revenue": 11069.38942, "avgShipping": 0.0, "avgAOV": 21.790136653543307}, {"YearMonth": "2025-01", "DeliveryMethod": "Other", "orders": 164, "revenue": 15755.839936, "avgShipping": 8.277261904761904, "avgAOV": 88.53773843015873}, {"YearMonth": "2025-01", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 689, "revenue": 21564.389854, "avgShipping": 4.575761973875182, "avgAOV": 31.298098481857767}, {"YearMonth": "2025-01", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 2169, "revenue": 75134.829335, "avgShipping": 2.723374827109267, "avgAOV": 34.64030859151683}, {"YearMonth": "2025-01", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 480, "revenue": 10337.159895, "avgShipping": 0.0, "avgAOV": 21.53574978125}, {"YearMonth": "2025-02", "DeliveryMethod": "Other", "orders": 88, "revenue": 7434.9599880000005, "avgShipping": 9.371924603174604, "avgAOV": 91.96545041446207}, {"YearMonth": "2025-02", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 529, "revenue": 17229.429946, "avgShipping": 4.570888468809073, "avgAOV": 32.569810862003784}, {"YearMonth": "2025-02", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1279, "revenue": 43681.659815, "avgShipping": 2.7881157154026583, "avgAOV": 34.152978745113366}, {"YearMonth": "2025-02", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 522, "revenue": 12093.439803, "avgShipping": 0.0, "avgAOV": 23.167509201149425}, {"YearMonth": "2025-03", "DeliveryMethod": "Other", "orders": 102, "revenue": 9642.059975, "avgShipping": 6.234772478070175, "avgAOV": 80.91367254515194}, {"YearMonth": "2025-03", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 546, "revenue": 17746.999947, "avgShipping": 4.5733516483516485, "avgAOV": 32.503662906593405}, {"YearMonth": "2025-03", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1346, "revenue": 48206.549778, "avgShipping": 2.738112927191679, "avgAOV": 35.814672940564634}, {"YearMonth": "2025-03", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 505, "revenue": 11329.659814, "avgShipping": 0.0, "avgAOV": 22.43496992871287}, {"YearMonth": "2025-04", "DeliveryMethod": "Other", "orders": 113, "revenue": 10113.680011, "avgShipping": 8.68, "avgAOV": 67.23210539925927}, {"YearMonth": "2025-04", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 509, "revenue": 17088.299955, "avgShipping": 4.485559921414539, "avgAOV": 33.57229853634578}, {"YearMonth": "2025-04", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1392, "revenue": 50501.109797, "avgShipping": 2.7097701149425286, "avgAOV": 36.27953290014368}, {"YearMonth": "2025-04", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 562, "revenue": 12901.199797, "avgShipping": 0.0, "avgAOV": 22.955871524911032}, {"YearMonth": "2025-05", "DeliveryMethod": "Other", "orders": 126, "revenue": 13562.740036000001, "avgShipping": 7.521091092006586, "avgAOV": 83.99238471283154}, {"YearMonth": "2025-05", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 533, "revenue": 18025.06994, "avgShipping": 4.554033771106942, "avgAOV": 33.81814247654785}, {"YearMonth": "2025-05", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1363, "revenue": 50454.279804, "avgShipping": 2.6559060895084374, "avgAOV": 37.01707982685253}, {"YearMonth": "2025-05", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 609, "revenue": 14482.649782, "avgShipping": 0.0, "avgAOV": 23.781034124794747}, {"YearMonth": "2025-06", "DeliveryMethod": "Other", "orders": 103, "revenue": 10025.980048, "avgShipping": 8.014722222222222, "avgAOV": 73.32132661293652}, {"YearMonth": "2025-06", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 490, "revenue": 16794.580003, "avgShipping": 4.50765306122449, "avgAOV": 34.27465306734694}, {"YearMonth": "2025-06", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1168, "revenue": 43056.259687, "avgShipping": 2.692208904109589, "avgAOV": 36.86323603339041}, {"YearMonth": "2025-06", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 583, "revenue": 13542.549781, "avgShipping": 0.0, "avgAOV": 23.22907338078902}, {"YearMonth": "2025-07", "DeliveryMethod": "Other", "orders": 104, "revenue": 11066.909950000001, "avgShipping": 7.2223791755508175, "avgAOV": 93.74246289651741}, {"YearMonth": "2025-07", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 515, "revenue": 16548.509941, "avgShipping": 4.532621359223302, "avgAOV": 32.133029011650486}, {"YearMonth": "2025-07", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1221, "revenue": 44855.509748, "avgShipping": 2.6887796887796886, "avgAOV": 36.736699220311216}, {"YearMonth": "2025-07", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 649, "revenue": 15018.109758, "avgShipping": 0.0, "avgAOV": 23.14038483513097}, {"YearMonth": "2025-08", "DeliveryMethod": "Other", "orders": 100, "revenue": 9431.729997, "avgShipping": 6.210599415204678, "avgAOV": 83.02502574791146}, {"YearMonth": "2025-08", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 482, "revenue": 15881.409926, "avgShipping": 4.524585062240664, "avgAOV": 32.948983248962655}, {"YearMonth": "2025-08", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1234, "revenue": 46234.919793, "avgShipping": 2.606969205834684, "avgAOV": 37.467520091572126}, {"YearMonth": "2025-08", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 678, "revenue": 16280.57973, "avgShipping": 0.0, "avgAOV": 24.012654469026547}, {"YearMonth": "2025-09", "DeliveryMethod": "Other", "orders": 102, "revenue": 9393.830765, "avgShipping": 7.095813492063492, "avgAOV": 74.94423755382395}, {"YearMonth": "2025-09", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 441, "revenue": 14403.129957, "avgShipping": 4.4918367346938775, "avgAOV": 32.66015863265306}, {"YearMonth": "2025-09", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1198, "revenue": 42060.559793, "avgShipping": 2.7675292153589317, "avgAOV": 35.10898146327212}, {"YearMonth": "2025-09", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 579, "revenue": 13986.689809, "avgShipping": 0.0, "avgAOV": 24.156631794473228}, {"YearMonth": "2025-10", "DeliveryMethod": "Other", "orders": 123, "revenue": 12097.939959, "avgShipping": 6.789920091324201, "avgAOV": 73.8088744889726}, {"YearMonth": "2025-10", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 397, "revenue": 12755.189959, "avgShipping": 4.78727959697733, "avgAOV": 32.12894196221662}, {"YearMonth": "2025-10", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1303, "revenue": 47273.229818, "avgShipping": 2.850729086722947, "avgAOV": 36.2802991696086}, {"YearMonth": "2025-10", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 737, "revenue": 17587.769711, "avgShipping": 0.0, "avgAOV": 23.86400232157395}, {"YearMonth": "2025-11", "DeliveryMethod": "Other", "orders": 72, "revenue": 7666.320016, "avgShipping": 9.265489130434782, "avgAOV": 79.27835389975846}, {"YearMonth": "2025-11", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 320, "revenue": 11537.139958, "avgShipping": 4.9115625, "avgAOV": 36.05356236875}, {"YearMonth": "2025-11", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 1156, "revenue": 42403.219839, "avgShipping": 2.8421280276816607, "avgAOV": 36.68098601989619}, {"YearMonth": "2025-11", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 569, "revenue": 13190.699797, "avgShipping": 0.0, "avgAOV": 23.18224920386643}, {"YearMonth": "2025-12", "DeliveryMethod": "Other", "orders": 101, "revenue": 8646.42996, "avgShipping": 7.726805031446541, "avgAOV": 62.75756545628751}, {"YearMonth": "2025-12", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 336, "revenue": 11883.009962, "avgShipping": 4.887499999999999, "avgAOV": 35.366101077380954}, {"YearMonth": "2025-12", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 997, "revenue": 34742.229863, "avgShipping": 2.9453360080240722, "avgAOV": 34.84677017352056}, {"YearMonth": "2025-12", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 535, "revenue": 12199.679814, "avgShipping": 0.0, "avgAOV": 22.803139839252335}, {"YearMonth": "2026-01", "DeliveryMethod": "Other", "orders": 47, "revenue": 4555.559985, "avgShipping": 5.421, "avgAOV": 92.15995490192307}, {"YearMonth": "2026-01", "DeliveryMethod": "Priority Delivery (via Royal Mail 1st class)", "orders": 135, "revenue": 4917.899983, "avgShipping": 4.835555555555556, "avgAOV": 36.42888876296296}, {"YearMonth": "2026-01", "DeliveryMethod": "Standard Delivery (via Royal Mail 2nd class)", "orders": 518, "revenue": 18876.339915, "avgShipping": 2.9015444015444016, "avgAOV": 36.44081064671815}, {"YearMonth": "2026-01", "DeliveryMethod": "Subscribe & Save (via Royal Mail 2nd class)", "orders": 188, "revenue": 4622.459925, "avgShipping": 0.0, "avgAOV": 24.587552792553193}], "aovMonthly": [{"YearMonth": "2005-11", "AOVBucket": "15-20", "count": 2, "revenue": 37.849901, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2005-12", "AOVBucket": "15-20", "count": 1, "revenue": 17.9, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-01", "AOVBucket": "5-10", "count": 1, "revenue": 5.45, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-01", "AOVBucket": "15-20", "count": 1, "revenue": 18.7499, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-01", "AOVBucket": "30-35", "count": 1, "revenue": 32.35, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-01", "AOVBucket": "40-50", "count": 1, "revenue": 49.899799, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-02", "AOVBucket": "5-10", "count": 1, "revenue": 7.95, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2006-02", "AOVBucket": "10-15", "count": 3, "revenue": 39.55, "avgShipping": 0.6666666666666666, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2006-02", "AOVBucket": "60-75", "count": 1, "revenue": 73.600002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-03", "AOVBucket": "5-10", "count": 11, "revenue": 94.44999999999999, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2006-03", "AOVBucket": "10-15", "count": 46, "revenue": 568.4963, "avgShipping": 0.2391304347826087, "pctFreeShip": 0.8913043478260869}, {"YearMonth": "2006-03", "AOVBucket": "15-20", "count": 20, "revenue": 358.349701, "avgShipping": 0.15, "pctFreeShip": 0.95}, {"YearMonth": "2006-03", "AOVBucket": "20-25", "count": 8, "revenue": 180.849801, "avgShipping": 0.375, "pctFreeShip": 0.875}, {"YearMonth": "2006-03", "AOVBucket": "25-30", "count": 8, "revenue": 211.947499, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-03", "AOVBucket": "30-35", "count": 3, "revenue": 98.6199, "avgShipping": 1.0, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2006-03", "AOVBucket": "35-40", "count": 6, "revenue": 223.397501, "avgShipping": 1.6666666666666667, "pctFreeShip": 0.5}, {"YearMonth": "2006-03", "AOVBucket": "40-50", "count": 3, "revenue": 147.669898, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-03", "AOVBucket": "50-60", "count": 3, "revenue": 158.05, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-03", "AOVBucket": "60-75", "count": 1, "revenue": 69.649802, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-03", "AOVBucket": "75-100", "count": 2, "revenue": 172.849602, "avgShipping": 1.5, "pctFreeShip": 0.5}, {"YearMonth": "2006-04", "AOVBucket": "5-10", "count": 23, "revenue": 196.8504, "avgShipping": 2.130434782608696, "pctFreeShip": 0.0}, {"YearMonth": "2006-04", "AOVBucket": "10-15", "count": 77, "revenue": 946.8417999999999, "avgShipping": 0.3246753246753247, "pctFreeShip": 0.8441558441558441}, {"YearMonth": "2006-04", "AOVBucket": "15-20", "count": 28, "revenue": 502.399605, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-04", "AOVBucket": "20-25", "count": 19, "revenue": 426.246102, "avgShipping": 0.3157894736842105, "pctFreeShip": 0.8947368421052632}, {"YearMonth": "2006-04", "AOVBucket": "25-30", "count": 10, "revenue": 270.799898, "avgShipping": 0.3, "pctFreeShip": 0.9}, {"YearMonth": "2006-04", "AOVBucket": "30-35", "count": 6, "revenue": 196.44989900000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-04", "AOVBucket": "35-40", "count": 3, "revenue": 110.897602, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-04", "AOVBucket": "40-50", "count": 1, "revenue": 49.799601, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-04", "AOVBucket": "50-60", "count": 2, "revenue": 108.94990100000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-04", "AOVBucket": "75-100", "count": 2, "revenue": 151.3, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2006-05", "AOVBucket": "5-10", "count": 22, "revenue": 183.49679999999998, "avgShipping": 2.0454545454545454, "pctFreeShip": 0.0}, {"YearMonth": "2006-05", "AOVBucket": "10-15", "count": 112, "revenue": 1365.1445999999999, "avgShipping": 0.3392857142857143, "pctFreeShip": 0.8303571428571429}, {"YearMonth": "2006-05", "AOVBucket": "15-20", "count": 48, "revenue": 862.899513, "avgShipping": 0.0625, "pctFreeShip": 0.9791666666666666}, {"YearMonth": "2006-05", "AOVBucket": "20-25", "count": 23, "revenue": 506.046101, "avgShipping": 0.2608695652173913, "pctFreeShip": 0.9130434782608695}, {"YearMonth": "2006-05", "AOVBucket": "25-30", "count": 18, "revenue": 485.399696, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-05", "AOVBucket": "30-35", "count": 6, "revenue": 189.799896, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-05", "AOVBucket": "35-40", "count": 5, "revenue": 183.499901, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-05", "AOVBucket": "40-50", "count": 6, "revenue": 263.69960000000003, "avgShipping": 0.5, "pctFreeShip": 0.8333333333333334}, {"YearMonth": "2006-05", "AOVBucket": "50-60", "count": 2, "revenue": 113.5, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-05", "AOVBucket": "60-75", "count": 1, "revenue": 65.700002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-05", "AOVBucket": "75-100", "count": 1, "revenue": 98.8503, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-06", "AOVBucket": "5-10", "count": 18, "revenue": 146.6, "avgShipping": 2.0555555555555554, "pctFreeShip": 0.0}, {"YearMonth": "2006-06", "AOVBucket": "10-15", "count": 119, "revenue": 1491.133, "avgShipping": 0.3949579831932773, "pctFreeShip": 0.8067226890756303}, {"YearMonth": "2006-06", "AOVBucket": "15-20", "count": 60, "revenue": 1060.695916, "avgShipping": 0.15, "pctFreeShip": 0.95}, {"YearMonth": "2006-06", "AOVBucket": "20-25", "count": 26, "revenue": 565.695306, "avgShipping": 0.11538461538461539, "pctFreeShip": 0.9615384615384616}, {"YearMonth": "2006-06", "AOVBucket": "25-30", "count": 15, "revenue": 399.400099, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-06", "AOVBucket": "30-35", "count": 10, "revenue": 325.046401, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-06", "AOVBucket": "35-40", "count": 5, "revenue": 188.1497, "avgShipping": 1.2, "pctFreeShip": 0.6}, {"YearMonth": "2006-06", "AOVBucket": "40-50", "count": 7, "revenue": 317.45070599999997, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-06", "AOVBucket": "50-60", "count": 1, "revenue": 57.949899, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-06", "AOVBucket": "60-75", "count": 1, "revenue": 60.299899, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-06", "AOVBucket": "75-100", "count": 3, "revenue": 252.70099599999998, "avgShipping": 2.0, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2006-07", "AOVBucket": "5-10", "count": 25, "revenue": 203.8503, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2006-07", "AOVBucket": "10-15", "count": 139, "revenue": 1651.358, "avgShipping": 0.5611510791366906, "pctFreeShip": 0.7266187050359713}, {"YearMonth": "2006-07", "AOVBucket": "15-20", "count": 47, "revenue": 843.0468129999999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-07", "AOVBucket": "20-25", "count": 42, "revenue": 908.3507999999999, "avgShipping": 0.14285714285714285, "pctFreeShip": 0.9523809523809523}, {"YearMonth": "2006-07", "AOVBucket": "25-30", "count": 21, "revenue": 562.299896, "avgShipping": 0.2857142857142857, "pctFreeShip": 0.9047619047619048}, {"YearMonth": "2006-07", "AOVBucket": "30-35", "count": 4, "revenue": 127.500002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-07", "AOVBucket": "35-40", "count": 4, "revenue": 154.050004, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-07", "AOVBucket": "40-50", "count": 14, "revenue": 643.570601, "avgShipping": 0.42857142857142855, "pctFreeShip": 0.8571428571428571}, {"YearMonth": "2006-07", "AOVBucket": "50-60", "count": 1, "revenue": 58.599899, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-07", "AOVBucket": "60-75", "count": 4, "revenue": 248.65, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-07", "AOVBucket": "75-100", "count": 1, "revenue": 80.750599, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-08", "AOVBucket": "5-10", "count": 38, "revenue": 321.3006, "avgShipping": 2.026315789473684, "pctFreeShip": 0.0}, {"YearMonth": "2006-08", "AOVBucket": "10-15", "count": 94, "revenue": 1157.383, "avgShipping": 0.5531914893617021, "pctFreeShip": 0.7340425531914894}, {"YearMonth": "2006-08", "AOVBucket": "15-20", "count": 55, "revenue": 986.954927, "avgShipping": 0.21818181818181817, "pctFreeShip": 0.9272727272727272}, {"YearMonth": "2006-08", "AOVBucket": "20-25", "count": 30, "revenue": 654.744105, "avgShipping": 0.2, "pctFreeShip": 0.9333333333333333}, {"YearMonth": "2006-08", "AOVBucket": "25-30", "count": 26, "revenue": 715.650295, "avgShipping": 0.34615384615384615, "pctFreeShip": 0.8846153846153846}, {"YearMonth": "2006-08", "AOVBucket": "30-35", "count": 10, "revenue": 329.748503, "avgShipping": 0.3, "pctFreeShip": 0.9}, {"YearMonth": "2006-08", "AOVBucket": "35-40", "count": 5, "revenue": 184.249902, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-08", "AOVBucket": "40-50", "count": 16, "revenue": 741.201203, "avgShipping": 0.1875, "pctFreeShip": 0.9375}, {"YearMonth": "2006-08", "AOVBucket": "50-60", "count": 5, "revenue": 272.919699, "avgShipping": 0.6, "pctFreeShip": 0.8}, {"YearMonth": "2006-08", "AOVBucket": "60-75", "count": 3, "revenue": 201.246603, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-08", "AOVBucket": "75-100", "count": 1, "revenue": 75.299998, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-09", "AOVBucket": "<5", "count": 1, "revenue": 4.95, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-09", "AOVBucket": "5-10", "count": 37, "revenue": 314.45662, "avgShipping": 1.9189189189189189, "pctFreeShip": 0.05405405405405406}, {"YearMonth": "2006-09", "AOVBucket": "10-15", "count": 155, "revenue": 1888.34631, "avgShipping": 0.5806451612903226, "pctFreeShip": 0.7096774193548387}, {"YearMonth": "2006-09", "AOVBucket": "15-20", "count": 60, "revenue": 1078.194563, "avgShipping": 0.05, "pctFreeShip": 0.9833333333333333}, {"YearMonth": "2006-09", "AOVBucket": "20-25", "count": 50, "revenue": 1092.44272, "avgShipping": 0.12, "pctFreeShip": 0.96}, {"YearMonth": "2006-09", "AOVBucket": "25-30", "count": 27, "revenue": 744.611142, "avgShipping": 0.2222222222222222, "pctFreeShip": 0.9259259259259259}, {"YearMonth": "2006-09", "AOVBucket": "30-35", "count": 11, "revenue": 362.344114, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-09", "AOVBucket": "35-40", "count": 8, "revenue": 297.299817, "avgShipping": 0.375, "pctFreeShip": 0.875}, {"YearMonth": "2006-09", "AOVBucket": "40-50", "count": 14, "revenue": 635.017499, "avgShipping": 0.42857142857142855, "pctFreeShip": 0.8571428571428571}, {"YearMonth": "2006-09", "AOVBucket": "50-60", "count": 2, "revenue": 111.864911, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-09", "AOVBucket": "60-75", "count": 3, "revenue": 203.29989899999998, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-09", "AOVBucket": "75-100", "count": 1, "revenue": 96.030091, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-10", "AOVBucket": "5-10", "count": 66, "revenue": 565.7008, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2006-10", "AOVBucket": "10-15", "count": 194, "revenue": 2386.95028, "avgShipping": 0.4896907216494845, "pctFreeShip": 0.7628865979381443}, {"YearMonth": "2006-10", "AOVBucket": "15-20", "count": 78, "revenue": 1397.717559, "avgShipping": 0.038461538461538464, "pctFreeShip": 0.9871794871794872}, {"YearMonth": "2006-10", "AOVBucket": "20-25", "count": 55, "revenue": 1218.021209, "avgShipping": 0.21818181818181817, "pctFreeShip": 0.9272727272727272}, {"YearMonth": "2006-10", "AOVBucket": "25-30", "count": 31, "revenue": 839.41706, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-10", "AOVBucket": "30-35", "count": 11, "revenue": 354.511809, "avgShipping": 0.2727272727272727, "pctFreeShip": 0.9090909090909091}, {"YearMonth": "2006-10", "AOVBucket": "35-40", "count": 13, "revenue": 490.818196, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-10", "AOVBucket": "40-50", "count": 10, "revenue": 453.394913, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-10", "AOVBucket": "50-60", "count": 10, "revenue": 541.618502, "avgShipping": 0.9, "pctFreeShip": 0.7}, {"YearMonth": "2006-10", "AOVBucket": "60-75", "count": 2, "revenue": 145.614704, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-10", "AOVBucket": "75-100", "count": 1, "revenue": 97.784823, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-10", "AOVBucket": "100-150", "count": 1, "revenue": 119.505001, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2006-10", "AOVBucket": "150-200", "count": 1, "revenue": 164.600006, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-11", "AOVBucket": "5-10", "count": 54, "revenue": 452.54794, "avgShipping": 1.9814814814814814, "pctFreeShip": 0.018518518518518517}, {"YearMonth": "2006-11", "AOVBucket": "10-15", "count": 207, "revenue": 2540.84569, "avgShipping": 0.5942028985507246, "pctFreeShip": 0.7101449275362319}, {"YearMonth": "2006-11", "AOVBucket": "15-20", "count": 72, "revenue": 1296.453705, "avgShipping": 0.125, "pctFreeShip": 0.9583333333333334}, {"YearMonth": "2006-11", "AOVBucket": "20-25", "count": 51, "revenue": 1125.458604, "avgShipping": 0.11764705882352941, "pctFreeShip": 0.9607843137254902}, {"YearMonth": "2006-11", "AOVBucket": "25-30", "count": 27, "revenue": 727.346904, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-11", "AOVBucket": "30-35", "count": 13, "revenue": 420.3793, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-11", "AOVBucket": "35-40", "count": 10, "revenue": 367.626952, "avgShipping": 0.6, "pctFreeShip": 0.8}, {"YearMonth": "2006-11", "AOVBucket": "40-50", "count": 8, "revenue": 359.157706, "avgShipping": 0.375, "pctFreeShip": 0.875}, {"YearMonth": "2006-11", "AOVBucket": "50-60", "count": 7, "revenue": 385.009799, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-11", "AOVBucket": "60-75", "count": 1, "revenue": 68.849799, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-11", "AOVBucket": "100-150", "count": 1, "revenue": 102.691197, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-11", "AOVBucket": "150-200", "count": 1, "revenue": 190.439647, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-12", "AOVBucket": "5-10", "count": 27, "revenue": 230.4503, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2006-12", "AOVBucket": "10-15", "count": 186, "revenue": 2247.9301, "avgShipping": 0.46774193548387094, "pctFreeShip": 0.7688172043010753}, {"YearMonth": "2006-12", "AOVBucket": "15-20", "count": 72, "revenue": 1292.2457239999999, "avgShipping": 0.08333333333333333, "pctFreeShip": 0.9722222222222222}, {"YearMonth": "2006-12", "AOVBucket": "20-25", "count": 103, "revenue": 2203.300405, "avgShipping": 0.02912621359223301, "pctFreeShip": 0.9902912621359223}, {"YearMonth": "2006-12", "AOVBucket": "25-30", "count": 25, "revenue": 678.055539, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-12", "AOVBucket": "30-35", "count": 14, "revenue": 458.995999, "avgShipping": 0.42857142857142855, "pctFreeShip": 0.8571428571428571}, {"YearMonth": "2006-12", "AOVBucket": "35-40", "count": 7, "revenue": 261.3487, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-12", "AOVBucket": "40-50", "count": 13, "revenue": 581.701591, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-12", "AOVBucket": "50-60", "count": 1, "revenue": 56.5999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-12", "AOVBucket": "60-75", "count": 6, "revenue": 403.873203, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-12", "AOVBucket": "75-100", "count": 1, "revenue": 80.748499, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2006-12", "AOVBucket": "100-150", "count": 2, "revenue": 207.199901, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-01", "AOVBucket": "5-10", "count": 73, "revenue": 617.2481, "avgShipping": 1.9726027397260273, "pctFreeShip": 0.0136986301369863}, {"YearMonth": "2007-01", "AOVBucket": "10-15", "count": 294, "revenue": 3616.8114, "avgShipping": 0.3945578231292517, "pctFreeShip": 0.8061224489795918}, {"YearMonth": "2007-01", "AOVBucket": "15-20", "count": 76, "revenue": 1381.147798, "avgShipping": 0.039473684210526314, "pctFreeShip": 0.9868421052631579}, {"YearMonth": "2007-01", "AOVBucket": "20-25", "count": 104, "revenue": 2229.3697039999997, "avgShipping": 0.028846153846153848, "pctFreeShip": 0.9903846153846154}, {"YearMonth": "2007-01", "AOVBucket": "25-30", "count": 35, "revenue": 953.188308, "avgShipping": 0.08571428571428572, "pctFreeShip": 0.9714285714285714}, {"YearMonth": "2007-01", "AOVBucket": "30-35", "count": 16, "revenue": 533.105497, "avgShipping": 0.375, "pctFreeShip": 0.875}, {"YearMonth": "2007-01", "AOVBucket": "35-40", "count": 9, "revenue": 339.249496, "avgShipping": 0.3333333333333333, "pctFreeShip": 0.8888888888888888}, {"YearMonth": "2007-01", "AOVBucket": "40-50", "count": 18, "revenue": 788.766116, "avgShipping": 0.5, "pctFreeShip": 0.8333333333333334}, {"YearMonth": "2007-01", "AOVBucket": "50-60", "count": 6, "revenue": 328.499499, "avgShipping": 0.5, "pctFreeShip": 0.8333333333333334}, {"YearMonth": "2007-01", "AOVBucket": "60-75", "count": 4, "revenue": 272.64959899999997, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-01", "AOVBucket": "75-100", "count": 3, "revenue": 261.850506, "avgShipping": 2.0, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2007-01", "AOVBucket": "150-200", "count": 1, "revenue": 164.249393, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-02", "AOVBucket": "5-10", "count": 37, "revenue": 299.6525, "avgShipping": 2.027027027027027, "pctFreeShip": 0.0}, {"YearMonth": "2007-02", "AOVBucket": "10-15", "count": 333, "revenue": 4027.5089, "avgShipping": 0.27627627627627627, "pctFreeShip": 0.8618618618618619}, {"YearMonth": "2007-02", "AOVBucket": "15-20", "count": 82, "revenue": 1488.100715, "avgShipping": 0.07317073170731707, "pctFreeShip": 0.975609756097561}, {"YearMonth": "2007-02", "AOVBucket": "20-25", "count": 121, "revenue": 2707.4151509999997, "avgShipping": 0.12396694214876033, "pctFreeShip": 0.9586776859504132}, {"YearMonth": "2007-02", "AOVBucket": "25-30", "count": 28, "revenue": 762.343402, "avgShipping": 0.10714285714285714, "pctFreeShip": 0.9642857142857143}, {"YearMonth": "2007-02", "AOVBucket": "30-35", "count": 13, "revenue": 428.185403, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-02", "AOVBucket": "35-40", "count": 9, "revenue": 338.094007, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-02", "AOVBucket": "40-50", "count": 20, "revenue": 889.705008, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-02", "AOVBucket": "50-60", "count": 5, "revenue": 262.1018, "avgShipping": 1.2, "pctFreeShip": 0.6}, {"YearMonth": "2007-02", "AOVBucket": "60-75", "count": 9, "revenue": 597.4194, "avgShipping": 0.6666666666666666, "pctFreeShip": 0.7777777777777778}, {"YearMonth": "2007-02", "AOVBucket": "75-100", "count": 2, "revenue": 177.800106, "avgShipping": 1.5, "pctFreeShip": 0.5}, {"YearMonth": "2007-02", "AOVBucket": "200-500", "count": 1, "revenue": 238.000004, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-03", "AOVBucket": "5-10", "count": 43, "revenue": 349.948, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2007-03", "AOVBucket": "10-15", "count": 273, "revenue": 3370.8456, "avgShipping": 0.36996336996337, "pctFreeShip": 0.8241758241758241}, {"YearMonth": "2007-03", "AOVBucket": "15-20", "count": 60, "revenue": 1073.198203, "avgShipping": 0.15, "pctFreeShip": 0.95}, {"YearMonth": "2007-03", "AOVBucket": "20-25", "count": 87, "revenue": 1919.008832, "avgShipping": 0.034482758620689655, "pctFreeShip": 0.9885057471264368}, {"YearMonth": "2007-03", "AOVBucket": "25-30", "count": 27, "revenue": 748.178302, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-03", "AOVBucket": "30-35", "count": 17, "revenue": 557.839704, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-03", "AOVBucket": "35-40", "count": 11, "revenue": 414.602799, "avgShipping": 0.5454545454545454, "pctFreeShip": 0.8181818181818182}, {"YearMonth": "2007-03", "AOVBucket": "40-50", "count": 23, "revenue": 1025.083205, "avgShipping": 0.391304347826087, "pctFreeShip": 0.8695652173913043}, {"YearMonth": "2007-03", "AOVBucket": "50-60", "count": 4, "revenue": 215.297698, "avgShipping": 0.75, "pctFreeShip": 0.75}, {"YearMonth": "2007-03", "AOVBucket": "60-75", "count": 3, "revenue": 190.939898, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-03", "AOVBucket": "75-100", "count": 1, "revenue": 94.6027, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-03", "AOVBucket": "100-150", "count": 4, "revenue": 450.100705, "avgShipping": 1.5, "pctFreeShip": 0.5}, {"YearMonth": "2007-03", "AOVBucket": "150-200", "count": 1, "revenue": 167.593597, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2007-03", "AOVBucket": "200-500", "count": 1, "revenue": 205.998201, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2007-04", "AOVBucket": "5-10", "count": 51, "revenue": 435.85949999999997, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2007-04", "AOVBucket": "10-15", "count": 182, "revenue": 2283.0938, "avgShipping": 0.4340659340659341, "pctFreeShip": 0.7912087912087912}, {"YearMonth": "2007-04", "AOVBucket": "15-20", "count": 56, "revenue": 989.599709, "avgShipping": 0.21428571428571427, "pctFreeShip": 0.9285714285714286}, {"YearMonth": "2007-04", "AOVBucket": "20-25", "count": 69, "revenue": 1545.568118, "avgShipping": 0.34782608695652173, "pctFreeShip": 0.8840579710144928}, {"YearMonth": "2007-04", "AOVBucket": "25-30", "count": 38, "revenue": 1055.434703, "avgShipping": 0.23684210526315788, "pctFreeShip": 0.9210526315789473}, {"YearMonth": "2007-04", "AOVBucket": "30-35", "count": 11, "revenue": 359.141299, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-04", "AOVBucket": "35-40", "count": 14, "revenue": 524.0383019999999, "avgShipping": 0.21428571428571427, "pctFreeShip": 0.9285714285714286}, {"YearMonth": "2007-04", "AOVBucket": "40-50", "count": 18, "revenue": 795.728305, "avgShipping": 0.3333333333333333, "pctFreeShip": 0.8888888888888888}, {"YearMonth": "2007-04", "AOVBucket": "50-60", "count": 7, "revenue": 393.825101, "avgShipping": 0.42857142857142855, "pctFreeShip": 0.8571428571428571}, {"YearMonth": "2007-04", "AOVBucket": "60-75", "count": 4, "revenue": 276.640196, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-04", "AOVBucket": "75-100", "count": 2, "revenue": 169.740902, "avgShipping": 1.5, "pctFreeShip": 0.5}, {"YearMonth": "2007-05", "AOVBucket": "5-10", "count": 48, "revenue": 393.8039, "avgShipping": 2.0208333333333335, "pctFreeShip": 0.0}, {"YearMonth": "2007-05", "AOVBucket": "10-15", "count": 213, "revenue": 2618.3244999999997, "avgShipping": 0.4647887323943662, "pctFreeShip": 0.7746478873239436}, {"YearMonth": "2007-05", "AOVBucket": "15-20", "count": 90, "revenue": 1617.15311, "avgShipping": 0.13333333333333333, "pctFreeShip": 0.9555555555555556}, {"YearMonth": "2007-05", "AOVBucket": "20-25", "count": 73, "revenue": 1620.112989, "avgShipping": 0.0821917808219178, "pctFreeShip": 0.9726027397260274}, {"YearMonth": "2007-05", "AOVBucket": "25-30", "count": 33, "revenue": 893.131648, "avgShipping": 0.09090909090909091, "pctFreeShip": 0.9696969696969697}, {"YearMonth": "2007-05", "AOVBucket": "30-35", "count": 14, "revenue": 463.918799, "avgShipping": 0.21428571428571427, "pctFreeShip": 0.9285714285714286}, {"YearMonth": "2007-05", "AOVBucket": "35-40", "count": 11, "revenue": 414.448706, "avgShipping": 0.2727272727272727, "pctFreeShip": 0.9090909090909091}, {"YearMonth": "2007-05", "AOVBucket": "40-50", "count": 18, "revenue": 820.6419060000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-05", "AOVBucket": "50-60", "count": 6, "revenue": 335.948503, "avgShipping": 0.5, "pctFreeShip": 0.8333333333333334}, {"YearMonth": "2007-05", "AOVBucket": "60-75", "count": 6, "revenue": 399.14659900000004, "avgShipping": 0.5, "pctFreeShip": 0.8333333333333334}, {"YearMonth": "2007-05", "AOVBucket": "75-100", "count": 1, "revenue": 79.698002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2007-05", "AOVBucket": "100-150", "count": 2, "revenue": 204.30019800000002, "avgShipping": 1.5, "pctFreeShip": 0.5}, {"YearMonth": "2007-06", "AOVBucket": "5-10", "count": 38, "revenue": 323.67894, "avgShipping": 2.236842105263158, "pctFreeShip": 0.02631578947368421}, {"YearMonth": "2007-06", "AOVBucket": "10-15", "count": 205, "revenue": 2624.5819, "avgShipping": 1.0926829268292684, "pctFreeShip": 0.551219512195122}, {"YearMonth": "2007-06", "AOVBucket": "15-20", "count": 87, "revenue": 1555.655508, "avgShipping": 0.6206896551724138, "pctFreeShip": 0.7126436781609196}, {"YearMonth": "2007-06", "AOVBucket": "20-25", "count": 111, "revenue": 2478.666727, "avgShipping": 0.8558558558558559, "pctFreeShip": 0.5945945945945946}, {"YearMonth": "2007-06", "AOVBucket": "25-30", "count": 33, "revenue": 913.0897, "avgShipping": 0.7272727272727273, "pctFreeShip": 0.696969696969697}, {"YearMonth": "2007-06", "AOVBucket": "30-35", "count": 15, "revenue": 491.848597, "avgShipping": 0.8, "pctFreeShip": 0.6}, {"YearMonth": "2007-06", "AOVBucket": "35-40", "count": 14, "revenue": 533.119346, "avgShipping": 1.3571428571428572, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2007-06", "AOVBucket": "40-50", "count": 19, "revenue": 850.419873, "avgShipping": 0.7368421052631579, "pctFreeShip": 0.631578947368421}, {"YearMonth": "2007-06", "AOVBucket": "50-60", "count": 5, "revenue": 273.876562, "avgShipping": 1.4, "pctFreeShip": 0.4}, {"YearMonth": "2007-06", "AOVBucket": "60-75", "count": 3, "revenue": 195.3444, "avgShipping": 2.3333333333333335, "pctFreeShip": 0.0}, {"YearMonth": "2007-06", "AOVBucket": "100-150", "count": 3, "revenue": 340.19960100000003, "avgShipping": 2.3333333333333335, "pctFreeShip": 0.0}, {"YearMonth": "2007-07", "AOVBucket": "5-10", "count": 27, "revenue": 230.4594, "avgShipping": 2.259259259259259, "pctFreeShip": 0.0}, {"YearMonth": "2007-07", "AOVBucket": "10-15", "count": 223, "revenue": 2807.2867, "avgShipping": 1.116591928251121, "pctFreeShip": 0.5739910313901345}, {"YearMonth": "2007-07", "AOVBucket": "15-20", "count": 64, "revenue": 1151.987807, "avgShipping": 0.78125, "pctFreeShip": 0.625}, {"YearMonth": "2007-07", "AOVBucket": "20-25", "count": 103, "revenue": 2289.868814, "avgShipping": 0.8640776699029126, "pctFreeShip": 0.5728155339805825}, {"YearMonth": "2007-07", "AOVBucket": "25-30", "count": 31, "revenue": 867.245306, "avgShipping": 0.6774193548387096, "pctFreeShip": 0.6774193548387096}, {"YearMonth": "2007-07", "AOVBucket": "30-35", "count": 16, "revenue": 523.036301, "avgShipping": 1.1875, "pctFreeShip": 0.4375}, {"YearMonth": "2007-07", "AOVBucket": "35-40", "count": 19, "revenue": 717.9386030000001, "avgShipping": 0.9473684210526315, "pctFreeShip": 0.5789473684210527}, {"YearMonth": "2007-07", "AOVBucket": "40-50", "count": 21, "revenue": 930.141698, "avgShipping": 0.9047619047619048, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2007-07", "AOVBucket": "50-60", "count": 9, "revenue": 506.193798, "avgShipping": 0.8888888888888888, "pctFreeShip": 0.5555555555555556}, {"YearMonth": "2007-07", "AOVBucket": "60-75", "count": 2, "revenue": 135.145602, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2007-07", "AOVBucket": "75-100", "count": 7, "revenue": 613.1967050000001, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2007-07", "AOVBucket": "100-150", "count": 2, "revenue": 246.0019, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2007-08", "AOVBucket": "5-10", "count": 36, "revenue": 313.8236, "avgShipping": 2.2777777777777777, "pctFreeShip": 0.0}, {"YearMonth": "2007-08", "AOVBucket": "10-15", "count": 182, "revenue": 2301.7326, "avgShipping": 1.0274725274725274, "pctFreeShip": 0.6208791208791209}, {"YearMonth": "2007-08", "AOVBucket": "15-20", "count": 84, "revenue": 1517.012315, "avgShipping": 0.7261904761904762, "pctFreeShip": 0.6547619047619048}, {"YearMonth": "2007-08", "AOVBucket": "20-25", "count": 90, "revenue": 1989.408027, "avgShipping": 0.7888888888888889, "pctFreeShip": 0.6444444444444445}, {"YearMonth": "2007-08", "AOVBucket": "25-30", "count": 37, "revenue": 1017.725299, "avgShipping": 1.2702702702702702, "pctFreeShip": 0.40540540540540543}, {"YearMonth": "2007-08", "AOVBucket": "30-35", "count": 18, "revenue": 599.837299, "avgShipping": 0.8888888888888888, "pctFreeShip": 0.5555555555555556}, {"YearMonth": "2007-08", "AOVBucket": "35-40", "count": 13, "revenue": 480.443904, "avgShipping": 1.3846153846153846, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2007-08", "AOVBucket": "40-50", "count": 13, "revenue": 586.693799, "avgShipping": 1.4615384615384615, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2007-08", "AOVBucket": "50-60", "count": 9, "revenue": 493.907606, "avgShipping": 1.6666666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2007-08", "AOVBucket": "60-75", "count": 5, "revenue": 340.393998, "avgShipping": 2.0, "pctFreeShip": 0.2}, {"YearMonth": "2007-08", "AOVBucket": "75-100", "count": 2, "revenue": 171.49130300000002, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2007-08", "AOVBucket": "100-150", "count": 2, "revenue": 213.45009800000003, "avgShipping": 1.5, "pctFreeShip": 0.5}, {"YearMonth": "2007-09", "AOVBucket": "5-10", "count": 43, "revenue": 373.9595, "avgShipping": 2.2790697674418605, "pctFreeShip": 0.0}, {"YearMonth": "2007-09", "AOVBucket": "10-15", "count": 205, "revenue": 2618.6355, "avgShipping": 1.0682926829268293, "pctFreeShip": 0.5707317073170731}, {"YearMonth": "2007-09", "AOVBucket": "15-20", "count": 74, "revenue": 1316.216705, "avgShipping": 0.6351351351351351, "pctFreeShip": 0.6891891891891891}, {"YearMonth": "2007-09", "AOVBucket": "20-25", "count": 78, "revenue": 1751.873116, "avgShipping": 0.7307692307692307, "pctFreeShip": 0.6410256410256411}, {"YearMonth": "2007-09", "AOVBucket": "25-30", "count": 31, "revenue": 845.399912, "avgShipping": 1.032258064516129, "pctFreeShip": 0.5483870967741935}, {"YearMonth": "2007-09", "AOVBucket": "30-35", "count": 19, "revenue": 623.4454049999999, "avgShipping": 1.1578947368421053, "pctFreeShip": 0.47368421052631576}, {"YearMonth": "2007-09", "AOVBucket": "35-40", "count": 10, "revenue": 369.186228, "avgShipping": 1.1, "pctFreeShip": 0.5}, {"YearMonth": "2007-09", "AOVBucket": "40-50", "count": 19, "revenue": 858.439107, "avgShipping": 1.2105263157894737, "pctFreeShip": 0.42105263157894735}, {"YearMonth": "2007-09", "AOVBucket": "50-60", "count": 7, "revenue": 377.306795, "avgShipping": 1.2857142857142858, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2007-09", "AOVBucket": "60-75", "count": 4, "revenue": 269.003001, "avgShipping": 2.25, "pctFreeShip": 0.0}, {"YearMonth": "2007-09", "AOVBucket": "75-100", "count": 3, "revenue": 268.192606, "avgShipping": 0.6666666666666666, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2007-10", "AOVBucket": "5-10", "count": 27, "revenue": 231.0479, "avgShipping": 2.1481481481481484, "pctFreeShip": 0.0}, {"YearMonth": "2007-10", "AOVBucket": "10-15", "count": 182, "revenue": 2292.43, "avgShipping": 1.0824175824175823, "pctFreeShip": 0.6043956043956044}, {"YearMonth": "2007-10", "AOVBucket": "15-20", "count": 78, "revenue": 1375.269841, "avgShipping": 0.8205128205128205, "pctFreeShip": 0.6025641025641025}, {"YearMonth": "2007-10", "AOVBucket": "20-25", "count": 71, "revenue": 1591.437811, "avgShipping": 0.6619718309859155, "pctFreeShip": 0.676056338028169}, {"YearMonth": "2007-10", "AOVBucket": "25-30", "count": 31, "revenue": 850.707306, "avgShipping": 0.6451612903225806, "pctFreeShip": 0.6774193548387096}, {"YearMonth": "2007-10", "AOVBucket": "30-35", "count": 15, "revenue": 495.450208, "avgShipping": 1.2, "pctFreeShip": 0.4}, {"YearMonth": "2007-10", "AOVBucket": "35-40", "count": 7, "revenue": 272.050303, "avgShipping": 1.0, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2007-10", "AOVBucket": "40-50", "count": 26, "revenue": 1152.140645, "avgShipping": 1.1153846153846154, "pctFreeShip": 0.5384615384615384}, {"YearMonth": "2007-10", "AOVBucket": "50-60", "count": 7, "revenue": 391.344301, "avgShipping": 1.7142857142857142, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2007-10", "AOVBucket": "60-75", "count": 7, "revenue": 464.39680699999997, "avgShipping": 0.8571428571428571, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2007-10", "AOVBucket": "75-100", "count": 2, "revenue": 153.350999, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2007-10", "AOVBucket": "100-150", "count": 2, "revenue": 228.545294, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2007-10", "AOVBucket": "500+", "count": 1, "revenue": 1201.780426, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2007-11", "AOVBucket": "5-10", "count": 27, "revenue": 229.0476, "avgShipping": 2.5185185185185186, "pctFreeShip": 0.0}, {"YearMonth": "2007-11", "AOVBucket": "10-15", "count": 183, "revenue": 2270.6202, "avgShipping": 0.8688524590163934, "pctFreeShip": 0.6612021857923497}, {"YearMonth": "2007-11", "AOVBucket": "15-20", "count": 79, "revenue": 1413.093909, "avgShipping": 0.6329113924050633, "pctFreeShip": 0.6962025316455697}, {"YearMonth": "2007-11", "AOVBucket": "20-25", "count": 90, "revenue": 2007.595648, "avgShipping": 0.6333333333333333, "pctFreeShip": 0.7111111111111111}, {"YearMonth": "2007-11", "AOVBucket": "25-30", "count": 30, "revenue": 833.046513, "avgShipping": 0.7666666666666667, "pctFreeShip": 0.6333333333333333}, {"YearMonth": "2007-11", "AOVBucket": "30-35", "count": 17, "revenue": 554.061818, "avgShipping": 1.2941176470588236, "pctFreeShip": 0.4117647058823529}, {"YearMonth": "2007-11", "AOVBucket": "35-40", "count": 5, "revenue": 182.551803, "avgShipping": 0.8, "pctFreeShip": 0.6}, {"YearMonth": "2007-11", "AOVBucket": "40-50", "count": 16, "revenue": 719.537501, "avgShipping": 0.8125, "pctFreeShip": 0.625}, {"YearMonth": "2007-11", "AOVBucket": "50-60", "count": 13, "revenue": 704.143599, "avgShipping": 1.2307692307692308, "pctFreeShip": 0.46153846153846156}, {"YearMonth": "2007-11", "AOVBucket": "60-75", "count": 3, "revenue": 206.298697, "avgShipping": 0.6666666666666666, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2007-11", "AOVBucket": "100-150", "count": 4, "revenue": 499.887498, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2007-12", "AOVBucket": "5-10", "count": 28, "revenue": 244.6957, "avgShipping": 2.5357142857142856, "pctFreeShip": 0.0}, {"YearMonth": "2007-12", "AOVBucket": "10-15", "count": 148, "revenue": 1870.2277, "avgShipping": 1.2702702702702702, "pctFreeShip": 0.5202702702702703}, {"YearMonth": "2007-12", "AOVBucket": "15-20", "count": 54, "revenue": 949.3423, "avgShipping": 0.8888888888888888, "pctFreeShip": 0.5740740740740741}, {"YearMonth": "2007-12", "AOVBucket": "20-25", "count": 51, "revenue": 1142.2825189999999, "avgShipping": 0.8431372549019608, "pctFreeShip": 0.6078431372549019}, {"YearMonth": "2007-12", "AOVBucket": "25-30", "count": 28, "revenue": 776.947801, "avgShipping": 1.0, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2007-12", "AOVBucket": "30-35", "count": 26, "revenue": 845.097103, "avgShipping": 1.0, "pctFreeShip": 0.5384615384615384}, {"YearMonth": "2007-12", "AOVBucket": "35-40", "count": 15, "revenue": 564.9488, "avgShipping": 0.9333333333333333, "pctFreeShip": 0.5333333333333333}, {"YearMonth": "2007-12", "AOVBucket": "40-50", "count": 14, "revenue": 629.1876, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2007-12", "AOVBucket": "50-60", "count": 4, "revenue": 209.954301, "avgShipping": 1.75, "pctFreeShip": 0.25}, {"YearMonth": "2007-12", "AOVBucket": "60-75", "count": 2, "revenue": 128.700801, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2007-12", "AOVBucket": "75-100", "count": 4, "revenue": 345.362222, "avgShipping": 0.5, "pctFreeShip": 0.75}, {"YearMonth": "2008-01", "AOVBucket": "5-10", "count": 50, "revenue": 414.1155, "avgShipping": 2.1, "pctFreeShip": 0.0}, {"YearMonth": "2008-01", "AOVBucket": "10-15", "count": 245, "revenue": 3132.4922, "avgShipping": 1.0775510204081633, "pctFreeShip": 0.6081632653061224}, {"YearMonth": "2008-01", "AOVBucket": "15-20", "count": 111, "revenue": 1986.185217, "avgShipping": 0.6126126126126126, "pctFreeShip": 0.7117117117117117}, {"YearMonth": "2008-01", "AOVBucket": "20-25", "count": 117, "revenue": 2654.0020919999997, "avgShipping": 0.8974358974358975, "pctFreeShip": 0.5726495726495726}, {"YearMonth": "2008-01", "AOVBucket": "25-30", "count": 52, "revenue": 1421.960513, "avgShipping": 0.8846153846153846, "pctFreeShip": 0.5961538461538461}, {"YearMonth": "2008-01", "AOVBucket": "30-35", "count": 17, "revenue": 562.2485, "avgShipping": 0.47058823529411764, "pctFreeShip": 0.7647058823529411}, {"YearMonth": "2008-01", "AOVBucket": "35-40", "count": 21, "revenue": 787.5339, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.38095238095238093}, {"YearMonth": "2008-01", "AOVBucket": "40-50", "count": 25, "revenue": 1110.8015, "avgShipping": 1.04, "pctFreeShip": 0.52}, {"YearMonth": "2008-01", "AOVBucket": "50-60", "count": 3, "revenue": 166.045302, "avgShipping": 1.6666666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2008-01", "AOVBucket": "60-75", "count": 8, "revenue": 522.107796, "avgShipping": 1.5, "pctFreeShip": 0.375}, {"YearMonth": "2008-01", "AOVBucket": "75-100", "count": 4, "revenue": 341.5061, "avgShipping": 1.5, "pctFreeShip": 0.25}, {"YearMonth": "2008-01", "AOVBucket": "100-150", "count": 1, "revenue": 142.5592, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-02", "AOVBucket": "5-10", "count": 32, "revenue": 274.3087, "avgShipping": 2.375, "pctFreeShip": 0.0}, {"YearMonth": "2008-02", "AOVBucket": "10-15", "count": 212, "revenue": 2711.0935, "avgShipping": 1.1084905660377358, "pctFreeShip": 0.5518867924528302}, {"YearMonth": "2008-02", "AOVBucket": "15-20", "count": 75, "revenue": 1343.805505, "avgShipping": 1.0533333333333332, "pctFreeShip": 0.52}, {"YearMonth": "2008-02", "AOVBucket": "20-25", "count": 87, "revenue": 1957.189552, "avgShipping": 0.8045977011494253, "pctFreeShip": 0.6091954022988506}, {"YearMonth": "2008-02", "AOVBucket": "25-30", "count": 35, "revenue": 977.549309, "avgShipping": 1.3142857142857143, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2008-02", "AOVBucket": "30-35", "count": 20, "revenue": 650.008102, "avgShipping": 1.35, "pctFreeShip": 0.4}, {"YearMonth": "2008-02", "AOVBucket": "35-40", "count": 20, "revenue": 754.901508, "avgShipping": 1.4, "pctFreeShip": 0.35}, {"YearMonth": "2008-02", "AOVBucket": "40-50", "count": 21, "revenue": 940.886598, "avgShipping": 1.619047619047619, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2008-02", "AOVBucket": "50-60", "count": 7, "revenue": 390.49940100000003, "avgShipping": 1.2857142857142858, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2008-02", "AOVBucket": "60-75", "count": 9, "revenue": 599.246602, "avgShipping": 1.1111111111111112, "pctFreeShip": 0.5555555555555556}, {"YearMonth": "2008-02", "AOVBucket": "100-150", "count": 1, "revenue": 103.501403, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2008-02", "AOVBucket": "150-200", "count": 2, "revenue": 329.0511, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2008-03", "AOVBucket": "<5", "count": 2, "revenue": 8.9, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2008-03", "AOVBucket": "5-10", "count": 40, "revenue": 337.4047, "avgShipping": 2.375, "pctFreeShip": 0.0}, {"YearMonth": "2008-03", "AOVBucket": "10-15", "count": 266, "revenue": 3412.5639, "avgShipping": 1.244360902255639, "pctFreeShip": 0.5225563909774437}, {"YearMonth": "2008-03", "AOVBucket": "15-20", "count": 101, "revenue": 1824.280912, "avgShipping": 0.7227722772277227, "pctFreeShip": 0.6633663366336634}, {"YearMonth": "2008-03", "AOVBucket": "20-25", "count": 100, "revenue": 2241.063131, "avgShipping": 0.79, "pctFreeShip": 0.62}, {"YearMonth": "2008-03", "AOVBucket": "25-30", "count": 34, "revenue": 953.903209, "avgShipping": 1.1470588235294117, "pctFreeShip": 0.5}, {"YearMonth": "2008-03", "AOVBucket": "30-35", "count": 22, "revenue": 707.235558, "avgShipping": 0.9090909090909091, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2008-03", "AOVBucket": "35-40", "count": 16, "revenue": 600.762, "avgShipping": 1.375, "pctFreeShip": 0.375}, {"YearMonth": "2008-03", "AOVBucket": "40-50", "count": 20, "revenue": 912.222596, "avgShipping": 0.75, "pctFreeShip": 0.65}, {"YearMonth": "2008-03", "AOVBucket": "50-60", "count": 11, "revenue": 602.893297, "avgShipping": 1.0909090909090908, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2008-03", "AOVBucket": "60-75", "count": 6, "revenue": 373.804302, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2008-03", "AOVBucket": "75-100", "count": 5, "revenue": 417.011098, "avgShipping": 2.0, "pctFreeShip": 0.2}, {"YearMonth": "2008-03", "AOVBucket": "100-150", "count": 1, "revenue": 107.5, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-03", "AOVBucket": "150-200", "count": 1, "revenue": 169.046997, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2008-04", "AOVBucket": "5-10", "count": 37, "revenue": 323.0627, "avgShipping": 2.2432432432432434, "pctFreeShip": 0.0}, {"YearMonth": "2008-04", "AOVBucket": "10-15", "count": 270, "revenue": 3454.6102, "avgShipping": 1.0740740740740742, "pctFreeShip": 0.5666666666666667}, {"YearMonth": "2008-04", "AOVBucket": "15-20", "count": 80, "revenue": 1447.954412, "avgShipping": 0.6125, "pctFreeShip": 0.7125}, {"YearMonth": "2008-04", "AOVBucket": "20-25", "count": 82, "revenue": 1879.066628, "avgShipping": 0.8536585365853658, "pctFreeShip": 0.5975609756097561}, {"YearMonth": "2008-04", "AOVBucket": "25-30", "count": 33, "revenue": 895.349408, "avgShipping": 0.696969696969697, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2008-04", "AOVBucket": "30-35", "count": 26, "revenue": 859.1429049999999, "avgShipping": 1.1923076923076923, "pctFreeShip": 0.4230769230769231}, {"YearMonth": "2008-04", "AOVBucket": "35-40", "count": 13, "revenue": 493.548604, "avgShipping": 0.6923076923076923, "pctFreeShip": 0.6923076923076923}, {"YearMonth": "2008-04", "AOVBucket": "40-50", "count": 16, "revenue": 715.4832, "avgShipping": 0.875, "pctFreeShip": 0.5625}, {"YearMonth": "2008-04", "AOVBucket": "50-60", "count": 5, "revenue": 269.691899, "avgShipping": 1.2, "pctFreeShip": 0.4}, {"YearMonth": "2008-04", "AOVBucket": "60-75", "count": 2, "revenue": 129.64869900000002, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2008-04", "AOVBucket": "150-200", "count": 1, "revenue": 193.495004, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2008-05", "AOVBucket": "5-10", "count": 47, "revenue": 422.8547, "avgShipping": 2.4893617021276597, "pctFreeShip": 0.0}, {"YearMonth": "2008-05", "AOVBucket": "10-15", "count": 255, "revenue": 3288.7271, "avgShipping": 1.3098039215686275, "pctFreeShip": 0.4980392156862745}, {"YearMonth": "2008-05", "AOVBucket": "15-20", "count": 104, "revenue": 1847.947414, "avgShipping": 0.8557692307692307, "pctFreeShip": 0.5769230769230769}, {"YearMonth": "2008-05", "AOVBucket": "20-25", "count": 91, "revenue": 2040.7177299999998, "avgShipping": 0.945054945054945, "pctFreeShip": 0.5494505494505495}, {"YearMonth": "2008-05", "AOVBucket": "25-30", "count": 46, "revenue": 1282.7721139999999, "avgShipping": 0.9347826086956522, "pctFreeShip": 0.6086956521739131}, {"YearMonth": "2008-05", "AOVBucket": "30-35", "count": 20, "revenue": 658.008604, "avgShipping": 1.05, "pctFreeShip": 0.5}, {"YearMonth": "2008-05", "AOVBucket": "35-40", "count": 15, "revenue": 562.456211, "avgShipping": 0.5333333333333333, "pctFreeShip": 0.7333333333333333}, {"YearMonth": "2008-05", "AOVBucket": "40-50", "count": 19, "revenue": 853.794601, "avgShipping": 1.0526315789473684, "pctFreeShip": 0.5263157894736842}, {"YearMonth": "2008-05", "AOVBucket": "50-60", "count": 6, "revenue": 329.065298, "avgShipping": 0.8333333333333334, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2008-05", "AOVBucket": "60-75", "count": 6, "revenue": 406.6876, "avgShipping": 2.3333333333333335, "pctFreeShip": 0.0}, {"YearMonth": "2008-05", "AOVBucket": "75-100", "count": 3, "revenue": 249.103504, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2008-05", "AOVBucket": "100-150", "count": 1, "revenue": 111.499003, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-06", "AOVBucket": "5-10", "count": 60, "revenue": 488.1073, "avgShipping": 2.4833333333333334, "pctFreeShip": 0.0}, {"YearMonth": "2008-06", "AOVBucket": "10-15", "count": 340, "revenue": 4360.224999999999, "avgShipping": 1.2088235294117646, "pctFreeShip": 0.5294117647058824}, {"YearMonth": "2008-06", "AOVBucket": "15-20", "count": 193, "revenue": 3454.947948, "avgShipping": 0.7875647668393783, "pctFreeShip": 0.6269430051813472}, {"YearMonth": "2008-06", "AOVBucket": "20-25", "count": 134, "revenue": 3015.887553, "avgShipping": 1.1492537313432836, "pctFreeShip": 0.44776119402985076}, {"YearMonth": "2008-06", "AOVBucket": "25-30", "count": 50, "revenue": 1404.594198, "avgShipping": 0.76, "pctFreeShip": 0.64}, {"YearMonth": "2008-06", "AOVBucket": "30-35", "count": 34, "revenue": 1122.450906, "avgShipping": 1.0294117647058822, "pctFreeShip": 0.5}, {"YearMonth": "2008-06", "AOVBucket": "35-40", "count": 21, "revenue": 793.761715, "avgShipping": 1.1428571428571428, "pctFreeShip": 0.47619047619047616}, {"YearMonth": "2008-06", "AOVBucket": "40-50", "count": 17, "revenue": 765.836097, "avgShipping": 0.9411764705882353, "pctFreeShip": 0.5882352941176471}, {"YearMonth": "2008-06", "AOVBucket": "50-60", "count": 9, "revenue": 482.125423, "avgShipping": 1.1111111111111112, "pctFreeShip": 0.4444444444444444}, {"YearMonth": "2008-06", "AOVBucket": "60-75", "count": 9, "revenue": 603.442304, "avgShipping": 0.8888888888888888, "pctFreeShip": 0.5555555555555556}, {"YearMonth": "2008-06", "AOVBucket": "75-100", "count": 7, "revenue": 614.999398, "avgShipping": 1.7142857142857142, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2008-06", "AOVBucket": "100-150", "count": 2, "revenue": 213.599502, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-06", "AOVBucket": "150-200", "count": 1, "revenue": 164.750497, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2008-07", "AOVBucket": "<5", "count": 3, "revenue": 14.23509, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2008-07", "AOVBucket": "5-10", "count": 56, "revenue": 452.20501, "avgShipping": 2.232142857142857, "pctFreeShip": 0.03571428571428571}, {"YearMonth": "2008-07", "AOVBucket": "10-15", "count": 303, "revenue": 3835.9316, "avgShipping": 1.5247524752475248, "pctFreeShip": 0.44884488448844884}, {"YearMonth": "2008-07", "AOVBucket": "15-20", "count": 214, "revenue": 3901.364624, "avgShipping": 0.514018691588785, "pctFreeShip": 0.7523364485981309}, {"YearMonth": "2008-07", "AOVBucket": "20-25", "count": 106, "revenue": 2345.261357, "avgShipping": 1.3584905660377358, "pctFreeShip": 0.37735849056603776}, {"YearMonth": "2008-07", "AOVBucket": "25-30", "count": 53, "revenue": 1492.599362, "avgShipping": 1.0377358490566038, "pctFreeShip": 0.5094339622641509}, {"YearMonth": "2008-07", "AOVBucket": "30-35", "count": 43, "revenue": 1402.417066, "avgShipping": 1.2790697674418605, "pctFreeShip": 0.4186046511627907}, {"YearMonth": "2008-07", "AOVBucket": "35-40", "count": 18, "revenue": 682.058248, "avgShipping": 0.6111111111111112, "pctFreeShip": 0.7222222222222222}, {"YearMonth": "2008-07", "AOVBucket": "40-50", "count": 26, "revenue": 1140.896328, "avgShipping": 1.0384615384615385, "pctFreeShip": 0.5384615384615384}, {"YearMonth": "2008-07", "AOVBucket": "50-60", "count": 5, "revenue": 275.3451, "avgShipping": 1.2, "pctFreeShip": 0.4}, {"YearMonth": "2008-07", "AOVBucket": "60-75", "count": 3, "revenue": 205.54077900000001, "avgShipping": 1.6666666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2008-07", "AOVBucket": "75-100", "count": 1, "revenue": 75.600199, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-07", "AOVBucket": "100-150", "count": 2, "revenue": 215.099397, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2008-08", "AOVBucket": "<5", "count": 45, "revenue": 179.095, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-08", "AOVBucket": "5-10", "count": 103, "revenue": 815.63845, "avgShipping": 2.6990291262135924, "pctFreeShip": 0.02912621359223301}, {"YearMonth": "2008-08", "AOVBucket": "10-15", "count": 453, "revenue": 5657.910995, "avgShipping": 1.4613686534216335, "pctFreeShip": 0.4304635761589404}, {"YearMonth": "2008-08", "AOVBucket": "15-20", "count": 212, "revenue": 3891.131006, "avgShipping": 0.6273584905660378, "pctFreeShip": 0.6981132075471698}, {"YearMonth": "2008-08", "AOVBucket": "20-25", "count": 149, "revenue": 3266.991236, "avgShipping": 1.167785234899329, "pctFreeShip": 0.42953020134228187}, {"YearMonth": "2008-08", "AOVBucket": "25-30", "count": 59, "revenue": 1643.518854, "avgShipping": 1.1016949152542372, "pctFreeShip": 0.4745762711864407}, {"YearMonth": "2008-08", "AOVBucket": "30-35", "count": 44, "revenue": 1414.964799, "avgShipping": 0.9772727272727273, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2008-08", "AOVBucket": "35-40", "count": 30, "revenue": 1139.079103, "avgShipping": 1.0666666666666667, "pctFreeShip": 0.5333333333333333}, {"YearMonth": "2008-08", "AOVBucket": "40-50", "count": 25, "revenue": 1131.098596, "avgShipping": 1.36, "pctFreeShip": 0.4}, {"YearMonth": "2008-08", "AOVBucket": "50-60", "count": 9, "revenue": 484.690307, "avgShipping": 0.4444444444444444, "pctFreeShip": 0.7777777777777778}, {"YearMonth": "2008-08", "AOVBucket": "60-75", "count": 9, "revenue": 590.987, "avgShipping": 1.6666666666666667, "pctFreeShip": 0.2222222222222222}, {"YearMonth": "2008-08", "AOVBucket": "75-100", "count": 5, "revenue": 422.55190300000004, "avgShipping": 2.2, "pctFreeShip": 0.2}, {"YearMonth": "2008-08", "AOVBucket": "100-150", "count": 3, "revenue": 373.299801, "avgShipping": 1.6666666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2008-08", "AOVBucket": "150-200", "count": 1, "revenue": 191.399999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2008-09", "AOVBucket": "5-10", "count": 59, "revenue": 490.15299999999996, "avgShipping": 2.406779661016949, "pctFreeShip": 0.01694915254237288}, {"YearMonth": "2008-09", "AOVBucket": "10-15", "count": 370, "revenue": 4619.8555, "avgShipping": 1.5243243243243243, "pctFreeShip": 0.4189189189189189}, {"YearMonth": "2008-09", "AOVBucket": "15-20", "count": 217, "revenue": 3931.020356, "avgShipping": 0.7096774193548387, "pctFreeShip": 0.6589861751152074}, {"YearMonth": "2008-09", "AOVBucket": "20-25", "count": 127, "revenue": 2797.467242, "avgShipping": 1.204724409448819, "pctFreeShip": 0.4409448818897638}, {"YearMonth": "2008-09", "AOVBucket": "25-30", "count": 67, "revenue": 1873.05184, "avgShipping": 0.9552238805970149, "pctFreeShip": 0.5373134328358209}, {"YearMonth": "2008-09", "AOVBucket": "30-35", "count": 38, "revenue": 1226.986309, "avgShipping": 0.868421052631579, "pctFreeShip": 0.6052631578947368}, {"YearMonth": "2008-09", "AOVBucket": "35-40", "count": 28, "revenue": 1058.097897, "avgShipping": 0.6071428571428571, "pctFreeShip": 0.7142857142857143}, {"YearMonth": "2008-09", "AOVBucket": "40-50", "count": 34, "revenue": 1510.870891, "avgShipping": 1.1176470588235294, "pctFreeShip": 0.5588235294117647}, {"YearMonth": "2008-09", "AOVBucket": "50-60", "count": 8, "revenue": 440.2435, "avgShipping": 0.75, "pctFreeShip": 0.625}, {"YearMonth": "2008-09", "AOVBucket": "60-75", "count": 11, "revenue": 740.215304, "avgShipping": 1.4545454545454546, "pctFreeShip": 0.36363636363636365}, {"YearMonth": "2008-09", "AOVBucket": "75-100", "count": 2, "revenue": 176.549999, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2008-09", "AOVBucket": "100-150", "count": 2, "revenue": 229.30019900000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2008-09", "AOVBucket": "200-500", "count": 1, "revenue": 200.699703, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-10", "AOVBucket": "<5", "count": 1, "revenue": 4.45, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-10", "AOVBucket": "5-10", "count": 73, "revenue": 605.5554, "avgShipping": 2.410958904109589, "pctFreeShip": 0.0}, {"YearMonth": "2008-10", "AOVBucket": "10-15", "count": 427, "revenue": 5306.8092, "avgShipping": 1.3817330210772834, "pctFreeShip": 0.4519906323185012}, {"YearMonth": "2008-10", "AOVBucket": "15-20", "count": 290, "revenue": 5210.343553, "avgShipping": 0.6086206896551725, "pctFreeShip": 0.7172413793103448}, {"YearMonth": "2008-10", "AOVBucket": "20-25", "count": 118, "revenue": 2581.764144, "avgShipping": 1.2627118644067796, "pctFreeShip": 0.4152542372881356}, {"YearMonth": "2008-10", "AOVBucket": "25-30", "count": 149, "revenue": 4181.451735, "avgShipping": 0.7516778523489933, "pctFreeShip": 0.6577181208053692}, {"YearMonth": "2008-10", "AOVBucket": "30-35", "count": 61, "revenue": 1973.970991, "avgShipping": 1.1147540983606556, "pctFreeShip": 0.45901639344262296}, {"YearMonth": "2008-10", "AOVBucket": "35-40", "count": 33, "revenue": 1236.678614, "avgShipping": 1.196969696969697, "pctFreeShip": 0.5151515151515151}, {"YearMonth": "2008-10", "AOVBucket": "40-50", "count": 32, "revenue": 1414.561402, "avgShipping": 1.28125, "pctFreeShip": 0.40625}, {"YearMonth": "2008-10", "AOVBucket": "50-60", "count": 14, "revenue": 770.846599, "avgShipping": 1.3571428571428572, "pctFreeShip": 0.35714285714285715}, {"YearMonth": "2008-10", "AOVBucket": "60-75", "count": 11, "revenue": 724.606113, "avgShipping": 1.0909090909090908, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2008-10", "AOVBucket": "75-100", "count": 5, "revenue": 432.451999, "avgShipping": 2.2, "pctFreeShip": 0.0}, {"YearMonth": "2008-10", "AOVBucket": "100-150", "count": 3, "revenue": 369.609703, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2008-11", "AOVBucket": "<5", "count": 3, "revenue": 13.05, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-11", "AOVBucket": "5-10", "count": 94, "revenue": 791.5036, "avgShipping": 2.574468085106383, "pctFreeShip": 0.0}, {"YearMonth": "2008-11", "AOVBucket": "10-15", "count": 433, "revenue": 5439.87255, "avgShipping": 1.584295612009238, "pctFreeShip": 0.4064665127020785}, {"YearMonth": "2008-11", "AOVBucket": "15-20", "count": 259, "revenue": 4643.419241, "avgShipping": 0.7239382239382239, "pctFreeShip": 0.667953667953668}, {"YearMonth": "2008-11", "AOVBucket": "20-25", "count": 129, "revenue": 2849.550134, "avgShipping": 1.37984496124031, "pctFreeShip": 0.3875968992248062}, {"YearMonth": "2008-11", "AOVBucket": "25-30", "count": 143, "revenue": 4064.998929, "avgShipping": 0.8321678321678322, "pctFreeShip": 0.6153846153846154}, {"YearMonth": "2008-11", "AOVBucket": "30-35", "count": 85, "revenue": 2789.032312, "avgShipping": 1.4352941176470588, "pctFreeShip": 0.4117647058823529}, {"YearMonth": "2008-11", "AOVBucket": "35-40", "count": 38, "revenue": 1443.841904, "avgShipping": 1.0657894736842106, "pctFreeShip": 0.5526315789473685}, {"YearMonth": "2008-11", "AOVBucket": "40-50", "count": 34, "revenue": 1553.922436, "avgShipping": 0.9705882352941176, "pctFreeShip": 0.5882352941176471}, {"YearMonth": "2008-11", "AOVBucket": "50-60", "count": 20, "revenue": 1090.151395, "avgShipping": 1.275, "pctFreeShip": 0.55}, {"YearMonth": "2008-11", "AOVBucket": "60-75", "count": 4, "revenue": 258.292501, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2008-11", "AOVBucket": "75-100", "count": 5, "revenue": 389.41952000000003, "avgShipping": 1.4, "pctFreeShip": 0.4}, {"YearMonth": "2008-11", "AOVBucket": "100-150", "count": 1, "revenue": 113.449999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2008-12", "AOVBucket": "<5", "count": 1, "revenue": 4.3979, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2008-12", "AOVBucket": "5-10", "count": 78, "revenue": 621.94763, "avgShipping": 2.5384615384615383, "pctFreeShip": 0.0}, {"YearMonth": "2008-12", "AOVBucket": "10-15", "count": 352, "revenue": 4342.544, "avgShipping": 1.7698863636363635, "pctFreeShip": 0.3806818181818182}, {"YearMonth": "2008-12", "AOVBucket": "15-20", "count": 211, "revenue": 3711.095425, "avgShipping": 0.9928909952606635, "pctFreeShip": 0.6350710900473934}, {"YearMonth": "2008-12", "AOVBucket": "20-25", "count": 98, "revenue": 2151.325422, "avgShipping": 1.3979591836734695, "pctFreeShip": 0.41836734693877553}, {"YearMonth": "2008-12", "AOVBucket": "25-30", "count": 102, "revenue": 2847.560333, "avgShipping": 1.4509803921568627, "pctFreeShip": 0.5}, {"YearMonth": "2008-12", "AOVBucket": "30-35", "count": 49, "revenue": 1568.119722, "avgShipping": 1.6734693877551021, "pctFreeShip": 0.32653061224489793}, {"YearMonth": "2008-12", "AOVBucket": "35-40", "count": 30, "revenue": 1103.10801, "avgShipping": 1.4833333333333334, "pctFreeShip": 0.43333333333333335}, {"YearMonth": "2008-12", "AOVBucket": "40-50", "count": 33, "revenue": 1462.407698, "avgShipping": 1.9696969696969697, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2008-12", "AOVBucket": "50-60", "count": 15, "revenue": 832.941999, "avgShipping": 1.1333333333333333, "pctFreeShip": 0.4666666666666667}, {"YearMonth": "2008-12", "AOVBucket": "60-75", "count": 12, "revenue": 790.433303, "avgShipping": 2.0, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2008-12", "AOVBucket": "75-100", "count": 4, "revenue": 357.141095, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2008-12", "AOVBucket": "100-150", "count": 2, "revenue": 280.637797, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2008-12", "AOVBucket": "200-500", "count": 1, "revenue": 241.298494, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2009-01", "AOVBucket": "<5", "count": 1, "revenue": 4.3979, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2009-01", "AOVBucket": "5-10", "count": 124, "revenue": 1014.71464, "avgShipping": 2.4919354838709675, "pctFreeShip": 0.016129032258064516}, {"YearMonth": "2009-01", "AOVBucket": "10-15", "count": 554, "revenue": 6900.69454, "avgShipping": 1.7238267148014441, "pctFreeShip": 0.38267148014440433}, {"YearMonth": "2009-01", "AOVBucket": "15-20", "count": 360, "revenue": 6370.170845, "avgShipping": 0.8125, "pctFreeShip": 0.6416666666666667}, {"YearMonth": "2009-01", "AOVBucket": "20-25", "count": 207, "revenue": 4506.578826, "avgShipping": 1.6304347826086956, "pctFreeShip": 0.34299516908212563}, {"YearMonth": "2009-01", "AOVBucket": "25-30", "count": 183, "revenue": 5088.569041, "avgShipping": 1.2377049180327868, "pctFreeShip": 0.5409836065573771}, {"YearMonth": "2009-01", "AOVBucket": "30-35", "count": 84, "revenue": 2712.084718, "avgShipping": 1.8095238095238095, "pctFreeShip": 0.38095238095238093}, {"YearMonth": "2009-01", "AOVBucket": "35-40", "count": 51, "revenue": 1889.236814, "avgShipping": 1.3627450980392157, "pctFreeShip": 0.47058823529411764}, {"YearMonth": "2009-01", "AOVBucket": "40-50", "count": 45, "revenue": 2017.345112, "avgShipping": 1.6, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2009-01", "AOVBucket": "50-60", "count": 22, "revenue": 1208.77504, "avgShipping": 2.159090909090909, "pctFreeShip": 0.22727272727272727}, {"YearMonth": "2009-01", "AOVBucket": "60-75", "count": 11, "revenue": 730.149499, "avgShipping": 2.1818181818181817, "pctFreeShip": 0.18181818181818182}, {"YearMonth": "2009-01", "AOVBucket": "75-100", "count": 19, "revenue": 1633.370598, "avgShipping": 2.6315789473684212, "pctFreeShip": 0.21052631578947367}, {"YearMonth": "2009-01", "AOVBucket": "100-150", "count": 6, "revenue": 743.941997, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2009-01", "AOVBucket": "200-500", "count": 1, "revenue": 277.469995, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2009-02", "AOVBucket": "5-10", "count": 115, "revenue": 911.37176, "avgShipping": 2.391304347826087, "pctFreeShip": 0.02608695652173913}, {"YearMonth": "2009-02", "AOVBucket": "10-15", "count": 491, "revenue": 6068.11907, "avgShipping": 1.6965376782077393, "pctFreeShip": 0.3890020366598778}, {"YearMonth": "2009-02", "AOVBucket": "15-20", "count": 267, "revenue": 4736.814752, "avgShipping": 0.7640449438202247, "pctFreeShip": 0.6779026217228464}, {"YearMonth": "2009-02", "AOVBucket": "20-25", "count": 187, "revenue": 4113.046424, "avgShipping": 1.46524064171123, "pctFreeShip": 0.37967914438502676}, {"YearMonth": "2009-02", "AOVBucket": "25-30", "count": 192, "revenue": 5323.791723, "avgShipping": 1.1484375, "pctFreeShip": 0.5052083333333334}, {"YearMonth": "2009-02", "AOVBucket": "30-35", "count": 76, "revenue": 2438.19303, "avgShipping": 1.4342105263157894, "pctFreeShip": 0.3815789473684211}, {"YearMonth": "2009-02", "AOVBucket": "35-40", "count": 41, "revenue": 1545.008101, "avgShipping": 1.0975609756097562, "pctFreeShip": 0.5121951219512195}, {"YearMonth": "2009-02", "AOVBucket": "40-50", "count": 44, "revenue": 1948.372304, "avgShipping": 1.5227272727272727, "pctFreeShip": 0.38636363636363635}, {"YearMonth": "2009-02", "AOVBucket": "50-60", "count": 33, "revenue": 1791.557808, "avgShipping": 1.4848484848484849, "pctFreeShip": 0.3939393939393939}, {"YearMonth": "2009-02", "AOVBucket": "60-75", "count": 19, "revenue": 1273.040802, "avgShipping": 1.868421052631579, "pctFreeShip": 0.3684210526315789}, {"YearMonth": "2009-02", "AOVBucket": "75-100", "count": 15, "revenue": 1283.458596, "avgShipping": 2.2, "pctFreeShip": 0.13333333333333333}, {"YearMonth": "2009-02", "AOVBucket": "100-150", "count": 4, "revenue": 495.594301, "avgShipping": 4.5, "pctFreeShip": 0.0}, {"YearMonth": "2009-02", "AOVBucket": "200-500", "count": 2, "revenue": 441.489094, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2009-02", "AOVBucket": "500+", "count": 1, "revenue": 529.522839, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2009-03", "AOVBucket": "<5", "count": 3, "revenue": 13.9893, "avgShipping": 0.6666666666666666, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2009-03", "AOVBucket": "5-10", "count": 111, "revenue": 901.0074999999999, "avgShipping": 2.5045045045045047, "pctFreeShip": 0.0}, {"YearMonth": "2009-03", "AOVBucket": "10-15", "count": 571, "revenue": 7106.3966, "avgShipping": 1.636602451838879, "pctFreeShip": 0.3905429071803853}, {"YearMonth": "2009-03", "AOVBucket": "15-20", "count": 353, "revenue": 6205.993415, "avgShipping": 0.8201133144475921, "pctFreeShip": 0.6912181303116147}, {"YearMonth": "2009-03", "AOVBucket": "20-25", "count": 189, "revenue": 4166.360433, "avgShipping": 1.7301587301587302, "pctFreeShip": 0.36507936507936506}, {"YearMonth": "2009-03", "AOVBucket": "25-30", "count": 208, "revenue": 5762.851123, "avgShipping": 0.8966346153846154, "pctFreeShip": 0.6778846153846154}, {"YearMonth": "2009-03", "AOVBucket": "30-35", "count": 96, "revenue": 3078.355425, "avgShipping": 1.671875, "pctFreeShip": 0.3229166666666667}, {"YearMonth": "2009-03", "AOVBucket": "35-40", "count": 63, "revenue": 2359.692006, "avgShipping": 1.1666666666666667, "pctFreeShip": 0.5396825396825397}, {"YearMonth": "2009-03", "AOVBucket": "40-50", "count": 63, "revenue": 2782.749496, "avgShipping": 1.619047619047619, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2009-03", "AOVBucket": "50-60", "count": 29, "revenue": 1600.085104, "avgShipping": 1.4827586206896552, "pctFreeShip": 0.5862068965517241}, {"YearMonth": "2009-03", "AOVBucket": "60-75", "count": 22, "revenue": 1441.242217, "avgShipping": 2.477272727272727, "pctFreeShip": 0.13636363636363635}, {"YearMonth": "2009-03", "AOVBucket": "75-100", "count": 10, "revenue": 874.433303, "avgShipping": 1.55, "pctFreeShip": 0.6}, {"YearMonth": "2009-03", "AOVBucket": "100-150", "count": 5, "revenue": 600.911598, "avgShipping": 1.6, "pctFreeShip": 0.4}, {"YearMonth": "2009-03", "AOVBucket": "150-200", "count": 2, "revenue": 342.121797, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2009-04", "AOVBucket": "<5", "count": 2, "revenue": 8.0681, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2009-04", "AOVBucket": "5-10", "count": 104, "revenue": 832.38809, "avgShipping": 2.5096153846153846, "pctFreeShip": 0.009615384615384616}, {"YearMonth": "2009-04", "AOVBucket": "10-15", "count": 506, "revenue": 6264.73765, "avgShipping": 1.6798418972332017, "pctFreeShip": 0.36561264822134387}, {"YearMonth": "2009-04", "AOVBucket": "15-20", "count": 360, "revenue": 6328.757923, "avgShipping": 0.8861111111111111, "pctFreeShip": 0.65}, {"YearMonth": "2009-04", "AOVBucket": "20-25", "count": 209, "revenue": 4578.4820899999995, "avgShipping": 1.5502392344497609, "pctFreeShip": 0.3492822966507177}, {"YearMonth": "2009-04", "AOVBucket": "25-30", "count": 238, "revenue": 6639.455822, "avgShipping": 1.0378151260504203, "pctFreeShip": 0.5546218487394958}, {"YearMonth": "2009-04", "AOVBucket": "30-35", "count": 86, "revenue": 2759.134838, "avgShipping": 1.627906976744186, "pctFreeShip": 0.32558139534883723}, {"YearMonth": "2009-04", "AOVBucket": "35-40", "count": 60, "revenue": 2220.781119, "avgShipping": 1.1666666666666667, "pctFreeShip": 0.55}, {"YearMonth": "2009-04", "AOVBucket": "40-50", "count": 62, "revenue": 2738.412759, "avgShipping": 1.25, "pctFreeShip": 0.4838709677419355}, {"YearMonth": "2009-04", "AOVBucket": "50-60", "count": 25, "revenue": 1371.045109, "avgShipping": 1.24, "pctFreeShip": 0.52}, {"YearMonth": "2009-04", "AOVBucket": "60-75", "count": 25, "revenue": 1614.6225160000001, "avgShipping": 1.68, "pctFreeShip": 0.4}, {"YearMonth": "2009-04", "AOVBucket": "75-100", "count": 13, "revenue": 1100.145108, "avgShipping": 1.8461538461538463, "pctFreeShip": 0.23076923076923078}, {"YearMonth": "2009-04", "AOVBucket": "100-150", "count": 6, "revenue": 681.116197, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2009-04", "AOVBucket": "150-200", "count": 1, "revenue": 158.114294, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2009-05", "AOVBucket": "<5", "count": 1, "revenue": 4.8447, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2009-05", "AOVBucket": "5-10", "count": 112, "revenue": 939.00107, "avgShipping": 2.4017857142857144, "pctFreeShip": 0.16071428571428573}, {"YearMonth": "2009-05", "AOVBucket": "10-15", "count": 626, "revenue": 7788.5359960000005, "avgShipping": 1.7068690095846646, "pctFreeShip": 0.4696485623003195}, {"YearMonth": "2009-05", "AOVBucket": "15-20", "count": 420, "revenue": 7290.582338, "avgShipping": 0.861904761904762, "pctFreeShip": 0.7071428571428572}, {"YearMonth": "2009-05", "AOVBucket": "20-25", "count": 269, "revenue": 5953.247255, "avgShipping": 1.4646840148698885, "pctFreeShip": 0.48698884758364314}, {"YearMonth": "2009-05", "AOVBucket": "25-30", "count": 260, "revenue": 7224.531733, "avgShipping": 1.0769230769230769, "pctFreeShip": 0.6230769230769231}, {"YearMonth": "2009-05", "AOVBucket": "30-35", "count": 113, "revenue": 3646.043384, "avgShipping": 2.168141592920354, "pctFreeShip": 0.2920353982300885}, {"YearMonth": "2009-05", "AOVBucket": "35-40", "count": 57, "revenue": 2115.532992, "avgShipping": 1.543859649122807, "pctFreeShip": 0.49122807017543857}, {"YearMonth": "2009-05", "AOVBucket": "40-50", "count": 72, "revenue": 3195.755355, "avgShipping": 1.9791666666666667, "pctFreeShip": 0.3888888888888889}, {"YearMonth": "2009-05", "AOVBucket": "50-60", "count": 40, "revenue": 2183.212148, "avgShipping": 1.65, "pctFreeShip": 0.475}, {"YearMonth": "2009-05", "AOVBucket": "60-75", "count": 17, "revenue": 1131.028008, "avgShipping": 1.7941176470588236, "pctFreeShip": 0.4117647058823529}, {"YearMonth": "2009-05", "AOVBucket": "75-100", "count": 16, "revenue": 1374.107048, "avgShipping": 3.875, "pctFreeShip": 0.1875}, {"YearMonth": "2009-05", "AOVBucket": "100-150", "count": 11, "revenue": 1402.317872, "avgShipping": 1.7727272727272727, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2009-05", "AOVBucket": "150-200", "count": 1, "revenue": 179.9476, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2009-06", "AOVBucket": "<5", "count": 3, "revenue": 14.4001, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2009-06", "AOVBucket": "5-10", "count": 113, "revenue": 937.75338, "avgShipping": 2.7212389380530975, "pctFreeShip": 0.02654867256637168}, {"YearMonth": "2009-06", "AOVBucket": "10-15", "count": 576, "revenue": 7220.42771, "avgShipping": 1.8107638888888888, "pctFreeShip": 0.4479166666666667}, {"YearMonth": "2009-06", "AOVBucket": "15-20", "count": 327, "revenue": 5699.444757, "avgShipping": 0.8149847094801224, "pctFreeShip": 0.7247706422018348}, {"YearMonth": "2009-06", "AOVBucket": "20-25", "count": 240, "revenue": 5279.845379, "avgShipping": 1.8229166666666667, "pctFreeShip": 0.38333333333333336}, {"YearMonth": "2009-06", "AOVBucket": "25-30", "count": 246, "revenue": 6824.191419, "avgShipping": 0.983739837398374, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2009-06", "AOVBucket": "30-35", "count": 132, "revenue": 4272.473325, "avgShipping": 2.0946969696969697, "pctFreeShip": 0.3712121212121212}, {"YearMonth": "2009-06", "AOVBucket": "35-40", "count": 35, "revenue": 1302.480988, "avgShipping": 2.0, "pctFreeShip": 0.4857142857142857}, {"YearMonth": "2009-06", "AOVBucket": "40-50", "count": 53, "revenue": 2398.392656, "avgShipping": 2.1320754716981134, "pctFreeShip": 0.5471698113207547}, {"YearMonth": "2009-06", "AOVBucket": "50-60", "count": 38, "revenue": 2076.307843, "avgShipping": 1.631578947368421, "pctFreeShip": 0.47368421052631576}, {"YearMonth": "2009-06", "AOVBucket": "60-75", "count": 25, "revenue": 1627.624039, "avgShipping": 1.54, "pctFreeShip": 0.48}, {"YearMonth": "2009-06", "AOVBucket": "75-100", "count": 8, "revenue": 690.90469, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2009-06", "AOVBucket": "100-150", "count": 6, "revenue": 750.073108, "avgShipping": 5.583333333333333, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2009-06", "AOVBucket": "150-200", "count": 2, "revenue": 313.03330300000005, "avgShipping": 13.5, "pctFreeShip": 0.0}, {"YearMonth": "2009-07", "AOVBucket": "5-10", "count": 104, "revenue": 850.4828, "avgShipping": 2.8173076923076925, "pctFreeShip": 0.019230769230769232}, {"YearMonth": "2009-07", "AOVBucket": "10-15", "count": 557, "revenue": 6945.18871, "avgShipping": 1.6355475763016158, "pctFreeShip": 0.4919210053859964}, {"YearMonth": "2009-07", "AOVBucket": "15-20", "count": 354, "revenue": 6195.6606, "avgShipping": 0.8488700564971752, "pctFreeShip": 0.6977401129943502}, {"YearMonth": "2009-07", "AOVBucket": "20-25", "count": 215, "revenue": 4750.978529, "avgShipping": 1.527906976744186, "pctFreeShip": 0.4511627906976744}, {"YearMonth": "2009-07", "AOVBucket": "25-30", "count": 257, "revenue": 7153.485606, "avgShipping": 0.9202334630350194, "pctFreeShip": 0.6653696498054474}, {"YearMonth": "2009-07", "AOVBucket": "30-35", "count": 116, "revenue": 3731.449268, "avgShipping": 2.0517241379310347, "pctFreeShip": 0.31896551724137934}, {"YearMonth": "2009-07", "AOVBucket": "35-40", "count": 67, "revenue": 2511.149058, "avgShipping": 1.507462686567164, "pctFreeShip": 0.5223880597014925}, {"YearMonth": "2009-07", "AOVBucket": "40-50", "count": 67, "revenue": 2972.728598, "avgShipping": 2.3656716417910446, "pctFreeShip": 0.43283582089552236}, {"YearMonth": "2009-07", "AOVBucket": "50-60", "count": 43, "revenue": 2362.998902, "avgShipping": 2.686046511627907, "pctFreeShip": 0.32558139534883723}, {"YearMonth": "2009-07", "AOVBucket": "60-75", "count": 25, "revenue": 1658.7676000000001, "avgShipping": 1.44, "pctFreeShip": 0.52}, {"YearMonth": "2009-07", "AOVBucket": "75-100", "count": 16, "revenue": 1398.511406, "avgShipping": 2.59375, "pctFreeShip": 0.1875}, {"YearMonth": "2009-07", "AOVBucket": "100-150", "count": 8, "revenue": 870.245695, "avgShipping": 2.8125, "pctFreeShip": 0.25}, {"YearMonth": "2009-07", "AOVBucket": "150-200", "count": 3, "revenue": 531.547187, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2009-07", "AOVBucket": "200-500", "count": 1, "revenue": 356.382808, "avgShipping": 23.0, "pctFreeShip": 0.0}, {"YearMonth": "2009-08", "AOVBucket": "<5", "count": 2, "revenue": 9.7426, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2009-08", "AOVBucket": "5-10", "count": 81, "revenue": 669.31921, "avgShipping": 2.728395061728395, "pctFreeShip": 0.06172839506172839}, {"YearMonth": "2009-08", "AOVBucket": "10-15", "count": 564, "revenue": 7097.40401, "avgShipping": 1.6906028368794326, "pctFreeShip": 0.4734042553191489}, {"YearMonth": "2009-08", "AOVBucket": "15-20", "count": 357, "revenue": 6307.872589, "avgShipping": 0.7394957983193278, "pctFreeShip": 0.7450980392156863}, {"YearMonth": "2009-08", "AOVBucket": "20-25", "count": 232, "revenue": 5099.438273, "avgShipping": 1.543103448275862, "pctFreeShip": 0.4353448275862069}, {"YearMonth": "2009-08", "AOVBucket": "25-30", "count": 253, "revenue": 6984.382938, "avgShipping": 1.1482213438735178, "pctFreeShip": 0.6047430830039525}, {"YearMonth": "2009-08", "AOVBucket": "30-35", "count": 127, "revenue": 4083.942604, "avgShipping": 1.9606299212598426, "pctFreeShip": 0.3700787401574803}, {"YearMonth": "2009-08", "AOVBucket": "35-40", "count": 69, "revenue": 2573.352749, "avgShipping": 1.6521739130434783, "pctFreeShip": 0.5217391304347826}, {"YearMonth": "2009-08", "AOVBucket": "40-50", "count": 78, "revenue": 3450.946149, "avgShipping": 1.5064102564102564, "pctFreeShip": 0.5128205128205128}, {"YearMonth": "2009-08", "AOVBucket": "50-60", "count": 47, "revenue": 2590.70601, "avgShipping": 1.2127659574468086, "pctFreeShip": 0.5957446808510638}, {"YearMonth": "2009-08", "AOVBucket": "60-75", "count": 21, "revenue": 1373.1009199999999, "avgShipping": 3.3095238095238093, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2009-08", "AOVBucket": "75-100", "count": 11, "revenue": 952.050761, "avgShipping": 4.0, "pctFreeShip": 0.36363636363636365}, {"YearMonth": "2009-08", "AOVBucket": "100-150", "count": 15, "revenue": 1757.316194, "avgShipping": 2.2666666666666666, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2009-08", "AOVBucket": "150-200", "count": 1, "revenue": 199.744501, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2009-09", "AOVBucket": "5-10", "count": 40, "revenue": 348.72399, "avgShipping": 2.6625, "pctFreeShip": 0.025}, {"YearMonth": "2009-09", "AOVBucket": "10-15", "count": 520, "revenue": 6513.82716, "avgShipping": 1.3490384615384616, "pctFreeShip": 0.5576923076923077}, {"YearMonth": "2009-09", "AOVBucket": "15-20", "count": 248, "revenue": 4373.130261, "avgShipping": 1.2862903225806452, "pctFreeShip": 0.5766129032258065}, {"YearMonth": "2009-09", "AOVBucket": "20-25", "count": 233, "revenue": 5185.654149, "avgShipping": 1.5665236051502145, "pctFreeShip": 0.4206008583690987}, {"YearMonth": "2009-09", "AOVBucket": "25-30", "count": 259, "revenue": 7199.481039, "avgShipping": 1.0714285714285714, "pctFreeShip": 0.6602316602316602}, {"YearMonth": "2009-09", "AOVBucket": "30-35", "count": 107, "revenue": 3422.598022, "avgShipping": 2.411214953271028, "pctFreeShip": 0.2523364485981308}, {"YearMonth": "2009-09", "AOVBucket": "35-40", "count": 45, "revenue": 1671.157663, "avgShipping": 1.4222222222222223, "pctFreeShip": 0.5111111111111111}, {"YearMonth": "2009-09", "AOVBucket": "40-50", "count": 79, "revenue": 3567.88048, "avgShipping": 1.8987341772151898, "pctFreeShip": 0.4177215189873418}, {"YearMonth": "2009-09", "AOVBucket": "50-60", "count": 36, "revenue": 1968.519895, "avgShipping": 1.5, "pctFreeShip": 0.5}, {"YearMonth": "2009-09", "AOVBucket": "60-75", "count": 30, "revenue": 1960.27381, "avgShipping": 2.033333333333333, "pctFreeShip": 0.36666666666666664}, {"YearMonth": "2009-09", "AOVBucket": "75-100", "count": 18, "revenue": 1501.930701, "avgShipping": 2.7222222222222223, "pctFreeShip": 0.2222222222222222}, {"YearMonth": "2009-09", "AOVBucket": "100-150", "count": 5, "revenue": 633.512908, "avgShipping": 2.4, "pctFreeShip": 0.4}, {"YearMonth": "2009-09", "AOVBucket": "150-200", "count": 1, "revenue": 185.781283, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2009-10", "AOVBucket": "5-10", "count": 44, "revenue": 376.83251, "avgShipping": 2.6136363636363638, "pctFreeShip": 0.0}, {"YearMonth": "2009-10", "AOVBucket": "10-15", "count": 607, "revenue": 7485.396015, "avgShipping": 0.9645799011532126, "pctFreeShip": 0.6820428336079077}, {"YearMonth": "2009-10", "AOVBucket": "15-20", "count": 250, "revenue": 4459.934075, "avgShipping": 0.962, "pctFreeShip": 0.692}, {"YearMonth": "2009-10", "AOVBucket": "20-25", "count": 220, "revenue": 4865.398437, "avgShipping": 0.8818181818181818, "pctFreeShip": 0.6772727272727272}, {"YearMonth": "2009-10", "AOVBucket": "25-30", "count": 268, "revenue": 7441.898733, "avgShipping": 0.7425373134328358, "pctFreeShip": 0.7649253731343284}, {"YearMonth": "2009-10", "AOVBucket": "30-35", "count": 97, "revenue": 3106.023779, "avgShipping": 2.097938144329897, "pctFreeShip": 0.27835051546391754}, {"YearMonth": "2009-10", "AOVBucket": "35-40", "count": 59, "revenue": 2192.057735, "avgShipping": 1.7796610169491525, "pctFreeShip": 0.5423728813559322}, {"YearMonth": "2009-10", "AOVBucket": "40-50", "count": 63, "revenue": 2842.533268, "avgShipping": 2.0555555555555554, "pctFreeShip": 0.5396825396825397}, {"YearMonth": "2009-10", "AOVBucket": "50-60", "count": 37, "revenue": 1995.369902, "avgShipping": 2.689189189189189, "pctFreeShip": 0.3783783783783784}, {"YearMonth": "2009-10", "AOVBucket": "60-75", "count": 18, "revenue": 1210.673297, "avgShipping": 3.138888888888889, "pctFreeShip": 0.4444444444444444}, {"YearMonth": "2009-10", "AOVBucket": "75-100", "count": 14, "revenue": 1202.092397, "avgShipping": 2.0714285714285716, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2009-10", "AOVBucket": "100-150", "count": 7, "revenue": 898.344196, "avgShipping": 2.642857142857143, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2009-10", "AOVBucket": "150-200", "count": 6, "revenue": 1026.390892, "avgShipping": 2.3333333333333335, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2009-10", "AOVBucket": "200-500", "count": 2, "revenue": 479.72858499999995, "avgShipping": 13.5, "pctFreeShip": 0.0}, {"YearMonth": "2009-11", "AOVBucket": "5-10", "count": 57, "revenue": 488.44029, "avgShipping": 2.56140350877193, "pctFreeShip": 0.05263157894736842}, {"YearMonth": "2009-11", "AOVBucket": "10-15", "count": 667, "revenue": 8230.65897, "avgShipping": 1.012743628185907, "pctFreeShip": 0.6611694152923538}, {"YearMonth": "2009-11", "AOVBucket": "15-20", "count": 294, "revenue": 5187.741062, "avgShipping": 1.1003401360544218, "pctFreeShip": 0.6496598639455783}, {"YearMonth": "2009-11", "AOVBucket": "20-25", "count": 243, "revenue": 5411.662316, "avgShipping": 1.2880658436213992, "pctFreeShip": 0.5473251028806584}, {"YearMonth": "2009-11", "AOVBucket": "25-30", "count": 241, "revenue": 6686.853963, "avgShipping": 0.975103734439834, "pctFreeShip": 0.6721991701244814}, {"YearMonth": "2009-11", "AOVBucket": "30-35", "count": 77, "revenue": 2468.695122, "avgShipping": 2.3766233766233764, "pctFreeShip": 0.3116883116883117}, {"YearMonth": "2009-11", "AOVBucket": "35-40", "count": 70, "revenue": 2598.275479, "avgShipping": 1.0928571428571427, "pctFreeShip": 0.6142857142857143}, {"YearMonth": "2009-11", "AOVBucket": "40-50", "count": 87, "revenue": 3890.98125, "avgShipping": 2.2701149425287355, "pctFreeShip": 0.42528735632183906}, {"YearMonth": "2009-11", "AOVBucket": "50-60", "count": 41, "revenue": 2226.125163, "avgShipping": 2.548780487804878, "pctFreeShip": 0.4634146341463415}, {"YearMonth": "2009-11", "AOVBucket": "60-75", "count": 23, "revenue": 1521.8518020000001, "avgShipping": 2.0217391304347827, "pctFreeShip": 0.5652173913043478}, {"YearMonth": "2009-11", "AOVBucket": "75-100", "count": 14, "revenue": 1226.037296, "avgShipping": 1.7857142857142858, "pctFreeShip": 0.5}, {"YearMonth": "2009-11", "AOVBucket": "100-150", "count": 5, "revenue": 586.800302, "avgShipping": 3.2, "pctFreeShip": 0.2}, {"YearMonth": "2009-11", "AOVBucket": "150-200", "count": 2, "revenue": 311.85479699999996, "avgShipping": 12.75, "pctFreeShip": 0.0}, {"YearMonth": "2009-11", "AOVBucket": "200-500", "count": 2, "revenue": 585.680594, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2009-12", "AOVBucket": "<5", "count": 1, "revenue": 3.3234, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2009-12", "AOVBucket": "5-10", "count": 39, "revenue": 336.440275, "avgShipping": 2.128205128205128, "pctFreeShip": 0.1794871794871795}, {"YearMonth": "2009-12", "AOVBucket": "10-15", "count": 489, "revenue": 6193.52769, "avgShipping": 1.2065439672801637, "pctFreeShip": 0.621676891615542}, {"YearMonth": "2009-12", "AOVBucket": "15-20", "count": 210, "revenue": 3674.75988, "avgShipping": 1.4595238095238094, "pctFreeShip": 0.49523809523809526}, {"YearMonth": "2009-12", "AOVBucket": "20-25", "count": 183, "revenue": 4089.014842, "avgShipping": 1.5437158469945356, "pctFreeShip": 0.47540983606557374}, {"YearMonth": "2009-12", "AOVBucket": "25-30", "count": 191, "revenue": 5307.030278, "avgShipping": 1.117801047120419, "pctFreeShip": 0.6335078534031413}, {"YearMonth": "2009-12", "AOVBucket": "30-35", "count": 104, "revenue": 3335.074409, "avgShipping": 1.9951923076923077, "pctFreeShip": 0.28846153846153844}, {"YearMonth": "2009-12", "AOVBucket": "35-40", "count": 52, "revenue": 1947.41284, "avgShipping": 1.2211538461538463, "pctFreeShip": 0.5576923076923077}, {"YearMonth": "2009-12", "AOVBucket": "40-50", "count": 72, "revenue": 3202.557817, "avgShipping": 2.5833333333333335, "pctFreeShip": 0.3888888888888889}, {"YearMonth": "2009-12", "AOVBucket": "50-60", "count": 34, "revenue": 1856.160198, "avgShipping": 2.911764705882353, "pctFreeShip": 0.2647058823529412}, {"YearMonth": "2009-12", "AOVBucket": "60-75", "count": 19, "revenue": 1269.844813, "avgShipping": 1.5263157894736843, "pctFreeShip": 0.42105263157894735}, {"YearMonth": "2009-12", "AOVBucket": "75-100", "count": 18, "revenue": 1531.770387, "avgShipping": 4.388888888888889, "pctFreeShip": 0.2777777777777778}, {"YearMonth": "2009-12", "AOVBucket": "100-150", "count": 5, "revenue": 584.958898, "avgShipping": 2.9, "pctFreeShip": 0.2}, {"YearMonth": "2009-12", "AOVBucket": "150-200", "count": 5, "revenue": 786.616698, "avgShipping": 5.4, "pctFreeShip": 0.6}, {"YearMonth": "2010-01", "AOVBucket": "5-10", "count": 76, "revenue": 672.716365, "avgShipping": 2.2960526315789473, "pctFreeShip": 0.17105263157894737}, {"YearMonth": "2010-01", "AOVBucket": "10-15", "count": 645, "revenue": 8242.925211, "avgShipping": 1.0906976744186045, "pctFreeShip": 0.6403100775193798}, {"YearMonth": "2010-01", "AOVBucket": "15-20", "count": 401, "revenue": 7146.548592, "avgShipping": 1.240648379052369, "pctFreeShip": 0.5536159600997507}, {"YearMonth": "2010-01", "AOVBucket": "20-25", "count": 244, "revenue": 5522.165481, "avgShipping": 1.4364754098360655, "pctFreeShip": 0.48770491803278687}, {"YearMonth": "2010-01", "AOVBucket": "25-30", "count": 306, "revenue": 8518.155559, "avgShipping": 1.0947712418300655, "pctFreeShip": 0.6274509803921569}, {"YearMonth": "2010-01", "AOVBucket": "30-35", "count": 152, "revenue": 4925.401127, "avgShipping": 2.085526315789474, "pctFreeShip": 0.3618421052631579}, {"YearMonth": "2010-01", "AOVBucket": "35-40", "count": 97, "revenue": 3660.428539, "avgShipping": 1.5515463917525774, "pctFreeShip": 0.5051546391752577}, {"YearMonth": "2010-01", "AOVBucket": "40-50", "count": 90, "revenue": 3982.290965, "avgShipping": 2.2444444444444445, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2010-01", "AOVBucket": "50-60", "count": 59, "revenue": 3252.353943, "avgShipping": 2.4915254237288136, "pctFreeShip": 0.423728813559322}, {"YearMonth": "2010-01", "AOVBucket": "60-75", "count": 32, "revenue": 2140.359102, "avgShipping": 2.671875, "pctFreeShip": 0.375}, {"YearMonth": "2010-01", "AOVBucket": "75-100", "count": 23, "revenue": 1951.797345, "avgShipping": 2.8260869565217392, "pctFreeShip": 0.13043478260869565}, {"YearMonth": "2010-01", "AOVBucket": "100-150", "count": 11, "revenue": 1284.06396, "avgShipping": 2.5454545454545454, "pctFreeShip": 0.36363636363636365}, {"YearMonth": "2010-01", "AOVBucket": "200-500", "count": 3, "revenue": 741.040411, "avgShipping": 7.666666666666667, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2010-02", "AOVBucket": "5-10", "count": 61, "revenue": 525.1590199999999, "avgShipping": 2.598360655737705, "pctFreeShip": 0.03278688524590164}, {"YearMonth": "2010-02", "AOVBucket": "10-15", "count": 551, "revenue": 7075.247315, "avgShipping": 1.0626134301270418, "pctFreeShip": 0.6696914700544465}, {"YearMonth": "2010-02", "AOVBucket": "15-20", "count": 302, "revenue": 5365.706141, "avgShipping": 1.5662251655629138, "pctFreeShip": 0.45695364238410596}, {"YearMonth": "2010-02", "AOVBucket": "20-25", "count": 222, "revenue": 4979.747139, "avgShipping": 1.5225225225225225, "pctFreeShip": 0.45045045045045046}, {"YearMonth": "2010-02", "AOVBucket": "25-30", "count": 253, "revenue": 7140.208409, "avgShipping": 0.8201581027667985, "pctFreeShip": 0.7154150197628458}, {"YearMonth": "2010-02", "AOVBucket": "30-35", "count": 120, "revenue": 3845.145148, "avgShipping": 2.3041666666666667, "pctFreeShip": 0.20833333333333334}, {"YearMonth": "2010-02", "AOVBucket": "35-40", "count": 69, "revenue": 2611.100603, "avgShipping": 1.1884057971014492, "pctFreeShip": 0.5942028985507246}, {"YearMonth": "2010-02", "AOVBucket": "40-50", "count": 79, "revenue": 3475.921145, "avgShipping": 1.6012658227848102, "pctFreeShip": 0.4810126582278481}, {"YearMonth": "2010-02", "AOVBucket": "50-60", "count": 40, "revenue": 2195.306499, "avgShipping": 1.9625, "pctFreeShip": 0.4}, {"YearMonth": "2010-02", "AOVBucket": "60-75", "count": 16, "revenue": 1063.144308, "avgShipping": 3.625, "pctFreeShip": 0.25}, {"YearMonth": "2010-02", "AOVBucket": "75-100", "count": 12, "revenue": 1022.557494, "avgShipping": 1.8333333333333333, "pctFreeShip": 0.4166666666666667}, {"YearMonth": "2010-02", "AOVBucket": "100-150", "count": 7, "revenue": 837.330195, "avgShipping": 3.357142857142857, "pctFreeShip": 0.0}, {"YearMonth": "2010-02", "AOVBucket": "150-200", "count": 4, "revenue": 677.349492, "avgShipping": 2.625, "pctFreeShip": 0.25}, {"YearMonth": "2010-02", "AOVBucket": "200-500", "count": 1, "revenue": 391.000008, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2010-02", "AOVBucket": "500+", "count": 2, "revenue": 1020.897994, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2010-03", "AOVBucket": "5-10", "count": 58, "revenue": 496.68849, "avgShipping": 2.5086206896551726, "pctFreeShip": 0.034482758620689655}, {"YearMonth": "2010-03", "AOVBucket": "10-15", "count": 614, "revenue": 7755.9097, "avgShipping": 1.252442996742671, "pctFreeShip": 0.6074918566775245}, {"YearMonth": "2010-03", "AOVBucket": "15-20", "count": 303, "revenue": 5387.853279, "avgShipping": 1.49009900990099, "pctFreeShip": 0.5115511551155115}, {"YearMonth": "2010-03", "AOVBucket": "20-25", "count": 238, "revenue": 5347.743265, "avgShipping": 1.3928571428571428, "pctFreeShip": 0.5042016806722689}, {"YearMonth": "2010-03", "AOVBucket": "25-30", "count": 266, "revenue": 7515.9270289999995, "avgShipping": 0.981203007518797, "pctFreeShip": 0.6842105263157895}, {"YearMonth": "2010-03", "AOVBucket": "30-35", "count": 122, "revenue": 3928.422754, "avgShipping": 2.2745901639344264, "pctFreeShip": 0.2540983606557377}, {"YearMonth": "2010-03", "AOVBucket": "35-40", "count": 73, "revenue": 2765.46764, "avgShipping": 0.9452054794520548, "pctFreeShip": 0.6986301369863014}, {"YearMonth": "2010-03", "AOVBucket": "40-50", "count": 94, "revenue": 4176.001974, "avgShipping": 2.4414893617021276, "pctFreeShip": 0.2978723404255319}, {"YearMonth": "2010-03", "AOVBucket": "50-60", "count": 47, "revenue": 2608.68491, "avgShipping": 1.851063829787234, "pctFreeShip": 0.46808510638297873}, {"YearMonth": "2010-03", "AOVBucket": "60-75", "count": 33, "revenue": 2138.713514, "avgShipping": 2.242424242424242, "pctFreeShip": 0.36363636363636365}, {"YearMonth": "2010-03", "AOVBucket": "75-100", "count": 15, "revenue": 1253.117598, "avgShipping": 4.066666666666666, "pctFreeShip": 0.2}, {"YearMonth": "2010-03", "AOVBucket": "100-150", "count": 6, "revenue": 679.279006, "avgShipping": 9.25, "pctFreeShip": 0.0}, {"YearMonth": "2010-03", "AOVBucket": "150-200", "count": 1, "revenue": 168.150004, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2010-03", "AOVBucket": "200-500", "count": 2, "revenue": 458.37850000000003, "avgShipping": 3.25, "pctFreeShip": 0.0}, {"YearMonth": "2010-04", "AOVBucket": "5-10", "count": 83, "revenue": 747.885805, "avgShipping": 1.9156626506024097, "pctFreeShip": 0.2891566265060241}, {"YearMonth": "2010-04", "AOVBucket": "10-15", "count": 648, "revenue": 8286.61351, "avgShipping": 1.1558641975308641, "pctFreeShip": 0.6234567901234568}, {"YearMonth": "2010-04", "AOVBucket": "15-20", "count": 345, "revenue": 6057.616365, "avgShipping": 1.1434782608695653, "pctFreeShip": 0.6057971014492753}, {"YearMonth": "2010-04", "AOVBucket": "20-25", "count": 226, "revenue": 5127.073351, "avgShipping": 1.3008849557522124, "pctFreeShip": 0.5353982300884956}, {"YearMonth": "2010-04", "AOVBucket": "25-30", "count": 309, "revenue": 8613.542042, "avgShipping": 0.9838187702265372, "pctFreeShip": 0.6796116504854369}, {"YearMonth": "2010-04", "AOVBucket": "30-35", "count": 107, "revenue": 3463.086883, "avgShipping": 2.177570093457944, "pctFreeShip": 0.32710280373831774}, {"YearMonth": "2010-04", "AOVBucket": "35-40", "count": 79, "revenue": 2963.650206, "avgShipping": 1.2151898734177216, "pctFreeShip": 0.620253164556962}, {"YearMonth": "2010-04", "AOVBucket": "40-50", "count": 105, "revenue": 4680.1021, "avgShipping": 1.9428571428571428, "pctFreeShip": 0.41904761904761906}, {"YearMonth": "2010-04", "AOVBucket": "50-60", "count": 35, "revenue": 1932.306772, "avgShipping": 1.8714285714285714, "pctFreeShip": 0.45714285714285713}, {"YearMonth": "2010-04", "AOVBucket": "60-75", "count": 33, "revenue": 2153.728132, "avgShipping": 1.9242424242424243, "pctFreeShip": 0.3939393939393939}, {"YearMonth": "2010-04", "AOVBucket": "75-100", "count": 16, "revenue": 1326.5921, "avgShipping": 5.09375, "pctFreeShip": 0.25}, {"YearMonth": "2010-04", "AOVBucket": "100-150", "count": 11, "revenue": 1269.277085, "avgShipping": 4.090909090909091, "pctFreeShip": 0.2727272727272727}, {"YearMonth": "2010-04", "AOVBucket": "150-200", "count": 4, "revenue": 618.280653, "avgShipping": 2.625, "pctFreeShip": 0.25}, {"YearMonth": "2010-04", "AOVBucket": "200-500", "count": 2, "revenue": 686.852521, "avgShipping": 9.0, "pctFreeShip": 0.5}, {"YearMonth": "2010-05", "AOVBucket": "5-10", "count": 74, "revenue": 658.6464, "avgShipping": 1.9594594594594594, "pctFreeShip": 0.22972972972972974}, {"YearMonth": "2010-05", "AOVBucket": "10-15", "count": 670, "revenue": 8518.113444999999, "avgShipping": 1.0626865671641792, "pctFreeShip": 0.6522388059701493}, {"YearMonth": "2010-05", "AOVBucket": "15-20", "count": 318, "revenue": 5679.296821, "avgShipping": 1.3223270440251573, "pctFreeShip": 0.5440251572327044}, {"YearMonth": "2010-05", "AOVBucket": "20-25", "count": 244, "revenue": 5497.314739, "avgShipping": 1.1844262295081966, "pctFreeShip": 0.5778688524590164}, {"YearMonth": "2010-05", "AOVBucket": "25-30", "count": 284, "revenue": 7983.155667999999, "avgShipping": 1.1496478873239437, "pctFreeShip": 0.6056338028169014}, {"YearMonth": "2010-05", "AOVBucket": "30-35", "count": 121, "revenue": 3922.87761, "avgShipping": 1.9504132231404958, "pctFreeShip": 0.35537190082644626}, {"YearMonth": "2010-05", "AOVBucket": "35-40", "count": 77, "revenue": 2911.743735, "avgShipping": 2.103896103896104, "pctFreeShip": 0.38961038961038963}, {"YearMonth": "2010-05", "AOVBucket": "40-50", "count": 78, "revenue": 3459.7109, "avgShipping": 1.6538461538461537, "pctFreeShip": 0.48717948717948717}, {"YearMonth": "2010-05", "AOVBucket": "50-60", "count": 50, "revenue": 2778.151814, "avgShipping": 2.02, "pctFreeShip": 0.46}, {"YearMonth": "2010-05", "AOVBucket": "60-75", "count": 24, "revenue": 1579.415702, "avgShipping": 3.9791666666666665, "pctFreeShip": 0.2916666666666667}, {"YearMonth": "2010-05", "AOVBucket": "75-100", "count": 26, "revenue": 2239.885026, "avgShipping": 2.480769230769231, "pctFreeShip": 0.3076923076923077}, {"YearMonth": "2010-05", "AOVBucket": "100-150", "count": 14, "revenue": 1567.868308, "avgShipping": 3.892857142857143, "pctFreeShip": 0.14285714285714285}, {"YearMonth": "2010-05", "AOVBucket": "150-200", "count": 2, "revenue": 337.25908100000004, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2010-05", "AOVBucket": "200-500", "count": 1, "revenue": 358.154999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2010-06", "AOVBucket": "5-10", "count": 77, "revenue": 679.76342, "avgShipping": 2.448051948051948, "pctFreeShip": 0.11688311688311688}, {"YearMonth": "2010-06", "AOVBucket": "10-15", "count": 620, "revenue": 7855.08112, "avgShipping": 1.0991935483870967, "pctFreeShip": 0.6435483870967742}, {"YearMonth": "2010-06", "AOVBucket": "15-20", "count": 302, "revenue": 5392.283921, "avgShipping": 1.3543046357615893, "pctFreeShip": 0.543046357615894}, {"YearMonth": "2010-06", "AOVBucket": "20-25", "count": 223, "revenue": 5063.094921, "avgShipping": 1.3766816143497758, "pctFreeShip": 0.5067264573991032}, {"YearMonth": "2010-06", "AOVBucket": "25-30", "count": 275, "revenue": 7704.610771, "avgShipping": 1.0418181818181818, "pctFreeShip": 0.6654545454545454}, {"YearMonth": "2010-06", "AOVBucket": "30-35", "count": 108, "revenue": 3517.9024170000002, "avgShipping": 2.2314814814814814, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2010-06", "AOVBucket": "35-40", "count": 76, "revenue": 2847.519188, "avgShipping": 2.1776315789473686, "pctFreeShip": 0.42105263157894735}, {"YearMonth": "2010-06", "AOVBucket": "40-50", "count": 78, "revenue": 3442.357207, "avgShipping": 2.217948717948718, "pctFreeShip": 0.3974358974358974}, {"YearMonth": "2010-06", "AOVBucket": "50-60", "count": 55, "revenue": 3034.097187, "avgShipping": 2.0272727272727273, "pctFreeShip": 0.43636363636363634}, {"YearMonth": "2010-06", "AOVBucket": "60-75", "count": 18, "revenue": 1162.707902, "avgShipping": 2.861111111111111, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2010-06", "AOVBucket": "75-100", "count": 14, "revenue": 1174.063233, "avgShipping": 3.607142857142857, "pctFreeShip": 0.21428571428571427}, {"YearMonth": "2010-06", "AOVBucket": "100-150", "count": 14, "revenue": 1663.755811, "avgShipping": 2.9642857142857144, "pctFreeShip": 0.21428571428571427}, {"YearMonth": "2010-06", "AOVBucket": "150-200", "count": 3, "revenue": 482.90853100000004, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2010-06", "AOVBucket": "200-500", "count": 2, "revenue": 456.189996, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2010-07", "AOVBucket": "5-10", "count": 75, "revenue": 638.74753, "avgShipping": 2.526666666666667, "pctFreeShip": 0.013333333333333334}, {"YearMonth": "2010-07", "AOVBucket": "10-15", "count": 676, "revenue": 8578.13585, "avgShipping": 1.0857988165680474, "pctFreeShip": 0.636094674556213}, {"YearMonth": "2010-07", "AOVBucket": "15-20", "count": 315, "revenue": 5628.52568, "avgShipping": 1.3682539682539683, "pctFreeShip": 0.5174603174603175}, {"YearMonth": "2010-07", "AOVBucket": "20-25", "count": 239, "revenue": 5419.900126, "avgShipping": 1.1841004184100419, "pctFreeShip": 0.5774058577405857}, {"YearMonth": "2010-07", "AOVBucket": "25-30", "count": 287, "revenue": 8096.817694, "avgShipping": 0.9634146341463414, "pctFreeShip": 0.6655052264808362}, {"YearMonth": "2010-07", "AOVBucket": "30-35", "count": 116, "revenue": 3774.664637, "avgShipping": 1.9870689655172413, "pctFreeShip": 0.3448275862068966}, {"YearMonth": "2010-07", "AOVBucket": "35-40", "count": 70, "revenue": 2628.544896, "avgShipping": 1.4, "pctFreeShip": 0.5428571428571428}, {"YearMonth": "2010-07", "AOVBucket": "40-50", "count": 71, "revenue": 3151.2011939999998, "avgShipping": 2.204225352112676, "pctFreeShip": 0.39436619718309857}, {"YearMonth": "2010-07", "AOVBucket": "50-60", "count": 50, "revenue": 2736.989877, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2010-07", "AOVBucket": "60-75", "count": 40, "revenue": 2645.372497, "avgShipping": 1.575, "pctFreeShip": 0.475}, {"YearMonth": "2010-07", "AOVBucket": "75-100", "count": 10, "revenue": 905.589505, "avgShipping": 2.7, "pctFreeShip": 0.1}, {"YearMonth": "2010-07", "AOVBucket": "100-150", "count": 9, "revenue": 1044.040915, "avgShipping": 3.4444444444444446, "pctFreeShip": 0.2222222222222222}, {"YearMonth": "2010-07", "AOVBucket": "150-200", "count": 3, "revenue": 526.009799, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2010-07", "AOVBucket": "200-500", "count": 1, "revenue": 303.499996, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2010-08", "AOVBucket": "5-10", "count": 66, "revenue": 592.38209, "avgShipping": 2.2045454545454546, "pctFreeShip": 0.15151515151515152}, {"YearMonth": "2010-08", "AOVBucket": "10-15", "count": 600, "revenue": 7683.73614, "avgShipping": 0.9833333333333333, "pctFreeShip": 0.6783333333333333}, {"YearMonth": "2010-08", "AOVBucket": "15-20", "count": 347, "revenue": 6068.145507, "avgShipping": 1.3976945244956773, "pctFreeShip": 0.5129682997118156}, {"YearMonth": "2010-08", "AOVBucket": "20-25", "count": 276, "revenue": 6261.140835, "avgShipping": 1.161231884057971, "pctFreeShip": 0.5869565217391305}, {"YearMonth": "2010-08", "AOVBucket": "25-30", "count": 255, "revenue": 7059.372125, "avgShipping": 1.0294117647058822, "pctFreeShip": 0.6431372549019608}, {"YearMonth": "2010-08", "AOVBucket": "30-35", "count": 208, "revenue": 6763.581342, "avgShipping": 1.4423076923076923, "pctFreeShip": 0.4951923076923077}, {"YearMonth": "2010-08", "AOVBucket": "35-40", "count": 96, "revenue": 3607.047049, "avgShipping": 1.890625, "pctFreeShip": 0.3645833333333333}, {"YearMonth": "2010-08", "AOVBucket": "40-50", "count": 107, "revenue": 4795.312337, "avgShipping": 1.8691588785046729, "pctFreeShip": 0.45794392523364486}, {"YearMonth": "2010-08", "AOVBucket": "50-60", "count": 58, "revenue": 3135.8046130000002, "avgShipping": 2.2155172413793105, "pctFreeShip": 0.4827586206896552}, {"YearMonth": "2010-08", "AOVBucket": "60-75", "count": 57, "revenue": 3756.441028, "avgShipping": 2.0789473684210527, "pctFreeShip": 0.3684210526315789}, {"YearMonth": "2010-08", "AOVBucket": "75-100", "count": 24, "revenue": 2042.639607, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.5416666666666666}, {"YearMonth": "2010-08", "AOVBucket": "100-150", "count": 16, "revenue": 1819.3646159999998, "avgShipping": 2.6875, "pctFreeShip": 0.1875}, {"YearMonth": "2010-08", "AOVBucket": "150-200", "count": 2, "revenue": 372.600009, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2010-08", "AOVBucket": "200-500", "count": 1, "revenue": 219.45, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2010-09", "AOVBucket": "5-10", "count": 53, "revenue": 459.28332, "avgShipping": 2.330188679245283, "pctFreeShip": 0.1320754716981132}, {"YearMonth": "2010-09", "AOVBucket": "10-15", "count": 602, "revenue": 7770.248, "avgShipping": 1.0722591362126246, "pctFreeShip": 0.6644518272425249}, {"YearMonth": "2010-09", "AOVBucket": "15-20", "count": 354, "revenue": 6211.94083, "avgShipping": 1.326271186440678, "pctFreeShip": 0.53954802259887}, {"YearMonth": "2010-09", "AOVBucket": "20-25", "count": 262, "revenue": 5963.791356, "avgShipping": 1.2366412213740459, "pctFreeShip": 0.5954198473282443}, {"YearMonth": "2010-09", "AOVBucket": "25-30", "count": 195, "revenue": 5416.048691, "avgShipping": 1.2615384615384615, "pctFreeShip": 0.5538461538461539}, {"YearMonth": "2010-09", "AOVBucket": "30-35", "count": 185, "revenue": 5969.017511, "avgShipping": 1.337837837837838, "pctFreeShip": 0.5135135135135135}, {"YearMonth": "2010-09", "AOVBucket": "35-40", "count": 80, "revenue": 3001.935492, "avgShipping": 1.8875, "pctFreeShip": 0.4125}, {"YearMonth": "2010-09", "AOVBucket": "40-50", "count": 87, "revenue": 3866.606901, "avgShipping": 1.4425287356321839, "pctFreeShip": 0.5057471264367817}, {"YearMonth": "2010-09", "AOVBucket": "50-60", "count": 48, "revenue": 2647.526612, "avgShipping": 1.6041666666666667, "pctFreeShip": 0.4583333333333333}, {"YearMonth": "2010-09", "AOVBucket": "60-75", "count": 42, "revenue": 2845.9029889999997, "avgShipping": 2.1785714285714284, "pctFreeShip": 0.35714285714285715}, {"YearMonth": "2010-09", "AOVBucket": "75-100", "count": 10, "revenue": 826.599499, "avgShipping": 2.1, "pctFreeShip": 0.4}, {"YearMonth": "2010-09", "AOVBucket": "100-150", "count": 12, "revenue": 1467.298711, "avgShipping": 3.9166666666666665, "pctFreeShip": 0.25}, {"YearMonth": "2010-09", "AOVBucket": "150-200", "count": 2, "revenue": 355.150099, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2010-09", "AOVBucket": "500+", "count": 1, "revenue": 626.309984, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2010-10", "AOVBucket": "5-10", "count": 55, "revenue": 496.63489999999996, "avgShipping": 2.6636363636363636, "pctFreeShip": 0.0}, {"YearMonth": "2010-10", "AOVBucket": "10-15", "count": 567, "revenue": 7267.147599999999, "avgShipping": 1.0361552028218695, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2010-10", "AOVBucket": "15-20", "count": 325, "revenue": 5656.280239, "avgShipping": 1.4476923076923076, "pctFreeShip": 0.48615384615384616}, {"YearMonth": "2010-10", "AOVBucket": "20-25", "count": 235, "revenue": 5347.793457, "avgShipping": 1.0680851063829788, "pctFreeShip": 0.625531914893617}, {"YearMonth": "2010-10", "AOVBucket": "25-30", "count": 212, "revenue": 5862.140317, "avgShipping": 1.3962264150943395, "pctFreeShip": 0.5094339622641509}, {"YearMonth": "2010-10", "AOVBucket": "30-35", "count": 174, "revenue": 5689.679097, "avgShipping": 1.353448275862069, "pctFreeShip": 0.5}, {"YearMonth": "2010-10", "AOVBucket": "35-40", "count": 76, "revenue": 2842.24988, "avgShipping": 1.7828947368421053, "pctFreeShip": 0.42105263157894735}, {"YearMonth": "2010-10", "AOVBucket": "40-50", "count": 97, "revenue": 4309.261581, "avgShipping": 2.0, "pctFreeShip": 0.31958762886597936}, {"YearMonth": "2010-10", "AOVBucket": "50-60", "count": 43, "revenue": 2370.884097, "avgShipping": 2.011627906976744, "pctFreeShip": 0.3953488372093023}, {"YearMonth": "2010-10", "AOVBucket": "60-75", "count": 37, "revenue": 2451.389599, "avgShipping": 1.9594594594594594, "pctFreeShip": 0.3783783783783784}, {"YearMonth": "2010-10", "AOVBucket": "75-100", "count": 29, "revenue": 2499.543706, "avgShipping": 1.793103448275862, "pctFreeShip": 0.4482758620689655}, {"YearMonth": "2010-10", "AOVBucket": "100-150", "count": 14, "revenue": 1685.055973, "avgShipping": 2.7857142857142856, "pctFreeShip": 0.14285714285714285}, {"YearMonth": "2010-10", "AOVBucket": "150-200", "count": 5, "revenue": 847.949091, "avgShipping": 2.4, "pctFreeShip": 0.4}, {"YearMonth": "2010-10", "AOVBucket": "200-500", "count": 4, "revenue": 1073.04998, "avgShipping": 1.0, "pctFreeShip": 0.75}, {"YearMonth": "2010-10", "AOVBucket": "500+", "count": 1, "revenue": 513.799996, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2010-11", "AOVBucket": "5-10", "count": 40, "revenue": 353.16361, "avgShipping": 2.625, "pctFreeShip": 0.05}, {"YearMonth": "2010-11", "AOVBucket": "10-15", "count": 589, "revenue": 7626.500599999999, "avgShipping": 1.0534804753820033, "pctFreeShip": 0.6587436332767402}, {"YearMonth": "2010-11", "AOVBucket": "15-20", "count": 345, "revenue": 6062.266517999999, "avgShipping": 1.2884057971014493, "pctFreeShip": 0.5333333333333333}, {"YearMonth": "2010-11", "AOVBucket": "20-25", "count": 224, "revenue": 5114.2732049999995, "avgShipping": 0.9620535714285714, "pctFreeShip": 0.65625}, {"YearMonth": "2010-11", "AOVBucket": "25-30", "count": 192, "revenue": 5290.559619, "avgShipping": 1.5494791666666667, "pctFreeShip": 0.4947916666666667}, {"YearMonth": "2010-11", "AOVBucket": "30-35", "count": 181, "revenue": 5891.812582, "avgShipping": 1.149171270718232, "pctFreeShip": 0.5911602209944752}, {"YearMonth": "2010-11", "AOVBucket": "35-40", "count": 81, "revenue": 3041.224387, "avgShipping": 1.8395061728395061, "pctFreeShip": 0.41975308641975306}, {"YearMonth": "2010-11", "AOVBucket": "40-50", "count": 104, "revenue": 4631.493504, "avgShipping": 1.5288461538461537, "pctFreeShip": 0.5}, {"YearMonth": "2010-11", "AOVBucket": "50-60", "count": 35, "revenue": 1907.625403, "avgShipping": 1.5714285714285714, "pctFreeShip": 0.45714285714285713}, {"YearMonth": "2010-11", "AOVBucket": "60-75", "count": 34, "revenue": 2235.397793, "avgShipping": 1.7058823529411764, "pctFreeShip": 0.4411764705882353}, {"YearMonth": "2010-11", "AOVBucket": "75-100", "count": 23, "revenue": 1970.739909, "avgShipping": 2.0869565217391304, "pctFreeShip": 0.34782608695652173}, {"YearMonth": "2010-11", "AOVBucket": "100-150", "count": 13, "revenue": 1571.839195, "avgShipping": 2.923076923076923, "pctFreeShip": 0.15384615384615385}, {"YearMonth": "2010-11", "AOVBucket": "150-200", "count": 3, "revenue": 462.550095, "avgShipping": 3.0, "pctFreeShip": 0.0}, {"YearMonth": "2010-11", "AOVBucket": "200-500", "count": 2, "revenue": 692.399899, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2010-12", "AOVBucket": "5-10", "count": 40, "revenue": 354.27402, "avgShipping": 2.775, "pctFreeShip": 0.025}, {"YearMonth": "2010-12", "AOVBucket": "10-15", "count": 482, "revenue": 6174.8979, "avgShipping": 1.020746887966805, "pctFreeShip": 0.6742738589211619}, {"YearMonth": "2010-12", "AOVBucket": "15-20", "count": 274, "revenue": 4782.184719, "avgShipping": 1.397810218978102, "pctFreeShip": 0.5109489051094891}, {"YearMonth": "2010-12", "AOVBucket": "20-25", "count": 196, "revenue": 4425.158505, "avgShipping": 1.1301020408163265, "pctFreeShip": 0.6122448979591837}, {"YearMonth": "2010-12", "AOVBucket": "25-30", "count": 161, "revenue": 4436.569579, "avgShipping": 1.3633540372670807, "pctFreeShip": 0.5403726708074534}, {"YearMonth": "2010-12", "AOVBucket": "30-35", "count": 153, "revenue": 4954.630597, "avgShipping": 1.1339869281045751, "pctFreeShip": 0.5816993464052288}, {"YearMonth": "2010-12", "AOVBucket": "35-40", "count": 69, "revenue": 2618.132601, "avgShipping": 1.4927536231884058, "pctFreeShip": 0.5072463768115942}, {"YearMonth": "2010-12", "AOVBucket": "40-50", "count": 75, "revenue": 3373.186134, "avgShipping": 1.3733333333333333, "pctFreeShip": 0.5066666666666667}, {"YearMonth": "2010-12", "AOVBucket": "50-60", "count": 37, "revenue": 2033.941896, "avgShipping": 1.3243243243243243, "pctFreeShip": 0.5675675675675675}, {"YearMonth": "2010-12", "AOVBucket": "60-75", "count": 37, "revenue": 2432.739295, "avgShipping": 1.864864864864865, "pctFreeShip": 0.35135135135135137}, {"YearMonth": "2010-12", "AOVBucket": "75-100", "count": 18, "revenue": 1549.759503, "avgShipping": 1.2222222222222223, "pctFreeShip": 0.6111111111111112}, {"YearMonth": "2010-12", "AOVBucket": "100-150", "count": 10, "revenue": 1204.739291, "avgShipping": 1.55, "pctFreeShip": 0.5}, {"YearMonth": "2010-12", "AOVBucket": "150-200", "count": 2, "revenue": 317.049989, "avgShipping": 3.25, "pctFreeShip": 0.0}, {"YearMonth": "2011-01", "AOVBucket": "5-10", "count": 59, "revenue": 527.5027, "avgShipping": 2.4491525423728815, "pctFreeShip": 0.06779661016949153}, {"YearMonth": "2011-01", "AOVBucket": "10-15", "count": 755, "revenue": 9607.64402, "avgShipping": 1.1304635761589403, "pctFreeShip": 0.6370860927152318}, {"YearMonth": "2011-01", "AOVBucket": "15-20", "count": 477, "revenue": 8361.450899, "avgShipping": 1.2222222222222223, "pctFreeShip": 0.5639412997903563}, {"YearMonth": "2011-01", "AOVBucket": "20-25", "count": 296, "revenue": 6709.746456, "avgShipping": 1.2432432432432432, "pctFreeShip": 0.5743243243243243}, {"YearMonth": "2011-01", "AOVBucket": "25-30", "count": 280, "revenue": 7719.319339, "avgShipping": 1.0857142857142856, "pctFreeShip": 0.6392857142857142}, {"YearMonth": "2011-01", "AOVBucket": "30-35", "count": 201, "revenue": 6507.939102, "avgShipping": 1.2761194029850746, "pctFreeShip": 0.5522388059701493}, {"YearMonth": "2011-01", "AOVBucket": "35-40", "count": 102, "revenue": 3816.136232, "avgShipping": 1.8333333333333333, "pctFreeShip": 0.4215686274509804}, {"YearMonth": "2011-01", "AOVBucket": "40-50", "count": 112, "revenue": 5041.510703, "avgShipping": 1.5178571428571428, "pctFreeShip": 0.5178571428571429}, {"YearMonth": "2011-01", "AOVBucket": "50-60", "count": 67, "revenue": 3634.044558, "avgShipping": 1.537313432835821, "pctFreeShip": 0.5373134328358209}, {"YearMonth": "2011-01", "AOVBucket": "60-75", "count": 58, "revenue": 3841.169626, "avgShipping": 2.4741379310344827, "pctFreeShip": 0.25862068965517243}, {"YearMonth": "2011-01", "AOVBucket": "75-100", "count": 42, "revenue": 3549.881504, "avgShipping": 2.357142857142857, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2011-01", "AOVBucket": "100-150", "count": 14, "revenue": 1618.0997029999999, "avgShipping": 2.3214285714285716, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2011-01", "AOVBucket": "150-200", "count": 6, "revenue": 1032.436712, "avgShipping": 3.3333333333333335, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2011-01", "AOVBucket": "200-500", "count": 4, "revenue": 1096.294695, "avgShipping": 2.625, "pctFreeShip": 0.25}, {"YearMonth": "2011-02", "AOVBucket": "5-10", "count": 52, "revenue": 465.52, "avgShipping": 2.5, "pctFreeShip": 0.038461538461538464}, {"YearMonth": "2011-02", "AOVBucket": "10-15", "count": 596, "revenue": 7592.852, "avgShipping": 1.0838926174496644, "pctFreeShip": 0.6442953020134228}, {"YearMonth": "2011-02", "AOVBucket": "15-20", "count": 362, "revenue": 6290.404903, "avgShipping": 1.1657458563535912, "pctFreeShip": 0.6077348066298343}, {"YearMonth": "2011-02", "AOVBucket": "20-25", "count": 214, "revenue": 4796.468091, "avgShipping": 1.091121495327103, "pctFreeShip": 0.602803738317757}, {"YearMonth": "2011-02", "AOVBucket": "25-30", "count": 180, "revenue": 5010.803284, "avgShipping": 1.1916666666666667, "pctFreeShip": 0.6}, {"YearMonth": "2011-02", "AOVBucket": "30-35", "count": 190, "revenue": 6181.05649, "avgShipping": 1.3657894736842104, "pctFreeShip": 0.5368421052631579}, {"YearMonth": "2011-02", "AOVBucket": "35-40", "count": 75, "revenue": 2853.446388, "avgShipping": 1.72, "pctFreeShip": 0.48}, {"YearMonth": "2011-02", "AOVBucket": "40-50", "count": 88, "revenue": 3942.229789, "avgShipping": 1.6079545454545454, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2011-02", "AOVBucket": "50-60", "count": 47, "revenue": 2588.053996, "avgShipping": 1.7553191489361701, "pctFreeShip": 0.425531914893617}, {"YearMonth": "2011-02", "AOVBucket": "60-75", "count": 40, "revenue": 2668.920204, "avgShipping": 2.525, "pctFreeShip": 0.2}, {"YearMonth": "2011-02", "AOVBucket": "75-100", "count": 20, "revenue": 1754.689594, "avgShipping": 2.2, "pctFreeShip": 0.3}, {"YearMonth": "2011-02", "AOVBucket": "100-150", "count": 11, "revenue": 1315.6798939999999, "avgShipping": 2.4545454545454546, "pctFreeShip": 0.18181818181818182}, {"YearMonth": "2011-02", "AOVBucket": "150-200", "count": 3, "revenue": 483.480107, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2011-02", "AOVBucket": "200-500", "count": 4, "revenue": 1014.5492059999999, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2011-03", "AOVBucket": "<5", "count": 1, "revenue": 3.49, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-03", "AOVBucket": "5-10", "count": 49, "revenue": 448.66499999999996, "avgShipping": 2.4285714285714284, "pctFreeShip": 0.08163265306122448}, {"YearMonth": "2011-03", "AOVBucket": "10-15", "count": 566, "revenue": 7148.52651, "avgShipping": 1.1687279151943464, "pctFreeShip": 0.6130742049469965}, {"YearMonth": "2011-03", "AOVBucket": "15-20", "count": 354, "revenue": 6138.9901039999995, "avgShipping": 1.1497175141242937, "pctFreeShip": 0.615819209039548}, {"YearMonth": "2011-03", "AOVBucket": "20-25", "count": 273, "revenue": 6187.56708, "avgShipping": 1.1904761904761905, "pctFreeShip": 0.5860805860805861}, {"YearMonth": "2011-03", "AOVBucket": "25-30", "count": 218, "revenue": 6027.973089, "avgShipping": 1.396788990825688, "pctFreeShip": 0.5275229357798165}, {"YearMonth": "2011-03", "AOVBucket": "30-35", "count": 164, "revenue": 5342.88521, "avgShipping": 1.3658536585365855, "pctFreeShip": 0.5060975609756098}, {"YearMonth": "2011-03", "AOVBucket": "35-40", "count": 93, "revenue": 3504.634686, "avgShipping": 1.1720430107526882, "pctFreeShip": 0.6344086021505376}, {"YearMonth": "2011-03", "AOVBucket": "40-50", "count": 74, "revenue": 3285.545933, "avgShipping": 1.277027027027027, "pctFreeShip": 0.581081081081081}, {"YearMonth": "2011-03", "AOVBucket": "50-60", "count": 42, "revenue": 2298.575824, "avgShipping": 1.8928571428571428, "pctFreeShip": 0.35714285714285715}, {"YearMonth": "2011-03", "AOVBucket": "60-75", "count": 36, "revenue": 2410.830401, "avgShipping": 1.9444444444444444, "pctFreeShip": 0.4444444444444444}, {"YearMonth": "2011-03", "AOVBucket": "75-100", "count": 28, "revenue": 2398.518102, "avgShipping": 1.9642857142857142, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2011-03", "AOVBucket": "100-150", "count": 14, "revenue": 1598.849594, "avgShipping": 2.9285714285714284, "pctFreeShip": 0.21428571428571427}, {"YearMonth": "2011-03", "AOVBucket": "150-200", "count": 1, "revenue": 163.330092, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2011-03", "AOVBucket": "200-500", "count": 1, "revenue": 244.500008, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-04", "AOVBucket": "<5", "count": 1, "revenue": 4.95, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-04", "AOVBucket": "5-10", "count": 65, "revenue": 596.31, "avgShipping": 2.2153846153846155, "pctFreeShip": 0.13846153846153847}, {"YearMonth": "2011-04", "AOVBucket": "10-15", "count": 558, "revenue": 7067.29414, "avgShipping": 1.0555555555555556, "pctFreeShip": 0.6433691756272402}, {"YearMonth": "2011-04", "AOVBucket": "15-20", "count": 352, "revenue": 6182.804864, "avgShipping": 1.0397727272727273, "pctFreeShip": 0.6420454545454546}, {"YearMonth": "2011-04", "AOVBucket": "20-25", "count": 245, "revenue": 5493.679696, "avgShipping": 1.3653061224489795, "pctFreeShip": 0.5265306122448979}, {"YearMonth": "2011-04", "AOVBucket": "25-30", "count": 220, "revenue": 6064.4751209999995, "avgShipping": 1.0818181818181818, "pctFreeShip": 0.6272727272727273}, {"YearMonth": "2011-04", "AOVBucket": "30-35", "count": 183, "revenue": 5897.53919, "avgShipping": 1.598360655737705, "pctFreeShip": 0.4644808743169399}, {"YearMonth": "2011-04", "AOVBucket": "35-40", "count": 88, "revenue": 3282.503828, "avgShipping": 1.6420454545454546, "pctFreeShip": 0.48863636363636365}, {"YearMonth": "2011-04", "AOVBucket": "40-50", "count": 103, "revenue": 4606.5605239999995, "avgShipping": 1.733009708737864, "pctFreeShip": 0.4174757281553398}, {"YearMonth": "2011-04", "AOVBucket": "50-60", "count": 51, "revenue": 2803.539525, "avgShipping": 1.6470588235294117, "pctFreeShip": 0.5098039215686274}, {"YearMonth": "2011-04", "AOVBucket": "60-75", "count": 38, "revenue": 2547.889454, "avgShipping": 2.0526315789473686, "pctFreeShip": 0.42105263157894735}, {"YearMonth": "2011-04", "AOVBucket": "75-100", "count": 24, "revenue": 2092.004705, "avgShipping": 2.5416666666666665, "pctFreeShip": 0.2916666666666667}, {"YearMonth": "2011-04", "AOVBucket": "100-150", "count": 13, "revenue": 1469.264522, "avgShipping": 1.1153846153846154, "pctFreeShip": 0.6923076923076923}, {"YearMonth": "2011-04", "AOVBucket": "150-200", "count": 3, "revenue": 539.9997, "avgShipping": 3.5, "pctFreeShip": 0.0}, {"YearMonth": "2011-05", "AOVBucket": "5-10", "count": 40, "revenue": 353.61, "avgShipping": 2.5625, "pctFreeShip": 0.025}, {"YearMonth": "2011-05", "AOVBucket": "10-15", "count": 609, "revenue": 7743.40092, "avgShipping": 1.154351395730706, "pctFreeShip": 0.6223316912972086}, {"YearMonth": "2011-05", "AOVBucket": "15-20", "count": 385, "revenue": 6718.6165009999995, "avgShipping": 1.2285714285714286, "pctFreeShip": 0.5636363636363636}, {"YearMonth": "2011-05", "AOVBucket": "20-25", "count": 276, "revenue": 6229.3069239999995, "avgShipping": 1.3423913043478262, "pctFreeShip": 0.532608695652174}, {"YearMonth": "2011-05", "AOVBucket": "25-30", "count": 231, "revenue": 6371.74543, "avgShipping": 0.9978354978354979, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2011-05", "AOVBucket": "30-35", "count": 152, "revenue": 4922.266288, "avgShipping": 1.4342105263157894, "pctFreeShip": 0.5}, {"YearMonth": "2011-05", "AOVBucket": "35-40", "count": 91, "revenue": 3438.010693, "avgShipping": 1.5384615384615385, "pctFreeShip": 0.5054945054945055}, {"YearMonth": "2011-05", "AOVBucket": "40-50", "count": 84, "revenue": 3682.334908, "avgShipping": 1.7202380952380953, "pctFreeShip": 0.44047619047619047}, {"YearMonth": "2011-05", "AOVBucket": "50-60", "count": 50, "revenue": 2703.714593, "avgShipping": 2.04, "pctFreeShip": 0.34}, {"YearMonth": "2011-05", "AOVBucket": "60-75", "count": 30, "revenue": 1991.829399, "avgShipping": 1.6833333333333333, "pctFreeShip": 0.4666666666666667}, {"YearMonth": "2011-05", "AOVBucket": "75-100", "count": 26, "revenue": 2183.136593, "avgShipping": 2.4423076923076925, "pctFreeShip": 0.23076923076923078}, {"YearMonth": "2011-05", "AOVBucket": "100-150", "count": 17, "revenue": 1994.779504, "avgShipping": 2.411764705882353, "pctFreeShip": 0.35294117647058826}, {"YearMonth": "2011-05", "AOVBucket": "150-200", "count": 2, "revenue": 316.650013, "avgShipping": 3.25, "pctFreeShip": 0.0}, {"YearMonth": "2011-05", "AOVBucket": "200-500", "count": 2, "revenue": 501.84979699999997, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2011-05", "AOVBucket": "500+", "count": 1, "revenue": 543.950005, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2011-06", "AOVBucket": "5-10", "count": 57, "revenue": 504.7366, "avgShipping": 2.245614035087719, "pctFreeShip": 0.14035087719298245}, {"YearMonth": "2011-06", "AOVBucket": "10-15", "count": 605, "revenue": 7685.2999199999995, "avgShipping": 1.1140495867768596, "pctFreeShip": 0.6231404958677685}, {"YearMonth": "2011-06", "AOVBucket": "15-20", "count": 414, "revenue": 7269.691202, "avgShipping": 0.9782608695652174, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2011-06", "AOVBucket": "20-25", "count": 232, "revenue": 5239.101727, "avgShipping": 1.1637931034482758, "pctFreeShip": 0.5818965517241379}, {"YearMonth": "2011-06", "AOVBucket": "25-30", "count": 203, "revenue": 5584.165491, "avgShipping": 1.1773399014778325, "pctFreeShip": 0.6157635467980296}, {"YearMonth": "2011-06", "AOVBucket": "30-35", "count": 165, "revenue": 5369.600494, "avgShipping": 1.4363636363636363, "pctFreeShip": 0.4909090909090909}, {"YearMonth": "2011-06", "AOVBucket": "35-40", "count": 77, "revenue": 2911.206379, "avgShipping": 1.7792207792207793, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2011-06", "AOVBucket": "40-50", "count": 104, "revenue": 4593.691186, "avgShipping": 1.7403846153846154, "pctFreeShip": 0.41346153846153844}, {"YearMonth": "2011-06", "AOVBucket": "50-60", "count": 44, "revenue": 2370.384603, "avgShipping": 1.6022727272727273, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2011-06", "AOVBucket": "60-75", "count": 25, "revenue": 1662.689787, "avgShipping": 2.16, "pctFreeShip": 0.28}, {"YearMonth": "2011-06", "AOVBucket": "75-100", "count": 33, "revenue": 2799.561772, "avgShipping": 2.0454545454545454, "pctFreeShip": 0.42424242424242425}, {"YearMonth": "2011-06", "AOVBucket": "100-150", "count": 10, "revenue": 1133.029602, "avgShipping": 2.6, "pctFreeShip": 0.4}, {"YearMonth": "2011-06", "AOVBucket": "150-200", "count": 5, "revenue": 841.045026, "avgShipping": 3.1, "pctFreeShip": 0.0}, {"YearMonth": "2011-06", "AOVBucket": "200-500", "count": 2, "revenue": 405.049404, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2011-07", "AOVBucket": "<5", "count": 8, "revenue": 36.72, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-07", "AOVBucket": "5-10", "count": 223, "revenue": 1785.775, "avgShipping": 0.3609865470852018, "pctFreeShip": 0.8609865470852018}, {"YearMonth": "2011-07", "AOVBucket": "10-15", "count": 538, "revenue": 6813.882799999999, "avgShipping": 0.7063197026022305, "pctFreeShip": 0.7360594795539034}, {"YearMonth": "2011-07", "AOVBucket": "15-20", "count": 391, "revenue": 6926.635899999999, "avgShipping": 0.959079283887468, "pctFreeShip": 0.6854219948849105}, {"YearMonth": "2011-07", "AOVBucket": "20-25", "count": 253, "revenue": 5697.744304, "avgShipping": 1.0395256916996047, "pctFreeShip": 0.6324110671936759}, {"YearMonth": "2011-07", "AOVBucket": "25-30", "count": 242, "revenue": 6710.305497, "avgShipping": 0.859504132231405, "pctFreeShip": 0.71900826446281}, {"YearMonth": "2011-07", "AOVBucket": "30-35", "count": 184, "revenue": 5960.998989, "avgShipping": 1.0706521739130435, "pctFreeShip": 0.6304347826086957}, {"YearMonth": "2011-07", "AOVBucket": "35-40", "count": 80, "revenue": 3017.594765, "avgShipping": 1.18125, "pctFreeShip": 0.6125}, {"YearMonth": "2011-07", "AOVBucket": "40-50", "count": 96, "revenue": 4288.855295, "avgShipping": 1.5208333333333333, "pctFreeShip": 0.5208333333333334}, {"YearMonth": "2011-07", "AOVBucket": "50-60", "count": 54, "revenue": 2904.109689, "avgShipping": 1.7685185185185186, "pctFreeShip": 0.5}, {"YearMonth": "2011-07", "AOVBucket": "60-75", "count": 43, "revenue": 2823.224906, "avgShipping": 2.255813953488372, "pctFreeShip": 0.32558139534883723}, {"YearMonth": "2011-07", "AOVBucket": "75-100", "count": 26, "revenue": 2174.676506, "avgShipping": 2.3076923076923075, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2011-07", "AOVBucket": "100-150", "count": 16, "revenue": 1830.039521, "avgShipping": 2.28125, "pctFreeShip": 0.3125}, {"YearMonth": "2011-07", "AOVBucket": "150-200", "count": 3, "revenue": 507.33988999999997, "avgShipping": 3.5, "pctFreeShip": 0.0}, {"YearMonth": "2011-07", "AOVBucket": "200-500", "count": 3, "revenue": 700.600002, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2011-08", "AOVBucket": "<5", "count": 18, "revenue": 83.53750000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-08", "AOVBucket": "5-10", "count": 246, "revenue": 1983.60387, "avgShipping": 0.27439024390243905, "pctFreeShip": 0.9024390243902439}, {"YearMonth": "2011-08", "AOVBucket": "10-15", "count": 627, "revenue": 7912.41536, "avgShipping": 0.7200956937799043, "pctFreeShip": 0.7416267942583732}, {"YearMonth": "2011-08", "AOVBucket": "15-20", "count": 376, "revenue": 6629.280702999999, "avgShipping": 0.9095744680851063, "pctFreeShip": 0.6861702127659575}, {"YearMonth": "2011-08", "AOVBucket": "20-25", "count": 266, "revenue": 5998.649568, "avgShipping": 1.1090225563909775, "pctFreeShip": 0.6203007518796992}, {"YearMonth": "2011-08", "AOVBucket": "25-30", "count": 237, "revenue": 6585.097431, "avgShipping": 0.8502109704641351, "pctFreeShip": 0.7130801687763713}, {"YearMonth": "2011-08", "AOVBucket": "30-35", "count": 205, "revenue": 6694.709411, "avgShipping": 1.1878048780487804, "pctFreeShip": 0.6048780487804878}, {"YearMonth": "2011-08", "AOVBucket": "35-40", "count": 123, "revenue": 4619.335662, "avgShipping": 1.467479674796748, "pctFreeShip": 0.5447154471544715}, {"YearMonth": "2011-08", "AOVBucket": "40-50", "count": 108, "revenue": 4803.034413, "avgShipping": 0.9768518518518519, "pctFreeShip": 0.6944444444444444}, {"YearMonth": "2011-08", "AOVBucket": "50-60", "count": 65, "revenue": 3559.106203, "avgShipping": 2.023076923076923, "pctFreeShip": 0.4153846153846154}, {"YearMonth": "2011-08", "AOVBucket": "60-75", "count": 53, "revenue": 3525.338609, "avgShipping": 1.5188679245283019, "pctFreeShip": 0.5660377358490566}, {"YearMonth": "2011-08", "AOVBucket": "75-100", "count": 28, "revenue": 2405.401595, "avgShipping": 2.2142857142857144, "pctFreeShip": 0.39285714285714285}, {"YearMonth": "2011-08", "AOVBucket": "100-150", "count": 16, "revenue": 1888.999906, "avgShipping": 1.71875, "pctFreeShip": 0.5}, {"YearMonth": "2011-08", "AOVBucket": "150-200", "count": 3, "revenue": 523.649998, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2011-08", "AOVBucket": "200-500", "count": 7, "revenue": 1953.384315, "avgShipping": 2.2142857142857144, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2011-09", "AOVBucket": "<5", "count": 10, "revenue": 47.161, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-09", "AOVBucket": "5-10", "count": 259, "revenue": 2049.3116, "avgShipping": 0.24324324324324326, "pctFreeShip": 0.9073359073359073}, {"YearMonth": "2011-09", "AOVBucket": "10-15", "count": 548, "revenue": 6935.9692, "avgShipping": 0.8467153284671532, "pctFreeShip": 0.7062043795620438}, {"YearMonth": "2011-09", "AOVBucket": "15-20", "count": 373, "revenue": 6559.081504, "avgShipping": 0.8887399463806971, "pctFreeShip": 0.6943699731903485}, {"YearMonth": "2011-09", "AOVBucket": "20-25", "count": 229, "revenue": 5211.366676, "avgShipping": 1.1157205240174672, "pctFreeShip": 0.62882096069869}, {"YearMonth": "2011-09", "AOVBucket": "25-30", "count": 180, "revenue": 4988.588793, "avgShipping": 1.0916666666666666, "pctFreeShip": 0.6333333333333333}, {"YearMonth": "2011-09", "AOVBucket": "30-35", "count": 155, "revenue": 5016.047192, "avgShipping": 1.1096774193548387, "pctFreeShip": 0.6064516129032258}, {"YearMonth": "2011-09", "AOVBucket": "35-40", "count": 70, "revenue": 2623.789875, "avgShipping": 1.2571428571428571, "pctFreeShip": 0.6}, {"YearMonth": "2011-09", "AOVBucket": "40-50", "count": 87, "revenue": 3859.809323, "avgShipping": 1.6781609195402298, "pctFreeShip": 0.5057471264367817}, {"YearMonth": "2011-09", "AOVBucket": "50-60", "count": 40, "revenue": 2198.115588, "avgShipping": 1.5875, "pctFreeShip": 0.5}, {"YearMonth": "2011-09", "AOVBucket": "60-75", "count": 34, "revenue": 2247.254831, "avgShipping": 2.1911764705882355, "pctFreeShip": 0.4117647058823529}, {"YearMonth": "2011-09", "AOVBucket": "75-100", "count": 18, "revenue": 1584.989999, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2011-09", "AOVBucket": "100-150", "count": 11, "revenue": 1296.139892, "avgShipping": 3.090909090909091, "pctFreeShip": 0.09090909090909091}, {"YearMonth": "2011-09", "AOVBucket": "150-200", "count": 3, "revenue": 484.586597, "avgShipping": 3.5, "pctFreeShip": 0.0}, {"YearMonth": "2011-09", "AOVBucket": "200-500", "count": 3, "revenue": 767.419997, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2011-10", "AOVBucket": "<5", "count": 23, "revenue": 103.7716, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-10", "AOVBucket": "5-10", "count": 380, "revenue": 3038.1516699999997, "avgShipping": 0.4473684210526316, "pctFreeShip": 0.8289473684210527}, {"YearMonth": "2011-10", "AOVBucket": "10-15", "count": 658, "revenue": 8226.54813, "avgShipping": 0.6762917933130699, "pctFreeShip": 0.7477203647416414}, {"YearMonth": "2011-10", "AOVBucket": "15-20", "count": 391, "revenue": 6867.592404999999, "avgShipping": 0.8951406649616368, "pctFreeShip": 0.7007672634271099}, {"YearMonth": "2011-10", "AOVBucket": "20-25", "count": 267, "revenue": 6050.332479, "avgShipping": 0.9700374531835206, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2011-10", "AOVBucket": "25-30", "count": 201, "revenue": 5554.936576, "avgShipping": 1.1044776119402986, "pctFreeShip": 0.6467661691542289}, {"YearMonth": "2011-10", "AOVBucket": "30-35", "count": 174, "revenue": 5677.699548, "avgShipping": 1.2528735632183907, "pctFreeShip": 0.5862068965517241}, {"YearMonth": "2011-10", "AOVBucket": "35-40", "count": 80, "revenue": 2988.6897870000003, "avgShipping": 1.84375, "pctFreeShip": 0.475}, {"YearMonth": "2011-10", "AOVBucket": "40-50", "count": 98, "revenue": 4398.97739, "avgShipping": 1.933673469387755, "pctFreeShip": 0.41836734693877553}, {"YearMonth": "2011-10", "AOVBucket": "50-60", "count": 57, "revenue": 3102.232904, "avgShipping": 1.868421052631579, "pctFreeShip": 0.40350877192982454}, {"YearMonth": "2011-10", "AOVBucket": "60-75", "count": 50, "revenue": 3367.015301, "avgShipping": 2.32, "pctFreeShip": 0.38}, {"YearMonth": "2011-10", "AOVBucket": "75-100", "count": 28, "revenue": 2374.329812, "avgShipping": 1.7857142857142858, "pctFreeShip": 0.39285714285714285}, {"YearMonth": "2011-10", "AOVBucket": "100-150", "count": 12, "revenue": 1412.783194, "avgShipping": 2.9583333333333335, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2011-10", "AOVBucket": "150-200", "count": 2, "revenue": 350.009799, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2011-11", "AOVBucket": "<5", "count": 25, "revenue": 114.43990000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-11", "AOVBucket": "5-10", "count": 377, "revenue": 2966.4724, "avgShipping": 0.3063660477453581, "pctFreeShip": 0.8806366047745358}, {"YearMonth": "2011-11", "AOVBucket": "10-15", "count": 735, "revenue": 9241.24582, "avgShipping": 0.8136054421768707, "pctFreeShip": 0.710204081632653}, {"YearMonth": "2011-11", "AOVBucket": "15-20", "count": 396, "revenue": 7047.54483, "avgShipping": 0.8825757575757576, "pctFreeShip": 0.7045454545454546}, {"YearMonth": "2011-11", "AOVBucket": "20-25", "count": 294, "revenue": 6692.209146, "avgShipping": 1.096938775510204, "pctFreeShip": 0.6224489795918368}, {"YearMonth": "2011-11", "AOVBucket": "25-30", "count": 215, "revenue": 5924.927171, "avgShipping": 1.3069767441860465, "pctFreeShip": 0.5813953488372093}, {"YearMonth": "2011-11", "AOVBucket": "30-35", "count": 188, "revenue": 6107.257594, "avgShipping": 0.9627659574468085, "pctFreeShip": 0.6595744680851063}, {"YearMonth": "2011-11", "AOVBucket": "35-40", "count": 90, "revenue": 3404.978258, "avgShipping": 1.4444444444444444, "pctFreeShip": 0.5555555555555556}, {"YearMonth": "2011-11", "AOVBucket": "40-50", "count": 108, "revenue": 4836.977977, "avgShipping": 1.4305555555555556, "pctFreeShip": 0.5277777777777778}, {"YearMonth": "2011-11", "AOVBucket": "50-60", "count": 52, "revenue": 2858.687925, "avgShipping": 1.5384615384615385, "pctFreeShip": 0.5576923076923077}, {"YearMonth": "2011-11", "AOVBucket": "60-75", "count": 44, "revenue": 2941.169904, "avgShipping": 1.3068181818181819, "pctFreeShip": 0.6136363636363636}, {"YearMonth": "2011-11", "AOVBucket": "75-100", "count": 21, "revenue": 1769.9443039999999, "avgShipping": 2.0476190476190474, "pctFreeShip": 0.47619047619047616}, {"YearMonth": "2011-11", "AOVBucket": "100-150", "count": 15, "revenue": 1736.799494, "avgShipping": 2.8, "pctFreeShip": 0.2}, {"YearMonth": "2011-11", "AOVBucket": "150-200", "count": 4, "revenue": 673.4495939999999, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2011-11", "AOVBucket": "200-500", "count": 1, "revenue": 239.400002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-12", "AOVBucket": "<5", "count": 15, "revenue": 67.297, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-12", "AOVBucket": "5-10", "count": 336, "revenue": 2638.89917, "avgShipping": 0.19196428571428573, "pctFreeShip": 0.9285714285714286}, {"YearMonth": "2011-12", "AOVBucket": "10-15", "count": 604, "revenue": 7518.8777, "avgShipping": 0.4544701986754967, "pctFreeShip": 0.8427152317880795}, {"YearMonth": "2011-12", "AOVBucket": "15-20", "count": 343, "revenue": 6041.112705, "avgShipping": 0.8979591836734694, "pctFreeShip": 0.7521865889212828}, {"YearMonth": "2011-12", "AOVBucket": "20-25", "count": 275, "revenue": 6224.351167, "avgShipping": 0.7963636363636364, "pctFreeShip": 0.7381818181818182}, {"YearMonth": "2011-12", "AOVBucket": "25-30", "count": 172, "revenue": 4723.268914, "avgShipping": 0.9622093023255814, "pctFreeShip": 0.7151162790697675}, {"YearMonth": "2011-12", "AOVBucket": "30-35", "count": 147, "revenue": 4780.61263, "avgShipping": 1.010204081632653, "pctFreeShip": 0.6870748299319728}, {"YearMonth": "2011-12", "AOVBucket": "35-40", "count": 78, "revenue": 2907.904424, "avgShipping": 1.1730769230769231, "pctFreeShip": 0.6538461538461539}, {"YearMonth": "2011-12", "AOVBucket": "40-50", "count": 91, "revenue": 4049.789285, "avgShipping": 1.2967032967032968, "pctFreeShip": 0.5824175824175825}, {"YearMonth": "2011-12", "AOVBucket": "50-60", "count": 49, "revenue": 2680.599697, "avgShipping": 1.1326530612244898, "pctFreeShip": 0.6326530612244898}, {"YearMonth": "2011-12", "AOVBucket": "60-75", "count": 40, "revenue": 2672.399898, "avgShipping": 1.625, "pctFreeShip": 0.575}, {"YearMonth": "2011-12", "AOVBucket": "75-100", "count": 24, "revenue": 2044.501896, "avgShipping": 1.9791666666666667, "pctFreeShip": 0.4583333333333333}, {"YearMonth": "2011-12", "AOVBucket": "100-150", "count": 16, "revenue": 1822.634791, "avgShipping": 2.40625, "pctFreeShip": 0.4375}, {"YearMonth": "2011-12", "AOVBucket": "150-200", "count": 4, "revenue": 705.610085, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2011-12", "AOVBucket": "200-500", "count": 3, "revenue": 772.260001, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2012-01", "AOVBucket": "<5", "count": 32, "revenue": 144.3624, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-01", "AOVBucket": "5-10", "count": 478, "revenue": 3851.6567, "avgShipping": 0.3127615062761506, "pctFreeShip": 0.8786610878661087}, {"YearMonth": "2012-01", "AOVBucket": "10-15", "count": 696, "revenue": 8760.23102, "avgShipping": 0.5941091954022989, "pctFreeShip": 0.7787356321839081}, {"YearMonth": "2012-01", "AOVBucket": "15-20", "count": 517, "revenue": 9098.145696, "avgShipping": 0.8491295938104448, "pctFreeShip": 0.7214700193423598}, {"YearMonth": "2012-01", "AOVBucket": "20-25", "count": 318, "revenue": 7225.985211, "avgShipping": 0.9889937106918238, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2012-01", "AOVBucket": "25-30", "count": 345, "revenue": 9572.975096, "avgShipping": 0.9405797101449276, "pctFreeShip": 0.6811594202898551}, {"YearMonth": "2012-01", "AOVBucket": "30-35", "count": 215, "revenue": 6978.841623, "avgShipping": 1.3558139534883722, "pctFreeShip": 0.5627906976744186}, {"YearMonth": "2012-01", "AOVBucket": "35-40", "count": 139, "revenue": 5170.54902, "avgShipping": 1.5719424460431655, "pctFreeShip": 0.5323741007194245}, {"YearMonth": "2012-01", "AOVBucket": "40-50", "count": 155, "revenue": 7057.280224, "avgShipping": 1.1451612903225807, "pctFreeShip": 0.6387096774193548}, {"YearMonth": "2012-01", "AOVBucket": "50-60", "count": 113, "revenue": 6161.678261, "avgShipping": 1.3672566371681416, "pctFreeShip": 0.5752212389380531}, {"YearMonth": "2012-01", "AOVBucket": "60-75", "count": 69, "revenue": 4624.821538, "avgShipping": 1.9492753623188406, "pctFreeShip": 0.42028985507246375}, {"YearMonth": "2012-01", "AOVBucket": "75-100", "count": 39, "revenue": 3393.954526, "avgShipping": 2.5384615384615383, "pctFreeShip": 0.3076923076923077}, {"YearMonth": "2012-01", "AOVBucket": "100-150", "count": 12, "revenue": 1392.153306, "avgShipping": 1.75, "pctFreeShip": 0.5}, {"YearMonth": "2012-01", "AOVBucket": "150-200", "count": 2, "revenue": 304.229909, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-02", "AOVBucket": "<5", "count": 15, "revenue": 69.03, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-02", "AOVBucket": "5-10", "count": 388, "revenue": 3086.845, "avgShipping": 0.32989690721649484, "pctFreeShip": 0.8711340206185567}, {"YearMonth": "2012-02", "AOVBucket": "10-15", "count": 608, "revenue": 7735.4504, "avgShipping": 0.678453947368421, "pctFreeShip": 0.7532894736842105}, {"YearMonth": "2012-02", "AOVBucket": "15-20", "count": 410, "revenue": 7204.491708, "avgShipping": 1.1121951219512196, "pctFreeShip": 0.6268292682926829}, {"YearMonth": "2012-02", "AOVBucket": "20-25", "count": 282, "revenue": 6435.1545479999995, "avgShipping": 1.076241134751773, "pctFreeShip": 0.6453900709219859}, {"YearMonth": "2012-02", "AOVBucket": "25-30", "count": 235, "revenue": 6504.870285, "avgShipping": 1.278723404255319, "pctFreeShip": 0.5914893617021276}, {"YearMonth": "2012-02", "AOVBucket": "30-35", "count": 162, "revenue": 5243.654308, "avgShipping": 1.3364197530864197, "pctFreeShip": 0.5679012345679012}, {"YearMonth": "2012-02", "AOVBucket": "35-40", "count": 101, "revenue": 3776.294398, "avgShipping": 1.0544554455445545, "pctFreeShip": 0.6732673267326733}, {"YearMonth": "2012-02", "AOVBucket": "40-50", "count": 110, "revenue": 4939.254577, "avgShipping": 1.5363636363636364, "pctFreeShip": 0.5}, {"YearMonth": "2012-02", "AOVBucket": "50-60", "count": 46, "revenue": 2500.921383, "avgShipping": 1.2173913043478262, "pctFreeShip": 0.6304347826086957}, {"YearMonth": "2012-02", "AOVBucket": "60-75", "count": 41, "revenue": 2729.419596, "avgShipping": 2.2439024390243905, "pctFreeShip": 0.36585365853658536}, {"YearMonth": "2012-02", "AOVBucket": "75-100", "count": 26, "revenue": 2232.952401, "avgShipping": 2.423076923076923, "pctFreeShip": 0.3076923076923077}, {"YearMonth": "2012-02", "AOVBucket": "100-150", "count": 17, "revenue": 2046.1377, "avgShipping": 2.176470588235294, "pctFreeShip": 0.4117647058823529}, {"YearMonth": "2012-02", "AOVBucket": "150-200", "count": 3, "revenue": 493.799995, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2012-02", "AOVBucket": "200-500", "count": 1, "revenue": 239.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-03", "AOVBucket": "<5", "count": 12, "revenue": 55.02, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-03", "AOVBucket": "5-10", "count": 312, "revenue": 2540.83, "avgShipping": 0.28044871794871795, "pctFreeShip": 0.8878205128205128}, {"YearMonth": "2012-03", "AOVBucket": "10-15", "count": 501, "revenue": 6356.0261, "avgShipping": 0.7764471057884231, "pctFreeShip": 0.720558882235529}, {"YearMonth": "2012-03", "AOVBucket": "15-20", "count": 420, "revenue": 7331.469400999999, "avgShipping": 0.9904761904761905, "pctFreeShip": 0.6642857142857143}, {"YearMonth": "2012-03", "AOVBucket": "20-25", "count": 245, "revenue": 5593.8277689999995, "avgShipping": 1.2408163265306122, "pctFreeShip": 0.5959183673469388}, {"YearMonth": "2012-03", "AOVBucket": "25-30", "count": 223, "revenue": 6140.844775, "avgShipping": 1.0964125560538116, "pctFreeShip": 0.6367713004484304}, {"YearMonth": "2012-03", "AOVBucket": "30-35", "count": 161, "revenue": 5207.266001, "avgShipping": 1.2919254658385093, "pctFreeShip": 0.546583850931677}, {"YearMonth": "2012-03", "AOVBucket": "35-40", "count": 116, "revenue": 4334.0947080000005, "avgShipping": 1.6982758620689655, "pctFreeShip": 0.46551724137931033}, {"YearMonth": "2012-03", "AOVBucket": "40-50", "count": 107, "revenue": 4783.89488, "avgShipping": 1.3878504672897196, "pctFreeShip": 0.5514018691588785}, {"YearMonth": "2012-03", "AOVBucket": "50-60", "count": 59, "revenue": 3200.394303, "avgShipping": 1.7457627118644068, "pctFreeShip": 0.4745762711864407}, {"YearMonth": "2012-03", "AOVBucket": "60-75", "count": 41, "revenue": 2769.231808, "avgShipping": 2.207317073170732, "pctFreeShip": 0.3902439024390244}, {"YearMonth": "2012-03", "AOVBucket": "75-100", "count": 37, "revenue": 3173.149707, "avgShipping": 2.0, "pctFreeShip": 0.43243243243243246}, {"YearMonth": "2012-03", "AOVBucket": "100-150", "count": 15, "revenue": 1679.769707, "avgShipping": 1.8333333333333333, "pctFreeShip": 0.6}, {"YearMonth": "2012-03", "AOVBucket": "150-200", "count": 4, "revenue": 679.449892, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2012-03", "AOVBucket": "200-500", "count": 4, "revenue": 979.089706, "avgShipping": 3.0, "pctFreeShip": 0.25}, {"YearMonth": "2012-04", "AOVBucket": "<5", "count": 19, "revenue": 86.8298, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-04", "AOVBucket": "5-10", "count": 362, "revenue": 2985.83, "avgShipping": 0.2569060773480663, "pctFreeShip": 0.9005524861878453}, {"YearMonth": "2012-04", "AOVBucket": "10-15", "count": 467, "revenue": 5889.1039, "avgShipping": 0.7987152034261242, "pctFreeShip": 0.715203426124197}, {"YearMonth": "2012-04", "AOVBucket": "15-20", "count": 422, "revenue": 7456.776338, "avgShipping": 0.9715639810426541, "pctFreeShip": 0.6777251184834123}, {"YearMonth": "2012-04", "AOVBucket": "20-25", "count": 261, "revenue": 5942.842431, "avgShipping": 1.1973180076628354, "pctFreeShip": 0.5862068965517241}, {"YearMonth": "2012-04", "AOVBucket": "25-30", "count": 227, "revenue": 6293.124902, "avgShipping": 0.9933920704845814, "pctFreeShip": 0.6607929515418502}, {"YearMonth": "2012-04", "AOVBucket": "30-35", "count": 170, "revenue": 5545.396802, "avgShipping": 1.1970588235294117, "pctFreeShip": 0.5882352941176471}, {"YearMonth": "2012-04", "AOVBucket": "35-40", "count": 122, "revenue": 4547.083422, "avgShipping": 1.0942622950819672, "pctFreeShip": 0.6311475409836066}, {"YearMonth": "2012-04", "AOVBucket": "40-50", "count": 118, "revenue": 5251.12486, "avgShipping": 1.5635593220338984, "pctFreeShip": 0.5338983050847458}, {"YearMonth": "2012-04", "AOVBucket": "50-60", "count": 73, "revenue": 4017.492829, "avgShipping": 2.0205479452054793, "pctFreeShip": 0.3561643835616438}, {"YearMonth": "2012-04", "AOVBucket": "60-75", "count": 54, "revenue": 3554.579326, "avgShipping": 1.7777777777777777, "pctFreeShip": 0.4444444444444444}, {"YearMonth": "2012-04", "AOVBucket": "75-100", "count": 27, "revenue": 2351.647011, "avgShipping": 1.7407407407407407, "pctFreeShip": 0.48148148148148145}, {"YearMonth": "2012-04", "AOVBucket": "100-150", "count": 17, "revenue": 2060.180884, "avgShipping": 2.0294117647058822, "pctFreeShip": 0.47058823529411764}, {"YearMonth": "2012-04", "AOVBucket": "200-500", "count": 1, "revenue": 209.780007, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-05", "AOVBucket": "<5", "count": 9, "revenue": 41.365, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-05", "AOVBucket": "5-10", "count": 324, "revenue": 2773.045, "avgShipping": 0.19135802469135801, "pctFreeShip": 0.9290123456790124}, {"YearMonth": "2012-05", "AOVBucket": "10-15", "count": 415, "revenue": 5296.9343, "avgShipping": 0.7987951807228916, "pctFreeShip": 0.7060240963855422}, {"YearMonth": "2012-05", "AOVBucket": "15-20", "count": 384, "revenue": 6834.608415, "avgShipping": 0.9309895833333334, "pctFreeShip": 0.6770833333333334}, {"YearMonth": "2012-05", "AOVBucket": "20-25", "count": 288, "revenue": 6521.996069, "avgShipping": 1.1354166666666667, "pctFreeShip": 0.6041666666666666}, {"YearMonth": "2012-05", "AOVBucket": "25-30", "count": 210, "revenue": 5813.868201, "avgShipping": 1.2642857142857142, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2012-05", "AOVBucket": "30-35", "count": 156, "revenue": 5094.785124, "avgShipping": 1.0096153846153846, "pctFreeShip": 0.6538461538461539}, {"YearMonth": "2012-05", "AOVBucket": "35-40", "count": 160, "revenue": 5959.998311, "avgShipping": 0.959375, "pctFreeShip": 0.6875}, {"YearMonth": "2012-05", "AOVBucket": "40-50", "count": 116, "revenue": 5148.020485, "avgShipping": 1.5991379310344827, "pctFreeShip": 0.5}, {"YearMonth": "2012-05", "AOVBucket": "50-60", "count": 61, "revenue": 3366.850724, "avgShipping": 1.6065573770491803, "pctFreeShip": 0.5081967213114754}, {"YearMonth": "2012-05", "AOVBucket": "60-75", "count": 48, "revenue": 3220.1427009999998, "avgShipping": 2.3333333333333335, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2012-05", "AOVBucket": "75-100", "count": 33, "revenue": 2837.914608, "avgShipping": 2.0757575757575757, "pctFreeShip": 0.42424242424242425}, {"YearMonth": "2012-05", "AOVBucket": "100-150", "count": 17, "revenue": 2101.795774, "avgShipping": 2.1470588235294117, "pctFreeShip": 0.35294117647058826}, {"YearMonth": "2012-05", "AOVBucket": "150-200", "count": 4, "revenue": 674.900004, "avgShipping": 2.875, "pctFreeShip": 0.0}, {"YearMonth": "2012-05", "AOVBucket": "200-500", "count": 3, "revenue": 664.75, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2012-06", "AOVBucket": "<5", "count": 7, "revenue": 30.2296, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-06", "AOVBucket": "5-10", "count": 275, "revenue": 2410.49186, "avgShipping": 0.16545454545454547, "pctFreeShip": 0.9381818181818182}, {"YearMonth": "2012-06", "AOVBucket": "10-15", "count": 327, "revenue": 4195.6523, "avgShipping": 0.6819571865443425, "pctFreeShip": 0.7492354740061162}, {"YearMonth": "2012-06", "AOVBucket": "15-20", "count": 342, "revenue": 6187.159309, "avgShipping": 0.8654970760233918, "pctFreeShip": 0.7105263157894737}, {"YearMonth": "2012-06", "AOVBucket": "20-25", "count": 275, "revenue": 6230.425849, "avgShipping": 1.2527272727272727, "pctFreeShip": 0.5745454545454546}, {"YearMonth": "2012-06", "AOVBucket": "25-30", "count": 168, "revenue": 4667.647887, "avgShipping": 1.1517857142857142, "pctFreeShip": 0.6071428571428571}, {"YearMonth": "2012-06", "AOVBucket": "30-35", "count": 134, "revenue": 4345.547705, "avgShipping": 1.0970149253731343, "pctFreeShip": 0.6194029850746269}, {"YearMonth": "2012-06", "AOVBucket": "35-40", "count": 103, "revenue": 3843.846168, "avgShipping": 1.2524271844660195, "pctFreeShip": 0.6310679611650486}, {"YearMonth": "2012-06", "AOVBucket": "40-50", "count": 120, "revenue": 5312.587175, "avgShipping": 1.5208333333333333, "pctFreeShip": 0.5166666666666667}, {"YearMonth": "2012-06", "AOVBucket": "50-60", "count": 62, "revenue": 3373.672047, "avgShipping": 1.4516129032258065, "pctFreeShip": 0.5645161290322581}, {"YearMonth": "2012-06", "AOVBucket": "60-75", "count": 47, "revenue": 3141.340489, "avgShipping": 1.4680851063829787, "pctFreeShip": 0.5531914893617021}, {"YearMonth": "2012-06", "AOVBucket": "75-100", "count": 50, "revenue": 4232.613313, "avgShipping": 1.62, "pctFreeShip": 0.52}, {"YearMonth": "2012-06", "AOVBucket": "100-150", "count": 16, "revenue": 1806.909296, "avgShipping": 2.125, "pctFreeShip": 0.375}, {"YearMonth": "2012-06", "AOVBucket": "150-200", "count": 3, "revenue": 529.199809, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2012-06", "AOVBucket": "200-500", "count": 1, "revenue": 201.25, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2012-07", "AOVBucket": "<5", "count": 15, "revenue": 66.6468, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-07", "AOVBucket": "5-10", "count": 324, "revenue": 2757.1958600000003, "avgShipping": 0.09876543209876543, "pctFreeShip": 0.9660493827160493}, {"YearMonth": "2012-07", "AOVBucket": "10-15", "count": 329, "revenue": 4244.81376, "avgShipping": 0.41641337386018235, "pctFreeShip": 0.8480243161094225}, {"YearMonth": "2012-07", "AOVBucket": "15-20", "count": 372, "revenue": 6621.73926, "avgShipping": 0.6747311827956989, "pctFreeShip": 0.7795698924731183}, {"YearMonth": "2012-07", "AOVBucket": "20-25", "count": 218, "revenue": 4976.644804, "avgShipping": 1.0160550458715596, "pctFreeShip": 0.6743119266055045}, {"YearMonth": "2012-07", "AOVBucket": "25-30", "count": 151, "revenue": 4192.259171, "avgShipping": 1.2516556291390728, "pctFreeShip": 0.6158940397350994}, {"YearMonth": "2012-07", "AOVBucket": "30-35", "count": 147, "revenue": 4779.904263, "avgShipping": 0.8639455782312925, "pctFreeShip": 0.7210884353741497}, {"YearMonth": "2012-07", "AOVBucket": "35-40", "count": 132, "revenue": 4929.211091, "avgShipping": 0.7840909090909091, "pctFreeShip": 0.75}, {"YearMonth": "2012-07", "AOVBucket": "40-50", "count": 116, "revenue": 5167.129388, "avgShipping": 1.146551724137931, "pctFreeShip": 0.6293103448275862}, {"YearMonth": "2012-07", "AOVBucket": "50-60", "count": 55, "revenue": 2991.931601, "avgShipping": 1.6454545454545455, "pctFreeShip": 0.5272727272727272}, {"YearMonth": "2012-07", "AOVBucket": "60-75", "count": 45, "revenue": 2990.6546399999997, "avgShipping": 1.5444444444444445, "pctFreeShip": 0.5555555555555556}, {"YearMonth": "2012-07", "AOVBucket": "75-100", "count": 30, "revenue": 2524.846401, "avgShipping": 1.2666666666666666, "pctFreeShip": 0.6333333333333333}, {"YearMonth": "2012-07", "AOVBucket": "100-150", "count": 13, "revenue": 1595.943112, "avgShipping": 2.5384615384615383, "pctFreeShip": 0.3076923076923077}, {"YearMonth": "2012-07", "AOVBucket": "150-200", "count": 3, "revenue": 534.8036079999999, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2012-08", "AOVBucket": "<5", "count": 20, "revenue": 88.194, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-08", "AOVBucket": "5-10", "count": 335, "revenue": 2845.300376, "avgShipping": 0.09104477611940298, "pctFreeShip": 0.9671641791044776}, {"YearMonth": "2012-08", "AOVBucket": "10-15", "count": 345, "revenue": 4424.0019999999995, "avgShipping": 0.7956521739130434, "pctFreeShip": 0.7304347826086957}, {"YearMonth": "2012-08", "AOVBucket": "15-20", "count": 299, "revenue": 5444.7273, "avgShipping": 0.6806020066889632, "pctFreeShip": 0.7892976588628763}, {"YearMonth": "2012-08", "AOVBucket": "20-25", "count": 220, "revenue": 5036.641801, "avgShipping": 0.825, "pctFreeShip": 0.7272727272727273}, {"YearMonth": "2012-08", "AOVBucket": "25-30", "count": 158, "revenue": 4422.941236, "avgShipping": 1.0981012658227849, "pctFreeShip": 0.6329113924050633}, {"YearMonth": "2012-08", "AOVBucket": "30-35", "count": 148, "revenue": 4847.854582, "avgShipping": 0.8344594594594594, "pctFreeShip": 0.75}, {"YearMonth": "2012-08", "AOVBucket": "35-40", "count": 148, "revenue": 5533.321502, "avgShipping": 0.8006756756756757, "pctFreeShip": 0.75}, {"YearMonth": "2012-08", "AOVBucket": "40-50", "count": 111, "revenue": 4928.948402, "avgShipping": 1.2972972972972974, "pctFreeShip": 0.6126126126126126}, {"YearMonth": "2012-08", "AOVBucket": "50-60", "count": 49, "revenue": 2659.9014779999998, "avgShipping": 1.2551020408163265, "pctFreeShip": 0.6326530612244898}, {"YearMonth": "2012-08", "AOVBucket": "60-75", "count": 41, "revenue": 2700.690177, "avgShipping": 1.4268292682926829, "pctFreeShip": 0.5609756097560976}, {"YearMonth": "2012-08", "AOVBucket": "75-100", "count": 31, "revenue": 2611.972181, "avgShipping": 2.2419354838709675, "pctFreeShip": 0.3548387096774194}, {"YearMonth": "2012-08", "AOVBucket": "100-150", "count": 17, "revenue": 2010.04836, "avgShipping": 1.3235294117647058, "pctFreeShip": 0.6470588235294118}, {"YearMonth": "2012-08", "AOVBucket": "150-200", "count": 3, "revenue": 534.3037919999999, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2012-08", "AOVBucket": "500+", "count": 1, "revenue": 587.210029, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2012-09", "AOVBucket": "<5", "count": 23, "revenue": 101.08800000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-09", "AOVBucket": "5-10", "count": 408, "revenue": 3438.85104, "avgShipping": 0.15808823529411764, "pctFreeShip": 0.9411764705882353}, {"YearMonth": "2012-09", "AOVBucket": "10-15", "count": 371, "revenue": 4772.81286, "avgShipping": 0.6778975741239892, "pctFreeShip": 0.7628032345013477}, {"YearMonth": "2012-09", "AOVBucket": "15-20", "count": 408, "revenue": 7295.84128, "avgShipping": 0.5416666666666666, "pctFreeShip": 0.8333333333333334}, {"YearMonth": "2012-09", "AOVBucket": "20-25", "count": 272, "revenue": 6127.7709589999995, "avgShipping": 0.9816176470588235, "pctFreeShip": 0.6911764705882353}, {"YearMonth": "2012-09", "AOVBucket": "25-30", "count": 225, "revenue": 6385.318301, "avgShipping": 0.8044444444444444, "pctFreeShip": 0.7555555555555555}, {"YearMonth": "2012-09", "AOVBucket": "30-35", "count": 139, "revenue": 4556.603124, "avgShipping": 1.420863309352518, "pctFreeShip": 0.539568345323741}, {"YearMonth": "2012-09", "AOVBucket": "35-40", "count": 114, "revenue": 4275.910085, "avgShipping": 0.47368421052631576, "pctFreeShip": 0.8421052631578947}, {"YearMonth": "2012-09", "AOVBucket": "40-50", "count": 115, "revenue": 5172.405763, "avgShipping": 1.2521739130434784, "pctFreeShip": 0.6347826086956522}, {"YearMonth": "2012-09", "AOVBucket": "50-60", "count": 67, "revenue": 3699.607203, "avgShipping": 0.8731343283582089, "pctFreeShip": 0.7313432835820896}, {"YearMonth": "2012-09", "AOVBucket": "60-75", "count": 60, "revenue": 4002.569402, "avgShipping": 1.5583333333333333, "pctFreeShip": 0.5666666666666667}, {"YearMonth": "2012-09", "AOVBucket": "75-100", "count": 35, "revenue": 3020.411399, "avgShipping": 2.0142857142857142, "pctFreeShip": 0.4}, {"YearMonth": "2012-09", "AOVBucket": "100-150", "count": 12, "revenue": 1470.670759, "avgShipping": 1.75, "pctFreeShip": 0.5}, {"YearMonth": "2012-09", "AOVBucket": "150-200", "count": 4, "revenue": 695.258554, "avgShipping": 3.625, "pctFreeShip": 0.0}, {"YearMonth": "2012-09", "AOVBucket": "200-500", "count": 2, "revenue": 427.396397, "avgShipping": 3.25, "pctFreeShip": 0.0}, {"YearMonth": "2012-10", "AOVBucket": "<5", "count": 22, "revenue": 103.45776000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-10", "AOVBucket": "5-10", "count": 439, "revenue": 3720.44916, "avgShipping": 0.14123006833712984, "pctFreeShip": 0.9476082004555809}, {"YearMonth": "2012-10", "AOVBucket": "10-15", "count": 407, "revenue": 5305.91832, "avgShipping": 0.6474201474201474, "pctFreeShip": 0.7764127764127764}, {"YearMonth": "2012-10", "AOVBucket": "15-20", "count": 421, "revenue": 7582.748920999999, "avgShipping": 0.6247030878859857, "pctFreeShip": 0.7885985748218527}, {"YearMonth": "2012-10", "AOVBucket": "20-25", "count": 264, "revenue": 5957.8082429999995, "avgShipping": 1.2272727272727273, "pctFreeShip": 0.6022727272727273}, {"YearMonth": "2012-10", "AOVBucket": "25-30", "count": 261, "revenue": 7325.459084, "avgShipping": 0.8103448275862069, "pctFreeShip": 0.7662835249042146}, {"YearMonth": "2012-10", "AOVBucket": "30-35", "count": 128, "revenue": 4207.973559, "avgShipping": 1.53125, "pctFreeShip": 0.546875}, {"YearMonth": "2012-10", "AOVBucket": "35-40", "count": 120, "revenue": 4508.258503, "avgShipping": 1.1208333333333333, "pctFreeShip": 0.6333333333333333}, {"YearMonth": "2012-10", "AOVBucket": "40-50", "count": 115, "revenue": 5174.360407, "avgShipping": 1.5782608695652174, "pctFreeShip": 0.5565217391304348}, {"YearMonth": "2012-10", "AOVBucket": "50-60", "count": 73, "revenue": 4048.215597, "avgShipping": 1.2945205479452055, "pctFreeShip": 0.6164383561643836}, {"YearMonth": "2012-10", "AOVBucket": "60-75", "count": 56, "revenue": 3786.548276, "avgShipping": 1.9553571428571428, "pctFreeShip": 0.4107142857142857}, {"YearMonth": "2012-10", "AOVBucket": "75-100", "count": 35, "revenue": 2946.307947, "avgShipping": 1.7714285714285714, "pctFreeShip": 0.5142857142857142}, {"YearMonth": "2012-10", "AOVBucket": "100-150", "count": 26, "revenue": 3093.088003, "avgShipping": 2.2884615384615383, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2012-10", "AOVBucket": "150-200", "count": 6, "revenue": 1060.1028139999999, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2012-11", "AOVBucket": "<5", "count": 26, "revenue": 116.889, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-11", "AOVBucket": "5-10", "count": 363, "revenue": 3083.82044, "avgShipping": 0.09779614325068871, "pctFreeShip": 0.9641873278236914}, {"YearMonth": "2012-11", "AOVBucket": "10-15", "count": 397, "revenue": 5119.63066, "avgShipping": 0.7191435768261965, "pctFreeShip": 0.760705289672544}, {"YearMonth": "2012-11", "AOVBucket": "15-20", "count": 439, "revenue": 7826.721743, "avgShipping": 0.5615034168564921, "pctFreeShip": 0.826879271070615}, {"YearMonth": "2012-11", "AOVBucket": "20-25", "count": 266, "revenue": 6007.3662779999995, "avgShipping": 1.050751879699248, "pctFreeShip": 0.6541353383458647}, {"YearMonth": "2012-11", "AOVBucket": "25-30", "count": 235, "revenue": 6575.936538, "avgShipping": 0.8191489361702128, "pctFreeShip": 0.7489361702127659}, {"YearMonth": "2012-11", "AOVBucket": "30-35", "count": 142, "revenue": 4633.860643, "avgShipping": 1.1795774647887325, "pctFreeShip": 0.6338028169014085}, {"YearMonth": "2012-11", "AOVBucket": "35-40", "count": 124, "revenue": 4656.239744, "avgShipping": 0.8669354838709677, "pctFreeShip": 0.7258064516129032}, {"YearMonth": "2012-11", "AOVBucket": "40-50", "count": 96, "revenue": 4274.582744, "avgShipping": 1.2135416666666667, "pctFreeShip": 0.6458333333333334}, {"YearMonth": "2012-11", "AOVBucket": "50-60", "count": 69, "revenue": 3780.130125, "avgShipping": 1.4057971014492754, "pctFreeShip": 0.5942028985507246}, {"YearMonth": "2012-11", "AOVBucket": "60-75", "count": 55, "revenue": 3698.207059, "avgShipping": 1.8181818181818181, "pctFreeShip": 0.4909090909090909}, {"YearMonth": "2012-11", "AOVBucket": "75-100", "count": 38, "revenue": 3138.889919, "avgShipping": 1.3421052631578947, "pctFreeShip": 0.6052631578947368}, {"YearMonth": "2012-11", "AOVBucket": "100-150", "count": 17, "revenue": 2075.43408, "avgShipping": 2.0294117647058822, "pctFreeShip": 0.47058823529411764}, {"YearMonth": "2012-11", "AOVBucket": "150-200", "count": 3, "revenue": 499.276675, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-11", "AOVBucket": "200-500", "count": 4, "revenue": 909.677505, "avgShipping": 3.0, "pctFreeShip": 0.25}, {"YearMonth": "2012-12", "AOVBucket": "<5", "count": 23, "revenue": 106.4916, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2012-12", "AOVBucket": "5-10", "count": 304, "revenue": 2584.1748000000002, "avgShipping": 0.12335526315789473, "pctFreeShip": 0.9506578947368421}, {"YearMonth": "2012-12", "AOVBucket": "10-15", "count": 304, "revenue": 3946.7568, "avgShipping": 0.5773026315789473, "pctFreeShip": 0.8026315789473685}, {"YearMonth": "2012-12", "AOVBucket": "15-20", "count": 331, "revenue": 5941.939201, "avgShipping": 0.6193353474320241, "pctFreeShip": 0.797583081570997}, {"YearMonth": "2012-12", "AOVBucket": "20-25", "count": 184, "revenue": 4140.8088419999995, "avgShipping": 1.0733695652173914, "pctFreeShip": 0.6521739130434783}, {"YearMonth": "2012-12", "AOVBucket": "25-30", "count": 173, "revenue": 4867.318442, "avgShipping": 0.8323699421965318, "pctFreeShip": 0.7572254335260116}, {"YearMonth": "2012-12", "AOVBucket": "30-35", "count": 84, "revenue": 2725.897279, "avgShipping": 1.2142857142857142, "pctFreeShip": 0.6071428571428571}, {"YearMonth": "2012-12", "AOVBucket": "35-40", "count": 80, "revenue": 2991.243677, "avgShipping": 0.99375, "pctFreeShip": 0.7}, {"YearMonth": "2012-12", "AOVBucket": "40-50", "count": 107, "revenue": 4838.537923, "avgShipping": 1.3738317757009346, "pctFreeShip": 0.5700934579439252}, {"YearMonth": "2012-12", "AOVBucket": "50-60", "count": 47, "revenue": 2610.100355, "avgShipping": 1.053191489361702, "pctFreeShip": 0.6808510638297872}, {"YearMonth": "2012-12", "AOVBucket": "60-75", "count": 27, "revenue": 1775.975402, "avgShipping": 2.111111111111111, "pctFreeShip": 0.4444444444444444}, {"YearMonth": "2012-12", "AOVBucket": "75-100", "count": 23, "revenue": 1943.851994, "avgShipping": 2.239130434782609, "pctFreeShip": 0.391304347826087}, {"YearMonth": "2012-12", "AOVBucket": "100-150", "count": 15, "revenue": 1816.2220379999999, "avgShipping": 2.533333333333333, "pctFreeShip": 0.26666666666666666}, {"YearMonth": "2012-12", "AOVBucket": "150-200", "count": 3, "revenue": 566.454403, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2012-12", "AOVBucket": "200-500", "count": 1, "revenue": 349.4328, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-01", "AOVBucket": "<5", "count": 40, "revenue": 189.39090000000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-01", "AOVBucket": "5-10", "count": 441, "revenue": 3746.5853, "avgShipping": 0.1235827664399093, "pctFreeShip": 0.9546485260770975}, {"YearMonth": "2013-01", "AOVBucket": "10-15", "count": 420, "revenue": 5378.55294, "avgShipping": 0.7547619047619047, "pctFreeShip": 0.7571428571428571}, {"YearMonth": "2013-01", "AOVBucket": "15-20", "count": 455, "revenue": 8215.831721999999, "avgShipping": 0.6945054945054945, "pctFreeShip": 0.7956043956043956}, {"YearMonth": "2013-01", "AOVBucket": "20-25", "count": 347, "revenue": 7793.637958, "avgShipping": 1.2853025936599423, "pctFreeShip": 0.6167146974063401}, {"YearMonth": "2013-01", "AOVBucket": "25-30", "count": 299, "revenue": 8366.361042, "avgShipping": 0.7675585284280937, "pctFreeShip": 0.7591973244147158}, {"YearMonth": "2013-01", "AOVBucket": "30-35", "count": 177, "revenue": 5784.142745, "avgShipping": 1.0508474576271187, "pctFreeShip": 0.6892655367231638}, {"YearMonth": "2013-01", "AOVBucket": "35-40", "count": 169, "revenue": 6296.57058, "avgShipping": 1.0414201183431953, "pctFreeShip": 0.7041420118343196}, {"YearMonth": "2013-01", "AOVBucket": "40-50", "count": 145, "revenue": 6446.6058, "avgShipping": 1.3620689655172413, "pctFreeShip": 0.6137931034482759}, {"YearMonth": "2013-01", "AOVBucket": "50-60", "count": 89, "revenue": 4900.585875, "avgShipping": 1.5, "pctFreeShip": 0.6067415730337079}, {"YearMonth": "2013-01", "AOVBucket": "60-75", "count": 63, "revenue": 4211.766162, "avgShipping": 2.0476190476190474, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2013-01", "AOVBucket": "75-100", "count": 43, "revenue": 3758.903637, "avgShipping": 1.9069767441860466, "pctFreeShip": 0.4883720930232558}, {"YearMonth": "2013-01", "AOVBucket": "100-150", "count": 36, "revenue": 4391.335118, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.25}, {"YearMonth": "2013-01", "AOVBucket": "150-200", "count": 5, "revenue": 903.029356, "avgShipping": 3.7, "pctFreeShip": 0.0}, {"YearMonth": "2013-01", "AOVBucket": "200-500", "count": 3, "revenue": 782.647179, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2013-02", "AOVBucket": "<5", "count": 41, "revenue": 193.38330000000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-02", "AOVBucket": "5-10", "count": 365, "revenue": 3082.28044, "avgShipping": 0.13835616438356163, "pctFreeShip": 0.947945205479452}, {"YearMonth": "2013-02", "AOVBucket": "10-15", "count": 355, "revenue": 4594.36132, "avgShipping": 0.6633802816901408, "pctFreeShip": 0.7718309859154929}, {"YearMonth": "2013-02", "AOVBucket": "15-20", "count": 375, "revenue": 6702.538961, "avgShipping": 0.7453333333333333, "pctFreeShip": 0.7733333333333333}, {"YearMonth": "2013-02", "AOVBucket": "20-25", "count": 232, "revenue": 5205.706087, "avgShipping": 1.1508620689655173, "pctFreeShip": 0.646551724137931}, {"YearMonth": "2013-02", "AOVBucket": "25-30", "count": 198, "revenue": 5583.319531, "avgShipping": 1.0681818181818181, "pctFreeShip": 0.696969696969697}, {"YearMonth": "2013-02", "AOVBucket": "30-35", "count": 82, "revenue": 2690.7068409999997, "avgShipping": 1.3902439024390243, "pctFreeShip": 0.5853658536585366}, {"YearMonth": "2013-02", "AOVBucket": "35-40", "count": 118, "revenue": 4416.247804, "avgShipping": 1.0720338983050848, "pctFreeShip": 0.7033898305084746}, {"YearMonth": "2013-02", "AOVBucket": "40-50", "count": 96, "revenue": 4325.41441, "avgShipping": 1.7552083333333333, "pctFreeShip": 0.53125}, {"YearMonth": "2013-02", "AOVBucket": "50-60", "count": 58, "revenue": 3191.51428, "avgShipping": 1.9051724137931034, "pctFreeShip": 0.4482758620689655}, {"YearMonth": "2013-02", "AOVBucket": "60-75", "count": 49, "revenue": 3343.915605, "avgShipping": 1.2346938775510203, "pctFreeShip": 0.6530612244897959}, {"YearMonth": "2013-02", "AOVBucket": "75-100", "count": 20, "revenue": 1669.397201, "avgShipping": 1.975, "pctFreeShip": 0.45}, {"YearMonth": "2013-02", "AOVBucket": "100-150", "count": 17, "revenue": 1929.604403, "avgShipping": 1.7647058823529411, "pctFreeShip": 0.47058823529411764}, {"YearMonth": "2013-02", "AOVBucket": "150-200", "count": 5, "revenue": 817.398389, "avgShipping": 2.4, "pctFreeShip": 0.4}, {"YearMonth": "2013-03", "AOVBucket": "<5", "count": 34, "revenue": 160.1184, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-03", "AOVBucket": "5-10", "count": 454, "revenue": 3840.0130400000003, "avgShipping": 0.14537444933920704, "pctFreeShip": 0.947136563876652}, {"YearMonth": "2013-03", "AOVBucket": "10-15", "count": 385, "revenue": 4934.05516, "avgShipping": 0.8090909090909091, "pctFreeShip": 0.7376623376623377}, {"YearMonth": "2013-03", "AOVBucket": "15-20", "count": 429, "revenue": 7729.665081, "avgShipping": 0.6282051282051282, "pctFreeShip": 0.8065268065268065}, {"YearMonth": "2013-03", "AOVBucket": "20-25", "count": 317, "revenue": 7131.574806, "avgShipping": 1.0410094637223974, "pctFreeShip": 0.6719242902208202}, {"YearMonth": "2013-03", "AOVBucket": "25-30", "count": 241, "revenue": 6757.520884, "avgShipping": 0.8236514522821576, "pctFreeShip": 0.7427385892116183}, {"YearMonth": "2013-03", "AOVBucket": "30-35", "count": 156, "revenue": 5095.289221, "avgShipping": 1.358974358974359, "pctFreeShip": 0.5833333333333334}, {"YearMonth": "2013-03", "AOVBucket": "35-40", "count": 164, "revenue": 6123.783864, "avgShipping": 0.7347560975609756, "pctFreeShip": 0.7682926829268293}, {"YearMonth": "2013-03", "AOVBucket": "40-50", "count": 140, "revenue": 6233.9106839999995, "avgShipping": 1.5071428571428571, "pctFreeShip": 0.5642857142857143}, {"YearMonth": "2013-03", "AOVBucket": "50-60", "count": 79, "revenue": 4366.807205, "avgShipping": 1.6835443037974684, "pctFreeShip": 0.5316455696202531}, {"YearMonth": "2013-03", "AOVBucket": "60-75", "count": 66, "revenue": 4454.461666, "avgShipping": 1.5378787878787878, "pctFreeShip": 0.5757575757575758}, {"YearMonth": "2013-03", "AOVBucket": "75-100", "count": 50, "revenue": 4336.860514, "avgShipping": 2.28, "pctFreeShip": 0.42}, {"YearMonth": "2013-03", "AOVBucket": "100-150", "count": 16, "revenue": 1860.663446, "avgShipping": 2.375, "pctFreeShip": 0.4375}, {"YearMonth": "2013-03", "AOVBucket": "150-200", "count": 5, "revenue": 896.697529, "avgShipping": 2.4, "pctFreeShip": 0.4}, {"YearMonth": "2013-04", "AOVBucket": "<5", "count": 42, "revenue": 200.1534, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-04", "AOVBucket": "5-10", "count": 455, "revenue": 3813.1528, "avgShipping": 0.0945054945054945, "pctFreeShip": 0.9648351648351648}, {"YearMonth": "2013-04", "AOVBucket": "10-15", "count": 392, "revenue": 5077.5486, "avgShipping": 0.7346938775510204, "pctFreeShip": 0.7551020408163265}, {"YearMonth": "2013-04", "AOVBucket": "15-20", "count": 465, "revenue": 8420.233244, "avgShipping": 0.810752688172043, "pctFreeShip": 0.7548387096774194}, {"YearMonth": "2013-04", "AOVBucket": "20-25", "count": 313, "revenue": 7045.413686, "avgShipping": 0.9376996805111821, "pctFreeShip": 0.7156549520766773}, {"YearMonth": "2013-04", "AOVBucket": "25-30", "count": 265, "revenue": 7423.323302, "avgShipping": 0.7679245283018868, "pctFreeShip": 0.769811320754717}, {"YearMonth": "2013-04", "AOVBucket": "30-35", "count": 158, "revenue": 5145.034162, "avgShipping": 1.0221518987341771, "pctFreeShip": 0.6835443037974683}, {"YearMonth": "2013-04", "AOVBucket": "35-40", "count": 141, "revenue": 5264.074602, "avgShipping": 1.1453900709219857, "pctFreeShip": 0.6808510638297872}, {"YearMonth": "2013-04", "AOVBucket": "40-50", "count": 126, "revenue": 5672.955311, "avgShipping": 1.8928571428571428, "pctFreeShip": 0.4603174603174603}, {"YearMonth": "2013-04", "AOVBucket": "50-60", "count": 67, "revenue": 3677.10972, "avgShipping": 1.7238805970149254, "pctFreeShip": 0.5671641791044776}, {"YearMonth": "2013-04", "AOVBucket": "60-75", "count": 60, "revenue": 4039.52836, "avgShipping": 1.7666666666666666, "pctFreeShip": 0.48333333333333334}, {"YearMonth": "2013-04", "AOVBucket": "75-100", "count": 41, "revenue": 3385.3627189999997, "avgShipping": 1.7560975609756098, "pctFreeShip": 0.4878048780487805}, {"YearMonth": "2013-04", "AOVBucket": "100-150", "count": 36, "revenue": 4255.172369, "avgShipping": 2.013888888888889, "pctFreeShip": 0.4444444444444444}, {"YearMonth": "2013-04", "AOVBucket": "150-200", "count": 7, "revenue": 1231.55477, "avgShipping": 2.0714285714285716, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2013-04", "AOVBucket": "200-500", "count": 1, "revenue": 207.694433, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-05", "AOVBucket": "<5", "count": 52, "revenue": 240.8556, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-05", "AOVBucket": "5-10", "count": 512, "revenue": 4298.122, "avgShipping": 0.1103515625, "pctFreeShip": 0.95703125}, {"YearMonth": "2013-05", "AOVBucket": "10-15", "count": 456, "revenue": 5927.04396, "avgShipping": 0.6557017543859649, "pctFreeShip": 0.7872807017543859}, {"YearMonth": "2013-05", "AOVBucket": "15-20", "count": 489, "revenue": 8738.794881, "avgShipping": 0.5807770961145194, "pctFreeShip": 0.8098159509202454}, {"YearMonth": "2013-05", "AOVBucket": "20-25", "count": 269, "revenue": 6046.572203, "avgShipping": 1.070631970260223, "pctFreeShip": 0.6617100371747212}, {"YearMonth": "2013-05", "AOVBucket": "25-30", "count": 219, "revenue": 6183.215328, "avgShipping": 0.771689497716895, "pctFreeShip": 0.7671232876712328}, {"YearMonth": "2013-05", "AOVBucket": "30-35", "count": 109, "revenue": 3557.387165, "avgShipping": 1.3577981651376148, "pctFreeShip": 0.5963302752293578}, {"YearMonth": "2013-05", "AOVBucket": "35-40", "count": 152, "revenue": 5723.8091620000005, "avgShipping": 1.0361842105263157, "pctFreeShip": 0.6842105263157895}, {"YearMonth": "2013-05", "AOVBucket": "40-50", "count": 114, "revenue": 5087.855405, "avgShipping": 1.5263157894736843, "pctFreeShip": 0.5263157894736842}, {"YearMonth": "2013-05", "AOVBucket": "50-60", "count": 61, "revenue": 3331.515763, "avgShipping": 1.2622950819672132, "pctFreeShip": 0.6229508196721312}, {"YearMonth": "2013-05", "AOVBucket": "60-75", "count": 54, "revenue": 3569.7805280000002, "avgShipping": 2.240740740740741, "pctFreeShip": 0.42592592592592593}, {"YearMonth": "2013-05", "AOVBucket": "75-100", "count": 26, "revenue": 2207.535201, "avgShipping": 2.519230769230769, "pctFreeShip": 0.34615384615384615}, {"YearMonth": "2013-05", "AOVBucket": "100-150", "count": 21, "revenue": 2560.8047970000002, "avgShipping": 2.142857142857143, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2013-05", "AOVBucket": "150-200", "count": 3, "revenue": 514.438399, "avgShipping": 1.6666666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2013-05", "AOVBucket": "200-500", "count": 1, "revenue": 227.700001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-06", "AOVBucket": "<5", "count": 39, "revenue": 180.6064, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-06", "AOVBucket": "5-10", "count": 527, "revenue": 4411.5416000000005, "avgShipping": 0.14895635673624288, "pctFreeShip": 0.9449715370018975}, {"YearMonth": "2013-06", "AOVBucket": "10-15", "count": 453, "revenue": 5905.1928, "avgShipping": 0.7185430463576159, "pctFreeShip": 0.739514348785872}, {"YearMonth": "2013-06", "AOVBucket": "15-20", "count": 530, "revenue": 9538.8524, "avgShipping": 0.6613207547169812, "pctFreeShip": 0.7830188679245284}, {"YearMonth": "2013-06", "AOVBucket": "20-25", "count": 289, "revenue": 6503.1796779999995, "avgShipping": 0.9792387543252595, "pctFreeShip": 0.6851211072664359}, {"YearMonth": "2013-06", "AOVBucket": "25-30", "count": 247, "revenue": 6882.511197, "avgShipping": 0.7813765182186235, "pctFreeShip": 0.7732793522267206}, {"YearMonth": "2013-06", "AOVBucket": "30-35", "count": 143, "revenue": 4684.193042, "avgShipping": 1.3076923076923077, "pctFreeShip": 0.6083916083916084}, {"YearMonth": "2013-06", "AOVBucket": "35-40", "count": 155, "revenue": 5806.756445, "avgShipping": 1.3064516129032258, "pctFreeShip": 0.6129032258064516}, {"YearMonth": "2013-06", "AOVBucket": "40-50", "count": 139, "revenue": 6207.563927, "avgShipping": 1.8525179856115108, "pctFreeShip": 0.45323741007194246}, {"YearMonth": "2013-06", "AOVBucket": "50-60", "count": 75, "revenue": 4161.145916, "avgShipping": 1.0533333333333332, "pctFreeShip": 0.6933333333333334}, {"YearMonth": "2013-06", "AOVBucket": "60-75", "count": 44, "revenue": 2953.9184849999997, "avgShipping": 1.7954545454545454, "pctFreeShip": 0.5}, {"YearMonth": "2013-06", "AOVBucket": "75-100", "count": 45, "revenue": 3754.625079, "avgShipping": 1.7222222222222223, "pctFreeShip": 0.5111111111111111}, {"YearMonth": "2013-06", "AOVBucket": "100-150", "count": 20, "revenue": 2317.293921, "avgShipping": 2.25, "pctFreeShip": 0.4}, {"YearMonth": "2013-06", "AOVBucket": "150-200", "count": 6, "revenue": 992.52016, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2013-06", "AOVBucket": "200-500", "count": 3, "revenue": 808.0719770000001, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2013-06", "AOVBucket": "500+", "count": 1, "revenue": 789.744764, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2013-07", "AOVBucket": "<5", "count": 45, "revenue": 216.6942, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-07", "AOVBucket": "5-10", "count": 462, "revenue": 3874.0412, "avgShipping": 0.16017316017316016, "pctFreeShip": 0.9437229437229437}, {"YearMonth": "2013-07", "AOVBucket": "10-15", "count": 390, "revenue": 5076.78176, "avgShipping": 0.7692307692307693, "pctFreeShip": 0.7230769230769231}, {"YearMonth": "2013-07", "AOVBucket": "15-20", "count": 382, "revenue": 6918.2814, "avgShipping": 0.6963350785340314, "pctFreeShip": 0.7801047120418848}, {"YearMonth": "2013-07", "AOVBucket": "20-25", "count": 268, "revenue": 6081.35921, "avgShipping": 0.7985074626865671, "pctFreeShip": 0.7350746268656716}, {"YearMonth": "2013-07", "AOVBucket": "25-30", "count": 254, "revenue": 7100.479001, "avgShipping": 0.7145669291338582, "pctFreeShip": 0.7834645669291339}, {"YearMonth": "2013-07", "AOVBucket": "30-35", "count": 113, "revenue": 3667.8288, "avgShipping": 1.2566371681415929, "pctFreeShip": 0.6106194690265486}, {"YearMonth": "2013-07", "AOVBucket": "35-40", "count": 139, "revenue": 5203.128001, "avgShipping": 0.762589928057554, "pctFreeShip": 0.7553956834532374}, {"YearMonth": "2013-07", "AOVBucket": "40-50", "count": 107, "revenue": 4769.2812, "avgShipping": 1.5373831775700935, "pctFreeShip": 0.5607476635514018}, {"YearMonth": "2013-07", "AOVBucket": "50-60", "count": 57, "revenue": 3138.331601, "avgShipping": 1.3596491228070176, "pctFreeShip": 0.5964912280701754}, {"YearMonth": "2013-07", "AOVBucket": "60-75", "count": 45, "revenue": 3043.161396, "avgShipping": 2.011111111111111, "pctFreeShip": 0.4222222222222222}, {"YearMonth": "2013-07", "AOVBucket": "75-100", "count": 36, "revenue": 3048.8292069999998, "avgShipping": 2.0694444444444446, "pctFreeShip": 0.3888888888888889}, {"YearMonth": "2013-07", "AOVBucket": "100-150", "count": 18, "revenue": 2122.933203, "avgShipping": 2.5277777777777777, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2013-07", "AOVBucket": "150-200", "count": 3, "revenue": 494.796402, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2013-07", "AOVBucket": "200-500", "count": 2, "revenue": 420.151207, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2013-08", "AOVBucket": "<5", "count": 43, "revenue": 205.2672, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-08", "AOVBucket": "5-10", "count": 432, "revenue": 3675.5206000000003, "avgShipping": 0.16087962962962962, "pctFreeShip": 0.9398148148148148}, {"YearMonth": "2013-08", "AOVBucket": "10-15", "count": 386, "revenue": 4956.92116, "avgShipping": 0.7862694300518135, "pctFreeShip": 0.7409326424870466}, {"YearMonth": "2013-08", "AOVBucket": "15-20", "count": 466, "revenue": 8387.4758, "avgShipping": 0.6995708154506438, "pctFreeShip": 0.7703862660944206}, {"YearMonth": "2013-08", "AOVBucket": "20-25", "count": 238, "revenue": 5377.462007, "avgShipping": 1.1701680672268908, "pctFreeShip": 0.6302521008403361}, {"YearMonth": "2013-08", "AOVBucket": "25-30", "count": 201, "revenue": 5661.555364, "avgShipping": 0.8507462686567164, "pctFreeShip": 0.7313432835820896}, {"YearMonth": "2013-08", "AOVBucket": "30-35", "count": 99, "revenue": 3246.4524, "avgShipping": 1.0757575757575757, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2013-08", "AOVBucket": "35-40", "count": 123, "revenue": 4636.578801, "avgShipping": 0.7479674796747967, "pctFreeShip": 0.7804878048780488}, {"YearMonth": "2013-08", "AOVBucket": "40-50", "count": 102, "revenue": 4504.930811, "avgShipping": 1.5, "pctFreeShip": 0.5294117647058824}, {"YearMonth": "2013-08", "AOVBucket": "50-60", "count": 57, "revenue": 3167.708808, "avgShipping": 1.4385964912280702, "pctFreeShip": 0.631578947368421}, {"YearMonth": "2013-08", "AOVBucket": "60-75", "count": 30, "revenue": 2010.220404, "avgShipping": 1.9666666666666666, "pctFreeShip": 0.43333333333333335}, {"YearMonth": "2013-08", "AOVBucket": "75-100", "count": 28, "revenue": 2327.532804, "avgShipping": 1.7857142857142858, "pctFreeShip": 0.5}, {"YearMonth": "2013-08", "AOVBucket": "100-150", "count": 23, "revenue": 2725.285119, "avgShipping": 2.4565217391304346, "pctFreeShip": 0.30434782608695654}, {"YearMonth": "2013-08", "AOVBucket": "150-200", "count": 2, "revenue": 354.592396, "avgShipping": 3.25, "pctFreeShip": 0.0}, {"YearMonth": "2013-08", "AOVBucket": "200-500", "count": 8, "revenue": 1947.667205, "avgShipping": 2.625, "pctFreeShip": 0.25}, {"YearMonth": "2013-09", "AOVBucket": "<5", "count": 38, "revenue": 178.8168, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-09", "AOVBucket": "5-10", "count": 461, "revenue": 3876.6098, "avgShipping": 0.15292841648590022, "pctFreeShip": 0.9414316702819957}, {"YearMonth": "2013-09", "AOVBucket": "10-15", "count": 448, "revenue": 5861.5671999999995, "avgShipping": 0.6852678571428571, "pctFreeShip": 0.7745535714285714}, {"YearMonth": "2013-09", "AOVBucket": "15-20", "count": 464, "revenue": 8330.651159, "avgShipping": 0.697198275862069, "pctFreeShip": 0.7823275862068966}, {"YearMonth": "2013-09", "AOVBucket": "20-25", "count": 342, "revenue": 7695.624988, "avgShipping": 1.2339181286549707, "pctFreeShip": 0.6228070175438597}, {"YearMonth": "2013-09", "AOVBucket": "25-30", "count": 233, "revenue": 6511.977229, "avgShipping": 1.002145922746781, "pctFreeShip": 0.7124463519313304}, {"YearMonth": "2013-09", "AOVBucket": "30-35", "count": 147, "revenue": 4795.988977, "avgShipping": 1.251700680272109, "pctFreeShip": 0.6258503401360545}, {"YearMonth": "2013-09", "AOVBucket": "35-40", "count": 173, "revenue": 6499.833123, "avgShipping": 1.0664739884393064, "pctFreeShip": 0.6878612716763006}, {"YearMonth": "2013-09", "AOVBucket": "40-50", "count": 126, "revenue": 5650.954496, "avgShipping": 1.5198412698412698, "pctFreeShip": 0.5793650793650794}, {"YearMonth": "2013-09", "AOVBucket": "50-60", "count": 76, "revenue": 4149.068362, "avgShipping": 1.4671052631578947, "pctFreeShip": 0.5789473684210527}, {"YearMonth": "2013-09", "AOVBucket": "60-75", "count": 70, "revenue": 4649.118292, "avgShipping": 1.9428571428571428, "pctFreeShip": 0.4714285714285714}, {"YearMonth": "2013-09", "AOVBucket": "75-100", "count": 43, "revenue": 3669.437571, "avgShipping": 1.9767441860465116, "pctFreeShip": 0.4883720930232558}, {"YearMonth": "2013-09", "AOVBucket": "100-150", "count": 25, "revenue": 2880.710679, "avgShipping": 2.8, "pctFreeShip": 0.32}, {"YearMonth": "2013-09", "AOVBucket": "150-200", "count": 5, "revenue": 883.829795, "avgShipping": 2.9, "pctFreeShip": 0.2}, {"YearMonth": "2013-09", "AOVBucket": "200-500", "count": 7, "revenue": 1884.357999, "avgShipping": 2.2857142857142856, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2013-10", "AOVBucket": "<5", "count": 42, "revenue": 202.6404, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-10", "AOVBucket": "5-10", "count": 399, "revenue": 3392.94516, "avgShipping": 0.17919799498746866, "pctFreeShip": 0.9373433583959899}, {"YearMonth": "2013-10", "AOVBucket": "10-15", "count": 412, "revenue": 5361.1184, "avgShipping": 0.5764563106796117, "pctFreeShip": 0.7985436893203883}, {"YearMonth": "2013-10", "AOVBucket": "15-20", "count": 423, "revenue": 7531.4964, "avgShipping": 0.5969267139479906, "pctFreeShip": 0.8132387706855791}, {"YearMonth": "2013-10", "AOVBucket": "20-25", "count": 233, "revenue": 5256.086185, "avgShipping": 1.1587982832618027, "pctFreeShip": 0.6609442060085837}, {"YearMonth": "2013-10", "AOVBucket": "25-30", "count": 220, "revenue": 6139.693917, "avgShipping": 0.9568181818181818, "pctFreeShip": 0.7045454545454546}, {"YearMonth": "2013-10", "AOVBucket": "30-35", "count": 145, "revenue": 4720.959183, "avgShipping": 1.282758620689655, "pctFreeShip": 0.6206896551724138}, {"YearMonth": "2013-10", "AOVBucket": "35-40", "count": 119, "revenue": 4447.895712, "avgShipping": 0.9369747899159664, "pctFreeShip": 0.7226890756302521}, {"YearMonth": "2013-10", "AOVBucket": "40-50", "count": 116, "revenue": 5203.734198, "avgShipping": 1.6896551724137931, "pctFreeShip": 0.5258620689655172}, {"YearMonth": "2013-10", "AOVBucket": "50-60", "count": 65, "revenue": 3566.278649, "avgShipping": 1.7153846153846153, "pctFreeShip": 0.5076923076923077}, {"YearMonth": "2013-10", "AOVBucket": "60-75", "count": 38, "revenue": 2515.1712079999998, "avgShipping": 2.0526315789473686, "pctFreeShip": 0.4473684210526316}, {"YearMonth": "2013-10", "AOVBucket": "75-100", "count": 25, "revenue": 2147.571399, "avgShipping": 1.58, "pctFreeShip": 0.56}, {"YearMonth": "2013-10", "AOVBucket": "100-150", "count": 30, "revenue": 3343.261199, "avgShipping": 2.5166666666666666, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2013-10", "AOVBucket": "200-500", "count": 1, "revenue": 302.054798, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2013-11", "AOVBucket": "<5", "count": 38, "revenue": 177.7692, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-11", "AOVBucket": "5-10", "count": 488, "revenue": 4083.8838, "avgShipping": 0.11372950819672131, "pctFreeShip": 0.9569672131147541}, {"YearMonth": "2013-11", "AOVBucket": "10-15", "count": 498, "revenue": 6431.90701, "avgShipping": 0.5903614457831325, "pctFreeShip": 0.7951807228915663}, {"YearMonth": "2013-11", "AOVBucket": "15-20", "count": 521, "revenue": 9341.692336, "avgShipping": 0.6602687140115163, "pctFreeShip": 0.8023032629558541}, {"YearMonth": "2013-11", "AOVBucket": "20-25", "count": 347, "revenue": 7749.739929, "avgShipping": 0.9279538904899135, "pctFreeShip": 0.7118155619596542}, {"YearMonth": "2013-11", "AOVBucket": "25-30", "count": 239, "revenue": 6617.49626, "avgShipping": 0.801255230125523, "pctFreeShip": 0.7615062761506276}, {"YearMonth": "2013-11", "AOVBucket": "30-35", "count": 168, "revenue": 5482.686235, "avgShipping": 1.2619047619047619, "pctFreeShip": 0.6130952380952381}, {"YearMonth": "2013-11", "AOVBucket": "35-40", "count": 171, "revenue": 6426.18044, "avgShipping": 1.043859649122807, "pctFreeShip": 0.6842105263157895}, {"YearMonth": "2013-11", "AOVBucket": "40-50", "count": 133, "revenue": 5999.289082, "avgShipping": 1.2518796992481203, "pctFreeShip": 0.6390977443609023}, {"YearMonth": "2013-11", "AOVBucket": "50-60", "count": 78, "revenue": 4291.733304, "avgShipping": 1.2820512820512822, "pctFreeShip": 0.6410256410256411}, {"YearMonth": "2013-11", "AOVBucket": "60-75", "count": 58, "revenue": 3904.782179, "avgShipping": 1.8879310344827587, "pctFreeShip": 0.4827586206896552}, {"YearMonth": "2013-11", "AOVBucket": "75-100", "count": 53, "revenue": 4410.40811, "avgShipping": 2.0283018867924527, "pctFreeShip": 0.41509433962264153}, {"YearMonth": "2013-11", "AOVBucket": "100-150", "count": 31, "revenue": 3725.9592470000002, "avgShipping": 2.725806451612903, "pctFreeShip": 0.25806451612903225}, {"YearMonth": "2013-11", "AOVBucket": "150-200", "count": 9, "revenue": 1498.803506, "avgShipping": 3.5555555555555554, "pctFreeShip": 0.1111111111111111}, {"YearMonth": "2013-11", "AOVBucket": "200-500", "count": 5, "revenue": 1246.786967, "avgShipping": 2.4, "pctFreeShip": 0.4}, {"YearMonth": "2013-12", "AOVBucket": "<5", "count": 25, "revenue": 111.922188, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2013-12", "AOVBucket": "5-10", "count": 402, "revenue": 3398.411256, "avgShipping": 0.14676616915422885, "pctFreeShip": 0.9502487562189055}, {"YearMonth": "2013-12", "AOVBucket": "10-15", "count": 385, "revenue": 4958.50856, "avgShipping": 0.6493506493506493, "pctFreeShip": 0.787012987012987}, {"YearMonth": "2013-12", "AOVBucket": "15-20", "count": 387, "revenue": 6867.895321, "avgShipping": 0.5387596899224806, "pctFreeShip": 0.8449612403100775}, {"YearMonth": "2013-12", "AOVBucket": "20-25", "count": 233, "revenue": 5259.604453, "avgShipping": 1.2639484978540771, "pctFreeShip": 0.6180257510729614}, {"YearMonth": "2013-12", "AOVBucket": "25-30", "count": 171, "revenue": 4773.893072, "avgShipping": 0.8450292397660819, "pctFreeShip": 0.7602339181286549}, {"YearMonth": "2013-12", "AOVBucket": "30-35", "count": 100, "revenue": 3273.5212, "avgShipping": 1.3, "pctFreeShip": 0.62}, {"YearMonth": "2013-12", "AOVBucket": "35-40", "count": 141, "revenue": 5283.295522, "avgShipping": 0.723404255319149, "pctFreeShip": 0.7872340425531915}, {"YearMonth": "2013-12", "AOVBucket": "40-50", "count": 108, "revenue": 4846.190152, "avgShipping": 1.4027777777777777, "pctFreeShip": 0.6111111111111112}, {"YearMonth": "2013-12", "AOVBucket": "50-60", "count": 63, "revenue": 3431.807568, "avgShipping": 1.873015873015873, "pctFreeShip": 0.5238095238095238}, {"YearMonth": "2013-12", "AOVBucket": "60-75", "count": 44, "revenue": 2894.811174, "avgShipping": 1.75, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2013-12", "AOVBucket": "75-100", "count": 33, "revenue": 2809.219153, "avgShipping": 1.893939393939394, "pctFreeShip": 0.48484848484848486}, {"YearMonth": "2013-12", "AOVBucket": "100-150", "count": 16, "revenue": 1868.93885, "avgShipping": 3.0625, "pctFreeShip": 0.1875}, {"YearMonth": "2013-12", "AOVBucket": "150-200", "count": 5, "revenue": 822.358109, "avgShipping": 3.2, "pctFreeShip": 0.2}, {"YearMonth": "2013-12", "AOVBucket": "200-500", "count": 3, "revenue": 772.5595269999999, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2014-01", "AOVBucket": "<5", "count": 80, "revenue": 362.58132, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-01", "AOVBucket": "5-10", "count": 621, "revenue": 5094.499044, "avgShipping": 0.0966183574879227, "pctFreeShip": 0.961352657004831}, {"YearMonth": "2014-01", "AOVBucket": "10-15", "count": 678, "revenue": 8612.94168, "avgShipping": 0.6172566371681416, "pctFreeShip": 0.7979351032448377}, {"YearMonth": "2014-01", "AOVBucket": "15-20", "count": 703, "revenue": 12494.649616, "avgShipping": 0.5746799431009957, "pctFreeShip": 0.8236130867709816}, {"YearMonth": "2014-01", "AOVBucket": "20-25", "count": 354, "revenue": 8001.502655, "avgShipping": 1.2161016949152543, "pctFreeShip": 0.635593220338983}, {"YearMonth": "2014-01", "AOVBucket": "25-30", "count": 353, "revenue": 9686.556997, "avgShipping": 0.726628895184136, "pctFreeShip": 0.7847025495750708}, {"YearMonth": "2014-01", "AOVBucket": "30-35", "count": 237, "revenue": 7678.611283, "avgShipping": 1.0527426160337552, "pctFreeShip": 0.7046413502109705}, {"YearMonth": "2014-01", "AOVBucket": "35-40", "count": 207, "revenue": 7774.410994, "avgShipping": 0.9492753623188406, "pctFreeShip": 0.714975845410628}, {"YearMonth": "2014-01", "AOVBucket": "40-50", "count": 170, "revenue": 7575.177792, "avgShipping": 1.5588235294117647, "pctFreeShip": 0.5764705882352941}, {"YearMonth": "2014-01", "AOVBucket": "50-60", "count": 122, "revenue": 6632.940881, "avgShipping": 1.5327868852459017, "pctFreeShip": 0.5737704918032787}, {"YearMonth": "2014-01", "AOVBucket": "60-75", "count": 91, "revenue": 6100.261311, "avgShipping": 1.60989010989011, "pctFreeShip": 0.5604395604395604}, {"YearMonth": "2014-01", "AOVBucket": "75-100", "count": 69, "revenue": 5785.983496, "avgShipping": 2.0434782608695654, "pctFreeShip": 0.463768115942029}, {"YearMonth": "2014-01", "AOVBucket": "100-150", "count": 34, "revenue": 3941.748688, "avgShipping": 1.9411764705882353, "pctFreeShip": 0.47058823529411764}, {"YearMonth": "2014-01", "AOVBucket": "150-200", "count": 7, "revenue": 1288.37394, "avgShipping": 2.0714285714285716, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2014-01", "AOVBucket": "200-500", "count": 7, "revenue": 1805.311964, "avgShipping": 3.0, "pctFreeShip": 0.14285714285714285}, {"YearMonth": "2014-02", "AOVBucket": "<5", "count": 40, "revenue": 186.3222, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-02", "AOVBucket": "5-10", "count": 489, "revenue": 4134.21946, "avgShipping": 0.15337423312883436, "pctFreeShip": 0.9447852760736196}, {"YearMonth": "2014-02", "AOVBucket": "10-15", "count": 486, "revenue": 6255.54714, "avgShipping": 0.7016460905349794, "pctFreeShip": 0.7613168724279835}, {"YearMonth": "2014-02", "AOVBucket": "15-20", "count": 503, "revenue": 9001.755419, "avgShipping": 0.6322067594433399, "pctFreeShip": 0.8071570576540755}, {"YearMonth": "2014-02", "AOVBucket": "20-25", "count": 325, "revenue": 7365.911, "avgShipping": 1.1907692307692308, "pctFreeShip": 0.6461538461538462}, {"YearMonth": "2014-02", "AOVBucket": "25-30", "count": 215, "revenue": 5963.470035, "avgShipping": 1.2395348837209301, "pctFreeShip": 0.6325581395348837}, {"YearMonth": "2014-02", "AOVBucket": "30-35", "count": 150, "revenue": 4897.168166, "avgShipping": 1.5233333333333334, "pctFreeShip": 0.5466666666666666}, {"YearMonth": "2014-02", "AOVBucket": "35-40", "count": 156, "revenue": 5845.716268, "avgShipping": 1.080128205128205, "pctFreeShip": 0.6923076923076923}, {"YearMonth": "2014-02", "AOVBucket": "40-50", "count": 127, "revenue": 5707.555603, "avgShipping": 1.6535433070866141, "pctFreeShip": 0.5511811023622047}, {"YearMonth": "2014-02", "AOVBucket": "50-60", "count": 63, "revenue": 3459.643112, "avgShipping": 1.6825396825396826, "pctFreeShip": 0.5396825396825397}, {"YearMonth": "2014-02", "AOVBucket": "60-75", "count": 59, "revenue": 3910.022595, "avgShipping": 2.042372881355932, "pctFreeShip": 0.4576271186440678}, {"YearMonth": "2014-02", "AOVBucket": "75-100", "count": 37, "revenue": 3204.863183, "avgShipping": 2.2027027027027026, "pctFreeShip": 0.43243243243243246}, {"YearMonth": "2014-02", "AOVBucket": "100-150", "count": 14, "revenue": 1712.9719969999999, "avgShipping": 3.0, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2014-02", "AOVBucket": "150-200", "count": 3, "revenue": 527.650407, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2014-03", "AOVBucket": "<5", "count": 48, "revenue": 227.93448, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-03", "AOVBucket": "5-10", "count": 614, "revenue": 5217.36484, "avgShipping": 0.12866449511400652, "pctFreeShip": 0.9543973941368078}, {"YearMonth": "2014-03", "AOVBucket": "10-15", "count": 577, "revenue": 7416.40442, "avgShipping": 0.707105719237435, "pctFreeShip": 0.7625649913344887}, {"YearMonth": "2014-03", "AOVBucket": "15-20", "count": 608, "revenue": 10772.975644, "avgShipping": 0.7080592105263158, "pctFreeShip": 0.7828947368421053}, {"YearMonth": "2014-03", "AOVBucket": "20-25", "count": 336, "revenue": 7549.215353, "avgShipping": 1.1488095238095237, "pctFreeShip": 0.6547619047619048}, {"YearMonth": "2014-03", "AOVBucket": "25-30", "count": 252, "revenue": 7040.170555, "avgShipping": 0.8888888888888888, "pctFreeShip": 0.746031746031746}, {"YearMonth": "2014-03", "AOVBucket": "30-35", "count": 172, "revenue": 5594.521584, "avgShipping": 1.2354651162790697, "pctFreeShip": 0.627906976744186}, {"YearMonth": "2014-03", "AOVBucket": "35-40", "count": 160, "revenue": 5970.270362, "avgShipping": 1.096875, "pctFreeShip": 0.70625}, {"YearMonth": "2014-03", "AOVBucket": "40-50", "count": 129, "revenue": 5735.730891, "avgShipping": 1.4806201550387597, "pctFreeShip": 0.5891472868217055}, {"YearMonth": "2014-03", "AOVBucket": "50-60", "count": 90, "revenue": 4949.923678, "avgShipping": 1.5555555555555556, "pctFreeShip": 0.5777777777777777}, {"YearMonth": "2014-03", "AOVBucket": "60-75", "count": 58, "revenue": 3849.23185, "avgShipping": 1.9913793103448276, "pctFreeShip": 0.43103448275862066}, {"YearMonth": "2014-03", "AOVBucket": "75-100", "count": 50, "revenue": 4317.322314, "avgShipping": 2.04, "pctFreeShip": 0.44}, {"YearMonth": "2014-03", "AOVBucket": "100-150", "count": 21, "revenue": 2421.309883, "avgShipping": 2.9761904761904763, "pctFreeShip": 0.23809523809523808}, {"YearMonth": "2014-03", "AOVBucket": "150-200", "count": 3, "revenue": 549.405244, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2014-03", "AOVBucket": "200-500", "count": 4, "revenue": 1144.751802, "avgShipping": 3.625, "pctFreeShip": 0.0}, {"YearMonth": "2014-03", "AOVBucket": "500+", "count": 1, "revenue": 706.057572, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2014-04", "AOVBucket": "<5", "count": 46, "revenue": 213.27478000000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-04", "AOVBucket": "5-10", "count": 504, "revenue": 4216.32068, "avgShipping": 0.16865079365079366, "pctFreeShip": 0.9384920634920635}, {"YearMonth": "2014-04", "AOVBucket": "10-15", "count": 547, "revenue": 6924.0505, "avgShipping": 0.6124314442413162, "pctFreeShip": 0.7824497257769653}, {"YearMonth": "2014-04", "AOVBucket": "15-20", "count": 490, "revenue": 8749.439822, "avgShipping": 0.6785714285714286, "pctFreeShip": 0.8040816326530612}, {"YearMonth": "2014-04", "AOVBucket": "20-25", "count": 359, "revenue": 8146.187849, "avgShipping": 0.871866295264624, "pctFreeShip": 0.7353760445682451}, {"YearMonth": "2014-04", "AOVBucket": "25-30", "count": 260, "revenue": 7288.503475, "avgShipping": 0.9519230769230769, "pctFreeShip": 0.7230769230769231}, {"YearMonth": "2014-04", "AOVBucket": "30-35", "count": 125, "revenue": 4080.442387, "avgShipping": 1.144, "pctFreeShip": 0.656}, {"YearMonth": "2014-04", "AOVBucket": "35-40", "count": 164, "revenue": 6137.231091, "avgShipping": 1.0670731707317074, "pctFreeShip": 0.6829268292682927}, {"YearMonth": "2014-04", "AOVBucket": "40-50", "count": 149, "revenue": 6715.69807, "avgShipping": 1.5939597315436242, "pctFreeShip": 0.5503355704697986}, {"YearMonth": "2014-04", "AOVBucket": "50-60", "count": 76, "revenue": 4220.504133, "avgShipping": 1.5723684210526316, "pctFreeShip": 0.5789473684210527}, {"YearMonth": "2014-04", "AOVBucket": "60-75", "count": 49, "revenue": 3267.98051, "avgShipping": 2.0714285714285716, "pctFreeShip": 0.46938775510204084}, {"YearMonth": "2014-04", "AOVBucket": "75-100", "count": 43, "revenue": 3706.067702, "avgShipping": 1.9534883720930232, "pctFreeShip": 0.4418604651162791}, {"YearMonth": "2014-04", "AOVBucket": "100-150", "count": 24, "revenue": 2841.148074, "avgShipping": 1.9375, "pctFreeShip": 0.5}, {"YearMonth": "2014-04", "AOVBucket": "150-200", "count": 8, "revenue": 1304.1240699999998, "avgShipping": 2.3125, "pctFreeShip": 0.375}, {"YearMonth": "2014-04", "AOVBucket": "200-500", "count": 2, "revenue": 655.78001, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2014-05", "AOVBucket": "<5", "count": 40, "revenue": 193.4154, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-05", "AOVBucket": "5-10", "count": 481, "revenue": 4060.95626, "avgShipping": 0.09147609147609148, "pctFreeShip": 0.9646569646569647}, {"YearMonth": "2014-05", "AOVBucket": "10-15", "count": 486, "revenue": 6255.4905, "avgShipping": 0.7109053497942387, "pctFreeShip": 0.7551440329218106}, {"YearMonth": "2014-05", "AOVBucket": "15-20", "count": 565, "revenue": 10083.924089, "avgShipping": 0.6327433628318584, "pctFreeShip": 0.8070796460176991}, {"YearMonth": "2014-05", "AOVBucket": "20-25", "count": 281, "revenue": 6318.870027, "avgShipping": 1.295373665480427, "pctFreeShip": 0.6156583629893239}, {"YearMonth": "2014-05", "AOVBucket": "25-30", "count": 215, "revenue": 5992.577228, "avgShipping": 0.9767441860465116, "pctFreeShip": 0.7116279069767442}, {"YearMonth": "2014-05", "AOVBucket": "30-35", "count": 153, "revenue": 4951.548805, "avgShipping": 1.196078431372549, "pctFreeShip": 0.6339869281045751}, {"YearMonth": "2014-05", "AOVBucket": "35-40", "count": 175, "revenue": 6538.21333, "avgShipping": 1.04, "pctFreeShip": 0.6971428571428572}, {"YearMonth": "2014-05", "AOVBucket": "40-50", "count": 130, "revenue": 5799.429674, "avgShipping": 1.6153846153846154, "pctFreeShip": 0.5538461538461539}, {"YearMonth": "2014-05", "AOVBucket": "50-60", "count": 78, "revenue": 4288.017184, "avgShipping": 1.3846153846153846, "pctFreeShip": 0.5769230769230769}, {"YearMonth": "2014-05", "AOVBucket": "60-75", "count": 59, "revenue": 3946.960164, "avgShipping": 1.8135593220338984, "pctFreeShip": 0.5084745762711864}, {"YearMonth": "2014-05", "AOVBucket": "75-100", "count": 47, "revenue": 4009.205528, "avgShipping": 2.074468085106383, "pctFreeShip": 0.425531914893617}, {"YearMonth": "2014-05", "AOVBucket": "100-150", "count": 23, "revenue": 2758.323691, "avgShipping": 2.847826086956522, "pctFreeShip": 0.2608695652173913}, {"YearMonth": "2014-05", "AOVBucket": "150-200", "count": 4, "revenue": 735.352809, "avgShipping": 2.625, "pctFreeShip": 0.25}, {"YearMonth": "2014-05", "AOVBucket": "200-500", "count": 6, "revenue": 1577.029548, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2014-06", "AOVBucket": "<5", "count": 32, "revenue": 150.70866, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-06", "AOVBucket": "5-10", "count": 501, "revenue": 4266.86498, "avgShipping": 0.07285429141716566, "pctFreeShip": 0.9720558882235529}, {"YearMonth": "2014-06", "AOVBucket": "10-15", "count": 445, "revenue": 5665.35038, "avgShipping": 0.848314606741573, "pctFreeShip": 0.7168539325842697}, {"YearMonth": "2014-06", "AOVBucket": "15-20", "count": 549, "revenue": 9797.838206, "avgShipping": 0.6575591985428051, "pctFreeShip": 0.8051001821493625}, {"YearMonth": "2014-06", "AOVBucket": "20-25", "count": 301, "revenue": 6760.16919, "avgShipping": 1.176079734219269, "pctFreeShip": 0.6445182724252492}, {"YearMonth": "2014-06", "AOVBucket": "25-30", "count": 243, "revenue": 6796.358301, "avgShipping": 1.0329218106995885, "pctFreeShip": 0.6954732510288066}, {"YearMonth": "2014-06", "AOVBucket": "30-35", "count": 158, "revenue": 5168.848161, "avgShipping": 1.0791139240506329, "pctFreeShip": 0.6708860759493671}, {"YearMonth": "2014-06", "AOVBucket": "35-40", "count": 150, "revenue": 5606.284484, "avgShipping": 0.76, "pctFreeShip": 0.78}, {"YearMonth": "2014-06", "AOVBucket": "40-50", "count": 115, "revenue": 5162.760586, "avgShipping": 1.5695652173913044, "pctFreeShip": 0.5826086956521739}, {"YearMonth": "2014-06", "AOVBucket": "50-60", "count": 68, "revenue": 3697.393829, "avgShipping": 1.1985294117647058, "pctFreeShip": 0.6470588235294118}, {"YearMonth": "2014-06", "AOVBucket": "60-75", "count": 58, "revenue": 3873.101864, "avgShipping": 2.0, "pctFreeShip": 0.4482758620689655}, {"YearMonth": "2014-06", "AOVBucket": "75-100", "count": 38, "revenue": 3193.152121, "avgShipping": 1.4210526315789473, "pctFreeShip": 0.6052631578947368}, {"YearMonth": "2014-06", "AOVBucket": "100-150", "count": 28, "revenue": 3319.235564, "avgShipping": 2.3035714285714284, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2014-06", "AOVBucket": "150-200", "count": 5, "revenue": 825.922794, "avgShipping": 2.4, "pctFreeShip": 0.4}, {"YearMonth": "2014-06", "AOVBucket": "200-500", "count": 3, "revenue": 859.720818, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2014-07", "AOVBucket": "<5", "count": 42, "revenue": 198.99876, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-07", "AOVBucket": "5-10", "count": 514, "revenue": 4384.612184, "avgShipping": 0.05155642023346303, "pctFreeShip": 0.980544747081712}, {"YearMonth": "2014-07", "AOVBucket": "10-15", "count": 455, "revenue": 5859.031456, "avgShipping": 0.6263736263736264, "pctFreeShip": 0.789010989010989}, {"YearMonth": "2014-07", "AOVBucket": "15-20", "count": 562, "revenue": 9964.626297, "avgShipping": 0.5195729537366548, "pctFreeShip": 0.8416370106761566}, {"YearMonth": "2014-07", "AOVBucket": "20-25", "count": 326, "revenue": 7327.464025, "avgShipping": 1.116564417177914, "pctFreeShip": 0.6656441717791411}, {"YearMonth": "2014-07", "AOVBucket": "25-30", "count": 260, "revenue": 7266.445364, "avgShipping": 0.8211538461538461, "pctFreeShip": 0.7692307692307693}, {"YearMonth": "2014-07", "AOVBucket": "30-35", "count": 158, "revenue": 5148.01578, "avgShipping": 1.3639240506329113, "pctFreeShip": 0.5949367088607594}, {"YearMonth": "2014-07", "AOVBucket": "35-40", "count": 161, "revenue": 6063.695091, "avgShipping": 1.0, "pctFreeShip": 0.7142857142857143}, {"YearMonth": "2014-07", "AOVBucket": "40-50", "count": 152, "revenue": 6841.325029, "avgShipping": 1.4375, "pctFreeShip": 0.6052631578947368}, {"YearMonth": "2014-07", "AOVBucket": "50-60", "count": 96, "revenue": 5313.091169, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.625}, {"YearMonth": "2014-07", "AOVBucket": "60-75", "count": 73, "revenue": 4851.802149, "avgShipping": 1.9657534246575343, "pctFreeShip": 0.4383561643835616}, {"YearMonth": "2014-07", "AOVBucket": "75-100", "count": 58, "revenue": 4888.354303, "avgShipping": 1.956896551724138, "pctFreeShip": 0.46551724137931033}, {"YearMonth": "2014-07", "AOVBucket": "100-150", "count": 34, "revenue": 4031.705966, "avgShipping": 1.6323529411764706, "pctFreeShip": 0.5588235294117647}, {"YearMonth": "2014-07", "AOVBucket": "150-200", "count": 5, "revenue": 852.742129, "avgShipping": 3.2, "pctFreeShip": 0.2}, {"YearMonth": "2014-07", "AOVBucket": "200-500", "count": 4, "revenue": 1104.097373, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2014-08", "AOVBucket": "<5", "count": 40, "revenue": 189.07899600000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-08", "AOVBucket": "5-10", "count": 488, "revenue": 4159.693805, "avgShipping": 0.10450819672131148, "pctFreeShip": 0.9631147540983607}, {"YearMonth": "2014-08", "AOVBucket": "10-15", "count": 480, "revenue": 6117.241524, "avgShipping": 0.6572916666666667, "pctFreeShip": 0.78125}, {"YearMonth": "2014-08", "AOVBucket": "15-20", "count": 522, "revenue": 9320.580475, "avgShipping": 0.6369731800766284, "pctFreeShip": 0.8180076628352491}, {"YearMonth": "2014-08", "AOVBucket": "20-25", "count": 304, "revenue": 6850.188957, "avgShipping": 0.9950657894736842, "pctFreeShip": 0.694078947368421}, {"YearMonth": "2014-08", "AOVBucket": "25-30", "count": 277, "revenue": 7706.168503, "avgShipping": 1.0487364620938628, "pctFreeShip": 0.7220216606498195}, {"YearMonth": "2014-08", "AOVBucket": "30-35", "count": 146, "revenue": 4749.71804, "avgShipping": 1.2568493150684932, "pctFreeShip": 0.6164383561643836}, {"YearMonth": "2014-08", "AOVBucket": "35-40", "count": 154, "revenue": 5771.730773, "avgShipping": 1.1103896103896105, "pctFreeShip": 0.6688311688311688}, {"YearMonth": "2014-08", "AOVBucket": "40-50", "count": 139, "revenue": 6215.101278, "avgShipping": 1.6654676258992807, "pctFreeShip": 0.5611510791366906}, {"YearMonth": "2014-08", "AOVBucket": "50-60", "count": 91, "revenue": 5015.350812, "avgShipping": 1.3956043956043955, "pctFreeShip": 0.6373626373626373}, {"YearMonth": "2014-08", "AOVBucket": "60-75", "count": 50, "revenue": 3351.771153, "avgShipping": 2.03, "pctFreeShip": 0.44}, {"YearMonth": "2014-08", "AOVBucket": "75-100", "count": 46, "revenue": 3991.728496, "avgShipping": 1.7173913043478262, "pctFreeShip": 0.5217391304347826}, {"YearMonth": "2014-08", "AOVBucket": "100-150", "count": 33, "revenue": 3985.620321, "avgShipping": 2.696969696969697, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2014-08", "AOVBucket": "150-200", "count": 5, "revenue": 847.644587, "avgShipping": 3.2, "pctFreeShip": 0.2}, {"YearMonth": "2014-08", "AOVBucket": "200-500", "count": 2, "revenue": 470.66272100000003, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2014-09", "AOVBucket": "<5", "count": 33, "revenue": 157.0392, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-09", "AOVBucket": "5-10", "count": 553, "revenue": 4727.27652, "avgShipping": 0.10307414104882459, "pctFreeShip": 0.9620253164556962}, {"YearMonth": "2014-09", "AOVBucket": "10-15", "count": 500, "revenue": 6447.97256, "avgShipping": 0.68, "pctFreeShip": 0.77}, {"YearMonth": "2014-09", "AOVBucket": "15-20", "count": 587, "revenue": 10415.224702, "avgShipping": 0.6507666098807495, "pctFreeShip": 0.8057921635434412}, {"YearMonth": "2014-09", "AOVBucket": "20-25", "count": 327, "revenue": 7382.709035, "avgShipping": 0.9740061162079511, "pctFreeShip": 0.6972477064220184}, {"YearMonth": "2014-09", "AOVBucket": "25-30", "count": 297, "revenue": 8218.799101, "avgShipping": 0.7744107744107744, "pctFreeShip": 0.7676767676767676}, {"YearMonth": "2014-09", "AOVBucket": "30-35", "count": 172, "revenue": 5597.008425, "avgShipping": 1.055232558139535, "pctFreeShip": 0.7209302325581395}, {"YearMonth": "2014-09", "AOVBucket": "35-40", "count": 168, "revenue": 6252.9933359999995, "avgShipping": 1.0744047619047619, "pctFreeShip": 0.6785714285714286}, {"YearMonth": "2014-09", "AOVBucket": "40-50", "count": 142, "revenue": 6331.698327, "avgShipping": 1.5105633802816902, "pctFreeShip": 0.5774647887323944}, {"YearMonth": "2014-09", "AOVBucket": "50-60", "count": 103, "revenue": 5627.558928, "avgShipping": 1.1893203883495145, "pctFreeShip": 0.6699029126213593}, {"YearMonth": "2014-09", "AOVBucket": "60-75", "count": 60, "revenue": 4035.060165, "avgShipping": 1.4166666666666667, "pctFreeShip": 0.5833333333333334}, {"YearMonth": "2014-09", "AOVBucket": "75-100", "count": 42, "revenue": 3617.908294, "avgShipping": 2.4523809523809526, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2014-09", "AOVBucket": "100-150", "count": 15, "revenue": 1722.520041, "avgShipping": 2.7333333333333334, "pctFreeShip": 0.26666666666666666}, {"YearMonth": "2014-09", "AOVBucket": "150-200", "count": 5, "revenue": 859.422279, "avgShipping": 2.9, "pctFreeShip": 0.2}, {"YearMonth": "2014-09", "AOVBucket": "200-500", "count": 7, "revenue": 1912.2373149999999, "avgShipping": 1.7142857142857142, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2014-10", "AOVBucket": "<5", "count": 30, "revenue": 138.09372, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-10", "AOVBucket": "5-10", "count": 531, "revenue": 4564.54928, "avgShipping": 0.11393596986817325, "pctFreeShip": 0.9566854990583804}, {"YearMonth": "2014-10", "AOVBucket": "10-15", "count": 464, "revenue": 5978.62984, "avgShipping": 0.6293103448275862, "pctFreeShip": 0.7844827586206896}, {"YearMonth": "2014-10", "AOVBucket": "15-20", "count": 536, "revenue": 9607.15332, "avgShipping": 0.6800373134328358, "pctFreeShip": 0.789179104477612}, {"YearMonth": "2014-10", "AOVBucket": "20-25", "count": 314, "revenue": 7052.627476, "avgShipping": 1.2356687898089171, "pctFreeShip": 0.6146496815286624}, {"YearMonth": "2014-10", "AOVBucket": "25-30", "count": 244, "revenue": 6767.248526, "avgShipping": 0.7807377049180327, "pctFreeShip": 0.7663934426229508}, {"YearMonth": "2014-10", "AOVBucket": "30-35", "count": 165, "revenue": 5359.082635, "avgShipping": 1.1666666666666667, "pctFreeShip": 0.6424242424242425}, {"YearMonth": "2014-10", "AOVBucket": "35-40", "count": 153, "revenue": 5725.324381, "avgShipping": 1.0751633986928104, "pctFreeShip": 0.6797385620915033}, {"YearMonth": "2014-10", "AOVBucket": "40-50", "count": 158, "revenue": 7112.998719, "avgShipping": 1.4082278481012658, "pctFreeShip": 0.6075949367088608}, {"YearMonth": "2014-10", "AOVBucket": "50-60", "count": 92, "revenue": 5034.970593, "avgShipping": 1.2771739130434783, "pctFreeShip": 0.6521739130434783}, {"YearMonth": "2014-10", "AOVBucket": "60-75", "count": 76, "revenue": 5058.120065, "avgShipping": 1.625, "pctFreeShip": 0.5394736842105263}, {"YearMonth": "2014-10", "AOVBucket": "75-100", "count": 57, "revenue": 4845.404824, "avgShipping": 1.868421052631579, "pctFreeShip": 0.5087719298245614}, {"YearMonth": "2014-10", "AOVBucket": "100-150", "count": 38, "revenue": 4699.985912, "avgShipping": 2.4078947368421053, "pctFreeShip": 0.3684210526315789}, {"YearMonth": "2014-10", "AOVBucket": "150-200", "count": 9, "revenue": 1500.252636, "avgShipping": 2.3333333333333335, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2014-10", "AOVBucket": "200-500", "count": 5, "revenue": 1304.197346, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-11", "AOVBucket": "<5", "count": 14, "revenue": 64.705, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-11", "AOVBucket": "5-10", "count": 488, "revenue": 4126.04646, "avgShipping": 0.13217213114754098, "pctFreeShip": 0.9508196721311475}, {"YearMonth": "2014-11", "AOVBucket": "10-15", "count": 481, "revenue": 6046.0664, "avgShipping": 0.7224532224532224, "pctFreeShip": 0.7546777546777547}, {"YearMonth": "2014-11", "AOVBucket": "15-20", "count": 548, "revenue": 9766.551433999999, "avgShipping": 0.5383211678832117, "pctFreeShip": 0.8266423357664233}, {"YearMonth": "2014-11", "AOVBucket": "20-25", "count": 385, "revenue": 8719.078674, "avgShipping": 1.0337662337662337, "pctFreeShip": 0.6727272727272727}, {"YearMonth": "2014-11", "AOVBucket": "25-30", "count": 251, "revenue": 6947.889085, "avgShipping": 1.0597609561752988, "pctFreeShip": 0.6772908366533864}, {"YearMonth": "2014-11", "AOVBucket": "30-35", "count": 200, "revenue": 6506.100495, "avgShipping": 1.13, "pctFreeShip": 0.67}, {"YearMonth": "2014-11", "AOVBucket": "35-40", "count": 181, "revenue": 6781.578058, "avgShipping": 1.0082872928176796, "pctFreeShip": 0.6961325966850829}, {"YearMonth": "2014-11", "AOVBucket": "40-50", "count": 158, "revenue": 7097.690304, "avgShipping": 1.0316455696202531, "pctFreeShip": 0.689873417721519}, {"YearMonth": "2014-11", "AOVBucket": "50-60", "count": 87, "revenue": 4759.945142, "avgShipping": 1.4022988505747127, "pctFreeShip": 0.5977011494252874}, {"YearMonth": "2014-11", "AOVBucket": "60-75", "count": 69, "revenue": 4584.343638, "avgShipping": 2.369565217391304, "pctFreeShip": 0.34782608695652173}, {"YearMonth": "2014-11", "AOVBucket": "75-100", "count": 42, "revenue": 3575.805837, "avgShipping": 2.488095238095238, "pctFreeShip": 0.38095238095238093}, {"YearMonth": "2014-11", "AOVBucket": "100-150", "count": 26, "revenue": 3063.821297, "avgShipping": 2.2884615384615383, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2014-11", "AOVBucket": "150-200", "count": 8, "revenue": 1307.706874, "avgShipping": 3.75, "pctFreeShip": 0.125}, {"YearMonth": "2014-11", "AOVBucket": "200-500", "count": 6, "revenue": 1534.618406, "avgShipping": 2.4166666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2014-11", "AOVBucket": "500+", "count": 1, "revenue": 755.401707, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2014-12", "AOVBucket": "<5", "count": 11, "revenue": 52.055, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2014-12", "AOVBucket": "5-10", "count": 346, "revenue": 2927.088808, "avgShipping": 0.06936416184971098, "pctFreeShip": 0.9739884393063584}, {"YearMonth": "2014-12", "AOVBucket": "10-15", "count": 369, "revenue": 4592.459892, "avgShipping": 0.5677506775067751, "pctFreeShip": 0.8102981029810298}, {"YearMonth": "2014-12", "AOVBucket": "15-20", "count": 441, "revenue": 7759.903005, "avgShipping": 0.5770975056689343, "pctFreeShip": 0.8208616780045351}, {"YearMonth": "2014-12", "AOVBucket": "20-25", "count": 307, "revenue": 7003.303796, "avgShipping": 0.8208469055374593, "pctFreeShip": 0.758957654723127}, {"YearMonth": "2014-12", "AOVBucket": "25-30", "count": 193, "revenue": 5341.244456, "avgShipping": 1.1191709844559585, "pctFreeShip": 0.6528497409326425}, {"YearMonth": "2014-12", "AOVBucket": "30-35", "count": 144, "revenue": 4690.243477, "avgShipping": 0.8402777777777778, "pctFreeShip": 0.7430555555555556}, {"YearMonth": "2014-12", "AOVBucket": "35-40", "count": 141, "revenue": 5325.49683, "avgShipping": 1.1702127659574468, "pctFreeShip": 0.6950354609929078}, {"YearMonth": "2014-12", "AOVBucket": "40-50", "count": 124, "revenue": 5593.112614, "avgShipping": 1.3024193548387097, "pctFreeShip": 0.6209677419354839}, {"YearMonth": "2014-12", "AOVBucket": "50-60", "count": 71, "revenue": 3841.558633, "avgShipping": 1.3873239436619718, "pctFreeShip": 0.6056338028169014}, {"YearMonth": "2014-12", "AOVBucket": "60-75", "count": 51, "revenue": 3359.43974, "avgShipping": 1.6274509803921569, "pctFreeShip": 0.5490196078431373}, {"YearMonth": "2014-12", "AOVBucket": "75-100", "count": 31, "revenue": 2624.969857, "avgShipping": 1.564516129032258, "pctFreeShip": 0.5483870967741935}, {"YearMonth": "2014-12", "AOVBucket": "100-150", "count": 20, "revenue": 2439.821761, "avgShipping": 1.8, "pctFreeShip": 0.55}, {"YearMonth": "2014-12", "AOVBucket": "150-200", "count": 6, "revenue": 1036.378274, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2014-12", "AOVBucket": "200-500", "count": 3, "revenue": 859.158257, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2015-01", "AOVBucket": "<5", "count": 15, "revenue": 59.103896, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-01", "AOVBucket": "5-10", "count": 652, "revenue": 5311.57828, "avgShipping": 0.10199386503067484, "pctFreeShip": 0.9647239263803681}, {"YearMonth": "2015-01", "AOVBucket": "10-15", "count": 789, "revenue": 9813.802062, "avgShipping": 0.5380228136882129, "pctFreeShip": 0.8174904942965779}, {"YearMonth": "2015-01", "AOVBucket": "15-20", "count": 839, "revenue": 14652.360294, "avgShipping": 0.5744934445768772, "pctFreeShip": 0.8152562574493445}, {"YearMonth": "2015-01", "AOVBucket": "20-25", "count": 582, "revenue": 13092.608128, "avgShipping": 0.8230240549828178, "pctFreeShip": 0.7371134020618557}, {"YearMonth": "2015-01", "AOVBucket": "25-30", "count": 420, "revenue": 11492.432256, "avgShipping": 1.0107142857142857, "pctFreeShip": 0.7095238095238096}, {"YearMonth": "2015-01", "AOVBucket": "30-35", "count": 366, "revenue": 11968.030024, "avgShipping": 0.7882513661202186, "pctFreeShip": 0.7759562841530054}, {"YearMonth": "2015-01", "AOVBucket": "35-40", "count": 227, "revenue": 8545.141976, "avgShipping": 1.1916299559471366, "pctFreeShip": 0.6475770925110133}, {"YearMonth": "2015-01", "AOVBucket": "40-50", "count": 276, "revenue": 12258.969736, "avgShipping": 1.3134057971014492, "pctFreeShip": 0.6159420289855072}, {"YearMonth": "2015-01", "AOVBucket": "50-60", "count": 160, "revenue": 8650.149412, "avgShipping": 1.35, "pctFreeShip": 0.6375}, {"YearMonth": "2015-01", "AOVBucket": "60-75", "count": 131, "revenue": 8771.946993, "avgShipping": 1.7557251908396947, "pctFreeShip": 0.5419847328244275}, {"YearMonth": "2015-01", "AOVBucket": "75-100", "count": 92, "revenue": 7865.397384, "avgShipping": 1.6141304347826086, "pctFreeShip": 0.5434782608695652}, {"YearMonth": "2015-01", "AOVBucket": "100-150", "count": 51, "revenue": 6108.108545, "avgShipping": 3.5921568627450977, "pctFreeShip": 0.4117647058823529}, {"YearMonth": "2015-01", "AOVBucket": "150-200", "count": 18, "revenue": 3006.001906, "avgShipping": 2.7222222222222223, "pctFreeShip": 0.2777777777777778}, {"YearMonth": "2015-01", "AOVBucket": "200-500", "count": 12, "revenue": 3093.190039, "avgShipping": 3.2083333333333335, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2015-01", "AOVBucket": "500+", "count": 2, "revenue": 1153.799688, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2015-02", "AOVBucket": "<5", "count": 11, "revenue": 48.6591, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-02", "AOVBucket": "5-10", "count": 359, "revenue": 2998.14512, "avgShipping": 0.05988857938718663, "pctFreeShip": 0.9777158774373259}, {"YearMonth": "2015-02", "AOVBucket": "10-15", "count": 446, "revenue": 5554.460434, "avgShipping": 0.702914798206278, "pctFreeShip": 0.7600896860986547}, {"YearMonth": "2015-02", "AOVBucket": "15-20", "count": 427, "revenue": 7692.959361, "avgShipping": 0.5925058548009368, "pctFreeShip": 0.8126463700234192}, {"YearMonth": "2015-02", "AOVBucket": "20-25", "count": 373, "revenue": 8495.959135, "avgShipping": 0.9329758713136729, "pctFreeShip": 0.6916890080428955}, {"YearMonth": "2015-02", "AOVBucket": "25-30", "count": 199, "revenue": 5595.467296, "avgShipping": 0.9748743718592965, "pctFreeShip": 0.7185929648241206}, {"YearMonth": "2015-02", "AOVBucket": "30-35", "count": 139, "revenue": 4536.091161, "avgShipping": 1.1366906474820144, "pctFreeShip": 0.6618705035971223}, {"YearMonth": "2015-02", "AOVBucket": "35-40", "count": 94, "revenue": 3540.207696, "avgShipping": 1.3457446808510638, "pctFreeShip": 0.6170212765957447}, {"YearMonth": "2015-02", "AOVBucket": "40-50", "count": 138, "revenue": 6219.358575, "avgShipping": 1.5108695652173914, "pctFreeShip": 0.5797101449275363}, {"YearMonth": "2015-02", "AOVBucket": "50-60", "count": 72, "revenue": 3993.060408, "avgShipping": 1.2638888888888888, "pctFreeShip": 0.6111111111111112}, {"YearMonth": "2015-02", "AOVBucket": "60-75", "count": 59, "revenue": 3898.026507, "avgShipping": 2.0, "pctFreeShip": 0.423728813559322}, {"YearMonth": "2015-02", "AOVBucket": "75-100", "count": 43, "revenue": 3605.45396, "avgShipping": 1.7209302325581395, "pctFreeShip": 0.5348837209302325}, {"YearMonth": "2015-02", "AOVBucket": "100-150", "count": 37, "revenue": 4398.308062, "avgShipping": 1.7432432432432432, "pctFreeShip": 0.5135135135135135}, {"YearMonth": "2015-02", "AOVBucket": "150-200", "count": 3, "revenue": 477.251205, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2015-02", "AOVBucket": "200-500", "count": 4, "revenue": 1022.319296, "avgShipping": 3.0, "pctFreeShip": 0.25}, {"YearMonth": "2015-03", "AOVBucket": "<5", "count": 24, "revenue": 109.24348, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-03", "AOVBucket": "5-10", "count": 537, "revenue": 4490.58045, "avgShipping": 0.09776536312849161, "pctFreeShip": 0.9664804469273743}, {"YearMonth": "2015-03", "AOVBucket": "10-15", "count": 625, "revenue": 7832.89207, "avgShipping": 0.5552, "pctFreeShip": 0.8096}, {"YearMonth": "2015-03", "AOVBucket": "15-20", "count": 689, "revenue": 12265.337168, "avgShipping": 0.5820029027576198, "pctFreeShip": 0.8156748911465893}, {"YearMonth": "2015-03", "AOVBucket": "20-25", "count": 470, "revenue": 10544.913403, "avgShipping": 0.9680851063829787, "pctFreeShip": 0.6893617021276596}, {"YearMonth": "2015-03", "AOVBucket": "25-30", "count": 296, "revenue": 8152.627521, "avgShipping": 0.9003378378378378, "pctFreeShip": 0.7364864864864865}, {"YearMonth": "2015-03", "AOVBucket": "30-35", "count": 209, "revenue": 6811.078717, "avgShipping": 1.1555023923444976, "pctFreeShip": 0.6698564593301436}, {"YearMonth": "2015-03", "AOVBucket": "35-40", "count": 189, "revenue": 7082.315976, "avgShipping": 1.2037037037037037, "pctFreeShip": 0.6613756613756614}, {"YearMonth": "2015-03", "AOVBucket": "40-50", "count": 176, "revenue": 7840.451459, "avgShipping": 1.2017045454545454, "pctFreeShip": 0.6704545454545454}, {"YearMonth": "2015-03", "AOVBucket": "50-60", "count": 110, "revenue": 6037.2549, "avgShipping": 1.3954545454545455, "pctFreeShip": 0.6181818181818182}, {"YearMonth": "2015-03", "AOVBucket": "60-75", "count": 96, "revenue": 6415.7180339999995, "avgShipping": 1.7708333333333333, "pctFreeShip": 0.5104166666666666}, {"YearMonth": "2015-03", "AOVBucket": "75-100", "count": 70, "revenue": 5991.78061, "avgShipping": 1.85, "pctFreeShip": 0.45714285714285713}, {"YearMonth": "2015-03", "AOVBucket": "100-150", "count": 36, "revenue": 4203.847707, "avgShipping": 1.8333333333333333, "pctFreeShip": 0.5}, {"YearMonth": "2015-03", "AOVBucket": "150-200", "count": 7, "revenue": 1205.701613, "avgShipping": 2.2857142857142856, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2015-03", "AOVBucket": "200-500", "count": 3, "revenue": 660.108643, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2015-04", "AOVBucket": "<5", "count": 22, "revenue": 96.1571, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-04", "AOVBucket": "5-10", "count": 457, "revenue": 3896.035811, "avgShipping": 0.14113785557986872, "pctFreeShip": 0.9474835886214442}, {"YearMonth": "2015-04", "AOVBucket": "10-15", "count": 527, "revenue": 6646.5296339999995, "avgShipping": 0.6328273244781784, "pctFreeShip": 0.7836812144212524}, {"YearMonth": "2015-04", "AOVBucket": "15-20", "count": 590, "revenue": 10453.001076, "avgShipping": 0.6771186440677966, "pctFreeShip": 0.7949152542372881}, {"YearMonth": "2015-04", "AOVBucket": "20-25", "count": 361, "revenue": 8182.295861, "avgShipping": 1.1246537396121883, "pctFreeShip": 0.6426592797783933}, {"YearMonth": "2015-04", "AOVBucket": "25-30", "count": 221, "revenue": 6116.707036, "avgShipping": 0.9751131221719457, "pctFreeShip": 0.7058823529411765}, {"YearMonth": "2015-04", "AOVBucket": "30-35", "count": 161, "revenue": 5240.521465, "avgShipping": 1.2484472049689441, "pctFreeShip": 0.6459627329192547}, {"YearMonth": "2015-04", "AOVBucket": "35-40", "count": 146, "revenue": 5500.66956, "avgShipping": 1.11986301369863, "pctFreeShip": 0.6506849315068494}, {"YearMonth": "2015-04", "AOVBucket": "40-50", "count": 137, "revenue": 6145.983446, "avgShipping": 1.6496350364963503, "pctFreeShip": 0.5109489051094891}, {"YearMonth": "2015-04", "AOVBucket": "50-60", "count": 71, "revenue": 3891.726526, "avgShipping": 1.3591549295774648, "pctFreeShip": 0.6197183098591549}, {"YearMonth": "2015-04", "AOVBucket": "60-75", "count": 52, "revenue": 3440.756721, "avgShipping": 2.0288461538461537, "pctFreeShip": 0.4230769230769231}, {"YearMonth": "2015-04", "AOVBucket": "75-100", "count": 50, "revenue": 4214.570297, "avgShipping": 1.6, "pctFreeShip": 0.58}, {"YearMonth": "2015-04", "AOVBucket": "100-150", "count": 23, "revenue": 2734.632076, "avgShipping": 3.130434782608696, "pctFreeShip": 0.21739130434782608}, {"YearMonth": "2015-04", "AOVBucket": "150-200", "count": 9, "revenue": 1463.014226, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2015-04", "AOVBucket": "200-500", "count": 5, "revenue": 1205.981966, "avgShipping": 0.8, "pctFreeShip": 0.8}, {"YearMonth": "2015-05", "AOVBucket": "<5", "count": 7, "revenue": 31.05864, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-05", "AOVBucket": "5-10", "count": 335, "revenue": 2870.943866, "avgShipping": 0.10149253731343283, "pctFreeShip": 0.9611940298507463}, {"YearMonth": "2015-05", "AOVBucket": "10-15", "count": 435, "revenue": 5367.775231, "avgShipping": 0.5839080459770115, "pctFreeShip": 0.7954022988505747}, {"YearMonth": "2015-05", "AOVBucket": "15-20", "count": 500, "revenue": 8807.38335, "avgShipping": 0.536, "pctFreeShip": 0.836}, {"YearMonth": "2015-05", "AOVBucket": "20-25", "count": 373, "revenue": 8375.470381, "avgShipping": 0.8927613941018767, "pctFreeShip": 0.7131367292225201}, {"YearMonth": "2015-05", "AOVBucket": "25-30", "count": 219, "revenue": 6051.580973, "avgShipping": 0.9269406392694064, "pctFreeShip": 0.7351598173515982}, {"YearMonth": "2015-05", "AOVBucket": "30-35", "count": 180, "revenue": 5846.838547, "avgShipping": 0.9138888888888889, "pctFreeShip": 0.7388888888888889}, {"YearMonth": "2015-05", "AOVBucket": "35-40", "count": 152, "revenue": 5730.128173, "avgShipping": 0.8881578947368421, "pctFreeShip": 0.7236842105263158}, {"YearMonth": "2015-05", "AOVBucket": "40-50", "count": 159, "revenue": 7106.897684, "avgShipping": 1.4182389937106918, "pctFreeShip": 0.5849056603773585}, {"YearMonth": "2015-05", "AOVBucket": "50-60", "count": 102, "revenue": 5518.450644, "avgShipping": 1.4901960784313726, "pctFreeShip": 0.5686274509803921}, {"YearMonth": "2015-05", "AOVBucket": "60-75", "count": 65, "revenue": 4318.071765, "avgShipping": 1.9538461538461538, "pctFreeShip": 0.46153846153846156}, {"YearMonth": "2015-05", "AOVBucket": "75-100", "count": 51, "revenue": 4328.073752, "avgShipping": 1.5686274509803921, "pctFreeShip": 0.5882352941176471}, {"YearMonth": "2015-05", "AOVBucket": "100-150", "count": 26, "revenue": 3065.233685, "avgShipping": 2.2884615384615383, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2015-05", "AOVBucket": "150-200", "count": 7, "revenue": 1179.992999, "avgShipping": 3.4285714285714284, "pctFreeShip": 0.14285714285714285}, {"YearMonth": "2015-05", "AOVBucket": "200-500", "count": 3, "revenue": 791.940801, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2015-06", "AOVBucket": "<5", "count": 11, "revenue": 52.93998, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-06", "AOVBucket": "5-10", "count": 418, "revenue": 3532.469608, "avgShipping": 0.11244019138755981, "pctFreeShip": 0.9593301435406698}, {"YearMonth": "2015-06", "AOVBucket": "10-15", "count": 446, "revenue": 5494.264868, "avgShipping": 0.5257847533632287, "pctFreeShip": 0.8116591928251121}, {"YearMonth": "2015-06", "AOVBucket": "15-20", "count": 569, "revenue": 10090.311689, "avgShipping": 0.5070298769771528, "pctFreeShip": 0.8523725834797891}, {"YearMonth": "2015-06", "AOVBucket": "20-25", "count": 378, "revenue": 8489.60768, "avgShipping": 1.085978835978836, "pctFreeShip": 0.656084656084656}, {"YearMonth": "2015-06", "AOVBucket": "25-30", "count": 245, "revenue": 6736.752166, "avgShipping": 1.0775510204081633, "pctFreeShip": 0.7020408163265306}, {"YearMonth": "2015-06", "AOVBucket": "30-35", "count": 173, "revenue": 5600.537842, "avgShipping": 1.0982658959537572, "pctFreeShip": 0.6878612716763006}, {"YearMonth": "2015-06", "AOVBucket": "35-40", "count": 173, "revenue": 6447.867644, "avgShipping": 0.9450867052023122, "pctFreeShip": 0.7167630057803468}, {"YearMonth": "2015-06", "AOVBucket": "40-50", "count": 155, "revenue": 6929.058559, "avgShipping": 1.2258064516129032, "pctFreeShip": 0.6451612903225806}, {"YearMonth": "2015-06", "AOVBucket": "50-60", "count": 112, "revenue": 6155.581824, "avgShipping": 1.4553571428571428, "pctFreeShip": 0.5625}, {"YearMonth": "2015-06", "AOVBucket": "60-75", "count": 88, "revenue": 5896.46958, "avgShipping": 1.7840909090909092, "pctFreeShip": 0.5227272727272727}, {"YearMonth": "2015-06", "AOVBucket": "75-100", "count": 51, "revenue": 4332.610306, "avgShipping": 2.156862745098039, "pctFreeShip": 0.43137254901960786}, {"YearMonth": "2015-06", "AOVBucket": "100-150", "count": 29, "revenue": 3416.332287, "avgShipping": 1.9137931034482758, "pctFreeShip": 0.4827586206896552}, {"YearMonth": "2015-06", "AOVBucket": "150-200", "count": 7, "revenue": 1218.0065260000001, "avgShipping": 1.1428571428571428, "pctFreeShip": 0.7142857142857143}, {"YearMonth": "2015-06", "AOVBucket": "200-500", "count": 4, "revenue": 1104.780341, "avgShipping": 3.625, "pctFreeShip": 0.0}, {"YearMonth": "2015-06", "AOVBucket": "500+", "count": 1, "revenue": 501.888179, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2015-07", "AOVBucket": "<5", "count": 10, "revenue": 44.797799999999995, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-07", "AOVBucket": "5-10", "count": 380, "revenue": 3275.184752, "avgShipping": 0.1394736842105263, "pctFreeShip": 0.9473684210526315}, {"YearMonth": "2015-07", "AOVBucket": "10-15", "count": 497, "revenue": 6161.778104, "avgShipping": 0.7494969818913481, "pctFreeShip": 0.7122736418511066}, {"YearMonth": "2015-07", "AOVBucket": "15-20", "count": 482, "revenue": 8485.092214, "avgShipping": 0.720954356846473, "pctFreeShip": 0.7551867219917012}, {"YearMonth": "2015-07", "AOVBucket": "20-25", "count": 377, "revenue": 8524.874163999999, "avgShipping": 1.096816976127321, "pctFreeShip": 0.6286472148541115}, {"YearMonth": "2015-07", "AOVBucket": "25-30", "count": 236, "revenue": 6523.450661, "avgShipping": 1.3135593220338984, "pctFreeShip": 0.614406779661017}, {"YearMonth": "2015-07", "AOVBucket": "30-35", "count": 155, "revenue": 5022.344247, "avgShipping": 1.2483870967741935, "pctFreeShip": 0.5741935483870968}, {"YearMonth": "2015-07", "AOVBucket": "35-40", "count": 147, "revenue": 5517.208372, "avgShipping": 0.8741496598639455, "pctFreeShip": 0.7074829931972789}, {"YearMonth": "2015-07", "AOVBucket": "40-50", "count": 133, "revenue": 5940.210152, "avgShipping": 1.481203007518797, "pctFreeShip": 0.5413533834586466}, {"YearMonth": "2015-07", "AOVBucket": "50-60", "count": 74, "revenue": 4037.823481, "avgShipping": 1.7635135135135136, "pctFreeShip": 0.4864864864864865}, {"YearMonth": "2015-07", "AOVBucket": "60-75", "count": 63, "revenue": 4187.383135, "avgShipping": 1.6984126984126984, "pctFreeShip": 0.5238095238095238}, {"YearMonth": "2015-07", "AOVBucket": "75-100", "count": 40, "revenue": 3443.789763, "avgShipping": 2.25, "pctFreeShip": 0.375}, {"YearMonth": "2015-07", "AOVBucket": "100-150", "count": 21, "revenue": 2494.267433, "avgShipping": 1.7380952380952381, "pctFreeShip": 0.47619047619047616}, {"YearMonth": "2015-07", "AOVBucket": "150-200", "count": 6, "revenue": 1017.75539, "avgShipping": 3.4166666666666665, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2015-07", "AOVBucket": "200-500", "count": 1, "revenue": 229.102005, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2015-08", "AOVBucket": "<5", "count": 13, "revenue": 57.6387, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-08", "AOVBucket": "5-10", "count": 356, "revenue": 2963.623588, "avgShipping": 0.23174157303370788, "pctFreeShip": 0.9073033707865169}, {"YearMonth": "2015-08", "AOVBucket": "10-15", "count": 511, "revenue": 6344.30119, "avgShipping": 1.0029354207436398, "pctFreeShip": 0.6223091976516634}, {"YearMonth": "2015-08", "AOVBucket": "15-20", "count": 509, "revenue": 8946.223976, "avgShipping": 0.8290766208251473, "pctFreeShip": 0.7092337917485265}, {"YearMonth": "2015-08", "AOVBucket": "20-25", "count": 436, "revenue": 9762.19316, "avgShipping": 1.2293577981651376, "pctFreeShip": 0.5596330275229358}, {"YearMonth": "2015-08", "AOVBucket": "25-30", "count": 240, "revenue": 6645.1659, "avgShipping": 1.4729166666666667, "pctFreeShip": 0.5458333333333333}, {"YearMonth": "2015-08", "AOVBucket": "30-35", "count": 189, "revenue": 6140.7672729999995, "avgShipping": 1.2566137566137565, "pctFreeShip": 0.5925925925925926}, {"YearMonth": "2015-08", "AOVBucket": "35-40", "count": 147, "revenue": 5538.575132, "avgShipping": 1.0272108843537415, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2015-08", "AOVBucket": "40-50", "count": 147, "revenue": 6590.042052, "avgShipping": 1.5748299319727892, "pctFreeShip": 0.47619047619047616}, {"YearMonth": "2015-08", "AOVBucket": "50-60", "count": 105, "revenue": 5791.337877, "avgShipping": 1.6238095238095238, "pctFreeShip": 0.5047619047619047}, {"YearMonth": "2015-08", "AOVBucket": "60-75", "count": 70, "revenue": 4645.280795, "avgShipping": 2.1357142857142857, "pctFreeShip": 0.37142857142857144}, {"YearMonth": "2015-08", "AOVBucket": "75-100", "count": 57, "revenue": 4865.845577, "avgShipping": 2.3859649122807016, "pctFreeShip": 0.2982456140350877}, {"YearMonth": "2015-08", "AOVBucket": "100-150", "count": 31, "revenue": 3875.268778, "avgShipping": 2.0806451612903225, "pctFreeShip": 0.4838709677419355}, {"YearMonth": "2015-08", "AOVBucket": "150-200", "count": 7, "revenue": 1199.185099, "avgShipping": 3.2142857142857144, "pctFreeShip": 0.14285714285714285}, {"YearMonth": "2015-08", "AOVBucket": "200-500", "count": 4, "revenue": 998.620642, "avgShipping": 3.0, "pctFreeShip": 0.25}, {"YearMonth": "2015-09", "AOVBucket": "<5", "count": 25, "revenue": 115.948568, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-09", "AOVBucket": "5-10", "count": 435, "revenue": 3747.057788, "avgShipping": 0.15517241379310345, "pctFreeShip": 0.9448275862068966}, {"YearMonth": "2015-09", "AOVBucket": "10-15", "count": 527, "revenue": 6588.544408, "avgShipping": 0.8434535104364327, "pctFreeShip": 0.6888045540796964}, {"YearMonth": "2015-09", "AOVBucket": "15-20", "count": 601, "revenue": 10644.114259, "avgShipping": 0.7953410981697171, "pctFreeShip": 0.7304492512479202}, {"YearMonth": "2015-09", "AOVBucket": "20-25", "count": 416, "revenue": 9406.175024, "avgShipping": 1.2956730769230769, "pctFreeShip": 0.5673076923076923}, {"YearMonth": "2015-09", "AOVBucket": "25-30", "count": 277, "revenue": 7675.191691, "avgShipping": 0.9530685920577617, "pctFreeShip": 0.7075812274368231}, {"YearMonth": "2015-09", "AOVBucket": "30-35", "count": 200, "revenue": 6496.797591, "avgShipping": 1.2325, "pctFreeShip": 0.6}, {"YearMonth": "2015-09", "AOVBucket": "35-40", "count": 179, "revenue": 6681.54295, "avgShipping": 1.4776536312849162, "pctFreeShip": 0.5418994413407822}, {"YearMonth": "2015-09", "AOVBucket": "40-50", "count": 192, "revenue": 8622.006554, "avgShipping": 1.6822916666666667, "pctFreeShip": 0.484375}, {"YearMonth": "2015-09", "AOVBucket": "50-60", "count": 103, "revenue": 5608.240704, "avgShipping": 1.4174757281553398, "pctFreeShip": 0.5436893203883495}, {"YearMonth": "2015-09", "AOVBucket": "60-75", "count": 84, "revenue": 5626.753026, "avgShipping": 1.880952380952381, "pctFreeShip": 0.44047619047619047}, {"YearMonth": "2015-09", "AOVBucket": "75-100", "count": 65, "revenue": 5633.949521, "avgShipping": 2.4846153846153847, "pctFreeShip": 0.2923076923076923}, {"YearMonth": "2015-09", "AOVBucket": "100-150", "count": 34, "revenue": 4036.741398, "avgShipping": 2.161764705882353, "pctFreeShip": 0.38235294117647056}, {"YearMonth": "2015-09", "AOVBucket": "150-200", "count": 9, "revenue": 1523.990717, "avgShipping": 2.7777777777777777, "pctFreeShip": 0.2222222222222222}, {"YearMonth": "2015-09", "AOVBucket": "200-500", "count": 8, "revenue": 2243.777994, "avgShipping": 2.4375, "pctFreeShip": 0.25}, {"YearMonth": "2015-10", "AOVBucket": "<5", "count": 26, "revenue": 115.3494, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-10", "AOVBucket": "5-10", "count": 371, "revenue": 3167.521588, "avgShipping": 0.14824797843665768, "pctFreeShip": 0.9407008086253369}, {"YearMonth": "2015-10", "AOVBucket": "10-15", "count": 400, "revenue": 5012.7355, "avgShipping": 0.76625, "pctFreeShip": 0.7175}, {"YearMonth": "2015-10", "AOVBucket": "15-20", "count": 482, "revenue": 8579.889525999999, "avgShipping": 0.7157676348547718, "pctFreeShip": 0.7572614107883817}, {"YearMonth": "2015-10", "AOVBucket": "20-25", "count": 325, "revenue": 7314.346095, "avgShipping": 1.3169230769230769, "pctFreeShip": 0.556923076923077}, {"YearMonth": "2015-10", "AOVBucket": "25-30", "count": 229, "revenue": 6314.264852, "avgShipping": 0.8864628820960698, "pctFreeShip": 0.7161572052401747}, {"YearMonth": "2015-10", "AOVBucket": "30-35", "count": 164, "revenue": 5337.876912, "avgShipping": 1.1310975609756098, "pctFreeShip": 0.6463414634146342}, {"YearMonth": "2015-10", "AOVBucket": "35-40", "count": 131, "revenue": 4903.0693949999995, "avgShipping": 1.0801526717557253, "pctFreeShip": 0.6641221374045801}, {"YearMonth": "2015-10", "AOVBucket": "40-50", "count": 148, "revenue": 6596.796936, "avgShipping": 1.5304054054054055, "pctFreeShip": 0.5472972972972973}, {"YearMonth": "2015-10", "AOVBucket": "50-60", "count": 82, "revenue": 4522.493538, "avgShipping": 1.353658536585366, "pctFreeShip": 0.5975609756097561}, {"YearMonth": "2015-10", "AOVBucket": "60-75", "count": 77, "revenue": 5125.68943, "avgShipping": 1.6233766233766234, "pctFreeShip": 0.5064935064935064}, {"YearMonth": "2015-10", "AOVBucket": "75-100", "count": 43, "revenue": 3668.729888, "avgShipping": 2.604651162790698, "pctFreeShip": 0.20930232558139536}, {"YearMonth": "2015-10", "AOVBucket": "100-150", "count": 25, "revenue": 2986.9235949999998, "avgShipping": 2.42, "pctFreeShip": 0.32}, {"YearMonth": "2015-10", "AOVBucket": "150-200", "count": 1, "revenue": 150.499201, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-10", "AOVBucket": "200-500", "count": 4, "revenue": 1493.919001, "avgShipping": 3.0, "pctFreeShip": 0.25}, {"YearMonth": "2015-11", "AOVBucket": "<5", "count": 13, "revenue": 56.86836, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-11", "AOVBucket": "5-10", "count": 407, "revenue": 3496.3646, "avgShipping": 0.19656019656019655, "pctFreeShip": 0.9287469287469288}, {"YearMonth": "2015-11", "AOVBucket": "10-15", "count": 438, "revenue": 5515.45805, "avgShipping": 0.7271689497716894, "pctFreeShip": 0.7351598173515982}, {"YearMonth": "2015-11", "AOVBucket": "15-20", "count": 476, "revenue": 8411.797854, "avgShipping": 0.5525210084033614, "pctFreeShip": 0.8067226890756303}, {"YearMonth": "2015-11", "AOVBucket": "20-25", "count": 409, "revenue": 9240.831556, "avgShipping": 1.1356968215158925, "pctFreeShip": 0.6161369193154034}, {"YearMonth": "2015-11", "AOVBucket": "25-30", "count": 228, "revenue": 6265.5920559999995, "avgShipping": 1.2741228070175439, "pctFreeShip": 0.6140350877192983}, {"YearMonth": "2015-11", "AOVBucket": "30-35", "count": 173, "revenue": 5625.520775, "avgShipping": 1.0520231213872833, "pctFreeShip": 0.6936416184971098}, {"YearMonth": "2015-11", "AOVBucket": "35-40", "count": 147, "revenue": 5541.834044, "avgShipping": 0.8809523809523809, "pctFreeShip": 0.7346938775510204}, {"YearMonth": "2015-11", "AOVBucket": "40-50", "count": 194, "revenue": 8591.285048, "avgShipping": 1.4329896907216495, "pctFreeShip": 0.5670103092783505}, {"YearMonth": "2015-11", "AOVBucket": "50-60", "count": 93, "revenue": 5121.625345, "avgShipping": 1.575268817204301, "pctFreeShip": 0.5376344086021505}, {"YearMonth": "2015-11", "AOVBucket": "60-75", "count": 68, "revenue": 4502.583985, "avgShipping": 2.0, "pctFreeShip": 0.4117647058823529}, {"YearMonth": "2015-11", "AOVBucket": "75-100", "count": 55, "revenue": 4666.637774, "avgShipping": 1.6545454545454545, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2015-11", "AOVBucket": "100-150", "count": 34, "revenue": 4006.720805, "avgShipping": 2.3088235294117645, "pctFreeShip": 0.4117647058823529}, {"YearMonth": "2015-11", "AOVBucket": "150-200", "count": 5, "revenue": 882.814874, "avgShipping": 1.6, "pctFreeShip": 0.6}, {"YearMonth": "2015-11", "AOVBucket": "200-500", "count": 6, "revenue": 1801.03228, "avgShipping": 1.5, "pctFreeShip": 0.5}, {"YearMonth": "2015-12", "AOVBucket": "<5", "count": 15, "revenue": 67.3233, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2015-12", "AOVBucket": "5-10", "count": 371, "revenue": 3126.81785, "avgShipping": 0.1280323450134771, "pctFreeShip": 0.9487870619946092}, {"YearMonth": "2015-12", "AOVBucket": "10-15", "count": 439, "revenue": 5454.99016, "avgShipping": 0.5296127562642369, "pctFreeShip": 0.8086560364464692}, {"YearMonth": "2015-12", "AOVBucket": "15-20", "count": 531, "revenue": 9366.241327, "avgShipping": 0.3964218455743879, "pctFreeShip": 0.8681732580037664}, {"YearMonth": "2015-12", "AOVBucket": "20-25", "count": 347, "revenue": 7823.594809, "avgShipping": 1.021613832853026, "pctFreeShip": 0.659942363112392}, {"YearMonth": "2015-12", "AOVBucket": "25-30", "count": 227, "revenue": 6253.91532, "avgShipping": 0.9185022026431718, "pctFreeShip": 0.7268722466960352}, {"YearMonth": "2015-12", "AOVBucket": "30-35", "count": 161, "revenue": 5260.6288349999995, "avgShipping": 0.9440993788819876, "pctFreeShip": 0.7142857142857143}, {"YearMonth": "2015-12", "AOVBucket": "35-40", "count": 150, "revenue": 5621.477778, "avgShipping": 1.0833333333333333, "pctFreeShip": 0.6866666666666666}, {"YearMonth": "2015-12", "AOVBucket": "40-50", "count": 144, "revenue": 6409.115672, "avgShipping": 1.3020833333333333, "pctFreeShip": 0.6180555555555556}, {"YearMonth": "2015-12", "AOVBucket": "50-60", "count": 79, "revenue": 4313.187354, "avgShipping": 1.360759493670886, "pctFreeShip": 0.6075949367088608}, {"YearMonth": "2015-12", "AOVBucket": "60-75", "count": 67, "revenue": 4493.002511, "avgShipping": 1.492537313432836, "pctFreeShip": 0.582089552238806}, {"YearMonth": "2015-12", "AOVBucket": "75-100", "count": 45, "revenue": 3795.958673, "avgShipping": 1.6666666666666667, "pctFreeShip": 0.5333333333333333}, {"YearMonth": "2015-12", "AOVBucket": "100-150", "count": 31, "revenue": 3810.500608, "avgShipping": 1.9193548387096775, "pctFreeShip": 0.4838709677419355}, {"YearMonth": "2015-12", "AOVBucket": "150-200", "count": 13, "revenue": 2254.248098, "avgShipping": 2.9615384615384617, "pctFreeShip": 0.23076923076923078}, {"YearMonth": "2015-12", "AOVBucket": "200-500", "count": 4, "revenue": 923.950203, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2016-01", "AOVBucket": "<5", "count": 27, "revenue": 119.58882, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-01", "AOVBucket": "5-10", "count": 690, "revenue": 5769.094674, "avgShipping": 0.1536231884057971, "pctFreeShip": 0.9420289855072463}, {"YearMonth": "2016-01", "AOVBucket": "10-15", "count": 798, "revenue": 9950.581546, "avgShipping": 0.7180451127819549, "pctFreeShip": 0.731829573934837}, {"YearMonth": "2016-01", "AOVBucket": "15-20", "count": 916, "revenue": 16085.947896, "avgShipping": 0.6080786026200873, "pctFreeShip": 0.7991266375545851}, {"YearMonth": "2016-01", "AOVBucket": "20-25", "count": 541, "revenue": 12169.056392, "avgShipping": 1.3465804066543439, "pctFreeShip": 0.5600739371534196}, {"YearMonth": "2016-01", "AOVBucket": "25-30", "count": 348, "revenue": 9585.342611, "avgShipping": 1.139367816091954, "pctFreeShip": 0.6637931034482759}, {"YearMonth": "2016-01", "AOVBucket": "30-35", "count": 285, "revenue": 9259.829397, "avgShipping": 1.0175438596491229, "pctFreeShip": 0.6877192982456141}, {"YearMonth": "2016-01", "AOVBucket": "35-40", "count": 239, "revenue": 8925.163187, "avgShipping": 1.1799163179916319, "pctFreeShip": 0.6527196652719666}, {"YearMonth": "2016-01", "AOVBucket": "40-50", "count": 244, "revenue": 10863.194578, "avgShipping": 1.2254098360655739, "pctFreeShip": 0.6311475409836066}, {"YearMonth": "2016-01", "AOVBucket": "50-60", "count": 148, "revenue": 8084.451557, "avgShipping": 1.722972972972973, "pctFreeShip": 0.5135135135135135}, {"YearMonth": "2016-01", "AOVBucket": "60-75", "count": 145, "revenue": 9699.092932, "avgShipping": 1.3586206896551725, "pctFreeShip": 0.593103448275862}, {"YearMonth": "2016-01", "AOVBucket": "75-100", "count": 69, "revenue": 5912.363217, "avgShipping": 2.0579710144927534, "pctFreeShip": 0.42028985507246375}, {"YearMonth": "2016-01", "AOVBucket": "100-150", "count": 59, "revenue": 7209.687443, "avgShipping": 1.923728813559322, "pctFreeShip": 0.4745762711864407}, {"YearMonth": "2016-01", "AOVBucket": "150-200", "count": 13, "revenue": 2150.847512, "avgShipping": 1.7307692307692308, "pctFreeShip": 0.5384615384615384}, {"YearMonth": "2016-01", "AOVBucket": "200-500", "count": 8, "revenue": 1943.345726, "avgShipping": 3.0, "pctFreeShip": 0.25}, {"YearMonth": "2016-01", "AOVBucket": "500+", "count": 1, "revenue": 510.951088, "avgShipping": 4.0, "pctFreeShip": 0.0}, {"YearMonth": "2016-02", "AOVBucket": "<5", "count": 17, "revenue": 77.700432, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-02", "AOVBucket": "5-10", "count": 316, "revenue": 2695.773172, "avgShipping": 0.1550632911392405, "pctFreeShip": 0.939873417721519}, {"YearMonth": "2016-02", "AOVBucket": "10-15", "count": 422, "revenue": 5267.43254, "avgShipping": 0.6575829383886256, "pctFreeShip": 0.7582938388625592}, {"YearMonth": "2016-02", "AOVBucket": "15-20", "count": 342, "revenue": 6060.930444, "avgShipping": 0.7397660818713451, "pctFreeShip": 0.7573099415204678}, {"YearMonth": "2016-02", "AOVBucket": "20-25", "count": 362, "revenue": 8223.279066, "avgShipping": 1.0013812154696133, "pctFreeShip": 0.6602209944751382}, {"YearMonth": "2016-02", "AOVBucket": "25-30", "count": 170, "revenue": 4712.6056419999995, "avgShipping": 1.076470588235294, "pctFreeShip": 0.6470588235294118}, {"YearMonth": "2016-02", "AOVBucket": "30-35", "count": 122, "revenue": 3981.356476, "avgShipping": 1.4508196721311475, "pctFreeShip": 0.5491803278688525}, {"YearMonth": "2016-02", "AOVBucket": "35-40", "count": 119, "revenue": 4483.6839820000005, "avgShipping": 1.084033613445378, "pctFreeShip": 0.680672268907563}, {"YearMonth": "2016-02", "AOVBucket": "40-50", "count": 117, "revenue": 5203.63833, "avgShipping": 1.4871794871794872, "pctFreeShip": 0.5042735042735043}, {"YearMonth": "2016-02", "AOVBucket": "50-60", "count": 69, "revenue": 3809.295873, "avgShipping": 1.7826086956521738, "pctFreeShip": 0.463768115942029}, {"YearMonth": "2016-02", "AOVBucket": "60-75", "count": 60, "revenue": 3977.753459, "avgShipping": 1.7833333333333334, "pctFreeShip": 0.5}, {"YearMonth": "2016-02", "AOVBucket": "75-100", "count": 32, "revenue": 2679.547404, "avgShipping": 2.234375, "pctFreeShip": 0.3125}, {"YearMonth": "2016-02", "AOVBucket": "100-150", "count": 17, "revenue": 2050.176761, "avgShipping": 1.4705882352941178, "pctFreeShip": 0.5882352941176471}, {"YearMonth": "2016-02", "AOVBucket": "150-200", "count": 8, "revenue": 1351.341429, "avgShipping": 2.125, "pctFreeShip": 0.375}, {"YearMonth": "2016-02", "AOVBucket": "200-500", "count": 6, "revenue": 1774.066021, "avgShipping": 4.25, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2016-03", "AOVBucket": "<5", "count": 15, "revenue": 70.48323, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-03", "AOVBucket": "5-10", "count": 387, "revenue": 3298.173297, "avgShipping": 0.16279069767441862, "pctFreeShip": 0.937984496124031}, {"YearMonth": "2016-03", "AOVBucket": "10-15", "count": 502, "revenue": 6258.690706, "avgShipping": 0.7191235059760956, "pctFreeShip": 0.7410358565737052}, {"YearMonth": "2016-03", "AOVBucket": "15-20", "count": 597, "revenue": 10574.952079, "avgShipping": 0.6180904522613065, "pctFreeShip": 0.7973199329983249}, {"YearMonth": "2016-03", "AOVBucket": "20-25", "count": 474, "revenue": 10674.835457, "avgShipping": 1.1983122362869199, "pctFreeShip": 0.580168776371308}, {"YearMonth": "2016-03", "AOVBucket": "25-30", "count": 288, "revenue": 7935.47303, "avgShipping": 1.1736111111111112, "pctFreeShip": 0.6527777777777778}, {"YearMonth": "2016-03", "AOVBucket": "30-35", "count": 210, "revenue": 6821.46481, "avgShipping": 1.1166666666666667, "pctFreeShip": 0.6523809523809524}, {"YearMonth": "2016-03", "AOVBucket": "35-40", "count": 163, "revenue": 6133.880534, "avgShipping": 1.0920245398773005, "pctFreeShip": 0.6809815950920245}, {"YearMonth": "2016-03", "AOVBucket": "40-50", "count": 196, "revenue": 8756.522416, "avgShipping": 1.7091836734693877, "pctFreeShip": 0.49489795918367346}, {"YearMonth": "2016-03", "AOVBucket": "50-60", "count": 112, "revenue": 6076.122546, "avgShipping": 1.4285714285714286, "pctFreeShip": 0.5803571428571429}, {"YearMonth": "2016-03", "AOVBucket": "60-75", "count": 93, "revenue": 6214.503924, "avgShipping": 1.7419354838709677, "pctFreeShip": 0.4838709677419355}, {"YearMonth": "2016-03", "AOVBucket": "75-100", "count": 69, "revenue": 5862.536389, "avgShipping": 1.7463768115942029, "pctFreeShip": 0.5217391304347826}, {"YearMonth": "2016-03", "AOVBucket": "100-150", "count": 38, "revenue": 4551.173222, "avgShipping": 2.4342105263157894, "pctFreeShip": 0.34210526315789475}, {"YearMonth": "2016-03", "AOVBucket": "150-200", "count": 8, "revenue": 1306.479843, "avgShipping": 2.4375, "pctFreeShip": 0.5}, {"YearMonth": "2016-03", "AOVBucket": "200-500", "count": 9, "revenue": 2254.155182, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2016-04", "AOVBucket": "<5", "count": 12, "revenue": 51.759119999999996, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-04", "AOVBucket": "5-10", "count": 409, "revenue": 3348.28274, "avgShipping": 0.18092909535452323, "pctFreeShip": 0.9290953545232273}, {"YearMonth": "2016-04", "AOVBucket": "10-15", "count": 534, "revenue": 6635.05726, "avgShipping": 0.7762172284644194, "pctFreeShip": 0.7153558052434457}, {"YearMonth": "2016-04", "AOVBucket": "15-20", "count": 559, "revenue": 10075.964129, "avgShipping": 0.5769230769230769, "pctFreeShip": 0.8085867620751341}, {"YearMonth": "2016-04", "AOVBucket": "20-25", "count": 431, "revenue": 9788.832156, "avgShipping": 1.1357308584686774, "pctFreeShip": 0.6009280742459396}, {"YearMonth": "2016-04", "AOVBucket": "25-30", "count": 238, "revenue": 6561.612568, "avgShipping": 1.2394957983193278, "pctFreeShip": 0.6302521008403361}, {"YearMonth": "2016-04", "AOVBucket": "30-35", "count": 157, "revenue": 5108.263683, "avgShipping": 1.3853503184713376, "pctFreeShip": 0.5668789808917197}, {"YearMonth": "2016-04", "AOVBucket": "35-40", "count": 134, "revenue": 5042.353674, "avgShipping": 1.2611940298507462, "pctFreeShip": 0.6119402985074627}, {"YearMonth": "2016-04", "AOVBucket": "40-50", "count": 174, "revenue": 7715.566665, "avgShipping": 1.5258620689655173, "pctFreeShip": 0.5402298850574713}, {"YearMonth": "2016-04", "AOVBucket": "50-60", "count": 112, "revenue": 6100.279051, "avgShipping": 1.5044642857142858, "pctFreeShip": 0.5535714285714286}, {"YearMonth": "2016-04", "AOVBucket": "60-75", "count": 71, "revenue": 4714.32296, "avgShipping": 1.5352112676056338, "pctFreeShip": 0.5633802816901409}, {"YearMonth": "2016-04", "AOVBucket": "75-100", "count": 56, "revenue": 4780.891765, "avgShipping": 2.0267857142857144, "pctFreeShip": 0.4107142857142857}, {"YearMonth": "2016-04", "AOVBucket": "100-150", "count": 27, "revenue": 3250.045963, "avgShipping": 3.0925925925925926, "pctFreeShip": 0.14814814814814814}, {"YearMonth": "2016-04", "AOVBucket": "150-200", "count": 8, "revenue": 1319.04053, "avgShipping": 2.625, "pctFreeShip": 0.25}, {"YearMonth": "2016-04", "AOVBucket": "200-500", "count": 7, "revenue": 1660.6003850000002, "avgShipping": 1.5, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2016-05", "AOVBucket": "<5", "count": 10, "revenue": 42.999739999999996, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-05", "AOVBucket": "5-10", "count": 333, "revenue": 2822.47971, "avgShipping": 0.13963963963963963, "pctFreeShip": 0.9459459459459459}, {"YearMonth": "2016-05", "AOVBucket": "10-15", "count": 454, "revenue": 5628.487065, "avgShipping": 0.7797356828193832, "pctFreeShip": 0.7158590308370044}, {"YearMonth": "2016-05", "AOVBucket": "15-20", "count": 512, "revenue": 9193.569148, "avgShipping": 0.6171875, "pctFreeShip": 0.794921875}, {"YearMonth": "2016-05", "AOVBucket": "20-25", "count": 370, "revenue": 8314.792422, "avgShipping": 1.0621621621621622, "pctFreeShip": 0.6351351351351351}, {"YearMonth": "2016-05", "AOVBucket": "25-30", "count": 215, "revenue": 5906.478473, "avgShipping": 1.1883720930232557, "pctFreeShip": 0.641860465116279}, {"YearMonth": "2016-05", "AOVBucket": "30-35", "count": 150, "revenue": 4920.140471, "avgShipping": 1.19, "pctFreeShip": 0.62}, {"YearMonth": "2016-05", "AOVBucket": "35-40", "count": 150, "revenue": 5675.696074, "avgShipping": 0.9966666666666667, "pctFreeShip": 0.6933333333333334}, {"YearMonth": "2016-05", "AOVBucket": "40-50", "count": 164, "revenue": 7324.259728, "avgShipping": 1.6158536585365855, "pctFreeShip": 0.5365853658536586}, {"YearMonth": "2016-05", "AOVBucket": "50-60", "count": 86, "revenue": 4717.48044, "avgShipping": 1.5813953488372092, "pctFreeShip": 0.5348837209302325}, {"YearMonth": "2016-05", "AOVBucket": "60-75", "count": 67, "revenue": 4438.25775, "avgShipping": 2.0, "pctFreeShip": 0.417910447761194}, {"YearMonth": "2016-05", "AOVBucket": "75-100", "count": 51, "revenue": 4311.262913, "avgShipping": 1.8235294117647058, "pctFreeShip": 0.47058823529411764}, {"YearMonth": "2016-05", "AOVBucket": "100-150", "count": 22, "revenue": 2571.424652, "avgShipping": 2.272727272727273, "pctFreeShip": 0.36363636363636365}, {"YearMonth": "2016-05", "AOVBucket": "150-200", "count": 4, "revenue": 702.966044, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2016-05", "AOVBucket": "200-500", "count": 2, "revenue": 672.933803, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2016-06", "AOVBucket": "<5", "count": 7, "revenue": 31.581409999999998, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-06", "AOVBucket": "5-10", "count": 377, "revenue": 3139.4239900000002, "avgShipping": 0.1259946949602122, "pctFreeShip": 0.9496021220159151}, {"YearMonth": "2016-06", "AOVBucket": "10-15", "count": 491, "revenue": 6071.364815, "avgShipping": 0.9572301425661914, "pctFreeShip": 0.6476578411405295}, {"YearMonth": "2016-06", "AOVBucket": "15-20", "count": 517, "revenue": 9136.664482, "avgShipping": 0.6083172147001934, "pctFreeShip": 0.7911025145067698}, {"YearMonth": "2016-06", "AOVBucket": "20-25", "count": 362, "revenue": 8085.179995, "avgShipping": 1.0414364640883977, "pctFreeShip": 0.638121546961326}, {"YearMonth": "2016-06", "AOVBucket": "25-30", "count": 278, "revenue": 7644.0478729999995, "avgShipping": 1.1510791366906474, "pctFreeShip": 0.6366906474820144}, {"YearMonth": "2016-06", "AOVBucket": "30-35", "count": 176, "revenue": 5711.246543, "avgShipping": 1.1306818181818181, "pctFreeShip": 0.6306818181818182}, {"YearMonth": "2016-06", "AOVBucket": "35-40", "count": 130, "revenue": 4889.346446, "avgShipping": 1.4807692307692308, "pctFreeShip": 0.5461538461538461}, {"YearMonth": "2016-06", "AOVBucket": "40-50", "count": 150, "revenue": 6690.151949, "avgShipping": 1.3933333333333333, "pctFreeShip": 0.5866666666666667}, {"YearMonth": "2016-06", "AOVBucket": "50-60", "count": 105, "revenue": 5706.044885, "avgShipping": 1.4285714285714286, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2016-06", "AOVBucket": "60-75", "count": 62, "revenue": 4080.477588, "avgShipping": 1.435483870967742, "pctFreeShip": 0.5645161290322581}, {"YearMonth": "2016-06", "AOVBucket": "75-100", "count": 44, "revenue": 3735.361733, "avgShipping": 1.5, "pctFreeShip": 0.5909090909090909}, {"YearMonth": "2016-06", "AOVBucket": "100-150", "count": 31, "revenue": 3703.573517, "avgShipping": 1.8548387096774193, "pctFreeShip": 0.45161290322580644}, {"YearMonth": "2016-06", "AOVBucket": "150-200", "count": 11, "revenue": 1867.9625580000002, "avgShipping": 2.1818181818181817, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2016-06", "AOVBucket": "200-500", "count": 8, "revenue": 1994.060579, "avgShipping": 3.4375, "pctFreeShip": 0.0}, {"YearMonth": "2016-07", "AOVBucket": "<5", "count": 4, "revenue": 16.15215, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-07", "AOVBucket": "5-10", "count": 362, "revenue": 3063.14974, "avgShipping": 0.16298342541436464, "pctFreeShip": 0.93646408839779}, {"YearMonth": "2016-07", "AOVBucket": "10-15", "count": 405, "revenue": 4996.02719, "avgShipping": 0.8827160493827161, "pctFreeShip": 0.6814814814814815}, {"YearMonth": "2016-07", "AOVBucket": "15-20", "count": 501, "revenue": 8888.764341, "avgShipping": 0.4471057884231537, "pctFreeShip": 0.844311377245509}, {"YearMonth": "2016-07", "AOVBucket": "20-25", "count": 322, "revenue": 7232.669613, "avgShipping": 1.312111801242236, "pctFreeShip": 0.5372670807453416}, {"YearMonth": "2016-07", "AOVBucket": "25-30", "count": 241, "revenue": 6608.904432, "avgShipping": 0.991701244813278, "pctFreeShip": 0.6763485477178424}, {"YearMonth": "2016-07", "AOVBucket": "30-35", "count": 173, "revenue": 5612.374235, "avgShipping": 1.0, "pctFreeShip": 0.6416184971098265}, {"YearMonth": "2016-07", "AOVBucket": "35-40", "count": 119, "revenue": 4487.657196, "avgShipping": 1.096638655462185, "pctFreeShip": 0.6470588235294118}, {"YearMonth": "2016-07", "AOVBucket": "40-50", "count": 160, "revenue": 7115.815559, "avgShipping": 1.525, "pctFreeShip": 0.5375}, {"YearMonth": "2016-07", "AOVBucket": "50-60", "count": 87, "revenue": 4736.335544, "avgShipping": 1.6436781609195403, "pctFreeShip": 0.4942528735632184}, {"YearMonth": "2016-07", "AOVBucket": "60-75", "count": 57, "revenue": 3768.653318, "avgShipping": 1.4649122807017543, "pctFreeShip": 0.5614035087719298}, {"YearMonth": "2016-07", "AOVBucket": "75-100", "count": 31, "revenue": 2617.443509, "avgShipping": 3.7806451612903227, "pctFreeShip": 0.5483870967741935}, {"YearMonth": "2016-07", "AOVBucket": "100-150", "count": 28, "revenue": 3312.771191, "avgShipping": 5.257142857142857, "pctFreeShip": 0.25}, {"YearMonth": "2016-07", "AOVBucket": "150-200", "count": 1, "revenue": 189.333103, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-07", "AOVBucket": "200-500", "count": 2, "revenue": 574.362094, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2016-08", "AOVBucket": "<5", "count": 10, "revenue": 43.8445, "avgShipping": 0.25, "pctFreeShip": 0.9}, {"YearMonth": "2016-08", "AOVBucket": "5-10", "count": 434, "revenue": 3616.6273, "avgShipping": 0.10714285714285714, "pctFreeShip": 0.9585253456221198}, {"YearMonth": "2016-08", "AOVBucket": "10-15", "count": 460, "revenue": 5708.75304, "avgShipping": 0.9510869565217391, "pctFreeShip": 0.6521739130434783}, {"YearMonth": "2016-08", "AOVBucket": "15-20", "count": 668, "revenue": 11803.408819, "avgShipping": 0.5254491017964071, "pctFreeShip": 0.8143712574850299}, {"YearMonth": "2016-08", "AOVBucket": "20-25", "count": 364, "revenue": 8108.2588, "avgShipping": 1.331043956043956, "pctFreeShip": 0.5384615384615384}, {"YearMonth": "2016-08", "AOVBucket": "25-30", "count": 343, "revenue": 9378.042479, "avgShipping": 1.0276967930029155, "pctFreeShip": 0.673469387755102}, {"YearMonth": "2016-08", "AOVBucket": "30-35", "count": 244, "revenue": 7907.930595, "avgShipping": 1.1905737704918034, "pctFreeShip": 0.6147540983606558}, {"YearMonth": "2016-08", "AOVBucket": "35-40", "count": 192, "revenue": 7200.29324, "avgShipping": 1.21875, "pctFreeShip": 0.6354166666666666}, {"YearMonth": "2016-08", "AOVBucket": "40-50", "count": 209, "revenue": 9309.08293, "avgShipping": 1.4736842105263157, "pctFreeShip": 0.5406698564593302}, {"YearMonth": "2016-08", "AOVBucket": "50-60", "count": 111, "revenue": 6056.986013, "avgShipping": 1.3693693693693694, "pctFreeShip": 0.6036036036036037}, {"YearMonth": "2016-08", "AOVBucket": "60-75", "count": 98, "revenue": 6546.388586, "avgShipping": 1.8010204081632653, "pctFreeShip": 0.4897959183673469}, {"YearMonth": "2016-08", "AOVBucket": "75-100", "count": 74, "revenue": 6280.704618, "avgShipping": 2.2364864864864864, "pctFreeShip": 0.40540540540540543}, {"YearMonth": "2016-08", "AOVBucket": "100-150", "count": 48, "revenue": 5571.7647990000005, "avgShipping": 1.9270833333333333, "pctFreeShip": 0.4791666666666667}, {"YearMonth": "2016-08", "AOVBucket": "150-200", "count": 11, "revenue": 1877.6879920000001, "avgShipping": 2.5, "pctFreeShip": 0.2727272727272727}, {"YearMonth": "2016-08", "AOVBucket": "200-500", "count": 10, "revenue": 2273.056012, "avgShipping": 3.55, "pctFreeShip": 0.2}, {"YearMonth": "2016-09", "AOVBucket": "<5", "count": 16, "revenue": 66.73707, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-09", "AOVBucket": "5-10", "count": 415, "revenue": 3502.45195, "avgShipping": 0.18433734939759036, "pctFreeShip": 0.927710843373494}, {"YearMonth": "2016-09", "AOVBucket": "10-15", "count": 492, "revenue": 6035.82306, "avgShipping": 0.9522357723577236, "pctFreeShip": 0.6524390243902439}, {"YearMonth": "2016-09", "AOVBucket": "15-20", "count": 629, "revenue": 11098.665373, "avgShipping": 0.6327503974562798, "pctFreeShip": 0.7980922098569158}, {"YearMonth": "2016-09", "AOVBucket": "20-25", "count": 323, "revenue": 7152.733129, "avgShipping": 1.3591331269349844, "pctFreeShip": 0.5108359133126935}, {"YearMonth": "2016-09", "AOVBucket": "25-30", "count": 245, "revenue": 6705.506095, "avgShipping": 0.9795918367346939, "pctFreeShip": 0.6857142857142857}, {"YearMonth": "2016-09", "AOVBucket": "30-35", "count": 207, "revenue": 6745.217023, "avgShipping": 0.8478260869565217, "pctFreeShip": 0.7101449275362319}, {"YearMonth": "2016-09", "AOVBucket": "35-40", "count": 170, "revenue": 6398.372408, "avgShipping": 1.2117647058823529, "pctFreeShip": 0.6176470588235294}, {"YearMonth": "2016-09", "AOVBucket": "40-50", "count": 139, "revenue": 6197.361136, "avgShipping": 1.723021582733813, "pctFreeShip": 0.5035971223021583}, {"YearMonth": "2016-09", "AOVBucket": "50-60", "count": 73, "revenue": 3939.940093, "avgShipping": 1.4657534246575343, "pctFreeShip": 0.5616438356164384}, {"YearMonth": "2016-09", "AOVBucket": "60-75", "count": 71, "revenue": 4727.284332, "avgShipping": 1.795774647887324, "pctFreeShip": 0.4647887323943662}, {"YearMonth": "2016-09", "AOVBucket": "75-100", "count": 38, "revenue": 3208.963705, "avgShipping": 2.1052631578947367, "pctFreeShip": 0.4473684210526316}, {"YearMonth": "2016-09", "AOVBucket": "100-150", "count": 29, "revenue": 3311.673552, "avgShipping": 1.8275862068965518, "pctFreeShip": 0.5172413793103449}, {"YearMonth": "2016-09", "AOVBucket": "150-200", "count": 5, "revenue": 906.918486, "avgShipping": 2.1, "pctFreeShip": 0.4}, {"YearMonth": "2016-09", "AOVBucket": "200-500", "count": 5, "revenue": 1231.329999, "avgShipping": 3.4, "pctFreeShip": 0.0}, {"YearMonth": "2016-10", "AOVBucket": "<5", "count": 32, "revenue": 138.3735, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-10", "AOVBucket": "5-10", "count": 407, "revenue": 3382.846, "avgShipping": 0.15847665847665848, "pctFreeShip": 0.941031941031941}, {"YearMonth": "2016-10", "AOVBucket": "10-15", "count": 515, "revenue": 6319.8582, "avgShipping": 0.8679611650485437, "pctFreeShip": 0.6776699029126214}, {"YearMonth": "2016-10", "AOVBucket": "15-20", "count": 627, "revenue": 11118.88592, "avgShipping": 0.4688995215311005, "pctFreeShip": 0.8421052631578947}, {"YearMonth": "2016-10", "AOVBucket": "20-25", "count": 357, "revenue": 7900.235652, "avgShipping": 1.427170868347339, "pctFreeShip": 0.5154061624649859}, {"YearMonth": "2016-10", "AOVBucket": "25-30", "count": 254, "revenue": 6941.168879, "avgShipping": 1.0708661417322836, "pctFreeShip": 0.6929133858267716}, {"YearMonth": "2016-10", "AOVBucket": "30-35", "count": 200, "revenue": 6496.511589, "avgShipping": 1.3225, "pctFreeShip": 0.57}, {"YearMonth": "2016-10", "AOVBucket": "35-40", "count": 178, "revenue": 6658.589484, "avgShipping": 1.396067415730337, "pctFreeShip": 0.5674157303370787}, {"YearMonth": "2016-10", "AOVBucket": "40-50", "count": 161, "revenue": 7187.493292, "avgShipping": 1.562111801242236, "pctFreeShip": 0.5403726708074534}, {"YearMonth": "2016-10", "AOVBucket": "50-60", "count": 103, "revenue": 5665.071295, "avgShipping": 1.4660194174757282, "pctFreeShip": 0.5533980582524272}, {"YearMonth": "2016-10", "AOVBucket": "60-75", "count": 75, "revenue": 5020.474301, "avgShipping": 1.7933333333333332, "pctFreeShip": 0.5066666666666667}, {"YearMonth": "2016-10", "AOVBucket": "75-100", "count": 47, "revenue": 3994.3533, "avgShipping": 2.1702127659574466, "pctFreeShip": 0.3617021276595745}, {"YearMonth": "2016-10", "AOVBucket": "100-150", "count": 26, "revenue": 3132.952185, "avgShipping": 2.4423076923076925, "pctFreeShip": 0.34615384615384615}, {"YearMonth": "2016-10", "AOVBucket": "150-200", "count": 9, "revenue": 1457.2766980000001, "avgShipping": 1.7222222222222223, "pctFreeShip": 0.4444444444444444}, {"YearMonth": "2016-10", "AOVBucket": "200-500", "count": 4, "revenue": 957.140603, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2016-11", "AOVBucket": "<5", "count": 28, "revenue": 121.538, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-11", "AOVBucket": "5-10", "count": 435, "revenue": 3627.49279, "avgShipping": 0.09770114942528736, "pctFreeShip": 0.960919540229885}, {"YearMonth": "2016-11", "AOVBucket": "10-15", "count": 521, "revenue": 6365.21659, "avgShipping": 0.8733205374280231, "pctFreeShip": 0.690978886756238}, {"YearMonth": "2016-11", "AOVBucket": "15-20", "count": 739, "revenue": 12986.661241, "avgShipping": 0.5277401894451962, "pctFreeShip": 0.8200270635994588}, {"YearMonth": "2016-11", "AOVBucket": "20-25", "count": 415, "revenue": 9215.713717, "avgShipping": 1.202409638554217, "pctFreeShip": 0.5831325301204819}, {"YearMonth": "2016-11", "AOVBucket": "25-30", "count": 301, "revenue": 8290.809595, "avgShipping": 1.0498338870431894, "pctFreeShip": 0.6877076411960132}, {"YearMonth": "2016-11", "AOVBucket": "30-35", "count": 231, "revenue": 7521.768493, "avgShipping": 1.0735930735930737, "pctFreeShip": 0.6493506493506493}, {"YearMonth": "2016-11", "AOVBucket": "35-40", "count": 187, "revenue": 7001.966177, "avgShipping": 1.1550802139037433, "pctFreeShip": 0.6256684491978609}, {"YearMonth": "2016-11", "AOVBucket": "40-50", "count": 199, "revenue": 8828.338608, "avgShipping": 1.271356783919598, "pctFreeShip": 0.6130653266331658}, {"YearMonth": "2016-11", "AOVBucket": "50-60", "count": 114, "revenue": 6210.20939, "avgShipping": 1.4956140350877194, "pctFreeShip": 0.5877192982456141}, {"YearMonth": "2016-11", "AOVBucket": "60-75", "count": 89, "revenue": 5976.274388, "avgShipping": 1.5, "pctFreeShip": 0.5617977528089888}, {"YearMonth": "2016-11", "AOVBucket": "75-100", "count": 73, "revenue": 6233.832915, "avgShipping": 1.7602739726027397, "pctFreeShip": 0.5342465753424658}, {"YearMonth": "2016-11", "AOVBucket": "100-150", "count": 43, "revenue": 5176.496314, "avgShipping": 1.9883720930232558, "pctFreeShip": 0.4418604651162791}, {"YearMonth": "2016-11", "AOVBucket": "150-200", "count": 7, "revenue": 1266.506188, "avgShipping": 3.142857142857143, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2016-11", "AOVBucket": "200-500", "count": 10, "revenue": 2909.942423, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2016-12", "AOVBucket": "<5", "count": 5, "revenue": 24.3568, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2016-12", "AOVBucket": "5-10", "count": 318, "revenue": 2683.6938, "avgShipping": 0.10377358490566038, "pctFreeShip": 0.9622641509433962}, {"YearMonth": "2016-12", "AOVBucket": "10-15", "count": 443, "revenue": 5468.507, "avgShipping": 0.618510158013544, "pctFreeShip": 0.7674943566591422}, {"YearMonth": "2016-12", "AOVBucket": "15-20", "count": 487, "revenue": 8714.877919, "avgShipping": 0.36960985626283366, "pctFreeShip": 0.8685831622176592}, {"YearMonth": "2016-12", "AOVBucket": "20-25", "count": 367, "revenue": 8245.216536, "avgShipping": 1.0354223433242506, "pctFreeShip": 0.6348773841961853}, {"YearMonth": "2016-12", "AOVBucket": "25-30", "count": 237, "revenue": 6459.88494, "avgShipping": 0.8755274261603375, "pctFreeShip": 0.7426160337552743}, {"YearMonth": "2016-12", "AOVBucket": "30-35", "count": 202, "revenue": 6564.260635, "avgShipping": 1.1757425742574257, "pctFreeShip": 0.6485148514851485}, {"YearMonth": "2016-12", "AOVBucket": "35-40", "count": 122, "revenue": 4599.307069, "avgShipping": 0.8114754098360656, "pctFreeShip": 0.7540983606557377}, {"YearMonth": "2016-12", "AOVBucket": "40-50", "count": 153, "revenue": 6849.491379, "avgShipping": 1.2091503267973855, "pctFreeShip": 0.6601307189542484}, {"YearMonth": "2016-12", "AOVBucket": "50-60", "count": 76, "revenue": 4164.512394, "avgShipping": 1.0921052631578947, "pctFreeShip": 0.6578947368421053}, {"YearMonth": "2016-12", "AOVBucket": "60-75", "count": 61, "revenue": 4059.110574, "avgShipping": 1.4344262295081966, "pctFreeShip": 0.5737704918032787}, {"YearMonth": "2016-12", "AOVBucket": "75-100", "count": 48, "revenue": 4208.237687, "avgShipping": 1.3541666666666667, "pctFreeShip": 0.6458333333333334}, {"YearMonth": "2016-12", "AOVBucket": "100-150", "count": 39, "revenue": 4592.067521, "avgShipping": 3.7230769230769227, "pctFreeShip": 0.48717948717948717}, {"YearMonth": "2016-12", "AOVBucket": "150-200", "count": 10, "revenue": 1656.553209, "avgShipping": 3.75, "pctFreeShip": 0.2}, {"YearMonth": "2016-12", "AOVBucket": "200-500", "count": 2, "revenue": 456.13680999999997, "avgShipping": 2.0, "pctFreeShip": 0.5}, {"YearMonth": "2017-01", "AOVBucket": "<5", "count": 31, "revenue": 139.64000000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-01", "AOVBucket": "5-10", "count": 757, "revenue": 6209.49, "avgShipping": 0.17701453104359313, "pctFreeShip": 0.9313077939233818}, {"YearMonth": "2017-01", "AOVBucket": "10-15", "count": 979, "revenue": 12168.83, "avgShipping": 0.8130745658835546, "pctFreeShip": 0.6915219611848825}, {"YearMonth": "2017-01", "AOVBucket": "15-20", "count": 1029, "revenue": 18094.809862000002, "avgShipping": 0.5942662779397473, "pctFreeShip": 0.782312925170068}, {"YearMonth": "2017-01", "AOVBucket": "20-25", "count": 642, "revenue": 14314.5399, "avgShipping": 1.2445482866043613, "pctFreeShip": 0.5482866043613707}, {"YearMonth": "2017-01", "AOVBucket": "25-30", "count": 460, "revenue": 12559.459896, "avgShipping": 0.9173913043478261, "pctFreeShip": 0.691304347826087}, {"YearMonth": "2017-01", "AOVBucket": "30-35", "count": 314, "revenue": 10218.949906, "avgShipping": 0.9187898089171974, "pctFreeShip": 0.7070063694267515}, {"YearMonth": "2017-01", "AOVBucket": "35-40", "count": 229, "revenue": 8574.59995, "avgShipping": 1.0109170305676856, "pctFreeShip": 0.6768558951965066}, {"YearMonth": "2017-01", "AOVBucket": "40-50", "count": 267, "revenue": 11885.719969, "avgShipping": 1.4812734082397003, "pctFreeShip": 0.5355805243445693}, {"YearMonth": "2017-01", "AOVBucket": "50-60", "count": 161, "revenue": 8736.299954, "avgShipping": 1.2267080745341614, "pctFreeShip": 0.5962732919254659}, {"YearMonth": "2017-01", "AOVBucket": "60-75", "count": 107, "revenue": 7122.669965, "avgShipping": 1.411214953271028, "pctFreeShip": 0.5420560747663551}, {"YearMonth": "2017-01", "AOVBucket": "75-100", "count": 77, "revenue": 6520.279983, "avgShipping": 1.422077922077922, "pctFreeShip": 0.5584415584415584}, {"YearMonth": "2017-01", "AOVBucket": "100-150", "count": 43, "revenue": 5117.300036, "avgShipping": 1.7325581395348837, "pctFreeShip": 0.4418604651162791}, {"YearMonth": "2017-01", "AOVBucket": "150-200", "count": 12, "revenue": 1999.639966, "avgShipping": 2.5416666666666665, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2017-01", "AOVBucket": "200-500", "count": 12, "revenue": 2998.550001, "avgShipping": 2.7083333333333335, "pctFreeShip": 0.25}, {"YearMonth": "2017-02", "AOVBucket": "<5", "count": 34, "revenue": 161.48000000000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-02", "AOVBucket": "5-10", "count": 561, "revenue": 4546.43, "avgShipping": 0.19607843137254902, "pctFreeShip": 0.9197860962566845}, {"YearMonth": "2017-02", "AOVBucket": "10-15", "count": 617, "revenue": 7478.34, "avgShipping": 0.8816855753646677, "pctFreeShip": 0.6385737439222042}, {"YearMonth": "2017-02", "AOVBucket": "15-20", "count": 704, "revenue": 12511.569992, "avgShipping": 0.5546875, "pctFreeShip": 0.7769886363636364}, {"YearMonth": "2017-02", "AOVBucket": "20-25", "count": 510, "revenue": 11449.259984, "avgShipping": 1.022549019607843, "pctFreeShip": 0.5862745098039216}, {"YearMonth": "2017-02", "AOVBucket": "25-30", "count": 310, "revenue": 8500.669909, "avgShipping": 0.882258064516129, "pctFreeShip": 0.6483870967741936}, {"YearMonth": "2017-02", "AOVBucket": "30-35", "count": 206, "revenue": 6739.429963, "avgShipping": 0.8786407766990292, "pctFreeShip": 0.6262135922330098}, {"YearMonth": "2017-02", "AOVBucket": "35-40", "count": 149, "revenue": 5582.369969, "avgShipping": 1.0100671140939597, "pctFreeShip": 0.5771812080536913}, {"YearMonth": "2017-02", "AOVBucket": "40-50", "count": 160, "revenue": 7107.209974, "avgShipping": 1.284375, "pctFreeShip": 0.5}, {"YearMonth": "2017-02", "AOVBucket": "50-60", "count": 66, "revenue": 3596.269982, "avgShipping": 0.9696969696969697, "pctFreeShip": 0.5757575757575758}, {"YearMonth": "2017-02", "AOVBucket": "60-75", "count": 67, "revenue": 4502.519967, "avgShipping": 1.164179104477612, "pctFreeShip": 0.47761194029850745}, {"YearMonth": "2017-02", "AOVBucket": "75-100", "count": 43, "revenue": 3695.419984, "avgShipping": 1.8372093023255813, "pctFreeShip": 0.32558139534883723}, {"YearMonth": "2017-02", "AOVBucket": "100-150", "count": 17, "revenue": 1982.369992, "avgShipping": 1.5294117647058822, "pctFreeShip": 0.29411764705882354}, {"YearMonth": "2017-02", "AOVBucket": "150-200", "count": 7, "revenue": 1227.920015, "avgShipping": 1.0, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2017-02", "AOVBucket": "200-500", "count": 1, "revenue": 206.809997, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2017-02", "AOVBucket": "500+", "count": 1, "revenue": 702.599991, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2017-03", "AOVBucket": "<5", "count": 33, "revenue": 151.21, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-03", "AOVBucket": "5-10", "count": 566, "revenue": 4690.08, "avgShipping": 0.2588339222614841, "pctFreeShip": 0.892226148409894}, {"YearMonth": "2017-03", "AOVBucket": "10-15", "count": 738, "revenue": 9166.339999, "avgShipping": 0.9071815718157181, "pctFreeShip": 0.6287262872628726}, {"YearMonth": "2017-03", "AOVBucket": "15-20", "count": 910, "revenue": 16126.28987, "avgShipping": 0.6098901098901099, "pctFreeShip": 0.7593406593406593}, {"YearMonth": "2017-03", "AOVBucket": "20-25", "count": 525, "revenue": 11745.429937, "avgShipping": 1.378095238095238, "pctFreeShip": 0.44952380952380955}, {"YearMonth": "2017-03", "AOVBucket": "25-30", "count": 315, "revenue": 8675.309946, "avgShipping": 0.7952380952380952, "pctFreeShip": 0.6698412698412698}, {"YearMonth": "2017-03", "AOVBucket": "30-35", "count": 249, "revenue": 8075.679962, "avgShipping": 1.1325301204819278, "pctFreeShip": 0.5341365461847389}, {"YearMonth": "2017-03", "AOVBucket": "35-40", "count": 215, "revenue": 8063.229979, "avgShipping": 0.7883720930232558, "pctFreeShip": 0.6697674418604651}, {"YearMonth": "2017-03", "AOVBucket": "40-50", "count": 173, "revenue": 7669.699996, "avgShipping": 1.0635838150289016, "pctFreeShip": 0.5433526011560693}, {"YearMonth": "2017-03", "AOVBucket": "50-60", "count": 112, "revenue": 6160.589963, "avgShipping": 0.8348214285714286, "pctFreeShip": 0.6339285714285714}, {"YearMonth": "2017-03", "AOVBucket": "60-75", "count": 95, "revenue": 6260.169965, "avgShipping": 1.3, "pctFreeShip": 0.42105263157894735}, {"YearMonth": "2017-03", "AOVBucket": "75-100", "count": 49, "revenue": 4238.460003, "avgShipping": 1.0612244897959184, "pctFreeShip": 0.5306122448979592}, {"YearMonth": "2017-03", "AOVBucket": "100-150", "count": 32, "revenue": 3673.200008, "avgShipping": 1.25, "pctFreeShip": 0.40625}, {"YearMonth": "2017-03", "AOVBucket": "150-200", "count": 4, "revenue": 742.6900089999999, "avgShipping": 1.75, "pctFreeShip": 0.25}, {"YearMonth": "2017-03", "AOVBucket": "200-500", "count": 9, "revenue": 2300.640002, "avgShipping": 1.5555555555555556, "pctFreeShip": 0.2222222222222222}, {"YearMonth": "2017-03", "AOVBucket": "500+", "count": 1, "revenue": 988.559983, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2017-04", "AOVBucket": "<5", "count": 21, "revenue": 93.16, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-04", "AOVBucket": "5-10", "count": 449, "revenue": 3806.5099999999998, "avgShipping": 0.24276169265033407, "pctFreeShip": 0.8997772828507795}, {"YearMonth": "2017-04", "AOVBucket": "10-15", "count": 548, "revenue": 6935.68, "avgShipping": 0.791058394160584, "pctFreeShip": 0.6824817518248175}, {"YearMonth": "2017-04", "AOVBucket": "15-20", "count": 622, "revenue": 11027.13996, "avgShipping": 0.7234726688102894, "pctFreeShip": 0.702572347266881}, {"YearMonth": "2017-04", "AOVBucket": "20-25", "count": 603, "revenue": 13589.320007, "avgShipping": 0.939469320066335, "pctFreeShip": 0.6202321724709784}, {"YearMonth": "2017-04", "AOVBucket": "25-30", "count": 304, "revenue": 8335.539913999999, "avgShipping": 0.805921052631579, "pctFreeShip": 0.6710526315789473}, {"YearMonth": "2017-04", "AOVBucket": "30-35", "count": 207, "revenue": 6690.73994, "avgShipping": 0.9637681159420289, "pctFreeShip": 0.5990338164251208}, {"YearMonth": "2017-04", "AOVBucket": "35-40", "count": 153, "revenue": 5783.7999899999995, "avgShipping": 0.8333333333333334, "pctFreeShip": 0.6470588235294118}, {"YearMonth": "2017-04", "AOVBucket": "40-50", "count": 180, "revenue": 7979.879996, "avgShipping": 1.0805555555555555, "pctFreeShip": 0.55}, {"YearMonth": "2017-04", "AOVBucket": "50-60", "count": 103, "revenue": 5658.929974, "avgShipping": 1.1699029126213591, "pctFreeShip": 0.5339805825242718}, {"YearMonth": "2017-04", "AOVBucket": "60-75", "count": 52, "revenue": 3500.049981, "avgShipping": 1.25, "pctFreeShip": 0.4807692307692308}, {"YearMonth": "2017-04", "AOVBucket": "75-100", "count": 44, "revenue": 3709.620007, "avgShipping": 1.3409090909090908, "pctFreeShip": 0.38636363636363635}, {"YearMonth": "2017-04", "AOVBucket": "100-150", "count": 34, "revenue": 4055.169952, "avgShipping": 1.1323529411764706, "pctFreeShip": 0.47058823529411764}, {"YearMonth": "2017-04", "AOVBucket": "150-200", "count": 7, "revenue": 1180.0600180000001, "avgShipping": 1.2857142857142858, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2017-04", "AOVBucket": "200-500", "count": 1, "revenue": 355.569992, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2017-05", "AOVBucket": "<5", "count": 24, "revenue": 100.44, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-05", "AOVBucket": "5-10", "count": 488, "revenue": 4063.55, "avgShipping": 0.19364754098360656, "pctFreeShip": 0.9200819672131147}, {"YearMonth": "2017-05", "AOVBucket": "10-15", "count": 756, "revenue": 9513.85, "avgShipping": 0.6924603174603174, "pctFreeShip": 0.7116402116402116}, {"YearMonth": "2017-05", "AOVBucket": "15-20", "count": 809, "revenue": 14244.259846, "avgShipping": 0.6656365883807169, "pctFreeShip": 0.73053152039555}, {"YearMonth": "2017-05", "AOVBucket": "20-25", "count": 645, "revenue": 14590.019779, "avgShipping": 1.189922480620155, "pctFreeShip": 0.5271317829457365}, {"YearMonth": "2017-05", "AOVBucket": "25-30", "count": 294, "revenue": 8083.449901, "avgShipping": 0.9914965986394558, "pctFreeShip": 0.6020408163265306}, {"YearMonth": "2017-05", "AOVBucket": "30-35", "count": 280, "revenue": 9070.959874, "avgShipping": 0.9928571428571429, "pctFreeShip": 0.5857142857142857}, {"YearMonth": "2017-05", "AOVBucket": "35-40", "count": 180, "revenue": 6745.479945, "avgShipping": 0.8972222222222223, "pctFreeShip": 0.6388888888888888}, {"YearMonth": "2017-05", "AOVBucket": "40-50", "count": 235, "revenue": 10523.869872, "avgShipping": 1.127659574468085, "pctFreeShip": 0.5446808510638298}, {"YearMonth": "2017-05", "AOVBucket": "50-60", "count": 120, "revenue": 6530.519953, "avgShipping": 1.2541666666666667, "pctFreeShip": 0.475}, {"YearMonth": "2017-05", "AOVBucket": "60-75", "count": 99, "revenue": 6625.209954, "avgShipping": 1.2626262626262625, "pctFreeShip": 0.494949494949495}, {"YearMonth": "2017-05", "AOVBucket": "75-100", "count": 50, "revenue": 4222.189968, "avgShipping": 1.75, "pctFreeShip": 0.54}, {"YearMonth": "2017-05", "AOVBucket": "100-150", "count": 30, "revenue": 3437.600001, "avgShipping": 1.7, "pctFreeShip": 0.3}, {"YearMonth": "2017-05", "AOVBucket": "150-200", "count": 7, "revenue": 1156.690004, "avgShipping": 1.2142857142857142, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2017-05", "AOVBucket": "200-500", "count": 9, "revenue": 2482.809999, "avgShipping": 2.2222222222222223, "pctFreeShip": 0.2222222222222222}, {"YearMonth": "2017-06", "AOVBucket": "<5", "count": 16, "revenue": 67.88, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-06", "AOVBucket": "5-10", "count": 443, "revenue": 3778.75, "avgShipping": 0.19074492099322798, "pctFreeShip": 0.9209932279909706}, {"YearMonth": "2017-06", "AOVBucket": "10-15", "count": 580, "revenue": 7289.19, "avgShipping": 0.7413793103448276, "pctFreeShip": 0.7017241379310345}, {"YearMonth": "2017-06", "AOVBucket": "15-20", "count": 618, "revenue": 10821.929954, "avgShipping": 0.848705501618123, "pctFreeShip": 0.6601941747572816}, {"YearMonth": "2017-06", "AOVBucket": "20-25", "count": 675, "revenue": 15439.81965, "avgShipping": 0.9437037037037037, "pctFreeShip": 0.6148148148148148}, {"YearMonth": "2017-06", "AOVBucket": "25-30", "count": 231, "revenue": 6332.309931, "avgShipping": 1.0238095238095237, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2017-06", "AOVBucket": "30-35", "count": 167, "revenue": 5410.239946, "avgShipping": 1.2544910179640718, "pctFreeShip": 0.5089820359281437}, {"YearMonth": "2017-06", "AOVBucket": "35-40", "count": 150, "revenue": 5641.229948, "avgShipping": 0.7766666666666666, "pctFreeShip": 0.6533333333333333}, {"YearMonth": "2017-06", "AOVBucket": "40-50", "count": 173, "revenue": 7754.689886, "avgShipping": 0.861271676300578, "pctFreeShip": 0.6473988439306358}, {"YearMonth": "2017-06", "AOVBucket": "50-60", "count": 100, "revenue": 5490.929964, "avgShipping": 0.975, "pctFreeShip": 0.57}, {"YearMonth": "2017-06", "AOVBucket": "60-75", "count": 72, "revenue": 4732.029976, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.4166666666666667}, {"YearMonth": "2017-06", "AOVBucket": "75-100", "count": 41, "revenue": 3535.549986, "avgShipping": 1.524390243902439, "pctFreeShip": 0.3902439024390244}, {"YearMonth": "2017-06", "AOVBucket": "100-150", "count": 26, "revenue": 3083.089991, "avgShipping": 1.0769230769230769, "pctFreeShip": 0.5}, {"YearMonth": "2017-06", "AOVBucket": "150-200", "count": 4, "revenue": 730.38, "avgShipping": 1.5, "pctFreeShip": 0.25}, {"YearMonth": "2017-06", "AOVBucket": "200-500", "count": 4, "revenue": 966.970005, "avgShipping": 1.625, "pctFreeShip": 0.25}, {"YearMonth": "2017-07", "AOVBucket": "<5", "count": 23, "revenue": 96.06, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-07", "AOVBucket": "5-10", "count": 590, "revenue": 5020.95, "avgShipping": 0.2271186440677966, "pctFreeShip": 0.9050847457627119}, {"YearMonth": "2017-07", "AOVBucket": "10-15", "count": 702, "revenue": 8858.07, "avgShipping": 0.8326210826210826, "pctFreeShip": 0.6609686609686609}, {"YearMonth": "2017-07", "AOVBucket": "15-20", "count": 653, "revenue": 11333.909939, "avgShipping": 0.9096477794793262, "pctFreeShip": 0.6385911179173047}, {"YearMonth": "2017-07", "AOVBucket": "20-25", "count": 1095, "revenue": 24964.879477, "avgShipping": 0.7287671232876712, "pctFreeShip": 0.7068493150684931}, {"YearMonth": "2017-07", "AOVBucket": "25-30", "count": 508, "revenue": 13898.299842, "avgShipping": 0.7716535433070866, "pctFreeShip": 0.6968503937007874}, {"YearMonth": "2017-07", "AOVBucket": "30-35", "count": 336, "revenue": 10836.909873999999, "avgShipping": 0.78125, "pctFreeShip": 0.6696428571428571}, {"YearMonth": "2017-07", "AOVBucket": "35-40", "count": 238, "revenue": 8996.399843, "avgShipping": 0.8046218487394958, "pctFreeShip": 0.6596638655462185}, {"YearMonth": "2017-07", "AOVBucket": "40-50", "count": 491, "revenue": 21874.689734, "avgShipping": 0.725050916496945, "pctFreeShip": 0.7067209775967414}, {"YearMonth": "2017-07", "AOVBucket": "50-60", "count": 232, "revenue": 12720.119896, "avgShipping": 0.8620689655172413, "pctFreeShip": 0.6293103448275862}, {"YearMonth": "2017-07", "AOVBucket": "60-75", "count": 119, "revenue": 7919.769974, "avgShipping": 1.0924369747899159, "pctFreeShip": 0.5378151260504201}, {"YearMonth": "2017-07", "AOVBucket": "75-100", "count": 76, "revenue": 6492.429956, "avgShipping": 1.0921052631578947, "pctFreeShip": 0.5}, {"YearMonth": "2017-07", "AOVBucket": "100-150", "count": 55, "revenue": 6542.349987, "avgShipping": 1.2818181818181817, "pctFreeShip": 0.4}, {"YearMonth": "2017-07", "AOVBucket": "150-200", "count": 10, "revenue": 1758.70001, "avgShipping": 1.2, "pctFreeShip": 0.4}, {"YearMonth": "2017-07", "AOVBucket": "200-500", "count": 3, "revenue": 736.3900080000001, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.0}, {"YearMonth": "2017-07", "AOVBucket": "500+", "count": 2, "revenue": 1299.79002, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2017-08", "AOVBucket": "<5", "count": 20, "revenue": 87.5, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-08", "AOVBucket": "5-10", "count": 528, "revenue": 4444.71, "avgShipping": 0.1553030303030303, "pctFreeShip": 0.9356060606060606}, {"YearMonth": "2017-08", "AOVBucket": "10-15", "count": 735, "revenue": 9236.42, "avgShipping": 0.8081632653061225, "pctFreeShip": 0.672108843537415}, {"YearMonth": "2017-08", "AOVBucket": "15-20", "count": 732, "revenue": 12910.04994, "avgShipping": 0.8688524590163934, "pctFreeShip": 0.6502732240437158}, {"YearMonth": "2017-08", "AOVBucket": "20-25", "count": 706, "revenue": 16076.449641, "avgShipping": 1.0169971671388103, "pctFreeShip": 0.5949008498583569}, {"YearMonth": "2017-08", "AOVBucket": "25-30", "count": 297, "revenue": 8161.479889, "avgShipping": 0.9141414141414141, "pctFreeShip": 0.6599326599326599}, {"YearMonth": "2017-08", "AOVBucket": "30-35", "count": 234, "revenue": 7558.029919, "avgShipping": 1.0085470085470085, "pctFreeShip": 0.5854700854700855}, {"YearMonth": "2017-08", "AOVBucket": "35-40", "count": 139, "revenue": 5238.37993, "avgShipping": 0.9316546762589928, "pctFreeShip": 0.60431654676259}, {"YearMonth": "2017-08", "AOVBucket": "40-50", "count": 227, "revenue": 10130.049859, "avgShipping": 1.024229074889868, "pctFreeShip": 0.5770925110132159}, {"YearMonth": "2017-08", "AOVBucket": "50-60", "count": 119, "revenue": 6493.019928, "avgShipping": 0.8739495798319328, "pctFreeShip": 0.6302521008403361}, {"YearMonth": "2017-08", "AOVBucket": "60-75", "count": 96, "revenue": 6497.959988, "avgShipping": 1.2604166666666667, "pctFreeShip": 0.5520833333333334}, {"YearMonth": "2017-08", "AOVBucket": "75-100", "count": 67, "revenue": 5575.349945, "avgShipping": 1.3805970149253732, "pctFreeShip": 0.4626865671641791}, {"YearMonth": "2017-08", "AOVBucket": "100-150", "count": 31, "revenue": 3665.229994, "avgShipping": 1.1290322580645162, "pctFreeShip": 0.4838709677419355}, {"YearMonth": "2017-08", "AOVBucket": "150-200", "count": 6, "revenue": 1017.6200140000001, "avgShipping": 1.4166666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2017-08", "AOVBucket": "200-500", "count": 2, "revenue": 664.039984, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2017-09", "AOVBucket": "<5", "count": 18, "revenue": 79.1, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-09", "AOVBucket": "5-10", "count": 491, "revenue": 4124.14, "avgShipping": 0.22810590631364563, "pctFreeShip": 0.9083503054989817}, {"YearMonth": "2017-09", "AOVBucket": "10-15", "count": 680, "revenue": 8567.37, "avgShipping": 0.7808823529411765, "pctFreeShip": 0.6779411764705883}, {"YearMonth": "2017-09", "AOVBucket": "15-20", "count": 695, "revenue": 12039.469952, "avgShipping": 0.9165467625899281, "pctFreeShip": 0.6446043165467625}, {"YearMonth": "2017-09", "AOVBucket": "20-25", "count": 786, "revenue": 18014.019554, "avgShipping": 1.0330788804071247, "pctFreeShip": 0.583969465648855}, {"YearMonth": "2017-09", "AOVBucket": "25-30", "count": 290, "revenue": 7991.799907, "avgShipping": 0.7741379310344828, "pctFreeShip": 0.6827586206896552}, {"YearMonth": "2017-09", "AOVBucket": "30-35", "count": 246, "revenue": 7976.389909, "avgShipping": 1.0955284552845528, "pctFreeShip": 0.5528455284552846}, {"YearMonth": "2017-09", "AOVBucket": "35-40", "count": 161, "revenue": 6003.959948, "avgShipping": 0.8478260869565217, "pctFreeShip": 0.6583850931677019}, {"YearMonth": "2017-09", "AOVBucket": "40-50", "count": 242, "revenue": 10764.239855, "avgShipping": 0.8677685950413223, "pctFreeShip": 0.6363636363636364}, {"YearMonth": "2017-09", "AOVBucket": "50-60", "count": 111, "revenue": 6045.099958, "avgShipping": 1.0585585585585586, "pctFreeShip": 0.5765765765765766}, {"YearMonth": "2017-09", "AOVBucket": "60-75", "count": 101, "revenue": 6678.079996, "avgShipping": 1.1287128712871286, "pctFreeShip": 0.504950495049505}, {"YearMonth": "2017-09", "AOVBucket": "75-100", "count": 60, "revenue": 5134.609936, "avgShipping": 0.9833333333333333, "pctFreeShip": 0.5666666666666667}, {"YearMonth": "2017-09", "AOVBucket": "100-150", "count": 33, "revenue": 3947.999977, "avgShipping": 1.5757575757575757, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2017-09", "AOVBucket": "150-200", "count": 9, "revenue": 1504.179979, "avgShipping": 0.7777777777777778, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2017-09", "AOVBucket": "200-500", "count": 5, "revenue": 1070.380013, "avgShipping": 1.7, "pctFreeShip": 0.2}, {"YearMonth": "2017-10", "AOVBucket": "<5", "count": 25, "revenue": 110.44, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-10", "AOVBucket": "5-10", "count": 700, "revenue": 5943.6, "avgShipping": 0.18, "pctFreeShip": 0.9257142857142857}, {"YearMonth": "2017-10", "AOVBucket": "10-15", "count": 874, "revenue": 10997.3, "avgShipping": 0.6481693363844394, "pctFreeShip": 0.7425629290617849}, {"YearMonth": "2017-10", "AOVBucket": "15-20", "count": 804, "revenue": 14008.039943, "avgShipping": 0.8488805970149254, "pctFreeShip": 0.6728855721393034}, {"YearMonth": "2017-10", "AOVBucket": "20-25", "count": 1024, "revenue": 23212.939429, "avgShipping": 0.93359375, "pctFreeShip": 0.634765625}, {"YearMonth": "2017-10", "AOVBucket": "25-30", "count": 355, "revenue": 9767.469872, "avgShipping": 0.9802816901408451, "pctFreeShip": 0.6309859154929578}, {"YearMonth": "2017-10", "AOVBucket": "30-35", "count": 264, "revenue": 8551.449911, "avgShipping": 1.081439393939394, "pctFreeShip": 0.5568181818181818}, {"YearMonth": "2017-10", "AOVBucket": "35-40", "count": 191, "revenue": 7160.959936, "avgShipping": 0.8403141361256544, "pctFreeShip": 0.6492146596858639}, {"YearMonth": "2017-10", "AOVBucket": "40-50", "count": 439, "revenue": 19584.939748, "avgShipping": 0.7425968109339408, "pctFreeShip": 0.6993166287015945}, {"YearMonth": "2017-10", "AOVBucket": "50-60", "count": 146, "revenue": 7982.6999479999995, "avgShipping": 0.8732876712328768, "pctFreeShip": 0.6506849315068494}, {"YearMonth": "2017-10", "AOVBucket": "60-75", "count": 126, "revenue": 8338.259979, "avgShipping": 1.2222222222222223, "pctFreeShip": 0.5079365079365079}, {"YearMonth": "2017-10", "AOVBucket": "75-100", "count": 78, "revenue": 6644.069913, "avgShipping": 1.4230769230769231, "pctFreeShip": 0.4358974358974359}, {"YearMonth": "2017-10", "AOVBucket": "100-150", "count": 36, "revenue": 4241.519988, "avgShipping": 1.4583333333333333, "pctFreeShip": 0.3611111111111111}, {"YearMonth": "2017-10", "AOVBucket": "150-200", "count": 9, "revenue": 1425.500005, "avgShipping": 0.8333333333333334, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2017-10", "AOVBucket": "200-500", "count": 1, "revenue": 205.720002, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2017-11", "AOVBucket": "<5", "count": 16, "revenue": 72.13, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-11", "AOVBucket": "5-10", "count": 636, "revenue": 5331.83, "avgShipping": 0.24528301886792453, "pctFreeShip": 0.8977987421383647}, {"YearMonth": "2017-11", "AOVBucket": "10-15", "count": 850, "revenue": 10629.929998, "avgShipping": 0.7141176470588235, "pctFreeShip": 0.7094117647058824}, {"YearMonth": "2017-11", "AOVBucket": "15-20", "count": 738, "revenue": 12956.909878, "avgShipping": 0.8983739837398373, "pctFreeShip": 0.6422764227642277}, {"YearMonth": "2017-11", "AOVBucket": "20-25", "count": 1061, "revenue": 23974.479421, "avgShipping": 0.8129123468426013, "pctFreeShip": 0.6748350612629594}, {"YearMonth": "2017-11", "AOVBucket": "25-30", "count": 417, "revenue": 11446.299896999999, "avgShipping": 0.947242206235012, "pctFreeShip": 0.6187050359712231}, {"YearMonth": "2017-11", "AOVBucket": "30-35", "count": 256, "revenue": 8292.959926, "avgShipping": 1.029296875, "pctFreeShip": 0.5859375}, {"YearMonth": "2017-11", "AOVBucket": "35-40", "count": 194, "revenue": 7251.179899, "avgShipping": 0.9561855670103093, "pctFreeShip": 0.5876288659793815}, {"YearMonth": "2017-11", "AOVBucket": "40-50", "count": 535, "revenue": 23887.569768999998, "avgShipping": 0.7102803738317757, "pctFreeShip": 0.6990654205607477}, {"YearMonth": "2017-11", "AOVBucket": "50-60", "count": 204, "revenue": 11179.619924999999, "avgShipping": 0.9607843137254902, "pctFreeShip": 0.5931372549019608}, {"YearMonth": "2017-11", "AOVBucket": "60-75", "count": 123, "revenue": 8192.419933, "avgShipping": 1.0975609756097562, "pctFreeShip": 0.5284552845528455}, {"YearMonth": "2017-11", "AOVBucket": "75-100", "count": 84, "revenue": 7210.999949, "avgShipping": 1.0654761904761905, "pctFreeShip": 0.5238095238095238}, {"YearMonth": "2017-11", "AOVBucket": "100-150", "count": 38, "revenue": 4634.840013, "avgShipping": 1.5, "pctFreeShip": 0.42105263157894735}, {"YearMonth": "2017-11", "AOVBucket": "150-200", "count": 7, "revenue": 1125.869977, "avgShipping": 1.5714285714285714, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2017-11", "AOVBucket": "200-500", "count": 8, "revenue": 2204.449976, "avgShipping": 1.5625, "pctFreeShip": 0.25}, {"YearMonth": "2017-12", "AOVBucket": "<5", "count": 25, "revenue": 101.36, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2017-12", "AOVBucket": "5-10", "count": 543, "revenue": 4466.41, "avgShipping": 0.16574585635359115, "pctFreeShip": 0.9337016574585635}, {"YearMonth": "2017-12", "AOVBucket": "10-15", "count": 663, "revenue": 8236.81, "avgShipping": 0.557315233785822, "pctFreeShip": 0.7722473604826546}, {"YearMonth": "2017-12", "AOVBucket": "15-20", "count": 658, "revenue": 11669.179834, "avgShipping": 0.5562310030395137, "pctFreeShip": 0.7781155015197568}, {"YearMonth": "2017-12", "AOVBucket": "20-25", "count": 637, "revenue": 14435.409627, "avgShipping": 0.7519623233908949, "pctFreeShip": 0.6938775510204082}, {"YearMonth": "2017-12", "AOVBucket": "25-30", "count": 295, "revenue": 8076.569936, "avgShipping": 0.7186440677966102, "pctFreeShip": 0.7220338983050848}, {"YearMonth": "2017-12", "AOVBucket": "30-35", "count": 185, "revenue": 5994.42996, "avgShipping": 0.8729729729729729, "pctFreeShip": 0.6216216216216216}, {"YearMonth": "2017-12", "AOVBucket": "35-40", "count": 167, "revenue": 6249.45993, "avgShipping": 0.562874251497006, "pctFreeShip": 0.7544910179640718}, {"YearMonth": "2017-12", "AOVBucket": "40-50", "count": 254, "revenue": 11288.289865, "avgShipping": 0.7578740157480315, "pctFreeShip": 0.6732283464566929}, {"YearMonth": "2017-12", "AOVBucket": "50-60", "count": 126, "revenue": 6879.729976, "avgShipping": 0.5873015873015873, "pctFreeShip": 0.7380952380952381}, {"YearMonth": "2017-12", "AOVBucket": "60-75", "count": 89, "revenue": 5929.719975, "avgShipping": 1.0, "pctFreeShip": 0.5617977528089888}, {"YearMonth": "2017-12", "AOVBucket": "75-100", "count": 57, "revenue": 4860.22998, "avgShipping": 1.1140350877192982, "pctFreeShip": 0.49122807017543857}, {"YearMonth": "2017-12", "AOVBucket": "100-150", "count": 35, "revenue": 4114.890005, "avgShipping": 1.0285714285714285, "pctFreeShip": 0.5428571428571428}, {"YearMonth": "2017-12", "AOVBucket": "150-200", "count": 9, "revenue": 1558.840006, "avgShipping": 0.9444444444444444, "pctFreeShip": 0.5555555555555556}, {"YearMonth": "2017-12", "AOVBucket": "200-500", "count": 5, "revenue": 1129.50999, "avgShipping": 0.8, "pctFreeShip": 0.6}, {"YearMonth": "2018-01", "AOVBucket": "<5", "count": 55, "revenue": 233.10999999999999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-01", "AOVBucket": "5-10", "count": 975, "revenue": 7830.68, "avgShipping": 0.25333333333333335, "pctFreeShip": 0.8933333333333333}, {"YearMonth": "2018-01", "AOVBucket": "10-15", "count": 1291, "revenue": 16428.559999, "avgShipping": 0.5460883036405887, "pctFreeShip": 0.7784663051897753}, {"YearMonth": "2018-01", "AOVBucket": "15-20", "count": 1550, "revenue": 27333.099502, "avgShipping": 0.6309677419354839, "pctFreeShip": 0.7425806451612903}, {"YearMonth": "2018-01", "AOVBucket": "20-25", "count": 1436, "revenue": 32622.559313, "avgShipping": 0.9425487465181058, "pctFreeShip": 0.6232590529247911}, {"YearMonth": "2018-01", "AOVBucket": "25-30", "count": 747, "revenue": 20461.379937, "avgShipping": 0.7074966532797858, "pctFreeShip": 0.7269076305220884}, {"YearMonth": "2018-01", "AOVBucket": "30-35", "count": 442, "revenue": 14253.070007, "avgShipping": 0.9276018099547512, "pctFreeShip": 0.6153846153846154}, {"YearMonth": "2018-01", "AOVBucket": "35-40", "count": 403, "revenue": 15168.36992, "avgShipping": 0.6116625310173698, "pctFreeShip": 0.7419354838709677}, {"YearMonth": "2018-01", "AOVBucket": "40-50", "count": 632, "revenue": 27990.10998, "avgShipping": 0.6637658227848101, "pctFreeShip": 0.7136075949367089}, {"YearMonth": "2018-01", "AOVBucket": "50-60", "count": 266, "revenue": 14562.530027, "avgShipping": 0.7951127819548872, "pctFreeShip": 0.650375939849624}, {"YearMonth": "2018-01", "AOVBucket": "60-75", "count": 194, "revenue": 12904.119988, "avgShipping": 0.8865979381443299, "pctFreeShip": 0.6134020618556701}, {"YearMonth": "2018-01", "AOVBucket": "75-100", "count": 119, "revenue": 10293.739929, "avgShipping": 0.8865546218487395, "pctFreeShip": 0.5966386554621849}, {"YearMonth": "2018-01", "AOVBucket": "100-150", "count": 74, "revenue": 8780.299995, "avgShipping": 1.0337837837837838, "pctFreeShip": 0.5405405405405406}, {"YearMonth": "2018-01", "AOVBucket": "150-200", "count": 17, "revenue": 3078.239978, "avgShipping": 0.8823529411764706, "pctFreeShip": 0.5882352941176471}, {"YearMonth": "2018-01", "AOVBucket": "200-500", "count": 11, "revenue": 2963.14001, "avgShipping": 1.0, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2018-02", "AOVBucket": "<5", "count": 37, "revenue": 143.88, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-02", "AOVBucket": "5-10", "count": 689, "revenue": 5554.83, "avgShipping": 0.36574746008708275, "pctFreeShip": 0.8490566037735849}, {"YearMonth": "2018-02", "AOVBucket": "10-15", "count": 692, "revenue": 8728.710000000001, "avgShipping": 0.8229768786127167, "pctFreeShip": 0.6647398843930635}, {"YearMonth": "2018-02", "AOVBucket": "15-20", "count": 678, "revenue": 11637.629957000001, "avgShipping": 0.974188790560472, "pctFreeShip": 0.6076696165191741}, {"YearMonth": "2018-02", "AOVBucket": "20-25", "count": 1066, "revenue": 24311.099449, "avgShipping": 0.8475609756097561, "pctFreeShip": 0.6547842401500938}, {"YearMonth": "2018-02", "AOVBucket": "25-30", "count": 405, "revenue": 11095.049963, "avgShipping": 0.782716049382716, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2018-02", "AOVBucket": "30-35", "count": 296, "revenue": 9538.200011, "avgShipping": 1.008445945945946, "pctFreeShip": 0.6013513513513513}, {"YearMonth": "2018-02", "AOVBucket": "35-40", "count": 220, "revenue": 8305.719994, "avgShipping": 0.7363636363636363, "pctFreeShip": 0.6954545454545454}, {"YearMonth": "2018-02", "AOVBucket": "40-50", "count": 287, "revenue": 12868.209913, "avgShipping": 1.0958188153310104, "pctFreeShip": 0.5470383275261324}, {"YearMonth": "2018-02", "AOVBucket": "50-60", "count": 121, "revenue": 6633.95999, "avgShipping": 1.0661157024793388, "pctFreeShip": 0.5537190082644629}, {"YearMonth": "2018-02", "AOVBucket": "60-75", "count": 91, "revenue": 6011.859998, "avgShipping": 1.401098901098901, "pctFreeShip": 0.4945054945054945}, {"YearMonth": "2018-02", "AOVBucket": "75-100", "count": 73, "revenue": 6260.059939, "avgShipping": 1.5342465753424657, "pctFreeShip": 0.3698630136986301}, {"YearMonth": "2018-02", "AOVBucket": "100-150", "count": 29, "revenue": 3387.409994, "avgShipping": 1.293103448275862, "pctFreeShip": 0.41379310344827586}, {"YearMonth": "2018-02", "AOVBucket": "150-200", "count": 8, "revenue": 1342.670001, "avgShipping": 1.3125, "pctFreeShip": 0.375}, {"YearMonth": "2018-02", "AOVBucket": "200-500", "count": 6, "revenue": 1573.750006, "avgShipping": 2.0833333333333335, "pctFreeShip": 0.0}, {"YearMonth": "2018-03", "AOVBucket": "<5", "count": 65, "revenue": 249.51, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-03", "AOVBucket": "5-10", "count": 768, "revenue": 6286.42, "avgShipping": 0.3639322916666667, "pctFreeShip": 0.8515625}, {"YearMonth": "2018-03", "AOVBucket": "10-15", "count": 906, "revenue": 11454.76, "avgShipping": 0.7649006622516556, "pctFreeShip": 0.6931567328918322}, {"YearMonth": "2018-03", "AOVBucket": "15-20", "count": 1042, "revenue": 18160.509739, "avgShipping": 0.8224568138195777, "pctFreeShip": 0.6669865642994242}, {"YearMonth": "2018-03", "AOVBucket": "20-25", "count": 1093, "revenue": 24853.519476, "avgShipping": 0.9414455626715462, "pctFreeShip": 0.6175663311985361}, {"YearMonth": "2018-03", "AOVBucket": "25-30", "count": 475, "revenue": 13036.939946, "avgShipping": 0.8294736842105264, "pctFreeShip": 0.671578947368421}, {"YearMonth": "2018-03", "AOVBucket": "30-35", "count": 323, "revenue": 10452.420002, "avgShipping": 1.001547987616099, "pctFreeShip": 0.5758513931888545}, {"YearMonth": "2018-03", "AOVBucket": "35-40", "count": 298, "revenue": 11070.459936, "avgShipping": 0.7533557046979866, "pctFreeShip": 0.6778523489932886}, {"YearMonth": "2018-03", "AOVBucket": "40-50", "count": 306, "revenue": 13632.269945, "avgShipping": 0.9967320261437909, "pctFreeShip": 0.5915032679738562}, {"YearMonth": "2018-03", "AOVBucket": "50-60", "count": 150, "revenue": 8185.510002, "avgShipping": 0.9633333333333334, "pctFreeShip": 0.6133333333333333}, {"YearMonth": "2018-03", "AOVBucket": "60-75", "count": 108, "revenue": 7189.780004, "avgShipping": 1.1296296296296295, "pctFreeShip": 0.5277777777777778}, {"YearMonth": "2018-03", "AOVBucket": "75-100", "count": 79, "revenue": 6706.68996, "avgShipping": 1.2025316455696202, "pctFreeShip": 0.46835443037974683}, {"YearMonth": "2018-03", "AOVBucket": "100-150", "count": 42, "revenue": 4851.150007, "avgShipping": 1.0357142857142858, "pctFreeShip": 0.5476190476190477}, {"YearMonth": "2018-03", "AOVBucket": "150-200", "count": 9, "revenue": 1472.4900149999999, "avgShipping": 1.8333333333333333, "pctFreeShip": 0.1111111111111111}, {"YearMonth": "2018-03", "AOVBucket": "200-500", "count": 5, "revenue": 1317.0399869999999, "avgShipping": 1.7, "pctFreeShip": 0.2}, {"YearMonth": "2018-03", "AOVBucket": "500+", "count": 1, "revenue": 877.949997, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-04", "AOVBucket": "<5", "count": 23, "revenue": 102.03, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-04", "AOVBucket": "5-10", "count": 601, "revenue": 5054.92, "avgShipping": 0.2795341098169717, "pctFreeShip": 0.8835274542429284}, {"YearMonth": "2018-04", "AOVBucket": "10-15", "count": 888, "revenue": 11319.679999, "avgShipping": 0.8079954954954955, "pctFreeShip": 0.6722972972972973}, {"YearMonth": "2018-04", "AOVBucket": "15-20", "count": 1066, "revenue": 19097.609632, "avgShipping": 0.5839587242026266, "pctFreeShip": 0.7579737335834896}, {"YearMonth": "2018-04", "AOVBucket": "20-25", "count": 766, "revenue": 17304.559688, "avgShipping": 1.1697127937336815, "pctFreeShip": 0.5300261096605744}, {"YearMonth": "2018-04", "AOVBucket": "25-30", "count": 424, "revenue": 11622.529886, "avgShipping": 0.8148584905660378, "pctFreeShip": 0.6650943396226415}, {"YearMonth": "2018-04", "AOVBucket": "30-35", "count": 352, "revenue": 11454.189865, "avgShipping": 0.9034090909090909, "pctFreeShip": 0.6335227272727273}, {"YearMonth": "2018-04", "AOVBucket": "35-40", "count": 224, "revenue": 8396.239922, "avgShipping": 1.1339285714285714, "pctFreeShip": 0.5491071428571429}, {"YearMonth": "2018-04", "AOVBucket": "40-50", "count": 435, "revenue": 19488.969849, "avgShipping": 0.8264367816091954, "pctFreeShip": 0.664367816091954}, {"YearMonth": "2018-04", "AOVBucket": "50-60", "count": 176, "revenue": 9544.359926, "avgShipping": 1.1505681818181819, "pctFreeShip": 0.5227272727272727}, {"YearMonth": "2018-04", "AOVBucket": "60-75", "count": 103, "revenue": 6868.639989, "avgShipping": 0.9077669902912622, "pctFreeShip": 0.6116504854368932}, {"YearMonth": "2018-04", "AOVBucket": "75-100", "count": 53, "revenue": 4582.37999, "avgShipping": 1.2547169811320755, "pctFreeShip": 0.5283018867924528}, {"YearMonth": "2018-04", "AOVBucket": "100-150", "count": 43, "revenue": 5102.73001, "avgShipping": 1.5232558139534884, "pctFreeShip": 0.4186046511627907}, {"YearMonth": "2018-04", "AOVBucket": "150-200", "count": 16, "revenue": 2740.090002, "avgShipping": 1.75, "pctFreeShip": 0.1875}, {"YearMonth": "2018-04", "AOVBucket": "200-500", "count": 3, "revenue": 668.870002, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2018-05", "AOVBucket": "<5", "count": 11, "revenue": 49.86, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-05", "AOVBucket": "5-10", "count": 539, "revenue": 4548.79, "avgShipping": 0.22912801484230055, "pctFreeShip": 0.9053803339517625}, {"YearMonth": "2018-05", "AOVBucket": "10-15", "count": 824, "revenue": 10421.1, "avgShipping": 0.8962378640776699, "pctFreeShip": 0.6322815533980582}, {"YearMonth": "2018-05", "AOVBucket": "15-20", "count": 1113, "revenue": 20129.279512, "avgShipping": 0.46226415094339623, "pctFreeShip": 0.8131176999101527}, {"YearMonth": "2018-05", "AOVBucket": "20-25", "count": 689, "revenue": 15394.909712, "avgShipping": 1.4100145137880986, "pctFreeShip": 0.42670537010159654}, {"YearMonth": "2018-05", "AOVBucket": "25-30", "count": 372, "revenue": 10230.269881, "avgShipping": 0.8185483870967742, "pctFreeShip": 0.6801075268817204}, {"YearMonth": "2018-05", "AOVBucket": "30-35", "count": 325, "revenue": 10553.009845999999, "avgShipping": 0.7784615384615384, "pctFreeShip": 0.6584615384615384}, {"YearMonth": "2018-05", "AOVBucket": "35-40", "count": 240, "revenue": 9020.719902, "avgShipping": 0.8041666666666667, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2018-05", "AOVBucket": "40-50", "count": 407, "revenue": 18059.469895, "avgShipping": 0.7297297297297297, "pctFreeShip": 0.7125307125307125}, {"YearMonth": "2018-05", "AOVBucket": "50-60", "count": 150, "revenue": 8233.439944, "avgShipping": 1.03, "pctFreeShip": 0.5866666666666667}, {"YearMonth": "2018-05", "AOVBucket": "60-75", "count": 119, "revenue": 7855.109948, "avgShipping": 1.046218487394958, "pctFreeShip": 0.5966386554621849}, {"YearMonth": "2018-05", "AOVBucket": "75-100", "count": 64, "revenue": 5467.599963, "avgShipping": 1.328125, "pctFreeShip": 0.421875}, {"YearMonth": "2018-05", "AOVBucket": "100-150", "count": 49, "revenue": 5822.929988, "avgShipping": 1.0714285714285714, "pctFreeShip": 0.5306122448979592}, {"YearMonth": "2018-05", "AOVBucket": "150-200", "count": 7, "revenue": 1190.870021, "avgShipping": 0.8571428571428571, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2018-05", "AOVBucket": "200-500", "count": 7, "revenue": 1582.360012, "avgShipping": 1.5714285714285714, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2018-06", "AOVBucket": "<5", "count": 13, "revenue": 59.19, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-06", "AOVBucket": "5-10", "count": 554, "revenue": 4634.84, "avgShipping": 0.20306859205776173, "pctFreeShip": 0.9169675090252708}, {"YearMonth": "2018-06", "AOVBucket": "10-15", "count": 787, "revenue": 9842.72, "avgShipping": 0.7871664548919949, "pctFreeShip": 0.6785260482846251}, {"YearMonth": "2018-06", "AOVBucket": "15-20", "count": 973, "revenue": 17493.929652, "avgShipping": 0.5226104830421378, "pctFreeShip": 0.7862281603288798}, {"YearMonth": "2018-06", "AOVBucket": "20-25", "count": 871, "revenue": 19515.309618, "avgShipping": 1.0407577497129736, "pctFreeShip": 0.5763490241102182}, {"YearMonth": "2018-06", "AOVBucket": "25-30", "count": 423, "revenue": 11496.16987, "avgShipping": 0.9302600472813238, "pctFreeShip": 0.6288416075650118}, {"YearMonth": "2018-06", "AOVBucket": "30-35", "count": 278, "revenue": 9008.719901, "avgShipping": 0.8471223021582733, "pctFreeShip": 0.6402877697841727}, {"YearMonth": "2018-06", "AOVBucket": "35-40", "count": 245, "revenue": 9270.959847, "avgShipping": 0.8040816326530612, "pctFreeShip": 0.6653061224489796}, {"YearMonth": "2018-06", "AOVBucket": "40-50", "count": 304, "revenue": 13529.099838, "avgShipping": 1.074013157894737, "pctFreeShip": 0.555921052631579}, {"YearMonth": "2018-06", "AOVBucket": "50-60", "count": 140, "revenue": 7658.429946, "avgShipping": 0.9928571428571429, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2018-06", "AOVBucket": "60-75", "count": 90, "revenue": 6006.199988, "avgShipping": 1.4166666666666667, "pctFreeShip": 0.4111111111111111}, {"YearMonth": "2018-06", "AOVBucket": "75-100", "count": 71, "revenue": 6098.229949, "avgShipping": 1.4225352112676057, "pctFreeShip": 0.43661971830985913}, {"YearMonth": "2018-06", "AOVBucket": "100-150", "count": 30, "revenue": 3702.379977, "avgShipping": 1.35, "pctFreeShip": 0.4666666666666667}, {"YearMonth": "2018-06", "AOVBucket": "150-200", "count": 9, "revenue": 1530.939983, "avgShipping": 1.2222222222222223, "pctFreeShip": 0.4444444444444444}, {"YearMonth": "2018-06", "AOVBucket": "200-500", "count": 12, "revenue": 3282.409981, "avgShipping": 2.6666666666666665, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2018-07", "AOVBucket": "<5", "count": 22, "revenue": 98.31, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-07", "AOVBucket": "5-10", "count": 461, "revenue": 3903.83, "avgShipping": 0.2960954446854664, "pctFreeShip": 0.8785249457700651}, {"YearMonth": "2018-07", "AOVBucket": "10-15", "count": 693, "revenue": 8683.65, "avgShipping": 0.8831168831168831, "pctFreeShip": 0.6392496392496393}, {"YearMonth": "2018-07", "AOVBucket": "15-20", "count": 657, "revenue": 11620.629917999999, "avgShipping": 0.8158295281582952, "pctFreeShip": 0.6773211567732116}, {"YearMonth": "2018-07", "AOVBucket": "20-25", "count": 935, "revenue": 21196.819569, "avgShipping": 0.6951871657754011, "pctFreeShip": 0.7262032085561497}, {"YearMonth": "2018-07", "AOVBucket": "25-30", "count": 534, "revenue": 14423.429793, "avgShipping": 1.2481273408239701, "pctFreeShip": 0.4868913857677903}, {"YearMonth": "2018-07", "AOVBucket": "30-35", "count": 271, "revenue": 8759.199953, "avgShipping": 0.9833948339483395, "pctFreeShip": 0.6199261992619927}, {"YearMonth": "2018-07", "AOVBucket": "35-40", "count": 249, "revenue": 9320.399896, "avgShipping": 0.8534136546184738, "pctFreeShip": 0.6746987951807228}, {"YearMonth": "2018-07", "AOVBucket": "40-50", "count": 297, "revenue": 13320.199751, "avgShipping": 0.8754208754208754, "pctFreeShip": 0.6430976430976431}, {"YearMonth": "2018-07", "AOVBucket": "50-60", "count": 142, "revenue": 7779.399967, "avgShipping": 0.9049295774647887, "pctFreeShip": 0.6267605633802817}, {"YearMonth": "2018-07", "AOVBucket": "60-75", "count": 108, "revenue": 7260.969985, "avgShipping": 1.4675925925925926, "pctFreeShip": 0.4351851851851852}, {"YearMonth": "2018-07", "AOVBucket": "75-100", "count": 70, "revenue": 5995.159959, "avgShipping": 1.1357142857142857, "pctFreeShip": 0.5}, {"YearMonth": "2018-07", "AOVBucket": "100-150", "count": 43, "revenue": 5110.479988, "avgShipping": 1.4767441860465116, "pctFreeShip": 0.3953488372093023}, {"YearMonth": "2018-07", "AOVBucket": "150-200", "count": 15, "revenue": 2490.609962, "avgShipping": 4.2, "pctFreeShip": 0.4}, {"YearMonth": "2018-07", "AOVBucket": "200-500", "count": 11, "revenue": 3459.770017, "avgShipping": 1.3636363636363635, "pctFreeShip": 0.36363636363636365}, {"YearMonth": "2018-08", "AOVBucket": "<5", "count": 18, "revenue": 74.15, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-08", "AOVBucket": "5-10", "count": 452, "revenue": 3855.64, "avgShipping": 0.28761061946902655, "pctFreeShip": 0.8827433628318584}, {"YearMonth": "2018-08", "AOVBucket": "10-15", "count": 950, "revenue": 12049.529999999999, "avgShipping": 0.6863157894736842, "pctFreeShip": 0.7178947368421053}, {"YearMonth": "2018-08", "AOVBucket": "15-20", "count": 1033, "revenue": 18555.119682, "avgShipping": 0.6413359148112294, "pctFreeShip": 0.7492739593417231}, {"YearMonth": "2018-08", "AOVBucket": "20-25", "count": 918, "revenue": 20798.839623, "avgShipping": 0.7679738562091504, "pctFreeShip": 0.6873638344226579}, {"YearMonth": "2018-08", "AOVBucket": "25-30", "count": 624, "revenue": 16949.349724, "avgShipping": 1.126602564102564, "pctFreeShip": 0.5400641025641025}, {"YearMonth": "2018-08", "AOVBucket": "30-35", "count": 261, "revenue": 8489.06996, "avgShipping": 0.8754789272030651, "pctFreeShip": 0.6475095785440613}, {"YearMonth": "2018-08", "AOVBucket": "35-40", "count": 201, "revenue": 7482.699931, "avgShipping": 0.9950248756218906, "pctFreeShip": 0.5771144278606966}, {"YearMonth": "2018-08", "AOVBucket": "40-50", "count": 564, "revenue": 25086.699708, "avgShipping": 0.6205673758865248, "pctFreeShip": 0.74822695035461}, {"YearMonth": "2018-08", "AOVBucket": "50-60", "count": 203, "revenue": 10981.189941, "avgShipping": 0.9088669950738916, "pctFreeShip": 0.6403940886699507}, {"YearMonth": "2018-08", "AOVBucket": "60-75", "count": 161, "revenue": 10638.259942, "avgShipping": 1.049689440993789, "pctFreeShip": 0.5652173913043478}, {"YearMonth": "2018-08", "AOVBucket": "75-100", "count": 75, "revenue": 6365.729943, "avgShipping": 1.04, "pctFreeShip": 0.5866666666666667}, {"YearMonth": "2018-08", "AOVBucket": "100-150", "count": 35, "revenue": 4060.600004, "avgShipping": 1.3714285714285714, "pctFreeShip": 0.45714285714285713}, {"YearMonth": "2018-08", "AOVBucket": "150-200", "count": 17, "revenue": 3047.639996, "avgShipping": 1.411764705882353, "pctFreeShip": 0.35294117647058826}, {"YearMonth": "2018-08", "AOVBucket": "200-500", "count": 7, "revenue": 1732.76, "avgShipping": 1.8571428571428572, "pctFreeShip": 0.14285714285714285}, {"YearMonth": "2018-09", "AOVBucket": "<5", "count": 11, "revenue": 51.99, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-09", "AOVBucket": "5-10", "count": 452, "revenue": 3873.6, "avgShipping": 0.25331858407079644, "pctFreeShip": 0.8960176991150443}, {"YearMonth": "2018-09", "AOVBucket": "10-15", "count": 741, "revenue": 9260.18, "avgShipping": 0.7597840755735492, "pctFreeShip": 0.6869095816464238}, {"YearMonth": "2018-09", "AOVBucket": "15-20", "count": 754, "revenue": 13334.899849, "avgShipping": 0.7320954907161804, "pctFreeShip": 0.7042440318302388}, {"YearMonth": "2018-09", "AOVBucket": "20-25", "count": 728, "revenue": 16389.579676999998, "avgShipping": 0.8468406593406593, "pctFreeShip": 0.6607142857142857}, {"YearMonth": "2018-09", "AOVBucket": "25-30", "count": 455, "revenue": 12382.659821, "avgShipping": 1.2648351648351648, "pctFreeShip": 0.4901098901098901}, {"YearMonth": "2018-09", "AOVBucket": "30-35", "count": 231, "revenue": 7529.999979, "avgShipping": 0.9545454545454546, "pctFreeShip": 0.6493506493506493}, {"YearMonth": "2018-09", "AOVBucket": "35-40", "count": 188, "revenue": 7042.109933, "avgShipping": 0.9468085106382979, "pctFreeShip": 0.5957446808510638}, {"YearMonth": "2018-09", "AOVBucket": "40-50", "count": 382, "revenue": 17025.799793, "avgShipping": 0.8599476439790575, "pctFreeShip": 0.643979057591623}, {"YearMonth": "2018-09", "AOVBucket": "50-60", "count": 147, "revenue": 8024.059962, "avgShipping": 1.3537414965986394, "pctFreeShip": 0.5102040816326531}, {"YearMonth": "2018-09", "AOVBucket": "60-75", "count": 116, "revenue": 7719.880008, "avgShipping": 1.0172413793103448, "pctFreeShip": 0.5431034482758621}, {"YearMonth": "2018-09", "AOVBucket": "75-100", "count": 66, "revenue": 5641.53997, "avgShipping": 1.2954545454545454, "pctFreeShip": 0.4696969696969697}, {"YearMonth": "2018-09", "AOVBucket": "100-150", "count": 37, "revenue": 4373.729977, "avgShipping": 1.5675675675675675, "pctFreeShip": 0.35135135135135137}, {"YearMonth": "2018-09", "AOVBucket": "150-200", "count": 9, "revenue": 1582.270003, "avgShipping": 1.5, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2018-09", "AOVBucket": "200-500", "count": 3, "revenue": 654.330007, "avgShipping": 0.6666666666666666, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2018-10", "AOVBucket": "<5", "count": 23, "revenue": 104.85000000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-10", "AOVBucket": "5-10", "count": 532, "revenue": 4491.38, "avgShipping": 0.28477443609022557, "pctFreeShip": 0.8853383458646616}, {"YearMonth": "2018-10", "AOVBucket": "10-15", "count": 735, "revenue": 9162.38, "avgShipping": 0.8775510204081632, "pctFreeShip": 0.638095238095238}, {"YearMonth": "2018-10", "AOVBucket": "15-20", "count": 924, "revenue": 16674.569817, "avgShipping": 0.66504329004329, "pctFreeShip": 0.7272727272727273}, {"YearMonth": "2018-10", "AOVBucket": "20-25", "count": 921, "revenue": 20853.109747, "avgShipping": 0.7730727470141151, "pctFreeShip": 0.6807817589576547}, {"YearMonth": "2018-10", "AOVBucket": "25-30", "count": 574, "revenue": 15560.669840999999, "avgShipping": 1.1829268292682926, "pctFreeShip": 0.5209059233449478}, {"YearMonth": "2018-10", "AOVBucket": "30-35", "count": 366, "revenue": 11828.149924, "avgShipping": 0.8319672131147541, "pctFreeShip": 0.6557377049180327}, {"YearMonth": "2018-10", "AOVBucket": "35-40", "count": 305, "revenue": 11456.819861, "avgShipping": 0.8688524590163934, "pctFreeShip": 0.6327868852459017}, {"YearMonth": "2018-10", "AOVBucket": "40-50", "count": 340, "revenue": 15236.349864, "avgShipping": 0.986764705882353, "pctFreeShip": 0.5823529411764706}, {"YearMonth": "2018-10", "AOVBucket": "50-60", "count": 209, "revenue": 11347.570004, "avgShipping": 1.0, "pctFreeShip": 0.569377990430622}, {"YearMonth": "2018-10", "AOVBucket": "60-75", "count": 159, "revenue": 10465.859981, "avgShipping": 1.059748427672956, "pctFreeShip": 0.5723270440251572}, {"YearMonth": "2018-10", "AOVBucket": "75-100", "count": 112, "revenue": 9621.899992999999, "avgShipping": 1.1964285714285714, "pctFreeShip": 0.4732142857142857}, {"YearMonth": "2018-10", "AOVBucket": "100-150", "count": 63, "revenue": 7510.930007, "avgShipping": 1.4523809523809523, "pctFreeShip": 0.3968253968253968}, {"YearMonth": "2018-10", "AOVBucket": "150-200", "count": 14, "revenue": 2338.779961, "avgShipping": 1.3571428571428572, "pctFreeShip": 0.35714285714285715}, {"YearMonth": "2018-10", "AOVBucket": "200-500", "count": 8, "revenue": 1987.589987, "avgShipping": 1.3125, "pctFreeShip": 0.375}, {"YearMonth": "2018-11", "AOVBucket": "<5", "count": 20, "revenue": 84.57000000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-11", "AOVBucket": "5-10", "count": 439, "revenue": 3705.36, "avgShipping": 0.23120728929384965, "pctFreeShip": 0.9043280182232346}, {"YearMonth": "2018-11", "AOVBucket": "10-15", "count": 840, "revenue": 10657.27, "avgShipping": 0.7678571428571429, "pctFreeShip": 0.6845238095238095}, {"YearMonth": "2018-11", "AOVBucket": "15-20", "count": 852, "revenue": 14848.559913, "avgShipping": 0.7664319248826291, "pctFreeShip": 0.6901408450704225}, {"YearMonth": "2018-11", "AOVBucket": "20-25", "count": 813, "revenue": 18284.020192, "avgShipping": 0.8111931119311193, "pctFreeShip": 0.6752767527675276}, {"YearMonth": "2018-11", "AOVBucket": "25-30", "count": 480, "revenue": 13139.679962, "avgShipping": 0.9958333333333333, "pctFreeShip": 0.5958333333333333}, {"YearMonth": "2018-11", "AOVBucket": "30-35", "count": 269, "revenue": 8702.989915, "avgShipping": 0.7453531598513011, "pctFreeShip": 0.6914498141263941}, {"YearMonth": "2018-11", "AOVBucket": "35-40", "count": 225, "revenue": 8384.67995, "avgShipping": 0.8911111111111111, "pctFreeShip": 0.6133333333333333}, {"YearMonth": "2018-11", "AOVBucket": "40-50", "count": 492, "revenue": 22040.699991, "avgShipping": 0.6626016260162602, "pctFreeShip": 0.7296747967479674}, {"YearMonth": "2018-11", "AOVBucket": "50-60", "count": 196, "revenue": 10618.89999, "avgShipping": 0.9489795918367347, "pctFreeShip": 0.5969387755102041}, {"YearMonth": "2018-11", "AOVBucket": "60-75", "count": 132, "revenue": 8786.24998, "avgShipping": 1.3106060606060606, "pctFreeShip": 0.4393939393939394}, {"YearMonth": "2018-11", "AOVBucket": "75-100", "count": 75, "revenue": 6411.599977, "avgShipping": 1.2666666666666666, "pctFreeShip": 0.48}, {"YearMonth": "2018-11", "AOVBucket": "100-150", "count": 52, "revenue": 6231.810007, "avgShipping": 1.2211538461538463, "pctFreeShip": 0.4807692307692308}, {"YearMonth": "2018-11", "AOVBucket": "150-200", "count": 6, "revenue": 1065.44, "avgShipping": 1.1666666666666667, "pctFreeShip": 0.5}, {"YearMonth": "2018-11", "AOVBucket": "200-500", "count": 8, "revenue": 2626.6500100000003, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2018-12", "AOVBucket": "<5", "count": 37, "revenue": 161.75, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2018-12", "AOVBucket": "5-10", "count": 508, "revenue": 4315.94, "avgShipping": 0.17716535433070865, "pctFreeShip": 0.9271653543307087}, {"YearMonth": "2018-12", "AOVBucket": "10-15", "count": 692, "revenue": 8832.93, "avgShipping": 0.5296242774566474, "pctFreeShip": 0.7803468208092486}, {"YearMonth": "2018-12", "AOVBucket": "15-20", "count": 769, "revenue": 13500.689918, "avgShipping": 0.5799739921976593, "pctFreeShip": 0.7659297789336801}, {"YearMonth": "2018-12", "AOVBucket": "20-25", "count": 708, "revenue": 16015.300057, "avgShipping": 0.5508474576271186, "pctFreeShip": 0.7754237288135594}, {"YearMonth": "2018-12", "AOVBucket": "25-30", "count": 424, "revenue": 11665.62995, "avgShipping": 0.8160377358490566, "pctFreeShip": 0.6580188679245284}, {"YearMonth": "2018-12", "AOVBucket": "30-35", "count": 293, "revenue": 9507.699938, "avgShipping": 0.7098976109215017, "pctFreeShip": 0.7030716723549488}, {"YearMonth": "2018-12", "AOVBucket": "35-40", "count": 211, "revenue": 7869.649933, "avgShipping": 0.7085308056872038, "pctFreeShip": 0.7109004739336493}, {"YearMonth": "2018-12", "AOVBucket": "40-50", "count": 432, "revenue": 19330.989967999998, "avgShipping": 0.5509259259259259, "pctFreeShip": 0.7638888888888888}, {"YearMonth": "2018-12", "AOVBucket": "50-60", "count": 181, "revenue": 9790.119953, "avgShipping": 0.8950276243093923, "pctFreeShip": 0.6077348066298343}, {"YearMonth": "2018-12", "AOVBucket": "60-75", "count": 131, "revenue": 8702.649933, "avgShipping": 1.0916030534351144, "pctFreeShip": 0.5267175572519084}, {"YearMonth": "2018-12", "AOVBucket": "75-100", "count": 64, "revenue": 5425.17997, "avgShipping": 0.953125, "pctFreeShip": 0.578125}, {"YearMonth": "2018-12", "AOVBucket": "100-150", "count": 44, "revenue": 5321.090034, "avgShipping": 1.2272727272727273, "pctFreeShip": 0.4318181818181818}, {"YearMonth": "2018-12", "AOVBucket": "150-200", "count": 13, "revenue": 2175.699987, "avgShipping": 1.5, "pctFreeShip": 0.3076923076923077}, {"YearMonth": "2018-12", "AOVBucket": "200-500", "count": 6, "revenue": 1550.389973, "avgShipping": 2.1666666666666665, "pctFreeShip": 0.0}, {"YearMonth": "2019-01", "AOVBucket": "<5", "count": 84, "revenue": 361.07000000000005, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-01", "AOVBucket": "5-10", "count": 826, "revenue": 6846.4800000000005, "avgShipping": 0.26150121065375304, "pctFreeShip": 0.8910411622276029}, {"YearMonth": "2019-01", "AOVBucket": "10-15", "count": 1024, "revenue": 12739.22, "avgShipping": 0.88134765625, "pctFreeShip": 0.640625}, {"YearMonth": "2019-01", "AOVBucket": "15-20", "count": 1064, "revenue": 18555.179923, "avgShipping": 0.7951127819548872, "pctFreeShip": 0.6766917293233082}, {"YearMonth": "2019-01", "AOVBucket": "20-25", "count": 978, "revenue": 21901.059477, "avgShipping": 0.7326175869120655, "pctFreeShip": 0.7075664621676891}, {"YearMonth": "2019-01", "AOVBucket": "25-30", "count": 681, "revenue": 18656.379739, "avgShipping": 1.0051395007342143, "pctFreeShip": 0.591776798825257}, {"YearMonth": "2019-01", "AOVBucket": "30-35", "count": 583, "revenue": 18879.249898, "avgShipping": 0.7478559176672385, "pctFreeShip": 0.6878216123499142}, {"YearMonth": "2019-01", "AOVBucket": "35-40", "count": 339, "revenue": 12605.309882, "avgShipping": 0.9041297935103245, "pctFreeShip": 0.6135693215339233}, {"YearMonth": "2019-01", "AOVBucket": "40-50", "count": 657, "revenue": 29713.009692, "avgShipping": 0.7252663622526636, "pctFreeShip": 0.6925418569254186}, {"YearMonth": "2019-01", "AOVBucket": "50-60", "count": 365, "revenue": 19850.600055, "avgShipping": 0.836986301369863, "pctFreeShip": 0.6383561643835617}, {"YearMonth": "2019-01", "AOVBucket": "60-75", "count": 196, "revenue": 12995.319972, "avgShipping": 1.0255102040816326, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2019-01", "AOVBucket": "75-100", "count": 126, "revenue": 10894.689987, "avgShipping": 0.9722222222222222, "pctFreeShip": 0.5793650793650794}, {"YearMonth": "2019-01", "AOVBucket": "100-150", "count": 80, "revenue": 9430.640037, "avgShipping": 1.54375, "pctFreeShip": 0.3375}, {"YearMonth": "2019-01", "AOVBucket": "150-200", "count": 22, "revenue": 3835.990016, "avgShipping": 1.3409090909090908, "pctFreeShip": 0.4090909090909091}, {"YearMonth": "2019-01", "AOVBucket": "200-500", "count": 10, "revenue": 2604.86999, "avgShipping": 1.65, "pctFreeShip": 0.2}, {"YearMonth": "2019-02", "AOVBucket": "<5", "count": 35, "revenue": 154.46, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-02", "AOVBucket": "5-10", "count": 415, "revenue": 3402.15, "avgShipping": 0.3180722891566265, "pctFreeShip": 0.8698795180722891}, {"YearMonth": "2019-02", "AOVBucket": "10-15", "count": 699, "revenue": 8847.06, "avgShipping": 0.7396280400572246, "pctFreeShip": 0.6952789699570815}, {"YearMonth": "2019-02", "AOVBucket": "15-20", "count": 679, "revenue": 11880.109962999999, "avgShipping": 0.9550810014727541, "pctFreeShip": 0.6185567010309279}, {"YearMonth": "2019-02", "AOVBucket": "20-25", "count": 581, "revenue": 13076.489776999999, "avgShipping": 0.8984509466437177, "pctFreeShip": 0.6351118760757315}, {"YearMonth": "2019-02", "AOVBucket": "25-30", "count": 558, "revenue": 15158.079721, "avgShipping": 1.118279569892473, "pctFreeShip": 0.5376344086021505}, {"YearMonth": "2019-02", "AOVBucket": "30-35", "count": 250, "revenue": 8102.449979, "avgShipping": 0.968, "pctFreeShip": 0.6}, {"YearMonth": "2019-02", "AOVBucket": "35-40", "count": 228, "revenue": 8576.789951, "avgShipping": 0.8530701754385965, "pctFreeShip": 0.6359649122807017}, {"YearMonth": "2019-02", "AOVBucket": "40-50", "count": 260, "revenue": 11683.549826, "avgShipping": 1.0576923076923077, "pctFreeShip": 0.5615384615384615}, {"YearMonth": "2019-02", "AOVBucket": "50-60", "count": 186, "revenue": 10061.399891, "avgShipping": 0.9193548387096774, "pctFreeShip": 0.6182795698924731}, {"YearMonth": "2019-02", "AOVBucket": "60-75", "count": 120, "revenue": 7980.3599619999995, "avgShipping": 1.1583333333333334, "pctFreeShip": 0.49166666666666664}, {"YearMonth": "2019-02", "AOVBucket": "75-100", "count": 78, "revenue": 6579.779962, "avgShipping": 1.4743589743589745, "pctFreeShip": 0.3974358974358974}, {"YearMonth": "2019-02", "AOVBucket": "100-150", "count": 40, "revenue": 4808.970016, "avgShipping": 1.1, "pctFreeShip": 0.5}, {"YearMonth": "2019-02", "AOVBucket": "150-200", "count": 10, "revenue": 1700.7999909999999, "avgShipping": 0.85, "pctFreeShip": 0.6}, {"YearMonth": "2019-02", "AOVBucket": "200-500", "count": 12, "revenue": 2865.090029, "avgShipping": 1.5833333333333333, "pctFreeShip": 0.25}, {"YearMonth": "2019-03", "AOVBucket": "<5", "count": 19, "revenue": 93.06, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-03", "AOVBucket": "5-10", "count": 381, "revenue": 3255.48, "avgShipping": 0.28608923884514437, "pctFreeShip": 0.884514435695538}, {"YearMonth": "2019-03", "AOVBucket": "10-15", "count": 660, "revenue": 8475.97, "avgShipping": 0.806060606060606, "pctFreeShip": 0.6727272727272727}, {"YearMonth": "2019-03", "AOVBucket": "15-20", "count": 680, "revenue": 12155.989943999999, "avgShipping": 0.8720588235294118, "pctFreeShip": 0.6470588235294118}, {"YearMonth": "2019-03", "AOVBucket": "20-25", "count": 612, "revenue": 13690.919871, "avgShipping": 0.8913398692810458, "pctFreeShip": 0.6486928104575164}, {"YearMonth": "2019-03", "AOVBucket": "25-30", "count": 701, "revenue": 19231.609689999997, "avgShipping": 0.848074179743224, "pctFreeShip": 0.6490727532097005}, {"YearMonth": "2019-03", "AOVBucket": "30-35", "count": 313, "revenue": 10089.619975, "avgShipping": 0.9073482428115016, "pctFreeShip": 0.6293929712460063}, {"YearMonth": "2019-03", "AOVBucket": "35-40", "count": 312, "revenue": 11691.559901999999, "avgShipping": 0.9439102564102564, "pctFreeShip": 0.6121794871794872}, {"YearMonth": "2019-03", "AOVBucket": "40-50", "count": 332, "revenue": 14722.869816, "avgShipping": 0.8689759036144579, "pctFreeShip": 0.641566265060241}, {"YearMonth": "2019-03", "AOVBucket": "50-60", "count": 230, "revenue": 12376.049799, "avgShipping": 0.8108695652173913, "pctFreeShip": 0.6565217391304348}, {"YearMonth": "2019-03", "AOVBucket": "60-75", "count": 133, "revenue": 8850.399978, "avgShipping": 1.3533834586466165, "pctFreeShip": 0.44360902255639095}, {"YearMonth": "2019-03", "AOVBucket": "75-100", "count": 84, "revenue": 7168.6700120000005, "avgShipping": 1.4285714285714286, "pctFreeShip": 0.4523809523809524}, {"YearMonth": "2019-03", "AOVBucket": "100-150", "count": 49, "revenue": 5756.370011, "avgShipping": 1.153061224489796, "pctFreeShip": 0.4897959183673469}, {"YearMonth": "2019-03", "AOVBucket": "150-200", "count": 8, "revenue": 1383.860003, "avgShipping": 2.125, "pctFreeShip": 0.25}, {"YearMonth": "2019-03", "AOVBucket": "200-500", "count": 6, "revenue": 1538.219978, "avgShipping": 1.9166666666666667, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2019-04", "AOVBucket": "<5", "count": 13, "revenue": 58.35, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-04", "AOVBucket": "5-10", "count": 382, "revenue": 3280.96, "avgShipping": 0.2696335078534031, "pctFreeShip": 0.887434554973822}, {"YearMonth": "2019-04", "AOVBucket": "10-15", "count": 630, "revenue": 7981.849999999999, "avgShipping": 0.9182539682539682, "pctFreeShip": 0.6238095238095238}, {"YearMonth": "2019-04", "AOVBucket": "15-20", "count": 489, "revenue": 8700.219955, "avgShipping": 0.878323108384458, "pctFreeShip": 0.6584867075664622}, {"YearMonth": "2019-04", "AOVBucket": "20-25", "count": 700, "revenue": 15830.719665999999, "avgShipping": 0.8178571428571428, "pctFreeShip": 0.6814285714285714}, {"YearMonth": "2019-04", "AOVBucket": "25-30", "count": 606, "revenue": 16638.499749, "avgShipping": 0.8638613861386139, "pctFreeShip": 0.6534653465346535}, {"YearMonth": "2019-04", "AOVBucket": "30-35", "count": 309, "revenue": 10031.209932, "avgShipping": 0.912621359223301, "pctFreeShip": 0.6310679611650486}, {"YearMonth": "2019-04", "AOVBucket": "35-40", "count": 183, "revenue": 6820.979925, "avgShipping": 0.9808743169398907, "pctFreeShip": 0.5792349726775956}, {"YearMonth": "2019-04", "AOVBucket": "40-50", "count": 428, "revenue": 18970.889768999998, "avgShipping": 0.9299065420560748, "pctFreeShip": 0.6098130841121495}, {"YearMonth": "2019-04", "AOVBucket": "50-60", "count": 181, "revenue": 9864.149970999999, "avgShipping": 0.9917127071823204, "pctFreeShip": 0.6022099447513812}, {"YearMonth": "2019-04", "AOVBucket": "60-75", "count": 103, "revenue": 6774.50997, "avgShipping": 1.3009708737864079, "pctFreeShip": 0.4368932038834951}, {"YearMonth": "2019-04", "AOVBucket": "75-100", "count": 74, "revenue": 6305.81999, "avgShipping": 1.2635135135135136, "pctFreeShip": 0.4594594594594595}, {"YearMonth": "2019-04", "AOVBucket": "100-150", "count": 46, "revenue": 5558.070036, "avgShipping": 1.3695652173913044, "pctFreeShip": 0.43478260869565216}, {"YearMonth": "2019-04", "AOVBucket": "150-200", "count": 3, "revenue": 494.18999599999995, "avgShipping": 1.3333333333333333, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2019-04", "AOVBucket": "200-500", "count": 5, "revenue": 1498.670008, "avgShipping": 1.7, "pctFreeShip": 0.2}, {"YearMonth": "2019-05", "AOVBucket": "<5", "count": 13, "revenue": 59.01, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-05", "AOVBucket": "5-10", "count": 512, "revenue": 4284.43, "avgShipping": 0.21484375, "pctFreeShip": 0.9140625}, {"YearMonth": "2019-05", "AOVBucket": "10-15", "count": 737, "revenue": 9335.81, "avgShipping": 0.7557666214382632, "pctFreeShip": 0.6906377204884667}, {"YearMonth": "2019-05", "AOVBucket": "15-20", "count": 651, "revenue": 11467.829947, "avgShipping": 0.7887864823348695, "pctFreeShip": 0.6728110599078341}, {"YearMonth": "2019-05", "AOVBucket": "20-25", "count": 621, "revenue": 13973.119809, "avgShipping": 0.8099838969404187, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2019-05", "AOVBucket": "25-30", "count": 547, "revenue": 14803.669729, "avgShipping": 0.9890310786106032, "pctFreeShip": 0.5904936014625228}, {"YearMonth": "2019-05", "AOVBucket": "30-35", "count": 263, "revenue": 8529.36994, "avgShipping": 0.8954372623574145, "pctFreeShip": 0.6311787072243346}, {"YearMonth": "2019-05", "AOVBucket": "35-40", "count": 252, "revenue": 9450.389917, "avgShipping": 1.0694444444444444, "pctFreeShip": 0.5674603174603174}, {"YearMonth": "2019-05", "AOVBucket": "40-50", "count": 299, "revenue": 13442.739808, "avgShipping": 0.9548494983277592, "pctFreeShip": 0.5986622073578596}, {"YearMonth": "2019-05", "AOVBucket": "50-60", "count": 191, "revenue": 10494.879997, "avgShipping": 0.9947643979057592, "pctFreeShip": 0.5916230366492147}, {"YearMonth": "2019-05", "AOVBucket": "60-75", "count": 140, "revenue": 9101.270017, "avgShipping": 1.2964285714285715, "pctFreeShip": 0.44285714285714284}, {"YearMonth": "2019-05", "AOVBucket": "75-100", "count": 88, "revenue": 7489.180002, "avgShipping": 1.1420454545454546, "pctFreeShip": 0.48863636363636365}, {"YearMonth": "2019-05", "AOVBucket": "100-150", "count": 59, "revenue": 6950.620038, "avgShipping": 1.61864406779661, "pctFreeShip": 0.3389830508474576}, {"YearMonth": "2019-05", "AOVBucket": "150-200", "count": 11, "revenue": 1920.699986, "avgShipping": 1.0, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2019-05", "AOVBucket": "200-500", "count": 5, "revenue": 1367.610022, "avgShipping": 2.3, "pctFreeShip": 0.4}, {"YearMonth": "2019-05", "AOVBucket": "500+", "count": 1, "revenue": 706.660025, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2019-06", "AOVBucket": "<5", "count": 15, "revenue": 70.66, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-06", "AOVBucket": "5-10", "count": 427, "revenue": 3623.47, "avgShipping": 0.22716627634660422, "pctFreeShip": 0.9086651053864169}, {"YearMonth": "2019-06", "AOVBucket": "10-15", "count": 695, "revenue": 8826.82, "avgShipping": 0.8079136690647482, "pctFreeShip": 0.6719424460431654}, {"YearMonth": "2019-06", "AOVBucket": "15-20", "count": 579, "revenue": 10313.829936999999, "avgShipping": 0.7564766839378239, "pctFreeShip": 0.689119170984456}, {"YearMonth": "2019-06", "AOVBucket": "20-25", "count": 489, "revenue": 10978.119846, "avgShipping": 0.8742331288343558, "pctFreeShip": 0.6380368098159509}, {"YearMonth": "2019-06", "AOVBucket": "25-30", "count": 569, "revenue": 15517.219674999998, "avgShipping": 0.867311072056239, "pctFreeShip": 0.655536028119508}, {"YearMonth": "2019-06", "AOVBucket": "30-35", "count": 270, "revenue": 8738.639958, "avgShipping": 0.8574074074074074, "pctFreeShip": 0.6370370370370371}, {"YearMonth": "2019-06", "AOVBucket": "35-40", "count": 243, "revenue": 9097.569927, "avgShipping": 0.8827160493827161, "pctFreeShip": 0.6255144032921811}, {"YearMonth": "2019-06", "AOVBucket": "40-50", "count": 309, "revenue": 13801.589883999999, "avgShipping": 1.161812297734628, "pctFreeShip": 0.5339805825242718}, {"YearMonth": "2019-06", "AOVBucket": "50-60", "count": 218, "revenue": 11788.599807999999, "avgShipping": 0.9059633027522935, "pctFreeShip": 0.6146788990825688}, {"YearMonth": "2019-06", "AOVBucket": "60-75", "count": 204, "revenue": 13605.809951, "avgShipping": 1.1544117647058822, "pctFreeShip": 0.5343137254901961}, {"YearMonth": "2019-06", "AOVBucket": "75-100", "count": 77, "revenue": 6547.270001, "avgShipping": 1.2337662337662338, "pctFreeShip": 0.4675324675324675}, {"YearMonth": "2019-06", "AOVBucket": "100-150", "count": 54, "revenue": 6562.619994, "avgShipping": 1.4166666666666667, "pctFreeShip": 0.4074074074074074}, {"YearMonth": "2019-06", "AOVBucket": "150-200", "count": 12, "revenue": 2112.880005, "avgShipping": 0.7083333333333334, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2019-06", "AOVBucket": "200-500", "count": 15, "revenue": 3788.929999, "avgShipping": 1.3666666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2019-07", "AOVBucket": "<5", "count": 8, "revenue": 36.6, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-07", "AOVBucket": "5-10", "count": 312, "revenue": 2664.0, "avgShipping": 0.21634615384615385, "pctFreeShip": 0.9102564102564102}, {"YearMonth": "2019-07", "AOVBucket": "10-15", "count": 574, "revenue": 7276.2, "avgShipping": 0.8048780487804879, "pctFreeShip": 0.6672473867595818}, {"YearMonth": "2019-07", "AOVBucket": "15-20", "count": 598, "revenue": 10826.699964, "avgShipping": 0.7040133779264214, "pctFreeShip": 0.7190635451505016}, {"YearMonth": "2019-07", "AOVBucket": "20-25", "count": 716, "revenue": 16051.189944999998, "avgShipping": 0.9168994413407822, "pctFreeShip": 0.6187150837988827}, {"YearMonth": "2019-07", "AOVBucket": "25-30", "count": 780, "revenue": 21515.149804, "avgShipping": 0.7205128205128205, "pctFreeShip": 0.708974358974359}, {"YearMonth": "2019-07", "AOVBucket": "30-35", "count": 453, "revenue": 14789.200010999999, "avgShipping": 1.030905077262693, "pctFreeShip": 0.58719646799117}, {"YearMonth": "2019-07", "AOVBucket": "35-40", "count": 412, "revenue": 15461.639879999999, "avgShipping": 0.7730582524271845, "pctFreeShip": 0.6868932038834952}, {"YearMonth": "2019-07", "AOVBucket": "40-50", "count": 473, "revenue": 21144.859688, "avgShipping": 0.9746300211416491, "pctFreeShip": 0.6046511627906976}, {"YearMonth": "2019-07", "AOVBucket": "50-60", "count": 455, "revenue": 24293.57934, "avgShipping": 0.7263736263736263, "pctFreeShip": 0.6901098901098901}, {"YearMonth": "2019-07", "AOVBucket": "60-75", "count": 212, "revenue": 13906.529843999999, "avgShipping": 1.0188679245283019, "pctFreeShip": 0.5754716981132075}, {"YearMonth": "2019-07", "AOVBucket": "75-100", "count": 107, "revenue": 9077.339991, "avgShipping": 1.0093457943925233, "pctFreeShip": 0.5607476635514018}, {"YearMonth": "2019-07", "AOVBucket": "100-150", "count": 99, "revenue": 12008.079946, "avgShipping": 1.0757575757575757, "pctFreeShip": 0.5757575757575758}, {"YearMonth": "2019-07", "AOVBucket": "150-200", "count": 14, "revenue": 2410.450006, "avgShipping": 1.1428571428571428, "pctFreeShip": 0.5}, {"YearMonth": "2019-07", "AOVBucket": "200-500", "count": 11, "revenue": 3201.809992, "avgShipping": 2.090909090909091, "pctFreeShip": 0.2727272727272727}, {"YearMonth": "2019-08", "AOVBucket": "<5", "count": 8, "revenue": 37.620000000000005, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-08", "AOVBucket": "5-10", "count": 381, "revenue": 3183.21, "avgShipping": 0.1942257217847769, "pctFreeShip": 0.9186351706036745}, {"YearMonth": "2019-08", "AOVBucket": "10-15", "count": 504, "revenue": 6337.96, "avgShipping": 0.9087301587301587, "pctFreeShip": 0.6329365079365079}, {"YearMonth": "2019-08", "AOVBucket": "15-20", "count": 496, "revenue": 8807.69994, "avgShipping": 0.8356854838709677, "pctFreeShip": 0.6633064516129032}, {"YearMonth": "2019-08", "AOVBucket": "20-25", "count": 469, "revenue": 10498.469817, "avgShipping": 0.8635394456289979, "pctFreeShip": 0.6460554371002132}, {"YearMonth": "2019-08", "AOVBucket": "25-30", "count": 412, "revenue": 11244.909796, "avgShipping": 0.9781553398058253, "pctFreeShip": 0.6092233009708737}, {"YearMonth": "2019-08", "AOVBucket": "30-35", "count": 181, "revenue": 5852.149975, "avgShipping": 0.8784530386740331, "pctFreeShip": 0.6298342541436464}, {"YearMonth": "2019-08", "AOVBucket": "35-40", "count": 128, "revenue": 4791.749992, "avgShipping": 0.87109375, "pctFreeShip": 0.640625}, {"YearMonth": "2019-08", "AOVBucket": "40-50", "count": 190, "revenue": 8493.689912, "avgShipping": 1.1842105263157894, "pctFreeShip": 0.49473684210526314}, {"YearMonth": "2019-08", "AOVBucket": "50-60", "count": 127, "revenue": 6871.419937, "avgShipping": 1.015748031496063, "pctFreeShip": 0.5826771653543307}, {"YearMonth": "2019-08", "AOVBucket": "60-75", "count": 100, "revenue": 6685.739992, "avgShipping": 1.095, "pctFreeShip": 0.58}, {"YearMonth": "2019-08", "AOVBucket": "75-100", "count": 52, "revenue": 4410.809983, "avgShipping": 1.3173076923076923, "pctFreeShip": 0.4807692307692308}, {"YearMonth": "2019-08", "AOVBucket": "100-150", "count": 52, "revenue": 6071.509997, "avgShipping": 1.5384615384615385, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2019-08", "AOVBucket": "150-200", "count": 10, "revenue": 1703.790003, "avgShipping": 1.15, "pctFreeShip": 0.5}, {"YearMonth": "2019-08", "AOVBucket": "200-500", "count": 5, "revenue": 1260.050004, "avgShipping": 1.6, "pctFreeShip": 0.2}, {"YearMonth": "2019-09", "AOVBucket": "<5", "count": 21, "revenue": 95.41000000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-09", "AOVBucket": "5-10", "count": 489, "revenue": 4001.37, "avgShipping": 0.2249488752556237, "pctFreeShip": 0.9100204498977505}, {"YearMonth": "2019-09", "AOVBucket": "10-15", "count": 663, "revenue": 8248.94, "avgShipping": 0.9788838612368024, "pctFreeShip": 0.6048265460030166}, {"YearMonth": "2019-09", "AOVBucket": "15-20", "count": 724, "revenue": 12670.200006000001, "avgShipping": 0.7575966850828729, "pctFreeShip": 0.6892265193370166}, {"YearMonth": "2019-09", "AOVBucket": "20-25", "count": 707, "revenue": 16015.940222, "avgShipping": 0.7644978783592645, "pctFreeShip": 0.6874115983026874}, {"YearMonth": "2019-09", "AOVBucket": "25-30", "count": 378, "revenue": 10320.550049, "avgShipping": 1.0211640211640212, "pctFreeShip": 0.5873015873015873}, {"YearMonth": "2019-09", "AOVBucket": "30-35", "count": 274, "revenue": 8875.389969, "avgShipping": 0.8302919708029197, "pctFreeShip": 0.656934306569343}, {"YearMonth": "2019-09", "AOVBucket": "35-40", "count": 209, "revenue": 7789.809977, "avgShipping": 1.0454545454545454, "pctFreeShip": 0.5741626794258373}, {"YearMonth": "2019-09", "AOVBucket": "40-50", "count": 290, "revenue": 12932.060056, "avgShipping": 1.1310344827586207, "pctFreeShip": 0.5379310344827586}, {"YearMonth": "2019-09", "AOVBucket": "50-60", "count": 186, "revenue": 10143.500018, "avgShipping": 1.1505376344086022, "pctFreeShip": 0.543010752688172}, {"YearMonth": "2019-09", "AOVBucket": "60-75", "count": 149, "revenue": 9864.569975, "avgShipping": 1.1543624161073827, "pctFreeShip": 0.5033557046979866}, {"YearMonth": "2019-09", "AOVBucket": "75-100", "count": 84, "revenue": 7059.610004, "avgShipping": 1.0773809523809523, "pctFreeShip": 0.5238095238095238}, {"YearMonth": "2019-09", "AOVBucket": "100-150", "count": 59, "revenue": 6998.359968, "avgShipping": 1.228813559322034, "pctFreeShip": 0.4745762711864407}, {"YearMonth": "2019-09", "AOVBucket": "150-200", "count": 18, "revenue": 3028.510017, "avgShipping": 1.8611111111111112, "pctFreeShip": 0.2777777777777778}, {"YearMonth": "2019-09", "AOVBucket": "200-500", "count": 8, "revenue": 1890.860025, "avgShipping": 1.4375, "pctFreeShip": 0.375}, {"YearMonth": "2019-09", "AOVBucket": "500+", "count": 2, "revenue": 1568.949981, "avgShipping": 1.0, "pctFreeShip": 0.5}, {"YearMonth": "2019-10", "AOVBucket": "<5", "count": 15, "revenue": 69.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-10", "AOVBucket": "5-10", "count": 339, "revenue": 2872.69, "avgShipping": 0.2581120943952802, "pctFreeShip": 0.8938053097345132}, {"YearMonth": "2019-10", "AOVBucket": "10-15", "count": 569, "revenue": 7176.98, "avgShipping": 0.8541300527240774, "pctFreeShip": 0.648506151142355}, {"YearMonth": "2019-10", "AOVBucket": "15-20", "count": 621, "revenue": 11151.849965, "avgShipping": 0.7463768115942029, "pctFreeShip": 0.6988727858293076}, {"YearMonth": "2019-10", "AOVBucket": "20-25", "count": 590, "revenue": 13318.87992, "avgShipping": 0.8915254237288136, "pctFreeShip": 0.6372881355932203}, {"YearMonth": "2019-10", "AOVBucket": "25-30", "count": 517, "revenue": 14202.579896, "avgShipping": 0.8704061895551257, "pctFreeShip": 0.6382978723404256}, {"YearMonth": "2019-10", "AOVBucket": "30-35", "count": 351, "revenue": 11386.999993, "avgShipping": 0.9643874643874644, "pctFreeShip": 0.5954415954415955}, {"YearMonth": "2019-10", "AOVBucket": "35-40", "count": 267, "revenue": 10014.309916, "avgShipping": 0.7228464419475655, "pctFreeShip": 0.6853932584269663}, {"YearMonth": "2019-10", "AOVBucket": "40-50", "count": 376, "revenue": 16847.499793, "avgShipping": 0.9893617021276596, "pctFreeShip": 0.5877659574468085}, {"YearMonth": "2019-10", "AOVBucket": "50-60", "count": 270, "revenue": 14496.129653999998, "avgShipping": 0.75, "pctFreeShip": 0.6814814814814815}, {"YearMonth": "2019-10", "AOVBucket": "60-75", "count": 146, "revenue": 9640.749942, "avgShipping": 1.0993150684931507, "pctFreeShip": 0.547945205479452}, {"YearMonth": "2019-10", "AOVBucket": "75-100", "count": 106, "revenue": 9083.689997, "avgShipping": 1.278301886792453, "pctFreeShip": 0.4528301886792453}, {"YearMonth": "2019-10", "AOVBucket": "100-150", "count": 55, "revenue": 6532.139988, "avgShipping": 1.2181818181818183, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2019-10", "AOVBucket": "150-200", "count": 13, "revenue": 2172.469999, "avgShipping": 1.4615384615384615, "pctFreeShip": 0.3076923076923077}, {"YearMonth": "2019-10", "AOVBucket": "200-500", "count": 11, "revenue": 2864.350015, "avgShipping": 0.7727272727272727, "pctFreeShip": 0.6363636363636364}, {"YearMonth": "2019-11", "AOVBucket": "<5", "count": 11, "revenue": 50.120000000000005, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-11", "AOVBucket": "5-10", "count": 446, "revenue": 3721.14, "avgShipping": 0.21973094170403587, "pctFreeShip": 0.9080717488789237}, {"YearMonth": "2019-11", "AOVBucket": "10-15", "count": 604, "revenue": 7573.0199999999995, "avgShipping": 0.8799668874172185, "pctFreeShip": 0.6374172185430463}, {"YearMonth": "2019-11", "AOVBucket": "15-20", "count": 630, "revenue": 11031.119897999999, "avgShipping": 0.734920634920635, "pctFreeShip": 0.7031746031746032}, {"YearMonth": "2019-11", "AOVBucket": "20-25", "count": 579, "revenue": 13003.419768, "avgShipping": 0.8937823834196891, "pctFreeShip": 0.6459412780656304}, {"YearMonth": "2019-11", "AOVBucket": "25-30", "count": 456, "revenue": 12416.949816999999, "avgShipping": 0.918859649122807, "pctFreeShip": 0.6140350877192983}, {"YearMonth": "2019-11", "AOVBucket": "30-35", "count": 277, "revenue": 8961.319943, "avgShipping": 0.8285198555956679, "pctFreeShip": 0.6570397111913358}, {"YearMonth": "2019-11", "AOVBucket": "35-40", "count": 235, "revenue": 8787.089942999999, "avgShipping": 0.8680851063829788, "pctFreeShip": 0.6340425531914894}, {"YearMonth": "2019-11", "AOVBucket": "40-50", "count": 280, "revenue": 12562.949854, "avgShipping": 0.9625, "pctFreeShip": 0.5964285714285714}, {"YearMonth": "2019-11", "AOVBucket": "50-60", "count": 174, "revenue": 9499.93992, "avgShipping": 0.985632183908046, "pctFreeShip": 0.5747126436781609}, {"YearMonth": "2019-11", "AOVBucket": "60-75", "count": 124, "revenue": 8209.569964, "avgShipping": 1.0362903225806452, "pctFreeShip": 0.5483870967741935}, {"YearMonth": "2019-11", "AOVBucket": "75-100", "count": 88, "revenue": 7626.609968, "avgShipping": 1.2613636363636365, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2019-11", "AOVBucket": "100-150", "count": 52, "revenue": 6471.889977, "avgShipping": 1.3557692307692308, "pctFreeShip": 0.4807692307692308}, {"YearMonth": "2019-11", "AOVBucket": "150-200", "count": 16, "revenue": 2666.429995, "avgShipping": 1.34375, "pctFreeShip": 0.375}, {"YearMonth": "2019-11", "AOVBucket": "200-500", "count": 8, "revenue": 2006.000013, "avgShipping": 0.875, "pctFreeShip": 0.625}, {"YearMonth": "2019-12", "AOVBucket": "<5", "count": 14, "revenue": 64.12, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2019-12", "AOVBucket": "5-10", "count": 388, "revenue": 3249.37, "avgShipping": 0.14175257731958762, "pctFreeShip": 0.9407216494845361}, {"YearMonth": "2019-12", "AOVBucket": "10-15", "count": 539, "revenue": 6820.349999, "avgShipping": 0.6929499072356216, "pctFreeShip": 0.7179962894248608}, {"YearMonth": "2019-12", "AOVBucket": "15-20", "count": 550, "revenue": 9715.239935, "avgShipping": 0.5645454545454546, "pctFreeShip": 0.769090909090909}, {"YearMonth": "2019-12", "AOVBucket": "20-25", "count": 492, "revenue": 11022.039845, "avgShipping": 0.6910569105691057, "pctFreeShip": 0.7134146341463414}, {"YearMonth": "2019-12", "AOVBucket": "25-30", "count": 375, "revenue": 10264.139866, "avgShipping": 0.556, "pctFreeShip": 0.7706666666666667}, {"YearMonth": "2019-12", "AOVBucket": "30-35", "count": 245, "revenue": 7949.469967, "avgShipping": 0.5938775510204082, "pctFreeShip": 0.7387755102040816}, {"YearMonth": "2019-12", "AOVBucket": "35-40", "count": 216, "revenue": 8111.1899539999995, "avgShipping": 0.5972222222222222, "pctFreeShip": 0.75}, {"YearMonth": "2019-12", "AOVBucket": "40-50", "count": 229, "revenue": 10125.719852, "avgShipping": 0.777292576419214, "pctFreeShip": 0.6681222707423581}, {"YearMonth": "2019-12", "AOVBucket": "50-60", "count": 199, "revenue": 10757.789832, "avgShipping": 0.5979899497487438, "pctFreeShip": 0.7487437185929648}, {"YearMonth": "2019-12", "AOVBucket": "60-75", "count": 141, "revenue": 9362.319934, "avgShipping": 0.7836879432624113, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2019-12", "AOVBucket": "75-100", "count": 81, "revenue": 6930.879955, "avgShipping": 0.9259259259259259, "pctFreeShip": 0.5802469135802469}, {"YearMonth": "2019-12", "AOVBucket": "100-150", "count": 43, "revenue": 5218.079986, "avgShipping": 1.2093023255813953, "pctFreeShip": 0.46511627906976744}, {"YearMonth": "2019-12", "AOVBucket": "150-200", "count": 14, "revenue": 2379.389973, "avgShipping": 1.4642857142857142, "pctFreeShip": 0.35714285714285715}, {"YearMonth": "2019-12", "AOVBucket": "200-500", "count": 6, "revenue": 2080.1400009999998, "avgShipping": 1.4166666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2020-01", "AOVBucket": "<5", "count": 41, "revenue": 189.88, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-01", "AOVBucket": "5-10", "count": 495, "revenue": 4048.3399999999997, "avgShipping": 0.23232323232323232, "pctFreeShip": 0.9050505050505051}, {"YearMonth": "2020-01", "AOVBucket": "10-15", "count": 724, "revenue": 9181.85, "avgShipping": 0.7776243093922652, "pctFreeShip": 0.680939226519337}, {"YearMonth": "2020-01", "AOVBucket": "15-20", "count": 815, "revenue": 14579.909918, "avgShipping": 0.6858895705521473, "pctFreeShip": 0.7190184049079754}, {"YearMonth": "2020-01", "AOVBucket": "20-25", "count": 889, "revenue": 19894.699787999998, "avgShipping": 0.8076490438695163, "pctFreeShip": 0.6659167604049494}, {"YearMonth": "2020-01", "AOVBucket": "25-30", "count": 705, "revenue": 19571.629936999998, "avgShipping": 0.6517730496453901, "pctFreeShip": 0.7262411347517731}, {"YearMonth": "2020-01", "AOVBucket": "30-35", "count": 441, "revenue": 14300.75998, "avgShipping": 0.9682539682539683, "pctFreeShip": 0.6009070294784581}, {"YearMonth": "2020-01", "AOVBucket": "35-40", "count": 376, "revenue": 14054.81987, "avgShipping": 0.7220744680851063, "pctFreeShip": 0.6888297872340425}, {"YearMonth": "2020-01", "AOVBucket": "40-50", "count": 467, "revenue": 20737.57967, "avgShipping": 0.8233404710920771, "pctFreeShip": 0.6402569593147751}, {"YearMonth": "2020-01", "AOVBucket": "50-60", "count": 326, "revenue": 17532.859587, "avgShipping": 0.843558282208589, "pctFreeShip": 0.6503067484662577}, {"YearMonth": "2020-01", "AOVBucket": "60-75", "count": 221, "revenue": 14498.949874, "avgShipping": 1.0497737556561086, "pctFreeShip": 0.5520361990950227}, {"YearMonth": "2020-01", "AOVBucket": "75-100", "count": 109, "revenue": 9253.230052, "avgShipping": 1.1559633027522935, "pctFreeShip": 0.48623853211009177}, {"YearMonth": "2020-01", "AOVBucket": "100-150", "count": 82, "revenue": 9602.339942, "avgShipping": 1.274390243902439, "pctFreeShip": 0.4634146341463415}, {"YearMonth": "2020-01", "AOVBucket": "150-200", "count": 8, "revenue": 1337.739989, "avgShipping": 1.375, "pctFreeShip": 0.375}, {"YearMonth": "2020-01", "AOVBucket": "200-500", "count": 14, "revenue": 3771.7200009999997, "avgShipping": 1.3928571428571428, "pctFreeShip": 0.35714285714285715}, {"YearMonth": "2020-02", "AOVBucket": "<5", "count": 10, "revenue": 47.5, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-02", "AOVBucket": "5-10", "count": 288, "revenue": 2430.81, "avgShipping": 0.2361111111111111, "pctFreeShip": 0.9027777777777778}, {"YearMonth": "2020-02", "AOVBucket": "10-15", "count": 492, "revenue": 6165.95, "avgShipping": 0.8363821138211383, "pctFreeShip": 0.6686991869918699}, {"YearMonth": "2020-02", "AOVBucket": "15-20", "count": 398, "revenue": 7127.729934999999, "avgShipping": 0.8831658291457286, "pctFreeShip": 0.6582914572864321}, {"YearMonth": "2020-02", "AOVBucket": "20-25", "count": 325, "revenue": 7251.389923, "avgShipping": 0.94, "pctFreeShip": 0.6030769230769231}, {"YearMonth": "2020-02", "AOVBucket": "25-30", "count": 355, "revenue": 9645.539797, "avgShipping": 0.9661971830985916, "pctFreeShip": 0.6056338028169014}, {"YearMonth": "2020-02", "AOVBucket": "30-35", "count": 125, "revenue": 4046.919967, "avgShipping": 1.152, "pctFreeShip": 0.536}, {"YearMonth": "2020-02", "AOVBucket": "35-40", "count": 135, "revenue": 5050.489974, "avgShipping": 1.0518518518518518, "pctFreeShip": 0.5925925925925926}, {"YearMonth": "2020-02", "AOVBucket": "40-50", "count": 141, "revenue": 6322.619924, "avgShipping": 1.2730496453900708, "pctFreeShip": 0.5035460992907801}, {"YearMonth": "2020-02", "AOVBucket": "50-60", "count": 114, "revenue": 6141.919927, "avgShipping": 1.355263157894737, "pctFreeShip": 0.47368421052631576}, {"YearMonth": "2020-02", "AOVBucket": "60-75", "count": 64, "revenue": 4236.94997, "avgShipping": 1.1015625, "pctFreeShip": 0.515625}, {"YearMonth": "2020-02", "AOVBucket": "75-100", "count": 35, "revenue": 3018.349992, "avgShipping": 1.2571428571428571, "pctFreeShip": 0.4857142857142857}, {"YearMonth": "2020-02", "AOVBucket": "100-150", "count": 26, "revenue": 3142.35997, "avgShipping": 1.5384615384615385, "pctFreeShip": 0.3076923076923077}, {"YearMonth": "2020-02", "AOVBucket": "150-200", "count": 6, "revenue": 1017.250008, "avgShipping": 2.3333333333333335, "pctFreeShip": 0.0}, {"YearMonth": "2020-02", "AOVBucket": "200-500", "count": 6, "revenue": 1501.819993, "avgShipping": 1.75, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2020-03", "AOVBucket": "<5", "count": 27, "revenue": 126.65, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-03", "AOVBucket": "5-10", "count": 694, "revenue": 5797.58, "avgShipping": 0.3760806916426513, "pctFreeShip": 0.8487031700288185}, {"YearMonth": "2020-03", "AOVBucket": "10-15", "count": 922, "revenue": 11627.09, "avgShipping": 0.9929501084598699, "pctFreeShip": 0.6008676789587852}, {"YearMonth": "2020-03", "AOVBucket": "15-20", "count": 744, "revenue": 13299.869950999999, "avgShipping": 0.9247311827956989, "pctFreeShip": 0.6411290322580645}, {"YearMonth": "2020-03", "AOVBucket": "20-25", "count": 618, "revenue": 13803.219892, "avgShipping": 1.2402912621359223, "pctFreeShip": 0.5080906148867314}, {"YearMonth": "2020-03", "AOVBucket": "25-30", "count": 644, "revenue": 17585.169703, "avgShipping": 0.889751552795031, "pctFreeShip": 0.6413043478260869}, {"YearMonth": "2020-03", "AOVBucket": "30-35", "count": 314, "revenue": 10203.909975, "avgShipping": 1.1114649681528663, "pctFreeShip": 0.5509554140127388}, {"YearMonth": "2020-03", "AOVBucket": "35-40", "count": 252, "revenue": 9445.959955999999, "avgShipping": 0.9325396825396826, "pctFreeShip": 0.6190476190476191}, {"YearMonth": "2020-03", "AOVBucket": "40-50", "count": 358, "revenue": 15884.489936, "avgShipping": 1.2053072625698324, "pctFreeShip": 0.5195530726256983}, {"YearMonth": "2020-03", "AOVBucket": "50-60", "count": 225, "revenue": 12163.729889, "avgShipping": 1.1711111111111112, "pctFreeShip": 0.5377777777777778}, {"YearMonth": "2020-03", "AOVBucket": "60-75", "count": 178, "revenue": 11958.359951, "avgShipping": 1.2780898876404494, "pctFreeShip": 0.4606741573033708}, {"YearMonth": "2020-03", "AOVBucket": "75-100", "count": 126, "revenue": 10773.749976, "avgShipping": 1.2182539682539681, "pctFreeShip": 0.5079365079365079}, {"YearMonth": "2020-03", "AOVBucket": "100-150", "count": 64, "revenue": 7449.249968, "avgShipping": 1.578125, "pctFreeShip": 0.34375}, {"YearMonth": "2020-03", "AOVBucket": "150-200", "count": 20, "revenue": 3369.440009, "avgShipping": 1.775, "pctFreeShip": 0.35}, {"YearMonth": "2020-03", "AOVBucket": "200-500", "count": 6, "revenue": 1776.179975, "avgShipping": 0.75, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2020-04", "AOVBucket": "<5", "count": 88, "revenue": 381.6, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-04", "AOVBucket": "5-10", "count": 1483, "revenue": 11497.22, "avgShipping": 0.7363452461227242, "pctFreeShip": 0.698583951449764}, {"YearMonth": "2020-04", "AOVBucket": "10-15", "count": 1455, "revenue": 18416.3, "avgShipping": 1.1673539518900344, "pctFreeShip": 0.5374570446735395}, {"YearMonth": "2020-04", "AOVBucket": "15-20", "count": 874, "revenue": 15381.879973, "avgShipping": 1.2276887871853548, "pctFreeShip": 0.5274599542334096}, {"YearMonth": "2020-04", "AOVBucket": "20-25", "count": 802, "revenue": 17838.179932, "avgShipping": 1.4339152119700749, "pctFreeShip": 0.4239401496259352}, {"YearMonth": "2020-04", "AOVBucket": "25-30", "count": 740, "revenue": 20222.57962, "avgShipping": 1.1054054054054054, "pctFreeShip": 0.5689189189189189}, {"YearMonth": "2020-04", "AOVBucket": "30-35", "count": 341, "revenue": 11113.569951, "avgShipping": 1.2434017595307918, "pctFreeShip": 0.501466275659824}, {"YearMonth": "2020-04", "AOVBucket": "35-40", "count": 264, "revenue": 9891.479936, "avgShipping": 1.0757575757575757, "pctFreeShip": 0.5871212121212122}, {"YearMonth": "2020-04", "AOVBucket": "40-50", "count": 321, "revenue": 14311.579917, "avgShipping": 1.3644859813084111, "pctFreeShip": 0.4797507788161994}, {"YearMonth": "2020-04", "AOVBucket": "50-60", "count": 202, "revenue": 11090.389885, "avgShipping": 1.1732673267326732, "pctFreeShip": 0.504950495049505}, {"YearMonth": "2020-04", "AOVBucket": "60-75", "count": 164, "revenue": 10806.969955, "avgShipping": 1.3567073170731707, "pctFreeShip": 0.43902439024390244}, {"YearMonth": "2020-04", "AOVBucket": "75-100", "count": 76, "revenue": 6400.689993, "avgShipping": 1.4605263157894737, "pctFreeShip": 0.3684210526315789}, {"YearMonth": "2020-04", "AOVBucket": "100-150", "count": 52, "revenue": 6100.170017, "avgShipping": 1.5576923076923077, "pctFreeShip": 0.46153846153846156}, {"YearMonth": "2020-04", "AOVBucket": "150-200", "count": 10, "revenue": 1727.580023, "avgShipping": 1.7, "pctFreeShip": 0.3}, {"YearMonth": "2020-04", "AOVBucket": "200-500", "count": 3, "revenue": 928.8700060000001, "avgShipping": 0.6666666666666666, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2020-05", "AOVBucket": "<5", "count": 120, "revenue": 507.89000000000004, "avgShipping": 0.1875, "pctFreeShip": 0.925}, {"YearMonth": "2020-05", "AOVBucket": "5-10", "count": 1228, "revenue": 9545.71, "avgShipping": 0.5846905537459284, "pctFreeShip": 0.7638436482084691}, {"YearMonth": "2020-05", "AOVBucket": "10-15", "count": 1170, "revenue": 14745.28, "avgShipping": 1.1384615384615384, "pctFreeShip": 0.5444444444444444}, {"YearMonth": "2020-05", "AOVBucket": "15-20", "count": 904, "revenue": 15884.77997, "avgShipping": 1.0990044247787611, "pctFreeShip": 0.5763274336283186}, {"YearMonth": "2020-05", "AOVBucket": "20-25", "count": 750, "revenue": 16723.749939999998, "avgShipping": 1.412, "pctFreeShip": 0.44133333333333336}, {"YearMonth": "2020-05", "AOVBucket": "25-30", "count": 691, "revenue": 18816.319675, "avgShipping": 1.0759768451519538, "pctFreeShip": 0.5643994211287988}, {"YearMonth": "2020-05", "AOVBucket": "30-35", "count": 325, "revenue": 10573.659955, "avgShipping": 1.2215384615384615, "pctFreeShip": 0.5015384615384615}, {"YearMonth": "2020-05", "AOVBucket": "35-40", "count": 258, "revenue": 9639.559969, "avgShipping": 1.0930232558139534, "pctFreeShip": 0.5736434108527132}, {"YearMonth": "2020-05", "AOVBucket": "40-50", "count": 295, "revenue": 13135.249888999999, "avgShipping": 1.2525423728813558, "pctFreeShip": 0.5050847457627119}, {"YearMonth": "2020-05", "AOVBucket": "50-60", "count": 203, "revenue": 11017.939864, "avgShipping": 1.2635467980295567, "pctFreeShip": 0.46798029556650245}, {"YearMonth": "2020-05", "AOVBucket": "60-75", "count": 142, "revenue": 9417.53997, "avgShipping": 1.278169014084507, "pctFreeShip": 0.47183098591549294}, {"YearMonth": "2020-05", "AOVBucket": "75-100", "count": 99, "revenue": 8535.469947, "avgShipping": 1.404040404040404, "pctFreeShip": 0.43434343434343436}, {"YearMonth": "2020-05", "AOVBucket": "100-150", "count": 39, "revenue": 4598.80002, "avgShipping": 1.2435897435897436, "pctFreeShip": 0.4358974358974359}, {"YearMonth": "2020-05", "AOVBucket": "150-200", "count": 7, "revenue": 1209.519976, "avgShipping": 0.9285714285714286, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2020-05", "AOVBucket": "200-500", "count": 5, "revenue": 1226.309986, "avgShipping": 1.8, "pctFreeShip": 0.2}, {"YearMonth": "2020-06", "AOVBucket": "<5", "count": 51, "revenue": 237.26000000000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-06", "AOVBucket": "5-10", "count": 863, "revenue": 7001.63, "avgShipping": 0.4762456546929316, "pctFreeShip": 0.8076477404403245}, {"YearMonth": "2020-06", "AOVBucket": "10-15", "count": 1145, "revenue": 14389.540001, "avgShipping": 1.1519650655021834, "pctFreeShip": 0.5318777292576419}, {"YearMonth": "2020-06", "AOVBucket": "15-20", "count": 975, "revenue": 17152.199972, "avgShipping": 0.9158974358974359, "pctFreeShip": 0.6451282051282051}, {"YearMonth": "2020-06", "AOVBucket": "20-25", "count": 796, "revenue": 17855.179876, "avgShipping": 1.0665829145728642, "pctFreeShip": 0.5653266331658291}, {"YearMonth": "2020-06", "AOVBucket": "25-30", "count": 635, "revenue": 17302.439743, "avgShipping": 0.988976377952756, "pctFreeShip": 0.6031496062992125}, {"YearMonth": "2020-06", "AOVBucket": "30-35", "count": 357, "revenue": 11586.979937, "avgShipping": 1.1022408963585435, "pctFreeShip": 0.5602240896358543}, {"YearMonth": "2020-06", "AOVBucket": "35-40", "count": 250, "revenue": 9361.049943, "avgShipping": 1.016, "pctFreeShip": 0.588}, {"YearMonth": "2020-06", "AOVBucket": "40-50", "count": 359, "revenue": 16022.019868, "avgShipping": 1.0863509749303621, "pctFreeShip": 0.5515320334261838}, {"YearMonth": "2020-06", "AOVBucket": "50-60", "count": 231, "revenue": 12550.959901, "avgShipping": 1.183982683982684, "pctFreeShip": 0.5281385281385281}, {"YearMonth": "2020-06", "AOVBucket": "60-75", "count": 156, "revenue": 10368.459952, "avgShipping": 1.3461538461538463, "pctFreeShip": 0.4551282051282051}, {"YearMonth": "2020-06", "AOVBucket": "75-100", "count": 97, "revenue": 8171.090022, "avgShipping": 1.3350515463917525, "pctFreeShip": 0.4742268041237113}, {"YearMonth": "2020-06", "AOVBucket": "100-150", "count": 50, "revenue": 5873.540005, "avgShipping": 1.25, "pctFreeShip": 0.44}, {"YearMonth": "2020-06", "AOVBucket": "150-200", "count": 11, "revenue": 1892.2999790000001, "avgShipping": 1.4545454545454546, "pctFreeShip": 0.36363636363636365}, {"YearMonth": "2020-06", "AOVBucket": "200-500", "count": 7, "revenue": 1621.669974, "avgShipping": 1.3571428571428572, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2020-07", "AOVBucket": "<5", "count": 23, "revenue": 108.9, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-07", "AOVBucket": "5-10", "count": 666, "revenue": 5501.84, "avgShipping": 0.43993993993993996, "pctFreeShip": 0.8213213213213213}, {"YearMonth": "2020-07", "AOVBucket": "10-15", "count": 1065, "revenue": 13117.38, "avgShipping": 1.0901408450704226, "pctFreeShip": 0.5586854460093896}, {"YearMonth": "2020-07", "AOVBucket": "15-20", "count": 704, "revenue": 12466.869958, "avgShipping": 1.0916193181818181, "pctFreeShip": 0.5795454545454546}, {"YearMonth": "2020-07", "AOVBucket": "20-25", "count": 877, "revenue": 19845.129786999998, "avgShipping": 0.9207525655644242, "pctFreeShip": 0.6248574686431014}, {"YearMonth": "2020-07", "AOVBucket": "25-30", "count": 840, "revenue": 22912.309681, "avgShipping": 1.0523809523809524, "pctFreeShip": 0.5726190476190476}, {"YearMonth": "2020-07", "AOVBucket": "30-35", "count": 401, "revenue": 12998.229959999999, "avgShipping": 1.0623441396508728, "pctFreeShip": 0.5935162094763092}, {"YearMonth": "2020-07", "AOVBucket": "35-40", "count": 310, "revenue": 11603.999909, "avgShipping": 1.096774193548387, "pctFreeShip": 0.5483870967741935}, {"YearMonth": "2020-07", "AOVBucket": "40-50", "count": 330, "revenue": 14708.96984, "avgShipping": 1.121212121212121, "pctFreeShip": 0.5424242424242425}, {"YearMonth": "2020-07", "AOVBucket": "50-60", "count": 211, "revenue": 11459.329909, "avgShipping": 1.3791469194312795, "pctFreeShip": 0.44549763033175355}, {"YearMonth": "2020-07", "AOVBucket": "60-75", "count": 157, "revenue": 10495.689956, "avgShipping": 1.015923566878981, "pctFreeShip": 0.5796178343949044}, {"YearMonth": "2020-07", "AOVBucket": "75-100", "count": 84, "revenue": 7187.689979, "avgShipping": 1.1904761904761905, "pctFreeShip": 0.47619047619047616}, {"YearMonth": "2020-07", "AOVBucket": "100-150", "count": 58, "revenue": 6844.159994, "avgShipping": 1.2844827586206897, "pctFreeShip": 0.41379310344827586}, {"YearMonth": "2020-07", "AOVBucket": "150-200", "count": 15, "revenue": 2608.86999, "avgShipping": 1.8666666666666667, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2020-07", "AOVBucket": "200-500", "count": 6, "revenue": 1576.070024, "avgShipping": 2.5833333333333335, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2020-08", "AOVBucket": "<5", "count": 19, "revenue": 93.67, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-08", "AOVBucket": "5-10", "count": 641, "revenue": 5293.469999999999, "avgShipping": 0.41341653666146644, "pctFreeShip": 0.8330733229329174}, {"YearMonth": "2020-08", "AOVBucket": "10-15", "count": 1069, "revenue": 13128.91, "avgShipping": 1.0645463049579045, "pctFreeShip": 0.5668849391955099}, {"YearMonth": "2020-08", "AOVBucket": "15-20", "count": 756, "revenue": 13535.809911999999, "avgShipping": 0.8981481481481481, "pctFreeShip": 0.6507936507936508}, {"YearMonth": "2020-08", "AOVBucket": "20-25", "count": 809, "revenue": 18249.359735, "avgShipping": 1.0803461063040791, "pctFreeShip": 0.5636588380716935}, {"YearMonth": "2020-08", "AOVBucket": "25-30", "count": 689, "revenue": 18748.709745, "avgShipping": 1.060957910014514, "pctFreeShip": 0.5660377358490566}, {"YearMonth": "2020-08", "AOVBucket": "30-35", "count": 363, "revenue": 11783.169968, "avgShipping": 1.022038567493113, "pctFreeShip": 0.5730027548209367}, {"YearMonth": "2020-08", "AOVBucket": "35-40", "count": 319, "revenue": 11989.54996, "avgShipping": 0.8526645768025078, "pctFreeShip": 0.64576802507837}, {"YearMonth": "2020-08", "AOVBucket": "40-50", "count": 370, "revenue": 16569.259754, "avgShipping": 1.2027027027027026, "pctFreeShip": 0.5108108108108108}, {"YearMonth": "2020-08", "AOVBucket": "50-60", "count": 217, "revenue": 11878.259939, "avgShipping": 1.1036866359447004, "pctFreeShip": 0.5483870967741935}, {"YearMonth": "2020-08", "AOVBucket": "60-75", "count": 199, "revenue": 13224.089937, "avgShipping": 1.1030150753768844, "pctFreeShip": 0.542713567839196}, {"YearMonth": "2020-08", "AOVBucket": "75-100", "count": 116, "revenue": 10041.479941, "avgShipping": 1.3405172413793103, "pctFreeShip": 0.43103448275862066}, {"YearMonth": "2020-08", "AOVBucket": "100-150", "count": 67, "revenue": 7843.690014, "avgShipping": 1.4701492537313432, "pctFreeShip": 0.3880597014925373}, {"YearMonth": "2020-08", "AOVBucket": "150-200", "count": 17, "revenue": 2853.690009, "avgShipping": 1.0294117647058822, "pctFreeShip": 0.5294117647058824}, {"YearMonth": "2020-08", "AOVBucket": "200-500", "count": 7, "revenue": 1961.010008, "avgShipping": 1.2857142857142858, "pctFreeShip": 0.42857142857142855}, {"YearMonth": "2020-09", "AOVBucket": "<5", "count": 30, "revenue": 146.82, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-09", "AOVBucket": "5-10", "count": 722, "revenue": 5823.11, "avgShipping": 0.3337950138504155, "pctFreeShip": 0.8642659279778393}, {"YearMonth": "2020-09", "AOVBucket": "10-15", "count": 983, "revenue": 12197.279999, "avgShipping": 0.9282807731434385, "pctFreeShip": 0.6256358087487284}, {"YearMonth": "2020-09", "AOVBucket": "15-20", "count": 644, "revenue": 11460.879946, "avgShipping": 0.8144409937888198, "pctFreeShip": 0.6692546583850931}, {"YearMonth": "2020-09", "AOVBucket": "20-25", "count": 563, "revenue": 12617.179919, "avgShipping": 1.0852575488454708, "pctFreeShip": 0.5754884547069272}, {"YearMonth": "2020-09", "AOVBucket": "25-30", "count": 629, "revenue": 17121.049752, "avgShipping": 1.1057233704292528, "pctFreeShip": 0.5707472178060413}, {"YearMonth": "2020-09", "AOVBucket": "30-35", "count": 337, "revenue": 10910.489969, "avgShipping": 0.9421364985163204, "pctFreeShip": 0.6053412462908012}, {"YearMonth": "2020-09", "AOVBucket": "35-40", "count": 223, "revenue": 8391.189948, "avgShipping": 0.8542600896860987, "pctFreeShip": 0.6367713004484304}, {"YearMonth": "2020-09", "AOVBucket": "40-50", "count": 305, "revenue": 13633.869884, "avgShipping": 1.0377049180327869, "pctFreeShip": 0.5737704918032787}, {"YearMonth": "2020-09", "AOVBucket": "50-60", "count": 199, "revenue": 10917.399951, "avgShipping": 0.9899497487437185, "pctFreeShip": 0.592964824120603}, {"YearMonth": "2020-09", "AOVBucket": "60-75", "count": 132, "revenue": 8675.659991, "avgShipping": 1.1098484848484849, "pctFreeShip": 0.5378787878787878}, {"YearMonth": "2020-09", "AOVBucket": "75-100", "count": 90, "revenue": 7653.409945, "avgShipping": 1.4555555555555555, "pctFreeShip": 0.4111111111111111}, {"YearMonth": "2020-09", "AOVBucket": "100-150", "count": 41, "revenue": 4889.50002, "avgShipping": 1.0609756097560976, "pctFreeShip": 0.5365853658536586}, {"YearMonth": "2020-09", "AOVBucket": "150-200", "count": 13, "revenue": 2214.279998, "avgShipping": 1.3461538461538463, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2020-09", "AOVBucket": "200-500", "count": 4, "revenue": 1066.210003, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2020-09", "AOVBucket": "500+", "count": 2, "revenue": 1174.679994, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-10", "AOVBucket": "<5", "count": 131, "revenue": 629.49, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-10", "AOVBucket": "5-10", "count": 1292, "revenue": 10389.96, "avgShipping": 0.46865325077399383, "pctFreeShip": 0.8103715170278638}, {"YearMonth": "2020-10", "AOVBucket": "10-15", "count": 1631, "revenue": 20097.079999999998, "avgShipping": 1.1805640711220111, "pctFreeShip": 0.5248313917841815}, {"YearMonth": "2020-10", "AOVBucket": "15-20", "count": 921, "revenue": 16450.999917999998, "avgShipping": 0.9343105320304017, "pctFreeShip": 0.6286644951140065}, {"YearMonth": "2020-10", "AOVBucket": "20-25", "count": 1091, "revenue": 24611.749819, "avgShipping": 1.0242896425297892, "pctFreeShip": 0.5811182401466545}, {"YearMonth": "2020-10", "AOVBucket": "25-30", "count": 936, "revenue": 25492.809662, "avgShipping": 1.0865384615384615, "pctFreeShip": 0.5608974358974359}, {"YearMonth": "2020-10", "AOVBucket": "30-35", "count": 510, "revenue": 16536.929917999998, "avgShipping": 1.1686274509803922, "pctFreeShip": 0.5333333333333333}, {"YearMonth": "2020-10", "AOVBucket": "35-40", "count": 410, "revenue": 15353.879894, "avgShipping": 1.0048780487804878, "pctFreeShip": 0.5878048780487805}, {"YearMonth": "2020-10", "AOVBucket": "40-50", "count": 398, "revenue": 17768.729854, "avgShipping": 1.1407035175879396, "pctFreeShip": 0.5276381909547738}, {"YearMonth": "2020-10", "AOVBucket": "50-60", "count": 235, "revenue": 12827.029913, "avgShipping": 1.0446808510638297, "pctFreeShip": 0.5617021276595745}, {"YearMonth": "2020-10", "AOVBucket": "60-75", "count": 191, "revenue": 12675.649985, "avgShipping": 1.382198952879581, "pctFreeShip": 0.44502617801047123}, {"YearMonth": "2020-10", "AOVBucket": "75-100", "count": 124, "revenue": 10684.76996, "avgShipping": 1.2983870967741935, "pctFreeShip": 0.45161290322580644}, {"YearMonth": "2020-10", "AOVBucket": "100-150", "count": 59, "revenue": 6985.469988, "avgShipping": 1.4152542372881356, "pctFreeShip": 0.3898305084745763}, {"YearMonth": "2020-10", "AOVBucket": "150-200", "count": 18, "revenue": 3046.000038, "avgShipping": 1.8888888888888888, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2020-10", "AOVBucket": "200-500", "count": 9, "revenue": 2537.109983, "avgShipping": 2.111111111111111, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2020-10", "AOVBucket": "500+", "count": 1, "revenue": 529.910008, "avgShipping": 2.0, "pctFreeShip": 0.0}, {"YearMonth": "2020-11", "AOVBucket": "<5", "count": 185, "revenue": 903.2, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-11", "AOVBucket": "5-10", "count": 1214, "revenue": 9830.779999999999, "avgShipping": 0.4995881383855025, "pctFreeShip": 0.7990115321252059}, {"YearMonth": "2020-11", "AOVBucket": "10-15", "count": 1682, "revenue": 20693.29, "avgShipping": 1.191141498216409, "pctFreeShip": 0.5190249702734839}, {"YearMonth": "2020-11", "AOVBucket": "15-20", "count": 889, "revenue": 15860.899945, "avgShipping": 0.9116985376827896, "pctFreeShip": 0.6366704161979753}, {"YearMonth": "2020-11", "AOVBucket": "20-25", "count": 848, "revenue": 18987.839947, "avgShipping": 1.3083726415094339, "pctFreeShip": 0.47523584905660377}, {"YearMonth": "2020-11", "AOVBucket": "25-30", "count": 797, "revenue": 21727.859707, "avgShipping": 1.131116687578419, "pctFreeShip": 0.5570890840652447}, {"YearMonth": "2020-11", "AOVBucket": "30-35", "count": 449, "revenue": 14554.819945, "avgShipping": 1.0913140311804008, "pctFreeShip": 0.5501113585746102}, {"YearMonth": "2020-11", "AOVBucket": "35-40", "count": 364, "revenue": 13600.889928999999, "avgShipping": 1.054945054945055, "pctFreeShip": 0.5659340659340659}, {"YearMonth": "2020-11", "AOVBucket": "40-50", "count": 386, "revenue": 17278.129932, "avgShipping": 1.3199481865284974, "pctFreeShip": 0.4689119170984456}, {"YearMonth": "2020-11", "AOVBucket": "50-60", "count": 220, "revenue": 11991.049896999999, "avgShipping": 1.134090909090909, "pctFreeShip": 0.5363636363636364}, {"YearMonth": "2020-11", "AOVBucket": "60-75", "count": 164, "revenue": 10876.449956, "avgShipping": 1.2865853658536586, "pctFreeShip": 0.4451219512195122}, {"YearMonth": "2020-11", "AOVBucket": "75-100", "count": 110, "revenue": 9394.769954, "avgShipping": 1.240909090909091, "pctFreeShip": 0.4727272727272727}, {"YearMonth": "2020-11", "AOVBucket": "100-150", "count": 70, "revenue": 8465.310015000001, "avgShipping": 1.5928571428571427, "pctFreeShip": 0.3142857142857143}, {"YearMonth": "2020-11", "AOVBucket": "150-200", "count": 14, "revenue": 2385.850006, "avgShipping": 2.0, "pctFreeShip": 0.2857142857142857}, {"YearMonth": "2020-11", "AOVBucket": "200-500", "count": 9, "revenue": 2698.300006, "avgShipping": 1.7777777777777777, "pctFreeShip": 0.1111111111111111}, {"YearMonth": "2020-12", "AOVBucket": "<5", "count": 3, "revenue": 14.82, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2020-12", "AOVBucket": "5-10", "count": 859, "revenue": 6795.5599999999995, "avgShipping": 0.5640279394644936, "pctFreeShip": 0.7729918509895227}, {"YearMonth": "2020-12", "AOVBucket": "10-15", "count": 1243, "revenue": 15474.099999, "avgShipping": 1.3777152051488335, "pctFreeShip": 0.4456958970233307}, {"YearMonth": "2020-12", "AOVBucket": "15-20", "count": 750, "revenue": 13367.51994, "avgShipping": 1.044, "pctFreeShip": 0.5946666666666667}, {"YearMonth": "2020-12", "AOVBucket": "20-25", "count": 1008, "revenue": 22588.609769, "avgShipping": 1.123015873015873, "pctFreeShip": 0.5505952380952381}, {"YearMonth": "2020-12", "AOVBucket": "25-30", "count": 758, "revenue": 20635.869766, "avgShipping": 1.0989445910290236, "pctFreeShip": 0.5593667546174143}, {"YearMonth": "2020-12", "AOVBucket": "30-35", "count": 466, "revenue": 15076.219923999999, "avgShipping": 1.194206008583691, "pctFreeShip": 0.5171673819742489}, {"YearMonth": "2020-12", "AOVBucket": "35-40", "count": 323, "revenue": 12055.969925, "avgShipping": 1.111455108359133, "pctFreeShip": 0.5572755417956656}, {"YearMonth": "2020-12", "AOVBucket": "40-50", "count": 366, "revenue": 16351.459814, "avgShipping": 1.0792349726775956, "pctFreeShip": 0.5655737704918032}, {"YearMonth": "2020-12", "AOVBucket": "50-60", "count": 219, "revenue": 12012.189893, "avgShipping": 1.32648401826484, "pctFreeShip": 0.4657534246575342}, {"YearMonth": "2020-12", "AOVBucket": "60-75", "count": 168, "revenue": 11223.659948, "avgShipping": 1.3482142857142858, "pctFreeShip": 0.47619047619047616}, {"YearMonth": "2020-12", "AOVBucket": "75-100", "count": 113, "revenue": 9705.659992, "avgShipping": 1.4690265486725664, "pctFreeShip": 0.35398230088495575}, {"YearMonth": "2020-12", "AOVBucket": "100-150", "count": 64, "revenue": 7586.839977, "avgShipping": 1.421875, "pctFreeShip": 0.4375}, {"YearMonth": "2020-12", "AOVBucket": "150-200", "count": 15, "revenue": 2617.35, "avgShipping": 1.9333333333333333, "pctFreeShip": 0.13333333333333333}, {"YearMonth": "2020-12", "AOVBucket": "200-500", "count": 8, "revenue": 2026.2, "avgShipping": 1.375, "pctFreeShip": 0.375}, {"YearMonth": "2021-01", "AOVBucket": "<5", "count": 23, "revenue": 106.94000000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-01", "AOVBucket": "5-10", "count": 1129, "revenue": 8920.14, "avgShipping": 0.6479185119574845, "pctFreeShip": 0.7413640389725421}, {"YearMonth": "2021-01", "AOVBucket": "10-15", "count": 1535, "revenue": 18934.67, "avgShipping": 1.4104234527687296, "pctFreeShip": 0.4358306188925081}, {"YearMonth": "2021-01", "AOVBucket": "15-20", "count": 938, "revenue": 16692.039969, "avgShipping": 1.0207889125799574, "pctFreeShip": 0.5959488272921108}, {"YearMonth": "2021-01", "AOVBucket": "20-25", "count": 1935, "revenue": 43142.099437, "avgShipping": 0.9459948320413437, "pctFreeShip": 0.6211886304909561}, {"YearMonth": "2021-01", "AOVBucket": "25-30", "count": 1104, "revenue": 30111.009758, "avgShipping": 1.1702898550724639, "pctFreeShip": 0.5371376811594203}, {"YearMonth": "2021-01", "AOVBucket": "30-35", "count": 633, "revenue": 20485.639886, "avgShipping": 1.0031595576619274, "pctFreeShip": 0.5987361769352291}, {"YearMonth": "2021-01", "AOVBucket": "35-40", "count": 416, "revenue": 15580.509923, "avgShipping": 0.9975961538461539, "pctFreeShip": 0.6105769230769231}, {"YearMonth": "2021-01", "AOVBucket": "40-50", "count": 498, "revenue": 22249.599795, "avgShipping": 0.963855421686747, "pctFreeShip": 0.6184738955823293}, {"YearMonth": "2021-01", "AOVBucket": "50-60", "count": 314, "revenue": 17128.279936, "avgShipping": 0.9840764331210191, "pctFreeShip": 0.6050955414012739}, {"YearMonth": "2021-01", "AOVBucket": "60-75", "count": 174, "revenue": 11591.639966, "avgShipping": 1.0632183908045978, "pctFreeShip": 0.5747126436781609}, {"YearMonth": "2021-01", "AOVBucket": "75-100", "count": 133, "revenue": 11249.80992, "avgShipping": 1.0902255639097744, "pctFreeShip": 0.5789473684210527}, {"YearMonth": "2021-01", "AOVBucket": "100-150", "count": 71, "revenue": 8297.069992, "avgShipping": 1.1619718309859155, "pctFreeShip": 0.5633802816901409}, {"YearMonth": "2021-01", "AOVBucket": "150-200", "count": 18, "revenue": 3053.249993, "avgShipping": 0.9722222222222222, "pctFreeShip": 0.6111111111111112}, {"YearMonth": "2021-01", "AOVBucket": "200-500", "count": 6, "revenue": 1567.729996, "avgShipping": 0.4166666666666667, "pctFreeShip": 0.8333333333333334}, {"YearMonth": "2021-02", "AOVBucket": "<5", "count": 4, "revenue": 8.72, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-02", "AOVBucket": "5-10", "count": 706, "revenue": 5667.34, "avgShipping": 0.49008498583569404, "pctFreeShip": 0.8031161473087819}, {"YearMonth": "2021-02", "AOVBucket": "10-15", "count": 1138, "revenue": 13982.879998999999, "avgShipping": 1.1748681898066784, "pctFreeShip": 0.5246045694200352}, {"YearMonth": "2021-02", "AOVBucket": "15-20", "count": 781, "revenue": 13803.569931, "avgShipping": 1.112035851472471, "pctFreeShip": 0.5620998719590269}, {"YearMonth": "2021-02", "AOVBucket": "20-25", "count": 736, "revenue": 16453.109888, "avgShipping": 1.3002717391304348, "pctFreeShip": 0.483695652173913}, {"YearMonth": "2021-02", "AOVBucket": "25-30", "count": 581, "revenue": 15818.129778999999, "avgShipping": 1.2151462994836488, "pctFreeShip": 0.5283993115318416}, {"YearMonth": "2021-02", "AOVBucket": "30-35", "count": 303, "revenue": 9844.939966, "avgShipping": 1.2557755775577557, "pctFreeShip": 0.5148514851485149}, {"YearMonth": "2021-02", "AOVBucket": "35-40", "count": 215, "revenue": 8003.559952, "avgShipping": 1.041860465116279, "pctFreeShip": 0.5906976744186047}, {"YearMonth": "2021-02", "AOVBucket": "40-50", "count": 248, "revenue": 11112.129909, "avgShipping": 1.2258064516129032, "pctFreeShip": 0.5080645161290323}, {"YearMonth": "2021-02", "AOVBucket": "50-60", "count": 165, "revenue": 9006.279966, "avgShipping": 1.1818181818181819, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2021-02", "AOVBucket": "60-75", "count": 127, "revenue": 8372.529979, "avgShipping": 1.2244094488188977, "pctFreeShip": 0.5118110236220472}, {"YearMonth": "2021-02", "AOVBucket": "75-100", "count": 63, "revenue": 5322.78997, "avgShipping": 1.3412698412698412, "pctFreeShip": 0.47619047619047616}, {"YearMonth": "2021-02", "AOVBucket": "100-150", "count": 36, "revenue": 4312.310005, "avgShipping": 1.6805555555555556, "pctFreeShip": 0.3611111111111111}, {"YearMonth": "2021-02", "AOVBucket": "150-200", "count": 4, "revenue": 669.760008, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2021-02", "AOVBucket": "200-500", "count": 5, "revenue": 1250.990016, "avgShipping": 3.0, "pctFreeShip": 0.2}, {"YearMonth": "2021-03", "AOVBucket": "<5", "count": 1, "revenue": 4.76, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-03", "AOVBucket": "5-10", "count": 685, "revenue": 5481.76, "avgShipping": 0.4846715328467153, "pctFreeShip": 0.8043795620437956}, {"YearMonth": "2021-03", "AOVBucket": "10-15", "count": 1119, "revenue": 13836.6, "avgShipping": 1.240840035746202, "pctFreeShip": 0.5049151027703307}, {"YearMonth": "2021-03", "AOVBucket": "15-20", "count": 822, "revenue": 14682.119940999999, "avgShipping": 0.9519464720194647, "pctFreeShip": 0.6277372262773723}, {"YearMonth": "2021-03", "AOVBucket": "20-25", "count": 1019, "revenue": 22842.159745, "avgShipping": 1.1516192345436702, "pctFreeShip": 0.5426889106967615}, {"YearMonth": "2021-03", "AOVBucket": "25-30", "count": 745, "revenue": 20358.729769999998, "avgShipping": 1.2033557046979866, "pctFreeShip": 0.5275167785234899}, {"YearMonth": "2021-03", "AOVBucket": "30-35", "count": 431, "revenue": 13997.979911999999, "avgShipping": 1.0904872389791183, "pctFreeShip": 0.5661252900232019}, {"YearMonth": "2021-03", "AOVBucket": "35-40", "count": 320, "revenue": 11917.029853, "avgShipping": 1.1203125, "pctFreeShip": 0.55}, {"YearMonth": "2021-03", "AOVBucket": "40-50", "count": 368, "revenue": 16418.949877, "avgShipping": 1.111413043478261, "pctFreeShip": 0.5570652173913043}, {"YearMonth": "2021-03", "AOVBucket": "50-60", "count": 197, "revenue": 10759.239978, "avgShipping": 1.1827411167512691, "pctFreeShip": 0.5279187817258884}, {"YearMonth": "2021-03", "AOVBucket": "60-75", "count": 156, "revenue": 10310.79999, "avgShipping": 1.25, "pctFreeShip": 0.5256410256410257}, {"YearMonth": "2021-03", "AOVBucket": "75-100", "count": 89, "revenue": 7605.739964, "avgShipping": 1.2640449438202248, "pctFreeShip": 0.48314606741573035}, {"YearMonth": "2021-03", "AOVBucket": "100-150", "count": 54, "revenue": 6265.259978, "avgShipping": 1.4351851851851851, "pctFreeShip": 0.42592592592592593}, {"YearMonth": "2021-03", "AOVBucket": "150-200", "count": 13, "revenue": 2191.049998, "avgShipping": 1.4230769230769231, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2021-03", "AOVBucket": "200-500", "count": 5, "revenue": 1300.580009, "avgShipping": 2.2, "pctFreeShip": 0.0}, {"YearMonth": "2021-04", "AOVBucket": "<5", "count": 3, "revenue": 8.9, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-04", "AOVBucket": "5-10", "count": 561, "revenue": 4562.99, "avgShipping": 0.4358288770053476, "pctFreeShip": 0.8235294117647058}, {"YearMonth": "2021-04", "AOVBucket": "10-15", "count": 921, "revenue": 11462.069997999999, "avgShipping": 1.0863192182410424, "pctFreeShip": 0.5635179153094463}, {"YearMonth": "2021-04", "AOVBucket": "15-20", "count": 775, "revenue": 13749.739915999999, "avgShipping": 0.9890322580645161, "pctFreeShip": 0.6051612903225806}, {"YearMonth": "2021-04", "AOVBucket": "20-25", "count": 723, "revenue": 16199.729814999999, "avgShipping": 1.0594744121715076, "pctFreeShip": 0.5781466113416321}, {"YearMonth": "2021-04", "AOVBucket": "25-30", "count": 593, "revenue": 16108.859719, "avgShipping": 1.075885328836425, "pctFreeShip": 0.581787521079258}, {"YearMonth": "2021-04", "AOVBucket": "30-35", "count": 312, "revenue": 10161.70995, "avgShipping": 1.1185897435897436, "pctFreeShip": 0.5544871794871795}, {"YearMonth": "2021-04", "AOVBucket": "35-40", "count": 273, "revenue": 10223.869933, "avgShipping": 1.043956043956044, "pctFreeShip": 0.5787545787545788}, {"YearMonth": "2021-04", "AOVBucket": "40-50", "count": 326, "revenue": 14600.039859, "avgShipping": 1.107361963190184, "pctFreeShip": 0.549079754601227}, {"YearMonth": "2021-04", "AOVBucket": "50-60", "count": 167, "revenue": 9092.389944999999, "avgShipping": 1.2335329341317365, "pctFreeShip": 0.5329341317365269}, {"YearMonth": "2021-04", "AOVBucket": "60-75", "count": 161, "revenue": 10719.229947, "avgShipping": 1.1987577639751552, "pctFreeShip": 0.5031055900621118}, {"YearMonth": "2021-04", "AOVBucket": "75-100", "count": 75, "revenue": 6405.329959, "avgShipping": 1.3866666666666667, "pctFreeShip": 0.4666666666666667}, {"YearMonth": "2021-04", "AOVBucket": "100-150", "count": 44, "revenue": 5019.969992, "avgShipping": 1.2613636363636365, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2021-04", "AOVBucket": "150-200", "count": 6, "revenue": 1065.249992, "avgShipping": 1.8333333333333333, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2021-04", "AOVBucket": "200-500", "count": 2, "revenue": 460.619981, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-05", "AOVBucket": "<5", "count": 2, "revenue": 9.71, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-05", "AOVBucket": "5-10", "count": 521, "revenue": 4289.46, "avgShipping": 0.41170825335892514, "pctFreeShip": 0.8310940499040307}, {"YearMonth": "2021-05", "AOVBucket": "10-15", "count": 840, "revenue": 10424.89, "avgShipping": 1.0863095238095237, "pctFreeShip": 0.5595238095238095}, {"YearMonth": "2021-05", "AOVBucket": "15-20", "count": 709, "revenue": 12506.939935, "avgShipping": 0.8589562764456982, "pctFreeShip": 0.6473906911142454}, {"YearMonth": "2021-05", "AOVBucket": "20-25", "count": 963, "revenue": 21402.069706, "avgShipping": 0.8753894080996885, "pctFreeShip": 0.6479750778816199}, {"YearMonth": "2021-05", "AOVBucket": "25-30", "count": 676, "revenue": 18391.149794, "avgShipping": 0.9504437869822485, "pctFreeShip": 0.6124260355029586}, {"YearMonth": "2021-05", "AOVBucket": "30-35", "count": 426, "revenue": 13781.059890999999, "avgShipping": 0.778169014084507, "pctFreeShip": 0.6901408450704225}, {"YearMonth": "2021-05", "AOVBucket": "35-40", "count": 277, "revenue": 10415.939907, "avgShipping": 0.8989169675090253, "pctFreeShip": 0.6389891696750902}, {"YearMonth": "2021-05", "AOVBucket": "40-50", "count": 282, "revenue": 12551.169853, "avgShipping": 1.0124113475177305, "pctFreeShip": 0.5851063829787234}, {"YearMonth": "2021-05", "AOVBucket": "50-60", "count": 172, "revenue": 9364.549973, "avgShipping": 1.1337209302325582, "pctFreeShip": 0.5406976744186046}, {"YearMonth": "2021-05", "AOVBucket": "60-75", "count": 134, "revenue": 8890.37998, "avgShipping": 1.1977611940298507, "pctFreeShip": 0.5074626865671642}, {"YearMonth": "2021-05", "AOVBucket": "75-100", "count": 71, "revenue": 6106.039965, "avgShipping": 1.0845070422535212, "pctFreeShip": 0.5492957746478874}, {"YearMonth": "2021-05", "AOVBucket": "100-150", "count": 31, "revenue": 3810.18001, "avgShipping": 1.2096774193548387, "pctFreeShip": 0.4838709677419355}, {"YearMonth": "2021-05", "AOVBucket": "150-200", "count": 8, "revenue": 1410.6199980000001, "avgShipping": 1.6875, "pctFreeShip": 0.25}, {"YearMonth": "2021-05", "AOVBucket": "200-500", "count": 9, "revenue": 2628.279977, "avgShipping": 1.0555555555555556, "pctFreeShip": 0.5555555555555556}, {"YearMonth": "2021-06", "AOVBucket": "5-10", "count": 426, "revenue": 3494.5899999999997, "avgShipping": 0.49765258215962443, "pctFreeShip": 0.795774647887324}, {"YearMonth": "2021-06", "AOVBucket": "10-15", "count": 1081, "revenue": 13969.64, "avgShipping": 0.8704902867715079, "pctFreeShip": 0.6493987049028677}, {"YearMonth": "2021-06", "AOVBucket": "15-20", "count": 1093, "revenue": 19208.929828, "avgShipping": 0.8824336688014639, "pctFreeShip": 0.6358645928636779}, {"YearMonth": "2021-06", "AOVBucket": "20-25", "count": 955, "revenue": 21419.039623, "avgShipping": 0.9701570680628272, "pctFreeShip": 0.6209424083769634}, {"YearMonth": "2021-06", "AOVBucket": "25-30", "count": 686, "revenue": 18711.039692, "avgShipping": 1.2448979591836735, "pctFreeShip": 0.5072886297376094}, {"YearMonth": "2021-06", "AOVBucket": "30-35", "count": 351, "revenue": 11421.299923999999, "avgShipping": 1.0712250712250713, "pctFreeShip": 0.5726495726495726}, {"YearMonth": "2021-06", "AOVBucket": "35-40", "count": 262, "revenue": 9783.179920999999, "avgShipping": 0.9599236641221374, "pctFreeShip": 0.6145038167938931}, {"YearMonth": "2021-06", "AOVBucket": "40-50", "count": 303, "revenue": 13488.71985, "avgShipping": 1.1237623762376239, "pctFreeShip": 0.5478547854785478}, {"YearMonth": "2021-06", "AOVBucket": "50-60", "count": 193, "revenue": 10520.679904, "avgShipping": 1.2642487046632125, "pctFreeShip": 0.5233160621761658}, {"YearMonth": "2021-06", "AOVBucket": "60-75", "count": 134, "revenue": 8819.999944, "avgShipping": 1.0671641791044777, "pctFreeShip": 0.5447761194029851}, {"YearMonth": "2021-06", "AOVBucket": "75-100", "count": 81, "revenue": 7024.059957, "avgShipping": 1.1790123456790123, "pctFreeShip": 0.5061728395061729}, {"YearMonth": "2021-06", "AOVBucket": "100-150", "count": 42, "revenue": 5068.920007, "avgShipping": 1.2857142857142858, "pctFreeShip": 0.4523809523809524}, {"YearMonth": "2021-06", "AOVBucket": "150-200", "count": 13, "revenue": 2281.260029, "avgShipping": 1.3076923076923077, "pctFreeShip": 0.6153846153846154}, {"YearMonth": "2021-06", "AOVBucket": "200-500", "count": 6, "revenue": 1605.740028, "avgShipping": 1.9166666666666667, "pctFreeShip": 0.16666666666666666}, {"YearMonth": "2021-07", "AOVBucket": "<5", "count": 14, "revenue": 65.7, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-07", "AOVBucket": "5-10", "count": 852, "revenue": 7023.64, "avgShipping": 0.4107981220657277, "pctFreeShip": 0.8356807511737089}, {"YearMonth": "2021-07", "AOVBucket": "10-15", "count": 1130, "revenue": 14042.17, "avgShipping": 1.263716814159292, "pctFreeShip": 0.5}, {"YearMonth": "2021-07", "AOVBucket": "15-20", "count": 1094, "revenue": 19175.499948, "avgShipping": 0.9579524680073126, "pctFreeShip": 0.6343692870201096}, {"YearMonth": "2021-07", "AOVBucket": "20-25", "count": 929, "revenue": 20781.399645, "avgShipping": 1.0398277717976319, "pctFreeShip": 0.5974165769644779}, {"YearMonth": "2021-07", "AOVBucket": "25-30", "count": 687, "revenue": 18623.239733, "avgShipping": 1.287481804949054, "pctFreeShip": 0.5109170305676856}, {"YearMonth": "2021-07", "AOVBucket": "30-35", "count": 410, "revenue": 13276.699872, "avgShipping": 1.1560975609756097, "pctFreeShip": 0.5658536585365853}, {"YearMonth": "2021-07", "AOVBucket": "35-40", "count": 352, "revenue": 13187.299885, "avgShipping": 1.046875, "pctFreeShip": 0.59375}, {"YearMonth": "2021-07", "AOVBucket": "40-50", "count": 430, "revenue": 19181.73983, "avgShipping": 1.1523255813953488, "pctFreeShip": 0.5744186046511628}, {"YearMonth": "2021-07", "AOVBucket": "50-60", "count": 227, "revenue": 12390.519958, "avgShipping": 1.1916299559471366, "pctFreeShip": 0.5594713656387665}, {"YearMonth": "2021-07", "AOVBucket": "60-75", "count": 182, "revenue": 12153.799934, "avgShipping": 1.0686813186813187, "pctFreeShip": 0.6153846153846154}, {"YearMonth": "2021-07", "AOVBucket": "75-100", "count": 134, "revenue": 11352.899954, "avgShipping": 1.171641791044776, "pctFreeShip": 0.6194029850746269}, {"YearMonth": "2021-07", "AOVBucket": "100-150", "count": 75, "revenue": 8908.20004, "avgShipping": 1.1466666666666667, "pctFreeShip": 0.5733333333333334}, {"YearMonth": "2021-07", "AOVBucket": "150-200", "count": 16, "revenue": 2705.339999, "avgShipping": 1.75, "pctFreeShip": 0.4375}, {"YearMonth": "2021-07", "AOVBucket": "200-500", "count": 5, "revenue": 1335.2599989999999, "avgShipping": 1.0, "pctFreeShip": 0.6}, {"YearMonth": "2021-08", "AOVBucket": "<5", "count": 2, "revenue": 9.719999999999999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-08", "AOVBucket": "5-10", "count": 571, "revenue": 4660.23, "avgShipping": 0.47723292469352013, "pctFreeShip": 0.809106830122592}, {"YearMonth": "2021-08", "AOVBucket": "10-15", "count": 920, "revenue": 11496.539998999999, "avgShipping": 1.2755434782608697, "pctFreeShip": 0.49782608695652175}, {"YearMonth": "2021-08", "AOVBucket": "15-20", "count": 732, "revenue": 13012.039918999999, "avgShipping": 1.0204918032786885, "pctFreeShip": 0.6079234972677595}, {"YearMonth": "2021-08", "AOVBucket": "20-25", "count": 663, "revenue": 14850.139863, "avgShipping": 1.2820512820512822, "pctFreeShip": 0.502262443438914}, {"YearMonth": "2021-08", "AOVBucket": "25-30", "count": 588, "revenue": 16007.999699, "avgShipping": 1.2636054421768708, "pctFreeShip": 0.5136054421768708}, {"YearMonth": "2021-08", "AOVBucket": "30-35", "count": 288, "revenue": 9378.689919, "avgShipping": 1.3142361111111112, "pctFreeShip": 0.5138888888888888}, {"YearMonth": "2021-08", "AOVBucket": "35-40", "count": 249, "revenue": 9320.869922, "avgShipping": 1.0321285140562249, "pctFreeShip": 0.6144578313253012}, {"YearMonth": "2021-08", "AOVBucket": "40-50", "count": 282, "revenue": 12627.339877, "avgShipping": 1.5159574468085106, "pctFreeShip": 0.4574468085106383}, {"YearMonth": "2021-08", "AOVBucket": "50-60", "count": 174, "revenue": 9436.389903, "avgShipping": 1.3160919540229885, "pctFreeShip": 0.5057471264367817}, {"YearMonth": "2021-08", "AOVBucket": "60-75", "count": 118, "revenue": 7835.129949, "avgShipping": 1.4830508474576272, "pctFreeShip": 0.4915254237288136}, {"YearMonth": "2021-08", "AOVBucket": "75-100", "count": 84, "revenue": 7346.049996, "avgShipping": 1.9285714285714286, "pctFreeShip": 0.35714285714285715}, {"YearMonth": "2021-08", "AOVBucket": "100-150", "count": 39, "revenue": 4724.739981, "avgShipping": 2.0256410256410255, "pctFreeShip": 0.38461538461538464}, {"YearMonth": "2021-08", "AOVBucket": "150-200", "count": 15, "revenue": 2581.859992, "avgShipping": 3.1666666666666665, "pctFreeShip": 0.26666666666666666}, {"YearMonth": "2021-08", "AOVBucket": "200-500", "count": 4, "revenue": 1039.859993, "avgShipping": 5.0, "pctFreeShip": 0.0}, {"YearMonth": "2021-09", "AOVBucket": "<5", "count": 3, "revenue": 14.469999999999999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-09", "AOVBucket": "5-10", "count": 532, "revenue": 4311.99, "avgShipping": 0.5028195488721805, "pctFreeShip": 0.7988721804511278}, {"YearMonth": "2021-09", "AOVBucket": "10-15", "count": 913, "revenue": 11392.359999, "avgShipping": 1.1648411829134722, "pctFreeShip": 0.5366922234392114}, {"YearMonth": "2021-09", "AOVBucket": "15-20", "count": 717, "revenue": 12788.369928999999, "avgShipping": 0.9700139470013946, "pctFreeShip": 0.6331938633193863}, {"YearMonth": "2021-09", "AOVBucket": "20-25", "count": 787, "revenue": 17662.20986, "avgShipping": 1.2090216010165185, "pctFreeShip": 0.5349428208386277}, {"YearMonth": "2021-09", "AOVBucket": "25-30", "count": 665, "revenue": 18105.759769, "avgShipping": 1.0593984962406016, "pctFreeShip": 0.5894736842105263}, {"YearMonth": "2021-09", "AOVBucket": "30-35", "count": 382, "revenue": 12356.579926, "avgShipping": 0.9829842931937173, "pctFreeShip": 0.643979057591623}, {"YearMonth": "2021-09", "AOVBucket": "35-40", "count": 268, "revenue": 9998.819903, "avgShipping": 1.0485074626865671, "pctFreeShip": 0.6156716417910447}, {"YearMonth": "2021-09", "AOVBucket": "40-50", "count": 313, "revenue": 13913.989851, "avgShipping": 1.2300319488817892, "pctFreeShip": 0.5591054313099042}, {"YearMonth": "2021-09", "AOVBucket": "50-60", "count": 204, "revenue": 11161.269917, "avgShipping": 1.0392156862745099, "pctFreeShip": 0.6372549019607843}, {"YearMonth": "2021-09", "AOVBucket": "60-75", "count": 129, "revenue": 8576.509962, "avgShipping": 1.12015503875969, "pctFreeShip": 0.6046511627906976}, {"YearMonth": "2021-09", "AOVBucket": "75-100", "count": 89, "revenue": 7526.970004, "avgShipping": 1.348314606741573, "pctFreeShip": 0.5393258426966292}, {"YearMonth": "2021-09", "AOVBucket": "100-150", "count": 47, "revenue": 5661.290001, "avgShipping": 1.3297872340425532, "pctFreeShip": 0.5319148936170213}, {"YearMonth": "2021-09", "AOVBucket": "150-200", "count": 12, "revenue": 2074.079987, "avgShipping": 2.125, "pctFreeShip": 0.25}, {"YearMonth": "2021-09", "AOVBucket": "200-500", "count": 8, "revenue": 2021.679983, "avgShipping": 1.5625, "pctFreeShip": 0.375}, {"YearMonth": "2021-10", "AOVBucket": "<5", "count": 24, "revenue": 114.22000000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-10", "AOVBucket": "5-10", "count": 574, "revenue": 4749.389999999999, "avgShipping": 0.436411149825784, "pctFreeShip": 0.8275261324041812}, {"YearMonth": "2021-10", "AOVBucket": "10-15", "count": 1097, "revenue": 13916.820001, "avgShipping": 0.9612579762989972, "pctFreeShip": 0.6271649954421149}, {"YearMonth": "2021-10", "AOVBucket": "15-20", "count": 986, "revenue": 17370.769883999998, "avgShipping": 0.9437119675456389, "pctFreeShip": 0.6308316430020284}, {"YearMonth": "2021-10", "AOVBucket": "20-25", "count": 807, "revenue": 18043.609798999998, "avgShipping": 1.1350681536555143, "pctFreeShip": 0.5551425030978935}, {"YearMonth": "2021-10", "AOVBucket": "25-30", "count": 573, "revenue": 15602.199739, "avgShipping": 1.2774869109947644, "pctFreeShip": 0.5043630017452007}, {"YearMonth": "2021-10", "AOVBucket": "30-35", "count": 331, "revenue": 10766.739948, "avgShipping": 1.1238670694864048, "pctFreeShip": 0.5921450151057401}, {"YearMonth": "2021-10", "AOVBucket": "35-40", "count": 241, "revenue": 8982.659891, "avgShipping": 0.9585062240663901, "pctFreeShip": 0.6431535269709544}, {"YearMonth": "2021-10", "AOVBucket": "40-50", "count": 258, "revenue": 11468.319873999999, "avgShipping": 1.1143410852713178, "pctFreeShip": 0.5813953488372093}, {"YearMonth": "2021-10", "AOVBucket": "50-60", "count": 159, "revenue": 8581.839914, "avgShipping": 1.2578616352201257, "pctFreeShip": 0.5283018867924528}, {"YearMonth": "2021-10", "AOVBucket": "60-75", "count": 128, "revenue": 8555.559968, "avgShipping": 1.31640625, "pctFreeShip": 0.546875}, {"YearMonth": "2021-10", "AOVBucket": "75-100", "count": 76, "revenue": 6438.879954, "avgShipping": 1.6710526315789473, "pctFreeShip": 0.40789473684210525}, {"YearMonth": "2021-10", "AOVBucket": "100-150", "count": 40, "revenue": 4689.219997, "avgShipping": 1.875, "pctFreeShip": 0.475}, {"YearMonth": "2021-10", "AOVBucket": "150-200", "count": 11, "revenue": 1916.24001, "avgShipping": 2.590909090909091, "pctFreeShip": 0.18181818181818182}, {"YearMonth": "2021-10", "AOVBucket": "200-500", "count": 3, "revenue": 678.750007, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2021-11", "AOVBucket": "<5", "count": 17, "revenue": 83.98, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-11", "AOVBucket": "5-10", "count": 864, "revenue": 7222.99, "avgShipping": 0.4253472222222222, "pctFreeShip": 0.8298611111111112}, {"YearMonth": "2021-11", "AOVBucket": "10-15", "count": 1052, "revenue": 13043.539999999999, "avgShipping": 1.1340304182509506, "pctFreeShip": 0.5503802281368821}, {"YearMonth": "2021-11", "AOVBucket": "15-20", "count": 993, "revenue": 17422.009951, "avgShipping": 0.959718026183283, "pctFreeShip": 0.6334340382678751}, {"YearMonth": "2021-11", "AOVBucket": "20-25", "count": 843, "revenue": 18798.759744, "avgShipping": 1.040332147093713, "pctFreeShip": 0.594306049822064}, {"YearMonth": "2021-11", "AOVBucket": "25-30", "count": 672, "revenue": 18287.269744, "avgShipping": 1.1607142857142858, "pctFreeShip": 0.5565476190476191}, {"YearMonth": "2021-11", "AOVBucket": "30-35", "count": 433, "revenue": 14032.569866, "avgShipping": 1.0277136258660509, "pctFreeShip": 0.6166281755196305}, {"YearMonth": "2021-11", "AOVBucket": "35-40", "count": 338, "revenue": 12636.089877, "avgShipping": 1.0281065088757397, "pctFreeShip": 0.6153846153846154}, {"YearMonth": "2021-11", "AOVBucket": "40-50", "count": 446, "revenue": 20054.169769, "avgShipping": 1.1065022421524664, "pctFreeShip": 0.5829596412556054}, {"YearMonth": "2021-11", "AOVBucket": "50-60", "count": 234, "revenue": 12724.699955, "avgShipping": 0.9230769230769231, "pctFreeShip": 0.6495726495726496}, {"YearMonth": "2021-11", "AOVBucket": "60-75", "count": 184, "revenue": 12254.719966999999, "avgShipping": 1.076086956521739, "pctFreeShip": 0.592391304347826}, {"YearMonth": "2021-11", "AOVBucket": "75-100", "count": 114, "revenue": 9757.469933, "avgShipping": 1.105263157894737, "pctFreeShip": 0.5964912280701754}, {"YearMonth": "2021-11", "AOVBucket": "100-150", "count": 81, "revenue": 9317.049988, "avgShipping": 1.4135802469135803, "pctFreeShip": 0.5061728395061729}, {"YearMonth": "2021-11", "AOVBucket": "150-200", "count": 23, "revenue": 3918.310019, "avgShipping": 1.2173913043478262, "pctFreeShip": 0.5652173913043478}, {"YearMonth": "2021-11", "AOVBucket": "200-500", "count": 14, "revenue": 3426.979955, "avgShipping": 1.1785714285714286, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2021-12", "AOVBucket": "<5", "count": 5, "revenue": 24.700000000000003, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2021-12", "AOVBucket": "5-10", "count": 467, "revenue": 3834.88, "avgShipping": 0.4657387580299786, "pctFreeShip": 0.8137044967880086}, {"YearMonth": "2021-12", "AOVBucket": "10-15", "count": 762, "revenue": 9472.03, "avgShipping": 1.1213910761154855, "pctFreeShip": 0.5564304461942258}, {"YearMonth": "2021-12", "AOVBucket": "15-20", "count": 601, "revenue": 10653.599954, "avgShipping": 1.0116472545757071, "pctFreeShip": 0.610648918469218}, {"YearMonth": "2021-12", "AOVBucket": "20-25", "count": 644, "revenue": 14370.599821, "avgShipping": 1.2461180124223603, "pctFreeShip": 0.5186335403726708}, {"YearMonth": "2021-12", "AOVBucket": "25-30", "count": 471, "revenue": 12815.909774, "avgShipping": 1.3014861995753715, "pctFreeShip": 0.4989384288747346}, {"YearMonth": "2021-12", "AOVBucket": "30-35", "count": 285, "revenue": 9268.97994, "avgShipping": 1.1105263157894736, "pctFreeShip": 0.5754385964912281}, {"YearMonth": "2021-12", "AOVBucket": "35-40", "count": 210, "revenue": 7869.589933, "avgShipping": 0.9880952380952381, "pctFreeShip": 0.6333333333333333}, {"YearMonth": "2021-12", "AOVBucket": "40-50", "count": 276, "revenue": 12379.029832, "avgShipping": 1.1141304347826086, "pctFreeShip": 0.5797101449275363}, {"YearMonth": "2021-12", "AOVBucket": "50-60", "count": 140, "revenue": 7669.129924, "avgShipping": 1.1285714285714286, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2021-12", "AOVBucket": "60-75", "count": 118, "revenue": 7792.909974, "avgShipping": 1.3898305084745763, "pctFreeShip": 0.5084745762711864}, {"YearMonth": "2021-12", "AOVBucket": "75-100", "count": 86, "revenue": 7284.439942, "avgShipping": 1.3313953488372092, "pctFreeShip": 0.5348837209302325}, {"YearMonth": "2021-12", "AOVBucket": "100-150", "count": 38, "revenue": 4635.059992, "avgShipping": 2.039473684210526, "pctFreeShip": 0.3684210526315789}, {"YearMonth": "2021-12", "AOVBucket": "150-200", "count": 8, "revenue": 1428.759969, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2021-12", "AOVBucket": "200-500", "count": 5, "revenue": 1368.300009, "avgShipping": 0.8, "pctFreeShip": 0.8}, {"YearMonth": "2022-01", "AOVBucket": "<5", "count": 83, "revenue": 381.67, "avgShipping": 0.030120481927710843, "pctFreeShip": 0.9879518072289156}, {"YearMonth": "2022-01", "AOVBucket": "5-10", "count": 1317, "revenue": 10934.269999, "avgShipping": 0.40053151100987094, "pctFreeShip": 0.8397873955960516}, {"YearMonth": "2022-01", "AOVBucket": "10-15", "count": 1342, "revenue": 16601.070001, "avgShipping": 1.216467958271237, "pctFreeShip": 0.5149031296572281}, {"YearMonth": "2022-01", "AOVBucket": "15-20", "count": 1390, "revenue": 24239.369951, "avgShipping": 0.9100719424460432, "pctFreeShip": 0.6402877697841727}, {"YearMonth": "2022-01", "AOVBucket": "20-25", "count": 1208, "revenue": 26839.709498, "avgShipping": 1.0285596026490067, "pctFreeShip": 0.5935430463576159}, {"YearMonth": "2022-01", "AOVBucket": "25-30", "count": 755, "revenue": 20568.569774, "avgShipping": 1.1754966887417218, "pctFreeShip": 0.543046357615894}, {"YearMonth": "2022-01", "AOVBucket": "30-35", "count": 537, "revenue": 17366.779866, "avgShipping": 1.0381750465549349, "pctFreeShip": 0.5921787709497207}, {"YearMonth": "2022-01", "AOVBucket": "35-40", "count": 362, "revenue": 13546.479917, "avgShipping": 0.9185082872928176, "pctFreeShip": 0.643646408839779}, {"YearMonth": "2022-01", "AOVBucket": "40-50", "count": 502, "revenue": 22468.55967, "avgShipping": 0.9760956175298805, "pctFreeShip": 0.6254980079681275}, {"YearMonth": "2022-01", "AOVBucket": "50-60", "count": 262, "revenue": 14259.779945, "avgShipping": 0.9255725190839694, "pctFreeShip": 0.6450381679389313}, {"YearMonth": "2022-01", "AOVBucket": "60-75", "count": 203, "revenue": 13552.639919, "avgShipping": 1.0591133004926108, "pctFreeShip": 0.5862068965517241}, {"YearMonth": "2022-01", "AOVBucket": "75-100", "count": 133, "revenue": 11428.479908, "avgShipping": 0.9774436090225563, "pctFreeShip": 0.6240601503759399}, {"YearMonth": "2022-01", "AOVBucket": "100-150", "count": 58, "revenue": 6880.690011, "avgShipping": 0.9913793103448276, "pctFreeShip": 0.603448275862069}, {"YearMonth": "2022-01", "AOVBucket": "150-200", "count": 17, "revenue": 2867.739979, "avgShipping": 1.0294117647058822, "pctFreeShip": 0.5882352941176471}, {"YearMonth": "2022-01", "AOVBucket": "200-500", "count": 13, "revenue": 3314.750021, "avgShipping": 1.1538461538461537, "pctFreeShip": 0.6923076923076923}, {"YearMonth": "2022-02", "AOVBucket": "<5", "count": 21, "revenue": 5.930000000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-02", "AOVBucket": "5-10", "count": 515, "revenue": 4160.54, "avgShipping": 0.49514563106796117, "pctFreeShip": 0.8019417475728156}, {"YearMonth": "2022-02", "AOVBucket": "10-15", "count": 815, "revenue": 10193.18, "avgShipping": 1.2085889570552146, "pctFreeShip": 0.5165644171779141}, {"YearMonth": "2022-02", "AOVBucket": "15-20", "count": 644, "revenue": 11378.809927999999, "avgShipping": 1.0326086956521738, "pctFreeShip": 0.593167701863354}, {"YearMonth": "2022-02", "AOVBucket": "20-25", "count": 457, "revenue": 10234.859897999999, "avgShipping": 1.3566739606126914, "pctFreeShip": 0.474835886214442}, {"YearMonth": "2022-02", "AOVBucket": "25-30", "count": 412, "revenue": 11259.92981, "avgShipping": 1.2621359223300972, "pctFreeShip": 0.529126213592233}, {"YearMonth": "2022-02", "AOVBucket": "30-35", "count": 213, "revenue": 6921.759964, "avgShipping": 1.3615023474178405, "pctFreeShip": 0.4835680751173709}, {"YearMonth": "2022-02", "AOVBucket": "35-40", "count": 160, "revenue": 6013.9499829999995, "avgShipping": 1.234375, "pctFreeShip": 0.54375}, {"YearMonth": "2022-02", "AOVBucket": "40-50", "count": 193, "revenue": 8629.909918, "avgShipping": 1.2953367875647668, "pctFreeShip": 0.5233160621761658}, {"YearMonth": "2022-02", "AOVBucket": "50-60", "count": 116, "revenue": 6280.59995, "avgShipping": 1.1853448275862069, "pctFreeShip": 0.5431034482758621}, {"YearMonth": "2022-02", "AOVBucket": "60-75", "count": 72, "revenue": 4780.839984, "avgShipping": 1.5277777777777777, "pctFreeShip": 0.4722222222222222}, {"YearMonth": "2022-02", "AOVBucket": "75-100", "count": 50, "revenue": 4276.509971, "avgShipping": 1.75, "pctFreeShip": 0.46}, {"YearMonth": "2022-02", "AOVBucket": "100-150", "count": 27, "revenue": 3190.859993, "avgShipping": 1.0185185185185186, "pctFreeShip": 0.5925925925925926}, {"YearMonth": "2022-02", "AOVBucket": "150-200", "count": 3, "revenue": 504.54999699999996, "avgShipping": 0.8333333333333334, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2022-02", "AOVBucket": "200-500", "count": 1, "revenue": 262.000004, "avgShipping": 2.5, "pctFreeShip": 0.0}, {"YearMonth": "2022-03", "AOVBucket": "<5", "count": 12, "revenue": 4.76, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-03", "AOVBucket": "5-10", "count": 582, "revenue": 4676.12, "avgShipping": 0.5498281786941581, "pctFreeShip": 0.7800687285223368}, {"YearMonth": "2022-03", "AOVBucket": "10-15", "count": 1389, "revenue": 17419.12, "avgShipping": 1.3858891288696904, "pctFreeShip": 0.4470842332613391}, {"YearMonth": "2022-03", "AOVBucket": "15-20", "count": 795, "revenue": 14119.289873, "avgShipping": 1.2389937106918238, "pctFreeShip": 0.5547169811320755}, {"YearMonth": "2022-03", "AOVBucket": "20-25", "count": 1041, "revenue": 23569.889635, "avgShipping": 1.2512007684918347, "pctFreeShip": 0.5110470701248799}, {"YearMonth": "2022-03", "AOVBucket": "25-30", "count": 772, "revenue": 21026.089742, "avgShipping": 1.2079015544041452, "pctFreeShip": 0.5531088082901554}, {"YearMonth": "2022-03", "AOVBucket": "30-35", "count": 462, "revenue": 14934.839899, "avgShipping": 1.1525974025974026, "pctFreeShip": 0.5692640692640693}, {"YearMonth": "2022-03", "AOVBucket": "35-40", "count": 310, "revenue": 11624.669901, "avgShipping": 1.1612903225806452, "pctFreeShip": 0.567741935483871}, {"YearMonth": "2022-03", "AOVBucket": "40-50", "count": 360, "revenue": 16020.679814, "avgShipping": 1.1875, "pctFreeShip": 0.5638888888888889}, {"YearMonth": "2022-03", "AOVBucket": "50-60", "count": 173, "revenue": 9447.389909, "avgShipping": 1.2427745664739884, "pctFreeShip": 0.5491329479768786}, {"YearMonth": "2022-03", "AOVBucket": "60-75", "count": 139, "revenue": 9287.309966, "avgShipping": 1.2949640287769784, "pctFreeShip": 0.49640287769784175}, {"YearMonth": "2022-03", "AOVBucket": "75-100", "count": 89, "revenue": 7491.719958, "avgShipping": 1.2359550561797752, "pctFreeShip": 0.5730337078651685}, {"YearMonth": "2022-03", "AOVBucket": "100-150", "count": 49, "revenue": 5855.6899889999995, "avgShipping": 0.8673469387755102, "pctFreeShip": 0.6938775510204082}, {"YearMonth": "2022-03", "AOVBucket": "150-200", "count": 8, "revenue": 1373.930007, "avgShipping": 0.9375, "pctFreeShip": 0.625}, {"YearMonth": "2022-03", "AOVBucket": "200-500", "count": 4, "revenue": 1186.0300359999999, "avgShipping": 1.25, "pctFreeShip": 0.5}, {"YearMonth": "2022-04", "AOVBucket": "<5", "count": 18, "revenue": 10.85, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-04", "AOVBucket": "5-10", "count": 585, "revenue": 4753.48, "avgShipping": 0.6025641025641025, "pctFreeShip": 0.7589743589743589}, {"YearMonth": "2022-04", "AOVBucket": "10-15", "count": 1148, "revenue": 14639.279998, "avgShipping": 1.0844947735191637, "pctFreeShip": 0.5714285714285714}, {"YearMonth": "2022-04", "AOVBucket": "15-20", "count": 1035, "revenue": 18151.329868999997, "avgShipping": 0.9299516908212561, "pctFreeShip": 0.6396135265700483}, {"YearMonth": "2022-04", "AOVBucket": "20-25", "count": 876, "revenue": 19900.209903, "avgShipping": 1.20148401826484, "pctFreeShip": 0.5376712328767124}, {"YearMonth": "2022-04", "AOVBucket": "25-30", "count": 550, "revenue": 15075.399879999999, "avgShipping": 1.190909090909091, "pctFreeShip": 0.5381818181818182}, {"YearMonth": "2022-04", "AOVBucket": "30-35", "count": 337, "revenue": 10919.139957, "avgShipping": 1.3204747774480712, "pctFreeShip": 0.5014836795252225}, {"YearMonth": "2022-04", "AOVBucket": "35-40", "count": 203, "revenue": 7554.789941999999, "avgShipping": 1.2684729064039408, "pctFreeShip": 0.5320197044334976}, {"YearMonth": "2022-04", "AOVBucket": "40-50", "count": 253, "revenue": 11311.06991, "avgShipping": 1.4624505928853755, "pctFreeShip": 0.45454545454545453}, {"YearMonth": "2022-04", "AOVBucket": "50-60", "count": 155, "revenue": 8409.090012999999, "avgShipping": 1.2741935483870968, "pctFreeShip": 0.5419354838709678}, {"YearMonth": "2022-04", "AOVBucket": "60-75", "count": 102, "revenue": 6777.749946, "avgShipping": 1.4215686274509804, "pctFreeShip": 0.49019607843137253}, {"YearMonth": "2022-04", "AOVBucket": "75-100", "count": 60, "revenue": 5153.989977, "avgShipping": 0.8333333333333334, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2022-04", "AOVBucket": "100-150", "count": 39, "revenue": 4676.080027, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-04", "AOVBucket": "150-200", "count": 8, "revenue": 1344.71, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-04", "AOVBucket": "200-500", "count": 3, "revenue": 821.660015, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-05", "AOVBucket": "<5", "count": 19, "revenue": 19.77, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-05", "AOVBucket": "5-10", "count": 448, "revenue": 3668.54, "avgShipping": 0.5133928571428571, "pctFreeShip": 0.7946428571428571}, {"YearMonth": "2022-05", "AOVBucket": "10-15", "count": 973, "revenue": 12275.359999999999, "avgShipping": 1.1099691675231245, "pctFreeShip": 0.5560123329907503}, {"YearMonth": "2022-05", "AOVBucket": "15-20", "count": 694, "revenue": 12255.729914, "avgShipping": 1.080691642651297, "pctFreeShip": 0.590778097982709}, {"YearMonth": "2022-05", "AOVBucket": "20-25", "count": 701, "revenue": 15758.409850999999, "avgShipping": 1.2624821683309557, "pctFreeShip": 0.5178316690442225}, {"YearMonth": "2022-05", "AOVBucket": "25-30", "count": 484, "revenue": 13232.910022, "avgShipping": 1.21900826446281, "pctFreeShip": 0.5495867768595041}, {"YearMonth": "2022-05", "AOVBucket": "30-35", "count": 305, "revenue": 9838.370004, "avgShipping": 1.2131147540983607, "pctFreeShip": 0.5278688524590164}, {"YearMonth": "2022-05", "AOVBucket": "35-40", "count": 224, "revenue": 8365.819926, "avgShipping": 1.09375, "pctFreeShip": 0.5982142857142857}, {"YearMonth": "2022-05", "AOVBucket": "40-50", "count": 244, "revenue": 10820.949924999999, "avgShipping": 1.5368852459016393, "pctFreeShip": 0.4262295081967213}, {"YearMonth": "2022-05", "AOVBucket": "50-60", "count": 175, "revenue": 9534.900007, "avgShipping": 1.3428571428571427, "pctFreeShip": 0.5085714285714286}, {"YearMonth": "2022-05", "AOVBucket": "60-75", "count": 115, "revenue": 7627.429953, "avgShipping": 1.0, "pctFreeShip": 0.6}, {"YearMonth": "2022-05", "AOVBucket": "75-100", "count": 68, "revenue": 5840.759964, "avgShipping": 0.9558823529411765, "pctFreeShip": 0.6176470588235294}, {"YearMonth": "2022-05", "AOVBucket": "100-150", "count": 33, "revenue": 3942.830032, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-05", "AOVBucket": "150-200", "count": 7, "revenue": 1176.159997, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-05", "AOVBucket": "200-500", "count": 4, "revenue": 1244.289962, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-06", "AOVBucket": "<5", "count": 10, "revenue": 21.82, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-06", "AOVBucket": "5-10", "count": 278, "revenue": 2299.41, "avgShipping": 1.0825539568345324, "pctFreeShip": 0.45323741007194246}, {"YearMonth": "2022-06", "AOVBucket": "10-15", "count": 808, "revenue": 10409.709998, "avgShipping": 1.4282178217821782, "pctFreeShip": 0.3787128712871287}, {"YearMonth": "2022-06", "AOVBucket": "15-20", "count": 759, "revenue": 13446.529857, "avgShipping": 1.1132411067193677, "pctFreeShip": 0.6100131752305665}, {"YearMonth": "2022-06", "AOVBucket": "20-25", "count": 641, "revenue": 14456.75988, "avgShipping": 1.268096723868955, "pctFreeShip": 0.5538221528861155}, {"YearMonth": "2022-06", "AOVBucket": "25-30", "count": 505, "revenue": 13813.560015, "avgShipping": 1.1237623762376239, "pctFreeShip": 0.6099009900990099}, {"YearMonth": "2022-06", "AOVBucket": "30-35", "count": 326, "revenue": 10569.549961, "avgShipping": 1.4217791411042944, "pctFreeShip": 0.5061349693251533}, {"YearMonth": "2022-06", "AOVBucket": "35-40", "count": 208, "revenue": 7808.709922, "avgShipping": 1.294951923076923, "pctFreeShip": 0.5673076923076923}, {"YearMonth": "2022-06", "AOVBucket": "40-50", "count": 256, "revenue": 11382.349923, "avgShipping": 1.5974609375, "pctFreeShip": 0.46484375}, {"YearMonth": "2022-06", "AOVBucket": "50-60", "count": 154, "revenue": 8494.889987, "avgShipping": 1.450974025974026, "pctFreeShip": 0.5064935064935064}, {"YearMonth": "2022-06", "AOVBucket": "60-75", "count": 102, "revenue": 6667.459981, "avgShipping": 1.6519607843137254, "pctFreeShip": 0.45098039215686275}, {"YearMonth": "2022-06", "AOVBucket": "75-100", "count": 73, "revenue": 6245.239955, "avgShipping": 0.8965753424657534, "pctFreeShip": 0.7808219178082192}, {"YearMonth": "2022-06", "AOVBucket": "100-150", "count": 33, "revenue": 3898.970006, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-06", "AOVBucket": "150-200", "count": 7, "revenue": 1229.789992, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-06", "AOVBucket": "200-500", "count": 2, "revenue": 641.030004, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-07", "AOVBucket": "<5", "count": 8, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-07", "AOVBucket": "5-10", "count": 265, "revenue": 2185.33, "avgShipping": 1.5735849056603775, "pctFreeShip": 0.01509433962264151}, {"YearMonth": "2022-07", "AOVBucket": "10-15", "count": 935, "revenue": 11766.78, "avgShipping": 1.8673262032085562, "pctFreeShip": 0.12192513368983957}, {"YearMonth": "2022-07", "AOVBucket": "15-20", "count": 1090, "revenue": 18979.409907, "avgShipping": 1.0117889908256883, "pctFreeShip": 0.6376146788990825}, {"YearMonth": "2022-07", "AOVBucket": "20-25", "count": 737, "revenue": 16600.149974, "avgShipping": 1.5067164179104477, "pctFreeShip": 0.5101763907734057}, {"YearMonth": "2022-07", "AOVBucket": "25-30", "count": 573, "revenue": 15690.479831999999, "avgShipping": 1.154973821989529, "pctFreeShip": 0.6300174520069808}, {"YearMonth": "2022-07", "AOVBucket": "30-35", "count": 313, "revenue": 10152.569956, "avgShipping": 1.273961661341853, "pctFreeShip": 0.5878594249201278}, {"YearMonth": "2022-07", "AOVBucket": "35-40", "count": 248, "revenue": 9283.76995, "avgShipping": 1.3050403225806453, "pctFreeShip": 0.5887096774193549}, {"YearMonth": "2022-07", "AOVBucket": "40-50", "count": 302, "revenue": 13444.169966, "avgShipping": 1.1978476821192052, "pctFreeShip": 0.609271523178808}, {"YearMonth": "2022-07", "AOVBucket": "50-60", "count": 198, "revenue": 10773.729944, "avgShipping": 1.3366161616161618, "pctFreeShip": 0.5858585858585859}, {"YearMonth": "2022-07", "AOVBucket": "60-75", "count": 130, "revenue": 8567.319983, "avgShipping": 1.546923076923077, "pctFreeShip": 0.5230769230769231}, {"YearMonth": "2022-07", "AOVBucket": "75-100", "count": 99, "revenue": 8378.849982, "avgShipping": 0.7873737373737374, "pctFreeShip": 0.8888888888888888}, {"YearMonth": "2022-07", "AOVBucket": "100-150", "count": 54, "revenue": 6418.359971, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-07", "AOVBucket": "150-200", "count": 7, "revenue": 1167.22, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-07", "AOVBucket": "200-500", "count": 2, "revenue": 520.539989, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-08", "AOVBucket": "<5", "count": 5, "revenue": 4.47, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-08", "AOVBucket": "5-10", "count": 243, "revenue": 2086.439999, "avgShipping": 1.5814814814814815, "pctFreeShip": 0.012345679012345678}, {"YearMonth": "2022-08", "AOVBucket": "10-15", "count": 820, "revenue": 10671.489999, "avgShipping": 2.113231707317073, "pctFreeShip": 0.003658536585365854}, {"YearMonth": "2022-08", "AOVBucket": "15-20", "count": 761, "revenue": 13436.88993, "avgShipping": 1.0251642575558477, "pctFreeShip": 0.633377135348226}, {"YearMonth": "2022-08", "AOVBucket": "20-25", "count": 739, "revenue": 16651.289857, "avgShipping": 1.4043301759133964, "pctFreeShip": 0.5385656292286874}, {"YearMonth": "2022-08", "AOVBucket": "25-30", "count": 487, "revenue": 13312.630003, "avgShipping": 1.1926078028747435, "pctFreeShip": 0.6242299794661191}, {"YearMonth": "2022-08", "AOVBucket": "30-35", "count": 323, "revenue": 10480.599959, "avgShipping": 1.495201238390093, "pctFreeShip": 0.5170278637770898}, {"YearMonth": "2022-08", "AOVBucket": "35-40", "count": 209, "revenue": 7849.489907, "avgShipping": 1.3303827751196173, "pctFreeShip": 0.5933014354066986}, {"YearMonth": "2022-08", "AOVBucket": "40-50", "count": 236, "revenue": 10554.449916, "avgShipping": 1.5985169491525424, "pctFreeShip": 0.5169491525423728}, {"YearMonth": "2022-08", "AOVBucket": "50-60", "count": 168, "revenue": 9152.440018, "avgShipping": 1.7267857142857144, "pctFreeShip": 0.4880952380952381}, {"YearMonth": "2022-08", "AOVBucket": "60-75", "count": 107, "revenue": 7070.349979, "avgShipping": 1.6210280373831778, "pctFreeShip": 0.5514018691588785}, {"YearMonth": "2022-08", "AOVBucket": "75-100", "count": 86, "revenue": 7215.589976, "avgShipping": 0.5918604651162791, "pctFreeShip": 0.9069767441860465}, {"YearMonth": "2022-08", "AOVBucket": "100-150", "count": 41, "revenue": 4783.120018, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-08", "AOVBucket": "150-200", "count": 6, "revenue": 1027.9400190000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-08", "AOVBucket": "200-500", "count": 3, "revenue": 755.039992, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-08", "AOVBucket": "500+", "count": 1, "revenue": 517.650009, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-09", "AOVBucket": "<5", "count": 4, "revenue": 4.48, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-09", "AOVBucket": "5-10", "count": 302, "revenue": 2521.22, "avgShipping": 1.3678807947019869, "pctFreeShip": 0.006622516556291391}, {"YearMonth": "2022-09", "AOVBucket": "10-15", "count": 689, "revenue": 8721.360001, "avgShipping": 1.8716255442670537, "pctFreeShip": 0.002902757619738752}, {"YearMonth": "2022-09", "AOVBucket": "15-20", "count": 823, "revenue": 14422.029912, "avgShipping": 0.8504252733900364, "pctFreeShip": 0.675577156743621}, {"YearMonth": "2022-09", "AOVBucket": "20-25", "count": 612, "revenue": 13823.649926, "avgShipping": 1.0108660130718956, "pctFreeShip": 0.6699346405228758}, {"YearMonth": "2022-09", "AOVBucket": "25-30", "count": 466, "revenue": 12707.930022, "avgShipping": 0.7923819742489271, "pctFreeShip": 0.7446351931330472}, {"YearMonth": "2022-09", "AOVBucket": "30-35", "count": 294, "revenue": 9532.089943, "avgShipping": 1.195748299319728, "pctFreeShip": 0.6156462585034014}, {"YearMonth": "2022-09", "AOVBucket": "35-40", "count": 242, "revenue": 9084.709922, "avgShipping": 1.0636363636363637, "pctFreeShip": 0.6776859504132231}, {"YearMonth": "2022-09", "AOVBucket": "40-50", "count": 222, "revenue": 9834.309931, "avgShipping": 1.231981981981982, "pctFreeShip": 0.6171171171171171}, {"YearMonth": "2022-09", "AOVBucket": "50-60", "count": 142, "revenue": 7726.820008, "avgShipping": 1.1140845070422536, "pctFreeShip": 0.6549295774647887}, {"YearMonth": "2022-09", "AOVBucket": "60-75", "count": 112, "revenue": 7464.859966, "avgShipping": 1.5915178571428572, "pctFreeShip": 0.5982142857142857}, {"YearMonth": "2022-09", "AOVBucket": "75-100", "count": 78, "revenue": 6622.999967, "avgShipping": 0.28525641025641024, "pctFreeShip": 0.9230769230769231}, {"YearMonth": "2022-09", "AOVBucket": "100-150", "count": 43, "revenue": 4999.310005, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-09", "AOVBucket": "150-200", "count": 10, "revenue": 1725.630013, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-09", "AOVBucket": "200-500", "count": 6, "revenue": 1304.099994, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-10", "AOVBucket": "<5", "count": 16, "revenue": 4.47, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-10", "AOVBucket": "5-10", "count": 317, "revenue": 2678.47, "avgShipping": 1.3720820189274447, "pctFreeShip": 0.0031545741324921135}, {"YearMonth": "2022-10", "AOVBucket": "10-15", "count": 762, "revenue": 9710.349999, "avgShipping": 1.70498687664042, "pctFreeShip": 0.0013123359580052493}, {"YearMonth": "2022-10", "AOVBucket": "15-20", "count": 936, "revenue": 16319.499875, "avgShipping": 0.844017094017094, "pctFreeShip": 0.6420940170940171}, {"YearMonth": "2022-10", "AOVBucket": "20-25", "count": 619, "revenue": 13976.119922, "avgShipping": 1.101534733441034, "pctFreeShip": 0.6639741518578353}, {"YearMonth": "2022-10", "AOVBucket": "25-30", "count": 453, "revenue": 12505.559979, "avgShipping": 1.1486754966887418, "pctFreeShip": 0.6821192052980133}, {"YearMonth": "2022-10", "AOVBucket": "30-35", "count": 311, "revenue": 10092.099936999999, "avgShipping": 1.1035369774919617, "pctFreeShip": 0.6655948553054662}, {"YearMonth": "2022-10", "AOVBucket": "35-40", "count": 198, "revenue": 7421.729948, "avgShipping": 1.1603535353535352, "pctFreeShip": 0.6767676767676768}, {"YearMonth": "2022-10", "AOVBucket": "40-50", "count": 209, "revenue": 9343.849935, "avgShipping": 1.4557416267942584, "pctFreeShip": 0.6172248803827751}, {"YearMonth": "2022-10", "AOVBucket": "50-60", "count": 129, "revenue": 7071.529975, "avgShipping": 1.4589147286821706, "pctFreeShip": 0.5891472868217055}, {"YearMonth": "2022-10", "AOVBucket": "60-75", "count": 107, "revenue": 7107.219955, "avgShipping": 1.3878504672897196, "pctFreeShip": 0.6448598130841121}, {"YearMonth": "2022-10", "AOVBucket": "75-100", "count": 66, "revenue": 5584.390013, "avgShipping": 0.3613636363636364, "pctFreeShip": 0.9242424242424242}, {"YearMonth": "2022-10", "AOVBucket": "100-150", "count": 30, "revenue": 3597.239993, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-10", "AOVBucket": "150-200", "count": 6, "revenue": 1052.289995, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-10", "AOVBucket": "200-500", "count": 3, "revenue": 981.4699820000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-11", "AOVBucket": "<5", "count": 14, "revenue": 3.85, "avgShipping": 0.21071428571428572, "pctFreeShip": 0.9285714285714286}, {"YearMonth": "2022-11", "AOVBucket": "5-10", "count": 324, "revenue": 2727.349999, "avgShipping": 1.3219135802469135, "pctFreeShip": 0.0030864197530864196}, {"YearMonth": "2022-11", "AOVBucket": "10-15", "count": 694, "revenue": 8709.339998, "avgShipping": 1.7703170028818447, "pctFreeShip": 0.001440922190201729}, {"YearMonth": "2022-11", "AOVBucket": "15-20", "count": 818, "revenue": 14514.479913, "avgShipping": 0.9072127139364303, "pctFreeShip": 0.6919315403422983}, {"YearMonth": "2022-11", "AOVBucket": "20-25", "count": 673, "revenue": 15046.519898999999, "avgShipping": 1.049702823179792, "pctFreeShip": 0.6968796433878157}, {"YearMonth": "2022-11", "AOVBucket": "25-30", "count": 691, "revenue": 18900.040006, "avgShipping": 0.7991316931982635, "pctFreeShip": 0.7916063675832128}, {"YearMonth": "2022-11", "AOVBucket": "30-35", "count": 418, "revenue": 13548.519906, "avgShipping": 1.2383971291866027, "pctFreeShip": 0.6650717703349283}, {"YearMonth": "2022-11", "AOVBucket": "35-40", "count": 273, "revenue": 10198.789913, "avgShipping": 1.245054945054945, "pctFreeShip": 0.673992673992674}, {"YearMonth": "2022-11", "AOVBucket": "40-50", "count": 283, "revenue": 12659.449953, "avgShipping": 1.4330388692579505, "pctFreeShip": 0.6395759717314488}, {"YearMonth": "2022-11", "AOVBucket": "50-60", "count": 199, "revenue": 10821.249962, "avgShipping": 1.079145728643216, "pctFreeShip": 0.6884422110552764}, {"YearMonth": "2022-11", "AOVBucket": "60-75", "count": 139, "revenue": 9180.499953, "avgShipping": 1.3212230215827339, "pctFreeShip": 0.6187050359712231}, {"YearMonth": "2022-11", "AOVBucket": "75-100", "count": 107, "revenue": 9006.069982, "avgShipping": 0.585981308411215, "pctFreeShip": 0.8878504672897196}, {"YearMonth": "2022-11", "AOVBucket": "100-150", "count": 51, "revenue": 6122.339996, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-11", "AOVBucket": "150-200", "count": 14, "revenue": 2385.780014, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-11", "AOVBucket": "200-500", "count": 9, "revenue": 2250.020006, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-12", "AOVBucket": "<5", "count": 14, "revenue": 7.960000000000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-12", "AOVBucket": "5-10", "count": 227, "revenue": 1909.01, "avgShipping": 1.9235682819383262, "pctFreeShip": 0.013215859030837005}, {"YearMonth": "2022-12", "AOVBucket": "10-15", "count": 588, "revenue": 7452.95, "avgShipping": 2.3014455782312924, "pctFreeShip": 0.0017006802721088435}, {"YearMonth": "2022-12", "AOVBucket": "15-20", "count": 513, "revenue": 9107.06997, "avgShipping": 2.131286549707603, "pctFreeShip": 0.26900584795321636}, {"YearMonth": "2022-12", "AOVBucket": "20-25", "count": 731, "revenue": 16367.739798999999, "avgShipping": 1.1723666210670314, "pctFreeShip": 0.6073871409028728}, {"YearMonth": "2022-12", "AOVBucket": "25-30", "count": 545, "revenue": 14982.349769, "avgShipping": 1.3328440366972476, "pctFreeShip": 0.6642201834862386}, {"YearMonth": "2022-12", "AOVBucket": "30-35", "count": 284, "revenue": 9206.279922, "avgShipping": 1.509330985915493, "pctFreeShip": 0.5915492957746479}, {"YearMonth": "2022-12", "AOVBucket": "35-40", "count": 219, "revenue": 8212.919883999999, "avgShipping": 1.773972602739726, "pctFreeShip": 0.5753424657534246}, {"YearMonth": "2022-12", "AOVBucket": "40-50", "count": 249, "revenue": 11140.189855999999, "avgShipping": 1.5373493975903616, "pctFreeShip": 0.6144578313253012}, {"YearMonth": "2022-12", "AOVBucket": "50-60", "count": 118, "revenue": 6431.06995, "avgShipping": 1.725, "pctFreeShip": 0.5423728813559322}, {"YearMonth": "2022-12", "AOVBucket": "60-75", "count": 105, "revenue": 7044.799936, "avgShipping": 1.7242857142857144, "pctFreeShip": 0.5619047619047619}, {"YearMonth": "2022-12", "AOVBucket": "75-100", "count": 69, "revenue": 5839.9300140000005, "avgShipping": 0.7557971014492754, "pctFreeShip": 0.8260869565217391}, {"YearMonth": "2022-12", "AOVBucket": "100-150", "count": 36, "revenue": 4371.809968, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-12", "AOVBucket": "150-200", "count": 3, "revenue": 523.349991, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2022-12", "AOVBucket": "200-500", "count": 2, "revenue": 524.040011, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-01", "AOVBucket": "<5", "count": 20, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-01", "AOVBucket": "5-10", "count": 313, "revenue": 2574.52, "avgShipping": 2.2824281150159744, "pctFreeShip": 0.003194888178913738}, {"YearMonth": "2023-01", "AOVBucket": "10-15", "count": 1147, "revenue": 14016.19, "avgShipping": 2.4370095902353968, "pctFreeShip": 0.0017436791630340018}, {"YearMonth": "2023-01", "AOVBucket": "15-20", "count": 853, "revenue": 14918.51, "avgShipping": 2.548886283704572, "pctFreeShip": 0.0011723329425556857}, {"YearMonth": "2023-01", "AOVBucket": "20-25", "count": 1218, "revenue": 26891.48974, "avgShipping": 1.3357963875205254, "pctFreeShip": 0.5114942528735632}, {"YearMonth": "2023-01", "AOVBucket": "25-30", "count": 845, "revenue": 22949.309663, "avgShipping": 0.9153254437869823, "pctFreeShip": 0.7408284023668639}, {"YearMonth": "2023-01", "AOVBucket": "30-35", "count": 475, "revenue": 15381.729855, "avgShipping": 1.0763157894736841, "pctFreeShip": 0.6968421052631579}, {"YearMonth": "2023-01", "AOVBucket": "35-40", "count": 365, "revenue": 13543.759885, "avgShipping": 1.2658904109589042, "pctFreeShip": 0.6520547945205479}, {"YearMonth": "2023-01", "AOVBucket": "40-50", "count": 412, "revenue": 18327.829841, "avgShipping": 1.270873786407767, "pctFreeShip": 0.6553398058252428}, {"YearMonth": "2023-01", "AOVBucket": "50-60", "count": 279, "revenue": 15149.389879, "avgShipping": 1.185125448028674, "pctFreeShip": 0.6810035842293907}, {"YearMonth": "2023-01", "AOVBucket": "60-75", "count": 188, "revenue": 12486.289963, "avgShipping": 1.192553191489362, "pctFreeShip": 0.648936170212766}, {"YearMonth": "2023-01", "AOVBucket": "75-100", "count": 136, "revenue": 11430.009977, "avgShipping": 0.31066176470588236, "pctFreeShip": 0.9264705882352942}, {"YearMonth": "2023-01", "AOVBucket": "100-150", "count": 66, "revenue": 7857.169975, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-01", "AOVBucket": "150-200", "count": 19, "revenue": 3149.050012, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-01", "AOVBucket": "200-500", "count": 7, "revenue": 1796.189985, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-02", "AOVBucket": "<5", "count": 17, "revenue": 4.72, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-02", "AOVBucket": "5-10", "count": 171, "revenue": 1464.05, "avgShipping": 2.108479532163743, "pctFreeShip": 0.011695906432748537}, {"YearMonth": "2023-02", "AOVBucket": "10-15", "count": 663, "revenue": 8531.179999, "avgShipping": 2.2575414781297134, "pctFreeShip": 0.004524886877828055}, {"YearMonth": "2023-02", "AOVBucket": "15-20", "count": 579, "revenue": 10324.899979, "avgShipping": 2.4809153713298793, "pctFreeShip": 0.0}, {"YearMonth": "2023-02", "AOVBucket": "20-25", "count": 737, "revenue": 16382.519882, "avgShipping": 1.15359565807327, "pctFreeShip": 0.6173677069199457}, {"YearMonth": "2023-02", "AOVBucket": "25-30", "count": 454, "revenue": 12551.639822, "avgShipping": 0.7633259911894273, "pctFreeShip": 0.8193832599118943}, {"YearMonth": "2023-02", "AOVBucket": "30-35", "count": 294, "revenue": 9574.429967, "avgShipping": 1.0566326530612247, "pctFreeShip": 0.7414965986394558}, {"YearMonth": "2023-02", "AOVBucket": "35-40", "count": 222, "revenue": 8346.739912, "avgShipping": 1.2193693693693692, "pctFreeShip": 0.7117117117117117}, {"YearMonth": "2023-02", "AOVBucket": "40-50", "count": 207, "revenue": 9252.829959, "avgShipping": 1.6106280193236717, "pctFreeShip": 0.6328502415458938}, {"YearMonth": "2023-02", "AOVBucket": "50-60", "count": 96, "revenue": 5232.709957, "avgShipping": 1.4572916666666667, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2023-02", "AOVBucket": "60-75", "count": 78, "revenue": 5208.369987, "avgShipping": 1.625, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2023-02", "AOVBucket": "75-100", "count": 55, "revenue": 4754.269981, "avgShipping": 0.6818181818181818, "pctFreeShip": 0.9090909090909091}, {"YearMonth": "2023-02", "AOVBucket": "100-150", "count": 23, "revenue": 2750.860007, "avgShipping": 0.32608695652173914, "pctFreeShip": 0.9565217391304348}, {"YearMonth": "2023-02", "AOVBucket": "150-200", "count": 3, "revenue": 514.3000079999999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-02", "AOVBucket": "200-500", "count": 1, "revenue": 257.450008, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-03", "AOVBucket": "<5", "count": 17, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-03", "AOVBucket": "5-10", "count": 241, "revenue": 2068.18, "avgShipping": 2.2742738589211617, "pctFreeShip": 0.012448132780082987}, {"YearMonth": "2023-03", "AOVBucket": "10-15", "count": 860, "revenue": 11075.099999, "avgShipping": 2.3257558139534886, "pctFreeShip": 0.0034883720930232558}, {"YearMonth": "2023-03", "AOVBucket": "15-20", "count": 662, "revenue": 11908.769984, "avgShipping": 2.3216012084592146, "pctFreeShip": 0.0}, {"YearMonth": "2023-03", "AOVBucket": "20-25", "count": 490, "revenue": 11098.349872, "avgShipping": 2.472857142857143, "pctFreeShip": 0.00816326530612245}, {"YearMonth": "2023-03", "AOVBucket": "25-30", "count": 424, "revenue": 11815.599987, "avgShipping": 2.335731132075472, "pctFreeShip": 0.02122641509433962}, {"YearMonth": "2023-03", "AOVBucket": "30-35", "count": 607, "revenue": 19537.400022, "avgShipping": 0.9929159802306425, "pctFreeShip": 0.642504118616145}, {"YearMonth": "2023-03", "AOVBucket": "35-40", "count": 356, "revenue": 13334.119897999999, "avgShipping": 0.8387640449438203, "pctFreeShip": 0.7471910112359551}, {"YearMonth": "2023-03", "AOVBucket": "40-50", "count": 320, "revenue": 14279.669909, "avgShipping": 0.9665625, "pctFreeShip": 0.734375}, {"YearMonth": "2023-03", "AOVBucket": "50-60", "count": 178, "revenue": 9733.219966999999, "avgShipping": 1.0078651685393258, "pctFreeShip": 0.7078651685393258}, {"YearMonth": "2023-03", "AOVBucket": "60-75", "count": 114, "revenue": 7542.790012, "avgShipping": 1.2578947368421054, "pctFreeShip": 0.6228070175438597}, {"YearMonth": "2023-03", "AOVBucket": "75-100", "count": 76, "revenue": 6524.239997, "avgShipping": 1.5157894736842106, "pctFreeShip": 0.6447368421052632}, {"YearMonth": "2023-03", "AOVBucket": "100-150", "count": 33, "revenue": 3924.470011, "avgShipping": 0.41969696969696973, "pctFreeShip": 0.9090909090909091}, {"YearMonth": "2023-03", "AOVBucket": "150-200", "count": 8, "revenue": 1373.250003, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-03", "AOVBucket": "200-500", "count": 8, "revenue": 2040.950001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-04", "AOVBucket": "<5", "count": 7, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-04", "AOVBucket": "5-10", "count": 151, "revenue": 1290.07, "avgShipping": 2.242384105960265, "pctFreeShip": 0.019867549668874173}, {"YearMonth": "2023-04", "AOVBucket": "10-15", "count": 641, "revenue": 8446.12, "avgShipping": 2.360374414976599, "pctFreeShip": 0.0015600624024961}, {"YearMonth": "2023-04", "AOVBucket": "15-20", "count": 409, "revenue": 7414.660001, "avgShipping": 2.4073349633251833, "pctFreeShip": 0.0024449877750611247}, {"YearMonth": "2023-04", "AOVBucket": "20-25", "count": 304, "revenue": 6914.799929, "avgShipping": 2.4238486842105265, "pctFreeShip": 0.003289473684210526}, {"YearMonth": "2023-04", "AOVBucket": "25-30", "count": 269, "revenue": 7380.959957, "avgShipping": 2.555947955390335, "pctFreeShip": 0.0}, {"YearMonth": "2023-04", "AOVBucket": "30-35", "count": 439, "revenue": 14148.890035, "avgShipping": 1.0211845102505694, "pctFreeShip": 0.6492027334851936}, {"YearMonth": "2023-04", "AOVBucket": "35-40", "count": 217, "revenue": 8140.799927999999, "avgShipping": 0.7391705069124425, "pctFreeShip": 0.7603686635944701}, {"YearMonth": "2023-04", "AOVBucket": "40-50", "count": 191, "revenue": 8506.639943, "avgShipping": 1.2219895287958116, "pctFreeShip": 0.6230366492146597}, {"YearMonth": "2023-04", "AOVBucket": "50-60", "count": 103, "revenue": 5677.479967, "avgShipping": 1.145631067961165, "pctFreeShip": 0.6116504854368932}, {"YearMonth": "2023-04", "AOVBucket": "60-75", "count": 104, "revenue": 6855.149998, "avgShipping": 1.393269230769231, "pctFreeShip": 0.5961538461538461}, {"YearMonth": "2023-04", "AOVBucket": "75-100", "count": 50, "revenue": 4245.820009, "avgShipping": 1.2610000000000001, "pctFreeShip": 0.62}, {"YearMonth": "2023-04", "AOVBucket": "100-150", "count": 31, "revenue": 3558.519993, "avgShipping": 0.1903225806451613, "pctFreeShip": 0.9354838709677419}, {"YearMonth": "2023-04", "AOVBucket": "150-200", "count": 4, "revenue": 644.1599980000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-04", "AOVBucket": "200-500", "count": 3, "revenue": 946.289978, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-05", "AOVBucket": "<5", "count": 17, "revenue": 9.75, "avgShipping": 0.5176470588235295, "pctFreeShip": 0.7647058823529411}, {"YearMonth": "2023-05", "AOVBucket": "5-10", "count": 165, "revenue": 1429.78, "avgShipping": 2.2954545454545454, "pctFreeShip": 0.0}, {"YearMonth": "2023-05", "AOVBucket": "10-15", "count": 686, "revenue": 9057.09, "avgShipping": 2.3581632653061226, "pctFreeShip": 0.0}, {"YearMonth": "2023-05", "AOVBucket": "15-20", "count": 418, "revenue": 7523.109998, "avgShipping": 2.36866028708134, "pctFreeShip": 0.0}, {"YearMonth": "2023-05", "AOVBucket": "20-25", "count": 426, "revenue": 9739.77986, "avgShipping": 2.414906103286385, "pctFreeShip": 0.002347417840375587}, {"YearMonth": "2023-05", "AOVBucket": "25-30", "count": 430, "revenue": 11883.399998, "avgShipping": 2.4267441860465118, "pctFreeShip": 0.0}, {"YearMonth": "2023-05", "AOVBucket": "30-35", "count": 565, "revenue": 18182.839995, "avgShipping": 1.0313274336283187, "pctFreeShip": 0.6353982300884956}, {"YearMonth": "2023-05", "AOVBucket": "35-40", "count": 317, "revenue": 11887.919877, "avgShipping": 1.007255520504732, "pctFreeShip": 0.7034700315457413}, {"YearMonth": "2023-05", "AOVBucket": "40-50", "count": 326, "revenue": 14647.509915, "avgShipping": 1.0042944785276076, "pctFreeShip": 0.7177914110429447}, {"YearMonth": "2023-05", "AOVBucket": "50-60", "count": 153, "revenue": 8406.199977, "avgShipping": 1.1084967320261438, "pctFreeShip": 0.6862745098039216}, {"YearMonth": "2023-05", "AOVBucket": "60-75", "count": 150, "revenue": 10027.589977, "avgShipping": 1.175, "pctFreeShip": 0.6333333333333333}, {"YearMonth": "2023-05", "AOVBucket": "75-100", "count": 85, "revenue": 7144.699977, "avgShipping": 1.1147058823529412, "pctFreeShip": 0.7058823529411765}, {"YearMonth": "2023-05", "AOVBucket": "100-150", "count": 47, "revenue": 5517.760014, "avgShipping": 0.18829787234042555, "pctFreeShip": 0.9361702127659575}, {"YearMonth": "2023-05", "AOVBucket": "150-200", "count": 6, "revenue": 1108.430007, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-05", "AOVBucket": "200-500", "count": 4, "revenue": 980.499993, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-06", "AOVBucket": "<5", "count": 9, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-06", "AOVBucket": "5-10", "count": 156, "revenue": 1358.89, "avgShipping": 2.3217948717948715, "pctFreeShip": 0.0}, {"YearMonth": "2023-06", "AOVBucket": "10-15", "count": 599, "revenue": 7903.919999, "avgShipping": 2.328964941569282, "pctFreeShip": 0.0}, {"YearMonth": "2023-06", "AOVBucket": "15-20", "count": 377, "revenue": 6840.25, "avgShipping": 2.3850132625994696, "pctFreeShip": 0.0}, {"YearMonth": "2023-06", "AOVBucket": "20-25", "count": 323, "revenue": 7403.1299, "avgShipping": 2.4391640866873066, "pctFreeShip": 0.0}, {"YearMonth": "2023-06", "AOVBucket": "25-30", "count": 385, "revenue": 10514.859966, "avgShipping": 2.427922077922078, "pctFreeShip": 0.0}, {"YearMonth": "2023-06", "AOVBucket": "30-35", "count": 586, "revenue": 18840.309809, "avgShipping": 1.0329351535836178, "pctFreeShip": 0.6006825938566553}, {"YearMonth": "2023-06", "AOVBucket": "35-40", "count": 301, "revenue": 11267.819895999999, "avgShipping": 0.686046511627907, "pctFreeShip": 0.7674418604651163}, {"YearMonth": "2023-06", "AOVBucket": "40-50", "count": 272, "revenue": 12083.599922, "avgShipping": 0.9814338235294119, "pctFreeShip": 0.7022058823529411}, {"YearMonth": "2023-06", "AOVBucket": "50-60", "count": 180, "revenue": 9852.239961, "avgShipping": 0.9730555555555556, "pctFreeShip": 0.6833333333333333}, {"YearMonth": "2023-06", "AOVBucket": "60-75", "count": 102, "revenue": 6813.839951, "avgShipping": 0.9073529411764707, "pctFreeShip": 0.7156862745098039}, {"YearMonth": "2023-06", "AOVBucket": "75-100", "count": 83, "revenue": 7072.019983, "avgShipping": 1.0439759036144578, "pctFreeShip": 0.6746987951807228}, {"YearMonth": "2023-06", "AOVBucket": "100-150", "count": 42, "revenue": 4785.66998, "avgShipping": 0.23690476190476192, "pctFreeShip": 0.9761904761904762}, {"YearMonth": "2023-06", "AOVBucket": "150-200", "count": 9, "revenue": 1509.020037, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-06", "AOVBucket": "200-500", "count": 3, "revenue": 787.909987, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-07", "AOVBucket": "<5", "count": 13, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-07", "AOVBucket": "5-10", "count": 161, "revenue": 1368.81, "avgShipping": 2.2481366459627328, "pctFreeShip": 0.0}, {"YearMonth": "2023-07", "AOVBucket": "10-15", "count": 861, "revenue": 10907.409998000001, "avgShipping": 2.363472706155633, "pctFreeShip": 0.0}, {"YearMonth": "2023-07", "AOVBucket": "15-20", "count": 596, "revenue": 10601.499998, "avgShipping": 2.366191275167785, "pctFreeShip": 0.0016778523489932886}, {"YearMonth": "2023-07", "AOVBucket": "20-25", "count": 473, "revenue": 10667.219886, "avgShipping": 2.347463002114165, "pctFreeShip": 0.0}, {"YearMonth": "2023-07", "AOVBucket": "25-30", "count": 426, "revenue": 11683.559943, "avgShipping": 2.3607981220657277, "pctFreeShip": 0.0}, {"YearMonth": "2023-07", "AOVBucket": "30-35", "count": 605, "revenue": 19342.339845, "avgShipping": 1.026694214876033, "pctFreeShip": 0.5752066115702479}, {"YearMonth": "2023-07", "AOVBucket": "35-40", "count": 322, "revenue": 12002.419912, "avgShipping": 0.7340062111801243, "pctFreeShip": 0.7732919254658385}, {"YearMonth": "2023-07", "AOVBucket": "40-50", "count": 370, "revenue": 16393.339859, "avgShipping": 0.9187837837837839, "pctFreeShip": 0.727027027027027}, {"YearMonth": "2023-07", "AOVBucket": "50-60", "count": 213, "revenue": 11657.109914, "avgShipping": 1.054225352112676, "pctFreeShip": 0.676056338028169}, {"YearMonth": "2023-07", "AOVBucket": "60-75", "count": 161, "revenue": 10675.719938, "avgShipping": 0.9664596273291927, "pctFreeShip": 0.7018633540372671}, {"YearMonth": "2023-07", "AOVBucket": "75-100", "count": 98, "revenue": 8407.029957, "avgShipping": 1.064795918367347, "pctFreeShip": 0.6632653061224489}, {"YearMonth": "2023-07", "AOVBucket": "100-150", "count": 49, "revenue": 5746.879964, "avgShipping": 0.263265306122449, "pctFreeShip": 0.9591836734693877}, {"YearMonth": "2023-07", "AOVBucket": "150-200", "count": 15, "revenue": 2569.999975, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-07", "AOVBucket": "200-500", "count": 8, "revenue": 2097.62999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-08", "AOVBucket": "<5", "count": 11, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-08", "AOVBucket": "5-10", "count": 141, "revenue": 1239.77, "avgShipping": 2.375531914893617, "pctFreeShip": 0.0}, {"YearMonth": "2023-08", "AOVBucket": "10-15", "count": 613, "revenue": 7950.31, "avgShipping": 2.323572593800979, "pctFreeShip": 0.0}, {"YearMonth": "2023-08", "AOVBucket": "15-20", "count": 520, "revenue": 9239.049998, "avgShipping": 2.4096153846153845, "pctFreeShip": 0.0}, {"YearMonth": "2023-08", "AOVBucket": "20-25", "count": 392, "revenue": 8918.669884, "avgShipping": 2.478061224489796, "pctFreeShip": 0.0}, {"YearMonth": "2023-08", "AOVBucket": "25-30", "count": 328, "revenue": 8991.469966, "avgShipping": 2.5414634146341464, "pctFreeShip": 0.0}, {"YearMonth": "2023-08", "AOVBucket": "30-35", "count": 370, "revenue": 12052.640011, "avgShipping": 0.8690540540540541, "pctFreeShip": 0.7054054054054054}, {"YearMonth": "2023-08", "AOVBucket": "35-40", "count": 245, "revenue": 9185.039939, "avgShipping": 1.1648979591836737, "pctFreeShip": 0.6244897959183674}, {"YearMonth": "2023-08", "AOVBucket": "40-50", "count": 254, "revenue": 11341.33993, "avgShipping": 1.0466535433070867, "pctFreeShip": 0.6732283464566929}, {"YearMonth": "2023-08", "AOVBucket": "50-60", "count": 137, "revenue": 7463.629976, "avgShipping": 1.22992700729927, "pctFreeShip": 0.635036496350365}, {"YearMonth": "2023-08", "AOVBucket": "60-75", "count": 121, "revenue": 8053.669973, "avgShipping": 1.4657024793388431, "pctFreeShip": 0.5619834710743802}, {"YearMonth": "2023-08", "AOVBucket": "75-100", "count": 68, "revenue": 5822.010026, "avgShipping": 1.149264705882353, "pctFreeShip": 0.75}, {"YearMonth": "2023-08", "AOVBucket": "100-150", "count": 35, "revenue": 4058.559989, "avgShipping": 0.3685714285714286, "pctFreeShip": 0.9428571428571428}, {"YearMonth": "2023-08", "AOVBucket": "150-200", "count": 3, "revenue": 505.590002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-08", "AOVBucket": "200-500", "count": 4, "revenue": 934.439989, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-09", "AOVBucket": "<5", "count": 18, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-09", "AOVBucket": "5-10", "count": 116, "revenue": 1036.7, "avgShipping": 2.6043103448275864, "pctFreeShip": 0.02586206896551724}, {"YearMonth": "2023-09", "AOVBucket": "10-15", "count": 479, "revenue": 6320.2699999999995, "avgShipping": 2.589874739039666, "pctFreeShip": 0.018789144050104383}, {"YearMonth": "2023-09", "AOVBucket": "15-20", "count": 488, "revenue": 8584.889998999999, "avgShipping": 2.7892418032786885, "pctFreeShip": 0.01639344262295082}, {"YearMonth": "2023-09", "AOVBucket": "20-25", "count": 413, "revenue": 9162.699947, "avgShipping": 2.8107748184019368, "pctFreeShip": 0.0}, {"YearMonth": "2023-09", "AOVBucket": "25-30", "count": 343, "revenue": 9389.039931, "avgShipping": 2.845772594752187, "pctFreeShip": 0.0029154518950437317}, {"YearMonth": "2023-09", "AOVBucket": "30-35", "count": 592, "revenue": 19243.419955999998, "avgShipping": 0.8155405405405406, "pctFreeShip": 0.768581081081081}, {"YearMonth": "2023-09", "AOVBucket": "35-40", "count": 353, "revenue": 13158.33995, "avgShipping": 0.8708215297450426, "pctFreeShip": 0.7507082152974505}, {"YearMonth": "2023-09", "AOVBucket": "40-50", "count": 321, "revenue": 14257.009958, "avgShipping": 0.9436137071651092, "pctFreeShip": 0.7538940809968847}, {"YearMonth": "2023-09", "AOVBucket": "50-60", "count": 152, "revenue": 8308.499951, "avgShipping": 1.1865131578947368, "pctFreeShip": 0.6973684210526315}, {"YearMonth": "2023-09", "AOVBucket": "60-75", "count": 116, "revenue": 7740.060007, "avgShipping": 1.2801724137931034, "pctFreeShip": 0.7068965517241379}, {"YearMonth": "2023-09", "AOVBucket": "75-100", "count": 76, "revenue": 6606.219987, "avgShipping": 1.4717105263157897, "pctFreeShip": 0.6578947368421053}, {"YearMonth": "2023-09", "AOVBucket": "100-150", "count": 50, "revenue": 6261.899974, "avgShipping": 0.77, "pctFreeShip": 0.92}, {"YearMonth": "2023-09", "AOVBucket": "150-200", "count": 7, "revenue": 1187.229996, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-09", "AOVBucket": "200-500", "count": 4, "revenue": 1067.1799959999998, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-10", "AOVBucket": "<5", "count": 21, "revenue": 2.5, "avgShipping": 0.11904761904761904, "pctFreeShip": 0.9523809523809523}, {"YearMonth": "2023-10", "AOVBucket": "5-10", "count": 121, "revenue": 1102.06, "avgShipping": 2.7148760330578514, "pctFreeShip": 0.01652892561983471}, {"YearMonth": "2023-10", "AOVBucket": "10-15", "count": 498, "revenue": 6500.5599999999995, "avgShipping": 2.71285140562249, "pctFreeShip": 0.040160642570281124}, {"YearMonth": "2023-10", "AOVBucket": "15-20", "count": 517, "revenue": 8899.989999, "avgShipping": 2.836460348162476, "pctFreeShip": 0.05609284332688588}, {"YearMonth": "2023-10", "AOVBucket": "20-25", "count": 404, "revenue": 8937.779933, "avgShipping": 2.931683168316832, "pctFreeShip": 0.012376237623762377}, {"YearMonth": "2023-10", "AOVBucket": "25-30", "count": 402, "revenue": 11028.629928, "avgShipping": 2.953358208955224, "pctFreeShip": 0.009950248756218905}, {"YearMonth": "2023-10", "AOVBucket": "30-35", "count": 670, "revenue": 21550.580007, "avgShipping": 0.808134328358209, "pctFreeShip": 0.7477611940298508}, {"YearMonth": "2023-10", "AOVBucket": "35-40", "count": 339, "revenue": 12689.079941, "avgShipping": 1.0676991150442479, "pctFreeShip": 0.7256637168141593}, {"YearMonth": "2023-10", "AOVBucket": "40-50", "count": 324, "revenue": 14395.809943, "avgShipping": 0.825462962962963, "pctFreeShip": 0.8055555555555556}, {"YearMonth": "2023-10", "AOVBucket": "50-60", "count": 162, "revenue": 8848.799931, "avgShipping": 1.5608024691358025, "pctFreeShip": 0.6419753086419753}, {"YearMonth": "2023-10", "AOVBucket": "60-75", "count": 141, "revenue": 9392.830028, "avgShipping": 1.1734042553191488, "pctFreeShip": 0.7304964539007093}, {"YearMonth": "2023-10", "AOVBucket": "75-100", "count": 77, "revenue": 6592.999973, "avgShipping": 2.2006493506493503, "pctFreeShip": 0.5844155844155844}, {"YearMonth": "2023-10", "AOVBucket": "100-150", "count": 46, "revenue": 5371.059965, "avgShipping": 1.1706521739130435, "pctFreeShip": 0.8478260869565217}, {"YearMonth": "2023-10", "AOVBucket": "150-200", "count": 7, "revenue": 1206.450001, "avgShipping": 1.2142857142857142, "pctFreeShip": 0.8571428571428571}, {"YearMonth": "2023-10", "AOVBucket": "200-500", "count": 6, "revenue": 1415.699994, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-11", "AOVBucket": "<5", "count": 16, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-11", "AOVBucket": "5-10", "count": 87, "revenue": 773.72, "avgShipping": 2.6436781609195403, "pctFreeShip": 0.034482758620689655}, {"YearMonth": "2023-11", "AOVBucket": "10-15", "count": 336, "revenue": 4367.84, "avgShipping": 2.7023809523809526, "pctFreeShip": 0.047619047619047616}, {"YearMonth": "2023-11", "AOVBucket": "15-20", "count": 437, "revenue": 7585.7404, "avgShipping": 2.686270022883295, "pctFreeShip": 0.08466819221967964}, {"YearMonth": "2023-11", "AOVBucket": "20-25", "count": 343, "revenue": 7617.919943, "avgShipping": 2.9443148688046645, "pctFreeShip": 0.03206997084548105}, {"YearMonth": "2023-11", "AOVBucket": "25-30", "count": 380, "revenue": 10369.049915, "avgShipping": 2.846052631578947, "pctFreeShip": 0.007894736842105263}, {"YearMonth": "2023-11", "AOVBucket": "30-35", "count": 628, "revenue": 20192.719955, "avgShipping": 0.8469745222929936, "pctFreeShip": 0.7356687898089171}, {"YearMonth": "2023-11", "AOVBucket": "35-40", "count": 263, "revenue": 9821.569929, "avgShipping": 1.1458174904942966, "pctFreeShip": 0.7376425855513308}, {"YearMonth": "2023-11", "AOVBucket": "40-50", "count": 290, "revenue": 12969.660007, "avgShipping": 1.0993103448275863, "pctFreeShip": 0.7310344827586207}, {"YearMonth": "2023-11", "AOVBucket": "50-60", "count": 157, "revenue": 8546.009931, "avgShipping": 1.5378980891719745, "pctFreeShip": 0.6369426751592356}, {"YearMonth": "2023-11", "AOVBucket": "60-75", "count": 121, "revenue": 8047.709978, "avgShipping": 1.3830578512396694, "pctFreeShip": 0.6859504132231405}, {"YearMonth": "2023-11", "AOVBucket": "75-100", "count": 75, "revenue": 6272.340012, "avgShipping": 1.3126666666666666, "pctFreeShip": 0.7066666666666667}, {"YearMonth": "2023-11", "AOVBucket": "100-150", "count": 58, "revenue": 6795.909987, "avgShipping": 1.043103448275862, "pctFreeShip": 0.8275862068965517}, {"YearMonth": "2023-11", "AOVBucket": "150-200", "count": 9, "revenue": 1506.950004, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-11", "AOVBucket": "200-500", "count": 9, "revenue": 2257.370005, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-12", "AOVBucket": "<5", "count": 20, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-12", "AOVBucket": "5-10", "count": 81, "revenue": 728.23, "avgShipping": 2.4753086419753085, "pctFreeShip": 0.12345679012345678}, {"YearMonth": "2023-12", "AOVBucket": "10-15", "count": 426, "revenue": 5451.640001, "avgShipping": 2.3368544600938965, "pctFreeShip": 0.1807511737089202}, {"YearMonth": "2023-12", "AOVBucket": "15-20", "count": 433, "revenue": 7476.2699999999995, "avgShipping": 2.5018475750577367, "pctFreeShip": 0.16166281755196305}, {"YearMonth": "2023-12", "AOVBucket": "20-25", "count": 339, "revenue": 7569.020329, "avgShipping": 2.8871681415929205, "pctFreeShip": 0.058997050147492625}, {"YearMonth": "2023-12", "AOVBucket": "25-30", "count": 344, "revenue": 9448.909925, "avgShipping": 2.8174418604651166, "pctFreeShip": 0.061046511627906974}, {"YearMonth": "2023-12", "AOVBucket": "30-35", "count": 475, "revenue": 15425.219925, "avgShipping": 1.6761052631578948, "pctFreeShip": 0.1936842105263158}, {"YearMonth": "2023-12", "AOVBucket": "35-40", "count": 214, "revenue": 7984.409959, "avgShipping": 1.9679906542056076, "pctFreeShip": 0.08411214953271028}, {"YearMonth": "2023-12", "AOVBucket": "40-50", "count": 246, "revenue": 11026.899947, "avgShipping": 1.9827235772357723, "pctFreeShip": 0.07317073170731707}, {"YearMonth": "2023-12", "AOVBucket": "50-60", "count": 187, "revenue": 10202.88996, "avgShipping": 1.2176470588235295, "pctFreeShip": 0.7005347593582888}, {"YearMonth": "2023-12", "AOVBucket": "60-75", "count": 144, "revenue": 9588.609989, "avgShipping": 1.5677083333333333, "pctFreeShip": 0.6458333333333334}, {"YearMonth": "2023-12", "AOVBucket": "75-100", "count": 88, "revenue": 7615.930006, "avgShipping": 1.98125, "pctFreeShip": 0.5454545454545454}, {"YearMonth": "2023-12", "AOVBucket": "100-150", "count": 47, "revenue": 5574.950046, "avgShipping": 1.1159574468085107, "pctFreeShip": 0.8723404255319149}, {"YearMonth": "2023-12", "AOVBucket": "150-200", "count": 9, "revenue": 1503.199997, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2023-12", "AOVBucket": "200-500", "count": 4, "revenue": 1025.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-01", "AOVBucket": "<5", "count": 27, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-01", "AOVBucket": "5-10", "count": 152, "revenue": 1265.51, "avgShipping": 2.539473684210526, "pctFreeShip": 0.09210526315789473}, {"YearMonth": "2024-01", "AOVBucket": "10-15", "count": 661, "revenue": 8324.73, "avgShipping": 2.6096822995461424, "pctFreeShip": 0.07715582450832073}, {"YearMonth": "2024-01", "AOVBucket": "15-20", "count": 682, "revenue": 11810.359997, "avgShipping": 2.6995601173020525, "pctFreeShip": 0.0689149560117302}, {"YearMonth": "2024-01", "AOVBucket": "20-25", "count": 656, "revenue": 14890.436401, "avgShipping": 2.879420731707317, "pctFreeShip": 0.03201219512195122}, {"YearMonth": "2024-01", "AOVBucket": "25-30", "count": 451, "revenue": 12393.549841, "avgShipping": 2.672062084257206, "pctFreeShip": 0.10643015521064302}, {"YearMonth": "2024-01", "AOVBucket": "30-35", "count": 660, "revenue": 21336.849764, "avgShipping": 2.088030303030303, "pctFreeShip": 0.02727272727272727}, {"YearMonth": "2024-01", "AOVBucket": "35-40", "count": 264, "revenue": 9922.159971, "avgShipping": 1.6867424242424243, "pctFreeShip": 0.007575757575757576}, {"YearMonth": "2024-01", "AOVBucket": "40-50", "count": 400, "revenue": 17790.179961, "avgShipping": 1.621875, "pctFreeShip": 0.0275}, {"YearMonth": "2024-01", "AOVBucket": "50-60", "count": 394, "revenue": 21423.789875, "avgShipping": 0.6442893401015228, "pctFreeShip": 0.7918781725888325}, {"YearMonth": "2024-01", "AOVBucket": "60-75", "count": 214, "revenue": 14190.19992, "avgShipping": 1.0598130841121496, "pctFreeShip": 0.7523364485981309}, {"YearMonth": "2024-01", "AOVBucket": "75-100", "count": 122, "revenue": 10434.369975, "avgShipping": 1.0524590163934426, "pctFreeShip": 0.7786885245901639}, {"YearMonth": "2024-01", "AOVBucket": "100-150", "count": 99, "revenue": 11652.919973, "avgShipping": 0.5146464646464647, "pctFreeShip": 0.9292929292929293}, {"YearMonth": "2024-01", "AOVBucket": "150-200", "count": 13, "revenue": 2209.439985, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-01", "AOVBucket": "200-500", "count": 8, "revenue": 2377.210009, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-02", "AOVBucket": "<5", "count": 8, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-02", "AOVBucket": "5-10", "count": 73, "revenue": 667.63, "avgShipping": 2.0547945205479454, "pctFreeShip": 0.2602739726027397}, {"YearMonth": "2024-02", "AOVBucket": "10-15", "count": 321, "revenue": 4142.49, "avgShipping": 2.339563862928349, "pctFreeShip": 0.19003115264797507}, {"YearMonth": "2024-02", "AOVBucket": "15-20", "count": 475, "revenue": 8187.759999999999, "avgShipping": 2.4909473684210526, "pctFreeShip": 0.16421052631578947}, {"YearMonth": "2024-02", "AOVBucket": "20-25", "count": 342, "revenue": 7552.949939, "avgShipping": 2.774269005847953, "pctFreeShip": 0.07602339181286549}, {"YearMonth": "2024-02", "AOVBucket": "25-30", "count": 288, "revenue": 7925.499933, "avgShipping": 2.9972222222222222, "pctFreeShip": 0.041666666666666664}, {"YearMonth": "2024-02", "AOVBucket": "30-35", "count": 410, "revenue": 13383.589953, "avgShipping": 1.6735365853658537, "pctFreeShip": 0.1975609756097561}, {"YearMonth": "2024-02", "AOVBucket": "35-40", "count": 167, "revenue": 6295.989973, "avgShipping": 2.3907185628742513, "pctFreeShip": 0.017964071856287425}, {"YearMonth": "2024-02", "AOVBucket": "40-50", "count": 189, "revenue": 8432.469961, "avgShipping": 1.9616402116402116, "pctFreeShip": 0.042328042328042326}, {"YearMonth": "2024-02", "AOVBucket": "50-60", "count": 133, "revenue": 7195.299986, "avgShipping": 1.486842105263158, "pctFreeShip": 0.6015037593984962}, {"YearMonth": "2024-02", "AOVBucket": "60-75", "count": 108, "revenue": 7125.879971, "avgShipping": 1.2300925925925925, "pctFreeShip": 0.7129629629629629}, {"YearMonth": "2024-02", "AOVBucket": "75-100", "count": 60, "revenue": 5139.37, "avgShipping": 2.0233333333333334, "pctFreeShip": 0.5333333333333333}, {"YearMonth": "2024-02", "AOVBucket": "100-150", "count": 30, "revenue": 3602.239999, "avgShipping": 0.2833333333333333, "pctFreeShip": 0.9666666666666667}, {"YearMonth": "2024-02", "AOVBucket": "150-200", "count": 4, "revenue": 707.480006, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-02", "AOVBucket": "200-500", "count": 1, "revenue": 216.900002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-03", "AOVBucket": "<5", "count": 11, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-03", "AOVBucket": "5-10", "count": 95, "revenue": 883.13, "avgShipping": 2.5678947368421055, "pctFreeShip": 0.12631578947368421}, {"YearMonth": "2024-03", "AOVBucket": "10-15", "count": 415, "revenue": 5477.360001, "avgShipping": 2.637951807228916, "pctFreeShip": 0.15903614457831325}, {"YearMonth": "2024-03", "AOVBucket": "15-20", "count": 552, "revenue": 9605.749999, "avgShipping": 2.814673913043478, "pctFreeShip": 0.1213768115942029}, {"YearMonth": "2024-03", "AOVBucket": "20-25", "count": 379, "revenue": 8458.799936, "avgShipping": 3.1350923482849606, "pctFreeShip": 0.09234828496042216}, {"YearMonth": "2024-03", "AOVBucket": "25-30", "count": 348, "revenue": 9545.829911, "avgShipping": 3.2701149425287355, "pctFreeShip": 0.040229885057471264}, {"YearMonth": "2024-03", "AOVBucket": "30-35", "count": 418, "revenue": 13535.219958, "avgShipping": 2.09377990430622, "pctFreeShip": 0.14114832535885166}, {"YearMonth": "2024-03", "AOVBucket": "35-40", "count": 255, "revenue": 9482.949978999999, "avgShipping": 2.088039215686275, "pctFreeShip": 0.043137254901960784}, {"YearMonth": "2024-03", "AOVBucket": "40-50", "count": 298, "revenue": 13328.489948, "avgShipping": 2.499328859060403, "pctFreeShip": 0.020134228187919462}, {"YearMonth": "2024-03", "AOVBucket": "50-60", "count": 219, "revenue": 11957.879974, "avgShipping": 1.1358447488584476, "pctFreeShip": 0.6986301369863014}, {"YearMonth": "2024-03", "AOVBucket": "60-75", "count": 141, "revenue": 9296.970015, "avgShipping": 1.6450354609929079, "pctFreeShip": 0.6737588652482269}, {"YearMonth": "2024-03", "AOVBucket": "75-100", "count": 67, "revenue": 5764.530038, "avgShipping": 1.653731343283582, "pctFreeShip": 0.6268656716417911}, {"YearMonth": "2024-03", "AOVBucket": "100-150", "count": 48, "revenue": 5651.919999, "avgShipping": 0.8937499999999999, "pctFreeShip": 0.875}, {"YearMonth": "2024-03", "AOVBucket": "150-200", "count": 12, "revenue": 2087.849994, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-03", "AOVBucket": "200-500", "count": 4, "revenue": 965.879998, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-04", "AOVBucket": "<5", "count": 24, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-04", "AOVBucket": "5-10", "count": 104, "revenue": 977.13, "avgShipping": 2.697596153846154, "pctFreeShip": 0.14423076923076922}, {"YearMonth": "2024-04", "AOVBucket": "10-15", "count": 353, "revenue": 4676.130001, "avgShipping": 2.891926345609065, "pctFreeShip": 0.141643059490085}, {"YearMonth": "2024-04", "AOVBucket": "15-20", "count": 604, "revenue": 10502.7004, "avgShipping": 3.0278973509933778, "pctFreeShip": 0.11589403973509933}, {"YearMonth": "2024-04", "AOVBucket": "20-25", "count": 416, "revenue": 9324.009939, "avgShipping": 3.260336538461539, "pctFreeShip": 0.09615384615384616}, {"YearMonth": "2024-04", "AOVBucket": "25-30", "count": 386, "revenue": 10608.569956, "avgShipping": 3.406865284974094, "pctFreeShip": 0.04145077720207254}, {"YearMonth": "2024-04", "AOVBucket": "30-35", "count": 414, "revenue": 13431.969958, "avgShipping": 2.4059178743961356, "pctFreeShip": 0.12560386473429952}, {"YearMonth": "2024-04", "AOVBucket": "35-40", "count": 289, "revenue": 10708.880003, "avgShipping": 2.151038062283737, "pctFreeShip": 0.058823529411764705}, {"YearMonth": "2024-04", "AOVBucket": "40-50", "count": 264, "revenue": 11739.319954, "avgShipping": 2.6333333333333333, "pctFreeShip": 0.03787878787878788}, {"YearMonth": "2024-04", "AOVBucket": "50-60", "count": 210, "revenue": 11419.069984, "avgShipping": 1.0380952380952382, "pctFreeShip": 0.7142857142857143}, {"YearMonth": "2024-04", "AOVBucket": "60-75", "count": 155, "revenue": 10277.980001, "avgShipping": 1.1025806451612903, "pctFreeShip": 0.7870967741935484}, {"YearMonth": "2024-04", "AOVBucket": "75-100", "count": 90, "revenue": 7637.079984, "avgShipping": 1.8005555555555557, "pctFreeShip": 0.6555555555555556}, {"YearMonth": "2024-04", "AOVBucket": "100-150", "count": 43, "revenue": 4943.539995, "avgShipping": 0.42906976744186054, "pctFreeShip": 0.9534883720930233}, {"YearMonth": "2024-04", "AOVBucket": "150-200", "count": 8, "revenue": 1420.949986, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-04", "AOVBucket": "200-500", "count": 2, "revenue": 507.880008, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-05", "AOVBucket": "<5", "count": 12, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-05", "AOVBucket": "5-10", "count": 108, "revenue": 1018.23, "avgShipping": 2.4875000000000003, "pctFreeShip": 0.19444444444444445}, {"YearMonth": "2024-05", "AOVBucket": "10-15", "count": 435, "revenue": 5747.209999, "avgShipping": 2.678735632183908, "pctFreeShip": 0.1839080459770115}, {"YearMonth": "2024-05", "AOVBucket": "15-20", "count": 529, "revenue": 9227.4904, "avgShipping": 2.804536862003781, "pctFreeShip": 0.17013232514177692}, {"YearMonth": "2024-05", "AOVBucket": "20-25", "count": 417, "revenue": 9303.699916, "avgShipping": 3.0798561151079142, "pctFreeShip": 0.12470023980815348}, {"YearMonth": "2024-05", "AOVBucket": "25-30", "count": 331, "revenue": 9172.029939, "avgShipping": 3.288066465256798, "pctFreeShip": 0.04833836858006042}, {"YearMonth": "2024-05", "AOVBucket": "30-35", "count": 304, "revenue": 9820.569934000001, "avgShipping": 2.2480263157894735, "pctFreeShip": 0.21052631578947367}, {"YearMonth": "2024-05", "AOVBucket": "35-40", "count": 255, "revenue": 9439.026017, "avgShipping": 2.1890196078431376, "pctFreeShip": 0.07450980392156863}, {"YearMonth": "2024-05", "AOVBucket": "40-50", "count": 219, "revenue": 9731.20996, "avgShipping": 2.5404109589041095, "pctFreeShip": 0.045662100456621}, {"YearMonth": "2024-05", "AOVBucket": "50-60", "count": 183, "revenue": 9985.319564, "avgShipping": 1.2887978142076504, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2024-05", "AOVBucket": "60-75", "count": 133, "revenue": 8865.058014, "avgShipping": 1.6112781954887219, "pctFreeShip": 0.6842105263157895}, {"YearMonth": "2024-05", "AOVBucket": "75-100", "count": 72, "revenue": 6207.539976, "avgShipping": 1.9208333333333334, "pctFreeShip": 0.625}, {"YearMonth": "2024-05", "AOVBucket": "100-150", "count": 38, "revenue": 4594.987984, "avgShipping": 1.144736842105263, "pctFreeShip": 0.868421052631579}, {"YearMonth": "2024-05", "AOVBucket": "150-200", "count": 8, "revenue": 1332.759994, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-05", "AOVBucket": "200-500", "count": 1, "revenue": 254.300003, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-06", "AOVBucket": "<5", "count": 5, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-06", "AOVBucket": "5-10", "count": 105, "revenue": 963.94, "avgShipping": 2.54, "pctFreeShip": 0.18095238095238095}, {"YearMonth": "2024-06", "AOVBucket": "10-15", "count": 424, "revenue": 5580.01, "avgShipping": 2.6924528301886794, "pctFreeShip": 0.1792452830188679}, {"YearMonth": "2024-06", "AOVBucket": "15-20", "count": 514, "revenue": 8996.000002, "avgShipping": 2.8367704280155643, "pctFreeShip": 0.16536964980544747}, {"YearMonth": "2024-06", "AOVBucket": "20-25", "count": 372, "revenue": 8314.799923, "avgShipping": 3.21747311827957, "pctFreeShip": 0.0967741935483871}, {"YearMonth": "2024-06", "AOVBucket": "25-30", "count": 325, "revenue": 8943.369951, "avgShipping": 3.179538461538462, "pctFreeShip": 0.06461538461538462}, {"YearMonth": "2024-06", "AOVBucket": "30-35", "count": 293, "revenue": 9439.839911000001, "avgShipping": 2.2421501706484643, "pctFreeShip": 0.1945392491467577}, {"YearMonth": "2024-06", "AOVBucket": "35-40", "count": 205, "revenue": 7617.629997, "avgShipping": 2.2626829268292683, "pctFreeShip": 0.07804878048780488}, {"YearMonth": "2024-06", "AOVBucket": "40-50", "count": 200, "revenue": 8878.10994, "avgShipping": 2.30025, "pctFreeShip": 0.075}, {"YearMonth": "2024-06", "AOVBucket": "50-60", "count": 197, "revenue": 10719.095997, "avgShipping": 1.1467005076142132, "pctFreeShip": 0.6954314720812182}, {"YearMonth": "2024-06", "AOVBucket": "60-75", "count": 125, "revenue": 8313.549966, "avgShipping": 1.2, "pctFreeShip": 0.736}, {"YearMonth": "2024-06", "AOVBucket": "75-100", "count": 72, "revenue": 6133.060009, "avgShipping": 1.5368055555555555, "pctFreeShip": 0.6944444444444444}, {"YearMonth": "2024-06", "AOVBucket": "100-150", "count": 52, "revenue": 6009.079992, "avgShipping": 1.0134615384615384, "pctFreeShip": 0.8461538461538461}, {"YearMonth": "2024-06", "AOVBucket": "150-200", "count": 9, "revenue": 1577.069985, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-06", "AOVBucket": "200-500", "count": 2, "revenue": 490.850002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-07", "AOVBucket": "<5", "count": 27, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-07", "AOVBucket": "5-10", "count": 135, "revenue": 1196.57, "avgShipping": 2.7574074074074075, "pctFreeShip": 0.14814814814814814}, {"YearMonth": "2024-07", "AOVBucket": "10-15", "count": 686, "revenue": 8936.32072, "avgShipping": 2.709256559766764, "pctFreeShip": 0.17055393586005832}, {"YearMonth": "2024-07", "AOVBucket": "15-20", "count": 566, "revenue": 9887.099999, "avgShipping": 2.8507950530035338, "pctFreeShip": 0.16784452296819788}, {"YearMonth": "2024-07", "AOVBucket": "20-25", "count": 503, "revenue": 11208.209956, "avgShipping": 3.052186878727634, "pctFreeShip": 0.09145129224652088}, {"YearMonth": "2024-07", "AOVBucket": "25-30", "count": 463, "revenue": 12610.179826, "avgShipping": 2.9574514038876893, "pctFreeShip": 0.14038876889848811}, {"YearMonth": "2024-07", "AOVBucket": "30-35", "count": 438, "revenue": 14229.497633, "avgShipping": 2.2392694063926943, "pctFreeShip": 0.05707762557077625}, {"YearMonth": "2024-07", "AOVBucket": "35-40", "count": 283, "revenue": 10602.839908, "avgShipping": 2.289575971731449, "pctFreeShip": 0.028268551236749116}, {"YearMonth": "2024-07", "AOVBucket": "40-50", "count": 297, "revenue": 13382.009829, "avgShipping": 2.255892255892256, "pctFreeShip": 0.03367003367003367}, {"YearMonth": "2024-07", "AOVBucket": "50-60", "count": 312, "revenue": 16915.649891, "avgShipping": 0.9014423076923077, "pctFreeShip": 0.7788461538461539}, {"YearMonth": "2024-07", "AOVBucket": "60-75", "count": 206, "revenue": 13559.109897, "avgShipping": 0.8691747572815535, "pctFreeShip": 0.8300970873786407}, {"YearMonth": "2024-07", "AOVBucket": "75-100", "count": 124, "revenue": 10503.579947, "avgShipping": 1.383467741935484, "pctFreeShip": 0.717741935483871}, {"YearMonth": "2024-07", "AOVBucket": "100-150", "count": 69, "revenue": 8257.41995, "avgShipping": 1.3246376811594203, "pctFreeShip": 0.8405797101449275}, {"YearMonth": "2024-07", "AOVBucket": "150-200", "count": 11, "revenue": 1888.52001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-07", "AOVBucket": "200-500", "count": 11, "revenue": 2660.5, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-08", "AOVBucket": "<5", "count": 13, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-08", "AOVBucket": "5-10", "count": 96, "revenue": 884.91, "avgShipping": 2.3380208333333337, "pctFreeShip": 0.2604166666666667}, {"YearMonth": "2024-08", "AOVBucket": "10-15", "count": 409, "revenue": 5373.87, "avgShipping": 2.4853300733496333, "pctFreeShip": 0.24205378973105135}, {"YearMonth": "2024-08", "AOVBucket": "15-20", "count": 486, "revenue": 8438.329994, "avgShipping": 2.712757201646091, "pctFreeShip": 0.2037037037037037}, {"YearMonth": "2024-08", "AOVBucket": "20-25", "count": 377, "revenue": 8470.299922, "avgShipping": 3.048806366047746, "pctFreeShip": 0.13262599469496023}, {"YearMonth": "2024-08", "AOVBucket": "25-30", "count": 311, "revenue": 8581.299966, "avgShipping": 3.219453376205788, "pctFreeShip": 0.09646302250803858}, {"YearMonth": "2024-08", "AOVBucket": "30-35", "count": 339, "revenue": 10860.179931, "avgShipping": 2.1716814159292035, "pctFreeShip": 0.22123893805309736}, {"YearMonth": "2024-08", "AOVBucket": "35-40", "count": 255, "revenue": 9429.670019, "avgShipping": 2.0098039215686274, "pctFreeShip": 0.08235294117647059}, {"YearMonth": "2024-08", "AOVBucket": "40-50", "count": 206, "revenue": 9169.620351, "avgShipping": 2.4240291262135925, "pctFreeShip": 0.07281553398058252}, {"YearMonth": "2024-08", "AOVBucket": "50-60", "count": 194, "revenue": 10512.780005999999, "avgShipping": 0.9030927835051548, "pctFreeShip": 0.7628865979381443}, {"YearMonth": "2024-08", "AOVBucket": "60-75", "count": 147, "revenue": 9740.050004, "avgShipping": 1.3721088435374151, "pctFreeShip": 0.7278911564625851}, {"YearMonth": "2024-08", "AOVBucket": "75-100", "count": 72, "revenue": 6230.040022, "avgShipping": 1.4312500000000001, "pctFreeShip": 0.7222222222222222}, {"YearMonth": "2024-08", "AOVBucket": "100-150", "count": 48, "revenue": 5516.87004, "avgShipping": 1.33125, "pctFreeShip": 0.8541666666666666}, {"YearMonth": "2024-08", "AOVBucket": "150-200", "count": 6, "revenue": 1114.919991, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-08", "AOVBucket": "200-500", "count": 3, "revenue": 962.569992, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-09", "AOVBucket": "<5", "count": 18, "revenue": 23.05, "avgShipping": 1.038888888888889, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2024-09", "AOVBucket": "5-10", "count": 89, "revenue": 793.65, "avgShipping": 2.4764044943820225, "pctFreeShip": 0.19101123595505617}, {"YearMonth": "2024-09", "AOVBucket": "10-15", "count": 359, "revenue": 4696.4, "avgShipping": 2.507938718662953, "pctFreeShip": 0.2395543175487465}, {"YearMonth": "2024-09", "AOVBucket": "15-20", "count": 440, "revenue": 7641.299992, "avgShipping": 2.666818181818182, "pctFreeShip": 0.21363636363636362}, {"YearMonth": "2024-09", "AOVBucket": "20-25", "count": 344, "revenue": 7711.469948, "avgShipping": 2.930668604651163, "pctFreeShip": 0.1569767441860465}, {"YearMonth": "2024-09", "AOVBucket": "25-30", "count": 329, "revenue": 9058.379948, "avgShipping": 3.177051671732523, "pctFreeShip": 0.06382978723404255}, {"YearMonth": "2024-09", "AOVBucket": "30-35", "count": 349, "revenue": 11256.409963, "avgShipping": 2.4459885386819487, "pctFreeShip": 0.1346704871060172}, {"YearMonth": "2024-09", "AOVBucket": "35-40", "count": 241, "revenue": 8950.000002, "avgShipping": 2.1423236514522825, "pctFreeShip": 0.0912863070539419}, {"YearMonth": "2024-09", "AOVBucket": "40-50", "count": 240, "revenue": 10689.319999, "avgShipping": 2.2883333333333336, "pctFreeShip": 0.05}, {"YearMonth": "2024-09", "AOVBucket": "50-60", "count": 185, "revenue": 10068.439998, "avgShipping": 0.9, "pctFreeShip": 0.745945945945946}, {"YearMonth": "2024-09", "AOVBucket": "60-75", "count": 141, "revenue": 9474.769985, "avgShipping": 1.1503546099290782, "pctFreeShip": 0.7872340425531915}, {"YearMonth": "2024-09", "AOVBucket": "75-100", "count": 64, "revenue": 5335.760034, "avgShipping": 1.8203125, "pctFreeShip": 0.640625}, {"YearMonth": "2024-09", "AOVBucket": "100-150", "count": 49, "revenue": 5808.969999, "avgShipping": 1.2918367346938777, "pctFreeShip": 0.8367346938775511}, {"YearMonth": "2024-09", "AOVBucket": "150-200", "count": 7, "revenue": 1174.759988, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-09", "AOVBucket": "200-500", "count": 6, "revenue": 1605.649999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-10", "AOVBucket": "<5", "count": 17, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-10", "AOVBucket": "5-10", "count": 129, "revenue": 1177.8, "avgShipping": 2.2271317829457367, "pctFreeShip": 0.2713178294573643}, {"YearMonth": "2024-10", "AOVBucket": "10-15", "count": 492, "revenue": 6399.86, "avgShipping": 2.6480691056910572, "pctFreeShip": 0.1991869918699187}, {"YearMonth": "2024-10", "AOVBucket": "15-20", "count": 544, "revenue": 9435.249991, "avgShipping": 2.551654411764706, "pctFreeShip": 0.24632352941176472}, {"YearMonth": "2024-10", "AOVBucket": "20-25", "count": 373, "revenue": 8354.229922, "avgShipping": 3.110187667560322, "pctFreeShip": 0.13672922252010725}, {"YearMonth": "2024-10", "AOVBucket": "25-30", "count": 357, "revenue": 9820.949946, "avgShipping": 3.0760504201680674, "pctFreeShip": 0.10084033613445378}, {"YearMonth": "2024-10", "AOVBucket": "30-35", "count": 323, "revenue": 10424.449924, "avgShipping": 2.4131578947368424, "pctFreeShip": 0.17647058823529413}, {"YearMonth": "2024-10", "AOVBucket": "35-40", "count": 215, "revenue": 8024.019979000001, "avgShipping": 2.3967441860465115, "pctFreeShip": 0.09302325581395349}, {"YearMonth": "2024-10", "AOVBucket": "40-50", "count": 224, "revenue": 9935.250003, "avgShipping": 2.7611607142857144, "pctFreeShip": 0.05357142857142857}, {"YearMonth": "2024-10", "AOVBucket": "50-60", "count": 188, "revenue": 10181.280006, "avgShipping": 1.0098404255319149, "pctFreeShip": 0.6914893617021277}, {"YearMonth": "2024-10", "AOVBucket": "60-75", "count": 121, "revenue": 8009.859999, "avgShipping": 1.371900826446281, "pctFreeShip": 0.71900826446281}, {"YearMonth": "2024-10", "AOVBucket": "75-100", "count": 74, "revenue": 6369.729959, "avgShipping": 2.475, "pctFreeShip": 0.5540540540540541}, {"YearMonth": "2024-10", "AOVBucket": "100-150", "count": 53, "revenue": 6208.219987, "avgShipping": 1.7349056603773585, "pctFreeShip": 0.7924528301886793}, {"YearMonth": "2024-10", "AOVBucket": "150-200", "count": 5, "revenue": 805.5500079999999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-10", "AOVBucket": "200-500", "count": 4, "revenue": 1065.049993, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-11", "AOVBucket": "<5", "count": 16, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-11", "AOVBucket": "5-10", "count": 95, "revenue": 862.48, "avgShipping": 2.0810526315789475, "pctFreeShip": 0.30526315789473685}, {"YearMonth": "2024-11", "AOVBucket": "10-15", "count": 414, "revenue": 5422.43, "avgShipping": 2.304951690821256, "pctFreeShip": 0.28743961352657005}, {"YearMonth": "2024-11", "AOVBucket": "15-20", "count": 411, "revenue": 7135.459992, "avgShipping": 2.563625304136253, "pctFreeShip": 0.24330900243309003}, {"YearMonth": "2024-11", "AOVBucket": "20-25", "count": 411, "revenue": 9397.369919, "avgShipping": 2.858272506082725, "pctFreeShip": 0.15085158150851583}, {"YearMonth": "2024-11", "AOVBucket": "25-30", "count": 548, "revenue": 15122.259975, "avgShipping": 3.0379562043795625, "pctFreeShip": 0.060218978102189784}, {"YearMonth": "2024-11", "AOVBucket": "30-35", "count": 446, "revenue": 14455.509881, "avgShipping": 2.680717488789238, "pctFreeShip": 0.10089686098654709}, {"YearMonth": "2024-11", "AOVBucket": "35-40", "count": 270, "revenue": 10112.199963000001, "avgShipping": 2.3944444444444444, "pctFreeShip": 0.06666666666666667}, {"YearMonth": "2024-11", "AOVBucket": "40-50", "count": 250, "revenue": 11084.709938, "avgShipping": 2.6284, "pctFreeShip": 0.032}, {"YearMonth": "2024-11", "AOVBucket": "50-60", "count": 226, "revenue": 12217.119981, "avgShipping": 1.0630530973451326, "pctFreeShip": 0.6637168141592921}, {"YearMonth": "2024-11", "AOVBucket": "60-75", "count": 127, "revenue": 8390.310001, "avgShipping": 1.544488188976378, "pctFreeShip": 0.7244094488188977}, {"YearMonth": "2024-11", "AOVBucket": "75-100", "count": 86, "revenue": 7266.9299630000005, "avgShipping": 1.5680232558139535, "pctFreeShip": 0.6744186046511628}, {"YearMonth": "2024-11", "AOVBucket": "100-150", "count": 46, "revenue": 5505.089995, "avgShipping": 1.4967391304347826, "pctFreeShip": 0.8043478260869565}, {"YearMonth": "2024-11", "AOVBucket": "150-200", "count": 8, "revenue": 1373.610012, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-11", "AOVBucket": "200-500", "count": 3, "revenue": 993.320003, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-12", "AOVBucket": "<5", "count": 20, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-12", "AOVBucket": "5-10", "count": 69, "revenue": 616.45, "avgShipping": 1.2268115942028985, "pctFreeShip": 0.6086956521739131}, {"YearMonth": "2024-12", "AOVBucket": "10-15", "count": 388, "revenue": 5055.26, "avgShipping": 2.259278350515464, "pctFreeShip": 0.36855670103092786}, {"YearMonth": "2024-12", "AOVBucket": "15-20", "count": 368, "revenue": 6381.919987, "avgShipping": 2.431521739130435, "pctFreeShip": 0.3451086956521739}, {"YearMonth": "2024-12", "AOVBucket": "20-25", "count": 351, "revenue": 7917.919933, "avgShipping": 3.183048433048433, "pctFreeShip": 0.1623931623931624}, {"YearMonth": "2024-12", "AOVBucket": "25-30", "count": 221, "revenue": 6089.739981, "avgShipping": 3.393212669683258, "pctFreeShip": 0.12217194570135746}, {"YearMonth": "2024-12", "AOVBucket": "30-35", "count": 239, "revenue": 7724.249915, "avgShipping": 2.559205020920502, "pctFreeShip": 0.2594142259414226}, {"YearMonth": "2024-12", "AOVBucket": "35-40", "count": 181, "revenue": 6768.169951, "avgShipping": 2.625414364640884, "pctFreeShip": 0.09392265193370165}, {"YearMonth": "2024-12", "AOVBucket": "40-50", "count": 163, "revenue": 7137.069959, "avgShipping": 3.2095092024539875, "pctFreeShip": 0.03680981595092025}, {"YearMonth": "2024-12", "AOVBucket": "50-60", "count": 110, "revenue": 6044.859976, "avgShipping": 2.252727272727273, "pctFreeShip": 0.34545454545454546}, {"YearMonth": "2024-12", "AOVBucket": "60-75", "count": 110, "revenue": 7363.679956, "avgShipping": 1.5395454545454546, "pctFreeShip": 0.6909090909090909}, {"YearMonth": "2024-12", "AOVBucket": "75-100", "count": 63, "revenue": 5422.309961, "avgShipping": 2.2896825396825395, "pctFreeShip": 0.5873015873015873}, {"YearMonth": "2024-12", "AOVBucket": "100-150", "count": 37, "revenue": 4341.240005, "avgShipping": 0.7959459459459459, "pctFreeShip": 0.8918918918918919}, {"YearMonth": "2024-12", "AOVBucket": "150-200", "count": 4, "revenue": 636.649601, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2024-12", "AOVBucket": "200-500", "count": 3, "revenue": 708.820012, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-01", "AOVBucket": "<5", "count": 11, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-01", "AOVBucket": "5-10", "count": 57, "revenue": 497.86, "avgShipping": 0.24561403508771928, "pctFreeShip": 0.9298245614035088}, {"YearMonth": "2025-01", "AOVBucket": "10-15", "count": 430, "revenue": 5548.81, "avgShipping": 2.859186046511628, "pctFreeShip": 0.24651162790697675}, {"YearMonth": "2025-01", "AOVBucket": "15-20", "count": 474, "revenue": 8173.389992, "avgShipping": 2.758860759493671, "pctFreeShip": 0.3037974683544304}, {"YearMonth": "2025-01", "AOVBucket": "20-25", "count": 577, "revenue": 12758.459915, "avgShipping": 3.5427209705372618, "pctFreeShip": 0.08145580589254767}, {"YearMonth": "2025-01", "AOVBucket": "25-30", "count": 338, "revenue": 9278.439828999999, "avgShipping": 3.742899408284024, "pctFreeShip": 0.06804733727810651}, {"YearMonth": "2025-01", "AOVBucket": "30-35", "count": 364, "revenue": 11825.559837, "avgShipping": 3.058379120879121, "pctFreeShip": 0.16483516483516483}, {"YearMonth": "2025-01", "AOVBucket": "35-40", "count": 319, "revenue": 11948.054833, "avgShipping": 2.8869905956112856, "pctFreeShip": 0.06269592476489028}, {"YearMonth": "2025-01", "AOVBucket": "40-50", "count": 268, "revenue": 11866.799869, "avgShipping": 3.1841417910447762, "pctFreeShip": 0.026119402985074626}, {"YearMonth": "2025-01", "AOVBucket": "50-60", "count": 193, "revenue": 10574.110306, "avgShipping": 3.070725388601036, "pctFreeShip": 0.031088082901554404}, {"YearMonth": "2025-01", "AOVBucket": "60-75", "count": 264, "revenue": 17537.939861, "avgShipping": 0.9013257575757576, "pctFreeShip": 0.803030303030303}, {"YearMonth": "2025-01", "AOVBucket": "75-100", "count": 122, "revenue": 10392.714613, "avgShipping": 1.6086065573770492, "pctFreeShip": 0.7459016393442623}, {"YearMonth": "2025-01", "AOVBucket": "100-150", "count": 62, "revenue": 7346.059965, "avgShipping": 0.5387096774193548, "pctFreeShip": 0.9516129032258065}, {"YearMonth": "2025-01", "AOVBucket": "150-200", "count": 13, "revenue": 2273.969984, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-01", "AOVBucket": "200-500", "count": 9, "revenue": 2187.659987, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-01", "AOVBucket": "500+", "count": 1, "revenue": 582.390029, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-02", "AOVBucket": "<5", "count": 12, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-02", "AOVBucket": "5-10", "count": 37, "revenue": 344.99, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-02", "AOVBucket": "10-15", "count": 258, "revenue": 3435.62, "avgShipping": 2.493798449612403, "pctFreeShip": 0.3333333333333333}, {"YearMonth": "2025-02", "AOVBucket": "15-20", "count": 416, "revenue": 7285.1199799999995, "avgShipping": 2.2989182692307693, "pctFreeShip": 0.42788461538461536}, {"YearMonth": "2025-02", "AOVBucket": "20-25", "count": 409, "revenue": 9194.459904, "avgShipping": 3.5056234718826405, "pctFreeShip": 0.12469437652811736}, {"YearMonth": "2025-02", "AOVBucket": "25-30", "count": 237, "revenue": 6434.409984, "avgShipping": 3.540084388185654, "pctFreeShip": 0.15611814345991562}, {"YearMonth": "2025-02", "AOVBucket": "30-35", "count": 263, "revenue": 8581.509915999999, "avgShipping": 2.601901140684411, "pctFreeShip": 0.2889733840304182}, {"YearMonth": "2025-02", "AOVBucket": "35-40", "count": 180, "revenue": 6758.929942, "avgShipping": 2.7025, "pctFreeShip": 0.1111111111111111}, {"YearMonth": "2025-02", "AOVBucket": "40-50", "count": 225, "revenue": 9901.87993, "avgShipping": 3.0437777777777777, "pctFreeShip": 0.07111111111111111}, {"YearMonth": "2025-02", "AOVBucket": "50-60", "count": 99, "revenue": 5413.099952, "avgShipping": 3.2075757575757575, "pctFreeShip": 0.0707070707070707}, {"YearMonth": "2025-02", "AOVBucket": "60-75", "count": 162, "revenue": 10712.869939, "avgShipping": 1.5935185185185188, "pctFreeShip": 0.6234567901234568}, {"YearMonth": "2025-02", "AOVBucket": "75-100", "count": 77, "revenue": 6545.709992, "avgShipping": 1.6324675324675324, "pctFreeShip": 0.7272727272727273}, {"YearMonth": "2025-02", "AOVBucket": "100-150", "count": 36, "revenue": 4190.979976, "avgShipping": 1.1361111111111113, "pctFreeShip": 0.8333333333333334}, {"YearMonth": "2025-02", "AOVBucket": "150-200", "count": 3, "revenue": 502.310017, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-02", "AOVBucket": "200-500", "count": 4, "revenue": 1137.6000199999999, "avgShipping": 3.7375, "pctFreeShip": 0.75}, {"YearMonth": "2025-03", "AOVBucket": "<5", "count": 7, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-03", "AOVBucket": "5-10", "count": 37, "revenue": 350.920002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-03", "AOVBucket": "10-15", "count": 253, "revenue": 3383.630001, "avgShipping": 1.9766798418972333, "pctFreeShip": 0.466403162055336}, {"YearMonth": "2025-03", "AOVBucket": "15-20", "count": 394, "revenue": 6798.36999, "avgShipping": 2.641497461928934, "pctFreeShip": 0.3350253807106599}, {"YearMonth": "2025-03", "AOVBucket": "20-25", "count": 375, "revenue": 8480.419894999999, "avgShipping": 3.4209333333333336, "pctFreeShip": 0.12}, {"YearMonth": "2025-03", "AOVBucket": "25-30", "count": 279, "revenue": 7513.09999, "avgShipping": 3.35752688172043, "pctFreeShip": 0.17204301075268819}, {"YearMonth": "2025-03", "AOVBucket": "30-35", "count": 277, "revenue": 9023.279928, "avgShipping": 2.805776173285199, "pctFreeShip": 0.2527075812274368}, {"YearMonth": "2025-03", "AOVBucket": "35-40", "count": 168, "revenue": 6307.71992, "avgShipping": 2.525297619047619, "pctFreeShip": 0.16071428571428573}, {"YearMonth": "2025-03", "AOVBucket": "40-50", "count": 261, "revenue": 11479.679936999999, "avgShipping": 3.22816091954023, "pctFreeShip": 0.06513409961685823}, {"YearMonth": "2025-03", "AOVBucket": "50-60", "count": 132, "revenue": 7179.449962, "avgShipping": 3.2147727272727273, "pctFreeShip": 0.030303030303030304}, {"YearMonth": "2025-03", "AOVBucket": "60-75", "count": 172, "revenue": 11399.279929, "avgShipping": 1.4758720930232558, "pctFreeShip": 0.6569767441860465}, {"YearMonth": "2025-03", "AOVBucket": "75-100", "count": 88, "revenue": 7534.419978, "avgShipping": 1.5863636363636366, "pctFreeShip": 0.7613636363636364}, {"YearMonth": "2025-03", "AOVBucket": "100-150", "count": 46, "revenue": 5267.809989, "avgShipping": 0.3032608695652174, "pctFreeShip": 0.9347826086956522}, {"YearMonth": "2025-03", "AOVBucket": "150-200", "count": 5, "revenue": 862.109999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-03", "AOVBucket": "200-500", "count": 5, "revenue": 1345.0799940000002, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-04", "AOVBucket": "<5", "count": 15, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-04", "AOVBucket": "5-10", "count": 47, "revenue": 440.41, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-04", "AOVBucket": "10-15", "count": 247, "revenue": 3258.42, "avgShipping": 1.8360323886639676, "pctFreeShip": 0.5020242914979757}, {"YearMonth": "2025-04", "AOVBucket": "15-20", "count": 435, "revenue": 7572.749984, "avgShipping": 2.410344827586207, "pctFreeShip": 0.3931034482758621}, {"YearMonth": "2025-04", "AOVBucket": "20-25", "count": 380, "revenue": 8535.669916, "avgShipping": 3.6361842105263156, "pctFreeShip": 0.11052631578947368}, {"YearMonth": "2025-04", "AOVBucket": "25-30", "count": 265, "revenue": 7199.1999749999995, "avgShipping": 3.4122641509433964, "pctFreeShip": 0.1471698113207547}, {"YearMonth": "2025-04", "AOVBucket": "30-35", "count": 254, "revenue": 8276.249899, "avgShipping": 2.68759842519685, "pctFreeShip": 0.2677165354330709}, {"YearMonth": "2025-04", "AOVBucket": "35-40", "count": 191, "revenue": 7169.009942, "avgShipping": 2.774083769633508, "pctFreeShip": 0.11518324607329843}, {"YearMonth": "2025-04", "AOVBucket": "40-50", "count": 243, "revenue": 10777.499942999999, "avgShipping": 2.9403292181069958, "pctFreeShip": 0.0823045267489712}, {"YearMonth": "2025-04", "AOVBucket": "50-60", "count": 136, "revenue": 7381.639962, "avgShipping": 2.851838235294118, "pctFreeShip": 0.09558823529411764}, {"YearMonth": "2025-04", "AOVBucket": "60-75", "count": 203, "revenue": 13471.619944, "avgShipping": 1.4315270935960591, "pctFreeShip": 0.6551724137931034}, {"YearMonth": "2025-04", "AOVBucket": "75-100", "count": 103, "revenue": 8720.299971, "avgShipping": 2.007766990291262, "pctFreeShip": 0.6699029126213593}, {"YearMonth": "2025-04", "AOVBucket": "100-150", "count": 41, "revenue": 4735.270004, "avgShipping": 0.9195121951219513, "pctFreeShip": 0.8780487804878049}, {"YearMonth": "2025-04", "AOVBucket": "150-200", "count": 11, "revenue": 1840.899997, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-04", "AOVBucket": "200-500", "count": 5, "revenue": 1225.350023, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-05", "AOVBucket": "<5", "count": 11, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-05", "AOVBucket": "5-10", "count": 50, "revenue": 466.81, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-05", "AOVBucket": "10-15", "count": 234, "revenue": 3089.2799999999997, "avgShipping": 1.708974358974359, "pctFreeShip": 0.5341880341880342}, {"YearMonth": "2025-05", "AOVBucket": "15-20", "count": 417, "revenue": 7253.29998, "avgShipping": 2.2642685851318944, "pctFreeShip": 0.4244604316546763}, {"YearMonth": "2025-05", "AOVBucket": "20-25", "count": 382, "revenue": 8646.819928, "avgShipping": 3.5704188481675394, "pctFreeShip": 0.0968586387434555}, {"YearMonth": "2025-05", "AOVBucket": "25-30", "count": 275, "revenue": 7418.3099999999995, "avgShipping": 3.1423636363636365, "pctFreeShip": 0.2109090909090909}, {"YearMonth": "2025-05", "AOVBucket": "30-35", "count": 295, "revenue": 9655.389909, "avgShipping": 2.6035593220338984, "pctFreeShip": 0.28135593220338984}, {"YearMonth": "2025-05", "AOVBucket": "35-40", "count": 177, "revenue": 6608.779942, "avgShipping": 2.626271186440678, "pctFreeShip": 0.14689265536723164}, {"YearMonth": "2025-05", "AOVBucket": "40-50", "count": 273, "revenue": 12042.839942999999, "avgShipping": 2.9895604395604396, "pctFreeShip": 0.0989010989010989}, {"YearMonth": "2025-05", "AOVBucket": "50-60", "count": 132, "revenue": 7238.679945, "avgShipping": 2.9742424242424246, "pctFreeShip": 0.07575757575757576}, {"YearMonth": "2025-05", "AOVBucket": "60-75", "count": 181, "revenue": 12067.599909, "avgShipping": 1.126243093922652, "pctFreeShip": 0.7292817679558011}, {"YearMonth": "2025-05", "AOVBucket": "75-100", "count": 114, "revenue": 9760.559982, "avgShipping": 1.8302631578947368, "pctFreeShip": 0.6929824561403509}, {"YearMonth": "2025-05", "AOVBucket": "100-150", "count": 63, "revenue": 7418.8899870000005, "avgShipping": 0.7103174603174603, "pctFreeShip": 0.9047619047619048}, {"YearMonth": "2025-05", "AOVBucket": "150-200", "count": 23, "revenue": 3779.500018, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-05", "AOVBucket": "200-500", "count": 4, "revenue": 1077.980019, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-06", "AOVBucket": "<5", "count": 12, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-06", "AOVBucket": "5-10", "count": 51, "revenue": 479.37, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-06", "AOVBucket": "10-15", "count": 194, "revenue": 2570.5, "avgShipping": 1.6762886597938145, "pctFreeShip": 0.5515463917525774}, {"YearMonth": "2025-06", "AOVBucket": "15-20", "count": 419, "revenue": 7216.7599789999995, "avgShipping": 2.2056085918854413, "pctFreeShip": 0.4486873508353222}, {"YearMonth": "2025-06", "AOVBucket": "20-25", "count": 347, "revenue": 7865.129909, "avgShipping": 3.25850144092219, "pctFreeShip": 0.16138328530259366}, {"YearMonth": "2025-06", "AOVBucket": "25-30", "count": 243, "revenue": 6616.1299819999995, "avgShipping": 3.3111111111111113, "pctFreeShip": 0.1934156378600823}, {"YearMonth": "2025-06", "AOVBucket": "30-35", "count": 217, "revenue": 7055.979941, "avgShipping": 2.8089861751152077, "pctFreeShip": 0.2764976958525346}, {"YearMonth": "2025-06", "AOVBucket": "35-40", "count": 182, "revenue": 6819.429929, "avgShipping": 2.5321428571428575, "pctFreeShip": 0.13736263736263737}, {"YearMonth": "2025-06", "AOVBucket": "40-50", "count": 204, "revenue": 8948.889951, "avgShipping": 3.0620098039215686, "pctFreeShip": 0.05392156862745098}, {"YearMonth": "2025-06", "AOVBucket": "50-60", "count": 148, "revenue": 8088.849923, "avgShipping": 2.84222972972973, "pctFreeShip": 0.11486486486486487}, {"YearMonth": "2025-06", "AOVBucket": "60-75", "count": 160, "revenue": 10534.579915, "avgShipping": 1.4100000000000001, "pctFreeShip": 0.66875}, {"YearMonth": "2025-06", "AOVBucket": "75-100", "count": 99, "revenue": 8423.289937, "avgShipping": 1.9141414141414141, "pctFreeShip": 0.6565656565656566}, {"YearMonth": "2025-06", "AOVBucket": "100-150", "count": 58, "revenue": 6944.28003, "avgShipping": 0.746551724137931, "pctFreeShip": 0.896551724137931}, {"YearMonth": "2025-06", "AOVBucket": "150-200", "count": 6, "revenue": 985.440009, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-06", "AOVBucket": "200-500", "count": 4, "revenue": 870.740014, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-07", "AOVBucket": "<5", "count": 14, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-07", "AOVBucket": "5-10", "count": 56, "revenue": 534.5699999999999, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-07", "AOVBucket": "10-15", "count": 234, "revenue": 3112.23, "avgShipping": 1.708760683760684, "pctFreeShip": 0.5384615384615384}, {"YearMonth": "2025-07", "AOVBucket": "15-20", "count": 459, "revenue": 8022.6099779999995, "avgShipping": 2.2437908496732026, "pctFreeShip": 0.43137254901960786}, {"YearMonth": "2025-07", "AOVBucket": "20-25", "count": 345, "revenue": 7796.289923, "avgShipping": 3.4442028985507247, "pctFreeShip": 0.15072463768115943}, {"YearMonth": "2025-07", "AOVBucket": "25-30", "count": 246, "revenue": 6646.699981, "avgShipping": 3.1784552845528453, "pctFreeShip": 0.21544715447154472}, {"YearMonth": "2025-07", "AOVBucket": "30-35", "count": 263, "revenue": 8559.069921, "avgShipping": 2.697718631178707, "pctFreeShip": 0.2813688212927757}, {"YearMonth": "2025-07", "AOVBucket": "35-40", "count": 181, "revenue": 6734.71993, "avgShipping": 2.544198895027624, "pctFreeShip": 0.1878453038674033}, {"YearMonth": "2025-07", "AOVBucket": "40-50", "count": 232, "revenue": 10303.839908, "avgShipping": 2.96896551724138, "pctFreeShip": 0.09482758620689655}, {"YearMonth": "2025-07", "AOVBucket": "50-60", "count": 135, "revenue": 7364.989947, "avgShipping": 2.8251851851851852, "pctFreeShip": 0.1111111111111111}, {"YearMonth": "2025-07", "AOVBucket": "60-75", "count": 159, "revenue": 10633.729902, "avgShipping": 0.9550314465408805, "pctFreeShip": 0.7358490566037735}, {"YearMonth": "2025-07", "AOVBucket": "75-100", "count": 95, "revenue": 8020.73996, "avgShipping": 1.981578947368421, "pctFreeShip": 0.6842105263157895}, {"YearMonth": "2025-07", "AOVBucket": "100-150", "count": 54, "revenue": 6397.579992, "avgShipping": 0.6712962962962963, "pctFreeShip": 0.9074074074074074}, {"YearMonth": "2025-07", "AOVBucket": "150-200", "count": 12, "revenue": 2085.619959, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-07", "AOVBucket": "200-500", "count": 3, "revenue": 750.679998, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-07", "AOVBucket": "500+", "count": 1, "revenue": 525.669998, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-08", "AOVBucket": "<5", "count": 13, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-08", "AOVBucket": "5-10", "count": 51, "revenue": 478.92, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-08", "AOVBucket": "10-15", "count": 245, "revenue": 3236.98, "avgShipping": 1.6271428571428572, "pctFreeShip": 0.563265306122449}, {"YearMonth": "2025-08", "AOVBucket": "15-20", "count": 413, "revenue": 7228.219973, "avgShipping": 2.103995157384988, "pctFreeShip": 0.4648910411622276}, {"YearMonth": "2025-08", "AOVBucket": "20-25", "count": 367, "revenue": 8291.549906, "avgShipping": 3.338283378746594, "pctFreeShip": 0.13896457765667575}, {"YearMonth": "2025-08", "AOVBucket": "25-30", "count": 263, "revenue": 7115.749987, "avgShipping": 3.2271863117870723, "pctFreeShip": 0.19771863117870722}, {"YearMonth": "2025-08", "AOVBucket": "30-35", "count": 244, "revenue": 7992.7899, "avgShipping": 2.3430327868852463, "pctFreeShip": 0.3729508196721312}, {"YearMonth": "2025-08", "AOVBucket": "35-40", "count": 192, "revenue": 7175.019942, "avgShipping": 2.6773437500000004, "pctFreeShip": 0.19270833333333334}, {"YearMonth": "2025-08", "AOVBucket": "40-50", "count": 223, "revenue": 9865.859935, "avgShipping": 2.8547085201793725, "pctFreeShip": 0.11210762331838565}, {"YearMonth": "2025-08", "AOVBucket": "50-60", "count": 119, "revenue": 6504.949923, "avgShipping": 2.8680672268907563, "pctFreeShip": 0.16806722689075632}, {"YearMonth": "2025-08", "AOVBucket": "60-75", "count": 188, "revenue": 12456.04992, "avgShipping": 1.0736702127659576, "pctFreeShip": 0.75}, {"YearMonth": "2025-08", "AOVBucket": "75-100", "count": 113, "revenue": 9573.159975, "avgShipping": 1.6619469026548674, "pctFreeShip": 0.7345132743362832}, {"YearMonth": "2025-08", "AOVBucket": "100-150", "count": 54, "revenue": 6301.189985, "avgShipping": 0.9592592592592593, "pctFreeShip": 0.8703703703703703}, {"YearMonth": "2025-08", "AOVBucket": "150-200", "count": 8, "revenue": 1307.800003, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-08", "AOVBucket": "200-500", "count": 1, "revenue": 300.399997, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-09", "AOVBucket": "<5", "count": 11, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-09", "AOVBucket": "5-10", "count": 52, "revenue": 499.19, "avgShipping": 0.0673076923076923, "pctFreeShip": 0.9807692307692307}, {"YearMonth": "2025-09", "AOVBucket": "10-15", "count": 226, "revenue": 3009.67, "avgShipping": 1.930088495575221, "pctFreeShip": 0.46017699115044247}, {"YearMonth": "2025-09", "AOVBucket": "15-20", "count": 394, "revenue": 6845.369983, "avgShipping": 2.2577411167512693, "pctFreeShip": 0.4263959390862944}, {"YearMonth": "2025-09", "AOVBucket": "20-25", "count": 356, "revenue": 7996.639913999999, "avgShipping": 3.4821629213483147, "pctFreeShip": 0.12640449438202248}, {"YearMonth": "2025-09", "AOVBucket": "25-30", "count": 256, "revenue": 6950.609985, "avgShipping": 3.211328125, "pctFreeShip": 0.21484375}, {"YearMonth": "2025-09", "AOVBucket": "30-35", "count": 245, "revenue": 7968.599922, "avgShipping": 2.66, "pctFreeShip": 0.3020408163265306}, {"YearMonth": "2025-09", "AOVBucket": "35-40", "count": 161, "revenue": 6030.689918, "avgShipping": 2.3369565217391304, "pctFreeShip": 0.19875776397515527}, {"YearMonth": "2025-09", "AOVBucket": "40-50", "count": 200, "revenue": 8871.089944, "avgShipping": 3.1275, "pctFreeShip": 0.065}, {"YearMonth": "2025-09", "AOVBucket": "50-60", "count": 128, "revenue": 7011.649961, "avgShipping": 2.790625, "pctFreeShip": 0.15625}, {"YearMonth": "2025-09", "AOVBucket": "60-75", "count": 159, "revenue": 10557.369922, "avgShipping": 1.278930817610063, "pctFreeShip": 0.710691823899371}, {"YearMonth": "2025-09", "AOVBucket": "75-100", "count": 74, "revenue": 6315.74001, "avgShipping": 2.0236486486486487, "pctFreeShip": 0.6756756756756757}, {"YearMonth": "2025-09", "AOVBucket": "100-150", "count": 42, "revenue": 4894.160759, "avgShipping": 1.0095238095238097, "pctFreeShip": 0.8571428571428571}, {"YearMonth": "2025-09", "AOVBucket": "150-200", "count": 14, "revenue": 2296.280015, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-09", "AOVBucket": "200-500", "count": 2, "revenue": 597.149991, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-10", "AOVBucket": "<5", "count": 13, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-10", "AOVBucket": "5-10", "count": 64, "revenue": 603.93, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-10", "AOVBucket": "10-15", "count": 227, "revenue": 3016.0299999999997, "avgShipping": 1.6848017621145375, "pctFreeShip": 0.5330396475770925}, {"YearMonth": "2025-10", "AOVBucket": "15-20", "count": 451, "revenue": 7858.419973, "avgShipping": 1.8623059866962306, "pctFreeShip": 0.5188470066518847}, {"YearMonth": "2025-10", "AOVBucket": "20-25", "count": 390, "revenue": 8790.849908, "avgShipping": 3.5475641025641025, "pctFreeShip": 0.14358974358974358}, {"YearMonth": "2025-10", "AOVBucket": "25-30", "count": 260, "revenue": 7011.529962, "avgShipping": 2.9753846153846153, "pctFreeShip": 0.25}, {"YearMonth": "2025-10", "AOVBucket": "30-35", "count": 264, "revenue": 8552.519923, "avgShipping": 2.578598484848485, "pctFreeShip": 0.35984848484848486}, {"YearMonth": "2025-10", "AOVBucket": "35-40", "count": 177, "revenue": 6653.839915, "avgShipping": 3.0725988700564972, "pctFreeShip": 0.1638418079096045}, {"YearMonth": "2025-10", "AOVBucket": "40-50", "count": 235, "revenue": 10392.769937, "avgShipping": 3.1478723404255318, "pctFreeShip": 0.1276595744680851}, {"YearMonth": "2025-10", "AOVBucket": "50-60", "count": 134, "revenue": 7316.709959, "avgShipping": 2.6985074626865675, "pctFreeShip": 0.15671641791044777}, {"YearMonth": "2025-10", "AOVBucket": "60-75", "count": 187, "revenue": 12396.669933, "avgShipping": 1.4393048128342245, "pctFreeShip": 0.6737967914438503}, {"YearMonth": "2025-10", "AOVBucket": "75-100", "count": 87, "revenue": 7460.279991, "avgShipping": 1.453448275862069, "pctFreeShip": 0.7931034482758621}, {"YearMonth": "2025-10", "AOVBucket": "100-150", "count": 56, "revenue": 6653.579959, "avgShipping": 0.6330357142857144, "pctFreeShip": 0.9285714285714286}, {"YearMonth": "2025-10", "AOVBucket": "150-200", "count": 9, "revenue": 1497.929993, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-10", "AOVBucket": "200-500", "count": 6, "revenue": 1509.069994, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-11", "AOVBucket": "<5", "count": 8, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-11", "AOVBucket": "5-10", "count": 51, "revenue": 484.39, "avgShipping": 0.13725490196078433, "pctFreeShip": 0.9607843137254902}, {"YearMonth": "2025-11", "AOVBucket": "10-15", "count": 208, "revenue": 2768.89, "avgShipping": 1.7884615384615385, "pctFreeShip": 0.5}, {"YearMonth": "2025-11", "AOVBucket": "15-20", "count": 359, "revenue": 6291.6199719999995, "avgShipping": 1.856824512534819, "pctFreeShip": 0.5153203342618384}, {"YearMonth": "2025-11", "AOVBucket": "20-25", "count": 309, "revenue": 6962.689923, "avgShipping": 3.376699029126214, "pctFreeShip": 0.13592233009708737}, {"YearMonth": "2025-11", "AOVBucket": "25-30", "count": 210, "revenue": 5630.529996, "avgShipping": 3.13, "pctFreeShip": 0.21904761904761905}, {"YearMonth": "2025-11", "AOVBucket": "30-35", "count": 196, "revenue": 6338.609946, "avgShipping": 2.505357142857143, "pctFreeShip": 0.37755102040816324}, {"YearMonth": "2025-11", "AOVBucket": "35-40", "count": 146, "revenue": 5495.169935, "avgShipping": 3.3102739726027397, "pctFreeShip": 0.1643835616438356}, {"YearMonth": "2025-11", "AOVBucket": "40-50", "count": 210, "revenue": 9357.269925999999, "avgShipping": 3.4297619047619046, "pctFreeShip": 0.07142857142857142}, {"YearMonth": "2025-11", "AOVBucket": "50-60", "count": 128, "revenue": 7008.15997, "avgShipping": 2.709375, "pctFreeShip": 0.1171875}, {"YearMonth": "2025-11", "AOVBucket": "60-75", "count": 160, "revenue": 10712.059951, "avgShipping": 1.1528125, "pctFreeShip": 0.75}, {"YearMonth": "2025-11", "AOVBucket": "75-100", "count": 84, "revenue": 7211.399985, "avgShipping": 1.8047619047619048, "pctFreeShip": 0.7142857142857143}, {"YearMonth": "2025-11", "AOVBucket": "100-150", "count": 40, "revenue": 4607.959987, "avgShipping": 0.8875, "pctFreeShip": 0.9}, {"YearMonth": "2025-11", "AOVBucket": "150-200", "count": 3, "revenue": 552.910009, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-11", "AOVBucket": "200-500", "count": 5, "revenue": 1375.72001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-12", "AOVBucket": "<5", "count": 13, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-12", "AOVBucket": "5-10", "count": 49, "revenue": 457.83, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-12", "AOVBucket": "10-15", "count": 197, "revenue": 2610.99, "avgShipping": 1.801015228426396, "pctFreeShip": 0.49238578680203043}, {"YearMonth": "2025-12", "AOVBucket": "15-20", "count": 330, "revenue": 5727.069981, "avgShipping": 1.91, "pctFreeShip": 0.5060606060606061}, {"YearMonth": "2025-12", "AOVBucket": "20-25", "count": 284, "revenue": 6388.399902, "avgShipping": 3.2420774647887325, "pctFreeShip": 0.21830985915492956}, {"YearMonth": "2025-12", "AOVBucket": "25-30", "count": 243, "revenue": 6531.329984, "avgShipping": 3.4189300411522634, "pctFreeShip": 0.1646090534979424}, {"YearMonth": "2025-12", "AOVBucket": "30-35", "count": 169, "revenue": 5461.049951, "avgShipping": 2.9931952662721897, "pctFreeShip": 0.33727810650887574}, {"YearMonth": "2025-12", "AOVBucket": "35-40", "count": 152, "revenue": 5688.649937, "avgShipping": 3.692434210526316, "pctFreeShip": 0.14473684210526316}, {"YearMonth": "2025-12", "AOVBucket": "40-50", "count": 188, "revenue": 8360.69994, "avgShipping": 3.4643617021276594, "pctFreeShip": 0.0797872340425532}, {"YearMonth": "2025-12", "AOVBucket": "50-60", "count": 103, "revenue": 5671.779977, "avgShipping": 2.9567961165048544, "pctFreeShip": 0.1262135922330097}, {"YearMonth": "2025-12", "AOVBucket": "60-75", "count": 135, "revenue": 8958.659956, "avgShipping": 1.2466666666666666, "pctFreeShip": 0.6962962962962963}, {"YearMonth": "2025-12", "AOVBucket": "75-100", "count": 55, "revenue": 4721.570002, "avgShipping": 1.8154545454545454, "pctFreeShip": 0.6909090909090909}, {"YearMonth": "2025-12", "AOVBucket": "100-150", "count": 40, "revenue": 4766.96997, "avgShipping": 0.6375, "pctFreeShip": 0.925}, {"YearMonth": "2025-12", "AOVBucket": "150-200", "count": 8, "revenue": 1383.689995, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2025-12", "AOVBucket": "200-500", "count": 3, "revenue": 742.6600040000001, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2026-01", "AOVBucket": "<5", "count": 4, "revenue": 0.0, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2026-01", "AOVBucket": "5-10", "count": 16, "revenue": 156.41, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2026-01", "AOVBucket": "10-15", "count": 59, "revenue": 791.43, "avgShipping": 2.152542372881356, "pctFreeShip": 0.423728813559322}, {"YearMonth": "2026-01", "AOVBucket": "15-20", "count": 144, "revenue": 2471.239995, "avgShipping": 2.2503472222222225, "pctFreeShip": 0.4305555555555556}, {"YearMonth": "2026-01", "AOVBucket": "20-25", "count": 130, "revenue": 2941.189961, "avgShipping": 3.456153846153846, "pctFreeShip": 0.11538461538461539}, {"YearMonth": "2026-01", "AOVBucket": "25-30", "count": 116, "revenue": 3143.6599969999997, "avgShipping": 3.2961206896551722, "pctFreeShip": 0.1810344827586207}, {"YearMonth": "2026-01", "AOVBucket": "30-35", "count": 89, "revenue": 2882.029975, "avgShipping": 2.5353932584269665, "pctFreeShip": 0.34831460674157305}, {"YearMonth": "2026-01", "AOVBucket": "35-40", "count": 67, "revenue": 2500.619967, "avgShipping": 3.797761194029851, "pctFreeShip": 0.05970149253731343}, {"YearMonth": "2026-01", "AOVBucket": "40-50", "count": 77, "revenue": 3390.2499709999997, "avgShipping": 3.2233766233766232, "pctFreeShip": 0.11688311688311688}, {"YearMonth": "2026-01", "AOVBucket": "50-60", "count": 52, "revenue": 2864.1299559999998, "avgShipping": 3.0865384615384617, "pctFreeShip": 0.057692307692307696}, {"YearMonth": "2026-01", "AOVBucket": "60-75", "count": 60, "revenue": 4017.899987, "avgShipping": 1.4966666666666666, "pctFreeShip": 0.6666666666666666}, {"YearMonth": "2026-01", "AOVBucket": "75-100", "count": 45, "revenue": 3794.500012, "avgShipping": 1.3177777777777777, "pctFreeShip": 0.7777777777777778}, {"YearMonth": "2026-01", "AOVBucket": "100-150", "count": 20, "revenue": 2273.639999, "avgShipping": 1.275, "pctFreeShip": 0.85}, {"YearMonth": "2026-01", "AOVBucket": "150-200", "count": 6, "revenue": 1032.929993, "avgShipping": 0.0, "pctFreeShip": 1.0}, {"YearMonth": "2026-01", "AOVBucket": "200-500", "count": 3, "revenue": 712.329995, "avgShipping": 0.0, "pctFreeShip": 1.0}], "discountMonthly": [{"YearMonth": "2005-11", "HasDiscount": 0, "count": 2, "avgAOV": 18.9249505, "avgItems": 1.5, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 37.849901}, {"YearMonth": "2005-12", "HasDiscount": 0, "count": 1, "avgAOV": 17.9, "avgItems": 2.0, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 17.9}, {"YearMonth": "2006-01", "HasDiscount": 0, "count": 4, "avgAOV": 26.612424750000002, "avgItems": 2.25, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 106.44969900000001}, {"YearMonth": "2006-02", "HasDiscount": 0, "count": 5, "avgAOV": 24.2200004, "avgItems": 2.0, "avgMargin": 100.0, "avgShipping": 0.8, "revenue": 121.100002}, {"YearMonth": "2006-03", "HasDiscount": 0, "count": 111, "avgAOV": 20.579549585585585, "avgItems": 1.945945945945946, "avgMargin": 100.0, "avgShipping": 0.4954954954954955, "revenue": 2284.330004}, {"YearMonth": "2006-04", "HasDiscount": 0, "count": 171, "avgAOV": 17.31306905263158, "avgItems": 1.5847953216374269, "avgMargin": 100.0, "avgShipping": 0.52046783625731, "revenue": 2960.534808}, {"YearMonth": "2006-05", "HasDiscount": 0, "count": 243, "avgAOV": 17.714511971193414, "avgItems": 1.5679012345679013, "avgMargin": 100.0, "avgShipping": 0.39094650205761317, "revenue": 4304.6264089999995}, {"YearMonth": "2006-05", "HasDiscount": 1, "count": 1, "avgAOV": 13.41, "avgItems": 2.0, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 13.41}, {"YearMonth": "2006-06", "HasDiscount": 0, "count": 265, "avgAOV": 18.358950649056606, "avgItems": 1.679245283018868, "avgMargin": 100.0, "avgShipping": 0.4075471698113208, "revenue": 4865.121922}, {"YearMonth": "2006-07", "HasDiscount": 0, "count": 302, "avgAOV": 18.152407, "avgItems": 1.509933774834437, "avgMargin": 100.0, "avgShipping": 0.48344370860927155, "revenue": 5482.026914}, {"YearMonth": "2006-08", "HasDiscount": 0, "count": 282, "avgAOV": 19.94854228723404, "avgItems": 1.5851063829787233, "avgMargin": 100.0, "avgShipping": 0.5851063829787234, "revenue": 5625.488925}, {"YearMonth": "2006-08", "HasDiscount": 1, "count": 1, "avgAOV": 15.20991, "avgItems": 2.0, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 15.20991}, {"YearMonth": "2006-09", "HasDiscount": 0, "count": 337, "avgAOV": 17.836465356083085, "avgItems": 1.6468842729970326, "avgMargin": 100.0, "avgShipping": 0.5252225519287834, "revenue": 6010.888825}, {"YearMonth": "2006-09", "HasDiscount": 1, "count": 32, "avgAOV": 25.561526906250002, "avgItems": 2.125, "avgMargin": 100.0, "avgShipping": 0.25, "revenue": 817.9688610000001}, {"YearMonth": "2006-10", "HasDiscount": 0, "count": 435, "avgAOV": 17.94933200689655, "avgItems": 1.6873563218390804, "avgMargin": 100.0, "avgShipping": 0.5701149425287356, "revenue": 7807.959423}, {"YearMonth": "2006-10", "HasDiscount": 1, "count": 38, "avgAOV": 25.46566944736842, "avgItems": 2.3947368421052633, "avgMargin": 100.0, "avgShipping": 0.23684210526315788, "revenue": 967.695439}, {"YearMonth": "2006-11", "HasDiscount": 0, "count": 433, "avgAOV": 17.133974424942263, "avgItems": 1.5958429561200924, "avgMargin": 100.0, "avgShipping": 0.5796766743648961, "revenue": 7419.010926}, {"YearMonth": "2006-11", "HasDiscount": 1, "count": 19, "avgAOV": 32.51559563157895, "avgItems": 2.3684210526315788, "avgMargin": 100.0, "avgShipping": 0.15789473684210525, "revenue": 617.796317}, {"YearMonth": "2006-12", "HasDiscount": 0, "count": 456, "avgAOV": 19.029256844298246, "avgItems": 1.5263157894736843, "avgMargin": 100.0, "avgShipping": 0.34210526315789475, "revenue": 8677.341121}, {"YearMonth": "2006-12", "HasDiscount": 1, "count": 1, "avgAOV": 25.10874, "avgItems": 2.0, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 25.10874}, {"YearMonth": "2007-01", "HasDiscount": 0, "count": 636, "avgAOV": 17.937485072327043, "avgItems": 1.501572327044025, "avgMargin": 100.0, "avgShipping": 0.46540880503144655, "revenue": 11408.240506}, {"YearMonth": "2007-01", "HasDiscount": 1, "count": 3, "avgAOV": 25.964969999999997, "avgItems": 3.0, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 77.89491}, {"YearMonth": "2007-02", "HasDiscount": 0, "count": 658, "avgAOV": 18.470579492401214, "avgItems": 1.5182370820668694, "avgMargin": 100.0, "avgShipping": 0.3130699088145897, "revenue": 12153.641306}, {"YearMonth": "2007-02", "HasDiscount": 1, "count": 2, "avgAOV": 31.342545, "avgItems": 3.5, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 62.68509}, {"YearMonth": "2007-03", "HasDiscount": 0, "count": 555, "avgAOV": 19.429256655855855, "avgItems": 1.6, "avgMargin": 100.0, "avgShipping": 0.4126126126126126, "revenue": 10783.237444}, {"YearMonth": "2007-04", "HasDiscount": 0, "count": 452, "avgAOV": 19.53245560840708, "avgItems": 1.6261061946902655, "avgMargin": 100.0, "avgShipping": 0.5331858407079646, "revenue": 8828.669935}, {"YearMonth": "2007-05", "HasDiscount": 0, "count": 500, "avgAOV": 18.961445272000002, "avgItems": 1.658, "avgMargin": 100.0, "avgShipping": 0.458, "revenue": 9480.722636}, {"YearMonth": "2007-05", "HasDiscount": 1, "count": 15, "avgAOV": 25.3270816, "avgItems": 2.066666666666667, "avgMargin": 100.0, "avgShipping": 0.2, "revenue": 379.906224}, {"YearMonth": "2007-06", "HasDiscount": 0, "count": 520, "avgAOV": 19.611861632692307, "avgItems": 1.6, "avgMargin": 100.0, "avgShipping": 1.0461538461538462, "revenue": 10198.168049}, {"YearMonth": "2007-06", "HasDiscount": 1, "count": 13, "avgAOV": 29.408700384615386, "avgItems": 2.230769230769231, "avgMargin": 100.0, "avgShipping": 0.3076923076923077, "revenue": 382.313105}, {"YearMonth": "2007-07", "HasDiscount": 0, "count": 524, "avgAOV": 21.02767678244275, "avgItems": 1.6469465648854962, "avgMargin": 100.0, "avgShipping": 1.0534351145038168, "revenue": 11018.502634}, {"YearMonth": "2007-08", "HasDiscount": 0, "count": 487, "avgAOV": 20.431160036960986, "avgItems": 1.675564681724846, "avgMargin": 100.0, "avgShipping": 1.0841889117043122, "revenue": 9949.974938}, {"YearMonth": "2007-08", "HasDiscount": 1, "count": 4, "avgAOV": 18.9862275, "avgItems": 2.25, "avgMargin": 100.0, "avgShipping": 0.75, "revenue": 75.94491}, {"YearMonth": "2007-09", "HasDiscount": 0, "count": 491, "avgAOV": 19.58627627291242, "avgItems": 1.625254582484725, "avgMargin": 100.0, "avgShipping": 1.0733197556008147, "revenue": 9616.861649999999}, {"YearMonth": "2007-09", "HasDiscount": 1, "count": 2, "avgAOV": 27.398112500000003, "avgItems": 3.0, "avgMargin": 100.0, "avgShipping": 1.0, "revenue": 54.79622500000001}, {"YearMonth": "2007-10", "HasDiscount": 0, "count": 452, "avgAOV": 23.463162743362833, "avgItems": 1.9623893805309736, "avgMargin": 100.0, "avgShipping": 1.0309734513274336, "revenue": 10605.34956}, {"YearMonth": "2007-10", "HasDiscount": 1, "count": 4, "avgAOV": 23.65057025, "avgItems": 1.75, "avgMargin": 100.0, "avgShipping": 0.75, "revenue": 94.602281}, {"YearMonth": "2007-11", "HasDiscount": 0, "count": 466, "avgAOV": 20.572447354077255, "avgItems": 1.7167381974248928, "avgMargin": 100.0, "avgShipping": 0.8969957081545065, "revenue": 9586.760467}, {"YearMonth": "2007-11", "HasDiscount": 1, "count": 1, "avgAOV": 33.124319, "avgItems": 4.0, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 33.124319}, {"YearMonth": "2007-12", "HasDiscount": 0, "count": 373, "avgAOV": 20.434782383378018, "avgItems": 1.6648793565683646, "avgMargin": 100.0, "avgShipping": 1.1823056300268096, "revenue": 7622.173829}, {"YearMonth": "2007-12", "HasDiscount": 1, "count": 1, "avgAOV": 84.573018, "avgItems": 5.0, "avgMargin": 100.0, "avgShipping": 2.0, "revenue": 84.573018}, {"YearMonth": "2008-01", "HasDiscount": 0, "count": 652, "avgAOV": 20.256505628834354, "avgItems": 1.642638036809816, "avgMargin": 100.0, "avgShipping": 1.0352760736196318, "revenue": 13207.24167}, {"YearMonth": "2008-01", "HasDiscount": 1, "count": 2, "avgAOV": 17.158075, "avgItems": 1.5, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 34.31615}, {"YearMonth": "2008-02", "HasDiscount": 0, "count": 519, "avgAOV": 21.17355077071291, "avgItems": 1.7533718689788054, "avgMargin": 100.0, "avgShipping": 1.186897880539499, "revenue": 10989.07285}, {"YearMonth": "2008-02", "HasDiscount": 1, "count": 2, "avgAOV": 21.484215, "avgItems": 2.5, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 42.96843}, {"YearMonth": "2008-03", "HasDiscount": 0, "count": 622, "avgAOV": 20.24733013022508, "avgItems": 1.6655948553054662, "avgMargin": 100.0, "avgShipping": 1.1318327974276527, "revenue": 12593.839340999999}, {"YearMonth": "2008-03", "HasDiscount": 1, "count": 3, "avgAOV": 24.917453, "avgItems": 3.0, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 74.752359}, {"YearMonth": "2008-04", "HasDiscount": 0, "count": 564, "avgAOV": 18.88191251595745, "avgItems": 1.4858156028368794, "avgMargin": 100.0, "avgShipping": 1.0230496453900708, "revenue": 10649.398659}, {"YearMonth": "2008-04", "HasDiscount": 1, "count": 1, "avgAOV": 11.655, "avgItems": 1.0, "avgMargin": 100.0, "avgShipping": 0.0, "revenue": 11.655}, {"YearMonth": "2008-05", "HasDiscount": 0, "count": 612, "avgAOV": 19.652653397058824, "avgItems": 1.542483660130719, "avgMargin": 100.0, "avgShipping": 1.2107843137254901, "revenue": 12027.423879}, {"YearMonth": "2008-05", "HasDiscount": 1, "count": 1, "avgAOV": 26.21, "avgItems": 2.0, "avgMargin": 100.0, "avgShipping": 2.0, "revenue": 26.21}, {"YearMonth": "2008-06", "HasDiscount": 0, "count": 876, "avgAOV": 19.895551392694063, "avgItems": 1.5970319634703196, "avgMargin": 100.0, "avgShipping": 1.1563926940639269, "revenue": 17428.50302}, {"YearMonth": "2008-06", "HasDiscount": 1, "count": 1, "avgAOV": 56.224821, "avgItems": 5.0, "avgMargin": 100.0, "avgShipping": 2.0, "revenue": 56.224821}, {"YearMonth": "2008-07", "HasDiscount": 0, "count": 799, "avgAOV": 18.810199802252814, "avgItems": 1.5669586983729662, "avgMargin": 100.0, "avgShipping": 1.2177722152690864, "revenue": 15029.349642}, {"YearMonth": "2008-07", "HasDiscount": 1, "count": 34, "avgAOV": 29.68248582352941, "avgItems": 3.0, "avgMargin": 100.0, "avgShipping": 1.0588235294117647, "revenue": 1009.204518}, {"YearMonth": "2008-08", "HasDiscount": 0, "count": 1049, "avgAOV": 19.36103576739752, "avgItems": 1.6520495710200191, "avgMargin": 100.0, "avgShipping": 1.3107721639656815, "revenue": 20309.72652}, {"YearMonth": "2008-08", "HasDiscount": 1, "count": 99, "avgAOV": 9.007884131313132, "avgItems": 1.6363636363636365, "avgMargin": 100.0, "avgShipping": 1.7474747474747474, "revenue": 891.780529}, {"YearMonth": "2008-09", "HasDiscount": 0, "count": 956, "avgAOV": 19.943599620292886, "avgItems": 1.6307531380753137, "avgMargin": 100.0, "avgShipping": 1.2405857740585775, "revenue": 19066.081237}, {"YearMonth": "2008-09", "HasDiscount": 1, "count": 8, "avgAOV": 28.553812875, "avgItems": 2.125, "avgMargin": 100.0, "avgShipping": 0.75, "revenue": 228.430503}, {"YearMonth": "2008-10", "HasDiscount": 0, "count": 1211, "avgAOV": 20.30331748059455, "avgItems": 1.560693641618497, "avgMargin": 100.0, "avgShipping": 1.1511147811725846, "revenue": 24587.317469}, {"YearMonth": "2008-10", "HasDiscount": 1, "count": 6, "avgAOV": 37.63033066666667, "avgItems": 3.0, "avgMargin": 100.0, "avgShipping": 1.0, "revenue": 225.78198400000002}, {"YearMonth": "2008-11", "HasDiscount": 0, "count": 1242, "avgAOV": 20.319211466988726, "avgItems": 1.5579710144927537, "avgMargin": 100.0, "avgShipping": 1.328099838969404, "revenue": 25236.460642}, {"YearMonth": "2008-11", "HasDiscount": 1, "count": 6, "avgAOV": 34.00731316666667, "avgItems": 2.5, "avgMargin": 100.0, "avgShipping": 0.3333333333333333, "revenue": 204.043879}, {"YearMonth": "2008-12", "HasDiscount": 0, "count": 987, "avgAOV": 20.576087738601824, "avgItems": 1.6443768996960486, "avgMargin": 100.0, "avgShipping": 1.5775075987841944, "revenue": 20308.598598}, {"YearMonth": "2008-12", "HasDiscount": 1, "count": 1, "avgAOV": 6.36023, "avgItems": 1.0, "avgMargin": 100.0, "avgShipping": 2.0, "revenue": 6.36023}, {"YearMonth": "2009-01", "HasDiscount": 0, "count": 1657, "avgAOV": 20.876077507543755, "avgItems": 1.6729028364514182, "avgMargin": 100.0, "avgShipping": 1.5259505129752564, "revenue": 34591.66043}, {"YearMonth": "2009-01", "HasDiscount": 1, "count": 11, "avgAOV": 45.985375909090905, "avgItems": 10.727272727272727, "avgMargin": 100.0, "avgShipping": 1.5454545454545454, "revenue": 505.83913499999994}, {"YearMonth": "2009-02", "HasDiscount": 0, "count": 1482, "avgAOV": 21.794537008097166, "avgItems": 1.7071524966261808, "avgMargin": 100.0, "avgShipping": 1.460863697705803, "revenue": 32299.503846}, {"YearMonth": "2009-02", "HasDiscount": 1, "count": 5, "avgAOV": 119.9753516, "avgItems": 9.0, "avgMargin": 100.0, "avgShipping": 0.4, "revenue": 599.876758}, {"YearMonth": "2009-03", "HasDiscount": 0, "count": 1717, "avgAOV": 21.574225314502037, "avgItems": 1.669772859638905, "avgMargin": 100.0, "avgShipping": 1.435934769947583, "revenue": 37042.944865}, {"YearMonth": "2009-03", "HasDiscount": 1, "count": 8, "avgAOV": 24.1555565, "avgItems": 2.125, "avgMargin": 100.0, "avgShipping": 1.75, "revenue": 193.244452}, {"YearMonth": "2009-04", "HasDiscount": 0, "count": 1690, "avgAOV": 21.99374590414201, "avgItems": 1.7100591715976332, "avgMargin": 100.0, "avgShipping": 1.4233727810650887, "revenue": 37169.430578}, {"YearMonth": "2009-04", "HasDiscount": 1, "count": 7, "avgAOV": 17.97586242857143, "avgItems": 1.4285714285714286, "avgMargin": 100.0, "avgShipping": 0.8571428571428571, "revenue": 125.831037}, {"YearMonth": "2009-05", "HasDiscount": 0, "count": 1648, "avgAOV": 21.81877056067961, "avgItems": 1.6516990291262137, "avgMargin": 100.0, "avgShipping": 1.5964805825242718, "revenue": 35957.333884}, {"YearMonth": "2009-05", "HasDiscount": 1, "count": 367, "avgAOV": 23.082707397820162, "avgItems": 1.9100817438692097, "avgMargin": 100.0, "avgShipping": 1.0858310626702998, "revenue": 8471.353615}, {"YearMonth": "2009-06", "HasDiscount": 0, "count": 1772, "avgAOV": 21.795522806433407, "avgItems": 1.5840857787810383, "avgMargin": 100.0, "avgShipping": 1.6439051918735892, "revenue": 38621.666413}, {"YearMonth": "2009-06", "HasDiscount": 1, "count": 32, "avgAOV": 24.552696375, "avgItems": 2.03125, "avgMargin": 100.0, "avgShipping": 0.671875, "revenue": 785.686284}, {"YearMonth": "2009-07", "HasDiscount": 0, "count": 1820, "avgAOV": 22.975367394505497, "avgItems": 1.7021978021978021, "avgMargin": 100.0, "avgShipping": 1.5351648351648353, "revenue": 41815.168658}, {"YearMonth": "2009-07", "HasDiscount": 1, "count": 13, "avgAOV": 36.49293146153846, "avgItems": 2.923076923076923, "avgMargin": 100.0, "avgShipping": 1.8076923076923077, "revenue": 474.40810899999997}, {"YearMonth": "2009-08", "HasDiscount": 0, "count": 1663, "avgAOV": 22.866089150330726, "avgItems": 1.6921226698737222, "avgMargin": 100.0, "avgShipping": 1.552916416115454, "revenue": 38026.306257}, {"YearMonth": "2009-08", "HasDiscount": 1, "count": 195, "avgAOV": 26.271862825641026, "avgItems": 2.1435897435897435, "avgMargin": 100.0, "avgShipping": 1.005128205128205, "revenue": 5123.013251}, {"YearMonth": "2009-09", "HasDiscount": 0, "count": 1587, "avgAOV": 23.677387293635793, "avgItems": 1.6345305608065532, "avgMargin": 100.0, "avgShipping": 1.5022054190296157, "revenue": 37576.013635}, {"YearMonth": "2009-09", "HasDiscount": 1, "count": 34, "avgAOV": 28.131109588235294, "avgItems": 2.4411764705882355, "avgMargin": 100.0, "avgShipping": 1.1029411764705883, "revenue": 956.457726}, {"YearMonth": "2009-10", "HasDiscount": 0, "count": 1680, "avgAOV": 23.396781957142856, "avgItems": 1.6375, "avgMargin": 100.0, "avgShipping": 1.1958333333333333, "revenue": 39306.593688}, {"YearMonth": "2009-10", "HasDiscount": 1, "count": 12, "avgAOV": 23.006677749999998, "avgItems": 1.5833333333333333, "avgMargin": 100.0, "avgShipping": 0.625, "revenue": 276.080133}, {"YearMonth": "2009-11", "HasDiscount": 0, "count": 1810, "avgAOV": 22.69656643370166, "avgItems": 1.6939226519337016, "avgMargin": 100.0, "avgShipping": 1.3030386740331492, "revenue": 41080.785245}, {"YearMonth": "2009-11", "HasDiscount": 1, "count": 13, "avgAOV": 26.221012384615385, "avgItems": 2.5384615384615383, "avgMargin": 100.0, "avgShipping": 0.8846153846153846, "revenue": 340.873161}, {"YearMonth": "2009-12", "HasDiscount": 0, "count": 1272, "avgAOV": 23.870870376572327, "avgItems": 1.6949685534591195, "avgMargin": 100.0, "avgShipping": 1.570754716981132, "revenue": 30363.747119}, {"YearMonth": "2009-12", "HasDiscount": 1, "count": 150, "avgAOV": 25.031635373333334, "avgItems": 2.04, "avgMargin": 100.0, "avgShipping": 1.2366666666666666, "revenue": 3754.745306}, {"YearMonth": "2010-01", "HasDiscount": 0, "count": 1744, "avgAOV": 23.589704540137614, "avgItems": 1.624426605504587, "avgMargin": 100.0, "avgShipping": 1.4931192660550459, "revenue": 41140.444718}, {"YearMonth": "2010-01", "HasDiscount": 1, "count": 395, "avgAOV": 27.594435144303798, "avgItems": 2.0759493670886076, "avgMargin": 100.0, "avgShipping": 1.2025316455696202, "revenue": 10899.801882}, {"YearMonth": "2010-02", "HasDiscount": 0, "count": 1700, "avgAOV": 24.332599122352942, "avgItems": 1.6241176470588234, "avgMargin": 100.0, "avgShipping": 1.4123529411764706, "revenue": 41365.418508}, {"YearMonth": "2010-02", "HasDiscount": 1, "count": 39, "avgAOV": 22.06160005128205, "avgItems": 1.7179487179487178, "avgMargin": 100.0, "avgShipping": 1.1923076923076923, "revenue": 860.4024019999999}, {"YearMonth": "2010-03", "HasDiscount": 0, "count": 1830, "avgAOV": 23.842002298907104, "avgItems": 1.5775956284153005, "avgMargin": 100.0, "avgShipping": 1.5106557377049181, "revenue": 43630.864207}, {"YearMonth": "2010-03", "HasDiscount": 1, "count": 42, "avgAOV": 24.987463238095238, "avgItems": 2.0714285714285716, "avgMargin": 100.0, "avgShipping": 1.3452380952380953, "revenue": 1049.473456}, {"YearMonth": "2010-04", "HasDiscount": 0, "count": 1539, "avgAOV": 22.588189630929175, "avgItems": 1.543859649122807, "avgMargin": 100.0, "avgShipping": 1.4194282001299545, "revenue": 34763.223842}, {"YearMonth": "2010-04", "HasDiscount": 1, "count": 464, "avgAOV": 28.36936138577586, "avgItems": 2.081896551724138, "avgMargin": 100.0, "avgShipping": 1.1487068965517242, "revenue": 13163.383683}, {"YearMonth": "2010-05", "HasDiscount": 0, "count": 1626, "avgAOV": 23.107949292742926, "avgItems": 1.550430504305043, "avgMargin": 100.0, "avgShipping": 1.4486469864698648, "revenue": 37573.52555}, {"YearMonth": "2010-05", "HasDiscount": 1, "count": 357, "avgAOV": 27.781705036414564, "avgItems": 2.0280112044817926, "avgMargin": 100.0, "avgShipping": 1.0714285714285714, "revenue": 9918.068698}, {"YearMonth": "2010-06", "HasDiscount": 0, "count": 1739, "avgAOV": 23.58191694882116, "avgItems": 1.5589419206440482, "avgMargin": 100.0, "avgShipping": 1.4732604945370902, "revenue": 41008.953574}, {"YearMonth": "2010-06", "HasDiscount": 1, "count": 126, "avgAOV": 27.518905166666666, "avgItems": 2.1031746031746033, "avgMargin": 100.0, "avgShipping": 1.2341269841269842, "revenue": 3467.382051}, {"YearMonth": "2010-07", "HasDiscount": 0, "count": 1925, "avgAOV": 23.542703604675324, "avgItems": 1.5672727272727274, "avgMargin": 100.0, "avgShipping": 1.345974025974026, "revenue": 45319.704439}, {"YearMonth": "2010-07", "HasDiscount": 1, "count": 37, "avgAOV": 20.495561000000002, "avgItems": 1.4864864864864864, "avgMargin": 100.0, "avgShipping": 1.135135135135135, "revenue": 758.3357570000001}, {"YearMonth": "2010-08", "HasDiscount": 0, "count": 1821, "avgAOV": 24.95731385612301, "avgItems": 1.6507413509060955, "avgMargin": 100.0, "avgShipping": 1.3874244920373422, "revenue": 45447.268532}, {"YearMonth": "2010-08", "HasDiscount": 1, "count": 292, "avgAOV": 29.896399883561646, "avgItems": 2.184931506849315, "avgMargin": 100.0, "avgShipping": 0.9777397260273972, "revenue": 8729.748766}, {"YearMonth": "2010-09", "HasDiscount": 0, "count": 1884, "avgAOV": 24.223037236199573, "avgItems": 1.6427813163481952, "avgMargin": 100.0, "avgShipping": 1.335456475583864, "revenue": 45636.202153}, {"YearMonth": "2010-09", "HasDiscount": 1, "count": 49, "avgAOV": 36.56036412244898, "avgItems": 3.020408163265306, "avgMargin": 100.0, "avgShipping": 1.163265306122449, "revenue": 1791.457842}, {"YearMonth": "2010-10", "HasDiscount": 0, "count": 1841, "avgAOV": 26.037231566539926, "avgItems": 1.6800651819663226, "avgMargin": 100.0, "avgShipping": 1.384302009777295, "revenue": 47934.543314}, {"YearMonth": "2010-10", "HasDiscount": 1, "count": 33, "avgAOV": 29.645945424242424, "avgItems": 1.9090909090909092, "avgMargin": 100.0, "avgShipping": 1.0303030303030303, "revenue": 978.316199}, {"YearMonth": "2010-11", "HasDiscount": 0, "count": 1844, "avgAOV": 25.105888831344902, "avgItems": 1.6648590021691974, "avgMargin": 100.0, "avgShipping": 1.2898590021691974, "revenue": 46295.259005}, {"YearMonth": "2010-11", "HasDiscount": 1, "count": 22, "avgAOV": 25.299423363636365, "avgItems": 2.227272727272727, "avgMargin": 100.0, "avgShipping": 1.2954545454545454, "revenue": 556.587314}, {"YearMonth": "2010-12", "HasDiscount": 0, "count": 1430, "avgAOV": 24.842117834265732, "avgItems": 1.6314685314685315, "avgMargin": 100.0, "avgShipping": 1.2842657342657342, "revenue": 35524.228503}, {"YearMonth": "2010-12", "HasDiscount": 1, "count": 124, "avgAOV": 25.266415532258065, "avgItems": 1.8951612903225807, "avgMargin": 100.0, "avgShipping": 1.064516129032258, "revenue": 3133.035526}, {"YearMonth": "2011-01", "HasDiscount": 0, "count": 2141, "avgAOV": 24.22000344044839, "avgItems": 1.6179355441382532, "avgMargin": 100.0, "avgShipping": 1.3671181690798693, "revenue": 51855.027366}, {"YearMonth": "2011-01", "HasDiscount": 1, "count": 332, "avgAOV": 33.7594845873494, "avgItems": 2.358433734939759, "avgMargin": 100.0, "avgShipping": 1.0481927710843373, "revenue": 11208.148883}, {"YearMonth": "2011-02", "HasDiscount": 0, "count": 1844, "avgAOV": 24.795894222885032, "avgItems": 1.665943600867679, "avgMargin": 100.0, "avgShipping": 1.304229934924078, "revenue": 45723.628947}, {"YearMonth": "2011-02", "HasDiscount": 1, "count": 38, "avgAOV": 32.48749997368421, "avgItems": 2.026315789473684, "avgMargin": 100.0, "avgShipping": 1.0526315789473684, "revenue": 1234.524999}, {"YearMonth": "2011-03", "HasDiscount": 0, "count": 1829, "avgAOV": 24.5826794784035, "avgItems": 1.6325861126298524, "avgMargin": 100.0, "avgShipping": 1.3206670311645707, "revenue": 44961.720766}, {"YearMonth": "2011-03", "HasDiscount": 1, "count": 85, "avgAOV": 26.36659843529412, "avgItems": 2.023529411764706, "avgMargin": 100.0, "avgShipping": 0.9058823529411765, "revenue": 2241.160867}, {"YearMonth": "2011-04", "HasDiscount": 0, "count": 1548, "avgAOV": 24.36582730490956, "avgItems": 1.6104651162790697, "avgMargin": 100.0, "avgShipping": 1.393733850129199, "revenue": 37718.300667999996}, {"YearMonth": "2011-04", "HasDiscount": 1, "count": 396, "avgAOV": 27.60230959848485, "avgItems": 1.9217171717171717, "avgMargin": 100.0, "avgShipping": 0.9532828282828283, "revenue": 10930.514601}, {"YearMonth": "2011-05", "HasDiscount": 0, "count": 1822, "avgAOV": 24.88668444511526, "avgItems": 1.6712403951701427, "avgMargin": 100.0, "avgShipping": 1.3743139407244787, "revenue": 45343.539059}, {"YearMonth": "2011-05", "HasDiscount": 1, "count": 174, "avgAOV": 25.009554649425286, "avgItems": 1.9942528735632183, "avgMargin": 100.0, "avgShipping": 0.8591954022988506, "revenue": 4351.662509}, {"YearMonth": "2011-06", "HasDiscount": 0, "count": 1799, "avgAOV": 24.547454203446357, "avgItems": 1.649805447470817, "avgMargin": 100.0, "avgShipping": 1.310450250138966, "revenue": 44160.870112}, {"YearMonth": "2011-06", "HasDiscount": 1, "count": 177, "avgAOV": 23.776175598870058, "avgItems": 1.7966101694915255, "avgMargin": 100.0, "avgShipping": 0.8587570621468926, "revenue": 4208.383081}, {"YearMonth": "2011-07", "HasDiscount": 0, "count": 2053, "avgAOV": 24.108917086215296, "avgItems": 1.6488066244520214, "avgMargin": 100.0, "avgShipping": 0.9559181685338529, "revenue": 49495.606778}, {"YearMonth": "2011-07", "HasDiscount": 1, "count": 107, "avgAOV": 25.07379706542056, "avgItems": 1.8785046728971964, "avgMargin": 100.0, "avgShipping": 0.794392523364486, "revenue": 2682.896286}, {"YearMonth": "2011-08", "HasDiscount": 0, "count": 1966, "avgAOV": 23.99573543031536, "avgItems": 1.615971515768057, "avgMargin": 100.0, "avgShipping": 0.9608341810783316, "revenue": 47175.615856}, {"YearMonth": "2011-08", "HasDiscount": 1, "count": 412, "avgAOV": 29.101768660194175, "avgItems": 2.1189320388349513, "avgMargin": 100.0, "avgShipping": 0.7936893203883495, "revenue": 11989.928688}, {"YearMonth": "2011-09", "HasDiscount": 0, "count": 1934, "avgAOV": 22.705178238883143, "avgItems": 1.59100310237849, "avgMargin": 100.0, "avgShipping": 0.9759565667011375, "revenue": 43911.814714}, {"YearMonth": "2011-09", "HasDiscount": 1, "count": 86, "avgAOV": 22.765318058139535, "avgItems": 1.8488372093023255, "avgMargin": 100.0, "avgShipping": 0.6627906976744186, "revenue": 1957.817353}, {"YearMonth": "2011-10", "HasDiscount": 0, "count": 2327, "avgAOV": 22.064902114310268, "avgItems": 1.5938977223893425, "avgMargin": 100.0, "avgShipping": 0.9737859905457671, "revenue": 51345.027219999996}, {"YearMonth": "2011-10", "HasDiscount": 1, "count": 94, "avgAOV": 23.064291223404254, "avgItems": 1.9680851063829787, "avgMargin": 100.0, "avgShipping": 0.5425531914893617, "revenue": 2168.0433749999997}, {"YearMonth": "2011-11", "HasDiscount": 0, "count": 2501, "avgAOV": 21.980024971611357, "avgItems": 1.6029588164734105, "avgMargin": 100.0, "avgShipping": 0.9302279088364654, "revenue": 54972.042454}, {"YearMonth": "2011-11", "HasDiscount": 1, "count": 64, "avgAOV": 24.741591640625, "avgItems": 1.890625, "avgMargin": 100.0, "avgShipping": 0.6875, "revenue": 1583.461865}, {"YearMonth": "2011-12", "HasDiscount": 0, "count": 1945, "avgAOV": 22.082973102313623, "avgItems": 1.5866323907455013, "avgMargin": 100.0, "avgShipping": 0.7676092544987146, "revenue": 42951.382684}, {"YearMonth": "2011-12", "HasDiscount": 1, "count": 252, "avgAOV": 26.582288408730157, "avgItems": 2.0595238095238093, "avgMargin": 100.0, "avgShipping": 0.45634920634920634, "revenue": 6698.736679}, {"YearMonth": "2012-01", "HasDiscount": 0, "count": 2625, "avgAOV": 21.747447823619044, "avgItems": 1.5672380952380953, "avgMargin": 100.0, "avgShipping": 0.8986666666666666, "revenue": 57087.050536999996}, {"YearMonth": "2012-01", "HasDiscount": 1, "count": 505, "avgAOV": 32.9699286990099, "avgItems": 2.3504950495049504, "avgMargin": 100.0, "avgShipping": 0.7495049504950495, "revenue": 16649.813993}, {"YearMonth": "2012-02", "HasDiscount": 0, "count": 2365, "avgAOV": 22.32001250317125, "avgItems": 1.6435517970401692, "avgMargin": 100.0, "avgShipping": 0.9674418604651163, "revenue": 52786.82957}, {"YearMonth": "2012-02", "HasDiscount": 1, "count": 80, "avgAOV": 30.630584112500003, "avgItems": 2.2875, "avgMargin": 100.0, "avgShipping": 0.7375, "revenue": 2450.4467290000002}, {"YearMonth": "2012-03", "HasDiscount": 0, "count": 2210, "avgAOV": 24.259729302262443, "avgItems": 1.7004524886877828, "avgMargin": 100.0, "avgShipping": 1.0300904977375565, "revenue": 53614.001758}, {"YearMonth": "2012-03", "HasDiscount": 1, "count": 47, "avgAOV": 25.752276574468087, "avgItems": 2.0851063829787235, "avgMargin": 100.0, "avgShipping": 0.6382978723404256, "revenue": 1210.356999}, {"YearMonth": "2012-04", "HasDiscount": 0, "count": 2062, "avgAOV": 23.287459400096992, "avgItems": 1.63094083414161, "avgMargin": 100.0, "avgShipping": 0.9806013579049466, "revenue": 48018.741282999996}, {"YearMonth": "2012-04", "HasDiscount": 1, "count": 278, "avgAOV": 29.399464852517983, "avgItems": 2.172661870503597, "avgMargin": 100.0, "avgShipping": 0.8579136690647482, "revenue": 8173.051229}, {"YearMonth": "2012-05", "HasDiscount": 0, "count": 1984, "avgAOV": 24.678489847782256, "avgItems": 1.6471774193548387, "avgMargin": 100.0, "avgShipping": 1.0022681451612903, "revenue": 48962.123858}, {"YearMonth": "2012-05", "HasDiscount": 1, "count": 244, "avgAOV": 30.28217564754098, "avgItems": 2.0942622950819674, "avgMargin": 100.0, "avgShipping": 0.7622950819672131, "revenue": 7388.850858}, {"YearMonth": "2012-06", "HasDiscount": 0, "count": 1640, "avgAOV": 24.444246499390243, "avgItems": 1.6207317073170733, "avgMargin": 100.0, "avgShipping": 0.9503048780487805, "revenue": 40088.564259}, {"YearMonth": "2012-06", "HasDiscount": 1, "count": 290, "avgAOV": 35.93106395862069, "avgItems": 2.5413793103448277, "avgMargin": 100.0, "avgShipping": 0.9896551724137931, "revenue": 10420.008548}, {"YearMonth": "2012-07", "HasDiscount": 0, "count": 1532, "avgAOV": 22.734402619451696, "avgItems": 1.543733681462141, "avgMargin": 100.0, "avgShipping": 0.7568537859007833, "revenue": 34829.104813}, {"YearMonth": "2012-07", "HasDiscount": 1, "count": 418, "avgAOV": 32.40339460765551, "avgItems": 2.124401913875598, "avgMargin": 100.0, "avgShipping": 0.6543062200956937, "revenue": 13544.618946}, {"YearMonth": "2012-08", "HasDiscount": 0, "count": 1568, "avgAOV": 21.6029835440051, "avgItems": 1.5165816326530612, "avgMargin": 100.0, "avgShipping": 0.7544642857142857, "revenue": 33873.478197}, {"YearMonth": "2012-08", "HasDiscount": 1, "count": 358, "avgAOV": 41.34798608659218, "avgItems": 2.622905027932961, "avgMargin": 100.0, "avgShipping": 0.8114525139664804, "revenue": 14802.579019}, {"YearMonth": "2012-09", "HasDiscount": 0, "count": 2165, "avgAOV": 23.93483981616628, "avgItems": 1.6115473441108545, "avgMargin": 100.0, "avgShipping": 0.7415704387990762, "revenue": 51818.928202}, {"YearMonth": "2012-09", "HasDiscount": 1, "count": 90, "avgAOV": 40.26207693333333, "avgItems": 2.6666666666666665, "avgMargin": 100.0, "avgShipping": 0.4388888888888889, "revenue": 3623.586924}, {"YearMonth": "2012-10", "HasDiscount": 0, "count": 2327, "avgAOV": 24.65724186334336, "avgItems": 1.7262569832402235, "avgMargin": 100.0, "avgShipping": 0.8373442200257842, "revenue": 57377.401816}, {"YearMonth": "2012-10", "HasDiscount": 1, "count": 46, "avgAOV": 31.37597343478261, "avgItems": 2.282608695652174, "avgMargin": 100.0, "avgShipping": 0.5434782608695652, "revenue": 1443.294778}, {"YearMonth": "2012-11", "HasDiscount": 0, "count": 1902, "avgAOV": 24.243070664563618, "avgItems": 1.6908517350157728, "avgMargin": 100.0, "avgShipping": 0.7983701366982124, "revenue": 46110.320404}, {"YearMonth": "2012-11", "HasDiscount": 1, "count": 372, "avgAOV": 27.65145900268817, "avgItems": 2.0913978494623655, "avgMargin": 100.0, "avgShipping": 0.5564516129032258, "revenue": 10286.342749}, {"YearMonth": "2012-12", "HasDiscount": 0, "count": 1645, "avgAOV": 24.037973127051668, "avgItems": 1.6778115501519757, "avgMargin": 100.0, "avgShipping": 0.7519756838905776, "revenue": 39542.465793999996}, {"YearMonth": "2012-12", "HasDiscount": 1, "count": 61, "avgAOV": 27.2580288852459, "avgItems": 2.0327868852459017, "avgMargin": 100.0, "avgShipping": 0.9672131147540983, "revenue": 1662.739762}, {"YearMonth": "2013-01", "HasDiscount": 0, "count": 2184, "avgAOV": 24.8943342032967, "avgItems": 1.7124542124542124, "avgMargin": 100.0, "avgShipping": 0.907051282051282, "revenue": 54369.2259}, {"YearMonth": "2013-01", "HasDiscount": 1, "count": 548, "avgAOV": 30.65094966058394, "avgItems": 2.145985401459854, "avgMargin": 100.0, "avgShipping": 0.7527372262773723, "revenue": 16796.720414}, {"YearMonth": "2013-02", "HasDiscount": 0, "count": 1950, "avgAOV": 23.697181035897433, "avgItems": 1.681025641025641, "avgMargin": 100.0, "avgShipping": 0.8523076923076923, "revenue": 46209.50302}, {"YearMonth": "2013-02", "HasDiscount": 1, "count": 61, "avgAOV": 25.18500904918033, "avgItems": 1.901639344262295, "avgMargin": 100.0, "avgShipping": 0.7131147540983607, "revenue": 1536.285552}, {"YearMonth": "2013-03", "HasDiscount": 0, "count": 2092, "avgAOV": 23.8465842834608, "avgItems": 1.6419694072657744, "avgMargin": 100.0, "avgShipping": 0.8403441682600382, "revenue": 49887.054320999996}, {"YearMonth": "2013-03", "HasDiscount": 1, "count": 444, "avgAOV": 31.60893508783784, "avgItems": 2.2612612612612613, "avgMargin": 100.0, "avgShipping": 0.8096846846846847, "revenue": 14034.367179}, {"YearMonth": "2013-04", "HasDiscount": 0, "count": 2209, "avgAOV": 23.994809157084656, "avgItems": 1.6785875961973744, "avgMargin": 100.0, "avgShipping": 0.8637392485287461, "revenue": 53004.533428}, {"YearMonth": "2013-04", "HasDiscount": 1, "count": 360, "avgAOV": 32.927161250000005, "avgItems": 2.3222222222222224, "avgMargin": 100.0, "avgShipping": 0.6638888888888889, "revenue": 11853.77805}, {"YearMonth": "2013-05", "HasDiscount": 0, "count": 2441, "avgAOV": 22.56813028881606, "avgItems": 1.616960262187628, "avgMargin": 100.0, "avgShipping": 0.7298238426874232, "revenue": 55088.806035}, {"YearMonth": "2013-05", "HasDiscount": 1, "count": 97, "avgAOV": 32.23324080412371, "avgItems": 2.051546391752577, "avgMargin": 100.0, "avgShipping": 1.1134020618556701, "revenue": 3126.624358}, {"YearMonth": "2013-06", "HasDiscount": 0, "count": 2307, "avgAOV": 22.200741573038577, "avgItems": 1.564802774165583, "avgMargin": 100.0, "avgShipping": 0.7956220199393151, "revenue": 51217.110809}, {"YearMonth": "2013-06", "HasDiscount": 1, "count": 409, "avgAOV": 35.89390460146699, "avgItems": 2.5207823960880194, "avgMargin": 100.0, "avgShipping": 0.8667481662591687, "revenue": 14680.606982}, {"YearMonth": "2013-07", "HasDiscount": 0, "count": 1998, "avgAOV": 22.585037748748746, "avgItems": 1.5790790790790792, "avgMargin": 100.0, "avgShipping": 0.7697697697697697, "revenue": 45124.905421999996}, {"YearMonth": "2013-07", "HasDiscount": 1, "count": 323, "avgAOV": 31.118180699690406, "avgItems": 2.238390092879257, "avgMargin": 100.0, "avgShipping": 0.6377708978328174, "revenue": 10051.172366}, {"YearMonth": "2013-08", "HasDiscount": 0, "count": 2147, "avgAOV": 23.551109101071262, "avgItems": 1.6464834653004192, "avgMargin": 100.0, "avgShipping": 0.8008849557522124, "revenue": 50564.23124}, {"YearMonth": "2013-08", "HasDiscount": 1, "count": 91, "avgAOV": 28.801534494505496, "avgItems": 2.0549450549450547, "avgMargin": 100.0, "avgShipping": 0.6098901098901099, "revenue": 2620.939639}, {"YearMonth": "2013-09", "HasDiscount": 0, "count": 2186, "avgAOV": 23.549069375571822, "avgItems": 1.6500457456541628, "avgMargin": 100.0, "avgShipping": 0.8831198536139067, "revenue": 51478.265655}, {"YearMonth": "2013-09", "HasDiscount": 1, "count": 472, "avgAOV": 33.98364579449152, "avgItems": 2.3707627118644066, "avgMargin": 100.0, "avgShipping": 0.8877118644067796, "revenue": 16040.280815}, {"YearMonth": "2013-10", "HasDiscount": 0, "count": 2041, "avgAOV": 22.85160470798628, "avgItems": 1.648701616854483, "avgMargin": 100.0, "avgShipping": 0.8165115139637432, "revenue": 46640.125209}, {"YearMonth": "2013-10", "HasDiscount": 1, "count": 227, "avgAOV": 32.99903788105727, "avgItems": 2.3700440528634363, "avgMargin": 100.0, "avgShipping": 0.7819383259911894, "revenue": 7490.781599}, {"YearMonth": "2013-11", "HasDiscount": 0, "count": 1933, "avgAOV": 23.585247411795137, "avgItems": 1.6616658044490429, "avgMargin": 100.0, "avgShipping": 0.8362648732540093, "revenue": 45590.283247}, {"YearMonth": "2013-11", "HasDiscount": 1, "count": 904, "avgAOV": 28.538533581858406, "avgItems": 2.0973451327433628, "avgMargin": 100.0, "avgShipping": 0.6559734513274337, "revenue": 25798.834358}, {"YearMonth": "2013-12", "HasDiscount": 0, "count": 1685, "avgAOV": 24.040631581008903, "avgItems": 1.6605341246290801, "avgMargin": 100.0, "avgShipping": 0.870919881305638, "revenue": 40508.464214}, {"YearMonth": "2013-12", "HasDiscount": 1, "count": 431, "avgAOV": 25.207591394431553, "avgItems": 1.939675174013921, "avgMargin": 100.0, "avgShipping": 0.4802784222737819, "revenue": 10864.471891}, {"YearMonth": "2014-01", "HasDiscount": 0, "count": 1562, "avgAOV": 22.130673762483994, "avgItems": 1.5941101152368757, "avgMargin": 100.0, "avgShipping": 0.8313060179257362, "revenue": 34568.112417}, {"YearMonth": "2014-01", "HasDiscount": 1, "count": 2171, "avgAOV": 26.83898629387379, "avgItems": 2.0294795025333947, "avgMargin": 100.0, "avgShipping": 0.7176416397973284, "revenue": 58267.439244}, {"YearMonth": "2014-02", "HasDiscount": 0, "count": 1906, "avgAOV": 22.69048205718783, "avgItems": 1.6369359916054564, "avgMargin": 100.0, "avgShipping": 0.9186778593913956, "revenue": 43248.058801}, {"YearMonth": "2014-02", "HasDiscount": 1, "count": 761, "avgAOV": 24.868275668856768, "avgItems": 1.783180026281209, "avgMargin": 100.0, "avgShipping": 0.790407358738502, "revenue": 18924.757784}, {"YearMonth": "2014-03", "HasDiscount": 0, "count": 1860, "avgAOV": 22.484538190860214, "avgItems": 1.6338709677419354, "avgMargin": 100.0, "avgShipping": 0.888978494623656, "revenue": 41821.241035}, {"YearMonth": "2014-03", "HasDiscount": 1, "count": 1263, "avgAOV": 25.052533204275534, "avgItems": 1.826603325415677, "avgMargin": 100.0, "avgShipping": 0.715360253365004, "revenue": 31641.349437}, {"YearMonth": "2014-04", "HasDiscount": 0, "count": 1801, "avgAOV": 24.26966553636868, "avgItems": 1.6557468073292616, "avgMargin": 100.0, "avgShipping": 0.8561910049972238, "revenue": 43709.667631}, {"YearMonth": "2014-04", "HasDiscount": 1, "count": 1045, "avgAOV": 23.690990930143542, "avgItems": 1.8038277511961722, "avgMargin": 100.0, "avgShipping": 0.6703349282296651, "revenue": 24757.085522}, {"YearMonth": "2014-05", "HasDiscount": 0, "count": 2141, "avgAOV": 23.837770135450725, "avgItems": 1.6697804764128912, "avgMargin": 100.0, "avgShipping": 0.8519383465670247, "revenue": 51036.66586}, {"YearMonth": "2014-05", "HasDiscount": 1, "count": 602, "avgAOV": 27.36320328405316, "avgItems": 1.9833887043189369, "avgMargin": 100.0, "avgShipping": 0.7915282392026578, "revenue": 16472.648377}, {"YearMonth": "2014-06", "HasDiscount": 0, "count": 1986, "avgAOV": 23.87970827995972, "avgItems": 1.6691842900302114, "avgMargin": 100.0, "avgShipping": 0.8564954682779456, "revenue": 47425.100644}, {"YearMonth": "2014-06", "HasDiscount": 1, "count": 708, "avgAOV": 25.026284313559323, "avgItems": 1.847457627118644, "avgMargin": 100.0, "avgShipping": 0.6836158192090396, "revenue": 17718.609294}, {"YearMonth": "2014-07", "HasDiscount": 0, "count": 2095, "avgAOV": 24.203750476849642, "avgItems": 1.7064439140811456, "avgMargin": 100.0, "avgShipping": 0.8076372315035799, "revenue": 50706.857249}, {"YearMonth": "2014-07", "HasDiscount": 1, "count": 805, "avgAOV": 29.054844504347827, "avgItems": 2.009937888198758, "avgMargin": 100.0, "avgShipping": 0.691304347826087, "revenue": 23389.149826}, {"YearMonth": "2014-08", "HasDiscount": 0, "count": 2092, "avgAOV": 24.071765683078393, "avgItems": 1.6964627151051626, "avgMargin": 100.0, "avgShipping": 0.8659177820267686, "revenue": 50358.133809}, {"YearMonth": "2014-08", "HasDiscount": 1, "count": 685, "avgAOV": 26.83817026569343, "avgItems": 1.9401459854014598, "avgMargin": 100.0, "avgShipping": 0.7051094890510949, "revenue": 18384.146632}, {"YearMonth": "2014-09", "HasDiscount": 0, "count": 2242, "avgAOV": 22.939004654326496, "avgItems": 1.610615521855486, "avgMargin": 100.0, "avgShipping": 0.7669491525423728, "revenue": 51429.248435}, {"YearMonth": "2014-09", "HasDiscount": 1, "count": 769, "avgAOV": 28.44756800130039, "avgItems": 2.024707412223667, "avgMargin": 100.0, "avgShipping": 0.7314694408322496, "revenue": 21876.179793}, {"YearMonth": "2014-10", "HasDiscount": 0, "count": 2302, "avgAOV": 24.000916608601216, "avgItems": 1.6785403996524761, "avgMargin": 100.0, "avgShipping": 0.8140747176368376, "revenue": 55250.110033}, {"YearMonth": "2014-10", "HasDiscount": 1, "count": 570, "avgAOV": 34.207946035087716, "avgItems": 2.4175438596491228, "avgMargin": 100.0, "avgShipping": 0.8087719298245614, "revenue": 19498.52924}, {"YearMonth": "2014-11", "HasDiscount": 0, "count": 1986, "avgAOV": 23.739025734138973, "avgItems": 1.6863041289023162, "avgMargin": 100.0, "avgShipping": 0.8751258811681772, "revenue": 47145.705108}, {"YearMonth": "2014-11", "HasDiscount": 1, "count": 959, "avgAOV": 29.709743173096978, "avgItems": 2.1366006256517207, "avgMargin": 100.0, "avgShipping": 0.7325338894681961, "revenue": 28491.643703}, {"YearMonth": "2014-12", "HasDiscount": 0, "count": 1439, "avgAOV": 24.23396810771369, "avgItems": 1.6184850590687978, "avgMargin": 100.0, "avgShipping": 0.8419041000694927, "revenue": 34872.680107}, {"YearMonth": "2014-12", "HasDiscount": 1, "count": 819, "avgAOV": 27.562337354090356, "avgItems": 1.9694749694749696, "avgMargin": 100.0, "avgShipping": 0.5836385836385837, "revenue": 22573.554293}, {"YearMonth": "2015-01", "HasDiscount": 0, "count": 1730, "avgAOV": 25.046837967630058, "avgItems": 1.7554913294797687, "avgMargin": 100.0, "avgShipping": 0.9163005780346821, "revenue": 43331.029684}, {"YearMonth": "2015-01", "HasDiscount": 1, "count": 2902, "avgAOV": 28.432664002412128, "avgItems": 2.0816678152997934, "avgMargin": 100.0, "avgShipping": 0.71881461061337, "revenue": 82511.590935}, {"YearMonth": "2015-02", "HasDiscount": 0, "count": 2309, "avgAOV": 25.677083065829365, "avgItems": 1.7232568211346904, "avgMargin": 100.0, "avgShipping": 0.8391078388912949, "revenue": 59288.384799}, {"YearMonth": "2015-02", "HasDiscount": 1, "count": 95, "avgAOV": 29.34044754736842, "avgItems": 2.042105263157895, "avgMargin": 100.0, "avgShipping": 0.5421052631578948, "revenue": 2787.342517}, {"YearMonth": "2015-03", "HasDiscount": 0, "count": 1488, "avgAOV": 23.60344579435484, "avgItems": 1.6108870967741935, "avgMargin": 100.0, "avgShipping": 0.9408602150537635, "revenue": 35121.927342}, {"YearMonth": "2015-03", "HasDiscount": 1, "count": 2049, "avgAOV": 26.60904070717423, "avgItems": 1.9853587115666178, "avgMargin": 100.0, "avgShipping": 0.6586139580283065, "revenue": 54521.924409}, {"YearMonth": "2015-04", "HasDiscount": 0, "count": 1867, "avgAOV": 24.405630797536155, "avgItems": 1.6598821638993038, "avgMargin": 65.63828136030277, "avgShipping": 0.9531333690412427, "revenue": 45565.312699}, {"YearMonth": "2015-04", "HasDiscount": 1, "count": 965, "avgAOV": 24.521523421761657, "avgItems": 1.8186528497409327, "avgMargin": 65.4282390867622, "avgShipping": 0.6341968911917099, "revenue": 23663.270102}, {"YearMonth": "2015-05", "HasDiscount": 0, "count": 1617, "avgAOV": 25.13052027767471, "avgItems": 1.6957328385899815, "avgMargin": 62.25803969434085, "avgShipping": 0.8611626468769326, "revenue": 40636.051289}, {"YearMonth": "2015-05", "HasDiscount": 1, "count": 997, "avgAOV": 28.840310132397192, "avgItems": 2.050150451354062, "avgMargin": 61.72739791631609, "avgShipping": 0.6755265797392177, "revenue": 28753.789202}, {"YearMonth": "2015-06", "HasDiscount": 0, "count": 1263, "avgAOV": 25.030514910530485, "avgItems": 1.6025336500395884, "avgMargin": 62.67656996659008, "avgShipping": 1.0039588281868568, "revenue": 31613.540332}, {"YearMonth": "2015-06", "HasDiscount": 1, "count": 1597, "avgAOV": 27.79332419974953, "avgItems": 1.9229805886036317, "avgMargin": 61.58746383585311, "avgShipping": 0.646211646837821, "revenue": 44385.938747}, {"YearMonth": "2015-07", "HasDiscount": 0, "count": 1928, "avgAOV": 24.276210856846472, "avgItems": 1.642116182572614, "avgMargin": 62.70871297746356, "avgShipping": 1.0070020746887967, "revenue": 46804.534532}, {"YearMonth": "2015-07", "HasDiscount": 1, "count": 694, "avgAOV": 26.08145121181556, "avgItems": 1.8328530259365994, "avgMargin": 64.00506395050326, "avgShipping": 0.6642651296829971, "revenue": 18100.527141}, {"YearMonth": "2015-08", "HasDiscount": 0, "count": 1431, "avgAOV": 25.676074267645003, "avgItems": 1.6890286512928023, "avgMargin": 62.35531045006576, "avgShipping": 1.2872117400419287, "revenue": 36742.462277}, {"YearMonth": "2015-08", "HasDiscount": 1, "count": 1391, "avgAOV": 27.04644677354421, "avgItems": 1.9899352983465133, "avgMargin": 61.86755291378945, "avgShipping": 0.8910855499640546, "revenue": 37621.607462}, {"YearMonth": "2015-09", "HasDiscount": 0, "count": 2712, "avgAOV": 26.71758882780236, "avgItems": 1.8495575221238938, "avgMargin": 59.11506433638822, "avgShipping": 1.0814896755162242, "revenue": 72458.100901}, {"YearMonth": "2015-09", "HasDiscount": 1, "count": 443, "avgAOV": 27.523095467268625, "avgItems": 2.0677200902934536, "avgMargin": 59.0699642476079, "avgShipping": 0.626410835214447, "revenue": 12192.731292}, {"YearMonth": "2015-10", "HasDiscount": 0, "count": 2257, "avgAOV": 25.461380260079753, "avgItems": 1.7975188303057155, "avgMargin": 59.95637488837836, "avgShipping": 0.9605671245015507, "revenue": 57466.335247}, {"YearMonth": "2015-10", "HasDiscount": 1, "count": 251, "avgAOV": 31.170396852589644, "avgItems": 2.450199203187251, "avgMargin": 59.14044255969932, "avgShipping": 0.5717131474103586, "revenue": 7823.76961}, {"YearMonth": "2015-11", "HasDiscount": 0, "count": 1288, "avgAOV": 24.70104829736025, "avgItems": 1.6118012422360248, "avgMargin": 62.77306505880228, "avgShipping": 1.0337732919254659, "revenue": 31814.950206999998}, {"YearMonth": "2015-11", "HasDiscount": 1, "count": 1458, "avgAOV": 28.74623950548697, "avgItems": 2.0027434842249656, "avgMargin": 62.04074195387554, "avgShipping": 0.7842935528120714, "revenue": 41912.017199}, {"YearMonth": "2015-12", "HasDiscount": 0, "count": 2364, "avgAOV": 26.187472160744502, "avgItems": 1.8578680203045685, "avgMargin": 59.41437459023493, "avgShipping": 0.7586717428087987, "revenue": 61907.184188}, {"YearMonth": "2015-12", "HasDiscount": 1, "count": 260, "avgAOV": 27.18372426923077, "avgItems": 1.9192307692307693, "avgMargin": 60.2834342133342, "avgShipping": 0.5788461538461539, "revenue": 7067.76831}, {"YearMonth": "2016-01", "HasDiscount": 0, "count": 3925, "avgAOV": 25.508420278980893, "avgItems": 1.8731210191082803, "avgMargin": 56.09874788523525, "avgShipping": 0.8975796178343949, "revenue": 100120.549595}, {"YearMonth": "2016-01", "HasDiscount": 1, "count": 606, "avgAOV": 29.897671585808578, "avgItems": 2.437293729372937, "avgMargin": 56.35312003171244, "avgShipping": 0.7706270627062707, "revenue": 18117.988981}, {"YearMonth": "2016-02", "HasDiscount": 0, "count": 1824, "avgAOV": 25.2445075060307, "avgItems": 1.7094298245614035, "avgMargin": 63.109806422097115, "avgShipping": 0.9347587719298246, "revenue": 46045.981691}, {"YearMonth": "2016-02", "HasDiscount": 1, "count": 355, "avgAOV": 29.021406591549297, "avgItems": 2.211267605633803, "avgMargin": 62.035027646327705, "avgShipping": 0.7577464788732394, "revenue": 10302.59934}, {"YearMonth": "2016-03", "HasDiscount": 0, "count": 1597, "avgAOV": 25.520382348152786, "avgItems": 1.728240450845335, "avgMargin": 61.816647895408586, "avgShipping": 1.0864120225422667, "revenue": 40756.05061}, {"YearMonth": "2016-03", "HasDiscount": 1, "count": 1564, "avgAOV": 29.433117682225063, "avgItems": 2.1278772378516626, "avgMargin": 61.45111716782623, "avgShipping": 0.8248081841432225, "revenue": 46033.396055}, {"YearMonth": "2016-04", "HasDiscount": 0, "count": 2073, "avgAOV": 24.626554870718767, "avgItems": 1.7260009647853352, "avgMargin": 61.39663459476768, "avgShipping": 1.0055475156777618, "revenue": 51050.848247}, {"YearMonth": "2016-04", "HasDiscount": 1, "count": 856, "avgAOV": 29.32479486214953, "avgItems": 2.1880841121495327, "avgMargin": 61.37408376452074, "avgShipping": 0.7815420560747663, "revenue": 25102.024402}, {"YearMonth": "2016-05", "HasDiscount": 0, "count": 1913, "avgAOV": 25.254903743857813, "avgItems": 1.7344485101934135, "avgMargin": 60.731270077696834, "avgShipping": 0.9728175640355463, "revenue": 48312.630862}, {"YearMonth": "2016-05", "HasDiscount": 1, "count": 677, "avgAOV": 27.962477948301327, "avgItems": 2.0960118168389954, "avgMargin": 60.94239705161898, "avgShipping": 0.7710487444608567, "revenue": 18930.597571}, {"YearMonth": "2016-06", "HasDiscount": 0, "count": 1309, "avgAOV": 25.28838843773873, "avgItems": 1.709702062643239, "avgMargin": 61.562971539394496, "avgShipping": 1.0466004583651642, "revenue": 33102.500465}, {"YearMonth": "2016-06", "HasDiscount": 1, "count": 1440, "avgAOV": 27.349991595833334, "avgItems": 2.0479166666666666, "avgMargin": 60.480089671957565, "avgShipping": 0.8149305555555556, "revenue": 39383.987898}, {"YearMonth": "2016-07", "HasDiscount": 0, "count": 1883, "avgAOV": 25.290420784917686, "avgItems": 1.6999468932554433, "avgMargin": 61.25854873124883, "avgShipping": 1.0103027084439724, "revenue": 47621.862338}, {"YearMonth": "2016-07", "HasDiscount": 1, "count": 610, "avgAOV": 25.57139488032787, "avgItems": 1.8852459016393444, "avgMargin": 61.097316951213465, "avgShipping": 0.7245901639344262, "revenue": 15598.550877}, {"YearMonth": "2016-08", "HasDiscount": 0, "count": 3132, "avgAOV": 27.52085980651341, "avgItems": 1.90485312899106, "avgMargin": 57.852806825381975, "avgShipping": 0.9682311621966795, "revenue": 86195.332914}, {"YearMonth": "2016-08", "HasDiscount": 1, "count": 144, "avgAOV": 38.107616729166665, "avgItems": 2.7569444444444446, "avgMargin": 58.533612975809156, "avgShipping": 0.8611111111111112, "revenue": 5487.496809}, {"YearMonth": "2016-09", "HasDiscount": 0, "count": 2334, "avgAOV": 24.088062211653813, "avgItems": 1.7574978577549272, "avgMargin": 58.146422049237465, "avgShipping": 0.963796058269066, "revenue": 56221.537202}, {"YearMonth": "2016-09", "HasDiscount": 1, "count": 523, "avgAOV": 28.69491435755258, "avgItems": 2.1835564053537286, "avgMargin": 58.72871493755722, "avgShipping": 0.7428298279158699, "revenue": 15007.440209}, {"YearMonth": "2016-10", "HasDiscount": 0, "count": 2071, "avgAOV": 23.92740934958957, "avgItems": 1.6986962819893772, "avgMargin": 57.91377481421947, "avgShipping": 0.9990342829550941, "revenue": 49553.664763}, {"YearMonth": "2016-10", "HasDiscount": 1, "count": 924, "avgAOV": 29.023339972943724, "avgItems": 2.20995670995671, "avgMargin": 58.58369352300691, "avgShipping": 0.8192640692640693, "revenue": 26817.566135}, {"YearMonth": "2016-11", "HasDiscount": 0, "count": 1971, "avgAOV": 25.23820433637747, "avgItems": 1.798072044647387, "avgMargin": 58.58343300474496, "avgShipping": 0.9616945712836124, "revenue": 49744.500747}, {"YearMonth": "2016-11", "HasDiscount": 1, "count": 1421, "avgAOV": 29.548392738916256, "avgItems": 2.2090077410274453, "avgMargin": 60.81757764867379, "avgShipping": 0.7628430682617875, "revenue": 41988.266082}, {"YearMonth": "2016-12", "HasDiscount": 0, "count": 2112, "avgAOV": 25.582269324810607, "avgItems": 1.7883522727272727, "avgMargin": 60.300564138643246, "avgShipping": 0.7569602272727273, "revenue": 54029.752814}, {"YearMonth": "2016-12", "HasDiscount": 1, "count": 458, "avgAOV": 32.13201191921397, "avgItems": 2.2925764192139737, "avgMargin": 59.46561991870677, "avgShipping": 0.915938864628821, "revenue": 14716.461459}, {"YearMonth": "2017-01", "HasDiscount": 0, "count": 2527, "avgAOV": 23.49991281677879, "avgItems": 1.699248120300752, "avgMargin": 57.57021707237479, "avgShipping": 1.018005540166205, "revenue": 59384.279688}, {"YearMonth": "2017-01", "HasDiscount": 1, "count": 2593, "avgAOV": 25.945429888160433, "avgItems": 2.023524874662553, "avgMargin": 58.60368928997925, "avgShipping": 0.655996914770536, "revenue": 67276.4997}, {"YearMonth": "2017-02", "HasDiscount": 0, "count": 2619, "avgAOV": 21.508365717067583, "avgItems": 1.6135929744177167, "avgMargin": 58.89866261595713, "avgShipping": 0.8144329896907216, "revenue": 56330.409813}, {"YearMonth": "2017-02", "HasDiscount": 1, "count": 834, "avgAOV": 28.369616194244603, "avgItems": 2.2038369304556356, "avgMargin": 59.043177725383586, "avgShipping": 0.6013189448441247, "revenue": 23660.259906}, {"YearMonth": "2017-03", "HasDiscount": 0, "count": 2618, "avgAOV": 23.11159275210084, "avgItems": 1.624140565317036, "avgMargin": 58.54470460813282, "avgShipping": 0.9356378915202445, "revenue": 60506.149825}, {"YearMonth": "2017-03", "HasDiscount": 1, "count": 1408, "avgAOV": 27.145901844460226, "avgItems": 2.0014204545454546, "avgMargin": 58.9317932594233, "avgShipping": 0.6129261363636364, "revenue": 38221.429797}, {"YearMonth": "2017-04", "HasDiscount": 0, "count": 2263, "avgAOV": 23.045086067167478, "avgItems": 1.592576226248343, "avgMargin": 59.7644300735736, "avgShipping": 0.8716305788775961, "revenue": 52151.02977}, {"YearMonth": "2017-04", "HasDiscount": 1, "count": 1065, "avgAOV": 28.685577428169015, "avgItems": 2.1023474178403756, "avgMargin": 59.74707505173587, "avgShipping": 0.6075117370892019, "revenue": 30550.139961}, {"YearMonth": "2017-05", "HasDiscount": 0, "count": 2462, "avgAOV": 24.321632590170594, "avgItems": 1.640536149471974, "avgMargin": 60.460326005600734, "avgShipping": 0.9384646628757108, "revenue": 59879.859437}, {"YearMonth": "2017-05", "HasDiscount": 1, "count": 1564, "avgAOV": 26.54158545971867, "avgItems": 1.9673913043478262, "avgMargin": 60.908963582305866, "avgShipping": 0.6726342710997443, "revenue": 41511.039659}, {"YearMonth": "2017-06", "HasDiscount": 0, "count": 2858, "avgAOV": 24.031105425472354, "avgItems": 1.5773268019594122, "avgMargin": 60.335047059792494, "avgShipping": 0.8591672498250524, "revenue": 68680.89930599999}, {"YearMonth": "2017-06", "HasDiscount": 1, "count": 442, "avgAOV": 28.04092744570136, "avgItems": 2.0950226244343892, "avgMargin": 60.45349104610614, "avgShipping": 0.5169683257918553, "revenue": 12394.089931}, {"YearMonth": "2017-07", "HasDiscount": 0, "count": 2949, "avgAOV": 22.137046226517462, "avgItems": 1.5201763309596474, "avgMargin": 60.855594225596164, "avgShipping": 0.9126822651746355, "revenue": 65282.149322}, {"YearMonth": "2017-07", "HasDiscount": 1, "count": 2184, "avgAOV": 35.74522401007326, "avgItems": 2.6488095238095237, "avgMargin": 59.82690856585105, "avgShipping": 0.5151098901098901, "revenue": 78067.569238}, {"YearMonth": "2017-08", "HasDiscount": 0, "count": 2899, "avgAOV": 23.572093592963093, "avgItems": 1.581579855122456, "avgMargin": 60.44408892266551, "avgShipping": 0.9294584339427389, "revenue": 68335.499326}, {"YearMonth": "2017-08", "HasDiscount": 1, "count": 1040, "avgAOV": 28.289220870192306, "avgItems": 2.05, "avgMargin": 59.754090464248165, "avgShipping": 0.5480769230769231, "revenue": 29420.789705}, {"YearMonth": "2017-09", "HasDiscount": 0, "count": 3311, "avgAOV": 24.35013868680157, "avgItems": 1.6200543642404108, "avgMargin": 60.50148766126022, "avgShipping": 0.8997281787979462, "revenue": 80623.309192}, {"YearMonth": "2017-09", "HasDiscount": 1, "count": 617, "avgAOV": 31.308800311183145, "avgItems": 2.1701782820097244, "avgMargin": 59.971196408032625, "avgShipping": 0.5048622366288493, "revenue": 19317.529792}, {"YearMonth": "2017-10", "HasDiscount": 0, "count": 3524, "avgAOV": 23.664287474744608, "avgItems": 1.5987514188422247, "avgMargin": 60.544561198848996, "avgShipping": 0.9093359818388195, "revenue": 83392.94906099999}, {"YearMonth": "2017-10", "HasDiscount": 1, "count": 1548, "avgAOV": 28.92891447868217, "avgItems": 2.202196382428941, "avgMargin": 59.9853314968755, "avgShipping": 0.4531653746770026, "revenue": 44781.959613}, {"YearMonth": "2017-11", "HasDiscount": 0, "count": 2904, "avgAOV": 22.636576881542698, "avgItems": 1.56198347107438, "avgMargin": 60.437651421736966, "avgShipping": 0.946969696969697, "revenue": 65736.619264}, {"YearMonth": "2017-11", "HasDiscount": 1, "count": 2263, "avgAOV": 32.10555426292532, "avgItems": 2.4706142288996906, "avgMargin": 59.102213304269675, "avgShipping": 0.5583296509058772, "revenue": 72654.869297}, {"YearMonth": "2017-12", "HasDiscount": 0, "count": 2496, "avgAOV": 23.831285809294872, "avgItems": 1.6398237179487178, "avgMargin": 60.49461814989609, "avgShipping": 0.7666266025641025, "revenue": 59482.88938}, {"YearMonth": "2017-12", "HasDiscount": 1, "count": 1252, "avgAOV": 28.36098219169329, "avgItems": 2.2196485623003195, "avgMargin": 57.86343351971179, "avgShipping": 0.26038338658146964, "revenue": 35507.949704}, {"YearMonth": "2018-01", "HasDiscount": 0, "count": 2818, "avgAOV": 21.767760624556423, "avgItems": 1.4964513839602556, "avgMargin": 58.98128803414129, "avgShipping": 0.9593683463449255, "revenue": 61341.54944}, {"YearMonth": "2018-01", "HasDiscount": 1, "count": 5394, "avgAOV": 28.468939403967372, "avgItems": 2.2779013718946977, "avgMargin": 57.700473842805216, "avgShipping": 0.5146459028550241, "revenue": 153561.459145}, {"YearMonth": "2018-02", "HasDiscount": 0, "count": 3225, "avgAOV": 22.307788966821708, "avgItems": 1.5913178294573644, "avgMargin": 58.31305836613677, "avgShipping": 0.9347286821705426, "revenue": 71942.619418}, {"YearMonth": "2018-02", "HasDiscount": 1, "count": 1473, "avgAOV": 30.85568214324508, "avgItems": 2.4317718940936865, "avgMargin": 57.01179887927597, "avgShipping": 0.6055668703326544, "revenue": 45450.419797}, {"YearMonth": "2018-03", "HasDiscount": 0, "count": 3693, "avgAOV": 22.377124139182236, "avgItems": 1.611427024099648, "avgMargin": 58.096027404140365, "avgShipping": 0.9256701868399675, "revenue": 82638.719446}, {"YearMonth": "2018-03", "HasDiscount": 1, "count": 1977, "avgAOV": 28.911835897824986, "avgItems": 2.178553363682347, "avgMargin": 57.30149680486261, "avgShipping": 0.5649974709155285, "revenue": 57158.69957}, {"YearMonth": "2018-04", "HasDiscount": 0, "count": 3335, "avgAOV": 23.09540907646177, "avgItems": 1.6170914542728636, "avgMargin": 59.5421045637772, "avgShipping": 0.9704647676161919, "revenue": 77023.18927}, {"YearMonth": "2018-04", "HasDiscount": 1, "count": 1838, "avgAOV": 30.64451005984766, "avgItems": 2.3405875952121873, "avgMargin": 58.589739671769514, "avgShipping": 0.4921109902067465, "revenue": 56324.60949}, {"YearMonth": "2018-05", "HasDiscount": 0, "count": 3289, "avgAOV": 23.872526345393734, "avgItems": 1.6071754332623898, "avgMargin": 58.9260955043553, "avgShipping": 0.944968075402858, "revenue": 78516.73915}, {"YearMonth": "2018-05", "HasDiscount": 1, "count": 1627, "avgAOV": 30.757823893054702, "avgItems": 2.2532267977873386, "avgMargin": 57.526653605864354, "avgShipping": 0.44314689612784264, "revenue": 50042.979474}, {"YearMonth": "2018-06", "HasDiscount": 0, "count": 3066, "avgAOV": 24.037237157534246, "avgItems": 1.6193737769080234, "avgMargin": 59.59026310063861, "avgShipping": 0.9163405088062623, "revenue": 73698.169125}, {"YearMonth": "2018-06", "HasDiscount": 1, "count": 1734, "avgAOV": 28.50712769607843, "avgItems": 2.0478662053056516, "avgMargin": 60.16787950471495, "avgShipping": 0.5426758938869666, "revenue": 49431.359425}, {"YearMonth": "2018-07", "HasDiscount": 0, "count": 3282, "avgAOV": 25.82342753046923, "avgItems": 1.6587446678854356, "avgMargin": 61.929777944905155, "avgShipping": 0.9747105423522242, "revenue": 84752.489155}, {"YearMonth": "2018-07", "HasDiscount": 1, "count": 1226, "avgAOV": 31.54190016557912, "avgItems": 2.1818923327895594, "avgMargin": 60.931249414074856, "avgShipping": 0.5293637846655791, "revenue": 38670.369603}, {"YearMonth": "2018-08", "HasDiscount": 0, "count": 3094, "avgAOV": 24.47732685100194, "avgItems": 1.5995475113122173, "avgMargin": 62.19973861440632, "avgShipping": 0.9969295410471881, "revenue": 75732.849277}, {"YearMonth": "2018-08", "HasDiscount": 1, "count": 2425, "avgAOV": 30.694609969896906, "avgItems": 2.188041237113402, "avgMargin": 61.22978220594149, "avgShipping": 0.4383505154639175, "revenue": 74434.429177}, {"YearMonth": "2018-09", "HasDiscount": 0, "count": 2691, "avgAOV": 25.133834790412482, "avgItems": 1.6339650687476774, "avgMargin": 62.39046486990633, "avgShipping": 1.0022296544035674, "revenue": 67635.149421}, {"YearMonth": "2018-09", "HasDiscount": 1, "count": 1629, "avgAOV": 29.006433123388582, "avgItems": 2.0681399631675874, "avgMargin": 61.45758988118047, "avgShipping": 0.5693677102516882, "revenue": 47251.479558}, {"YearMonth": "2018-10", "HasDiscount": 0, "count": 3300, "avgAOV": 24.64969377090909, "avgItems": 1.6163636363636364, "avgMargin": 62.253236458612605, "avgShipping": 0.9533333333333334, "revenue": 81343.98944399999}, {"YearMonth": "2018-10", "HasDiscount": 1, "count": 1985, "avgAOV": 33.902730248362715, "avgItems": 2.277581863979849, "avgMargin": 59.6437382580192, "avgShipping": 0.6012594458438287, "revenue": 67296.919543}, {"YearMonth": "2018-11", "HasDiscount": 0, "count": 2682, "avgAOV": 24.05338553243848, "avgItems": 1.5723340790454885, "avgMargin": 63.16743318304075, "avgShipping": 0.9897464578672632, "revenue": 64511.179998}, {"YearMonth": "2018-11", "HasDiscount": 1, "count": 2217, "avgAOV": 32.060126246729816, "avgItems": 2.3107803337843933, "avgMargin": 61.65216521981811, "avgShipping": 0.5151105096977898, "revenue": 71077.299889}, {"YearMonth": "2018-12", "HasDiscount": 0, "count": 2445, "avgAOV": 23.17666662822086, "avgItems": 1.594683026584867, "avgMargin": 62.683778271891235, "avgShipping": 0.6650306748466258, "revenue": 56666.949906}, {"YearMonth": "2018-12", "HasDiscount": 1, "count": 2068, "avgAOV": 32.63963235396518, "avgItems": 2.344777562862669, "avgMargin": 61.02128605314393, "avgShipping": 0.5128143133462283, "revenue": 67498.759708}, {"YearMonth": "2019-01", "HasDiscount": 0, "count": 3027, "avgAOV": 22.14621391840106, "avgItems": 1.5308886686488272, "avgMargin": 60.163852184344144, "avgShipping": 0.948794185662372, "revenue": 67036.589531}, {"YearMonth": "2019-01", "HasDiscount": 1, "count": 4008, "avgAOV": 33.14183611202594, "avgItems": 2.3275948103792414, "avgMargin": 58.80643726711194, "avgShipping": 0.6264970059880239, "revenue": 132832.479137}, {"YearMonth": "2019-02", "HasDiscount": 0, "count": 3103, "avgAOV": 25.198788082178535, "avgItems": 1.6106993232355784, "avgMargin": 61.51951693784518, "avgShipping": 0.9669674508540123, "revenue": 78191.839419}, {"YearMonth": "2019-02", "HasDiscount": 1, "count": 1048, "avgAOV": 35.00543859637405, "avgItems": 3.114503816793893, "avgMargin": 55.06985882120603, "avgShipping": 0.6211832061068703, "revenue": 36685.699649}, {"YearMonth": "2019-03", "HasDiscount": 0, "count": 2895, "avgAOV": 25.806576660449046, "avgItems": 1.5937823834196891, "avgMargin": 63.4969934729548, "avgShipping": 0.970293609671848, "revenue": 74710.03943199999}, {"YearMonth": "2019-03", "HasDiscount": 1, "count": 1625, "avgAOV": 34.32037510584615, "avgItems": 3.2990769230769232, "avgMargin": 53.514210154804296, "avgShipping": 0.6175384615384616, "revenue": 55770.609547}, {"YearMonth": "2019-04", "HasDiscount": 0, "count": 2237, "avgAOV": 23.292883170764416, "avgItems": 1.4823424228877962, "avgMargin": 63.97846206986059, "avgShipping": 0.9939651318730442, "revenue": 52106.179653}, {"YearMonth": "2019-04", "HasDiscount": 1, "count": 1915, "avgAOV": 34.83180643028721, "avgItems": 2.2929503916449088, "avgMargin": 61.97222076929965, "avgShipping": 0.6921671018276763, "revenue": 66702.909314}, {"YearMonth": "2019-05", "HasDiscount": 0, "count": 2324, "avgAOV": 26.60366166394148, "avgItems": 1.6277969018932874, "avgMargin": 62.95899383806726, "avgShipping": 1.0032271944922548, "revenue": 61826.909707}, {"YearMonth": "2019-05", "HasDiscount": 1, "count": 2066, "avgAOV": 29.792052047434655, "avgItems": 1.9612778315585673, "avgMargin": 63.25497703315331, "avgShipping": 0.6176185866408519, "revenue": 61550.37953}, {"YearMonth": "2019-06", "HasDiscount": 0, "count": 2991, "avgAOV": 27.451761754262787, "avgItems": 1.6522902039451688, "avgMargin": 63.666016583615374, "avgShipping": 0.9102306920762286, "revenue": 82108.219407}, {"YearMonth": "2019-06", "HasDiscount": 1, "count": 1185, "avgAOV": 36.511231711392405, "avgItems": 3.027848101265823, "avgMargin": 56.59681864841371, "avgShipping": 0.6189873417721519, "revenue": 43265.809578}, {"YearMonth": "2019-07", "HasDiscount": 0, "count": 1936, "avgAOV": 24.675402693698345, "avgItems": 1.4819214876033058, "avgMargin": 64.10945465791463, "avgShipping": 1.0273760330578512, "revenue": 47771.579614999995}, {"YearMonth": "2019-07", "HasDiscount": 1, "count": 3288, "avgAOV": 38.592381020681266, "avgItems": 4.180048661800487, "avgMargin": 49.15963813208046, "avgShipping": 0.6771593673965937, "revenue": 126891.748796}, {"YearMonth": "2019-08", "HasDiscount": 0, "count": 2158, "avgAOV": 26.72228897265987, "avgItems": 1.6167747914735866, "avgMargin": 63.72838768969272, "avgShipping": 0.982159406858202, "revenue": 57666.699603}, {"YearMonth": "2019-08", "HasDiscount": 1, "count": 957, "avgAOV": 29.868421886102404, "avgItems": 2.018808777429467, "avgMargin": 63.52526042672358, "avgShipping": 0.5611285266457681, "revenue": 28584.079745}, {"YearMonth": "2019-09", "HasDiscount": 0, "count": 1734, "avgAOV": 26.337710534602074, "avgItems": 1.6978085351787775, "avgMargin": 62.80430665152277, "avgShipping": 1.072952710495963, "revenue": 45669.590067}, {"YearMonth": "2019-09", "HasDiscount": 1, "count": 2527, "avgAOV": 30.009671626434507, "avgItems": 2.029679461812426, "avgMargin": 61.716847516310104, "avgShipping": 0.6899485555995252, "revenue": 75834.4402}, {"YearMonth": "2019-10", "HasDiscount": 0, "count": 2442, "avgAOV": 25.40705146109746, "avgItems": 1.6494676494676495, "avgMargin": 63.9625379513931, "avgShipping": 0.9228091728091729, "revenue": 62044.019668}, {"YearMonth": "2019-10", "HasDiscount": 1, "count": 1804, "avgAOV": 38.68420144678492, "avgItems": 4.006651884700665, "avgMargin": 50.940582744271055, "avgShipping": 0.6962305986696231, "revenue": 69786.29940999999}, {"YearMonth": "2019-11", "HasDiscount": 0, "count": 1643, "avgAOV": 26.592683922702374, "avgItems": 1.6731588557516737, "avgMargin": 64.56465693131223, "avgShipping": 0.9430919050517347, "revenue": 43691.779685}, {"YearMonth": "2019-11", "HasDiscount": 1, "count": 2337, "avgAOV": 30.336238500213945, "avgItems": 2.1035515618314076, "avgMargin": 64.39276831727341, "avgShipping": 0.7242190842961062, "revenue": 70895.789375}, {"YearMonth": "2019-12", "HasDiscount": 0, "count": 1561, "avgAOV": 25.277129859064704, "avgItems": 1.6278026905829597, "avgMargin": 64.6668190889094, "avgShipping": 0.6941063420884048, "revenue": 39457.59971}, {"YearMonth": "2019-12", "HasDiscount": 1, "count": 1971, "avgAOV": 32.77150653932014, "avgItems": 2.7853881278538815, "avgMargin": 59.55858097648185, "avgShipping": 0.5286656519533232, "revenue": 64592.639388999996}, {"YearMonth": "2020-01", "HasDiscount": 0, "count": 1219, "avgAOV": 23.121681566037733, "avgItems": 1.4971287940935192, "avgMargin": 64.65729069044133, "avgShipping": 1.03363412633306, "revenue": 28185.329829}, {"YearMonth": "2020-01", "HasDiscount": 1, "count": 4494, "avgAOV": 32.12527342656876, "avgItems": 3.2209612817089455, "avgMargin": 55.725128887076565, "avgShipping": 0.6687805963506898, "revenue": 144370.978779}, {"YearMonth": "2020-02", "HasDiscount": 0, "count": 2071, "avgAOV": 25.546339711733463, "avgItems": 1.6581361661033318, "avgMargin": 63.81350057033424, "avgShipping": 0.9707870593915983, "revenue": 52906.469543}, {"YearMonth": "2020-02", "HasDiscount": 1, "count": 449, "avgAOV": 31.717438389755014, "avgItems": 2.2271714922048997, "avgMargin": 61.257720565822034, "avgShipping": 0.5968819599109132, "revenue": 14241.129837}, {"YearMonth": "2020-03", "HasDiscount": 0, "count": 4620, "avgAOV": 27.34377041147186, "avgItems": 1.9848484848484849, "avgMargin": 59.97357139245359, "avgShipping": 1.0176406926406927, "revenue": 126328.21930099999}, {"YearMonth": "2020-03", "HasDiscount": 1, "count": 572, "avgAOV": 33.10564664335664, "avgItems": 2.335664335664336, "avgMargin": 57.98829008032691, "avgShipping": 0.5305944055944056, "revenue": 18936.42988}, {"YearMonth": "2020-04", "HasDiscount": 0, "count": 6302, "avgAOV": 22.250180784195493, "avgItems": 2.039193906696287, "avgMargin": 63.09312862448395, "avgShipping": 1.156299587432561, "revenue": 140220.639302}, {"YearMonth": "2020-04", "HasDiscount": 1, "count": 573, "avgAOV": 27.7284815113438, "avgItems": 2.445026178010471, "avgMargin": 60.719733064335365, "avgShipping": 0.6300174520069808, "revenue": 15888.419906}, {"YearMonth": "2020-05", "HasDiscount": 0, "count": 5287, "avgAOV": 22.57101556837526, "avgItems": 2.0448269339890297, "avgMargin": 62.738366635630804, "avgShipping": 1.1128239076981274, "revenue": 119332.95930999999}, {"YearMonth": "2020-05", "HasDiscount": 1, "count": 949, "avgAOV": 27.65523693466807, "avgItems": 2.6385669125395155, "avgMargin": 60.801571459738476, "avgShipping": 0.7107481559536354, "revenue": 26244.819851}, {"YearMonth": "2020-06", "HasDiscount": 0, "count": 4295, "avgAOV": 22.824081389289873, "avgItems": 1.8242142025611177, "avgMargin": 60.81095392834868, "avgShipping": 1.109429569266589, "revenue": 98029.429567}, {"YearMonth": "2020-06", "HasDiscount": 1, "count": 1688, "avgAOV": 31.609531757109004, "avgItems": 2.7914691943127963, "avgMargin": 59.121958908096595, "avgShipping": 0.6359597156398105, "revenue": 53356.889606}, {"YearMonth": "2020-07", "HasDiscount": 0, "count": 3923, "avgAOV": 23.60868710731583, "avgItems": 1.7094060667856232, "avgMargin": 60.47484571738922, "avgShipping": 1.1205709915880704, "revenue": 92616.879522}, {"YearMonth": "2020-07", "HasDiscount": 1, "count": 1824, "avgAOV": 33.34350847861842, "avgItems": 2.3865131578947367, "avgMargin": 58.70592492117594, "avgShipping": 0.7250548245614035, "revenue": 60818.559465}, {"YearMonth": "2020-08", "HasDiscount": 0, "count": 4247, "avgAOV": 25.244692555450907, "avgItems": 1.7325170708735578, "avgMargin": 58.82645932405272, "avgShipping": 1.0470920649870497, "revenue": 107214.209283}, {"YearMonth": "2020-08", "HasDiscount": 1, "count": 1411, "avgAOV": 35.42162979376329, "avgItems": 2.4386959603118354, "avgMargin": 58.514105100964684, "avgShipping": 0.7565556343019135, "revenue": 49979.919639}, {"YearMonth": "2020-09", "HasDiscount": 0, "count": 3864, "avgAOV": 23.967360130175983, "avgItems": 1.7445652173913044, "avgMargin": 61.297992006135345, "avgShipping": 0.9246894409937888, "revenue": 92609.879543}, {"YearMonth": "2020-09", "HasDiscount": 1, "count": 1053, "avgAOV": 34.456913367521366, "avgItems": 2.550807217473884, "avgMargin": 58.62776964726954, "avgShipping": 0.7374169040835707, "revenue": 36283.129776}, {"YearMonth": "2020-10", "HasDiscount": 0, "count": 5966, "avgAOV": 22.095155776231984, "avgItems": 1.7096882333221588, "avgMargin": 62.72604979072955, "avgShipping": 1.0786959436808583, "revenue": 131819.699361}, {"YearMonth": "2020-10", "HasDiscount": 1, "count": 1991, "avgAOV": 32.545389040180815, "avgItems": 2.3515821195379205, "avgMargin": 59.445493473563246, "avgShipping": 0.6838272225012556, "revenue": 64797.869579}, {"YearMonth": "2020-11", "HasDiscount": 0, "count": 5564, "avgAOV": 21.703711267613226, "avgItems": 1.668763479511143, "avgMargin": 62.57895832580864, "avgShipping": 1.0914809489575845, "revenue": 120759.449493}, {"YearMonth": "2020-11", "HasDiscount": 1, "count": 1837, "avgAOV": 31.83995086880784, "avgItems": 2.437125748502994, "avgMargin": 60.541223765878414, "avgShipping": 0.8135547087642896, "revenue": 58489.989746}, {"YearMonth": "2020-12", "HasDiscount": 0, "count": 4005, "avgAOV": 22.29696367915106, "avgItems": 1.6666666666666667, "avgMargin": 62.12832274955345, "avgShipping": 1.2930087390761549, "revenue": 89299.33953499999}, {"YearMonth": "2020-12", "HasDiscount": 1, "count": 2358, "avgAOV": 33.17756124342663, "avgItems": 2.3982188295165394, "avgMargin": 58.967735808934385, "avgShipping": 0.8019508057675997, "revenue": 78232.68941199999}, {"YearMonth": "2021-01", "HasDiscount": 0, "count": 3944, "avgAOV": 19.02630569979716, "avgItems": 1.5532454361054766, "avgMargin": 63.561953864861074, "avgShipping": 1.2829614604462474, "revenue": 75039.74968}, {"YearMonth": "2021-01", "HasDiscount": 1, "count": 4983, "avgAOV": 30.91926126650612, "avgItems": 2.380694360826811, "avgMargin": 58.70283888801529, "avgShipping": 0.8404575556893438, "revenue": 154070.678891}, {"YearMonth": "2021-02", "HasDiscount": 0, "count": 3750, "avgAOV": 22.336698547466664, "avgItems": 1.6874666666666667, "avgMargin": 60.2755777317772, "avgShipping": 1.1898666666666666, "revenue": 83762.619553}, {"YearMonth": "2021-02", "HasDiscount": 1, "count": 1362, "avgAOV": 29.270499129955947, "avgItems": 2.2753303964757707, "avgMargin": 58.84512882077386, "avgShipping": 0.867474302496329, "revenue": 39866.419815}, {"YearMonth": "2021-03", "HasDiscount": 0, "count": 3590, "avgAOV": 22.498829968245122, "avgItems": 1.6688022284122563, "avgMargin": 59.844048573250866, "avgShipping": 1.2171309192200557, "revenue": 80770.799586}, {"YearMonth": "2021-03", "HasDiscount": 1, "count": 2434, "avgAOV": 31.71814273993426, "avgItems": 2.4050944946589974, "avgMargin": 58.224246195937205, "avgShipping": 0.8580525883319639, "revenue": 77201.959429}, {"YearMonth": "2021-04", "HasDiscount": 0, "count": 3651, "avgAOV": 24.730366843330593, "avgItems": 1.76253081347576, "avgMargin": 59.592389696702426, "avgShipping": 1.1190084908244318, "revenue": 90290.569345}, {"YearMonth": "2021-04", "HasDiscount": 1, "count": 1291, "avgAOV": 30.63526697211464, "avgItems": 2.324554608830364, "avgMargin": 57.38556074471365, "avgShipping": 0.6928737412858249, "revenue": 39550.129661}, {"YearMonth": "2021-05", "HasDiscount": 0, "count": 2911, "avgAOV": 23.211580046375815, "avgItems": 1.6729646169701133, "avgMargin": 59.44202821323032, "avgShipping": 1.0924081071796634, "revenue": 67568.90951499999}, {"YearMonth": "2021-05", "HasDiscount": 1, "count": 2210, "avgAOV": 30.956348178280543, "avgItems": 2.3452488687782806, "avgMargin": 57.52264196618672, "avgShipping": 0.633710407239819, "revenue": 68413.529474}, {"YearMonth": "2021-06", "HasDiscount": 0, "count": 2818, "avgAOV": 24.61416944960965, "avgItems": 1.7402413058907027, "avgMargin": 60.26411607740577, "avgShipping": 1.1717530163236338, "revenue": 69362.729509}, {"YearMonth": "2021-06", "HasDiscount": 1, "count": 2808, "avgAOV": 27.583464814102562, "avgItems": 2.0534188034188032, "avgMargin": 58.501803936221876, "avgShipping": 0.7581908831908832, "revenue": 77454.369198}, {"YearMonth": "2021-07", "HasDiscount": 0, "count": 5397, "avgAOV": 25.503681499907355, "avgItems": 1.9021678710394663, "avgMargin": 55.54640213741276, "avgShipping": 1.0884750787474522, "revenue": 137643.369055}, {"YearMonth": "2021-07", "HasDiscount": 1, "count": 1140, "avgAOV": 32.0702103, "avgItems": 2.4289473684210527, "avgMargin": 57.39954242060222, "avgShipping": 0.7728070175438596, "revenue": 36560.039742}, {"YearMonth": "2021-08", "HasDiscount": 0, "count": 3850, "avgAOV": 25.073997202857143, "avgItems": 1.7620779220779221, "avgMargin": 59.36589542931969, "avgShipping": 1.2598701298701298, "revenue": 96534.889231}, {"YearMonth": "2021-08", "HasDiscount": 1, "count": 879, "avgAOV": 31.61855492718999, "avgItems": 2.3083048919226394, "avgMargin": 58.158225558704416, "avgShipping": 0.8088737201365188, "revenue": 27792.709781}, {"YearMonth": "2021-09", "HasDiscount": 0, "count": 2981, "avgAOV": 23.841462456558197, "avgItems": 1.7034552163703456, "avgMargin": 59.98589069010317, "avgShipping": 1.2401878564240187, "revenue": 71071.39958299999}, {"YearMonth": "2021-09", "HasDiscount": 1, "count": 2088, "avgAOV": 31.846240185823756, "avgItems": 2.3601532567049808, "avgMargin": 59.130764409109716, "avgShipping": 0.7681992337164751, "revenue": 66494.949508}, {"YearMonth": "2021-10", "HasDiscount": 0, "count": 3328, "avgAOV": 23.863254044170674, "avgItems": 1.7487980769230769, "avgMargin": 60.11911673459879, "avgShipping": 1.1783353365384615, "revenue": 79416.909459}, {"YearMonth": "2021-10", "HasDiscount": 1, "count": 1980, "avgAOV": 26.49409572070707, "avgItems": 1.9707070707070706, "avgMargin": 58.73283082210013, "avgShipping": 0.7368686868686869, "revenue": 52458.309527}, {"YearMonth": "2021-11", "HasDiscount": 0, "count": 5830, "avgAOV": 26.959435482332758, "avgItems": 1.9811320754716981, "avgMargin": 57.12351383898158, "avgShipping": 0.9993138936535163, "revenue": 157173.508862}, {"YearMonth": "2021-11", "HasDiscount": 1, "count": 478, "avgAOV": 33.06924666527197, "avgItems": 2.5543933054393304, "avgMargin": 56.35167713072271, "avgShipping": 0.6893305439330544, "revenue": 15807.099906}, {"YearMonth": "2021-12", "HasDiscount": 0, "count": 3489, "avgAOV": 25.72105167813127, "avgItems": 1.8549727715677844, "avgMargin": 59.13811667122265, "avgShipping": 1.1574949842361708, "revenue": 89740.749305}, {"YearMonth": "2021-12", "HasDiscount": 1, "count": 627, "avgAOV": 33.695645548644336, "avgItems": 2.3859649122807016, "avgMargin": 55.675535717445364, "avgShipping": 0.664274322169059, "revenue": 21127.169759}, {"YearMonth": "2022-01", "HasDiscount": 0, "count": 6582, "avgAOV": 23.972699614858705, "avgItems": 1.8743542996049833, "avgMargin": 54.90474905156789, "avgShipping": 1.0069127924642967, "revenue": 157788.308865}, {"YearMonth": "2022-01", "HasDiscount": 1, "count": 1600, "avgAOV": 29.66390599625, "avgItems": 2.27875, "avgMargin": 54.729322272374105, "avgShipping": 0.6171875, "revenue": 47462.249594}, {"YearMonth": "2022-02", "HasDiscount": 0, "count": 3300, "avgAOV": 23.343939236060603, "avgItems": 1.6763636363636363, "avgMargin": 59.72784105054273, "avgShipping": 1.1537878787878788, "revenue": 77034.99947899999}, {"YearMonth": "2022-02", "HasDiscount": 1, "count": 399, "avgAOV": 27.717368223057644, "avgItems": 2.2606516290726817, "avgMargin": 58.86268478277971, "avgShipping": 0.8583959899749374, "revenue": 11059.229921}, {"YearMonth": "2022-03", "HasDiscount": 0, "count": 4034, "avgAOV": 21.228388529499256, "avgItems": 1.5332176499752108, "avgMargin": 58.944681223653234, "avgShipping": 1.3640307387208725, "revenue": 85635.319328}, {"YearMonth": "2022-03", "HasDiscount": 1, "count": 2151, "avgAOV": 33.65979051650395, "avgItems": 2.523942352394235, "avgMargin": 58.13371567718663, "avgShipping": 0.8565783356578336, "revenue": 72402.209401}, {"YearMonth": "2022-04", "HasDiscount": 0, "count": 3485, "avgAOV": 22.319021415781922, "avgItems": 1.59454806312769, "avgMargin": 59.307872643601144, "avgShipping": 1.2647058823529411, "revenue": 77781.789634}, {"YearMonth": "2022-04", "HasDiscount": 1, "count": 1887, "avgAOV": 27.407016323794384, "avgItems": 2.0731319554848966, "avgMargin": 58.289228004006794, "avgShipping": 0.7021727609962904, "revenue": 51717.039803}, {"YearMonth": "2022-05", "HasDiscount": 0, "count": 3106, "avgAOV": 23.323956776239537, "avgItems": 1.6587250482936253, "avgMargin": 58.94819829128363, "avgShipping": 1.2870251126851255, "revenue": 72444.209747}, {"YearMonth": "2022-05", "HasDiscount": 1, "count": 1388, "avgAOV": 31.093674214697405, "avgItems": 2.244956772334294, "avgMargin": 57.59625408112329, "avgShipping": 0.6790345821325648, "revenue": 43158.01981}, {"YearMonth": "2022-06", "HasDiscount": 0, "count": 2367, "avgAOV": 24.573789491339248, "avgItems": 1.681453316434305, "avgMargin": 59.475980761433384, "avgShipping": 1.5261089987325729, "revenue": 58166.159726}, {"YearMonth": "2022-06", "HasDiscount": 1, "count": 1795, "avgAOV": 29.648813233983287, "avgItems": 2.1493036211699166, "avgMargin": 58.38193042312757, "avgShipping": 0.928774373259053, "revenue": 53219.619755}, {"YearMonth": "2022-07", "HasDiscount": 0, "count": 3575, "avgAOV": 25.873510391048953, "avgItems": 1.8744055944055944, "avgMargin": 56.81626968144492, "avgShipping": 1.518979020979021, "revenue": 92497.799648}, {"YearMonth": "2022-07", "HasDiscount": 1, "count": 1386, "avgAOV": 29.89240967243867, "avgItems": 2.212121212121212, "avgMargin": 57.85328161106903, "avgShipping": 0.8914502164502164, "revenue": 41430.879806}, {"YearMonth": "2022-08", "HasDiscount": 0, "count": 3094, "avgAOV": 24.926331514867485, "avgItems": 1.7087912087912087, "avgMargin": 59.290311391779554, "avgShipping": 1.6801874595992243, "revenue": 77122.069707}, {"YearMonth": "2022-08", "HasDiscount": 1, "count": 1141, "avgAOV": 33.69659059947414, "avgItems": 2.366345311130587, "avgMargin": 58.27419532779337, "avgShipping": 0.850219106047327, "revenue": 38447.809874}, {"YearMonth": "2022-09", "HasDiscount": 0, "count": 2618, "avgAOV": 24.683219904889228, "avgItems": 1.7238349885408708, "avgMargin": 57.29585303827452, "avgShipping": 1.3790488922841866, "revenue": 64620.669711}, {"YearMonth": "2022-09", "HasDiscount": 1, "count": 1427, "avgAOV": 32.1477434470918, "avgItems": 2.292221443587947, "avgMargin": 56.35296943904906, "avgShipping": 0.7156622284512965, "revenue": 45874.829899}, {"YearMonth": "2022-10", "HasDiscount": 0, "count": 2783, "avgAOV": 24.079475289974848, "avgItems": 1.703197987782968, "avgMargin": 57.36412220182174, "avgShipping": 1.3923823212360762, "revenue": 67013.179732}, {"YearMonth": "2022-10", "HasDiscount": 1, "count": 1379, "avgAOV": 29.32060172298767, "avgItems": 2.163886874546773, "avgMargin": 56.37040887935532, "avgShipping": 0.7897751994198696, "revenue": 40433.109776}, {"YearMonth": "2022-11", "HasDiscount": 0, "count": 2840, "avgAOV": 25.094052713732392, "avgItems": 1.7626760563380282, "avgMargin": 56.788836274653605, "avgShipping": 1.4103521126760563, "revenue": 71267.109707}, {"YearMonth": "2022-11", "HasDiscount": 1, "count": 1867, "avgAOV": 34.71193882860204, "avgItems": 2.502410283877879, "avgMargin": 55.37663640833285, "avgShipping": 0.7388323513658276, "revenue": 64807.189793}, {"YearMonth": "2022-12", "HasDiscount": 0, "count": 2661, "avgAOV": 25.838601850056367, "avgItems": 1.8647125140924465, "avgMargin": 55.17413993206797, "avgShipping": 1.9171552048102218, "revenue": 68756.519523}, {"YearMonth": "2022-12", "HasDiscount": 1, "count": 1042, "avgAOV": 32.97979802975048, "avgItems": 2.22936660268714, "avgMargin": 50.940207544362345, "avgShipping": 0.9614203454894434, "revenue": 34364.949547}, {"YearMonth": "2023-01", "HasDiscount": 0, "count": 5559, "avgAOV": 27.658172150746534, "avgItems": 2.0939017808958447, "avgMargin": 50.98890839692368, "avgShipping": 1.6783234394675304, "revenue": 153751.778986}, {"YearMonth": "2023-01", "HasDiscount": 1, "count": 784, "avgAOV": 34.081198710459184, "avgItems": 2.4426020408163267, "avgMargin": 48.881980794734496, "avgShipping": 1.0822704081632653, "revenue": 26719.659789}, {"YearMonth": "2023-02", "HasDiscount": 0, "count": 2337, "avgAOV": 24.567509497218655, "avgItems": 1.699614890885751, "avgMargin": 56.21651491548776, "avgShipping": 1.860055626872058, "revenue": 57414.269694999995}, {"YearMonth": "2023-02", "HasDiscount": 1, "count": 1263, "avgAOV": 29.878622148060174, "avgItems": 2.178147268408551, "avgMargin": 54.95466867369035, "avgShipping": 1.0846793349168646, "revenue": 37736.699773}, {"YearMonth": "2023-03", "HasDiscount": 0, "count": 2815, "avgAOV": 25.375353400355237, "avgItems": 1.7236234458259325, "avgMargin": 58.100679339383184, "avgShipping": 2.0910479573712255, "revenue": 71431.619822}, {"YearMonth": "2023-03", "HasDiscount": 1, "count": 1579, "avgAOV": 34.72101953134896, "avgItems": 2.350221659278024, "avgMargin": 56.20580772305375, "avgShipping": 1.3067447751741608, "revenue": 54824.48984}, {"YearMonth": "2023-04", "HasDiscount": 0, "count": 2323, "avgAOV": 27.3643003844167, "avgItems": 1.7916487300904003, "avgMargin": 58.41786808997044, "avgShipping": 1.9615798536375377, "revenue": 63567.269793}, {"YearMonth": "2023-04", "HasDiscount": 1, "count": 600, "avgAOV": 34.33848323833333, "avgItems": 2.355, "avgMargin": 57.7757092411414, "avgShipping": 1.463, "revenue": 20603.089943}, {"YearMonth": "2023-05", "HasDiscount": 0, "count": 2577, "avgAOV": 27.79369023554521, "avgItems": 1.7481567714396584, "avgMargin": 58.365159465650144, "avgShipping": 1.9558789289871945, "revenue": 71624.339737}, {"YearMonth": "2023-05", "HasDiscount": 1, "count": 1218, "avgAOV": 37.702807759441704, "avgItems": 2.4917898193760264, "avgMargin": 57.06731180851175, "avgShipping": 1.4007799671592776, "revenue": 45922.019851}, {"YearMonth": "2023-06", "HasDiscount": 0, "count": 2170, "avgAOV": 26.989414594470045, "avgItems": 1.7576036866359448, "avgMargin": 58.48275610967198, "avgShipping": 1.975599078341014, "revenue": 58567.029669999996}, {"YearMonth": "2023-06", "HasDiscount": 1, "count": 1257, "avgAOV": 38.557239237072395, "avgItems": 2.5139220365950674, "avgMargin": 56.8506695250778, "avgShipping": 1.2211614956245027, "revenue": 48466.449721}, {"YearMonth": "2023-07", "HasDiscount": 0, "count": 3635, "avgAOV": 29.24806310343879, "avgItems": 1.9722145804676754, "avgMargin": 54.8518093551956, "avgShipping": 1.8365612104539204, "revenue": 106316.709381}, {"YearMonth": "2023-07", "HasDiscount": 1, "count": 736, "avgAOV": 37.77752689945652, "avgItems": 2.457880434782609, "avgMargin": 55.38127541224317, "avgShipping": 1.2800951086956522, "revenue": 27804.259798}, {"YearMonth": "2023-08", "HasDiscount": 0, "count": 2735, "avgAOV": 28.472328972212065, "avgItems": 1.820475319926874, "avgMargin": 58.1361072186526, "avgShipping": 1.9840767824497256, "revenue": 77871.819739}, {"YearMonth": "2023-08", "HasDiscount": 1, "count": 507, "avgAOV": 35.27489140828402, "avgItems": 2.222879684418146, "avgMargin": 57.34318710314627, "avgShipping": 1.3817554240631165, "revenue": 17884.369944}, {"YearMonth": "2023-09", "HasDiscount": 0, "count": 2311, "avgAOV": 27.886893020337514, "avgItems": 1.7537862397230637, "avgMargin": 59.45800766232047, "avgShipping": 2.2238208567719604, "revenue": 64446.609769999995}, {"YearMonth": "2023-09", "HasDiscount": 1, "count": 1217, "avgAOV": 39.34005742152835, "avgItems": 2.4913722267871816, "avgMargin": 58.557343551362344, "avgShipping": 1.2110106820049302, "revenue": 47876.849882}, {"YearMonth": "2023-10", "HasDiscount": 0, "count": 2551, "avgAOV": 28.213567121912973, "avgItems": 1.7894943159545276, "avgMargin": 59.57687667494466, "avgShipping": 2.2296158369266954, "revenue": 71972.809728}, {"YearMonth": "2023-10", "HasDiscount": 1, "count": 1184, "avgAOV": 38.81927357685811, "avgItems": 2.543918918918919, "avgMargin": 59.0146938990732, "avgShipping": 1.3963682432432432, "revenue": 45962.019915}, {"YearMonth": "2023-11", "HasDiscount": 0, "count": 2020, "avgAOV": 29.358208023762376, "avgItems": 1.807920792079208, "avgMargin": 59.970320519435404, "avgShipping": 2.200618811881188, "revenue": 59303.580208}, {"YearMonth": "2023-11", "HasDiscount": 1, "count": 1189, "avgAOV": 40.219453202691334, "avgItems": 2.5786375105130364, "avgMargin": 59.06159828656772, "avgShipping": 1.411143818334735, "revenue": 47820.929857999996}, {"YearMonth": "2023-12", "HasDiscount": 0, "count": 2158, "avgAOV": 29.70867013716404, "avgItems": 1.8586654309545876, "avgMargin": 57.251886599254085, "avgShipping": 2.217330861909175, "revenue": 64111.310156}, {"YearMonth": "2023-12", "HasDiscount": 1, "count": 899, "avgAOV": 40.61164619354839, "avgItems": 2.585094549499444, "avgMargin": 58.49228199276228, "avgShipping": 2.032869855394883, "revenue": 36509.869928}, {"YearMonth": "2024-01", "HasDiscount": 0, "count": 4024, "avgAOV": 32.024144099900596, "avgItems": 2.1379224652087476, "avgMargin": 53.352825439636426, "avgShipping": 2.1824055666003974, "revenue": 128865.155858}, {"YearMonth": "2024-01", "HasDiscount": 1, "count": 779, "avgAOV": 39.99557100641848, "avgItems": 2.644415917843389, "avgMargin": 51.769728418315005, "avgShipping": 1.792362002567394, "revenue": 31156.549813999998}, {"YearMonth": "2024-02", "HasDiscount": 0, "count": 2113, "avgAOV": 29.46865581590156, "avgItems": 1.73450070989115, "avgMargin": 58.88000831165388, "avgShipping": 2.248296261239943, "revenue": 62267.269738999996}, {"YearMonth": "2024-02", "HasDiscount": 1, "count": 496, "avgAOV": 36.911854806451615, "avgItems": 2.3548387096774195, "avgMargin": 59.56701297677167, "avgShipping": 2.141532258064516, "revenue": 18308.279984}, {"YearMonth": "2024-03", "HasDiscount": 0, "count": 2421, "avgAOV": 29.14984293969434, "avgItems": 1.7451466336224701, "avgMargin": 59.06314629091768, "avgShipping": 2.5887443205287073, "revenue": 70571.769757}, {"YearMonth": "2024-03", "HasDiscount": 1, "count": 841, "avgAOV": 42.176920324613555, "avgItems": 2.6087990487514863, "avgMargin": 58.66113445439625, "avgShipping": 2.0667063020214034, "revenue": 35470.789993}, {"YearMonth": "2024-04", "HasDiscount": 0, "count": 2387, "avgAOV": 28.19930880854629, "avgItems": 1.682446585672392, "avgMargin": 59.084068966751545, "avgShipping": 2.737829912023461, "revenue": 67311.750126}, {"YearMonth": "2024-04", "HasDiscount": 1, "count": 975, "avgAOV": 41.91124106974359, "avgItems": 2.6, "avgMargin": 59.077842103879256, "avgShipping": 2.203794871794872, "revenue": 40863.460043}, {"YearMonth": "2024-05", "HasDiscount": 0, "count": 2524, "avgAOV": 29.34464252654517, "avgItems": 1.7107765451664025, "avgMargin": 59.011127337916335, "avgShipping": 2.5692947702060223, "revenue": 74065.877737}, {"YearMonth": "2024-05", "HasDiscount": 1, "count": 521, "avgAOV": 39.60375040882917, "avgItems": 2.418426103646833, "avgMargin": 58.822450697331206, "avgShipping": 2.370729366602687, "revenue": 20633.553963}, {"YearMonth": "2024-06", "HasDiscount": 0, "count": 2504, "avgAOV": 30.140481513578276, "avgItems": 1.7871405750798721, "avgMargin": 58.28224845797007, "avgShipping": 2.5334664536741216, "revenue": 75471.76571}, {"YearMonth": "2024-06", "HasDiscount": 1, "count": 396, "avgAOV": 41.678383749999995, "avgItems": 2.553030303030303, "avgMargin": 58.31426212574012, "avgShipping": 2.2044191919191922, "revenue": 16504.639965}, {"YearMonth": "2024-07", "HasDiscount": 0, "count": 3757, "avgAOV": 31.93706410247538, "avgItems": 2.0407239819004523, "avgMargin": 53.84882905264251, "avgShipping": 2.338394996007453, "revenue": 119987.549833}, {"YearMonth": "2024-07", "HasDiscount": 1, "count": 374, "avgAOV": 42.37956613101604, "avgItems": 2.6898395721925135, "avgMargin": 53.50679130364585, "avgShipping": 2.6351604278074867, "revenue": 15849.957733}, {"YearMonth": "2024-08", "HasDiscount": 0, "count": 2452, "avgAOV": 29.609486201060356, "avgItems": 1.7426590538336053, "avgMargin": 58.472706857628125, "avgShipping": 2.444657422512235, "revenue": 72602.460165}, {"YearMonth": "2024-08", "HasDiscount": 1, "count": 510, "avgAOV": 44.476372692156865, "avgItems": 2.703921568627451, "avgMargin": 58.742777679207975, "avgShipping": 1.975686274509804, "revenue": 22682.950073}, {"YearMonth": "2024-09", "HasDiscount": 0, "count": 2086, "avgAOV": 29.18998552301055, "avgItems": 1.7195589645254075, "avgMargin": 58.31636018772701, "avgShipping": 2.447195589645254, "revenue": 60890.309801}, {"YearMonth": "2024-09", "HasDiscount": 1, "count": 775, "avgAOV": 43.09421942451613, "avgItems": 2.7238709677419353, "avgMargin": 59.12978306284794, "avgShipping": 2.1794193548387097, "revenue": 33398.020054}, {"YearMonth": "2024-10", "HasDiscount": 0, "count": 2351, "avgAOV": 27.40427039982986, "avgItems": 1.6320714589536367, "avgMargin": 58.95642369556738, "avgShipping": 2.478158230540196, "revenue": 64427.43971}, {"YearMonth": "2024-10", "HasDiscount": 1, "count": 768, "avgAOV": 41.38549480078125, "avgItems": 2.70703125, "avgMargin": 58.76044009897527, "avgShipping": 2.544986979166667, "revenue": 31784.060007}, {"YearMonth": "2024-11", "HasDiscount": 0, "count": 1930, "avgAOV": 28.08572523523316, "avgItems": 1.6647668393782384, "avgMargin": 59.74113353514404, "avgShipping": 2.351088082901555, "revenue": 54205.449704}, {"YearMonth": "2024-11", "HasDiscount": 1, "count": 1427, "avgAOV": 38.63584437210932, "avgItems": 2.6447091800981077, "avgMargin": 60.43038127052124, "avgShipping": 2.555606166783462, "revenue": 55133.349919}, {"YearMonth": "2024-12", "HasDiscount": 0, "count": 1954, "avgAOV": 29.45805490071648, "avgItems": 1.6745138178096213, "avgMargin": 61.43043448034839, "avgShipping": 2.468116683725691, "revenue": 57561.039276}, {"YearMonth": "2024-12", "HasDiscount": 1, "count": 373, "avgAOV": 39.26890069973191, "avgItems": 2.4772117962466487, "avgMargin": 61.82162770216905, "avgShipping": 2.9526809651474535, "revenue": 14647.299961}, {"YearMonth": "2025-01", "HasDiscount": 0, "count": 3018, "avgAOV": 34.086510652087476, "avgItems": 1.9774685222001325, "avgMargin": 59.65261688005311, "avgShipping": 2.7782637508283634, "revenue": 102873.089148}, {"YearMonth": "2025-01", "HasDiscount": 1, "count": 484, "avgAOV": 41.15522700826447, "avgItems": 2.4318181818181817, "avgMargin": 58.80747136554414, "avgShipping": 2.940909090909091, "revenue": 19919.129872}, {"YearMonth": "2025-02", "HasDiscount": 0, "count": 2118, "avgAOV": 32.3949431496695, "avgItems": 1.65533522190746, "avgMargin": 62.84064090611205, "avgShipping": 2.6209159584513695, "revenue": 68612.489591}, {"YearMonth": "2025-02", "HasDiscount": 1, "count": 300, "avgAOV": 39.42333320333333, "avgItems": 2.1633333333333336, "avgMargin": 63.969017711971766, "avgShipping": 3.1143333333333336, "revenue": 11826.999961}, {"YearMonth": "2025-03", "HasDiscount": 0, "count": 2243, "avgAOV": 34.13806043646902, "avgItems": 1.7316094516272849, "avgMargin": 63.5558738143412, "avgShipping": 2.569549710209541, "revenue": 76571.669559}, {"YearMonth": "2025-03", "HasDiscount": 1, "count": 256, "avgAOV": 40.44374982421875, "avgItems": 2.2109375, "avgMargin": 64.07712241605472, "avgShipping": 3.408984375, "revenue": 10353.599955}, {"YearMonth": "2025-04", "HasDiscount": 0, "count": 2319, "avgAOV": 34.46471736912462, "avgItems": 1.7270375161707632, "avgMargin": 63.78602516361314, "avgShipping": 2.5086028460543335, "revenue": 79923.679579}, {"YearMonth": "2025-04", "HasDiscount": 1, "count": 257, "avgAOV": 41.5587937003891, "avgItems": 2.159533073929961, "avgMargin": 63.88352674661926, "avgShipping": 3.192607003891051, "revenue": 10680.609981}, {"YearMonth": "2025-05", "HasDiscount": 0, "count": 2367, "avgAOV": 35.80787476130123, "avgItems": 1.7824250105618926, "avgMargin": 63.32676526858161, "avgShipping": 2.3841360371778624, "revenue": 84757.23956}, {"YearMonth": "2025-05", "HasDiscount": 1, "count": 264, "avgAOV": 44.5738636439394, "avgItems": 2.340909090909091, "avgMargin": 64.56526209885601, "avgShipping": 3.1356060606060607, "revenue": 11767.500002}, {"YearMonth": "2025-06", "HasDiscount": 0, "count": 2136, "avgAOV": 35.30141832350187, "avgItems": 1.7495318352059925, "avgMargin": 63.643500850750655, "avgShipping": 2.377598314606742, "revenue": 75403.829539}, {"YearMonth": "2025-06", "HasDiscount": 1, "count": 208, "avgAOV": 38.536249903846155, "avgItems": 1.9759615384615385, "avgMargin": 64.27567772164414, "avgShipping": 3.270192307692308, "revenue": 8015.5399800000005}, {"YearMonth": "2025-07", "HasDiscount": 0, "count": 2297, "avgAOV": 34.61436196125381, "avgItems": 1.7213757074444929, "avgMargin": 63.573992021894774, "avgShipping": 2.3669569003047455, "revenue": 79509.189425}, {"YearMonth": "2025-07", "HasDiscount": 1, "count": 192, "avgAOV": 41.561718604166664, "avgItems": 2.1354166666666665, "avgMargin": 63.43120013660467, "avgShipping": 3.018489583333334, "revenue": 7979.849972}, {"YearMonth": "2025-08", "HasDiscount": 0, "count": 2304, "avgAOV": 34.84983918619792, "avgItems": 1.7287326388888888, "avgMargin": 63.61051218142282, "avgShipping": 2.2578993055555556, "revenue": 80294.029485}, {"YearMonth": "2025-08", "HasDiscount": 1, "count": 190, "avgAOV": 39.6558419, "avgItems": 2.0526315789473686, "avgMargin": 64.1367259676736, "avgShipping": 3.391578947368421, "revenue": 7534.609961}, {"YearMonth": "2025-09", "HasDiscount": 0, "count": 2141, "avgAOV": 34.004890375525456, "avgItems": 1.714619336758524, "avgMargin": 64.3461301830313, "avgShipping": 2.429098552078468, "revenue": 72804.470294}, {"YearMonth": "2025-09", "HasDiscount": 1, "count": 179, "avgAOV": 39.32815659217877, "avgItems": 2.022346368715084, "avgMargin": 66.13980404373362, "avgShipping": 3.332122905027933, "revenue": 7039.74003}, {"YearMonth": "2025-10", "HasDiscount": 0, "count": 2368, "avgAOV": 34.41557830109797, "avgItems": 1.7217060810810811, "avgMargin": 64.05101141785686, "avgShipping": 2.3253589527027025, "revenue": 81496.089417}, {"YearMonth": "2025-10", "HasDiscount": 1, "count": 192, "avgAOV": 42.802291822916665, "avgItems": 2.1666666666666665, "avgMargin": 65.66398942382818, "avgShipping": 3.2815104166666664, "revenue": 8218.04003}, {"YearMonth": "2025-11", "HasDiscount": 0, "count": 1976, "avgAOV": 34.64573866093117, "avgItems": 1.7591093117408907, "avgMargin": 63.73662884694015, "avgShipping": 2.383324898785425, "revenue": 68459.979594}, {"YearMonth": "2025-11", "HasDiscount": 1, "count": 141, "avgAOV": 44.946099404255314, "avgItems": 2.3900709219858154, "avgMargin": 63.65990312492426, "avgShipping": 3.1900709219858157, "revenue": 6337.400016}, {"YearMonth": "2025-12", "HasDiscount": 0, "count": 1882, "avgAOV": 33.6106161509033, "avgItems": 1.6965993623804463, "avgMargin": 63.536857080662486, "avgShipping": 2.5568809776833157, "revenue": 63255.179596}, {"YearMonth": "2025-12", "HasDiscount": 1, "count": 87, "avgAOV": 48.461724172413795, "avgItems": 2.5632183908045976, "avgMargin": 64.77843238685152, "avgShipping": 2.772413793103448, "revenue": 4216.170003}, {"YearMonth": "2026-01", "HasDiscount": 0, "count": 834, "avgAOV": 36.153932619904076, "avgItems": 1.8177458033573142, "avgMargin": 63.781113596236196, "avgShipping": 2.6218225419664267, "revenue": 30152.379805}, {"YearMonth": "2026-01", "HasDiscount": 1, "count": 54, "avgAOV": 52.22000005555555, "avgItems": 2.5555555555555554, "avgMargin": 63.661390287523815, "avgShipping": 2.9537037037037037, "revenue": 2819.8800029999998}], "discountCodesMonthly": [{"YearMonth": "2015-03", "DiscountCode": "ESPRING15", "uses": 1956, "revenue": 52401.857042, "avgAOV": 26.790315461145195, "avgDiscountPct": 9.989775051124745}, {"YearMonth": "2015-04", "DiscountCode": "ESPRING15", "uses": 40, "revenue": 1200.781391, "avgAOV": 30.019534775, "avgDiscountPct": 0.0}, {"YearMonth": "2015-05", "DiscountCode": "ESPRING15", "uses": 1, "revenue": 20.9496, "avgAOV": 20.9496, "avgDiscountPct": 0.0}, {"YearMonth": "2015-06", "DiscountCode": "ESPRING15", "uses": 1, "revenue": 20.9496, "avgAOV": 20.9496, "avgDiscountPct": 0.0}, {"YearMonth": "2015-09", "DiscountCode": "ESPRING15", "uses": 1, "revenue": 32.4233, "avgAOV": 32.4233, "avgDiscountPct": 0.0}, {"YearMonth": "2016-04", "DiscountCode": "ESPRING15", "uses": 1, "revenue": 5.0572, "avgAOV": 5.0572, "avgDiscountPct": 0.0}, {"YearMonth": "2017-03", "DiscountCode": "MAR17", "uses": 1006, "revenue": 26645.85985, "avgAOV": 26.486938220675945, "avgDiscountPct": 9.990059642147118}, {"YearMonth": "2017-04", "DiscountCode": "MAR17", "uses": 560, "revenue": 15361.780016, "avgAOV": 27.43175002857143, "avgDiscountPct": 9.714285714285714}, {"YearMonth": "2017-05", "DiscountCode": "MAR17", "uses": 2, "revenue": 54.769998, "avgAOV": 27.384999, "avgDiscountPct": 0.0}, {"YearMonth": "2017-07", "DiscountCode": "MAR17", "uses": 1, "revenue": 28.959999, "avgAOV": 28.959999, "avgDiscountPct": 0.0}, {"YearMonth": "2017-12", "DiscountCode": "JVA18A", "uses": 814, "revenue": 21193.719843, "avgAOV": 26.036510863636362, "avgDiscountPct": 15.0}, {"YearMonth": "2018-01", "DiscountCode": "JVA18A", "uses": 3080, "revenue": 83532.159432, "avgAOV": 27.120830984415583, "avgDiscountPct": 14.887987012987013}, {"YearMonth": "2018-01", "DiscountCode": "JVCA18", "uses": 1506, "revenue": 46098.569802, "avgAOV": 30.60994010756972, "avgDiscountPct": 0.0}, {"YearMonth": "2018-02", "DiscountCode": "JVA18A", "uses": 8, "revenue": 224.479998, "avgAOV": 28.05999975, "avgDiscountPct": 0.0}, {"YearMonth": "2018-02", "DiscountCode": "JVB18", "uses": 942, "revenue": 29831.359878, "avgAOV": 31.66811027388535, "avgDiscountPct": 0.0}, {"YearMonth": "2018-02", "DiscountCode": "JVCA18", "uses": 204, "revenue": 6456.229969, "avgAOV": 31.64818612254902, "avgDiscountPct": 0.0}, {"YearMonth": "2018-03", "DiscountCode": "JVA18A", "uses": 7, "revenue": 132.78, "avgAOV": 18.96857142857143, "avgDiscountPct": 0.0}, {"YearMonth": "2018-03", "DiscountCode": "JVB18", "uses": 570, "revenue": 18696.260015, "avgAOV": 32.80045616666666, "avgDiscountPct": 0.0}, {"YearMonth": "2018-03", "DiscountCode": "JVCA18", "uses": 98, "revenue": 3051.099999, "avgAOV": 31.133673459183672, "avgDiscountPct": 0.0}, {"YearMonth": "2018-04", "DiscountCode": "JVA18A", "uses": 13, "revenue": 394.969991, "avgAOV": 30.382307, "avgDiscountPct": 0.0}, {"YearMonth": "2018-04", "DiscountCode": "JVB18", "uses": 13, "revenue": 395.749993, "avgAOV": 30.442307153846155, "avgDiscountPct": 0.0}, {"YearMonth": "2018-04", "DiscountCode": "JVCA18", "uses": 25, "revenue": 728.65999, "avgAOV": 29.1463996, "avgDiscountPct": 0.0}, {"YearMonth": "2018-04", "DiscountCode": "JVCB18", "uses": 1457, "revenue": 44764.079578, "avgAOV": 30.723458873026765, "avgDiscountPct": 0.0}, {"YearMonth": "2018-05", "DiscountCode": "JVA18A", "uses": 7, "revenue": 288.379994, "avgAOV": 41.197142, "avgDiscountPct": 0.0}, {"YearMonth": "2018-05", "DiscountCode": "JVB18", "uses": 8, "revenue": 235.009997, "avgAOV": 29.376249625, "avgDiscountPct": 0.0}, {"YearMonth": "2018-05", "DiscountCode": "JVCA18", "uses": 5, "revenue": 143.429999, "avgAOV": 28.6859998, "avgDiscountPct": 0.0}, {"YearMonth": "2018-05", "DiscountCode": "JVCB18", "uses": 1187, "revenue": 36995.629628, "avgAOV": 31.167337513058133, "avgDiscountPct": 0.0}, {"YearMonth": "2018-06", "DiscountCode": "JVA18A", "uses": 5, "revenue": 80.579999, "avgAOV": 16.1159998, "avgDiscountPct": 0.0}, {"YearMonth": "2018-06", "DiscountCode": "JVB18", "uses": 3, "revenue": 386.519994, "avgAOV": 128.839998, "avgDiscountPct": 0.0}, {"YearMonth": "2018-06", "DiscountCode": "JVCA18", "uses": 6, "revenue": 109.579999, "avgAOV": 18.263333166666666, "avgDiscountPct": 0.0}, {"YearMonth": "2018-06", "DiscountCode": "JVCB18", "uses": 239, "revenue": 7415.449938, "avgAOV": 31.02698718828452, "avgDiscountPct": 0.0}, {"YearMonth": "2018-07", "DiscountCode": "JVA18A", "uses": 7, "revenue": 214.629997, "avgAOV": 30.661428142857144, "avgDiscountPct": 0.0}, {"YearMonth": "2018-07", "DiscountCode": "JVCA18", "uses": 6, "revenue": 201.41, "avgAOV": 33.568333333333335, "avgDiscountPct": 0.0}, {"YearMonth": "2018-07", "DiscountCode": "JVCB18", "uses": 59, "revenue": 1791.219987, "avgAOV": 30.359660796610168, "avgDiscountPct": 0.0}, {"YearMonth": "2018-07", "DiscountCode": "JVCF18", "uses": 3, "revenue": 106.50999999999999, "avgAOV": 35.50333333333333, "avgDiscountPct": 0.0}, {"YearMonth": "2018-08", "DiscountCode": "JVA18A", "uses": 19, "revenue": 479.150002, "avgAOV": 25.218421157894735, "avgDiscountPct": 0.0}, {"YearMonth": "2018-08", "DiscountCode": "JVB18", "uses": 1, "revenue": 15.9, "avgAOV": 15.9, "avgDiscountPct": 0.0}, {"YearMonth": "2018-08", "DiscountCode": "JVCA18", "uses": 2, "revenue": 56.25999899999999, "avgAOV": 28.129999499999997, "avgDiscountPct": 0.0}, {"YearMonth": "2018-08", "DiscountCode": "JVCB18", "uses": 27, "revenue": 942.479992, "avgAOV": 34.906666370370374, "avgDiscountPct": 0.0}, {"YearMonth": "2018-08", "DiscountCode": "JVCF18", "uses": 1940, "revenue": 60555.989356, "avgAOV": 31.214427503092782, "avgDiscountPct": 0.0}, {"YearMonth": "2018-09", "DiscountCode": "JVA18A", "uses": 5, "revenue": 146.1, "avgAOV": 29.22, "avgDiscountPct": 0.0}, {"YearMonth": "2018-09", "DiscountCode": "JVB18", "uses": 2, "revenue": 44.31, "avgAOV": 22.155, "avgDiscountPct": 0.0}, {"YearMonth": "2018-09", "DiscountCode": "JVCA18", "uses": 1, "revenue": 27.130001, "avgAOV": 27.130001, "avgDiscountPct": 0.0}, {"YearMonth": "2018-09", "DiscountCode": "JVCB18", "uses": 9, "revenue": 681.9300039999999, "avgAOV": 75.77000044444443, "avgDiscountPct": 0.0}, {"YearMonth": "2018-09", "DiscountCode": "JVCF18", "uses": 774, "revenue": 24401.159755, "avgAOV": 31.52604619509044, "avgDiscountPct": 0.0}, {"YearMonth": "2018-10", "DiscountCode": "JVA18A", "uses": 2, "revenue": 53.849998, "avgAOV": 26.924999, "avgDiscountPct": 0.0}, {"YearMonth": "2018-10", "DiscountCode": "JVB18", "uses": 2, "revenue": 77.83, "avgAOV": 38.915, "avgDiscountPct": 0.0}, {"YearMonth": "2018-10", "DiscountCode": "JVCA18", "uses": 4, "revenue": 171.539999, "avgAOV": 42.88499975, "avgDiscountPct": 0.0}, {"YearMonth": "2018-10", "DiscountCode": "JVCB18", "uses": 10, "revenue": 272.049992, "avgAOV": 27.204999199999996, "avgDiscountPct": 0.0}, {"YearMonth": "2018-10", "DiscountCode": "JVCF18", "uses": 140, "revenue": 4985.219981, "avgAOV": 35.608714150000004, "avgDiscountPct": 0.0}, {"YearMonth": "2018-10", "DiscountCode": "JVCJ18", "uses": 1, "revenue": 13.01, "avgAOV": 13.01, "avgDiscountPct": 0.0}, {"YearMonth": "2018-11", "DiscountCode": "JVCA18", "uses": 1, "revenue": 68.0, "avgAOV": 68.0, "avgDiscountPct": 0.0}, {"YearMonth": "2018-11", "DiscountCode": "JVCB18", "uses": 1, "revenue": 9.86, "avgAOV": 9.86, "avgDiscountPct": 0.0}, {"YearMonth": "2018-11", "DiscountCode": "JVCF18", "uses": 18, "revenue": 610.210004, "avgAOV": 33.90055577777778, "avgDiscountPct": 0.0}, {"YearMonth": "2018-11", "DiscountCode": "JVCJ18", "uses": 1647, "revenue": 53527.14987, "avgAOV": 32.499787413479055, "avgDiscountPct": 0.0}, {"YearMonth": "2018-12", "DiscountCode": "JVCA19", "uses": 362, "revenue": 14290.229912, "avgAOV": 39.475773237569065, "avgDiscountPct": 0.0}, {"YearMonth": "2018-12", "DiscountCode": "JVCB18", "uses": 2, "revenue": 43.600001, "avgAOV": 21.8000005, "avgDiscountPct": 0.0}, {"YearMonth": "2018-12", "DiscountCode": "JVCF18", "uses": 10, "revenue": 338.600001, "avgAOV": 33.8600001, "avgDiscountPct": 0.0}, {"YearMonth": "2018-12", "DiscountCode": "JVCJ18", "uses": 1329, "revenue": 42271.009858, "avgAOV": 31.806628937547025, "avgDiscountPct": 0.0}, {"YearMonth": "2019-01", "DiscountCode": "GAJ3", "uses": 1455, "revenue": 40222.449775, "avgAOV": 27.644295378006873, "avgDiscountPct": 10.0}, {"YearMonth": "2019-01", "DiscountCode": "JVA18A", "uses": 1, "revenue": 32.52, "avgAOV": 32.52, "avgDiscountPct": 0.0}, {"YearMonth": "2019-01", "DiscountCode": "JVCA18", "uses": 2, "revenue": 69.21000000000001, "avgAOV": 34.605000000000004, "avgDiscountPct": 0.0}, {"YearMonth": "2019-01", "DiscountCode": "JVCA19", "uses": 1897, "revenue": 75620.239536, "avgAOV": 39.86306775751186, "avgDiscountPct": 0.0}, {"YearMonth": "2019-01", "DiscountCode": "JVCB18", "uses": 1, "revenue": 30.249999, "avgAOV": 30.249999, "avgDiscountPct": 0.0}, {"YearMonth": "2019-01", "DiscountCode": "JVCF18", "uses": 8, "revenue": 344.489996, "avgAOV": 43.0612495, "avgDiscountPct": 0.0}, {"YearMonth": "2019-01", "DiscountCode": "JVCJ18", "uses": 11, "revenue": 327.739997, "avgAOV": 29.794545181818183, "avgDiscountPct": 0.0}, {"YearMonth": "2019-02", "DiscountCode": "GAJ3", "uses": 31, "revenue": 896.079989, "avgAOV": 28.905806096774192, "avgDiscountPct": 0.0}, {"YearMonth": "2019-02", "DiscountCode": "JV342T", "uses": 487, "revenue": 18539.599825, "avgAOV": 38.068993480492814, "avgDiscountPct": 0.0}, {"YearMonth": "2019-02", "DiscountCode": "JVA18A", "uses": 1, "revenue": 9.95, "avgAOV": 9.95, "avgDiscountPct": 0.0}, {"YearMonth": "2019-02", "DiscountCode": "JVCA18", "uses": 2, "revenue": 85.790002, "avgAOV": 42.895001, "avgDiscountPct": 0.0}, {"YearMonth": "2019-02", "DiscountCode": "JVCA19", "uses": 101, "revenue": 4475.53997, "avgAOV": 44.312276930693066, "avgDiscountPct": 0.0}, {"YearMonth": "2019-02", "DiscountCode": "JVCB18", "uses": 1, "revenue": 13.45, "avgAOV": 13.45, "avgDiscountPct": 0.0}, {"YearMonth": "2019-02", "DiscountCode": "JVCF18", "uses": 5, "revenue": 209.24, "avgAOV": 41.848, "avgDiscountPct": 0.0}, {"YearMonth": "2019-02", "DiscountCode": "JVCJ18", "uses": 6, "revenue": 183.789998, "avgAOV": 30.63166633333333, "avgDiscountPct": 0.0}, {"YearMonth": "2019-03", "DiscountCode": "GAJ3", "uses": 8, "revenue": 161.149996, "avgAOV": 20.1437495, "avgDiscountPct": 0.0}, {"YearMonth": "2019-03", "DiscountCode": "JV342T", "uses": 1000, "revenue": 36688.059734, "avgAOV": 36.688059734, "avgDiscountPct": 0.0}, {"YearMonth": "2019-03", "DiscountCode": "JVA18A", "uses": 3, "revenue": 257.8, "avgAOV": 85.93333333333334, "avgDiscountPct": 0.0}, {"YearMonth": "2019-03", "DiscountCode": "JVCA19", "uses": 16, "revenue": 666.390003, "avgAOV": 41.6493751875, "avgDiscountPct": 0.0}, {"YearMonth": "2019-03", "DiscountCode": "JVCB18", "uses": 1, "revenue": 25.949999, "avgAOV": 25.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2019-03", "DiscountCode": "JVCF18", "uses": 3, "revenue": 85.800002, "avgAOV": 28.60000066666667, "avgDiscountPct": 0.0}, {"YearMonth": "2019-03", "DiscountCode": "JVCJ18", "uses": 3, "revenue": 83.299999, "avgAOV": 27.766666333333333, "avgDiscountPct": 0.0}, {"YearMonth": "2019-03", "DiscountCode": "JVSPC19", "uses": 268, "revenue": 9173.529902999999, "avgAOV": 34.229589190298505, "avgDiscountPct": 0.0}, {"YearMonth": "2019-04", "DiscountCode": "GAJ3", "uses": 7, "revenue": 186.489996, "avgAOV": 26.641427999999998, "avgDiscountPct": 0.0}, {"YearMonth": "2019-04", "DiscountCode": "JVCA19", "uses": 8, "revenue": 254.25, "avgAOV": 31.78125, "avgDiscountPct": 0.0}, {"YearMonth": "2019-04", "DiscountCode": "JVCB18", "uses": 2, "revenue": 40.329999, "avgAOV": 20.1649995, "avgDiscountPct": 0.0}, {"YearMonth": "2019-04", "DiscountCode": "JVCF18", "uses": 1, "revenue": 51.899998, "avgAOV": 51.899998, "avgDiscountPct": 0.0}, {"YearMonth": "2019-04", "DiscountCode": "JVCJ18", "uses": 1, "revenue": 65.939999, "avgAOV": 65.939999, "avgDiscountPct": 0.0}, {"YearMonth": "2019-04", "DiscountCode": "JVSPC19", "uses": 1550, "revenue": 55899.579381999996, "avgAOV": 36.06424476258064, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "GAJ3", "uses": 6, "revenue": 135.01000200000001, "avgAOV": 22.501667, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "JV342T", "uses": 1, "revenue": 105.680004, "avgAOV": 105.680004, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "JVB18", "uses": 1, "revenue": 42.38, "avgAOV": 42.38, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "JVCA18", "uses": 1, "revenue": 55.849999, "avgAOV": 55.849999, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "JVCA19", "uses": 8, "revenue": 246.559999, "avgAOV": 30.819999875, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "JVCB18", "uses": 1, "revenue": 49.399998, "avgAOV": 49.399998, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "JVCF18", "uses": 2, "revenue": 27.9, "avgAOV": 13.95, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "JVCJ18", "uses": 1, "revenue": 29.349999, "avgAOV": 29.349999, "avgDiscountPct": 0.0}, {"YearMonth": "2019-05", "DiscountCode": "JVEAA9", "uses": 1821, "revenue": 53333.999582, "avgAOV": 29.288302900604062, "avgDiscountPct": 9.478308621636463}, {"YearMonth": "2019-05", "DiscountCode": "JVSPC19", "uses": 12, "revenue": 279.79999799999996, "avgAOV": 23.316666499999997, "avgDiscountPct": 0.0}, {"YearMonth": "2019-06", "DiscountCode": "GAJ3", "uses": 4, "revenue": 102.33999999999999, "avgAOV": 25.584999999999997, "avgDiscountPct": 0.0}, {"YearMonth": "2019-06", "DiscountCode": "JV342T", "uses": 4, "revenue": 110.65, "avgAOV": 27.6625, "avgDiscountPct": 0.0}, {"YearMonth": "2019-06", "DiscountCode": "JVCA19", "uses": 8, "revenue": 295.89, "avgAOV": 36.98625, "avgDiscountPct": 0.0}, {"YearMonth": "2019-06", "DiscountCode": "JVCB18", "uses": 5, "revenue": 114.649998, "avgAOV": 22.9299996, "avgDiscountPct": 0.0}, {"YearMonth": "2019-06", "DiscountCode": "JVEAA9", "uses": 38, "revenue": 1365.139989, "avgAOV": 35.92473655263158, "avgDiscountPct": 0.0}, {"YearMonth": "2019-06", "DiscountCode": "JVSPC19", "uses": 9, "revenue": 390.909996, "avgAOV": 43.434444, "avgDiscountPct": 0.0}, {"YearMonth": "2019-07", "DiscountCode": "GAJ3", "uses": 4, "revenue": 141.050002, "avgAOV": 35.2625005, "avgDiscountPct": 0.0}, {"YearMonth": "2019-07", "DiscountCode": "JVCB18", "uses": 2, "revenue": 48.899998, "avgAOV": 24.449999, "avgDiscountPct": 0.0}, {"YearMonth": "2019-07", "DiscountCode": "JVEAA9", "uses": 3, "revenue": 378.630001, "avgAOV": 126.21000033333333, "avgDiscountPct": 0.0}, {"YearMonth": "2019-07", "DiscountCode": "JVSPC19", "uses": 2, "revenue": 102.79999799999999, "avgAOV": 51.399998999999994, "avgDiscountPct": 0.0}, {"YearMonth": "2019-08", "DiscountCode": "GAJ3", "uses": 1, "revenue": 9.25, "avgAOV": 9.25, "avgDiscountPct": 0.0}, {"YearMonth": "2019-08", "DiscountCode": "JVCA19", "uses": 1, "revenue": 24.4, "avgAOV": 24.4, "avgDiscountPct": 0.0}, {"YearMonth": "2019-08", "DiscountCode": "JVEAA9", "uses": 3, "revenue": 118.699997, "avgAOV": 39.566665666666665, "avgDiscountPct": 0.0}, {"YearMonth": "2019-08", "DiscountCode": "JVH19", "uses": 303, "revenue": 8159.879945, "avgAOV": 26.930296848184817, "avgDiscountPct": 10.0}, {"YearMonth": "2019-09", "DiscountCode": "JVCA19", "uses": 3, "revenue": 179.629995, "avgAOV": 59.876665, "avgDiscountPct": 0.0}, {"YearMonth": "2019-09", "DiscountCode": "JVCB18", "uses": 2, "revenue": 106.269999, "avgAOV": 53.1349995, "avgDiscountPct": 0.0}, {"YearMonth": "2019-09", "DiscountCode": "JVCJ18", "uses": 1, "revenue": 16.95, "avgAOV": 16.95, "avgDiscountPct": 0.0}, {"YearMonth": "2019-09", "DiscountCode": "JVEAA9", "uses": 3, "revenue": 157.580006, "avgAOV": 52.526668666666666, "avgDiscountPct": 0.0}, {"YearMonth": "2019-09", "DiscountCode": "JVH19", "uses": 2278, "revenue": 68121.490155, "avgAOV": 29.904078206760317, "avgDiscountPct": 9.622475856014047}, {"YearMonth": "2019-10", "DiscountCode": "GAJ3", "uses": 2, "revenue": 89.169997, "avgAOV": 44.5849985, "avgDiscountPct": 0.0}, {"YearMonth": "2019-10", "DiscountCode": "JV32JA", "uses": 1577, "revenue": 60968.599441, "avgAOV": 38.66112837095751, "avgDiscountPct": 0.0}, {"YearMonth": "2019-10", "DiscountCode": "JV342T", "uses": 1, "revenue": 16.95, "avgAOV": 16.95, "avgDiscountPct": 0.0}, {"YearMonth": "2019-10", "DiscountCode": "JVCA19", "uses": 3, "revenue": 112.33, "avgAOV": 37.443333333333335, "avgDiscountPct": 0.0}, {"YearMonth": "2019-10", "DiscountCode": "JVCF18", "uses": 1, "revenue": 25.9, "avgAOV": 25.9, "avgDiscountPct": 0.0}, {"YearMonth": "2019-10", "DiscountCode": "JVEAA9", "uses": 4, "revenue": 136.509997, "avgAOV": 34.12749925, "avgDiscountPct": 0.0}, {"YearMonth": "2019-10", "DiscountCode": "JVH19", "uses": 45, "revenue": 1908.820003, "avgAOV": 42.41822228888889, "avgDiscountPct": 0.0}, {"YearMonth": "2019-10", "DiscountCode": "JVSPC19", "uses": 1, "revenue": 92.299996, "avgAOV": 92.299996, "avgDiscountPct": 0.0}, {"YearMonth": "2019-11", "DiscountCode": "GAJ3", "uses": 8, "revenue": 168.69, "avgAOV": 21.08625, "avgDiscountPct": 0.0}, {"YearMonth": "2019-11", "DiscountCode": "JV32JA", "uses": 10, "revenue": 351.850006, "avgAOV": 35.1850006, "avgDiscountPct": 0.0}, {"YearMonth": "2019-11", "DiscountCode": "JVCA19", "uses": 1, "revenue": 41.9, "avgAOV": 41.9, "avgDiscountPct": 0.0}, {"YearMonth": "2019-11", "DiscountCode": "JVCF18", "uses": 1, "revenue": 123.250003, "avgAOV": 123.250003, "avgDiscountPct": 0.0}, {"YearMonth": "2019-11", "DiscountCode": "JVEAA9", "uses": 1, "revenue": 19.949999, "avgAOV": 19.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2019-11", "DiscountCode": "JVH19", "uses": 7, "revenue": 203.71999699999998, "avgAOV": 29.10285671428571, "avgDiscountPct": 0.0}, {"YearMonth": "2019-11", "DiscountCode": "JVK19B", "uses": 1443, "revenue": 44985.479582, "avgAOV": 31.174968525294524, "avgDiscountPct": 15.0}, {"YearMonth": "2019-11", "DiscountCode": "JVSPC19", "uses": 2, "revenue": 75.79999799999999, "avgAOV": 37.899998999999994, "avgDiscountPct": 0.0}, {"YearMonth": "2019-12", "DiscountCode": "GAJ3", "uses": 11, "revenue": 297.28999799999997, "avgAOV": 27.02636345454545, "avgDiscountPct": 0.0}, {"YearMonth": "2019-12", "DiscountCode": "JV32JA", "uses": 2, "revenue": 137.04000100000002, "avgAOV": 68.52000050000001, "avgDiscountPct": 0.0}, {"YearMonth": "2019-12", "DiscountCode": "JVAA342", "uses": 590, "revenue": 22483.379736, "avgAOV": 38.10742328135593, "avgDiscountPct": 0.0}, {"YearMonth": "2019-12", "DiscountCode": "JVCA19", "uses": 2, "revenue": 119.750001, "avgAOV": 59.8750005, "avgDiscountPct": 0.0}, {"YearMonth": "2019-12", "DiscountCode": "JVEAA9", "uses": 1, "revenue": 50.850001, "avgAOV": 50.850001, "avgDiscountPct": 0.0}, {"YearMonth": "2019-12", "DiscountCode": "JVH19", "uses": 3, "revenue": 54.519999999999996, "avgAOV": 18.173333333333332, "avgDiscountPct": 0.0}, {"YearMonth": "2019-12", "DiscountCode": "JVK19B", "uses": 1195, "revenue": 36592.649697, "avgAOV": 30.62146418158996, "avgDiscountPct": 13.669456066945607}, {"YearMonth": "2020-01", "DiscountCode": "GAJ3", "uses": 2, "revenue": 22.9, "avgAOV": 11.45, "avgDiscountPct": 0.0}, {"YearMonth": "2020-01", "DiscountCode": "JV32JA", "uses": 1, "revenue": 14.45, "avgAOV": 14.45, "avgDiscountPct": 0.0}, {"YearMonth": "2020-01", "DiscountCode": "JVAA342", "uses": 2438, "revenue": 91491.659289, "avgAOV": 37.52734179204266, "avgDiscountPct": 0.0}, {"YearMonth": "2020-01", "DiscountCode": "JVABA", "uses": 1966, "revenue": 50564.449519, "avgAOV": 25.719455503051883, "avgDiscountPct": 20.0}, {"YearMonth": "2020-01", "DiscountCode": "JVCA18", "uses": 1, "revenue": 15.9, "avgAOV": 15.9, "avgDiscountPct": 0.0}, {"YearMonth": "2020-01", "DiscountCode": "JVK19B", "uses": 3, "revenue": 61.349998, "avgAOV": 20.449999333333334, "avgDiscountPct": 0.0}, {"YearMonth": "2020-01", "DiscountCode": "JVSPC19", "uses": 1, "revenue": 25.949999, "avgAOV": 25.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-02", "DiscountCode": "GAJ3", "uses": 2, "revenue": 22.9, "avgAOV": 11.45, "avgDiscountPct": 0.0}, {"YearMonth": "2020-02", "DiscountCode": "JVAA342", "uses": 15, "revenue": 619.799994, "avgAOV": 41.319999599999996, "avgDiscountPct": 0.0}, {"YearMonth": "2020-02", "DiscountCode": "JVABA", "uses": 39, "revenue": 1283.2999949999999, "avgAOV": 32.90512807692307, "avgDiscountPct": 0.0}, {"YearMonth": "2020-02", "DiscountCode": "JVCA19", "uses": 1, "revenue": 12.95, "avgAOV": 12.95, "avgDiscountPct": 0.0}, {"YearMonth": "2020-02", "DiscountCode": "JVCJ18", "uses": 1, "revenue": 25.9, "avgAOV": 25.9, "avgDiscountPct": 0.0}, {"YearMonth": "2020-02", "DiscountCode": "JVEAA9", "uses": 1, "revenue": 155.499998, "avgAOV": 155.499998, "avgDiscountPct": 0.0}, {"YearMonth": "2020-02", "DiscountCode": "JVK19B", "uses": 3, "revenue": 63.790001, "avgAOV": 21.263333666666664, "avgDiscountPct": 0.0}, {"YearMonth": "2020-03", "DiscountCode": "GAJ3", "uses": 8, "revenue": 337.17999599999996, "avgAOV": 42.147499499999995, "avgDiscountPct": 0.0}, {"YearMonth": "2020-03", "DiscountCode": "JV32JA", "uses": 1, "revenue": 29.9, "avgAOV": 29.9, "avgDiscountPct": 0.0}, {"YearMonth": "2020-03", "DiscountCode": "JVAA342", "uses": 28, "revenue": 856.519999, "avgAOV": 30.589999964285713, "avgDiscountPct": 0.0}, {"YearMonth": "2020-03", "DiscountCode": "JVABA", "uses": 17, "revenue": 672.159986, "avgAOV": 39.53882270588235, "avgDiscountPct": 0.0}, {"YearMonth": "2020-03", "DiscountCode": "JVCJ18", "uses": 1, "revenue": 58.6, "avgAOV": 58.6, "avgDiscountPct": 0.0}, {"YearMonth": "2020-03", "DiscountCode": "JVEAA9", "uses": 3, "revenue": 94.64999999999999, "avgAOV": 31.549999999999997, "avgDiscountPct": 0.0}, {"YearMonth": "2020-03", "DiscountCode": "JVH19", "uses": 2, "revenue": 91.150001, "avgAOV": 45.5750005, "avgDiscountPct": 0.0}, {"YearMonth": "2020-03", "DiscountCode": "JVK19B", "uses": 7, "revenue": 276.090001, "avgAOV": 39.44142871428571, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "GAJ3", "uses": 6, "revenue": 223.490001, "avgAOV": 37.2483335, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVAA342", "uses": 25, "revenue": 733.3200019999999, "avgAOV": 29.33280008, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVABA", "uses": 5, "revenue": 216.099998, "avgAOV": 43.2199996, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVCA19", "uses": 1, "revenue": 46.350001, "avgAOV": 46.350001, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVCB18", "uses": 1, "revenue": 17.85, "avgAOV": 17.85, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVCF18", "uses": 1, "revenue": 36.349999, "avgAOV": 36.349999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVEAA9", "uses": 1, "revenue": 11.9, "avgAOV": 11.9, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVH19", "uses": 2, "revenue": 20.35, "avgAOV": 10.175, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVK19B", "uses": 3, "revenue": 87.699998, "avgAOV": 29.233332666666666, "avgDiscountPct": 0.0}, {"YearMonth": "2020-04", "DiscountCode": "JVSPC19", "uses": 2, "revenue": 51.849998, "avgAOV": 25.924999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-05", "DiscountCode": "GAJ3", "uses": 10, "revenue": 298.120002, "avgAOV": 29.8120002, "avgDiscountPct": 0.0}, {"YearMonth": "2020-05", "DiscountCode": "JV32JA", "uses": 1, "revenue": 25.949999, "avgAOV": 25.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-05", "DiscountCode": "JV342T", "uses": 1, "revenue": 40.399998, "avgAOV": 40.399998, "avgDiscountPct": 0.0}, {"YearMonth": "2020-05", "DiscountCode": "JVAA342", "uses": 42, "revenue": 1092.909995, "avgAOV": 26.02166654761905, "avgDiscountPct": 0.0}, {"YearMonth": "2020-05", "DiscountCode": "JVABA", "uses": 8, "revenue": 257.680002, "avgAOV": 32.21000025, "avgDiscountPct": 0.0}, {"YearMonth": "2020-05", "DiscountCode": "JVEAA9", "uses": 2, "revenue": 23.939999999999998, "avgAOV": 11.969999999999999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-05", "DiscountCode": "JVK19B", "uses": 1, "revenue": 53.899998, "avgAOV": 53.899998, "avgDiscountPct": 0.0}, {"YearMonth": "2020-05", "DiscountCode": "JVSPC19", "uses": 2, "revenue": 93.86999899999999, "avgAOV": 46.934999499999996, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "GAJ3", "uses": 15, "revenue": 361.649994, "avgAOV": 24.1099996, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "JV32JA", "uses": 1, "revenue": 67.49, "avgAOV": 67.49, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "JV342T", "uses": 2, "revenue": 135.789996, "avgAOV": 67.894998, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "JVAA342", "uses": 7, "revenue": 357.239997, "avgAOV": 51.03428528571429, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "JVABA", "uses": 2, "revenue": 82.049999, "avgAOV": 41.0249995, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "JVEAA9", "uses": 2, "revenue": 59.339999, "avgAOV": 29.6699995, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "JVH19", "uses": 2, "revenue": 58.899998, "avgAOV": 29.449999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "JVK19B", "uses": 1, "revenue": 8.95, "avgAOV": 8.95, "avgDiscountPct": 0.0}, {"YearMonth": "2020-06", "DiscountCode": "JVSPC19", "uses": 1, "revenue": 28.98, "avgAOV": 28.98, "avgDiscountPct": 0.0}, {"YearMonth": "2020-07", "DiscountCode": "GAJ3", "uses": 38, "revenue": 841.6099899999999, "avgAOV": 22.14763131578947, "avgDiscountPct": 0.0}, {"YearMonth": "2020-07", "DiscountCode": "JVAA342", "uses": 13, "revenue": 480.41999699999997, "avgAOV": 36.955384384615385, "avgDiscountPct": 0.0}, {"YearMonth": "2020-07", "DiscountCode": "JVABA", "uses": 2, "revenue": 26.349999999999998, "avgAOV": 13.174999999999999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-07", "DiscountCode": "JVB18", "uses": 1, "revenue": 53.200002, "avgAOV": 53.200002, "avgDiscountPct": 0.0}, {"YearMonth": "2020-07", "DiscountCode": "JVEAA9", "uses": 5, "revenue": 104.720002, "avgAOV": 20.9440004, "avgDiscountPct": 0.0}, {"YearMonth": "2020-07", "DiscountCode": "JVH19", "uses": 1, "revenue": 34.349999, "avgAOV": 34.349999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-07", "DiscountCode": "JVK19B", "uses": 1, "revenue": 19.49, "avgAOV": 19.49, "avgDiscountPct": 0.0}, {"YearMonth": "2020-08", "DiscountCode": "GAJ3", "uses": 30, "revenue": 650.719998, "avgAOV": 21.6906666, "avgDiscountPct": 0.0}, {"YearMonth": "2020-08", "DiscountCode": "JVAA342", "uses": 14, "revenue": 601.379992, "avgAOV": 42.955713714285714, "avgDiscountPct": 0.0}, {"YearMonth": "2020-08", "DiscountCode": "JVB18", "uses": 1, "revenue": 13.45, "avgAOV": 13.45, "avgDiscountPct": 0.0}, {"YearMonth": "2020-08", "DiscountCode": "JVEAA9", "uses": 7, "revenue": 157.99999699999998, "avgAOV": 22.57142814285714, "avgDiscountPct": 0.0}, {"YearMonth": "2020-08", "DiscountCode": "JVH120", "uses": 893, "revenue": 34322.169756, "avgAOV": 38.43468057782755, "avgDiscountPct": 8.924972004479283}, {"YearMonth": "2020-08", "DiscountCode": "JVSPC19", "uses": 1, "revenue": 49.399998, "avgAOV": 49.399998, "avgDiscountPct": 0.0}, {"YearMonth": "2020-09", "DiscountCode": "GAJ3", "uses": 39, "revenue": 742.179996, "avgAOV": 19.030256307692305, "avgDiscountPct": 0.0}, {"YearMonth": "2020-09", "DiscountCode": "JVAA342", "uses": 6, "revenue": 231.99000199999998, "avgAOV": 38.66500033333333, "avgDiscountPct": 0.0}, {"YearMonth": "2020-09", "DiscountCode": "JVABA", "uses": 1, "revenue": 23.940001, "avgAOV": 23.940001, "avgDiscountPct": 0.0}, {"YearMonth": "2020-09", "DiscountCode": "JVEAA9", "uses": 2, "revenue": 23.439999999999998, "avgAOV": 11.719999999999999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-09", "DiscountCode": "JVH120", "uses": 660, "revenue": 24425.629839, "avgAOV": 37.00853005909091, "avgDiscountPct": 7.878787878787879}, {"YearMonth": "2020-09", "DiscountCode": "JVSPC19", "uses": 1, "revenue": 102.089996, "avgAOV": 102.089996, "avgDiscountPct": 0.0}, {"YearMonth": "2020-10", "DiscountCode": "GAJ3", "uses": 34, "revenue": 881.669997, "avgAOV": 25.9314705, "avgDiscountPct": 0.0}, {"YearMonth": "2020-10", "DiscountCode": "JVAA342", "uses": 1, "revenue": 50.360001, "avgAOV": 50.360001, "avgDiscountPct": 0.0}, {"YearMonth": "2020-10", "DiscountCode": "JVABA", "uses": 2, "revenue": 61.340001, "avgAOV": 30.6700005, "avgDiscountPct": 0.0}, {"YearMonth": "2020-10", "DiscountCode": "JVB18", "uses": 1, "revenue": 12.45, "avgAOV": 12.45, "avgDiscountPct": 0.0}, {"YearMonth": "2020-10", "DiscountCode": "JVEAA9", "uses": 2, "revenue": 30.690001, "avgAOV": 15.3450005, "avgDiscountPct": 0.0}, {"YearMonth": "2020-10", "DiscountCode": "JVH120", "uses": 13, "revenue": 521.0600009999999, "avgAOV": 40.08153853846154, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "GAJ3", "uses": 26, "revenue": 702.970003, "avgAOV": 27.037307807692308, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "JVAA342", "uses": 4, "revenue": 172.099999, "avgAOV": 43.02499975, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "JVABA", "uses": 3, "revenue": 46.93, "avgAOV": 15.643333333333333, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "JVCB18", "uses": 1, "revenue": 35.949999, "avgAOV": 35.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "JVCF18", "uses": 1, "revenue": 28.449999, "avgAOV": 28.449999, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "JVEAA9", "uses": 1, "revenue": 13.95, "avgAOV": 13.95, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "JVH120", "uses": 5, "revenue": 276.149996, "avgAOV": 55.229999199999995, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "JVK19B", "uses": 1, "revenue": 19.85, "avgAOV": 19.85, "avgDiscountPct": 0.0}, {"YearMonth": "2020-11", "DiscountCode": "JVMM20", "uses": 1038, "revenue": 35704.059886, "avgAOV": 34.39697484200386, "avgDiscountPct": 6.1175337186897885}, {"YearMonth": "2020-11", "DiscountCode": "JVSPC19", "uses": 1, "revenue": 32.89, "avgAOV": 32.89, "avgDiscountPct": 0.0}, {"YearMonth": "2020-12", "DiscountCode": "GAJ3", "uses": 1, "revenue": 5.95, "avgAOV": 5.95, "avgDiscountPct": 0.0}, {"YearMonth": "2020-12", "DiscountCode": "JVAA342", "uses": 3, "revenue": 49.849999, "avgAOV": 16.61666633333333, "avgDiscountPct": 0.0}, {"YearMonth": "2020-12", "DiscountCode": "JVABA", "uses": 1, "revenue": 12.95, "avgAOV": 12.95, "avgDiscountPct": 0.0}, {"YearMonth": "2020-12", "DiscountCode": "JVMM20", "uses": 707, "revenue": 25817.249853, "avgAOV": 36.516619311173976, "avgDiscountPct": 6.548797736916549}, {"YearMonth": "2021-01", "DiscountCode": "GAJ3", "uses": 1, "revenue": 17.49, "avgAOV": 17.49, "avgDiscountPct": 0.0}, {"YearMonth": "2021-01", "DiscountCode": "JVAA342", "uses": 1, "revenue": 8.95, "avgAOV": 8.95, "avgDiscountPct": 0.0}, {"YearMonth": "2021-01", "DiscountCode": "JVCB18", "uses": 1, "revenue": 41.899998, "avgAOV": 41.899998, "avgDiscountPct": 0.0}, {"YearMonth": "2021-01", "DiscountCode": "JVH19", "uses": 1, "revenue": 33.4, "avgAOV": 33.4, "avgDiscountPct": 0.0}, {"YearMonth": "2021-01", "DiscountCode": "JVMM20", "uses": 9, "revenue": 230.510002, "avgAOV": 25.61222244444444, "avgDiscountPct": 0.0}, {"YearMonth": "2021-01", "DiscountCode": "VITSA2021", "uses": 2314, "revenue": 73327.429469, "avgAOV": 31.688603919187553, "avgDiscountPct": 8.133102852203976}, {"YearMonth": "2021-02", "DiscountCode": "GAJ3", "uses": 1, "revenue": 35.8, "avgAOV": 35.8, "avgDiscountPct": 0.0}, {"YearMonth": "2021-02", "DiscountCode": "JVAA342", "uses": 1, "revenue": 27.9, "avgAOV": 27.9, "avgDiscountPct": 0.0}, {"YearMonth": "2021-02", "DiscountCode": "JVABA", "uses": 1, "revenue": 47.850001, "avgAOV": 47.850001, "avgDiscountPct": 0.0}, {"YearMonth": "2021-02", "DiscountCode": "JVCC21", "uses": 239, "revenue": 8012.86995, "avgAOV": 33.52665251046025, "avgDiscountPct": 9.497907949790795}, {"YearMonth": "2021-02", "DiscountCode": "JVEAA9", "uses": 1, "revenue": 31.949999, "avgAOV": 31.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2021-02", "DiscountCode": "JVH120", "uses": 2, "revenue": 52.929999, "avgAOV": 26.4649995, "avgDiscountPct": 0.0}, {"YearMonth": "2021-02", "DiscountCode": "JVMM20", "uses": 37, "revenue": 1131.6599899999999, "avgAOV": 30.585405135135133, "avgDiscountPct": 0.0}, {"YearMonth": "2021-02", "DiscountCode": "VITSA2021", "uses": 6, "revenue": 167.690001, "avgAOV": 27.9483335, "avgDiscountPct": 0.0}, {"YearMonth": "2021-03", "DiscountCode": "JVAA342", "uses": 2, "revenue": 120.54, "avgAOV": 60.27, "avgDiscountPct": 0.0}, {"YearMonth": "2021-03", "DiscountCode": "JVCB18", "uses": 1, "revenue": 15.95, "avgAOV": 15.95, "avgDiscountPct": 0.0}, {"YearMonth": "2021-03", "DiscountCode": "JVCC21", "uses": 1908, "revenue": 62034.239518, "avgAOV": 32.51270414989518, "avgDiscountPct": 8.474842767295597}, {"YearMonth": "2021-03", "DiscountCode": "JVEAA9", "uses": 1, "revenue": 64.739999, "avgAOV": 64.739999, "avgDiscountPct": 0.0}, {"YearMonth": "2021-03", "DiscountCode": "JVMM20", "uses": 22, "revenue": 718.679995, "avgAOV": 32.667272499999996, "avgDiscountPct": 0.0}, {"YearMonth": "2021-03", "DiscountCode": "JVSPC19", "uses": 2, "revenue": 53.299999, "avgAOV": 26.6499995, "avgDiscountPct": 0.0}, {"YearMonth": "2021-03", "DiscountCode": "VITSA2021", "uses": 4, "revenue": 113.439997, "avgAOV": 28.35999925, "avgDiscountPct": 0.0}, {"YearMonth": "2021-04", "DiscountCode": "GAJ3", "uses": 3, "revenue": 47.840001, "avgAOV": 15.946667, "avgDiscountPct": 0.0}, {"YearMonth": "2021-04", "DiscountCode": "JVABA", "uses": 1, "revenue": 8.95, "avgAOV": 8.95, "avgDiscountPct": 0.0}, {"YearMonth": "2021-04", "DiscountCode": "JVCB18", "uses": 1, "revenue": 21.9, "avgAOV": 21.9, "avgDiscountPct": 0.0}, {"YearMonth": "2021-04", "DiscountCode": "JVCC21", "uses": 56, "revenue": 1796.889984, "avgAOV": 32.08732114285714, "avgDiscountPct": 0.0}, {"YearMonth": "2021-04", "DiscountCode": "JVH120", "uses": 4, "revenue": 208.509998, "avgAOV": 52.1274995, "avgDiscountPct": 0.0}, {"YearMonth": "2021-04", "DiscountCode": "JVMM20", "uses": 44, "revenue": 1229.579992, "avgAOV": 27.944999818181817, "avgDiscountPct": 0.0}, {"YearMonth": "2021-04", "DiscountCode": "JVSPC19", "uses": 1, "revenue": 32.449999, "avgAOV": 32.449999, "avgDiscountPct": 0.0}, {"YearMonth": "2021-04", "DiscountCode": "VITSA2021", "uses": 4, "revenue": 199.999995, "avgAOV": 49.99999875, "avgDiscountPct": 0.0}, {"YearMonth": "2021-05", "DiscountCode": "GAJ3", "uses": 1, "revenue": 59.849999, "avgAOV": 59.849999, "avgDiscountPct": 0.0}, {"YearMonth": "2021-05", "DiscountCode": "JVABA", "uses": 1, "revenue": 32.71, "avgAOV": 32.71, "avgDiscountPct": 0.0}, {"YearMonth": "2021-05", "DiscountCode": "JVCC21", "uses": 12, "revenue": 262.59999899999997, "avgAOV": 21.883333249999996, "avgDiscountPct": 0.0}, {"YearMonth": "2021-05", "DiscountCode": "JVH19", "uses": 1, "revenue": 12.95, "avgAOV": 12.95, "avgDiscountPct": 0.0}, {"YearMonth": "2021-05", "DiscountCode": "JVMM20", "uses": 30, "revenue": 964.590001, "avgAOV": 32.153000033333335, "avgDiscountPct": 0.0}, {"YearMonth": "2021-05", "DiscountCode": "VITSA2021", "uses": 3, "revenue": 122.769996, "avgAOV": 40.923332, "avgDiscountPct": 0.0}, {"YearMonth": "2021-06", "DiscountCode": "JVAA342", "uses": 1, "revenue": 33.849999, "avgAOV": 33.849999, "avgDiscountPct": 0.0}, {"YearMonth": "2021-06", "DiscountCode": "JVABA", "uses": 2, "revenue": 62.849998, "avgAOV": 31.424999, "avgDiscountPct": 0.0}, {"YearMonth": "2021-06", "DiscountCode": "JVCC21", "uses": 7, "revenue": 131.45999899999998, "avgAOV": 18.779999857142855, "avgDiscountPct": 0.0}, {"YearMonth": "2021-06", "DiscountCode": "JVESA21", "uses": 2007, "revenue": 53080.479417999995, "avgAOV": 26.44767285401096, "avgDiscountPct": 0.0}, {"YearMonth": "2021-06", "DiscountCode": "JVH120", "uses": 1, "revenue": 35.790001, "avgAOV": 35.790001, "avgDiscountPct": 0.0}, {"YearMonth": "2021-06", "DiscountCode": "JVK19B", "uses": 1, "revenue": 22.4, "avgAOV": 22.4, "avgDiscountPct": 0.0}, {"YearMonth": "2021-06", "DiscountCode": "JVMM20", "uses": 15, "revenue": 467.509999, "avgAOV": 31.167333266666667, "avgDiscountPct": 0.0}, {"YearMonth": "2021-06", "DiscountCode": "VITSA2021", "uses": 4, "revenue": 114.190001, "avgAOV": 28.54750025, "avgDiscountPct": 0.0}, {"YearMonth": "2021-07", "DiscountCode": "JVAA342", "uses": 2, "revenue": 50.410000999999994, "avgAOV": 25.205000499999997, "avgDiscountPct": 0.0}, {"YearMonth": "2021-07", "DiscountCode": "JVCC21", "uses": 4, "revenue": 110.67999599999999, "avgAOV": 27.669998999999997, "avgDiscountPct": 0.0}, {"YearMonth": "2021-07", "DiscountCode": "JVESA21", "uses": 148, "revenue": 4488.339969, "avgAOV": 30.32662141216216, "avgDiscountPct": 0.0}, {"YearMonth": "2021-07", "DiscountCode": "JVH120", "uses": 1, "revenue": 38.570001, "avgAOV": 38.570001, "avgDiscountPct": 0.0}, {"YearMonth": "2021-07", "DiscountCode": "JVMM20", "uses": 33, "revenue": 1117.190002, "avgAOV": 33.854242484848484, "avgDiscountPct": 0.0}, {"YearMonth": "2021-08", "DiscountCode": "JVABA", "uses": 1, "revenue": 5.95, "avgAOV": 5.95, "avgDiscountPct": 0.0}, {"YearMonth": "2021-08", "DiscountCode": "JVCC21", "uses": 2, "revenue": 86.799999, "avgAOV": 43.3999995, "avgDiscountPct": 0.0}, {"YearMonth": "2021-08", "DiscountCode": "JVESA21", "uses": 83, "revenue": 2590.509987, "avgAOV": 31.21096369879518, "avgDiscountPct": 0.0}, {"YearMonth": "2021-08", "DiscountCode": "JVH120", "uses": 2, "revenue": 27.439999999999998, "avgAOV": 13.719999999999999, "avgDiscountPct": 0.0}, {"YearMonth": "2021-08", "DiscountCode": "JVHA21", "uses": 535, "revenue": 16933.33988, "avgAOV": 31.65110257943925, "avgDiscountPct": 8.878504672897197}, {"YearMonth": "2021-08", "DiscountCode": "JVK19B", "uses": 1, "revenue": 24.4, "avgAOV": 24.4, "avgDiscountPct": 0.0}, {"YearMonth": "2021-08", "DiscountCode": "JVMM20", "uses": 37, "revenue": 1246.719982, "avgAOV": 33.69513464864865, "avgDiscountPct": 0.0}, {"YearMonth": "2021-08", "DiscountCode": "VITSA2021", "uses": 1, "revenue": 22.4, "avgAOV": 22.4, "avgDiscountPct": 0.0}, {"YearMonth": "2021-09", "DiscountCode": "GAJ3", "uses": 1, "revenue": 9.95, "avgAOV": 9.95, "avgDiscountPct": 0.0}, {"YearMonth": "2021-09", "DiscountCode": "JVCC21", "uses": 11, "revenue": 400.119997, "avgAOV": 36.374545181818185, "avgDiscountPct": 0.0}, {"YearMonth": "2021-09", "DiscountCode": "JVCTA21", "uses": 138, "revenue": 3599.2699629999997, "avgAOV": 26.081666398550723, "avgDiscountPct": 0.0}, {"YearMonth": "2021-09", "DiscountCode": "JVESA21", "uses": 7, "revenue": 169.010001, "avgAOV": 24.144285857142854, "avgDiscountPct": 0.0}, {"YearMonth": "2021-09", "DiscountCode": "JVH120", "uses": 1, "revenue": 21.9, "avgAOV": 21.9, "avgDiscountPct": 0.0}, {"YearMonth": "2021-09", "DiscountCode": "JVHA21", "uses": 1586, "revenue": 51371.099642, "avgAOV": 32.390352863808324, "avgDiscountPct": 7.925598991172762}, {"YearMonth": "2021-09", "DiscountCode": "JVMM20", "uses": 12, "revenue": 300.729992, "avgAOV": 25.060832666666666, "avgDiscountPct": 0.0}, {"YearMonth": "2021-10", "DiscountCode": "GAJ3", "uses": 1, "revenue": 51.860001, "avgAOV": 51.860001, "avgDiscountPct": 0.0}, {"YearMonth": "2021-10", "DiscountCode": "JVCTA21", "uses": 1591, "revenue": 41700.719584, "avgAOV": 26.210383145191702, "avgDiscountPct": 0.0}, {"YearMonth": "2021-10", "DiscountCode": "JVESA21", "uses": 2, "revenue": 59.330000999999996, "avgAOV": 29.665000499999998, "avgDiscountPct": 0.0}, {"YearMonth": "2021-10", "DiscountCode": "JVH120", "uses": 1, "revenue": 25.949999, "avgAOV": 25.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2021-10", "DiscountCode": "JVHA21", "uses": 68, "revenue": 1698.449991, "avgAOV": 24.97720575, "avgDiscountPct": 0.0}, {"YearMonth": "2021-10", "DiscountCode": "JVMM20", "uses": 23, "revenue": 584.619996, "avgAOV": 25.418260695652176, "avgDiscountPct": 0.0}, {"YearMonth": "2021-11", "DiscountCode": "GAJ3", "uses": 1, "revenue": 15.9, "avgAOV": 15.9, "avgDiscountPct": 0.0}, {"YearMonth": "2021-11", "DiscountCode": "JVCC21", "uses": 5, "revenue": 102.88999899999999, "avgAOV": 20.577999799999997, "avgDiscountPct": 0.0}, {"YearMonth": "2021-11", "DiscountCode": "JVCTA21", "uses": 149, "revenue": 4477.729978, "avgAOV": 30.051879046979867, "avgDiscountPct": 0.0}, {"YearMonth": "2021-11", "DiscountCode": "JVESA21", "uses": 3, "revenue": 64.77, "avgAOV": 21.59, "avgDiscountPct": 0.0}, {"YearMonth": "2021-11", "DiscountCode": "JVH19", "uses": 1, "revenue": 28.29, "avgAOV": 28.29, "avgDiscountPct": 0.0}, {"YearMonth": "2021-11", "DiscountCode": "JVHA21", "uses": 23, "revenue": 698.6800010000001, "avgAOV": 30.37739134782609, "avgDiscountPct": 0.0}, {"YearMonth": "2021-11", "DiscountCode": "JVK19B", "uses": 2, "revenue": 76.239999, "avgAOV": 38.1199995, "avgDiscountPct": 0.0}, {"YearMonth": "2021-11", "DiscountCode": "JVMM20", "uses": 27, "revenue": 1054.429997, "avgAOV": 39.05296285185185, "avgDiscountPct": 0.0}, {"YearMonth": "2021-12", "DiscountCode": "JVCTA21", "uses": 104, "revenue": 3134.949986, "avgAOV": 30.143749865384617, "avgDiscountPct": 0.0}, {"YearMonth": "2021-12", "DiscountCode": "JVH120", "uses": 2, "revenue": 40.88, "avgAOV": 20.44, "avgDiscountPct": 0.0}, {"YearMonth": "2021-12", "DiscountCode": "JVHA21", "uses": 16, "revenue": 491.020004, "avgAOV": 30.68875025, "avgDiscountPct": 0.0}, {"YearMonth": "2021-12", "DiscountCode": "JVK19B", "uses": 1, "revenue": 10.95, "avgAOV": 10.95, "avgDiscountPct": 0.0}, {"YearMonth": "2021-12", "DiscountCode": "JVMM20", "uses": 21, "revenue": 704.360002, "avgAOV": 33.540952476190476, "avgDiscountPct": 0.0}, {"YearMonth": "2022-01", "DiscountCode": "JVCTA21", "uses": 150, "revenue": 4038.119949, "avgAOV": 26.92079966, "avgDiscountPct": 0.0}, {"YearMonth": "2022-01", "DiscountCode": "JVESA21", "uses": 1, "revenue": 23.12, "avgAOV": 23.12, "avgDiscountPct": 0.0}, {"YearMonth": "2022-01", "DiscountCode": "JVHA21", "uses": 18, "revenue": 807.930004, "avgAOV": 44.885000222222224, "avgDiscountPct": 0.0}, {"YearMonth": "2022-01", "DiscountCode": "JVMM20", "uses": 35, "revenue": 735.639995, "avgAOV": 21.01828557142857, "avgDiscountPct": 0.0}, {"YearMonth": "2022-01", "DiscountCode": "VITSA2021", "uses": 2, "revenue": 31.83, "avgAOV": 15.915, "avgDiscountPct": 0.0}, {"YearMonth": "2022-02", "DiscountCode": "JVCC21", "uses": 1, "revenue": 41.959999, "avgAOV": 41.959999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-02", "DiscountCode": "JVCTA21", "uses": 73, "revenue": 1660.9399879999999, "avgAOV": 22.752602575342465, "avgDiscountPct": 0.0}, {"YearMonth": "2022-02", "DiscountCode": "JVESA21", "uses": 3, "revenue": 84.740001, "avgAOV": 28.246667000000002, "avgDiscountPct": 0.0}, {"YearMonth": "2022-02", "DiscountCode": "JVHA21", "uses": 14, "revenue": 396.590003, "avgAOV": 28.327857357142857, "avgDiscountPct": 0.0}, {"YearMonth": "2022-02", "DiscountCode": "JVMM20", "uses": 33, "revenue": 939.4699889999999, "avgAOV": 28.468787545454543, "avgDiscountPct": 0.0}, {"YearMonth": "2022-03", "DiscountCode": "JVCC21", "uses": 1, "revenue": 16.45, "avgAOV": 16.45, "avgDiscountPct": 0.0}, {"YearMonth": "2022-03", "DiscountCode": "JVCF22", "uses": 1677, "revenue": 59779.719499, "avgAOV": 35.64682140667859, "avgDiscountPct": 13.202146690518784}, {"YearMonth": "2022-03", "DiscountCode": "JVCTA21", "uses": 48, "revenue": 1123.5399949999999, "avgAOV": 23.407083229166663, "avgDiscountPct": 0.0}, {"YearMonth": "2022-03", "DiscountCode": "JVHA21", "uses": 6, "revenue": 118.999997, "avgAOV": 19.833332833333333, "avgDiscountPct": 0.0}, {"YearMonth": "2022-03", "DiscountCode": "JVMM20", "uses": 20, "revenue": 411.84999799999997, "avgAOV": 20.5924999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-04", "DiscountCode": "JV4D322", "uses": 1234, "revenue": 31495.729923, "avgAOV": 25.52328194732577, "avgDiscountPct": 0.0}, {"YearMonth": "2022-04", "DiscountCode": "JVCF22", "uses": 36, "revenue": 1211.979986, "avgAOV": 33.66611072222222, "avgDiscountPct": 0.0}, {"YearMonth": "2022-04", "DiscountCode": "JVCTA21", "uses": 7, "revenue": 123.08999899999999, "avgAOV": 17.58428557142857, "avgDiscountPct": 0.0}, {"YearMonth": "2022-04", "DiscountCode": "JVESA21", "uses": 1, "revenue": 19.949999, "avgAOV": 19.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-04", "DiscountCode": "JVHA21", "uses": 1, "revenue": 12.45, "avgAOV": 12.45, "avgDiscountPct": 0.0}, {"YearMonth": "2022-04", "DiscountCode": "JVMM20", "uses": 9, "revenue": 190.11999699999998, "avgAOV": 21.12444411111111, "avgDiscountPct": 0.0}, {"YearMonth": "2022-05", "DiscountCode": "JV4D322", "uses": 529, "revenue": 14177.409932999999, "avgAOV": 26.800396848771264, "avgDiscountPct": 0.0}, {"YearMonth": "2022-05", "DiscountCode": "JVCF22", "uses": 31, "revenue": 1106.449993, "avgAOV": 35.69193525806451, "avgDiscountPct": 0.0}, {"YearMonth": "2022-05", "DiscountCode": "JVCTA21", "uses": 9, "revenue": 178.870002, "avgAOV": 19.874444666666665, "avgDiscountPct": 0.0}, {"YearMonth": "2022-05", "DiscountCode": "JVH120", "uses": 1, "revenue": 28.449999, "avgAOV": 28.449999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-05", "DiscountCode": "JVHA21", "uses": 1, "revenue": 14.4, "avgAOV": 14.4, "avgDiscountPct": 0.0}, {"YearMonth": "2022-05", "DiscountCode": "JVMM20", "uses": 5, "revenue": 147.689998, "avgAOV": 29.5379996, "avgDiscountPct": 0.0}, {"YearMonth": "2022-06", "DiscountCode": "JV4D322", "uses": 3, "revenue": 102.859999, "avgAOV": 34.286666333333336, "avgDiscountPct": 0.0}, {"YearMonth": "2022-06", "DiscountCode": "JVCA18", "uses": 1, "revenue": 15.95, "avgAOV": 15.95, "avgDiscountPct": 0.0}, {"YearMonth": "2022-06", "DiscountCode": "JVCF22", "uses": 10, "revenue": 229.729998, "avgAOV": 22.9729998, "avgDiscountPct": 0.0}, {"YearMonth": "2022-06", "DiscountCode": "JVCF22A", "uses": 940, "revenue": 24228.099855, "avgAOV": 25.77457431382979, "avgDiscountPct": 0.0}, {"YearMonth": "2022-06", "DiscountCode": "JVHA21", "uses": 1, "revenue": 6.95, "avgAOV": 6.95, "avgDiscountPct": 0.0}, {"YearMonth": "2022-06", "DiscountCode": "JVMM20", "uses": 2, "revenue": 34.849999999999994, "avgAOV": 17.424999999999997, "avgDiscountPct": 0.0}, {"YearMonth": "2022-07", "DiscountCode": "JV4D322", "uses": 3, "revenue": 115.470001, "avgAOV": 38.490000333333334, "avgDiscountPct": 0.0}, {"YearMonth": "2022-07", "DiscountCode": "JVCF22", "uses": 8, "revenue": 135.74, "avgAOV": 16.9675, "avgDiscountPct": 0.0}, {"YearMonth": "2022-07", "DiscountCode": "JVCF22A", "uses": 936, "revenue": 25062.539875, "avgAOV": 26.776217815170938, "avgDiscountPct": 0.0}, {"YearMonth": "2022-07", "DiscountCode": "JVCTA21", "uses": 5, "revenue": 103.55000100000001, "avgAOV": 20.710000200000003, "avgDiscountPct": 0.0}, {"YearMonth": "2022-07", "DiscountCode": "JVH120", "uses": 1, "revenue": 11.71, "avgAOV": 11.71, "avgDiscountPct": 0.0}, {"YearMonth": "2022-07", "DiscountCode": "JVHA21", "uses": 1, "revenue": 22.89, "avgAOV": 22.89, "avgDiscountPct": 0.0}, {"YearMonth": "2022-07", "DiscountCode": "JVMM20", "uses": 7, "revenue": 221.17000099999998, "avgAOV": 31.595714428571426, "avgDiscountPct": 0.0}, {"YearMonth": "2022-07", "DiscountCode": "VITSA2021", "uses": 1, "revenue": 26.549999, "avgAOV": 26.549999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-08", "DiscountCode": "JVABA", "uses": 1, "revenue": 33.449999, "avgAOV": 33.449999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-08", "DiscountCode": "JVCF22", "uses": 11, "revenue": 416.420001, "avgAOV": 37.85636372727273, "avgDiscountPct": 0.0}, {"YearMonth": "2022-08", "DiscountCode": "JVCF22A", "uses": 79, "revenue": 2248.249991, "avgAOV": 28.458860645569622, "avgDiscountPct": 0.0}, {"YearMonth": "2022-08", "DiscountCode": "JVCTA21", "uses": 1, "revenue": 49.299999, "avgAOV": 49.299999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-08", "DiscountCode": "JVH120", "uses": 2, "revenue": 77.740001, "avgAOV": 38.8700005, "avgDiscountPct": 0.0}, {"YearMonth": "2022-08", "DiscountCode": "JVHA21", "uses": 1, "revenue": 37.9, "avgAOV": 37.9, "avgDiscountPct": 0.0}, {"YearMonth": "2022-08", "DiscountCode": "JVMM20", "uses": 1, "revenue": 28.449999, "avgAOV": 28.449999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-09", "DiscountCode": "JV4D322", "uses": 1, "revenue": 40.9, "avgAOV": 40.9, "avgDiscountPct": 0.0}, {"YearMonth": "2022-09", "DiscountCode": "JVCF22", "uses": 6, "revenue": 197.889998, "avgAOV": 32.98166633333333, "avgDiscountPct": 0.0}, {"YearMonth": "2022-09", "DiscountCode": "JVCF22A", "uses": 21, "revenue": 456.560001, "avgAOV": 21.74095242857143, "avgDiscountPct": 0.0}, {"YearMonth": "2022-09", "DiscountCode": "JVCTA21", "uses": 2, "revenue": 33.09, "avgAOV": 16.545, "avgDiscountPct": 0.0}, {"YearMonth": "2022-09", "DiscountCode": "JVESA21", "uses": 1, "revenue": 39.919998, "avgAOV": 39.919998, "avgDiscountPct": 0.0}, {"YearMonth": "2022-09", "DiscountCode": "JVFTJA22", "uses": 450, "revenue": 12264.399983, "avgAOV": 27.254222184444444, "avgDiscountPct": 0.0}, {"YearMonth": "2022-10", "DiscountCode": "JVCF22", "uses": 6, "revenue": 151.349998, "avgAOV": 25.224999666666665, "avgDiscountPct": 0.0}, {"YearMonth": "2022-10", "DiscountCode": "JVCF22A", "uses": 28, "revenue": 1223.919978, "avgAOV": 43.711427785714285, "avgDiscountPct": 0.0}, {"YearMonth": "2022-10", "DiscountCode": "JVESA21", "uses": 7, "revenue": 239.919999, "avgAOV": 34.27428557142857, "avgDiscountPct": 0.0}, {"YearMonth": "2022-10", "DiscountCode": "JVFTJA22", "uses": 1074, "revenue": 30688.729818, "avgAOV": 28.57423632960894, "avgDiscountPct": 0.0}, {"YearMonth": "2022-10", "DiscountCode": "JVMM20", "uses": 2, "revenue": 86.340001, "avgAOV": 43.1700005, "avgDiscountPct": 0.0}, {"YearMonth": "2022-11", "DiscountCode": "JVCF22", "uses": 4, "revenue": 86.23999699999999, "avgAOV": 21.559999249999997, "avgDiscountPct": 0.0}, {"YearMonth": "2022-11", "DiscountCode": "JVCF22A", "uses": 21, "revenue": 350.359999, "avgAOV": 16.683809476190476, "avgDiscountPct": 0.0}, {"YearMonth": "2022-11", "DiscountCode": "JVESA21", "uses": 4, "revenue": 79.11, "avgAOV": 19.7775, "avgDiscountPct": 0.0}, {"YearMonth": "2022-11", "DiscountCode": "JVFTJA22", "uses": 70, "revenue": 2104.389994, "avgAOV": 30.062714200000002, "avgDiscountPct": 0.0}, {"YearMonth": "2022-11", "DiscountCode": "JVHA21", "uses": 1, "revenue": 47.299999, "avgAOV": 47.299999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-11", "DiscountCode": "JVMM20", "uses": 2, "revenue": 30.049999999999997, "avgAOV": 15.024999999999999, "avgDiscountPct": 0.0}, {"YearMonth": "2022-12", "DiscountCode": "JVCC21", "uses": 2, "revenue": 57.590001, "avgAOV": 28.7950005, "avgDiscountPct": 0.0}, {"YearMonth": "2022-12", "DiscountCode": "JVCF22A", "uses": 1, "revenue": 18.05, "avgAOV": 18.05, "avgDiscountPct": 0.0}, {"YearMonth": "2022-12", "DiscountCode": "JVFTJA22", "uses": 27, "revenue": 1043.679995, "avgAOV": 38.65481462962963, "avgDiscountPct": 0.0}, {"YearMonth": "2022-12", "DiscountCode": "JVMM20", "uses": 1, "revenue": 11.9, "avgAOV": 11.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-01", "DiscountCode": "JVCC21", "uses": 1, "revenue": 47.390002, "avgAOV": 47.390002, "avgDiscountPct": 0.0}, {"YearMonth": "2023-01", "DiscountCode": "JVCF22", "uses": 2, "revenue": 85.07999799999999, "avgAOV": 42.539998999999995, "avgDiscountPct": 0.0}, {"YearMonth": "2023-01", "DiscountCode": "JVCF22A", "uses": 9, "revenue": 279.85, "avgAOV": 31.09444444444445, "avgDiscountPct": 0.0}, {"YearMonth": "2023-01", "DiscountCode": "JVFTJA22", "uses": 31, "revenue": 965.909992, "avgAOV": 31.158386838709678, "avgDiscountPct": 0.0}, {"YearMonth": "2023-01", "DiscountCode": "JVHA21", "uses": 1, "revenue": 21.52, "avgAOV": 21.52, "avgDiscountPct": 0.0}, {"YearMonth": "2023-01", "DiscountCode": "JVMM20", "uses": 6, "revenue": 119.51, "avgAOV": 19.918333333333333, "avgDiscountPct": 0.0}, {"YearMonth": "2023-02", "DiscountCode": "JV4D322", "uses": 1, "revenue": 30.9, "avgAOV": 30.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-02", "DiscountCode": "JVCC21", "uses": 2, "revenue": 59.25, "avgAOV": 29.625, "avgDiscountPct": 0.0}, {"YearMonth": "2023-02", "DiscountCode": "JVCF22A", "uses": 4, "revenue": 99.94999999999999, "avgAOV": 24.987499999999997, "avgDiscountPct": 0.0}, {"YearMonth": "2023-02", "DiscountCode": "JVFTJA22", "uses": 5, "revenue": 112.999998, "avgAOV": 22.5999996, "avgDiscountPct": 0.0}, {"YearMonth": "2023-03", "DiscountCode": "JVCC21", "uses": 1, "revenue": 24.9, "avgAOV": 24.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-03", "DiscountCode": "JVCF22", "uses": 1, "revenue": 13.44, "avgAOV": 13.44, "avgDiscountPct": 0.0}, {"YearMonth": "2023-03", "DiscountCode": "JVCF22A", "uses": 15, "revenue": 366.629999, "avgAOV": 24.44199993333333, "avgDiscountPct": 0.0}, {"YearMonth": "2023-03", "DiscountCode": "JVESA21", "uses": 1, "revenue": 9.9, "avgAOV": 9.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-03", "DiscountCode": "JVFTJA22", "uses": 3, "revenue": 164.10000300000002, "avgAOV": 54.70000100000001, "avgDiscountPct": 0.0}, {"YearMonth": "2023-03", "DiscountCode": "JVMM20", "uses": 2, "revenue": 102.3, "avgAOV": 51.15, "avgDiscountPct": 0.0}, {"YearMonth": "2023-04", "DiscountCode": "JVCC21", "uses": 1, "revenue": 32.949999, "avgAOV": 32.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2023-04", "DiscountCode": "JVCF22", "uses": 1, "revenue": 13.9, "avgAOV": 13.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-04", "DiscountCode": "JVCF22A", "uses": 6, "revenue": 124.890002, "avgAOV": 20.815000333333334, "avgDiscountPct": 0.0}, {"YearMonth": "2023-04", "DiscountCode": "JVFTJA22", "uses": 12, "revenue": 398.549993, "avgAOV": 33.21249941666667, "avgDiscountPct": 0.0}, {"YearMonth": "2023-04", "DiscountCode": "JVMM20", "uses": 1, "revenue": 31.9, "avgAOV": 31.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-04", "DiscountCode": "VITSA2021", "uses": 1, "revenue": 23.390001, "avgAOV": 23.390001, "avgDiscountPct": 0.0}, {"YearMonth": "2023-05", "DiscountCode": "JVCC21", "uses": 1, "revenue": 19.9, "avgAOV": 19.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-05", "DiscountCode": "JVCF22", "uses": 6, "revenue": 217.340001, "avgAOV": 36.2233335, "avgDiscountPct": 0.0}, {"YearMonth": "2023-05", "DiscountCode": "JVCF22A", "uses": 3, "revenue": 72.19999999999999, "avgAOV": 24.066666666666663, "avgDiscountPct": 0.0}, {"YearMonth": "2023-05", "DiscountCode": "JVCTA21", "uses": 1, "revenue": 32.3, "avgAOV": 32.3, "avgDiscountPct": 0.0}, {"YearMonth": "2023-05", "DiscountCode": "JVES23A", "uses": 807, "revenue": 31813.319874, "avgAOV": 39.42170988104089, "avgDiscountPct": 8.612143742255267}, {"YearMonth": "2023-05", "DiscountCode": "JVESA21", "uses": 1, "revenue": 13.9, "avgAOV": 13.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-05", "DiscountCode": "JVFTJA22", "uses": 19, "revenue": 676.669992, "avgAOV": 35.614210105263155, "avgDiscountPct": 0.0}, {"YearMonth": "2023-05", "DiscountCode": "JVMM20", "uses": 2, "revenue": 78.72, "avgAOV": 39.36, "avgDiscountPct": 0.0}, {"YearMonth": "2023-06", "DiscountCode": "JVCC21", "uses": 2, "revenue": 95.2, "avgAOV": 47.6, "avgDiscountPct": 0.0}, {"YearMonth": "2023-06", "DiscountCode": "JVCF22A", "uses": 1, "revenue": 17.9, "avgAOV": 17.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-06", "DiscountCode": "JVES23A", "uses": 651, "revenue": 26004.739886, "avgAOV": 39.9458369984639, "avgDiscountPct": 7.818740399385561}, {"YearMonth": "2023-06", "DiscountCode": "JVFTJA22", "uses": 11, "revenue": 324.03999699999997, "avgAOV": 29.458181545454543, "avgDiscountPct": 0.0}, {"YearMonth": "2023-06", "DiscountCode": "JVHA21", "uses": 1, "revenue": 59.899998, "avgAOV": 59.899998, "avgDiscountPct": 0.0}, {"YearMonth": "2023-07", "DiscountCode": "JVCTA21", "uses": 4, "revenue": 108.53, "avgAOV": 27.1325, "avgDiscountPct": 0.0}, {"YearMonth": "2023-07", "DiscountCode": "JVES23A", "uses": 79, "revenue": 2689.929976, "avgAOV": 34.04974653164557, "avgDiscountPct": 0.0}, {"YearMonth": "2023-07", "DiscountCode": "JVFTJA22", "uses": 14, "revenue": 554.249995, "avgAOV": 39.589285357142856, "avgDiscountPct": 0.0}, {"YearMonth": "2023-08", "DiscountCode": "JV4D322", "uses": 1, "revenue": 64.339999, "avgAOV": 64.339999, "avgDiscountPct": 0.0}, {"YearMonth": "2023-08", "DiscountCode": "JVCF22A", "uses": 1, "revenue": 29.390001, "avgAOV": 29.390001, "avgDiscountPct": 0.0}, {"YearMonth": "2023-08", "DiscountCode": "JVES23A", "uses": 53, "revenue": 1745.009992, "avgAOV": 32.92471683018868, "avgDiscountPct": 0.0}, {"YearMonth": "2023-08", "DiscountCode": "JVFTJA22", "uses": 15, "revenue": 519.06, "avgAOV": 34.604, "avgDiscountPct": 0.0}, {"YearMonth": "2023-09", "DiscountCode": "JV4D322", "uses": 2, "revenue": 41.9, "avgAOV": 20.95, "avgDiscountPct": 0.0}, {"YearMonth": "2023-09", "DiscountCode": "JVES23A", "uses": 7, "revenue": 235.619997, "avgAOV": 33.65999957142857, "avgDiscountPct": 0.0}, {"YearMonth": "2023-10", "DiscountCode": "JVCC21", "uses": 1, "revenue": 65.160001, "avgAOV": 65.160001, "avgDiscountPct": 0.0}, {"YearMonth": "2023-10", "DiscountCode": "JVCF22", "uses": 1, "revenue": 20.45, "avgAOV": 20.45, "avgDiscountPct": 0.0}, {"YearMonth": "2023-10", "DiscountCode": "JVES23A", "uses": 5, "revenue": 198.009998, "avgAOV": 39.6019996, "avgDiscountPct": 0.0}, {"YearMonth": "2023-10", "DiscountCode": "JVFTJA22", "uses": 1, "revenue": 35.949999, "avgAOV": 35.949999, "avgDiscountPct": 0.0}, {"YearMonth": "2023-11", "DiscountCode": "JVCF22", "uses": 1, "revenue": 38.4, "avgAOV": 38.4, "avgDiscountPct": 0.0}, {"YearMonth": "2023-11", "DiscountCode": "JVFTJA22", "uses": 1, "revenue": 49.900002, "avgAOV": 49.900002, "avgDiscountPct": 0.0}, {"YearMonth": "2023-11", "DiscountCode": "JVK19B", "uses": 1, "revenue": 46.9, "avgAOV": 46.9, "avgDiscountPct": 0.0}, {"YearMonth": "2023-12", "DiscountCode": "JVFTJA22", "uses": 2, "revenue": 73.25000299999999, "avgAOV": 36.625001499999996, "avgDiscountPct": 0.0}, {"YearMonth": "2023-12", "DiscountCode": "JVK19B", "uses": 1, "revenue": 34.669999, "avgAOV": 34.669999, "avgDiscountPct": 0.0}, {"YearMonth": "2024-01", "DiscountCode": "JVAA342", "uses": 1, "revenue": 51.710002, "avgAOV": 51.710002, "avgDiscountPct": 0.0}, {"YearMonth": "2024-01", "DiscountCode": "JVCC21", "uses": 1, "revenue": 35.730001, "avgAOV": 35.730001, "avgDiscountPct": 0.0}, {"YearMonth": "2024-01", "DiscountCode": "JVES23A", "uses": 2, "revenue": 32.079999, "avgAOV": 16.0399995, "avgDiscountPct": 0.0}, {"YearMonth": "2024-01", "DiscountCode": "JVFTJA22", "uses": 3, "revenue": 70.81, "avgAOV": 23.603333333333335, "avgDiscountPct": 0.0}, {"YearMonth": "2024-02", "DiscountCode": "GAJ3", "uses": 1, "revenue": 77.850002, "avgAOV": 77.850002, "avgDiscountPct": 0.0}, {"YearMonth": "2024-02", "DiscountCode": "JVCC21", "uses": 2, "revenue": 48.809999, "avgAOV": 24.4049995, "avgDiscountPct": 0.0}, {"YearMonth": "2024-02", "DiscountCode": "JVES23A", "uses": 2, "revenue": 70.509999, "avgAOV": 35.2549995, "avgDiscountPct": 0.0}, {"YearMonth": "2024-02", "DiscountCode": "JVFTJA22", "uses": 5, "revenue": 143.529999, "avgAOV": 28.7059998, "avgDiscountPct": 0.0}, {"YearMonth": "2024-03", "DiscountCode": "JVES23A", "uses": 2, "revenue": 44.809999000000005, "avgAOV": 22.404999500000002, "avgDiscountPct": 0.0}, {"YearMonth": "2024-04", "DiscountCode": "JVFTJA22", "uses": 1, "revenue": 16.9, "avgAOV": 16.9, "avgDiscountPct": 0.0}, {"YearMonth": "2024-05", "DiscountCode": "JVES23A", "uses": 2, "revenue": 35.11, "avgAOV": 17.555, "avgDiscountPct": 0.0}, {"YearMonth": "2024-06", "DiscountCode": "JVES23A", "uses": 1, "revenue": 47.349999, "avgAOV": 47.349999, "avgDiscountPct": 0.0}, {"YearMonth": "2024-06", "DiscountCode": "JVK19B", "uses": 1, "revenue": 22.899999, "avgAOV": 22.899999, "avgDiscountPct": 0.0}, {"YearMonth": "2024-08", "DiscountCode": "JVES23A", "uses": 1, "revenue": 19.9, "avgAOV": 19.9, "avgDiscountPct": 0.0}, {"YearMonth": "2024-09", "DiscountCode": "JVMM20", "uses": 2, "revenue": 50.749999, "avgAOV": 25.3749995, "avgDiscountPct": 0.0}, {"YearMonth": "2024-10", "DiscountCode": "JVMM20", "uses": 4, "revenue": 128.51999999999998, "avgAOV": 32.129999999999995, "avgDiscountPct": 0.0}, {"YearMonth": "2024-11", "DiscountCode": "JVMM20", "uses": 1, "revenue": 56.849999, "avgAOV": 56.849999, "avgDiscountPct": 0.0}, {"YearMonth": "2024-12", "DiscountCode": "JVES23A", "uses": 1, "revenue": 11.45, "avgAOV": 11.45, "avgDiscountPct": 0.0}, {"YearMonth": "2024-12", "DiscountCode": "JVMM20", "uses": 1, "revenue": 18.45, "avgAOV": 18.45, "avgDiscountPct": 0.0}, {"YearMonth": "2025-01", "DiscountCode": "JVMM20", "uses": 6, "revenue": 341.979998, "avgAOV": 56.99666633333334, "avgDiscountPct": 0.0}, {"YearMonth": "2025-02", "DiscountCode": "JVMM20", "uses": 1, "revenue": 24.599999, "avgAOV": 24.599999, "avgDiscountPct": 0.0}, {"YearMonth": "2025-04", "DiscountCode": "JVMM20", "uses": 2, "revenue": 102.20000300000001, "avgAOV": 51.100001500000005, "avgDiscountPct": 0.0}, {"YearMonth": "2025-07", "DiscountCode": "JVMM20", "uses": 1, "revenue": 305.450005, "avgAOV": 305.450005, "avgDiscountPct": 0.0}, {"YearMonth": "2025-08", "DiscountCode": "JVCF22", "uses": 1, "revenue": 88.749999, "avgAOV": 88.749999, "avgDiscountPct": 0.0}, {"YearMonth": "2025-08", "DiscountCode": "JVES23A", "uses": 1, "revenue": 104.309997, "avgAOV": 104.309997, "avgDiscountPct": 0.0}, {"YearMonth": "2025-08", "DiscountCode": "JVFTJA22", "uses": 2, "revenue": 44.05, "avgAOV": 22.025, "avgDiscountPct": 0.0}, {"YearMonth": "2025-08", "DiscountCode": "JVMM20", "uses": 1, "revenue": 69.849999, "avgAOV": 69.849999, "avgDiscountPct": 0.0}, {"YearMonth": "2025-09", "DiscountCode": "JVES23A", "uses": 1, "revenue": 49.350001, "avgAOV": 49.350001, "avgDiscountPct": 0.0}, {"YearMonth": "2025-09", "DiscountCode": "JVFTJA22", "uses": 2, "revenue": 183.150001, "avgAOV": 91.5750005, "avgDiscountPct": 0.0}, {"YearMonth": "2025-10", "DiscountCode": "JVES23A", "uses": 2, "revenue": 66.750002, "avgAOV": 33.375001, "avgDiscountPct": 0.0}, {"YearMonth": "2025-11", "DiscountCode": "JVES23A", "uses": 5, "revenue": 245.090001, "avgAOV": 49.0180002, "avgDiscountPct": 0.0}, {"YearMonth": "2025-12", "DiscountCode": "JVES23A", "uses": 6, "revenue": 255.120001, "avgAOV": 42.52000016666667, "avgDiscountPct": 0.0}, {"YearMonth": "2025-12", "DiscountCode": "JVMM20", "uses": 1, "revenue": 63.250001, "avgAOV": 63.250001, "avgDiscountPct": 0.0}, {"YearMonth": "2026-01", "DiscountCode": "JVMM20", "uses": 2, "revenue": 69.81, "avgAOV": 34.905, "avgDiscountPct": 0.0}], "shippingCompMonthly": [{"YearMonth": "2005-11", "IsFreeShipping": 1, "count": 2, "avgAOV": 18.9249505, "avgItems": 1.5, "avgMargin": 100.0, "newPct": 100.0, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2005-12", "IsFreeShipping": 1, "count": 1, "avgAOV": 17.9, "avgItems": 2.0, "avgMargin": 100.0, "newPct": 100.0, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2006-01", "IsFreeShipping": 1, "count": 4, "avgAOV": 26.612424750000002, "avgItems": 2.25, "avgMargin": 100.0, "newPct": 0.0, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2006-02", "IsFreeShipping": 0, "count": 2, "avgAOV": 9.45, "avgItems": 1.0, "avgMargin": 100.0, "newPct": 50.0, "discountPct": 0.0, "avgShipping": 2.0}, {"YearMonth": "2006-02", "IsFreeShipping": 1, "count": 3, "avgAOV": 34.066667333333335, "avgItems": 2.6666666666666665, "avgMargin": 100.0, "newPct": 66.66666666666666, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2006-03", "IsFreeShipping": 0, "count": 23, "avgAOV": 17.880421782608696, "avgItems": 1.608695652173913, "avgMargin": 100.0, "newPct": 86.95652173913044, "discountPct": 0.0, "avgShipping": 2.391304347826087}, {"YearMonth": "2006-03", "IsFreeShipping": 1, "count": 88, "avgAOV": 21.285003443181818, "avgItems": 2.034090909090909, "avgMargin": 100.0, "newPct": 93.18181818181817, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2006-04", "IsFreeShipping": 0, "count": 40, "avgAOV": 14.001252549999998, "avgItems": 1.275, "avgMargin": 100.0, "newPct": 95.0, "discountPct": 0.0, "avgShipping": 2.225}, {"YearMonth": "2006-04", "IsFreeShipping": 1, "count": 131, "avgAOV": 18.324310732824426, "avgItems": 1.6793893129770991, "avgMargin": 100.0, "newPct": 90.83969465648855, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2006-05", "IsFreeShipping": 0, "count": 45, "avgAOV": 11.188822222222221, "avgItems": 1.0666666666666667, "avgMargin": 100.0, "newPct": 86.66666666666667, "discountPct": 0.0, "avgShipping": 2.111111111111111}, {"YearMonth": "2006-05", "IsFreeShipping": 1, "count": 199, "avgAOV": 19.168539743718593, "avgItems": 1.6834170854271358, "avgMargin": 100.0, "newPct": 91.95979899497488, "discountPct": 0.5025125628140703, "avgShipping": 0.0}, {"YearMonth": "2006-06", "IsFreeShipping": 0, "count": 49, "avgAOV": 14.932667306122449, "avgItems": 1.3877551020408163, "avgMargin": 100.0, "newPct": 91.83673469387756, "discountPct": 0.0, "avgShipping": 2.204081632653061}, {"YearMonth": "2006-06", "IsFreeShipping": 1, "count": 216, "avgAOV": 19.13620937037037, "avgItems": 1.7453703703703705, "avgMargin": 100.0, "newPct": 86.57407407407408, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2006-07", "IsFreeShipping": 0, "count": 69, "avgAOV": 12.147100014492754, "avgItems": 1.144927536231884, "avgMargin": 100.0, "newPct": 85.5072463768116, "discountPct": 0.0, "avgShipping": 2.1159420289855073}, {"YearMonth": "2006-07", "IsFreeShipping": 1, "count": 233, "avgAOV": 19.93080263090129, "avgItems": 1.6180257510729614, "avgMargin": 100.0, "newPct": 80.68669527896995, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2006-08", "IsFreeShipping": 0, "count": 75, "avgAOV": 12.56065064, "avgItems": 1.1866666666666668, "avgMargin": 100.0, "newPct": 82.66666666666667, "discountPct": 0.0, "avgShipping": 2.2}, {"YearMonth": "2006-08", "IsFreeShipping": 1, "count": 208, "avgAOV": 22.58966363942308, "avgItems": 1.7307692307692308, "avgMargin": 100.0, "newPct": 77.40384615384616, "discountPct": 0.4807692307692308, "avgShipping": 0.0}, {"YearMonth": "2006-09", "IsFreeShipping": 0, "count": 88, "avgAOV": 12.023130193181817, "avgItems": 1.1590909090909092, "avgMargin": 100.0, "newPct": 89.77272727272727, "discountPct": 3.4090909090909087, "avgShipping": 2.102272727272727}, {"YearMonth": "2006-09", "IsFreeShipping": 1, "count": 281, "avgAOV": 20.53673391103203, "avgItems": 1.8540925266903914, "avgMargin": 100.0, "newPct": 76.86832740213522, "discountPct": 10.320284697508896, "avgShipping": 0.0}, {"YearMonth": "2006-10", "IsFreeShipping": 0, "count": 122, "avgAOV": 12.491129549180329, "avgItems": 1.2377049180327868, "avgMargin": 100.0, "newPct": 85.24590163934425, "discountPct": 2.459016393442623, "avgShipping": 2.1065573770491803}, {"YearMonth": "2006-10", "IsFreeShipping": 1, "count": 351, "avgAOV": 20.660219535612537, "avgItems": 1.9202279202279202, "avgMargin": 100.0, "newPct": 68.94586894586895, "discountPct": 9.971509971509972, "avgShipping": 0.0}, {"YearMonth": "2006-11", "IsFreeShipping": 0, "count": 121, "avgAOV": 11.162025628099173, "avgItems": 1.0743801652892562, "avgMargin": 100.0, "newPct": 82.64462809917356, "discountPct": 0.8264462809917356, "avgShipping": 2.0991735537190084}, {"YearMonth": "2006-11", "IsFreeShipping": 1, "count": 331, "avgAOV": 20.200006471299094, "avgItems": 1.8308157099697886, "avgMargin": 100.0, "newPct": 67.6737160120846, "discountPct": 5.438066465256798, "avgShipping": 0.0}, {"YearMonth": "2006-12", "IsFreeShipping": 0, "count": 75, "avgAOV": 11.25729468, "avgItems": 1.0933333333333333, "avgMargin": 100.0, "newPct": 77.33333333333333, "discountPct": 0.0, "avgShipping": 2.08}, {"YearMonth": "2006-12", "IsFreeShipping": 1, "count": 382, "avgAOV": 20.57108052356021, "avgItems": 1.612565445026178, "avgMargin": 100.0, "newPct": 74.86910994764398, "discountPct": 0.2617801047120419, "avgShipping": 0.0}, {"YearMonth": "2007-01", "IsFreeShipping": 0, "count": 141, "avgAOV": 12.820896503546098, "avgItems": 1.1702127659574468, "avgMargin": 100.0, "newPct": 78.72340425531915, "discountPct": 0.0, "avgShipping": 2.099290780141844}, {"YearMonth": "2007-01", "IsFreeShipping": 1, "count": 498, "avgAOV": 19.434516082329317, "avgItems": 1.604417670682731, "avgMargin": 100.0, "newPct": 71.285140562249, "discountPct": 0.6024096385542169, "avgShipping": 0.0}, {"YearMonth": "2007-02", "IsFreeShipping": 0, "count": 96, "avgAOV": 13.805444833333333, "avgItems": 1.2604166666666667, "avgMargin": 100.0, "newPct": 73.95833333333334, "discountPct": 0.0, "avgShipping": 2.1458333333333335}, {"YearMonth": "2007-02", "IsFreeShipping": 1, "count": 564, "avgAOV": 19.310290234042554, "avgItems": 1.5691489361702127, "avgMargin": 100.0, "newPct": 47.87234042553192, "discountPct": 0.3546099290780142, "avgShipping": 0.0}, {"YearMonth": "2007-03", "IsFreeShipping": 0, "count": 105, "avgAOV": 17.682749504761905, "avgItems": 1.619047619047619, "avgMargin": 100.0, "newPct": 73.33333333333333, "discountPct": 0.0, "avgShipping": 2.1809523809523808}, {"YearMonth": "2007-03", "IsFreeShipping": 1, "count": 450, "avgAOV": 19.836774991111113, "avgItems": 1.5955555555555556, "avgMargin": 100.0, "newPct": 56.00000000000001, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2007-04", "IsFreeShipping": 0, "count": 109, "avgAOV": 13.282600018348624, "avgItems": 1.2293577981651376, "avgMargin": 100.0, "newPct": 74.31192660550458, "discountPct": 0.0, "avgShipping": 2.2110091743119265}, {"YearMonth": "2007-04", "IsFreeShipping": 1, "count": 343, "avgAOV": 21.518561320699707, "avgItems": 1.7521865889212829, "avgMargin": 100.0, "newPct": 48.10495626822158, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2007-05", "IsFreeShipping": 0, "count": 108, "avgAOV": 12.876051842592593, "avgItems": 1.2962962962962963, "avgMargin": 100.0, "newPct": 64.81481481481481, "discountPct": 0.9259259259259258, "avgShipping": 2.1481481481481484}, {"YearMonth": "2007-05", "IsFreeShipping": 1, "count": 407, "avgAOV": 20.81084830712531, "avgItems": 1.769041769041769, "avgMargin": 100.0, "newPct": 49.385749385749385, "discountPct": 3.43980343980344, "avgShipping": 0.0}, {"YearMonth": "2007-06", "IsFreeShipping": 0, "count": 239, "avgAOV": 20.030908221757322, "avgItems": 1.5815899581589958, "avgMargin": 100.0, "newPct": 68.20083682008368, "discountPct": 0.8368200836820083, "avgShipping": 2.292887029288703}, {"YearMonth": "2007-06", "IsFreeShipping": 1, "count": 294, "avgAOV": 19.70440166326531, "avgItems": 1.6428571428571428, "avgMargin": 100.0, "newPct": 64.28571428571429, "discountPct": 3.741496598639456, "avgShipping": 0.0}, {"YearMonth": "2007-07", "IsFreeShipping": 0, "count": 239, "avgAOV": 21.73779669037657, "avgItems": 1.6694560669456067, "avgMargin": 100.0, "newPct": 69.4560669456067, "discountPct": 0.0, "avgShipping": 2.309623430962343}, {"YearMonth": "2007-07", "IsFreeShipping": 1, "count": 285, "avgAOV": 20.432172719298244, "avgItems": 1.6280701754385964, "avgMargin": 100.0, "newPct": 67.71929824561404, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2007-08", "IsFreeShipping": 0, "count": 224, "avgAOV": 21.197420165178574, "avgItems": 1.7053571428571428, "avgMargin": 100.0, "newPct": 66.96428571428571, "discountPct": 0.4464285714285714, "avgShipping": 2.3705357142857144}, {"YearMonth": "2007-08", "IsFreeShipping": 1, "count": 267, "avgAOV": 19.766658168539326, "avgItems": 1.6591760299625469, "avgMargin": 100.0, "newPct": 62.92134831460674, "discountPct": 1.1235955056179776, "avgShipping": 0.0}, {"YearMonth": "2007-09", "IsFreeShipping": 0, "count": 231, "avgAOV": 19.565385783549782, "avgItems": 1.6017316017316017, "avgMargin": 100.0, "newPct": 72.2943722943723, "discountPct": 0.4329004329004329, "avgShipping": 2.29004329004329}, {"YearMonth": "2007-09", "IsFreeShipping": 1, "count": 262, "avgAOV": 19.66432732442748, "avgItems": 1.6564885496183206, "avgMargin": 100.0, "newPct": 56.10687022900763, "discountPct": 0.38167938931297707, "avgShipping": 0.0}, {"YearMonth": "2007-10", "IsFreeShipping": 0, "count": 200, "avgAOV": 27.496620840000002, "avgItems": 2.275, "avgMargin": 100.0, "newPct": 63.0, "discountPct": 0.5, "avgShipping": 2.345}, {"YearMonth": "2007-10", "IsFreeShipping": 1, "count": 256, "avgAOV": 20.31495184765625, "avgItems": 1.71484375, "avgMargin": 100.0, "newPct": 58.203125, "discountPct": 1.171875, "avgShipping": 0.0}, {"YearMonth": "2007-11", "IsFreeShipping": 0, "count": 178, "avgAOV": 20.821773713483147, "avgItems": 1.7078651685393258, "avgMargin": 100.0, "newPct": 65.73033707865169, "discountPct": 0.0, "avgShipping": 2.348314606741573}, {"YearMonth": "2007-11", "IsFreeShipping": 1, "count": 289, "avgAOV": 20.462315103806226, "avgItems": 1.7301038062283738, "avgMargin": 100.0, "newPct": 62.28373702422145, "discountPct": 0.34602076124567477, "avgShipping": 0.0}, {"YearMonth": "2007-12", "IsFreeShipping": 0, "count": 185, "avgAOV": 19.437343972972972, "avgItems": 1.5891891891891892, "avgMargin": 100.0, "newPct": 65.4054054054054, "discountPct": 0.5405405405405406, "avgShipping": 2.3945945945945946}, {"YearMonth": "2007-12", "IsFreeShipping": 1, "count": 189, "avgAOV": 21.750466730158728, "avgItems": 1.7566137566137565, "avgMargin": 100.0, "newPct": 52.38095238095239, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2008-01", "IsFreeShipping": 0, "count": 289, "avgAOV": 20.45431255363322, "avgItems": 1.602076124567474, "avgMargin": 100.0, "newPct": 67.1280276816609, "discountPct": 0.0, "avgShipping": 2.3356401384083045}, {"YearMonth": "2008-01", "IsFreeShipping": 1, "count": 365, "avgAOV": 20.082908197260274, "avgItems": 1.673972602739726, "avgMargin": 100.0, "newPct": 54.794520547945204, "discountPct": 0.547945205479452, "avgShipping": 0.0}, {"YearMonth": "2008-02", "IsFreeShipping": 0, "count": 266, "avgAOV": 21.375292906015037, "avgItems": 1.736842105263158, "avgMargin": 100.0, "newPct": 71.42857142857143, "discountPct": 0.0, "avgShipping": 2.3157894736842106}, {"YearMonth": "2008-02", "IsFreeShipping": 1, "count": 255, "avgAOV": 20.965542615686275, "avgItems": 1.776470588235294, "avgMargin": 100.0, "newPct": 51.76470588235295, "discountPct": 0.7843137254901961, "avgShipping": 0.0}, {"YearMonth": "2008-03", "IsFreeShipping": 0, "count": 296, "avgAOV": 19.677101054054052, "avgItems": 1.5810810810810811, "avgMargin": 100.0, "newPct": 66.21621621621621, "discountPct": 0.0, "avgShipping": 2.3783783783783785}, {"YearMonth": "2008-03", "IsFreeShipping": 1, "count": 329, "avgAOV": 20.80294768389058, "avgItems": 1.7537993920972645, "avgMargin": 100.0, "newPct": 55.319148936170215, "discountPct": 0.911854103343465, "avgShipping": 0.0}, {"YearMonth": "2008-04", "IsFreeShipping": 0, "count": 251, "avgAOV": 17.981947442231075, "avgItems": 1.3625498007968126, "avgMargin": 100.0, "newPct": 64.5418326693227, "discountPct": 0.0, "avgShipping": 2.298804780876494}, {"YearMonth": "2008-04", "IsFreeShipping": 1, "count": 314, "avgAOV": 19.578295703821656, "avgItems": 1.5828025477707006, "avgMargin": 100.0, "newPct": 54.77707006369427, "discountPct": 0.3184713375796179, "avgShipping": 0.0}, {"YearMonth": "2008-05", "IsFreeShipping": 0, "count": 312, "avgAOV": 19.03867928205128, "avgItems": 1.4679487179487178, "avgMargin": 100.0, "newPct": 71.47435897435898, "discountPct": 0.3205128205128205, "avgShipping": 2.3814102564102564}, {"YearMonth": "2008-05", "IsFreeShipping": 1, "count": 301, "avgAOV": 20.3108503089701, "avgItems": 1.6212624584717608, "avgMargin": 100.0, "newPct": 56.810631229235874, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2008-06", "IsFreeShipping": 0, "count": 434, "avgAOV": 19.1236107281106, "avgItems": 1.5276497695852536, "avgMargin": 100.0, "newPct": 71.19815668202764, "discountPct": 0.2304147465437788, "avgShipping": 2.338709677419355}, {"YearMonth": "2008-06", "IsFreeShipping": 1, "count": 443, "avgAOV": 20.733816670428894, "avgItems": 1.672686230248307, "avgMargin": 100.0, "newPct": 56.43340857787811, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2008-07", "IsFreeShipping": 0, "count": 417, "avgAOV": 18.340618964028778, "avgItems": 1.5299760191846523, "avgMargin": 100.0, "newPct": 70.50359712230215, "discountPct": 3.357314148681055, "avgShipping": 2.419664268585132}, {"YearMonth": "2008-07", "IsFreeShipping": 1, "count": 416, "avgAOV": 20.169509740384612, "avgItems": 1.7211538461538463, "avgMargin": 100.0, "newPct": 59.61538461538461, "discountPct": 4.807692307692308, "avgShipping": 0.0}, {"YearMonth": "2008-08", "IsFreeShipping": 0, "count": 648, "avgAOV": 17.183865047839504, "avgItems": 1.5509259259259258, "avgMargin": 100.0, "newPct": 75.92592592592592, "discountPct": 11.419753086419753, "avgShipping": 2.388888888888889}, {"YearMonth": "2008-08", "IsFreeShipping": 1, "count": 500, "avgAOV": 20.132724996, "avgItems": 1.78, "avgMargin": 100.0, "newPct": 62.6, "discountPct": 5.0, "avgShipping": 0.0}, {"YearMonth": "2008-09", "IsFreeShipping": 0, "count": 499, "avgAOV": 18.60372113827655, "avgItems": 1.4749498997995991, "avgMargin": 100.0, "newPct": 70.34068136272545, "discountPct": 0.6012024048096193, "avgShipping": 2.3887775551102206}, {"YearMonth": "2008-09", "IsFreeShipping": 1, "count": 465, "avgAOV": 21.529580412903222, "avgItems": 1.8064516129032258, "avgMargin": 100.0, "newPct": 59.56989247311828, "discountPct": 1.0752688172043012, "avgShipping": 0.0}, {"YearMonth": "2008-10", "IsFreeShipping": 0, "count": 600, "avgAOV": 19.928978791666665, "avgItems": 1.5, "avgMargin": 100.0, "newPct": 73.16666666666667, "discountPct": 0.5, "avgShipping": 2.3333333333333335}, {"YearMonth": "2008-10", "IsFreeShipping": 1, "count": 617, "avgAOV": 20.835838213938413, "avgItems": 1.633711507293355, "avgMargin": 100.0, "newPct": 63.85737439222042, "discountPct": 0.48622366288492713, "avgShipping": 0.0}, {"YearMonth": "2008-11", "IsFreeShipping": 0, "count": 669, "avgAOV": 18.93528894768311, "avgItems": 1.4439461883408071, "avgMargin": 100.0, "newPct": 74.14050822122572, "discountPct": 0.14947683109118087, "avgShipping": 2.468609865470852}, {"YearMonth": "2008-11", "IsFreeShipping": 1, "count": 579, "avgAOV": 22.060097089810018, "avgItems": 1.6994818652849741, "avgMargin": 100.0, "newPct": 59.067357512953365, "discountPct": 0.8635578583765112, "avgShipping": 0.0}, {"YearMonth": "2008-12", "IsFreeShipping": 0, "count": 572, "avgAOV": 20.04751097027972, "avgItems": 1.5734265734265733, "avgMargin": 100.0, "newPct": 73.25174825174825, "discountPct": 0.17482517482517482, "avgShipping": 2.7255244755244754}, {"YearMonth": "2008-12", "IsFreeShipping": 1, "count": 416, "avgAOV": 21.268708060096152, "avgItems": 1.7403846153846154, "avgMargin": 100.0, "newPct": 53.125, "discountPct": 0.0, "avgShipping": 0.0}, {"YearMonth": "2009-01", "IsFreeShipping": 0, "count": 968, "avgAOV": 20.812998529958676, "avgItems": 1.609504132231405, "avgMargin": 100.0, "newPct": 72.31404958677686, "discountPct": 0.8264462809917356, "avgShipping": 2.6296487603305785}, {"YearMonth": "2009-01", "IsFreeShipping": 1, "count": 700, "avgAOV": 21.357881411428572, "avgItems": 1.9028571428571428, "avgMargin": 100.0, "newPct": 56.714285714285715, "discountPct": 0.4285714285714286, "avgShipping": 0.0}, {"YearMonth": "2009-02", "IsFreeShipping": 0, "count": 854, "avgAOV": 21.87371596135831, "avgItems": 1.6978922716627636, "avgMargin": 100.0, "newPct": 70.84309133489461, "discountPct": 0.117096018735363, "avgShipping": 2.537470725995316}, {"YearMonth": "2009-02", "IsFreeShipping": 1, "count": 633, "avgAOV": 22.463234080568718, "avgItems": 1.7772511848341233, "avgMargin": 100.0, "newPct": 52.29067930489732, "discountPct": 0.631911532385466, "avgShipping": 0.0}, {"YearMonth": "2009-03", "IsFreeShipping": 0, "count": 932, "avgAOV": 21.08049207618026, "avgItems": 1.5708154506437768, "avgMargin": 100.0, "newPct": 70.3862660944206, "discountPct": 0.6437768240343348, "avgShipping": 2.6604077253218885}, {"YearMonth": "2009-03", "IsFreeShipping": 1, "count": 793, "avgAOV": 22.180543129886505, "avgItems": 1.7906683480453973, "avgMargin": 100.0, "newPct": 56.242118537200504, "discountPct": 0.25220680958385877, "avgShipping": 0.0}, {"YearMonth": "2009-04", "IsFreeShipping": 0, "count": 953, "avgAOV": 21.364891952780695, "avgItems": 1.6316894018887722, "avgMargin": 100.0, "newPct": 70.40923399790137, "discountPct": 0.3147953830010493, "avgShipping": 2.530430220356768}, {"YearMonth": "2009-04", "IsFreeShipping": 1, "count": 744, "avgAOV": 22.761451053763444, "avgItems": 1.8077956989247312, "avgMargin": 100.0, "newPct": 60.483870967741936, "discountPct": 0.5376344086021506, "avgShipping": 0.0}, {"YearMonth": "2009-05", "IsFreeShipping": 0, "count": 989, "avgAOV": 22.485531875631953, "avgItems": 1.6814964610717897, "avgMargin": 100.0, "newPct": 63.80182002022244, "discountPct": 13.447927199191101, "avgShipping": 3.06319514661274}, {"YearMonth": "2009-05", "IsFreeShipping": 1, "count": 1026, "avgAOV": 21.628164204678363, "avgItems": 1.7153996101364521, "avgMargin": 100.0, "newPct": 54.58089668615984, "discountPct": 22.807017543859647, "avgShipping": 0.0}, {"YearMonth": "2009-06", "IsFreeShipping": 0, "count": 919, "avgAOV": 21.304394009793253, "avgItems": 1.5364526659412405, "avgMargin": 100.0, "newPct": 68.87921653971708, "discountPct": 0.8705114254624592, "avgShipping": 3.193144722524483}, {"YearMonth": "2009-06", "IsFreeShipping": 1, "count": 885, "avgAOV": 22.405214239548023, "avgItems": 1.6497175141242937, "avgMargin": 100.0, "newPct": 58.98305084745763, "discountPct": 2.711864406779661, "avgShipping": 0.0}, {"YearMonth": "2009-07", "IsFreeShipping": 0, "count": 909, "avgAOV": 23.964337575357536, "avgItems": 1.7205720572057206, "avgMargin": 100.0, "newPct": 64.57645764576458, "discountPct": 0.77007700770077, "avgShipping": 3.0995599559955997}, {"YearMonth": "2009-07", "IsFreeShipping": 1, "count": 924, "avgAOV": 22.192634102813855, "avgItems": 1.7012987012987013, "avgMargin": 100.0, "newPct": 50.43290043290043, "discountPct": 0.6493506493506493, "avgShipping": 0.0}, {"YearMonth": "2009-08", "IsFreeShipping": 0, "count": 899, "avgAOV": 23.540057100111234, "avgItems": 1.685205784204672, "avgMargin": 100.0, "newPct": 58.509454949944384, "discountPct": 6.896551724137931, "avgShipping": 3.090656284760845}, {"YearMonth": "2009-08", "IsFreeShipping": 1, "count": 959, "avgAOV": 22.92680727320125, "avgItems": 1.7904066736183524, "avgMargin": 100.0, "newPct": 40.980187695516165, "discountPct": 13.86861313868613, "avgShipping": 0.0}, {"YearMonth": "2009-09", "IsFreeShipping": 0, "count": 800, "avgAOV": 24.92683855875, "avgItems": 1.7, "avgMargin": 100.0, "newPct": 57.62500000000001, "discountPct": 1.5, "avgShipping": 3.026875}, {"YearMonth": "2009-09", "IsFreeShipping": 1, "count": 821, "avgAOV": 22.64433680146163, "avgItems": 1.6041412911084043, "avgMargin": 100.0, "newPct": 47.990255785627284, "discountPct": 2.679658952496955, "avgShipping": 0.0}, {"YearMonth": "2009-10", "IsFreeShipping": 0, "count": 627, "avgAOV": 26.45217809888357, "avgItems": 1.755980861244019, "avgMargin": 100.0, "newPct": 62.36044657097288, "discountPct": 0.4784688995215311, "avgShipping": 3.216108452950558}, {"YearMonth": "2009-10", "IsFreeShipping": 1, "count": 1065, "avgAOV": 21.59357573051643, "avgItems": 1.5671361502347418, "avgMargin": 100.0, "newPct": 54.27230046948357, "discountPct": 0.8450704225352111, "avgShipping": 0.0}, {"YearMonth": "2009-11", "IsFreeShipping": 0, "count": 748, "avgAOV": 24.51691993181818, "avgItems": 1.7941176470588236, "avgMargin": 100.0, "newPct": 59.491978609625676, "discountPct": 0.53475935828877, "avgShipping": 3.1684491978609626}, {"YearMonth": "2009-11", "IsFreeShipping": 1, "count": 1075, "avgAOV": 21.47256027627907, "avgItems": 1.6344186046511628, "avgMargin": 100.0, "newPct": 53.58139534883721, "discountPct": 0.8372093023255814, "avgShipping": 0.0}, {"YearMonth": "2009-12", "IsFreeShipping": 0, "count": 686, "avgAOV": 25.76536633090379, "avgItems": 1.7419825072886297, "avgMargin": 100.0, "newPct": 51.45772594752187, "discountPct": 7.725947521865889, "avgShipping": 3.182944606413994}, {"YearMonth": "2009-12", "IsFreeShipping": 1, "count": 736, "avgAOV": 22.34164554619565, "avgItems": 1.721467391304348, "avgMargin": 100.0, "newPct": 38.45108695652174, "discountPct": 13.179347826086957, "avgShipping": 0.0}, {"YearMonth": "2010-01", "IsFreeShipping": 0, "count": 1000, "avgAOV": 26.225969274, "avgItems": 1.763, "avgMargin": 100.0, "newPct": 51.6, "discountPct": 14.7, "avgShipping": 3.079}, {"YearMonth": "2010-01", "IsFreeShipping": 1, "count": 1139, "avgAOV": 22.66398360491659, "avgItems": 1.6593503072870939, "avgMargin": 100.0, "newPct": 43.10798946444249, "discountPct": 21.773485513608428, "avgShipping": 0.0}, {"YearMonth": "2010-02", "IsFreeShipping": 0, "count": 819, "avgAOV": 26.621780238095237, "avgItems": 1.7118437118437118, "avgMargin": 100.0, "newPct": 61.66056166056166, "discountPct": 1.7094017094017095, "avgShipping": 2.9884004884004884}, {"YearMonth": "2010-02", "IsFreeShipping": 1, "count": 920, "avgAOV": 22.19845966847826, "avgItems": 1.55, "avgMargin": 100.0, "newPct": 51.73913043478261, "discountPct": 2.717391304347826, "avgShipping": 0.0}, {"YearMonth": "2010-03", "IsFreeShipping": 0, "count": 893, "avgAOV": 25.716959493840985, "avgItems": 1.6461366181410975, "avgMargin": 100.0, "newPct": 59.3505039193729, "discountPct": 2.127659574468085, "avgShipping": 3.1590145576707727}, {"YearMonth": "2010-03", "IsFreeShipping": 1, "count": 979, "avgAOV": 22.180891557711952, "avgItems": 1.536261491317671, "avgMargin": 100.0, "newPct": 48.825331971399386, "discountPct": 2.3493360572012256, "avgShipping": 0.0}, {"YearMonth": "2010-04", "IsFreeShipping": 0, "count": 869, "avgAOV": 25.7974562013809, "avgItems": 1.7100115074798619, "avgMargin": 100.0, "newPct": 51.093210586881476, "discountPct": 19.332566168009205, "avgShipping": 3.127157652474108}, {"YearMonth": "2010-04", "IsFreeShipping": 1, "count": 1134, "avgAOV": 22.49437220987654, "avgItems": 1.63668430335097, "avgMargin": 100.0, "newPct": 39.59435626102293, "discountPct": 26.102292768959433, "avgShipping": 0.0}, {"YearMonth": "2010-05", "IsFreeShipping": 0, "count": 890, "avgAOV": 26.130064928089887, "avgItems": 1.7101123595505618, "avgMargin": 100.0, "newPct": 56.96629213483146, "discountPct": 13.595505617977526, "avgShipping": 3.0764044943820226}, {"YearMonth": "2010-05", "IsFreeShipping": 1, "count": 1093, "avgAOV": 22.17368386276304, "avgItems": 1.5763952424519672, "avgMargin": 100.0, "newPct": 43.4583714547118, "discountPct": 21.59194876486734, "avgShipping": 0.0}, {"YearMonth": "2010-06", "IsFreeShipping": 0, "count": 860, "avgAOV": 25.78308501395349, "avgItems": 1.6627906976744187, "avgMargin": 100.0, "newPct": 56.27906976744186, "discountPct": 5.930232558139535, "avgShipping": 3.1598837209302326}, {"YearMonth": "2010-06", "IsFreeShipping": 1, "count": 1005, "avgAOV": 22.191922898507464, "avgItems": 1.5383084577114428, "avgMargin": 100.0, "newPct": 48.95522388059702, "discountPct": 7.462686567164178, "avgShipping": 0.0}, {"YearMonth": "2010-07", "IsFreeShipping": 0, "count": 886, "avgAOV": 25.005308700902933, "avgItems": 1.6162528216704288, "avgMargin": 100.0, "newPct": 59.59367945823928, "discountPct": 1.6930022573363432, "avgShipping": 2.971783295711061}, {"YearMonth": "2010-07", "IsFreeShipping": 1, "count": 1076, "avgAOV": 22.233584281598514, "avgItems": 1.5241635687732342, "avgMargin": 100.0, "newPct": 48.97769516728624, "discountPct": 2.0446096654275094, "avgShipping": 0.0}, {"YearMonth": "2010-08", "IsFreeShipping": 0, "count": 939, "avgAOV": 27.808784962726303, "avgItems": 1.8157614483493079, "avgMargin": 100.0, "newPct": 50.159744408945684, "discountPct": 9.79765708200213, "avgShipping": 2.994675186368477}, {"YearMonth": "2010-08", "IsFreeShipping": 1, "count": 1174, "avgAOV": 23.905083660988076, "avgItems": 1.651618398637138, "avgMargin": 100.0, "newPct": 34.8381601362862, "discountPct": 17.035775127768314, "avgShipping": 0.0}, {"YearMonth": "2010-09", "IsFreeShipping": 0, "count": 853, "avgAOV": 26.18454237397421, "avgItems": 1.7256740914419695, "avgMargin": 100.0, "newPct": 58.49941383352872, "discountPct": 1.992966002344666, "avgShipping": 3.0164126611957798}, {"YearMonth": "2010-09", "IsFreeShipping": 1, "count": 1080, "avgAOV": 23.23356050925926, "avgItems": 1.6398148148148148, "avgMargin": 100.0, "newPct": 50.18518518518519, "discountPct": 2.9629629629629632, "avgShipping": 0.0}, {"YearMonth": "2010-10", "IsFreeShipping": 0, "count": 881, "avgAOV": 28.00376787400681, "avgItems": 1.7741203178206584, "avgMargin": 100.0, "newPct": 55.95913734392736, "discountPct": 1.4755959137343928, "avgShipping": 2.931328036322361}, {"YearMonth": "2010-10", "IsFreeShipping": 1, "count": 993, "avgAOV": 24.412427005035244, "avgItems": 1.6042296072507554, "avgMargin": 100.0, "newPct": 47.93554884189326, "discountPct": 2.014098690835851, "avgShipping": 0.0}, {"YearMonth": "2010-11", "IsFreeShipping": 0, "count": 814, "avgAOV": 26.963120909090907, "avgItems": 1.7481572481572483, "avgMargin": 100.0, "newPct": 52.33415233415234, "discountPct": 0.9828009828009828, "avgShipping": 2.957002457002457}, {"YearMonth": "2010-11", "IsFreeShipping": 1, "count": 1052, "avgAOV": 23.67287632984791, "avgItems": 1.6121673003802282, "avgMargin": 100.0, "newPct": 45.05703422053232, "discountPct": 1.3307984790874523, "avgShipping": 0.0}, {"YearMonth": "2010-12", "IsFreeShipping": 0, "count": 669, "avgAOV": 26.07958534678625, "avgItems": 1.7055306427503736, "avgMargin": 100.0, "newPct": 46.78624813153961, "discountPct": 6.726457399103139, "avgShipping": 2.9424514200298955}, {"YearMonth": "2010-12", "IsFreeShipping": 1, "count": 885, "avgAOV": 23.96612591186441, "avgItems": 1.6124293785310735, "avgMargin": 100.0, "newPct": 36.15819209039548, "discountPct": 8.926553672316384, "avgShipping": 0.0}, {"YearMonth": "2011-01", "IsFreeShipping": 0, "count": 1089, "avgAOV": 28.19284806336088, "avgItems": 1.8411386593204775, "avgMargin": 100.0, "newPct": 56.65748393021121, "discountPct": 10.376492194674013, "avgShipping": 3.007346189164371}, {"YearMonth": "2011-01", "IsFreeShipping": 1, "count": 1384, "avgAOV": 23.382344442196533, "avgItems": 1.619942196531792, "avgMargin": 100.0, "newPct": 44.653179190751445, "discountPct": 15.823699421965317, "avgShipping": 0.0}, {"YearMonth": "2011-02", "IsFreeShipping": 0, "count": 822, "avgAOV": 27.60782832725061, "avgItems": 1.778588807785888, "avgMargin": 100.0, "newPct": 52.55474452554745, "discountPct": 1.5815085158150852, "avgShipping": 2.9744525547445257}, {"YearMonth": "2011-02", "IsFreeShipping": 1, "count": 1060, "avgAOV": 22.891055717924527, "avgItems": 1.5915094339622642, "avgMargin": 100.0, "newPct": 43.0188679245283, "discountPct": 2.358490566037736, "avgShipping": 0.0}, {"YearMonth": "2011-03", "IsFreeShipping": 0, "count": 837, "avgAOV": 26.01214864516129, "avgItems": 1.7096774193548387, "avgMargin": 100.0, "newPct": 52.56869772998806, "discountPct": 3.225806451612903, "avgShipping": 2.9778972520908007}, {"YearMonth": "2011-03", "IsFreeShipping": 1, "count": 1077, "avgAOV": 23.612547090993502, "avgItems": 1.6035283194057568, "avgMargin": 100.0, "newPct": 42.15413184772516, "discountPct": 5.385329619312906, "avgShipping": 0.0}, {"YearMonth": "2011-04", "IsFreeShipping": 0, "count": 853, "avgAOV": 26.88734820398593, "avgItems": 1.7397420867526376, "avgMargin": 100.0, "newPct": 46.189917936694016, "discountPct": 14.536928487690503, "avgShipping": 2.9718640093786637}, {"YearMonth": "2011-04", "IsFreeShipping": 1, "count": 1091, "avgAOV": 23.569117553620533, "avgItems": 1.6223648029330888, "avgMargin": 100.0, "newPct": 36.48029330889093, "discountPct": 24.931255728689276, "avgShipping": 0.0}, {"YearMonth": "2011-05", "IsFreeShipping": 0, "count": 895, "avgAOV": 27.15865039441341, "avgItems": 1.8, "avgMargin": 100.0, "newPct": 50.949720670391066, "discountPct": 5.810055865921788, "avgShipping": 2.964804469273743}, {"YearMonth": "2011-05", "IsFreeShipping": 1, "count": 1101, "avgAOV": 23.059227488646684, "avgItems": 1.6176203451407811, "avgMargin": 100.0, "newPct": 45.322434150772025, "discountPct": 11.080835603996366, "avgShipping": 0.0}, {"YearMonth": "2011-06", "IsFreeShipping": 0, "count": 853, "avgAOV": 27.18778661781946, "avgItems": 1.7749120750293084, "avgMargin": 100.0, "newPct": 52.05158264947245, "discountPct": 6.565064478311841, "avgShipping": 2.9419695193434934}, {"YearMonth": "2011-06", "IsFreeShipping": 1, "count": 1123, "avgAOV": 22.42036616918967, "avgItems": 1.5779162956366874, "avgMargin": 100.0, "newPct": 46.215494211932324, "discountPct": 10.774710596616206, "avgShipping": 0.0}, {"YearMonth": "2011-07", "IsFreeShipping": 0, "count": 689, "avgAOV": 29.648950357039187, "avgItems": 1.9506531204644413, "avgMargin": 100.0, "newPct": 49.782293178519595, "discountPct": 4.063860667634253, "avgShipping": 2.9716981132075473}, {"YearMonth": "2011-07", "IsFreeShipping": 1, "count": 1471, "avgAOV": 21.584212282800816, "avgItems": 1.5241332426920462, "avgMargin": 100.0, "newPct": 42.4881033310673, "discountPct": 5.370496261046907, "avgShipping": 0.0}, {"YearMonth": "2011-08", "IsFreeShipping": 0, "count": 737, "avgAOV": 30.906378784260518, "avgItems": 1.976933514246947, "avgMargin": 100.0, "newPct": 46.94708276797829, "discountPct": 13.432835820895523, "avgShipping": 3.006784260515604}, {"YearMonth": "2011-08", "IsFreeShipping": 1, "count": 1641, "avgAOV": 22.174005716026816, "avgItems": 1.5801340645947592, "avgMargin": 100.0, "newPct": 40.036563071297984, "discountPct": 19.07373552711761, "avgShipping": 0.0}, {"YearMonth": "2011-09", "IsFreeShipping": 0, "count": 649, "avgAOV": 28.677027505392914, "avgItems": 1.9044684129429892, "avgMargin": 100.0, "newPct": 44.99229583975347, "discountPct": 2.773497688751926, "avgShipping": 2.9961479198767336}, {"YearMonth": "2011-09", "IsFreeShipping": 1, "count": 1371, "avgAOV": 19.88201401604668, "avgItems": 1.4587892049598834, "avgMargin": 100.0, "newPct": 43.61779722830051, "discountPct": 4.9598832968636035, "avgShipping": 0.0}, {"YearMonth": "2011-10", "IsFreeShipping": 0, "count": 773, "avgAOV": 28.68785090556274, "avgItems": 1.8913324708926262, "avgMargin": 100.0, "newPct": 50.970245795601556, "discountPct": 2.3285899094437257, "avgShipping": 2.997412677878396}, {"YearMonth": "2011-10", "IsFreeShipping": 1, "count": 1648, "avgAOV": 19.015389469053396, "avgItems": 1.4757281553398058, "avgMargin": 100.0, "newPct": 46.17718446601942, "discountPct": 4.611650485436893, "avgShipping": 0.0}, {"YearMonth": "2011-11", "IsFreeShipping": 0, "count": 798, "avgAOV": 26.95567742230576, "avgItems": 1.8045112781954886, "avgMargin": 100.0, "newPct": 52.88220551378446, "discountPct": 1.5037593984962405, "avgShipping": 2.9705513784461153}, {"YearMonth": "2011-11", "IsFreeShipping": 1, "count": 1767, "avgAOV": 19.832978911148842, "avgItems": 1.522354272778721, "avgMargin": 100.0, "newPct": 47.42501414827391, "discountPct": 2.9428409734012453, "avgShipping": 0.0}, {"YearMonth": "2011-12", "IsFreeShipping": 0, "count": 496, "avgAOV": 30.588437034274193, "avgItems": 2.0141129032258065, "avgMargin": 100.0, "newPct": 46.774193548387096, "discountPct": 5.846774193548387, "avgShipping": 3.2419354838709675}, {"YearMonth": "2011-12", "IsFreeShipping": 1, "count": 1701, "avgAOV": 20.269403053497943, "avgItems": 1.532039976484421, "avgMargin": 100.0, "newPct": 41.681363903586124, "discountPct": 13.109935332157555, "avgShipping": 0.0}, {"YearMonth": "2012-01", "IsFreeShipping": 0, "count": 908, "avgAOV": 29.37097312995595, "avgItems": 1.9295154185022025, "avgMargin": 100.0, "newPct": 47.907488986784145, "discountPct": 12.444933920704845, "avgShipping": 3.0148678414096914}, {"YearMonth": "2012-01", "IsFreeShipping": 1, "count": 2222, "avgAOV": 21.182727690369035, "avgItems": 1.5972097209720972, "avgMargin": 100.0, "newPct": 41.71917191719172, "discountPct": 17.64176417641764, "avgShipping": 0.0}, {"YearMonth": "2012-02", "IsFreeShipping": 0, "count": 780, "avgAOV": 27.671801344871795, "avgItems": 1.873076923076923, "avgMargin": 100.0, "newPct": 49.358974358974365, "discountPct": 2.1794871794871793, "avgShipping": 3.008974358974359}, {"YearMonth": "2012-02", "IsFreeShipping": 1, "count": 1665, "avgAOV": 20.212174924924923, "avgItems": 1.566966966966967, "avgMargin": 100.0, "newPct": 44.32432432432433, "discountPct": 3.783783783783784, "avgShipping": 0.0}, {"YearMonth": "2012-03", "IsFreeShipping": 0, "count": 767, "avgAOV": 29.58625929726206, "avgItems": 1.893089960886571, "avgMargin": 100.0, "newPct": 48.5006518904824, "discountPct": 1.1734028683181226, "avgShipping": 3.0071707953063886}, {"YearMonth": "2012-03", "IsFreeShipping": 1, "count": 1490, "avgAOV": 21.564897903355703, "avgItems": 1.6134228187919464, "avgMargin": 100.0, "newPct": 38.25503355704698, "discountPct": 2.5503355704697985, "avgShipping": 0.0}, {"YearMonth": "2012-04", "IsFreeShipping": 0, "count": 760, "avgAOV": 29.190472132894737, "avgItems": 1.8763157894736842, "avgMargin": 100.0, "newPct": 44.60526315789474, "discountPct": 9.473684210526317, "avgShipping": 2.974342105263158}, {"YearMonth": "2012-04", "IsFreeShipping": 1, "count": 1580, "avgAOV": 21.52343904493671, "avgItems": 1.6082278481012657, "avgMargin": 100.0, "newPct": 39.68354430379747, "discountPct": 13.037974683544304, "avgShipping": 0.0}, {"YearMonth": "2012-05", "IsFreeShipping": 0, "count": 733, "avgAOV": 31.29683470259209, "avgItems": 1.9740791268758526, "avgMargin": 100.0, "newPct": 41.06412005457026, "discountPct": 7.776261937244201, "avgShipping": 2.966575716234652}, {"YearMonth": "2012-05", "IsFreeShipping": 1, "count": 1495, "avgAOV": 22.34809022006689, "avgItems": 1.5598662207357858, "avgMargin": 100.0, "newPct": 35.785953177257525, "discountPct": 12.508361204013378, "avgShipping": 0.0}, {"YearMonth": "2012-06", "IsFreeShipping": 0, "count": 613, "avgAOV": 31.865617127243066, "avgItems": 2.0473083197389887, "avgMargin": 100.0, "newPct": 41.272430668841764, "discountPct": 14.518760195758565, "avgShipping": 3.010603588907015}, {"YearMonth": "2012-06", "IsFreeShipping": 1, "count": 1317, "avgAOV": 23.51932384813971, "avgItems": 1.624905087319666, "avgMargin": 100.0, "newPct": 33.25740318906606, "discountPct": 15.261958997722095, "avgShipping": 0.0}, {"YearMonth": "2012-07", "IsFreeShipping": 0, "count": 457, "avgAOV": 32.64904273741794, "avgItems": 2.0065645514223194, "avgMargin": 100.0, "newPct": 35.667396061269145, "discountPct": 17.505470459518598, "avgShipping": 3.1356673960612693}, {"YearMonth": "2012-07", "IsFreeShipping": 1, "count": 1493, "avgAOV": 22.4066384648359, "avgItems": 1.56463496316142, "avgMargin": 100.0, "newPct": 27.796383121232417, "discountPct": 22.638981915606163, "avgShipping": 0.0}, {"YearMonth": "2012-08", "IsFreeShipping": 0, "count": 467, "avgAOV": 32.733127561027835, "avgItems": 2.0856531049250537, "avgMargin": 100.0, "newPct": 46.03854389721627, "discountPct": 18.201284796573873, "avgShipping": 3.1552462526766596}, {"YearMonth": "2012-08", "IsFreeShipping": 1, "count": 1459, "avgAOV": 22.885323265935572, "avgItems": 1.6058944482522275, "avgMargin": 100.0, "newPct": 37.902673063742284, "discountPct": 18.711446196024674, "avgShipping": 0.0}, {"YearMonth": "2012-09", "IsFreeShipping": 0, "count": 520, "avgAOV": 32.75962231730769, "avgItems": 2.048076923076923, "avgMargin": 100.0, "newPct": 43.46153846153846, "discountPct": 2.1153846153846154, "avgShipping": 3.1634615384615383}, {"YearMonth": "2012-09", "IsFreeShipping": 1, "count": 1735, "avgAOV": 22.136894248414986, "avgItems": 1.5354466858789626, "avgMargin": 100.0, "newPct": 36.71469740634006, "discountPct": 4.553314121037464, "avgShipping": 0.0}, {"YearMonth": "2012-10", "IsFreeShipping": 0, "count": 619, "avgAOV": 33.10274511631664, "avgItems": 2.10016155088853, "avgMargin": 100.0, "newPct": 43.61873990306947, "discountPct": 1.1308562197092082, "avgShipping": 3.1882067851373184}, {"YearMonth": "2012-10", "IsFreeShipping": 1, "count": 1754, "avgAOV": 21.85296315108324, "avgItems": 1.6088939566704674, "avgMargin": 100.0, "newPct": 31.242873432155072, "discountPct": 2.2234891676168758, "avgShipping": 0.0}, {"YearMonth": "2012-11", "IsFreeShipping": 0, "count": 538, "avgAOV": 32.06626997026022, "avgItems": 2.092936802973978, "avgMargin": 100.0, "newPct": 42.193308550185876, "discountPct": 11.71003717472119, "avgShipping": 3.20724907063197}, {"YearMonth": "2012-11", "IsFreeShipping": 1, "count": 1736, "avgAOV": 22.54896884158986, "avgItems": 1.652073732718894, "avgMargin": 100.0, "newPct": 28.744239631336406, "discountPct": 17.79953917050691, "avgShipping": 0.0}, {"YearMonth": "2012-12", "IsFreeShipping": 0, "count": 409, "avgAOV": 33.18197613202934, "avgItems": 2.1809290953545233, "avgMargin": 100.0, "newPct": 42.298288508557455, "discountPct": 4.156479217603912, "avgShipping": 3.1687041564792175}, {"YearMonth": "2012-12", "IsFreeShipping": 1, "count": 1297, "avgAOV": 21.30591928912876, "avgItems": 1.535851966075559, "avgMargin": 100.0, "newPct": 33.38473400154202, "discountPct": 3.3924441017733233, "avgShipping": 0.0}, {"YearMonth": "2013-01", "IsFreeShipping": 0, "count": 709, "avgAOV": 35.889247884344144, "avgItems": 2.306064880112835, "avgMargin": 100.0, "newPct": 42.73624823695346, "discountPct": 15.655853314527505, "avgShipping": 3.3758815232722146}, {"YearMonth": "2013-01", "IsFreeShipping": 1, "count": 2023, "avgAOV": 22.600330975778547, "avgItems": 1.6218487394957983, "avgMargin": 100.0, "newPct": 33.86060306475531, "discountPct": 21.601581809194265, "avgShipping": 0.0}, {"YearMonth": "2013-02", "IsFreeShipping": 0, "count": 513, "avgAOV": 31.201696296296294, "avgItems": 2.0253411306042883, "avgMargin": 100.0, "newPct": 45.808966861598435, "discountPct": 2.3391812865497075, "avgShipping": 3.324561403508772}, {"YearMonth": "2013-02", "IsFreeShipping": 1, "count": 1498, "avgAOV": 21.18779597596796, "avgItems": 1.5720961281708945, "avgMargin": 100.0, "newPct": 37.71695594125501, "discountPct": 3.2710280373831773, "avgShipping": 0.0}, {"YearMonth": "2013-03", "IsFreeShipping": 0, "count": 644, "avgAOV": 33.07785673757764, "avgItems": 2.186335403726708, "avgMargin": 100.0, "newPct": 38.66459627329192, "discountPct": 15.217391304347828, "avgShipping": 3.2880434782608696}, {"YearMonth": "2013-03", "IsFreeShipping": 1, "count": 1892, "avgAOV": 22.526047442389004, "avgItems": 1.6020084566596196, "avgMargin": 100.0, "newPct": 38.10782241014799, "discountPct": 18.28752642706131, "avgShipping": 0.0}, {"YearMonth": "2013-04", "IsFreeShipping": 0, "count": 644, "avgAOV": 34.146425782608695, "avgItems": 2.2049689440993787, "avgMargin": 100.0, "newPct": 36.49068322981366, "discountPct": 10.403726708074535, "avgShipping": 3.3338509316770186}, {"YearMonth": "2013-04", "IsFreeShipping": 1, "count": 1925, "avgAOV": 22.269097804675322, "avgItems": 1.6228571428571428, "avgMargin": 100.0, "newPct": 34.75324675324675, "discountPct": 15.220779220779221, "avgShipping": 0.0}, {"YearMonth": "2013-05", "IsFreeShipping": 0, "count": 585, "avgAOV": 31.83408454017094, "avgItems": 2.058119658119658, "avgMargin": 100.0, "newPct": 43.93162393162393, "discountPct": 4.786324786324787, "avgShipping": 3.22991452991453}, {"YearMonth": "2013-05", "IsFreeShipping": 1, "count": 1953, "avgAOV": 20.272652809523812, "avgItems": 1.506400409626216, "avgMargin": 100.0, "newPct": 40.09216589861751, "discountPct": 3.5330261136712746, "avgShipping": 0.0}, {"YearMonth": "2013-06", "IsFreeShipping": 0, "count": 688, "avgAOV": 33.50743113662791, "avgItems": 2.2049418604651163, "avgMargin": 100.0, "newPct": 44.0406976744186, "discountPct": 14.244186046511627, "avgShipping": 3.183139534883721}, {"YearMonth": "2013-06", "IsFreeShipping": 1, "count": 2028, "avgAOV": 21.126531148422092, "avgItems": 1.5404339250493098, "avgMargin": 100.0, "newPct": 40.23668639053255, "discountPct": 15.335305719921106, "avgShipping": 0.0}, {"YearMonth": "2013-07", "IsFreeShipping": 0, "count": 554, "avgAOV": 31.92421483032491, "avgItems": 2.068592057761733, "avgMargin": 100.0, "newPct": 43.501805054151625, "discountPct": 11.191335740072201, "avgShipping": 3.148014440433213}, {"YearMonth": "2013-07", "IsFreeShipping": 1, "count": 1767, "avgAOV": 21.216787080928125, "avgItems": 1.5461233729485002, "avgMargin": 100.0, "newPct": 36.16298811544992, "discountPct": 14.770797962648558, "avgShipping": 0.0}, {"YearMonth": "2013-08", "IsFreeShipping": 0, "count": 559, "avgAOV": 32.60791160107335, "avgItems": 2.105545617173524, "avgMargin": 100.0, "newPct": 43.112701252236135, "discountPct": 3.2200357781753133, "avgShipping": 3.1753130590339893}, {"YearMonth": "2013-08", "IsFreeShipping": 1, "count": 1679, "avgAOV": 20.820338471709352, "avgItems": 1.5157832042882668, "avgMargin": 100.0, "newPct": 36.390708755211435, "discountPct": 4.3478260869565215, "avgShipping": 0.0}, {"YearMonth": "2013-09", "IsFreeShipping": 0, "count": 703, "avgAOV": 34.200412756756755, "avgItems": 2.2162162162162162, "avgMargin": 100.0, "newPct": 34.70839260312945, "discountPct": 16.073968705547653, "avgShipping": 3.3421052631578947}, {"YearMonth": "2013-09", "IsFreeShipping": 1, "count": 1955, "avgAOV": 22.23818736675192, "avgItems": 1.620460358056266, "avgMargin": 100.0, "newPct": 32.73657289002558, "discountPct": 18.36317135549872, "avgShipping": 0.0}, {"YearMonth": "2013-10", "IsFreeShipping": 0, "count": 559, "avgAOV": 32.713731211091236, "avgItems": 2.2379248658318427, "avgMargin": 100.0, "newPct": 40.9660107334526, "discountPct": 8.94454382826476, "avgShipping": 3.298747763864043}, {"YearMonth": "2013-10", "IsFreeShipping": 1, "count": 1709, "avgAOV": 20.973628473376245, "avgItems": 1.5517846693973083, "avgMargin": 100.0, "newPct": 34.05500292568754, "discountPct": 10.356933879461673, "avgShipping": 0.0}, {"YearMonth": "2013-11", "IsFreeShipping": 0, "count": 673, "avgAOV": 36.182971882615156, "avgItems": 2.3789004457652303, "avgMargin": 100.0, "newPct": 35.51263001485884, "discountPct": 25.705794947994054, "avgShipping": 3.2830609212481425}, {"YearMonth": "2013-11", "IsFreeShipping": 1, "count": 2164, "avgAOV": 21.736588506469502, "avgItems": 1.6206099815157116, "avgMargin": 100.0, "newPct": 30.31423290203327, "discountPct": 33.78003696857671, "avgShipping": 0.0}, {"YearMonth": "2013-12", "IsFreeShipping": 0, "count": 489, "avgAOV": 34.78967936605317, "avgItems": 2.216768916155419, "avgMargin": 100.0, "newPct": 40.695296523517385, "discountPct": 11.247443762781186, "avgShipping": 3.4243353783231085}, {"YearMonth": "2013-12", "IsFreeShipping": 1, "count": 1627, "avgAOV": 21.11910442224954, "avgItems": 1.5673017824216349, "avgMargin": 100.0, "newPct": 36.32452366318377, "discountPct": 23.1100184388445, "avgShipping": 0.0}, {"YearMonth": "2014-01", "IsFreeShipping": 0, "count": 848, "avgAOV": 35.31833062028302, "avgItems": 2.438679245283019, "avgMargin": 100.0, "newPct": 33.0188679245283, "discountPct": 51.41509433962265, "avgShipping": 3.3685141509433962}, {"YearMonth": "2014-01", "IsFreeShipping": 1, "count": 2885, "avgAOV": 21.7974375372617, "avgItems": 1.6734835355285962, "avgMargin": 100.0, "newPct": 30.25996533795494, "discountPct": 60.13864818024264, "avgShipping": 0.0}, {"YearMonth": "2014-02", "IsFreeShipping": 0, "count": 701, "avgAOV": 31.31555563195435, "avgItems": 2.057061340941512, "avgMargin": 100.0, "newPct": 41.08416547788873, "discountPct": 24.10841654778887, "avgShipping": 3.3559201141226818}, {"YearMonth": "2014-02", "IsFreeShipping": 1, "count": 1966, "avgAOV": 20.458093635300102, "avgItems": 1.5437436419125128, "avgMargin": 100.0, "newPct": 35.55442522889115, "discountPct": 30.111902339776197, "avgShipping": 0.0}, {"YearMonth": "2014-03", "IsFreeShipping": 0, "count": 764, "avgAOV": 33.7535212421466, "avgItems": 2.229057591623037, "avgMargin": 100.0, "newPct": 40.05235602094241, "discountPct": 33.638743455497384, "avgShipping": 3.3468586387434556}, {"YearMonth": "2014-03", "IsFreeShipping": 1, "count": 2359, "avgAOV": 20.209792387876217, "avgItems": 1.5442984315387875, "avgMargin": 100.0, "newPct": 36.58329800763035, "discountPct": 42.645188639253924, "avgShipping": 0.0}, {"YearMonth": "2014-04", "IsFreeShipping": 0, "count": 675, "avgAOV": 32.48250232148148, "avgItems": 2.136296296296296, "avgMargin": 100.0, "newPct": 37.18518518518519, "discountPct": 30.37037037037037, "avgShipping": 3.3222222222222224}, {"YearMonth": "2014-04", "IsFreeShipping": 1, "count": 2171, "avgAOV": 21.43761588484569, "avgItems": 1.5776140027637033, "avgMargin": 100.0, "newPct": 31.183786273606636, "discountPct": 38.69184707508061, "avgShipping": 0.0}, {"YearMonth": "2014-05", "IsFreeShipping": 0, "count": 695, "avgAOV": 34.187885233093525, "avgItems": 2.2633093525179855, "avgMargin": 100.0, "newPct": 37.55395683453238, "discountPct": 18.705035971223023, "avgShipping": 3.310071942446043}, {"YearMonth": "2014-05", "IsFreeShipping": 1, "count": 2048, "avgAOV": 21.3616865234375, "avgItems": 1.560546875, "avgMargin": 100.0, "newPct": 36.279296875, "discountPct": 23.046875, "avgShipping": 0.0}, {"YearMonth": "2014-06", "IsFreeShipping": 0, "count": 654, "avgAOV": 32.18997749541284, "avgItems": 2.067278287461774, "avgMargin": 100.0, "newPct": 38.68501529051988, "discountPct": 21.406727828746178, "avgShipping": 3.340978593272171}, {"YearMonth": "2014-06", "IsFreeShipping": 1, "count": 2040, "avgAOV": 21.613463066666665, "avgItems": 1.6034313725490197, "avgMargin": 100.0, "newPct": 32.450980392156865, "discountPct": 27.84313725490196, "avgShipping": 0.0}, {"YearMonth": "2014-07", "IsFreeShipping": 0, "count": 665, "avgAOV": 36.503359730827064, "avgItems": 2.3759398496240602, "avgMargin": 100.0, "newPct": 35.6390977443609, "discountPct": 23.157894736842106, "avgShipping": 3.381203007518797}, {"YearMonth": "2014-07", "IsFreeShipping": 1, "count": 2235, "avgAOV": 22.291397250111856, "avgItems": 1.6165548098434004, "avgMargin": 100.0, "newPct": 27.248322147651006, "discountPct": 29.12751677852349, "avgShipping": 0.0}, {"YearMonth": "2014-08", "IsFreeShipping": 0, "count": 666, "avgAOV": 34.60719172522523, "avgItems": 2.2717717717717716, "avgMargin": 100.0, "newPct": 38.288288288288285, "discountPct": 20.12012012012012, "avgShipping": 3.445195195195195}, {"YearMonth": "2014-08", "IsFreeShipping": 1, "count": 2111, "avgAOV": 21.645613809568925, "avgItems": 1.5940312648034107, "avgMargin": 100.0, "newPct": 32.11747986736144, "discountPct": 26.101373756513503, "avgShipping": 0.0}, {"YearMonth": "2014-09", "IsFreeShipping": 0, "count": 685, "avgAOV": 32.979984402919705, "avgItems": 2.0802919708029197, "avgMargin": 100.0, "newPct": 39.85401459854015, "discountPct": 22.773722627737225, "avgShipping": 3.3313868613138684}, {"YearMonth": "2014-09", "IsFreeShipping": 1, "count": 2326, "avgAOV": 21.80315516423044, "avgItems": 1.609200343938091, "avgMargin": 100.0, "newPct": 32.158211521926056, "discountPct": 26.354256233877905, "avgShipping": 0.0}, {"YearMonth": "2014-10", "IsFreeShipping": 0, "count": 709, "avgAOV": 34.83153801974612, "avgItems": 2.2736248236953456, "avgMargin": 100.0, "newPct": 41.607898448519045, "discountPct": 17.77150916784203, "avgShipping": 3.293370944992948}, {"YearMonth": "2014-10", "IsFreeShipping": 1, "count": 2163, "avgAOV": 23.14058197734628, "avgItems": 1.6782246879334257, "avgMargin": 100.0, "newPct": 35.18261673601479, "discountPct": 20.527045769764214, "avgShipping": 0.0}, {"YearMonth": "2014-11", "IsFreeShipping": 0, "count": 748, "avgAOV": 35.723654058823534, "avgItems": 2.463903743315508, "avgMargin": 100.0, "newPct": 31.016042780748666, "discountPct": 26.60427807486631, "avgShipping": 3.2627005347593583}, {"YearMonth": "2014-11", "IsFreeShipping": 1, "count": 2197, "avgAOV": 22.264931986800182, "avgItems": 1.6181156121984523, "avgMargin": 100.0, "newPct": 28.311333636777427, "discountPct": 34.59262630860264, "avgShipping": 0.0}, {"YearMonth": "2014-12", "IsFreeShipping": 0, "count": 505, "avgAOV": 34.33698378415842, "avgItems": 2.227722772277228, "avgMargin": 100.0, "newPct": 35.64356435643564, "discountPct": 27.12871287128713, "avgShipping": 3.3455445544554454}, {"YearMonth": "2014-12", "IsFreeShipping": 1, "count": 1753, "avgAOV": 22.878526861950938, "avgItems": 1.6069594980034227, "avgMargin": 100.0, "newPct": 27.49572162007986, "discountPct": 38.90473474044495, "avgShipping": 0.0}, {"YearMonth": "2015-01", "IsFreeShipping": 0, "count": 1080, "avgAOV": 39.071424604629634, "avgItems": 2.598148148148148, "avgMargin": 100.0, "newPct": 28.796296296296298, "discountPct": 55.27777777777778, "avgShipping": 3.399259259259259}, {"YearMonth": "2015-01", "IsFreeShipping": 1, "count": 3552, "avgAOV": 23.548840666103604, "avgItems": 1.7657657657657657, "avgMargin": 100.0, "newPct": 23.789414414414413, "discountPct": 64.89301801801803, "avgShipping": 0.0}, {"YearMonth": "2015-02", "IsFreeShipping": 0, "count": 612, "avgAOV": 34.48500744444444, "avgItems": 2.168300653594771, "avgMargin": 100.0, "newPct": 36.27450980392157, "discountPct": 2.287581699346405, "avgShipping": 3.25}, {"YearMonth": "2015-02", "IsFreeShipping": 1, "count": 1792, "avgAOV": 22.863226986607142, "avgItems": 1.5881696428571428, "avgMargin": 100.0, "newPct": 30.636160714285715, "discountPct": 4.520089285714286, "avgShipping": 0.0}, {"YearMonth": "2015-03", "IsFreeShipping": 0, "count": 831, "avgAOV": 34.60559699277979, "avgItems": 2.2623345367027676, "avgMargin": 100.0, "newPct": 32.731648616125156, "discountPct": 46.32972322503009, "avgShipping": 3.308664259927798}, {"YearMonth": "2015-03", "IsFreeShipping": 1, "count": 2706, "avgAOV": 22.500591518847006, "avgItems": 1.6943828529194382, "avgMargin": 100.0, "newPct": 25.757575757575758, "discountPct": 61.492978566149304, "avgShipping": 0.0}, {"YearMonth": "2015-04", "IsFreeShipping": 0, "count": 731, "avgAOV": 32.64816868946649, "avgItems": 2.140902872777018, "avgMargin": 64.44334630891066, "newPct": 35.43091655266758, "discountPct": 24.76060191518468, "avgShipping": 3.271545827633379}, {"YearMonth": "2015-04", "IsFreeShipping": 1, "count": 2101, "avgAOV": 21.59103830985245, "avgItems": 1.5654450261780104, "avgMargin": 65.95756109785678, "newPct": 27.558305568776774, "discountPct": 37.3155640171347, "avgShipping": 0.0}, {"YearMonth": "2015-05", "IsFreeShipping": 0, "count": 628, "avgAOV": 35.92326892197452, "avgItems": 2.2754777070063694, "avgMargin": 62.20303278288081, "newPct": 33.43949044585987, "discountPct": 30.254777070063692, "avgShipping": 3.289808917197452}, {"YearMonth": "2015-05", "IsFreeShipping": 1, "count": 1986, "avgAOV": 23.580074324269887, "avgItems": 1.690332326283988, "avgMargin": 62.00904396811035, "newPct": 28.95266868076536, "discountPct": 40.6344410876133, "avgShipping": 0.0}, {"YearMonth": "2015-06", "IsFreeShipping": 0, "count": 688, "avgAOV": 36.79240746511628, "avgItems": 2.292151162790698, "avgMargin": 61.24644169183986, "newPct": 27.906976744186046, "discountPct": 42.151162790697676, "avgShipping": 3.3430232558139537}, {"YearMonth": "2015-06", "IsFreeShipping": 1, "count": 2172, "avgAOV": 23.336235148710866, "avgItems": 1.6197053406998159, "avgMargin": 62.328791772410156, "newPct": 22.05340699815838, "discountPct": 60.17495395948435, "avgShipping": 0.0}, {"YearMonth": "2015-07", "IsFreeShipping": 0, "count": 792, "avgAOV": 31.35073136111111, "avgItems": 1.994949494949495, "avgMargin": 62.42072527510368, "newPct": 36.23737373737374, "discountPct": 18.181818181818183, "avgShipping": 3.033459595959596}, {"YearMonth": "2015-07", "IsFreeShipping": 1, "count": 1830, "avgAOV": 21.899061439890712, "avgItems": 1.5617486338797815, "avgMargin": 63.3249719039983, "newPct": 30.491803278688522, "discountPct": 30.05464480874317, "avgShipping": 0.0}, {"YearMonth": "2015-08", "IsFreeShipping": 0, "count": 1039, "avgAOV": 32.26321751973051, "avgItems": 2.1251203079884506, "avgMargin": 61.86897742539198, "newPct": 32.435033686236764, "discountPct": 39.07603464870068, "avgShipping": 2.965832531280077}, {"YearMonth": "2015-08", "IsFreeShipping": 1, "count": 1783, "avgAOV": 22.90666670555244, "avgItems": 1.6696578799775659, "avgMargin": 62.25818721937351, "newPct": 27.53785754346607, "discountPct": 55.24397083567022, "avgShipping": 0.0}, {"YearMonth": "2015-09", "IsFreeShipping": 0, "count": 1046, "avgAOV": 34.965873217017204, "avgItems": 2.254302103250478, "avgMargin": 58.640189345690466, "newPct": 27.724665391969406, "discountPct": 8.604206500956023, "avgShipping": 3.0693116634799233}, {"YearMonth": "2015-09", "IsFreeShipping": 1, "count": 2109, "avgAOV": 22.795888481744903, "avgItems": 1.694642010431484, "avgMargin": 59.341114550205276, "newPct": 21.526789947842577, "discountPct": 16.73779042200095, "avgShipping": 0.0}, {"YearMonth": "2015-10", "IsFreeShipping": 0, "count": 755, "avgAOV": 34.00785309006623, "avgItems": 2.3178807947019866, "avgMargin": 60.269281926122815, "newPct": 31.788079470198678, "discountPct": 5.695364238410596, "avgShipping": 3.06158940397351}, {"YearMonth": "2015-10", "IsFreeShipping": 1, "count": 1753, "avgAOV": 22.597932557900744, "avgItems": 1.6668568168853395, "avgMargin": 59.704781147365544, "newPct": 25.042783799201366, "discountPct": 11.865373645179691, "avgShipping": 0.0}, {"YearMonth": "2015-11", "IsFreeShipping": 0, "count": 791, "avgAOV": 34.04549790897598, "avgItems": 2.1125158027812896, "avgMargin": 61.93266952091937, "newPct": 26.67509481668774, "discountPct": 43.994943109987354, "avgShipping": 3.1289506953223767}, {"YearMonth": "2015-11", "IsFreeShipping": 1, "count": 1955, "avgAOV": 23.937073432225066, "avgItems": 1.70076726342711, "avgMargin": 62.56694013986735, "newPct": 21.483375959079286, "discountPct": 56.77749360613811, "avgShipping": 0.0}, {"YearMonth": "2015-12", "IsFreeShipping": 0, "count": 609, "avgAOV": 36.06719297372742, "avgItems": 2.3645320197044337, "avgMargin": 59.52722452973262, "newPct": 28.735632183908045, "discountPct": 7.8817733990147785, "avgShipping": 3.1921182266009853}, {"YearMonth": "2015-12", "IsFreeShipping": 1, "count": 2015, "avgAOV": 23.33004068337469, "avgItems": 1.7126550868486352, "avgMargin": 59.49240431174943, "newPct": 22.679900744416873, "discountPct": 10.521091811414392, "avgShipping": 0.0}, {"YearMonth": "2016-01", "IsFreeShipping": 0, "count": 1270, "avgAOV": 33.67126489842519, "avgItems": 2.335433070866142, "avgMargin": 54.913861706018814, "newPct": 32.36220472440945, "discountPct": 10.866141732283465, "avgShipping": 3.141732283464567}, {"YearMonth": "2016-01", "IsFreeShipping": 1, "count": 3261, "avgAOV": 23.14505739190432, "avgItems": 1.7979147500766637, "avgMargin": 56.607473726501745, "newPct": 27.16957988347133, "discountPct": 14.351425942962281, "avgShipping": 0.0}, {"YearMonth": "2016-02", "IsFreeShipping": 0, "count": 644, "avgAOV": 34.22036652795031, "avgItems": 2.130434782608696, "avgMargin": 62.64400878551665, "newPct": 36.80124223602485, "discountPct": 13.354037267080745, "avgShipping": 3.0652173913043477}, {"YearMonth": "2016-02", "IsFreeShipping": 1, "count": 1535, "avgAOV": 22.35222474723127, "avgItems": 1.6488599348534203, "avgMargin": 63.0566645410285, "newPct": 25.0814332247557, "discountPct": 17.52442996742671, "avgShipping": 0.0}, {"YearMonth": "2016-03", "IsFreeShipping": 0, "count": 961, "avgAOV": 35.06488699167534, "avgItems": 2.2809573361082207, "avgMargin": 61.382818396900994, "newPct": 24.141519250780437, "discountPct": 41.62330905306972, "avgShipping": 3.1477627471383975}, {"YearMonth": "2016-03", "IsFreeShipping": 1, "count": 2200, "avgAOV": 24.13276830272727, "avgItems": 1.770909090909091, "avgMargin": 61.746293390920854, "newPct": 17.909090909090907, "discountPct": 52.90909090909091, "avgShipping": 0.0}, {"YearMonth": "2016-04", "IsFreeShipping": 0, "count": 894, "avgAOV": 33.76271742170022, "avgItems": 2.197986577181208, "avgMargin": 60.36572983155722, "newPct": 32.774049217002236, "discountPct": 23.37807606263982, "avgShipping": 3.079977628635347}, {"YearMonth": "2016-04", "IsFreeShipping": 1, "count": 2035, "avgAOV": 22.589190798034398, "avgItems": 1.713022113022113, "avgMargin": 61.84003771399067, "newPct": 24.815724815724817, "discountPct": 31.79361179361179, "avgShipping": 0.0}, {"YearMonth": "2016-05", "IsFreeShipping": 0, "count": 766, "avgAOV": 33.00894362924282, "avgItems": 2.224543080939948, "avgMargin": 60.40682153591916, "newPct": 28.459530026109658, "discountPct": 20.626631853785902, "avgShipping": 3.1109660574412534}, {"YearMonth": "2016-05", "IsFreeShipping": 1, "count": 1824, "avgAOV": 23.00349649835526, "avgItems": 1.662828947368421, "avgMargin": 60.945886604202855, "newPct": 21.820175438596493, "discountPct": 28.45394736842105, "avgShipping": 0.0}, {"YearMonth": "2016-06", "IsFreeShipping": 0, "count": 839, "avgAOV": 33.25906801191895, "avgItems": 2.2085816448152564, "avgMargin": 61.102449448445235, "newPct": 28.96305125148987, "discountPct": 44.69606674612634, "avgShipping": 3.0315852205005958}, {"YearMonth": "2016-06", "IsFreeShipping": 1, "count": 1910, "avgAOV": 23.34142947696335, "avgItems": 1.7455497382198952, "avgMargin": 60.948850149445406, "newPct": 22.460732984293195, "discountPct": 55.75916230366492, "avgShipping": 0.0}, {"YearMonth": "2016-07", "IsFreeShipping": 0, "count": 740, "avgAOV": 31.8268293, "avgItems": 1.9783783783783784, "avgMargin": 60.03616559624412, "newPct": 33.108108108108105, "discountPct": 19.324324324324323, "avgShipping": 3.1681081081081084}, {"YearMonth": "2016-07", "IsFreeShipping": 1, "count": 1753, "avgAOV": 22.62895580889903, "avgItems": 1.6468910439247004, "avgMargin": 61.718452972025744, "newPct": 24.01597261836851, "discountPct": 26.640045636052484, "avgShipping": 0.0}, {"YearMonth": "2016-08", "IsFreeShipping": 0, "count": 1022, "avgAOV": 35.964332181996085, "avgItems": 2.344422700587084, "avgMargin": 57.42025532938152, "newPct": 25.73385518590998, "discountPct": 3.326810176125244, "avgShipping": 3.0885518590998045}, {"YearMonth": "2016-08", "IsFreeShipping": 1, "count": 2254, "avgAOV": 24.3688031202307, "avgItems": 1.7599822537710736, "avgMargin": 58.09242692945205, "newPct": 19.343389529724934, "discountPct": 4.880212954747116, "avgShipping": 0.0}, {"YearMonth": "2016-09", "IsFreeShipping": 0, "count": 870, "avgAOV": 31.20112000574713, "avgItems": 2.1620689655172414, "avgMargin": 58.0846899514426, "newPct": 31.03448275862069, "discountPct": 14.482758620689657, "avgShipping": 3.032183908045977}, {"YearMonth": "2016-09", "IsFreeShipping": 1, "count": 1987, "avgAOV": 22.18621188022144, "avgItems": 1.692501258178158, "avgMargin": 58.326717019379785, "newPct": 26.17010568696527, "discountPct": 19.979869149471565, "avgShipping": 0.0}, {"YearMonth": "2016-10", "IsFreeShipping": 0, "count": 914, "avgAOV": 32.82517735557987, "avgItems": 2.199124726477024, "avgMargin": 56.742914651465234, "newPct": 35.776805251641136, "discountPct": 25.164113785557984, "avgShipping": 3.0919037199124726}, {"YearMonth": "2016-10", "IsFreeShipping": 1, "count": 2081, "avgAOV": 22.28208495675156, "avgItems": 1.7059106198942815, "avgMargin": 58.725486047125266, "newPct": 27.294569918308504, "discountPct": 33.34935127342624, "avgShipping": 0.0}, {"YearMonth": "2016-11", "IsFreeShipping": 0, "count": 960, "avgAOV": 34.57118814270834, "avgItems": 2.3875, "avgMargin": 58.96179892374098, "newPct": 27.8125, "discountPct": 35.208333333333336, "avgShipping": 3.103645833333333}, {"YearMonth": "2016-11", "IsFreeShipping": 1, "count": 2432, "avgAOV": 24.072543672697368, "avgItems": 1.8055098684210527, "avgMargin": 59.73947258401581, "newPct": 21.340460526315788, "discountPct": 44.53125, "avgShipping": 0.0}, {"YearMonth": "2016-12", "IsFreeShipping": 0, "count": 625, "avgAOV": 34.415462991999995, "avgItems": 2.2432, "avgMargin": 60.421101650450645, "newPct": 37.6, "discountPct": 20.96, "avgShipping": 3.22912}, {"YearMonth": "2016-12", "IsFreeShipping": 1, "count": 1945, "avgAOV": 24.286143908997428, "avgItems": 1.7609254498714653, "avgMargin": 60.065222031902614, "newPct": 28.32904884318766, "discountPct": 16.812339331619537, "avgShipping": 0.0}, {"YearMonth": "2017-01", "IsFreeShipping": 0, "count": 1489, "avgAOV": 31.033136221625252, "avgItems": 2.1692411014103423, "avgMargin": 56.92569844640275, "newPct": 42.51175285426461, "discountPct": 39.153794492948286, "avgShipping": 2.8700470114170584}, {"YearMonth": "2017-01", "IsFreeShipping": 1, "count": 3631, "avgAOV": 22.157102603690443, "avgItems": 1.7380886808041862, "avgMargin": 58.572552983782316, "newPct": 31.919581382539246, "discountPct": 55.356651060313965, "avgShipping": 0.0}, {"YearMonth": "2017-02", "IsFreeShipping": 0, "count": 1074, "avgAOV": 29.098100472067042, "avgItems": 2.0679702048417132, "avgMargin": 58.11732026658185, "newPct": 47.39292364990689, "discountPct": 19.553072625698324, "avgShipping": 2.452979515828678}, {"YearMonth": "2017-02", "IsFreeShipping": 1, "count": 2379, "avgAOV": 20.487309715006305, "avgItems": 1.6153846153846154, "avgMargin": 59.3020620629898, "newPct": 39.722572509457756, "discountPct": 26.229508196721312, "avgShipping": 0.0}, {"YearMonth": "2017-03", "IsFreeShipping": 0, "count": 1362, "avgAOV": 29.663443353891335, "avgItems": 2.0146842878120412, "avgMargin": 58.25816311045295, "newPct": 43.68575624082232, "discountPct": 27.09251101321586, "avgShipping": 2.43208516886931}, {"YearMonth": "2017-03", "IsFreeShipping": 1, "count": 2664, "avgAOV": 21.894132798048048, "avgItems": 1.6238738738738738, "avgMargin": 58.895789570916975, "newPct": 35.92342342342342, "discountPct": 39.0015015015015, "avgShipping": 0.0}, {"YearMonth": "2017-04", "IsFreeShipping": 0, "count": 1076, "avgAOV": 29.674237832713757, "avgItems": 1.9405204460966543, "avgMargin": 58.869397405309925, "newPct": 46.84014869888476, "discountPct": 24.907063197026023, "avgShipping": 2.434479553903346}, {"YearMonth": "2017-04", "IsFreeShipping": 1, "count": 2252, "avgAOV": 22.54515533880995, "avgItems": 1.6674067495559504, "avgMargin": 60.183867041954834, "newPct": 35.74600355239787, "discountPct": 35.39076376554174, "avgShipping": 0.0}, {"YearMonth": "2017-05", "IsFreeShipping": 0, "count": 1353, "avgAOV": 30.891662701404286, "avgItems": 2.008869179600887, "avgMargin": 60.351617189786666, "newPct": 38.063562453806355, "discountPct": 31.781226903178123, "avgShipping": 2.485218033998522}, {"YearMonth": "2017-05", "IsFreeShipping": 1, "count": 2673, "avgAOV": 22.294979222222224, "avgItems": 1.6453423120089787, "avgMargin": 60.77785395089189, "newPct": 29.143284698840255, "discountPct": 42.42424242424242, "avgShipping": 0.0}, {"YearMonth": "2017-06", "IsFreeShipping": 0, "count": 1101, "avgAOV": 29.4560306448683, "avgItems": 1.8201634877384196, "avgMargin": 59.564211026746825, "newPct": 46.321525885558586, "discountPct": 8.628519527702089, "avgShipping": 2.4377838328792008}, {"YearMonth": "2017-06", "IsFreeShipping": 1, "count": 2199, "avgAOV": 22.12091837062301, "avgItems": 1.559799909049568, "avgMargin": 60.74479818045366, "newPct": 37.28967712596635, "discountPct": 15.779899954524785, "avgShipping": 0.0}, {"YearMonth": "2017-07", "IsFreeShipping": 0, "count": 1563, "avgAOV": 32.27692872296865, "avgItems": 2.143953934740883, "avgMargin": 60.079207699211764, "newPct": 39.79526551503519, "discountPct": 30.838131797824698, "avgShipping": 2.4417786308381317}, {"YearMonth": "2017-07", "IsFreeShipping": 1, "count": 3570, "avgAOV": 26.02265517254902, "avgItems": 1.9375350140056022, "avgMargin": 60.56619441042964, "newPct": 28.739495798319325, "discountPct": 47.675070028011206, "avgShipping": 0.0}, {"YearMonth": "2017-08", "IsFreeShipping": 0, "count": 1311, "avgAOV": 29.167085940503434, "avgItems": 1.860411899313501, "avgMargin": 60.00371870675827, "newPct": 46.98703279938978, "discountPct": 17.696414950419527, "avgShipping": 2.4900839054157133}, {"YearMonth": "2017-08", "IsFreeShipping": 1, "count": 2628, "avgAOV": 22.647731873287672, "avgItems": 1.6278538812785388, "avgMargin": 60.39071257422576, "newPct": 34.47488584474886, "discountPct": 30.74581430745814, "avgShipping": 0.0}, {"YearMonth": "2017-09", "IsFreeShipping": 0, "count": 1335, "avgAOV": 29.306157053932584, "avgItems": 1.844194756554307, "avgMargin": 59.820776241099985, "newPct": 50.0374531835206, "discountPct": 10.187265917602996, "avgShipping": 2.4647940074906365}, {"YearMonth": "2017-09", "IsFreeShipping": 1, "count": 2593, "avgAOV": 23.45434605360586, "avgItems": 1.6355572695719245, "avgMargin": 60.72576843359823, "newPct": 37.639799460084845, "discountPct": 18.54994215194755, "avgShipping": 0.0}, {"YearMonth": "2017-10", "IsFreeShipping": 0, "count": 1545, "avgAOV": 30.028776387702262, "avgItems": 1.935275080906149, "avgMargin": 59.53224503958039, "newPct": 47.18446601941748, "discountPct": 18.576051779935277, "avgShipping": 2.528155339805825}, {"YearMonth": "2017-10", "IsFreeShipping": 1, "count": 3527, "avgAOV": 23.186971691239012, "avgItems": 1.7161893960873262, "avgMargin": 60.742559749292724, "newPct": 30.876098667422742, "discountPct": 35.75276438899915, "avgShipping": 0.0}, {"YearMonth": "2017-11", "IsFreeShipping": 0, "count": 1641, "avgAOV": 31.25827512004875, "avgItems": 2.1553930530164536, "avgMargin": 59.79725396992331, "newPct": 39.061547836684944, "discountPct": 32.66301035953687, "avgShipping": 2.4457647775746496}, {"YearMonth": "2017-11", "IsFreeShipping": 1, "count": 3526, "avgAOV": 24.701264631026657, "avgItems": 1.8689733408961997, "avgMargin": 59.87860314000065, "newPct": 29.438457175269427, "discountPct": 48.97901304594441, "avgShipping": 0.0}, {"YearMonth": "2017-12", "IsFreeShipping": 0, "count": 927, "avgAOV": 31.262491645091693, "avgItems": 2.0852211434735706, "avgMargin": 59.509413696462936, "newPct": 40.88457389428263, "discountPct": 16.181229773462782, "avgShipping": 2.4158576051779934}, {"YearMonth": "2017-12", "IsFreeShipping": 1, "count": 2821, "avgAOV": 23.39968427118043, "avgItems": 1.750797589507267, "avgMargin": 59.65060587458301, "newPct": 32.50620347394541, "discountPct": 39.0641616448068, "avgShipping": 0.0}, {"YearMonth": "2018-01", "IsFreeShipping": 0, "count": 2251, "avgAOV": 30.082518709906708, "avgItems": 2.139049311417148, "avgMargin": 57.913338534323046, "newPct": 44.46912483340738, "discountPct": 52.06574855619724, "avgShipping": 2.4342514438027543}, {"YearMonth": "2018-01", "IsFreeShipping": 1, "count": 5961, "avgAOV": 24.691705916624727, "avgItems": 1.960912598557289, "avgMargin": 58.22558304773366, "newPct": 34.30632444220768, "discountPct": 70.8270424425432, "avgShipping": 0.0}, {"YearMonth": "2018-02", "IsFreeShipping": 0, "count": 1594, "avgAOV": 29.506963438519445, "avgItems": 2.028858218318695, "avgMargin": 58.153058383213775, "newPct": 50.0, "discountPct": 23.651191969887076, "avgShipping": 2.4507528230865745}, {"YearMonth": "2018-02", "IsFreeShipping": 1, "count": 3104, "avgAOV": 22.667184115335054, "avgItems": 1.7654639175257731, "avgMargin": 57.777711957835635, "newPct": 38.853092783505154, "discountPct": 35.30927835051546, "avgShipping": 0.0}, {"YearMonth": "2018-03", "IsFreeShipping": 0, "count": 1853, "avgAOV": 28.440447743119265, "avgItems": 1.9384781435509983, "avgMargin": 57.761438248268405, "newPct": 44.57636265515381, "discountPct": 25.25634106853751, "avgShipping": 2.447652455477604}, {"YearMonth": "2018-03", "IsFreeShipping": 1, "count": 3817, "avgAOV": 22.81825238354729, "avgItems": 1.7463976945244957, "avgMargin": 57.846933013534816, "newPct": 32.82682735132303, "discountPct": 39.53366518208017, "avgShipping": 0.0}, {"YearMonth": "2018-04", "IsFreeShipping": 0, "count": 1686, "avgAOV": 29.842028231316725, "avgItems": 2.001186239620403, "avgMargin": 58.697535311694, "newPct": 42.34875444839858, "discountPct": 22.419928825622776, "avgShipping": 2.456109134045077}, {"YearMonth": "2018-04", "IsFreeShipping": 1, "count": 3487, "avgAOV": 23.81248613765414, "avgItems": 1.8127330083166044, "avgMargin": 59.44847023269092, "newPct": 30.685402925150555, "discountPct": 41.86980212216805, "avgShipping": 0.0}, {"YearMonth": "2018-05", "IsFreeShipping": 0, "count": 1562, "avgAOV": 29.411779472471192, "avgItems": 1.9199743918053778, "avgMargin": 58.44610763047943, "newPct": 41.74135723431498, "discountPct": 18.758002560819463, "avgShipping": 2.4513444302176697}, {"YearMonth": "2018-05", "IsFreeShipping": 1, "count": 3354, "avgAOV": 24.632832166964818, "avgItems": 1.7748956469886703, "avgMargin": 58.470773229504175, "newPct": 28.17531305903399, "discountPct": 39.77340488968396, "avgShipping": 0.0}, {"YearMonth": "2018-06", "IsFreeShipping": 0, "count": 1534, "avgAOV": 31.24836993611473, "avgItems": 2.0045632333767927, "avgMargin": 59.180952142262434, "newPct": 38.591916558018255, "discountPct": 24.576271186440678, "avgShipping": 2.444915254237288}, {"YearMonth": "2018-06", "IsFreeShipping": 1, "count": 3266, "avgAOV": 23.02343204776485, "avgItems": 1.6659522351500307, "avgMargin": 60.08918222336286, "newPct": 28.291488058787507, "discountPct": 41.54929577464789, "avgShipping": 0.0}, {"YearMonth": "2018-07", "IsFreeShipping": 0, "count": 1529, "avgAOV": 31.726827722040547, "avgItems": 1.9574885546108567, "avgMargin": 61.6352559723724, "newPct": 40.483976455199475, "discountPct": 17.069980379332897, "avgShipping": 2.5166775670372794}, {"YearMonth": "2018-07", "IsFreeShipping": 1, "count": 2979, "avgAOV": 25.14687451191675, "avgItems": 1.7207116482040954, "avgMargin": 61.67000222056968, "newPct": 29.67438737831487, "discountPct": 32.39342061094327, "avgShipping": 0.0}, {"YearMonth": "2018-08", "IsFreeShipping": 0, "count": 1683, "avgAOV": 30.92295873262032, "avgItems": 1.9328579916815212, "avgMargin": 61.65798518136099, "newPct": 38.859180035650624, "discountPct": 25.193107546048722, "avgShipping": 2.464349376114082}, {"YearMonth": "2018-08", "IsFreeShipping": 1, "count": 3836, "avgAOV": 25.579754668143902, "avgItems": 1.8253388946819604, "avgMargin": 61.82425027689018, "newPct": 25.96454640250261, "discountPct": 52.16371220020854, "avgShipping": 0.0}, {"YearMonth": "2018-09", "IsFreeShipping": 0, "count": 1465, "avgAOV": 30.761378585665526, "avgItems": 1.9139931740614335, "avgMargin": 61.85910455357857, "newPct": 36.177474402730375, "discountPct": 25.25597269624573, "avgShipping": 2.474061433447099}, {"YearMonth": "2018-09", "IsFreeShipping": 1, "count": 2855, "avgAOV": 24.455765096672504, "avgItems": 1.7380035026269702, "avgMargin": 62.13084648349153, "newPct": 26.69001751313485, "discountPct": 44.09807355516637, "avgShipping": 0.0}, {"YearMonth": "2018-10", "IsFreeShipping": 0, "count": 1797, "avgAOV": 32.51043386533111, "avgItems": 2.005008347245409, "avgMargin": 60.774111557959934, "newPct": 31.552587646076795, "discountPct": 28.43628269337785, "avgShipping": 2.4148580968280466}, {"YearMonth": "2018-10", "IsFreeShipping": 1, "count": 3488, "avgAOV": 25.865728019208717, "avgItems": 1.7924311926605505, "avgMargin": 61.53022427922468, "newPct": 23.222477064220186, "discountPct": 42.25917431192661, "avgShipping": 0.0}, {"YearMonth": "2018-11", "IsFreeShipping": 0, "count": 1558, "avgAOV": 31.45747748331194, "avgItems": 1.985237483953787, "avgMargin": 62.39011182682741, "newPct": 34.403080872913996, "discountPct": 29.845956354300384, "avgShipping": 2.436777920410783}, {"YearMonth": "2018-11", "IsFreeShipping": 1, "count": 3341, "avgAOV": 25.91371744028734, "avgItems": 1.86979946123915, "avgMargin": 62.524427375951795, "newPct": 23.16671655193056, "discountPct": 52.439389404369955, "avgShipping": 0.0}, {"YearMonth": "2018-12", "IsFreeShipping": 0, "count": 1123, "avgAOV": 34.668512801424754, "avgItems": 2.266251113089938, "avgMargin": 61.88026332756308, "newPct": 25.022261798753338, "discountPct": 40.69456812110418, "avgShipping": 2.392252894033838}, {"YearMonth": "2018-12", "IsFreeShipping": 1, "count": 3390, "avgAOV": 25.142468949262536, "avgItems": 1.8297935103244838, "avgMargin": 61.93578811676176, "newPct": 23.03834808259587, "discountPct": 47.52212389380531, "avgShipping": 0.0}, {"YearMonth": "2019-01", "IsFreeShipping": 0, "count": 2224, "avgAOV": 32.655516931205035, "avgItems": 2.137140287769784, "avgMargin": 59.3504197003723, "newPct": 36.19604316546763, "discountPct": 47.706834532374096, "avgShipping": 2.4204136690647484}, {"YearMonth": "2019-01", "IsFreeShipping": 1, "count": 4811, "avgAOV": 26.448388903138643, "avgItems": 1.9143629183122013, "avgMargin": 59.40903091144594, "newPct": 24.98441072542091, "discountPct": 61.25545624610268, "avgShipping": 0.0}, {"YearMonth": "2019-02", "IsFreeShipping": 0, "count": 1505, "avgAOV": 31.874431659800667, "avgItems": 2.077076411960133, "avgMargin": 59.77702501206677, "newPct": 38.93687707641196, "discountPct": 18.33887043189369, "avgShipping": 2.4262458471760797}, {"YearMonth": "2019-02", "IsFreeShipping": 1, "count": 2646, "avgAOV": 25.28591058956916, "avgItems": 1.9410430839002268, "avgMargin": 59.956103726227155, "newPct": 29.176114890400605, "discountPct": 29.176114890400605, "avgShipping": 0.0}, {"YearMonth": "2019-03", "IsFreeShipping": 0, "count": 1552, "avgAOV": 32.999555200386595, "avgItems": 2.2454896907216493, "avgMargin": 60.41153767899815, "newPct": 33.118556701030926, "discountPct": 27.061855670103093, "avgShipping": 2.4565077319587627}, {"YearMonth": "2019-03", "IsFreeShipping": 1, "count": 2968, "avgAOV": 26.706650710242585, "avgItems": 2.1866576819407006, "avgMargin": 59.64477126952695, "newPct": 20.5188679245283, "discountPct": 40.599730458221025, "avgShipping": 0.0}, {"YearMonth": "2019-04", "IsFreeShipping": 0, "count": 1440, "avgAOV": 32.69106228541667, "avgItems": 2.0097222222222224, "avgMargin": 62.70735748491324, "newPct": 30.34722222222222, "discountPct": 38.88888888888889, "avgShipping": 2.464583333333333}, {"YearMonth": "2019-04", "IsFreeShipping": 1, "count": 2712, "avgAOV": 26.450574954277283, "avgItems": 1.7747050147492625, "avgMargin": 63.23673585737902, "newPct": 21.865781710914455, "discountPct": 49.96312684365782, "avgShipping": 0.0}, {"YearMonth": "2019-05", "IsFreeShipping": 0, "count": 1491, "avgAOV": 34.02297103890007, "avgItems": 1.9818913480885312, "avgMargin": 62.47662376720621, "newPct": 28.772635814889334, "discountPct": 35.8148893360161, "avgShipping": 2.419517102615694}, {"YearMonth": "2019-05", "IsFreeShipping": 1, "count": 2899, "avgAOV": 25.060034293894446, "avgItems": 1.6833390824422214, "avgMargin": 63.418019383669744, "newPct": 19.86892031735081, "discountPct": 52.845808899620565, "avgShipping": 0.0}, {"YearMonth": "2019-06", "IsFreeShipping": 0, "count": 1419, "avgAOV": 35.56524997815362, "avgItems": 2.2508809020436926, "avgMargin": 61.723208415436154, "newPct": 25.44045102184637, "discountPct": 21.071176885130374, "avgShipping": 2.4355179704016914}, {"YearMonth": "2019-06", "IsFreeShipping": 1, "count": 2757, "avgAOV": 27.169727698948133, "avgItems": 1.935437069278201, "avgMargin": 61.6275128612477, "newPct": 18.317011244105913, "discountPct": 32.13638012332245, "avgShipping": 0.0}, {"YearMonth": "2019-07", "IsFreeShipping": 0, "count": 1725, "avgAOV": 37.02983157797101, "avgItems": 3.086376811594203, "avgMargin": 56.17379715991241, "newPct": 21.15942028985507, "discountPct": 53.971014492753625, "avgShipping": 2.443768115942029}, {"YearMonth": "2019-07", "IsFreeShipping": 1, "count": 3499, "avgAOV": 31.662437536153185, "avgItems": 3.2263503858245213, "avgMargin": 53.97341934700039, "newPct": 13.718205201486139, "discountPct": 67.36210345813089, "avgShipping": 0.0}, {"YearMonth": "2019-08", "IsFreeShipping": 0, "count": 1082, "avgAOV": 32.840960975046215, "avgItems": 1.9205175600739373, "avgMargin": 63.30585686889435, "newPct": 30.129390018484287, "discountPct": 20.97966728280961, "avgShipping": 2.4551756007393717}, {"YearMonth": "2019-08", "IsFreeShipping": 1, "count": 2033, "avgAOV": 24.94680746335465, "avgItems": 1.644367929168716, "avgMargin": 63.85764767859697, "newPct": 19.57697983275947, "discountPct": 35.90752582390556, "avgShipping": 0.0}, {"YearMonth": "2019-09", "IsFreeShipping": 0, "count": 1474, "avgAOV": 34.050013635006785, "avgItems": 2.082089552238806, "avgMargin": 61.66492043866931, "newPct": 25.508819538670284, "discountPct": 48.846675712347356, "avgShipping": 2.4450474898236094}, {"YearMonth": "2019-09", "IsFreeShipping": 1, "count": 2787, "avgAOV": 25.588198840688914, "avgItems": 1.7954790096878364, "avgMargin": 62.42090013665502, "newPct": 16.110513096519554, "discountPct": 64.8367420165052, "avgShipping": 0.0}, {"YearMonth": "2019-10", "IsFreeShipping": 0, "count": 1453, "avgAOV": 34.71560889263593, "avgItems": 2.706125258086717, "avgMargin": 58.62384984712879, "newPct": 22.849277357192015, "discountPct": 36.88919476944253, "avgShipping": 2.4153475567790776}, {"YearMonth": "2019-10", "IsFreeShipping": 1, "count": 2793, "avgAOV": 29.14018594951665, "avgItems": 2.6222699606158253, "avgMargin": 58.328992166161406, "newPct": 17.221625492302184, "discountPct": 45.39921231650555, "avgShipping": 0.0}, {"YearMonth": "2019-11", "IsFreeShipping": 0, "count": 1340, "avgAOV": 33.462962478358214, "avgItems": 2.1328358208955223, "avgMargin": 64.00791319091765, "newPct": 22.01492537313433, "discountPct": 52.910447761194035, "avgShipping": 2.419402985074627}, {"YearMonth": "2019-11", "IsFreeShipping": 1, "count": 2640, "avgAOV": 26.419393689015152, "avgItems": 1.8208333333333333, "avgMargin": 64.69508606810011, "newPct": 13.825757575757574, "discountPct": 61.66666666666667, "avgShipping": 0.0}, {"YearMonth": "2019-12", "IsFreeShipping": 0, "count": 890, "avgAOV": 36.02371885505618, "avgItems": 2.398876404494382, "avgMargin": 62.86414324643196, "newPct": 20.56179775280899, "discountPct": 50.44943820224719, "avgShipping": 2.3882022471910114}, {"YearMonth": "2019-12", "IsFreeShipping": 1, "count": 2642, "avgAOV": 27.24796719076457, "avgItems": 2.2316426949280848, "avgMargin": 61.463202200268306, "newPct": 16.464799394398185, "discountPct": 57.607872823618465, "avgShipping": 0.0}, {"YearMonth": "2020-01", "IsFreeShipping": 0, "count": 1785, "avgAOV": 35.335209853781514, "avgItems": 2.954621848739496, "avgMargin": 57.781206287786475, "newPct": 23.025210084033613, "discountPct": 71.5406162464986, "avgShipping": 2.3896358543417366}, {"YearMonth": "2020-01", "IsFreeShipping": 1, "count": 3928, "avgAOV": 27.872443742107944, "avgItems": 2.8070264765784114, "avgMargin": 57.56275798026253, "newPct": 13.64562118126273, "discountPct": 81.89918533604889, "avgShipping": 0.0}, {"YearMonth": "2020-02", "IsFreeShipping": 0, "count": 917, "avgAOV": 32.60960715921483, "avgItems": 2.015267175572519, "avgMargin": 62.8111170854655, "newPct": 33.36968375136314, "discountPct": 11.886586695747, "avgShipping": 2.484732824427481}, {"YearMonth": "2020-02", "IsFreeShipping": 1, "count": 1603, "avgAOV": 23.234304189020584, "avgItems": 1.6132252027448535, "avgMargin": 63.67104294937271, "newPct": 24.64129756706176, "discountPct": 21.210230817217717, "avgShipping": 0.0}, {"YearMonth": "2020-03", "IsFreeShipping": 0, "count": 2003, "avgAOV": 32.04764838691962, "avgItems": 2.2421367948077884, "avgMargin": 60.10854742713739, "newPct": 37.393909136295555, "discountPct": 6.2905641537693455, "avgShipping": 2.4987518721917126}, {"YearMonth": "2020-03", "IsFreeShipping": 1, "count": 3189, "avgAOV": 25.422768724365003, "avgItems": 1.8861712135465662, "avgMargin": 59.532700301827035, "newPct": 23.76920664785199, "discountPct": 13.98557541549075, "avgShipping": 0.0}, {"YearMonth": "2020-04", "IsFreeShipping": 0, "count": 3036, "avgAOV": 25.0991764588274, "avgItems": 2.1752305665349145, "avgMargin": 63.24191755531438, "newPct": 55.86297760210803, "discountPct": 4.841897233201581, "avgShipping": 2.5191040843214756}, {"YearMonth": "2020-04", "IsFreeShipping": 1, "count": 3839, "avgAOV": 20.814784964574105, "avgItems": 1.9921854649648345, "avgMargin": 62.62121436296629, "newPct": 41.28679343579057, "discountPct": 11.09663974993488, "avgShipping": 0.0}, {"YearMonth": "2020-05", "IsFreeShipping": 0, "count": 2621, "avgAOV": 26.441533635635256, "avgItems": 2.292254864555513, "avgMargin": 62.56620084679871, "newPct": 47.615413964135826, "discountPct": 10.530331934376193, "avgShipping": 2.5020984357115603}, {"YearMonth": "2020-05", "IsFreeShipping": 1, "count": 3615, "avgAOV": 21.099452144398338, "avgItems": 2.0213001383125864, "avgMargin": 62.35475056664246, "newPct": 39.39142461964039, "discountPct": 18.616874135546336, "avgShipping": 0.0}, {"YearMonth": "2020-06", "IsFreeShipping": 0, "count": 2351, "avgAOV": 28.243581324968098, "avgItems": 2.1799234368353892, "avgMargin": 60.325625985858224, "newPct": 42.45002126754572, "discountPct": 19.39600170140366, "avgShipping": 2.483411314334326}, {"YearMonth": "2020-06", "IsFreeShipping": 1, "count": 3632, "avgAOV": 23.3991353188326, "avgItems": 2.0435022026431717, "avgMargin": 60.34013410417731, "newPct": 29.625550660792953, "discountPct": 33.92070484581498, "avgShipping": 0.0}, {"YearMonth": "2020-07", "IsFreeShipping": 0, "count": 2303, "avgAOV": 29.637390198871035, "avgItems": 2.004776378636561, "avgMargin": 59.77741248920285, "newPct": 40.90316977854972, "discountPct": 23.751628310898827, "avgShipping": 2.4830655666521926}, {"YearMonth": "2020-07", "IsFreeShipping": 1, "count": 3444, "avgAOV": 24.733022461962832, "avgItems": 1.8704994192799071, "avgMargin": 60.004368711645945, "newPct": 26.451800232288036, "discountPct": 37.07897793263647, "avgShipping": 0.0}, {"YearMonth": "2020-08", "IsFreeShipping": 0, "count": 2243, "avgAOV": 30.91979916941596, "avgItems": 2.0227374052608114, "avgMargin": 58.691388748803696, "newPct": 36.82567989300045, "discountPct": 19.92866696388765, "avgShipping": 2.458537672759697}, {"YearMonth": "2020-08", "IsFreeShipping": 1, "count": 3415, "avgAOV": 25.72211402196193, "avgItems": 1.8336749633967788, "avgMargin": 58.78611715465487, "newPct": 25.91508052708638, "discountPct": 28.228404099560763, "avgShipping": 0.0}, {"YearMonth": "2020-09", "IsFreeShipping": 0, "count": 1756, "avgAOV": 29.76308070785877, "avgItems": 2.046127562642369, "avgMargin": 61.102115367343615, "newPct": 41.74259681093394, "discountPct": 18.45102505694761, "avgShipping": 2.4769362186788153}, {"YearMonth": "2020-09", "IsFreeShipping": 1, "count": 3161, "avgAOV": 24.242024547927873, "avgItems": 1.8456184751660867, "avgMargin": 60.51729451604759, "newPct": 33.85004745333755, "discountPct": 23.062322049984182, "avgShipping": 0.0}, {"YearMonth": "2020-10", "IsFreeShipping": 0, "count": 3160, "avgAOV": 28.190284678797468, "avgItems": 2.008227848101266, "avgMargin": 62.14488642275926, "newPct": 44.5253164556962, "discountPct": 18.132911392405063, "avgShipping": 2.4674050632911393}, {"YearMonth": "2020-10", "IsFreeShipping": 1, "count": 4797, "avgAOV": 22.417400324160933, "avgItems": 1.77944548676256, "avgMargin": 61.74728986062908, "newPct": 33.35417969564311, "discountPct": 29.560141755263707, "avgShipping": 0.0}, {"YearMonth": "2020-11", "IsFreeShipping": 0, "count": 3056, "avgAOV": 28.18072961125654, "avgItems": 2.037958115183246, "avgMargin": 62.23526668308156, "newPct": 44.92801047120419, "discountPct": 20.222513089005236, "avgShipping": 2.476276178010471}, {"YearMonth": "2020-11", "IsFreeShipping": 1, "count": 4345, "avgAOV": 21.433631656386652, "avgItems": 1.7339470655926352, "avgMargin": 61.95916621385976, "newPct": 37.79056386651323, "discountPct": 28.055235903337167, "avgShipping": 0.0}, {"YearMonth": "2020-12", "IsFreeShipping": 0, "count": 2834, "avgAOV": 28.77393421912491, "avgItems": 2.0070571630204657, "avgMargin": 61.363947809817354, "newPct": 40.472829922371204, "discountPct": 27.66407904022583, "avgShipping": 2.494530698659139}, {"YearMonth": "2020-12", "IsFreeShipping": 1, "count": 3529, "avgAOV": 24.3657408245962, "avgItems": 1.8821195806177387, "avgMargin": 60.63032744585051, "newPct": 26.86313403230377, "discountPct": 44.601870218192126, "avgShipping": 0.0}, {"YearMonth": "2021-01", "IsFreeShipping": 0, "count": 3680, "avgAOV": 25.757858569293475, "avgItems": 1.971467391304348, "avgMargin": 62.1036391208221, "newPct": 45.67934782608696, "discountPct": 45.27173913043478, "avgShipping": 2.5130434782608697}, {"YearMonth": "2021-01", "IsFreeShipping": 1, "count": 5247, "avgAOV": 25.599677727463312, "avgItems": 2.0457404230989136, "avgMargin": 59.970116305959024, "newPct": 27.215551743853634, "discountPct": 63.2170764246236, "avgShipping": 0.0}, {"YearMonth": "2021-02", "IsFreeShipping": 0, "count": 2234, "avgAOV": 26.36906435944494, "avgItems": 1.9189794091316026, "avgMargin": 60.26040086459097, "newPct": 45.837063563115485, "discountPct": 21.128021486123547, "avgShipping": 2.526186213070725}, {"YearMonth": "2021-02", "IsFreeShipping": 1, "count": 2878, "avgAOV": 22.488029739054898, "avgItems": 1.7859624739402362, "avgMargin": 59.61040528720023, "newPct": 33.35649756775538, "discountPct": 30.92425295343989, "avgShipping": 0.0}, {"YearMonth": "2021-03", "IsFreeShipping": 0, "count": 2563, "avgAOV": 28.27785782871635, "avgItems": 2.021849395239953, "avgMargin": 59.078249409703865, "newPct": 40.22629730784237, "discountPct": 32.77409285992977, "avgShipping": 2.519703472493172}, {"YearMonth": "2021-03", "IsFreeShipping": 1, "count": 3461, "avgAOV": 24.702863160936147, "avgItems": 1.9251661369546373, "avgMargin": 59.27200126605339, "newPct": 26.841953192718865, "discountPct": 46.05605316382548, "avgShipping": 0.0}, {"YearMonth": "2021-04", "IsFreeShipping": 0, "count": 1987, "avgAOV": 28.661273098641168, "avgItems": 2.005032712632109, "avgMargin": 59.181457078185524, "newPct": 29.441368897835936, "discountPct": 18.36940110719678, "avgShipping": 2.506290890790136}, {"YearMonth": "2021-04", "IsFreeShipping": 1, "count": 2955, "avgAOV": 24.66692025685279, "avgItems": 1.8450084602368866, "avgMargin": 58.90457478501904, "newPct": 21.116751269035532, "discountPct": 31.336717428087983, "avgShipping": 0.0}, {"YearMonth": "2021-05", "IsFreeShipping": 0, "count": 1861, "avgAOV": 28.718264193981728, "avgItems": 2.027404621171413, "avgMargin": 58.98571405194763, "newPct": 31.434712520150455, "discountPct": 30.62869425040301, "avgShipping": 2.4613111230521225}, {"YearMonth": "2021-05", "IsFreeShipping": 1, "count": 3260, "avgAOV": 25.318328013496934, "avgItems": 1.9263803680981595, "avgMargin": 58.401340191199864, "newPct": 18.404907975460123, "discountPct": 50.306748466257666, "avgShipping": 0.0}, {"YearMonth": "2021-06", "IsFreeShipping": 0, "count": 2178, "avgAOV": 28.547570951790632, "avgItems": 2.01010101010101, "avgMargin": 59.63851244918743, "newPct": 34.66483011937557, "discountPct": 39.76124885215794, "avgShipping": 2.4935720844811753}, {"YearMonth": "2021-06", "IsFreeShipping": 1, "count": 3448, "avgAOV": 24.547705676914156, "avgItems": 1.8248259860788862, "avgMargin": 59.22409061621527, "newPct": 19.1415313225058, "discountPct": 56.32250580046404, "avgShipping": 0.0}, {"YearMonth": "2021-07", "IsFreeShipping": 0, "count": 2583, "avgAOV": 27.936755524196673, "avgItems": 2.024003097173829, "avgMargin": 56.497695136461196, "newPct": 42.39256678281069, "discountPct": 13.395276809910955, "avgShipping": 2.6153697251258228}, {"YearMonth": "2021-07", "IsFreeShipping": 1, "count": 3954, "avgAOV": 25.807478320182092, "avgItems": 1.9744562468386444, "avgMargin": 55.45924738432573, "newPct": 23.92513909964593, "discountPct": 20.080930703085485, "avgShipping": 0.0}, {"YearMonth": "2021-08", "IsFreeShipping": 0, "count": 2102, "avgAOV": 29.200018806374878, "avgItems": 1.978116079923882, "avgMargin": 59.33979652951275, "newPct": 45.62321598477641, "discountPct": 12.559467174119888, "avgShipping": 2.64581351094196}, {"YearMonth": "2021-08", "IsFreeShipping": 1, "count": 2627, "avgAOV": 23.962375135515796, "avgItems": 1.7719832508564903, "avgMargin": 58.98268951806098, "newPct": 32.5085649029311, "discountPct": 23.41073467834031, "avgShipping": 0.0}, {"YearMonth": "2021-09", "IsFreeShipping": 0, "count": 2011, "avgAOV": 28.54171539532571, "avgItems": 1.9895574341123818, "avgMargin": 59.99329190157079, "newPct": 40.37792143212332, "discountPct": 30.63152660367976, "avgShipping": 2.636001989060169}, {"YearMonth": "2021-09", "IsFreeShipping": 1, "count": 3058, "avgAOV": 26.216141082733813, "avgItems": 1.9637017658600393, "avgMargin": 59.39714395662517, "newPct": 21.484630477436234, "discountPct": 48.13603662524526, "avgShipping": 0.0}, {"YearMonth": "2021-10", "IsFreeShipping": 0, "count": 2055, "avgAOV": 27.687644577128953, "avgItems": 1.908029197080292, "avgMargin": 59.43137756188963, "newPct": 34.257907542579076, "discountPct": 27.299270072992698, "avgShipping": 2.6182481751824818}, {"YearMonth": "2021-10", "IsFreeShipping": 1, "count": 3253, "avgAOV": 23.04860417460805, "avgItems": 1.7832769750999078, "avgMargin": 59.70978931165688, "newPct": 20.903781125115277, "discountPct": 43.62127267138026, "avgShipping": 0.0}, {"YearMonth": "2021-11", "IsFreeShipping": 0, "count": 2365, "avgAOV": 29.202866610570826, "avgItems": 2.0710359408033825, "avgMargin": 57.639400672973885, "newPct": 35.68710359408034, "discountPct": 5.200845665961945, "avgShipping": 2.6027484143763213}, {"YearMonth": "2021-11", "IsFreeShipping": 1, "count": 3943, "avgAOV": 26.35450906264266, "avgItems": 1.9967030180065939, "avgMargin": 56.72051857929619, "newPct": 21.48110575703779, "discountPct": 9.003296981993406, "avgShipping": 0.0}, {"YearMonth": "2021-12", "IsFreeShipping": 0, "count": 1706, "avgAOV": 28.789741889214536, "avgItems": 1.9941383352872215, "avgMargin": 59.040908066946066, "newPct": 33.76318874560375, "discountPct": 9.495896834701055, "avgShipping": 2.61137162954279}, {"YearMonth": "2021-12", "IsFreeShipping": 1, "count": 2410, "avgAOV": 25.62349352738589, "avgItems": 1.8946058091286306, "avgMargin": 58.30608331888964, "newPct": 19.62655601659751, "discountPct": 19.294605809128633, "avgShipping": 0.0}, {"YearMonth": "2022-01", "IsFreeShipping": 0, "count": 2996, "avgAOV": 26.269732799065423, "avgItems": 1.9843124165554071, "avgMargin": 55.14054623108479, "newPct": 40.35380507343124, "discountPct": 13.117489986648865, "avgShipping": 2.5417222963951938}, {"YearMonth": "2022-01", "IsFreeShipping": 1, "count": 5186, "avgAOV": 24.401550133629, "avgItems": 1.9355958349402236, "avgMargin": 54.71440366079606, "newPct": 23.38989587350559, "discountPct": 23.27419976860779, "avgShipping": 0.0}, {"YearMonth": "2022-02", "IsFreeShipping": 0, "count": 1598, "avgAOV": 25.673135026908636, "avgItems": 1.7828535669586985, "avgMargin": 59.42348202074305, "newPct": 42.86608260325407, "discountPct": 8.573216520650814, "avgShipping": 2.596996245306633}, {"YearMonth": "2022-02", "IsFreeShipping": 1, "count": 2101, "avgAOV": 22.402931759638264, "avgItems": 1.706330318895764, "avgMargin": 59.79503209232399, "newPct": 29.08138981437411, "discountPct": 12.470252260828177, "avgShipping": 0.0}, {"YearMonth": "2022-03", "IsFreeShipping": 0, "count": 2800, "avgAOV": 25.632053391785714, "avgItems": 1.83, "avgMargin": 58.68065921252406, "newPct": 48.92857142857142, "discountPct": 25.25, "avgShipping": 2.6232142857142855}, {"YearMonth": "2022-03", "IsFreeShipping": 1, "count": 3385, "avgAOV": 25.485311442245198, "avgItems": 1.9172821270310192, "avgMargin": 58.6477461396686, "newPct": 27.621861152141804, "discountPct": 42.65878877400296, "avgShipping": 0.0}, {"YearMonth": "2022-04", "IsFreeShipping": 0, "count": 2209, "avgAOV": 24.56571739520145, "avgItems": 1.7419646899049344, "avgMargin": 59.18065361623977, "newPct": 41.96468990493436, "discountPct": 23.811679492983252, "avgShipping": 2.59506564056134}, {"YearMonth": "2022-04", "IsFreeShipping": 1, "count": 3163, "avgAOV": 23.785380876067023, "avgItems": 1.7771103382864368, "avgMargin": 58.78901219356217, "newPct": 23.61681947518179, "discountPct": 43.02877015491622, "avgShipping": 0.0}, {"YearMonth": "2022-05", "IsFreeShipping": 0, "count": 1896, "avgAOV": 25.870558989451478, "avgItems": 1.8032700421940928, "avgMargin": 58.35849601356376, "newPct": 36.4451476793249, "discountPct": 19.567510548523206, "avgShipping": 2.6054852320675104}, {"YearMonth": "2022-05", "IsFreeShipping": 1, "count": 2598, "avgAOV": 25.61649334603541, "avgItems": 1.8664357197844497, "avgMargin": 58.656272561820316, "newPct": 21.478060046189377, "discountPct": 39.14549653579677, "avgShipping": 0.0}, {"YearMonth": "2022-06", "IsFreeShipping": 0, "count": 1969, "avgAOV": 24.72171141340782, "avgItems": 1.702386998476384, "avgMargin": 59.348148286445294, "newPct": 32.80853224987303, "discountPct": 29.761300152361603, "avgShipping": 2.6812849162011174}, {"YearMonth": "2022-06", "IsFreeShipping": 1, "count": 2193, "avgAOV": 28.5949519872321, "avgItems": 2.0455996352029184, "avgMargin": 58.69526110160329, "newPct": 14.819881440948473, "discountPct": 55.12995896032832, "avgShipping": 0.0}, {"YearMonth": "2022-07", "IsFreeShipping": 0, "count": 2554, "avgAOV": 21.84040714722005, "avgItems": 1.6413469068128426, "avgMargin": 57.278958454992924, "newPct": 33.55520751761942, "discountPct": 17.149569303054033, "avgShipping": 2.609984338292874}, {"YearMonth": "2022-07", "IsFreeShipping": 1, "count": 2407, "avgAOV": 32.46708749480681, "avgItems": 2.3161611965101785, "avgMargin": 56.92245638971972, "newPct": 11.840465309513917, "discountPct": 39.38512671375155, "avgShipping": 0.0}, {"YearMonth": "2022-08", "IsFreeShipping": 0, "count": 2357, "avgAOV": 22.129147138311414, "avgItems": 1.5714891811624947, "avgMargin": 59.26593366451254, "newPct": 40.2206194314807, "discountPct": 14.849384811200677, "avgShipping": 2.6171404327535}, {"YearMonth": "2022-08", "IsFreeShipping": 1, "count": 1878, "avgAOV": 33.76543119062833, "avgItems": 2.280617678381257, "avgMargin": 58.70355413627375, "newPct": 14.48349307774228, "discountPct": 42.119275825346115, "avgShipping": 0.0}, {"YearMonth": "2022-09", "IsFreeShipping": 0, "count": 1951, "avgAOV": 20.54583796053306, "avgItems": 1.513070220399795, "avgMargin": 57.414957696064874, "newPct": 36.54536135315223, "discountPct": 20.861096873398257, "avgShipping": 2.373962070732958}, {"YearMonth": "2022-09", "IsFreeShipping": 1, "count": 2094, "avgAOV": 33.62491392024833, "avgItems": 2.3075453677172875, "avgMargin": 56.54233437378373, "newPct": 15.18624641833811, "discountPct": 48.71060171919771, "avgShipping": 0.0}, {"YearMonth": "2022-10", "IsFreeShipping": 0, "count": 2108, "avgAOV": 19.838723831119545, "avgItems": 1.4924098671726755, "avgMargin": 57.387513233727724, "newPct": 36.907020872865274, "discountPct": 22.248576850094874, "avgShipping": 2.35488614800759}, {"YearMonth": "2022-10", "IsFreeShipping": 1, "count": 2054, "avgAOV": 31.95046722103213, "avgItems": 2.228821811100292, "avgMargin": 56.67296399006955, "newPct": 16.455696202531644, "discountPct": 44.303797468354425, "avgShipping": 0.0}, {"YearMonth": "2022-11", "IsFreeShipping": 0, "count": 2075, "avgAOV": 21.54613969108434, "avgItems": 1.5879518072289156, "avgMargin": 57.234665038006355, "newPct": 35.6144578313253, "discountPct": 23.373493975903614, "avgShipping": 2.5950843373493977}, {"YearMonth": "2022-11", "IsFreeShipping": 1, "count": 2632, "avgAOV": 34.71354849582067, "avgItems": 2.4251519756838906, "avgMargin": 55.435617492595156, "newPct": 13.867781155015196, "discountPct": 52.50759878419453, "avgShipping": 0.0}, {"YearMonth": "2022-12", "IsFreeShipping": 0, "count": 2073, "avgAOV": 22.123376624216114, "avgItems": 1.6333815726000964, "avgMargin": 55.40652139318759, "newPct": 33.04389773275446, "discountPct": 16.449589966232516, "avgShipping": 2.9442112879884226}, {"YearMonth": "2022-12", "IsFreeShipping": 1, "count": 1630, "avgAOV": 35.12865602944785, "avgItems": 2.392024539877301, "avgMargin": 52.17200231434391, "newPct": 11.595092024539877, "discountPct": 43.00613496932515, "avgShipping": 0.0}, {"YearMonth": "2023-01", "IsFreeShipping": 0, "count": 3701, "avgAOV": 20.569481137800594, "avgItems": 1.6109159686571197, "avgMargin": 51.33371519392176, "newPct": 37.17914077276412, "discountPct": 8.619292083220751, "avgShipping": 2.750148608484194}, {"YearMonth": "2023-01", "IsFreeShipping": 1, "count": 2642, "avgAOV": 39.494242651021956, "avgItems": 2.8739591218773657, "avgMargin": 49.88067175960111, "newPct": 12.831188493565481, "discountPct": 17.600302800908402, "avgShipping": 0.0}, {"YearMonth": "2023-02", "IsFreeShipping": 0, "count": 2052, "avgAOV": 20.012938524853798, "avgItems": 1.4663742690058479, "avgMargin": 56.62584732215704, "newPct": 37.085769980506825, "discountPct": 26.364522417153996, "avgShipping": 2.786013645224172}, {"YearMonth": "2023-02", "IsFreeShipping": 1, "count": 1548, "avgAOV": 34.93825556524548, "avgItems": 2.39922480620155, "avgMargin": 54.64438190394028, "newPct": 16.5374677002584, "discountPct": 46.64082687338501, "avgShipping": 0.0}, {"YearMonth": "2023-03", "IsFreeShipping": 0, "count": 3175, "avgAOV": 22.0455526815748, "avgItems": 1.5653543307086615, "avgMargin": 57.86896035849247, "newPct": 32.22047244094488, "discountPct": 28.188976377952756, "avgShipping": 2.5038267716535434}, {"YearMonth": "2023-03", "IsFreeShipping": 1, "count": 1219, "avgAOV": 46.15379811156686, "avgItems": 2.947497949138638, "avgMargin": 56.24974044040358, "newPct": 10.500410172272355, "discountPct": 56.111566858080394, "avgShipping": 0.0}, {"YearMonth": "2023-04", "IsFreeShipping": 0, "count": 2149, "avgAOV": 22.469497356444858, "avgItems": 1.5774778966961378, "avgMargin": 59.031409743945424, "newPct": 31.13075849232201, "discountPct": 16.938110749185668, "avgShipping": 2.528873894834807}, {"YearMonth": "2023-04", "IsFreeShipping": 1, "count": 774, "avgAOV": 46.3609947248062, "avgItems": 2.8229974160206717, "avgMargin": 56.21658085006131, "newPct": 8.914728682170542, "discountPct": 30.490956072351423, "avgShipping": 0.0}, {"YearMonth": "2023-05", "IsFreeShipping": 0, "count": 2651, "avgAOV": 23.597823369294606, "avgItems": 1.6001508864579403, "avgMargin": 58.60606512733192, "newPct": 27.310448887212374, "discountPct": 25.537533006412676, "avgShipping": 2.544869860430026}, {"YearMonth": "2023-05", "IsFreeShipping": 1, "count": 1144, "avgAOV": 48.066896709790214, "avgItems": 2.882867132867133, "avgMargin": 56.4251075814605, "newPct": 9.353146853146853, "discountPct": 47.29020979020979, "avgShipping": 0.0}, {"YearMonth": "2023-06", "IsFreeShipping": 0, "count": 2339, "avgAOV": 23.577934879008126, "avgItems": 1.6045318512184694, "avgMargin": 58.60683855996745, "newPct": 25.43822146216332, "discountPct": 27.36212056434374, "avgShipping": 2.489119281744335}, {"YearMonth": "2023-06", "IsFreeShipping": 1, "count": 1088, "avgAOV": 47.68813392371323, "avgItems": 2.9604779411764706, "avgMargin": 56.33040161695508, "newPct": 7.169117647058823, "discountPct": 56.70955882352941, "avgShipping": 0.0}, {"YearMonth": "2023-07", "IsFreeShipping": 0, "count": 3099, "avgAOV": 22.732700752500808, "avgItems": 1.6089060987415296, "avgMargin": 55.51589768309052, "newPct": 26.815101645692156, "discountPct": 12.810584059373992, "avgShipping": 2.4582284607938045}, {"YearMonth": "2023-07", "IsFreeShipping": 1, "count": 1272, "avgAOV": 50.0568628514151, "avgItems": 3.138364779874214, "avgMargin": 53.54023489752315, "newPct": 6.367924528301887, "discountPct": 26.650943396226417, "avgShipping": 0.0}, {"YearMonth": "2023-08", "IsFreeShipping": 0, "count": 2400, "avgAOV": 22.895754082916667, "avgItems": 1.5316666666666667, "avgMargin": 58.48884273265463, "newPct": 28.749999999999996, "discountPct": 12.041666666666668, "avgShipping": 2.5529166666666665}, {"YearMonth": "2023-08", "IsFreeShipping": 1, "count": 842, "avgAOV": 48.46363406650831, "avgItems": 2.8859857482185274, "avgMargin": 56.653238178074695, "newPct": 6.413301662707839, "discountPct": 25.890736342042754, "avgShipping": 0.0}, {"YearMonth": "2023-09", "IsFreeShipping": 0, "count": 2232, "avgAOV": 23.742441671146953, "avgItems": 1.560931899641577, "avgMargin": 59.82341592042056, "newPct": 24.238351254480285, "discountPct": 22.311827956989248, "avgShipping": 2.9628360215053764}, {"YearMonth": "2023-09", "IsFreeShipping": 1, "count": 1296, "avgAOV": 45.779575495370366, "avgItems": 2.7785493827160495, "avgMargin": 57.98293092226228, "newPct": 6.558641975308642, "discountPct": 55.47839506172839, "avgShipping": 0.0}, {"YearMonth": "2023-10", "IsFreeShipping": 0, "count": 2344, "avgAOV": 24.11603234854949, "avgItems": 1.629692832764505, "avgMargin": 60.35315310643532, "newPct": 25.7679180887372, "discountPct": 21.928327645051194, "avgShipping": 3.1318472696245734}, {"YearMonth": "2023-10", "IsFreeShipping": 1, "count": 1391, "avgAOV": 44.14583020704529, "avgItems": 2.7009345794392523, "avgMargin": 57.79023658720496, "newPct": 5.823148813803019, "discountPct": 48.16678648454349, "avgShipping": 0.0}, {"YearMonth": "2023-11", "IsFreeShipping": 0, "count": 1953, "avgAOV": 25.284465034818226, "avgItems": 1.6840757808499744, "avgMargin": 60.86184200483638, "newPct": 18.22836661546339, "discountPct": 27.444956477214543, "avgShipping": 3.1352278545826935}, {"YearMonth": "2023-11", "IsFreeShipping": 1, "count": 1256, "avgAOV": 45.97448236703821, "avgItems": 2.730095541401274, "avgMargin": 57.72381399406296, "newPct": 5.17515923566879, "discountPct": 51.990445859872615, "avgShipping": 0.0}, {"YearMonth": "2023-12", "IsFreeShipping": 0, "count": 2385, "avgAOV": 28.522142633542973, "avgItems": 1.8641509433962264, "avgMargin": 58.27520224667315, "newPct": 14.381551362683437, "discountPct": 31.27882599580713, "avgShipping": 2.7725576519916144}, {"YearMonth": "2023-12", "IsFreeShipping": 1, "count": 672, "avgAOV": 48.50575878422619, "avgItems": 2.8110119047619047, "avgMargin": 55.27942772971451, "newPct": 1.9345238095238095, "discountPct": 22.767857142857142, "avgShipping": 0.0}, {"YearMonth": "2024-01", "IsFreeShipping": 0, "count": 3883, "avgAOV": 26.86088487535411, "avgItems": 1.8910636106103529, "avgMargin": 53.43532839506488, "newPct": 15.19443729075457, "discountPct": 15.220190574298224, "avgShipping": 2.6212335822817407}, {"YearMonth": "2024-01", "IsFreeShipping": 1, "count": 920, "avgAOV": 60.5661844576087, "avgItems": 3.608695652173913, "avgMargin": 51.664138966225465, "newPct": 3.260869565217391, "discountPct": 20.434782608695652, "avgShipping": 0.0}, {"YearMonth": "2024-02", "IsFreeShipping": 0, "count": 2090, "avgAOV": 27.65037314258373, "avgItems": 1.7244019138755982, "avgMargin": 59.89915892799242, "newPct": 20.813397129186605, "discountPct": 20.669856459330145, "avgShipping": 2.781267942583732}, {"YearMonth": "2024-02", "IsFreeShipping": 1, "count": 519, "avgAOV": 43.90418083815029, "avgItems": 2.368015414258189, "avgMargin": 55.43247367918931, "newPct": 3.0828516377649327, "discountPct": 12.33140655105973, "avgShipping": 0.0}, {"YearMonth": "2024-03", "IsFreeShipping": 0, "count": 2633, "avgAOV": 28.10797943714394, "avgItems": 1.7428788454234714, "avgMargin": 59.43480249556938, "newPct": 24.53475123433346, "discountPct": 25.52221800227877, "avgShipping": 3.0404291682491453}, {"YearMonth": "2024-03", "IsFreeShipping": 1, "count": 629, "avgAOV": 50.92885515421304, "avgItems": 2.9093799682034978, "avgMargin": 56.96988279113634, "newPct": 2.066772655007949, "discountPct": 26.86804451510334, "avgShipping": 0.0}, {"YearMonth": "2024-04", "IsFreeShipping": 0, "count": 2686, "avgAOV": 27.684586866344006, "avgItems": 1.7263588979895756, "avgMargin": 59.474699396842155, "newPct": 24.422933730454208, "discountPct": 28.183172002978406, "avgShipping": 3.2330230826507815}, {"YearMonth": "2024-04", "IsFreeShipping": 1, "count": 676, "avgAOV": 50.02131634023669, "avgItems": 2.831360946745562, "avgMargin": 57.52296759615416, "newPct": 2.366863905325444, "discountPct": 32.24852071005917, "avgShipping": 0.0}, {"YearMonth": "2024-05", "IsFreeShipping": 0, "count": 2381, "avgAOV": 27.354618176816462, "avgItems": 1.6648467030659386, "avgMargin": 59.70518840376168, "newPct": 26.207475850482993, "discountPct": 17.849643007139857, "avgShipping": 3.2423561528769427}, {"YearMonth": "2024-05", "IsFreeShipping": 1, "count": 664, "avgAOV": 44.53024973042169, "avgItems": 2.430722891566265, "avgMargin": 56.37429009767143, "newPct": 2.86144578313253, "discountPct": 14.457831325301203, "avgShipping": 0.0}, {"YearMonth": "2024-06", "IsFreeShipping": 0, "count": 2236, "avgAOV": 26.80860726654741, "avgItems": 1.661449016100179, "avgMargin": 59.08813940792558, "newPct": 25.62611806797853, "discountPct": 13.595706618962433, "avgShipping": 3.227526833631485}, {"YearMonth": "2024-06", "IsFreeShipping": 1, "count": 664, "avgAOV": 48.241505763554215, "avgItems": 2.6671686746987953, "avgMargin": 55.587527446428545, "newPct": 2.710843373493976, "discountPct": 13.855421686746988, "avgShipping": 0.0}, {"YearMonth": "2024-07", "IsFreeShipping": 0, "count": 3135, "avgAOV": 27.041970584370013, "avgItems": 1.8028708133971292, "avgMargin": 54.18245759145282, "newPct": 22.74322169059011, "discountPct": 9.409888357256778, "avgShipping": 3.1167145135566185}, {"YearMonth": "2024-07", "IsFreeShipping": 1, "count": 996, "avgAOV": 51.26599375903614, "avgItems": 3.033132530120482, "avgMargin": 52.67026721800894, "newPct": 2.208835341365462, "discountPct": 7.931726907630522, "avgShipping": 0.0}, {"YearMonth": "2024-08", "IsFreeShipping": 0, "count": 2178, "avgAOV": 27.592612662534435, "avgItems": 1.7098255280073462, "avgMargin": 59.51299141138661, "newPct": 20.064279155188245, "discountPct": 17.26354453627181, "avgShipping": 3.2148301193755744}, {"YearMonth": "2024-08", "IsFreeShipping": 1, "count": 784, "avgAOV": 44.88354573852041, "avgItems": 2.4591836734693877, "avgMargin": 55.7584165016584, "newPct": 1.913265306122449, "discountPct": 17.091836734693878, "avgShipping": 0.0}, {"YearMonth": "2024-09", "IsFreeShipping": 0, "count": 2152, "avgAOV": 28.27156133364312, "avgItems": 1.7987918215613383, "avgMargin": 59.45613281857453, "newPct": 15.938661710037175, "discountPct": 27.74163568773234, "avgShipping": 3.1570167286245354}, {"YearMonth": "2024-09", "IsFreeShipping": 1, "count": 709, "avgAOV": 47.17620573342736, "avgItems": 2.5768688293370947, "avgMargin": 55.74599633248703, "newPct": 1.5514809590973202, "discountPct": 25.105782792665725, "avgShipping": 0.0}, {"YearMonth": "2024-10", "IsFreeShipping": 0, "count": 2350, "avgAOV": 27.296144638723405, "avgItems": 1.7578723404255319, "avgMargin": 59.76574799808609, "newPct": 22.97872340425532, "discountPct": 26.80851063829787, "avgShipping": 3.3109361702127664}, {"YearMonth": "2024-10", "IsFreeShipping": 1, "count": 769, "avgAOV": 41.69773708192458, "avgItems": 2.3211963589076725, "avgMargin": 56.287467241598954, "newPct": 2.340702210663199, "discountPct": 17.945383615084527, "avgShipping": 0.0}, {"YearMonth": "2024-11", "IsFreeShipping": 0, "count": 2579, "avgAOV": 29.125885920511827, "avgItems": 1.9476541295075611, "avgMargin": 60.666798728964054, "newPct": 11.632415664986429, "discountPct": 47.150058162078324, "avgShipping": 3.173497479643273}, {"YearMonth": "2024-11", "IsFreeShipping": 1, "count": 778, "avgAOV": 43.98861161182519, "avgItems": 2.524421593830334, "avgMargin": 57.93684816691967, "newPct": 1.6709511568123392, "discountPct": 27.12082262210797, "avgShipping": 0.0}, {"YearMonth": "2024-12", "IsFreeShipping": 0, "count": 1635, "avgAOV": 28.98445251437309, "avgItems": 1.7327217125382264, "avgMargin": 62.71477359935028, "newPct": 17.06422018348624, "discountPct": 19.327217125382262, "avgShipping": 3.6232721712538227}, {"YearMonth": "2024-12", "IsFreeShipping": 1, "count": 692, "avgAOV": 35.86525921387283, "avgItems": 1.9696531791907514, "avgMargin": 58.60676484475739, "newPct": 1.5895953757225432, "discountPct": 8.236994219653178, "avgShipping": 0.0}, {"YearMonth": "2025-01", "IsFreeShipping": 0, "count": 2640, "avgAOV": 30.17816260833333, "avgItems": 1.8333333333333333, "avgMargin": 60.31116827553472, "newPct": 20.227272727272727, "discountPct": 15.378787878787877, "avgShipping": 3.715227272727273}, {"YearMonth": "2025-01", "IsFreeShipping": 1, "count": 862, "avgAOV": 50.02537092111369, "avgItems": 2.6740139211136893, "avgMargin": 57.16117127321579, "newPct": 1.9721577726218096, "discountPct": 9.048723897911833, "avgShipping": 0.0}, {"YearMonth": "2025-02", "IsFreeShipping": 0, "count": 1705, "avgAOV": 31.116580521994134, "avgItems": 1.6140762463343108, "avgMargin": 64.23684502096548, "newPct": 23.10850439882698, "discountPct": 15.249266862170089, "avgShipping": 3.80375366568915}, {"YearMonth": "2025-02", "IsFreeShipping": 1, "count": 713, "avgAOV": 38.40914412622721, "avgItems": 1.967741935483871, "avgMargin": 59.97666478540074, "newPct": 2.244039270687237, "discountPct": 5.610098176718092, "avgShipping": 0.0}, {"YearMonth": "2025-03", "IsFreeShipping": 0, "count": 1761, "avgAOV": 31.677467228279387, "avgItems": 1.622373651334469, "avgMargin": 64.75736000114658, "newPct": 21.237932992617832, "discountPct": 13.174332765474162, "avgShipping": 3.768427030096536}, {"YearMonth": "2025-03", "IsFreeShipping": 1, "count": 738, "avgAOV": 42.19681534552846, "avgItems": 2.158536585365854, "avgMargin": 60.869725395742826, "newPct": 1.8970189701897018, "discountPct": 3.2520325203252036, "avgShipping": 0.0}, {"YearMonth": "2025-04", "IsFreeShipping": 0, "count": 1761, "avgAOV": 32.32667791084611, "avgItems": 1.6218057921635434, "avgMargin": 64.86902588585923, "newPct": 18.00113571834185, "discountPct": 12.152186257808063, "avgShipping": 3.7694207836456557}, {"YearMonth": "2025-04", "IsFreeShipping": 1, "count": 815, "avgAOV": 41.32148436687117, "avgItems": 2.09079754601227, "avgMargin": 61.47669220037042, "newPct": 2.085889570552147, "discountPct": 5.276073619631902, "avgShipping": 0.0}, {"YearMonth": "2025-05", "IsFreeShipping": 0, "count": 1732, "avgAOV": 32.578129214780596, "avgItems": 1.6264434180138567, "avgMargin": 64.9691016832454, "newPct": 17.956120092378754, "discountPct": 12.759815242494227, "avgShipping": 3.736172055427252}, {"YearMonth": "2025-05", "IsFreeShipping": 1, "count": 899, "avgAOV": 44.60447137041157, "avgItems": 2.246941045606229, "avgMargin": 60.52636092263586, "newPct": 2.0022246941045605, "discountPct": 4.78309232480534, "avgShipping": 0.0}, {"YearMonth": "2025-06", "IsFreeShipping": 0, "count": 1536, "avgAOV": 32.989583187499996, "avgItems": 1.6302083333333333, "avgMargin": 64.75280511073998, "newPct": 19.596354166666664, "discountPct": 11.848958333333332, "avgShipping": 3.7491861979166665}, {"YearMonth": "2025-06", "IsFreeShipping": 1, "count": 808, "avgAOV": 40.52892294925743, "avgItems": 2.0346534653465347, "avgMargin": 61.69746303614944, "newPct": 1.8564356435643563, "discountPct": 3.217821782178218, "avgShipping": 0.0}, {"YearMonth": "2025-07", "IsFreeShipping": 0, "count": 1598, "avgAOV": 32.07840410513141, "avgItems": 1.593241551939925, "avgMargin": 64.56979425822354, "newPct": 17.77221526908636, "discountPct": 9.824780976220275, "avgShipping": 3.7649874843554443}, {"YearMonth": "2025-07", "IsFreeShipping": 1, "count": 891, "avgAOV": 40.65965166891134, "avgItems": 2.04040404040404, "avgMargin": 61.757260242288666, "newPct": 1.2345679012345678, "discountPct": 3.928170594837262, "avgShipping": 0.0}, {"YearMonth": "2025-08", "IsFreeShipping": 0, "count": 1544, "avgAOV": 32.043730432642484, "avgItems": 1.5919689119170986, "avgMargin": 65.1640618300696, "newPct": 18.199481865284977, "discountPct": 10.816062176165802, "avgShipping": 3.7866580310880833}, {"YearMonth": "2025-08", "IsFreeShipping": 1, "count": 950, "avgAOV": 40.3717049031579, "avgItems": 2.0157894736842104, "avgMargin": 61.19082793076704, "newPct": 0.8421052631578947, "discountPct": 2.4210526315789473, "avgShipping": 0.0}, {"YearMonth": "2025-09", "IsFreeShipping": 0, "count": 1532, "avgAOV": 31.54062649543081, "avgItems": 1.577023498694517, "avgMargin": 65.83218470135495, "newPct": 18.342036553524803, "discountPct": 10.052219321148826, "avgShipping": 3.7840404699738905}, {"YearMonth": "2025-09", "IsFreeShipping": 1, "count": 788, "avgAOV": 40.00503874746193, "avgItems": 2.052030456852792, "avgMargin": 61.864445029470296, "newPct": 1.3959390862944163, "discountPct": 3.1725888324873095, "avgShipping": 0.0}, {"YearMonth": "2025-10", "IsFreeShipping": 0, "count": 1570, "avgAOV": 31.94629287707006, "avgItems": 1.6, "avgMargin": 65.83162482430026, "newPct": 17.898089171974522, "discountPct": 10.70063694267516, "avgShipping": 3.9085987261146498}, {"YearMonth": "2025-10", "IsFreeShipping": 1, "count": 990, "avgAOV": 39.958029929292934, "avgItems": 2.001010101010101, "avgMargin": 61.540030336069336, "newPct": 1.6161616161616161, "discountPct": 2.4242424242424243, "avgShipping": 0.0}, {"YearMonth": "2025-11", "IsFreeShipping": 0, "count": 1331, "avgAOV": 32.63086387227648, "avgItems": 1.6799398948159279, "avgMargin": 65.37911378650799, "newPct": 16.30353117956424, "discountPct": 8.414725770097672, "avgShipping": 3.876220886551465}, {"YearMonth": "2025-11", "IsFreeShipping": 1, "count": 786, "avgAOV": 39.905470478371505, "avgItems": 2.0063613231552164, "avgMargin": 60.94150698769202, "newPct": 1.5267175572519083, "discountPct": 3.689567430025445, "avgShipping": 0.0}, {"YearMonth": "2025-12", "IsFreeShipping": 0, "count": 1254, "avgAOV": 32.066371472089315, "avgItems": 1.594896331738437, "avgMargin": 64.47911403385982, "newPct": 16.267942583732058, "discountPct": 5.18341307814992, "avgShipping": 4.029704944178628}, {"YearMonth": "2025-12", "IsFreeShipping": 1, "count": 715, "avgAOV": 38.126041640559436, "avgItems": 1.9804195804195803, "avgMargin": 62.03535614685688, "newPct": 0.9790209790209791, "discountPct": 3.076923076923077, "avgShipping": 0.0}, {"YearMonth": "2026-01", "IsFreeShipping": 0, "count": 597, "avgAOV": 32.58906178056951, "avgItems": 1.6197654941373534, "avgMargin": 65.08596147972848, "newPct": 20.100502512562816, "discountPct": 6.867671691792294, "avgShipping": 3.929815745393635}, {"YearMonth": "2026-01", "IsFreeShipping": 1, "count": 291, "avgAOV": 46.44876262886598, "avgItems": 2.3608247422680413, "avgMargin": 61.08194093260953, "newPct": 1.718213058419244, "discountPct": 4.4673539518900345, "avgShipping": 0.0}], "categoryMonthly": [{"YearMonth": "2015-04", "Category": "Amino Acids", "totalRevenue": 6392.705, "totalRevenueExVAT": 5338.3824, "totalCost": 2384.38, "totalQty": 451.0, "orderCount": 374, "uniqueProducts": 8, "margin": 2954.0024000000003, "marginPct": 55.33515920478084}, {"YearMonth": "2015-04", "Category": "Bone Health", "totalRevenue": 2944.7758, "totalRevenueExVAT": 2460.3417, "totalCost": 651.8, "totalQty": 285.0, "orderCount": 242, "uniqueProducts": 7, "margin": 1808.5417, "marginPct": 73.5077448795019}, {"YearMonth": "2015-04", "Category": "Cod Liver Oil", "totalRevenue": 1191.2931999999998, "totalRevenueExVAT": 992.7434, "totalCost": 452.5, "totalQty": 127.0, "orderCount": 116, "uniqueProducts": 4, "margin": 540.2434, "marginPct": 54.419238647167035}, {"YearMonth": "2015-04", "Category": "Evening Primose Oils", "totalRevenue": 2134.8802, "totalRevenueExVAT": 1782.3856, "totalCost": 780.8, "totalQty": 143.0, "orderCount": 129, "uniqueProducts": 4, "margin": 1001.5856000000001, "marginPct": 56.193541958597514}, {"YearMonth": "2015-04", "Category": "Glucosamine", "totalRevenue": 9119.7886, "totalRevenueExVAT": 7631.664, "totalCost": 3308.1, "totalQty": 560.0, "orderCount": 453, "uniqueProducts": 11, "margin": 4323.564, "marginPct": 56.65296585384263}, {"YearMonth": "2015-04", "Category": "Herbal Supplements", "totalRevenue": 16827.3722, "totalRevenueExVAT": 14044.9406, "totalCost": 5096.49, "totalQty": 1208.0, "orderCount": 966, "uniqueProducts": 25, "margin": 8948.4506, "marginPct": 63.71298288011271}, {"YearMonth": "2015-04", "Category": "Minerals", "totalRevenue": 758.5368, "totalRevenueExVAT": 633.496, "totalCost": 236.20000000000002, "totalQty": 96.0, "orderCount": 85, "uniqueProducts": 4, "margin": 397.29599999999994, "marginPct": 62.71483955699798}, {"YearMonth": "2015-04", "Category": "Multivitamins", "totalRevenue": 2410.954, "totalRevenueExVAT": 2013.552, "totalCost": 921.3, "totalQty": 215.0, "orderCount": 198, "uniqueProducts": 6, "margin": 1092.252, "marginPct": 54.24503563851343}, {"YearMonth": "2015-04", "Category": "Omega 3 Supplements", "totalRevenue": 3723.064, "totalRevenueExVAT": 3115.304, "totalCost": 945.3000000000001, "totalQty": 233.0, "orderCount": 205, "uniqueProducts": 6, "margin": 2170.004, "marginPct": 69.65625184572677}, {"YearMonth": "2015-04", "Category": "Probiotics", "totalRevenue": 1416.2552, "totalRevenueExVAT": 1190.192, "totalCost": 499.5, "totalQty": 76.0, "orderCount": 70, "uniqueProducts": 1, "margin": 690.692, "marginPct": 58.03198139459852}, {"YearMonth": "2015-04", "Category": "Vitamin B", "totalRevenue": 3762.1531999999997, "totalRevenueExVAT": 3135.1283, "totalCost": 966.9, "totalQty": 360.0, "orderCount": 246, "uniqueProducts": 12, "margin": 2168.2282999999998, "marginPct": 69.15915689957568}, {"YearMonth": "2015-04", "Category": "Vitamin C", "totalRevenue": 733.3436, "totalRevenueExVAT": 612.5015, "totalCost": 202.8, "totalQty": 60.0, "orderCount": 58, "uniqueProducts": 3, "margin": 409.70149999999995, "marginPct": 66.88987700438285}, {"YearMonth": "2015-04", "Category": "Vitamin E", "totalRevenue": 747.25, "totalRevenueExVAT": 622.7085, "totalCost": 344.6, "totalQty": 55.0, "orderCount": 44, "uniqueProducts": 2, "margin": 278.10849999999994, "marginPct": 44.66110547712131}, {"YearMonth": "2015-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 2747.4792, "totalRevenueExVAT": 2289.5660000000003, "totalCost": 872.8, "totalQty": 111.0, "orderCount": 106, "uniqueProducts": 1, "margin": 1416.7660000000003, "marginPct": 61.87923824864625}, {"YearMonth": "2015-05", "Category": "Amino Acids", "totalRevenue": 8004.4039999999995, "totalRevenueExVAT": 6687.1941, "totalCost": 2803.68, "totalQty": 528.0, "orderCount": 448, "uniqueProducts": 10, "margin": 3883.5141, "marginPct": 58.07389529787987}, {"YearMonth": "2015-05", "Category": "Bone Health", "totalRevenue": 3543.0793, "totalRevenueExVAT": 2963.7749, "totalCost": 785.9, "totalQty": 330.0, "orderCount": 272, "uniqueProducts": 7, "margin": 2177.8749, "marginPct": 73.48314138162112}, {"YearMonth": "2015-05", "Category": "Cod Liver Oil", "totalRevenue": 1308.017, "totalRevenueExVAT": 1092.3688, "totalCost": 459.2, "totalQty": 123.0, "orderCount": 104, "uniqueProducts": 4, "margin": 633.1687999999999, "marginPct": 57.96291508875024}, {"YearMonth": "2015-05", "Category": "Evening Primose Oils", "totalRevenue": 1985.9255, "totalRevenueExVAT": 1658.2639, "totalCost": 732.2, "totalQty": 142.0, "orderCount": 138, "uniqueProducts": 4, "margin": 926.0638999999999, "marginPct": 55.84538745612203}, {"YearMonth": "2015-05", "Category": "Glucosamine", "totalRevenue": 7557.5452, "totalRevenueExVAT": 6319.836, "totalCost": 2899.4, "totalQty": 464.0, "orderCount": 384, "uniqueProducts": 11, "margin": 3420.436, "marginPct": 54.122227222351974}, {"YearMonth": "2015-05", "Category": "Herbal Supplements", "totalRevenue": 17716.2843, "totalRevenueExVAT": 14781.0172, "totalCost": 5873.3, "totalQty": 1193.0, "orderCount": 927, "uniqueProducts": 25, "margin": 8907.7172, "marginPct": 60.26457502532369}, {"YearMonth": "2015-05", "Category": "Minerals", "totalRevenue": 1004.721, "totalRevenueExVAT": 837.955, "totalCost": 339.8, "totalQty": 129.0, "orderCount": 114, "uniqueProducts": 4, "margin": 498.15500000000003, "marginPct": 59.44889642045217}, {"YearMonth": "2015-05", "Category": "Multivitamins", "totalRevenue": 2687.9516, "totalRevenueExVAT": 2243.55, "totalCost": 1012.1, "totalQty": 255.0, "orderCount": 231, "uniqueProducts": 6, "margin": 1231.4500000000003, "marginPct": 54.888458024113575}, {"YearMonth": "2015-05", "Category": "Omega 3 Supplements", "totalRevenue": 4481.382, "totalRevenueExVAT": 3739.193, "totalCost": 1165.8, "totalQty": 280.0, "orderCount": 239, "uniqueProducts": 6, "margin": 2573.393, "marginPct": 68.82214959217136}, {"YearMonth": "2015-05", "Category": "Probiotics", "totalRevenue": 1945.9312, "totalRevenueExVAT": 1623.4080000000001, "totalCost": 685.0, "totalQty": 99.0, "orderCount": 97, "uniqueProducts": 1, "margin": 938.4080000000001, "marginPct": 57.80481554852508}, {"YearMonth": "2015-05", "Category": "Vitamin B", "totalRevenue": 3719.4985, "totalRevenueExVAT": 3103.5960999999998, "totalCost": 999.4, "totalQty": 345.0, "orderCount": 278, "uniqueProducts": 12, "margin": 2104.1960999999997, "marginPct": 67.7986449332115}, {"YearMonth": "2015-05", "Category": "Vitamin C", "totalRevenue": 1276.3666, "totalRevenueExVAT": 1068.6178, "totalCost": 360.0, "totalQty": 93.0, "orderCount": 80, "uniqueProducts": 3, "margin": 708.6178, "marginPct": 66.31162235927569}, {"YearMonth": "2015-05", "Category": "Vitamin E", "totalRevenue": 610.1896, "totalRevenueExVAT": 509.8734, "totalCost": 282.3, "totalQty": 43.0, "orderCount": 38, "uniqueProducts": 2, "margin": 227.5734, "marginPct": 44.633314858158904}, {"YearMonth": "2015-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 4144.2692, "totalRevenueExVAT": 3483.7870000000003, "totalCost": 1329.0, "totalQty": 170.0, "orderCount": 164, "uniqueProducts": 1, "margin": 2154.7870000000003, "marginPct": 61.851858336918994}, {"YearMonth": "2015-06", "Category": "Amino Acids", "totalRevenue": 8122.179999999999, "totalRevenueExVAT": 6789.9417, "totalCost": 2795.86, "totalQty": 508.0, "orderCount": 424, "uniqueProducts": 9, "margin": 3994.0817, "marginPct": 58.82350506779757}, {"YearMonth": "2015-06", "Category": "Bone Health", "totalRevenue": 3601.1522, "totalRevenueExVAT": 3001.6481, "totalCost": 797.4, "totalQty": 341.0, "orderCount": 278, "uniqueProducts": 7, "margin": 2204.2481, "marginPct": 73.4345941484613}, {"YearMonth": "2015-06", "Category": "Cod Liver Oil", "totalRevenue": 1411.004, "totalRevenueExVAT": 1177.0789, "totalCost": 486.90000000000003, "totalQty": 130.0, "orderCount": 117, "uniqueProducts": 4, "margin": 690.1788999999999, "marginPct": 58.634888451402865}, {"YearMonth": "2015-06", "Category": "Evening Primose Oils", "totalRevenue": 2488.9572, "totalRevenueExVAT": 2074.131, "totalCost": 948.2, "totalQty": 161.0, "orderCount": 152, "uniqueProducts": 4, "margin": 1125.9309999999998, "marginPct": 54.2844690137701}, {"YearMonth": "2015-06", "Category": "Glucosamine", "totalRevenue": 8163.1718, "totalRevenueExVAT": 6818.296, "totalCost": 3112.3, "totalQty": 501.0, "orderCount": 423, "uniqueProducts": 11, "margin": 3705.996, "marginPct": 54.35369775674157}, {"YearMonth": "2015-06", "Category": "Herbal Supplements", "totalRevenue": 19217.0218, "totalRevenueExVAT": 16036.2191, "totalCost": 6289.74, "totalQty": 1292.0, "orderCount": 1009, "uniqueProducts": 26, "margin": 9746.4791, "marginPct": 60.777911795929505}, {"YearMonth": "2015-06", "Category": "Minerals", "totalRevenue": 959.8028, "totalRevenueExVAT": 800.662, "totalCost": 334.1, "totalQty": 124.0, "orderCount": 106, "uniqueProducts": 4, "margin": 466.562, "marginPct": 58.27202989526167}, {"YearMonth": "2015-06", "Category": "Multivitamins", "totalRevenue": 3110.9156, "totalRevenueExVAT": 2594.638, "totalCost": 1158.6, "totalQty": 289.0, "orderCount": 256, "uniqueProducts": 6, "margin": 1436.038, "marginPct": 55.34637201798478}, {"YearMonth": "2015-06", "Category": "Omega 3 Supplements", "totalRevenue": 4728.0696, "totalRevenueExVAT": 3944.766, "totalCost": 1250.8, "totalQty": 286.0, "orderCount": 255, "uniqueProducts": 6, "margin": 2693.9660000000003, "marginPct": 68.29216232344328}, {"YearMonth": "2015-06", "Category": "Probiotics", "totalRevenue": 1893.1296, "totalRevenueExVAT": 1582.74, "totalCost": 673.4, "totalQty": 95.0, "orderCount": 93, "uniqueProducts": 1, "margin": 909.34, "marginPct": 57.45352995438291}, {"YearMonth": "2015-06", "Category": "Vitamin B", "totalRevenue": 4067.6507, "totalRevenueExVAT": 3401.3204, "totalCost": 1073.7, "totalQty": 361.0, "orderCount": 284, "uniqueProducts": 12, "margin": 2327.6204, "marginPct": 68.43284743183851}, {"YearMonth": "2015-06", "Category": "Vitamin C", "totalRevenue": 1126.648, "totalRevenueExVAT": 938.8731, "totalCost": 314.7, "totalQty": 87.0, "orderCount": 74, "uniqueProducts": 3, "margin": 624.1731, "marginPct": 66.4810931317555}, {"YearMonth": "2015-06", "Category": "Vitamin E", "totalRevenue": 723.4492, "totalRevenueExVAT": 602.8743, "totalCost": 334.90000000000003, "totalQty": 51.0, "orderCount": 46, "uniqueProducts": 2, "margin": 267.9742999999999, "marginPct": 44.44944825148458}, {"YearMonth": "2015-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 2943.5136, "totalRevenueExVAT": 2459.574, "totalCost": 921.7, "totalQty": 131.0, "orderCount": 127, "uniqueProducts": 1, "margin": 1537.874, "marginPct": 62.526030930559514}, {"YearMonth": "2015-07", "Category": "Amino Acids", "totalRevenue": 7415.5815999999995, "totalRevenueExVAT": 6198.214, "totalCost": 2613.94, "totalQty": 469.0, "orderCount": 419, "uniqueProducts": 8, "margin": 3584.274, "marginPct": 57.82752902691001}, {"YearMonth": "2015-07", "Category": "Bone Health", "totalRevenue": 2909.8553, "totalRevenueExVAT": 2433.1718, "totalCost": 657.1, "totalQty": 304.0, "orderCount": 256, "uniqueProducts": 7, "margin": 1776.0718000000002, "marginPct": 72.99409766297637}, {"YearMonth": "2015-07", "Category": "Cod Liver Oil", "totalRevenue": 1174.119, "totalRevenueExVAT": 982.5778, "totalCost": 398.40000000000003, "totalQty": 118.0, "orderCount": 103, "uniqueProducts": 4, "margin": 584.1777999999999, "marginPct": 59.45359237711252}, {"YearMonth": "2015-07", "Category": "Evening Primose Oils", "totalRevenue": 2057.7108, "totalRevenueExVAT": 1714.759, "totalCost": 762.6, "totalQty": 146.0, "orderCount": 135, "uniqueProducts": 4, "margin": 952.159, "marginPct": 55.52727817728322}, {"YearMonth": "2015-07", "Category": "Glucosamine", "totalRevenue": 6416.959, "totalRevenueExVAT": 5365.466, "totalCost": 2389.3, "totalQty": 409.0, "orderCount": 356, "uniqueProducts": 12, "margin": 2976.166, "marginPct": 55.46891919546224}, {"YearMonth": "2015-07", "Category": "Herbal Supplements", "totalRevenue": 17852.3136, "totalRevenueExVAT": 14909.077800000001, "totalCost": 5565.64, "totalQty": 1235.0, "orderCount": 1007, "uniqueProducts": 26, "margin": 9343.4378, "marginPct": 62.66945498131346}, {"YearMonth": "2015-07", "Category": "Minerals", "totalRevenue": 861.4112, "totalRevenueExVAT": 721.162, "totalCost": 304.7, "totalQty": 112.0, "orderCount": 102, "uniqueProducts": 4, "margin": 416.46200000000005, "marginPct": 57.748744387530124}, {"YearMonth": "2015-07", "Category": "Multivitamins", "totalRevenue": 2647.1956, "totalRevenueExVAT": 2210.413, "totalCost": 997.8, "totalQty": 250.0, "orderCount": 234, "uniqueProducts": 6, "margin": 1212.613, "marginPct": 54.85911456365847}, {"YearMonth": "2015-07", "Category": "Omega 3 Supplements", "totalRevenue": 4015.7508000000003, "totalRevenueExVAT": 3346.459, "totalCost": 1063.8500000000001, "totalQty": 265.0, "orderCount": 226, "uniqueProducts": 7, "margin": 2282.6089999999995, "marginPct": 68.20968074014951}, {"YearMonth": "2015-07", "Category": "Probiotics", "totalRevenue": 1595.4864, "totalRevenueExVAT": 1329.5720000000001, "totalCost": 545.3, "totalQty": 91.0, "orderCount": 89, "uniqueProducts": 1, "margin": 784.2720000000002, "marginPct": 58.986801767786936}, {"YearMonth": "2015-07", "Category": "Vitamin B", "totalRevenue": 3136.944, "totalRevenueExVAT": 2620.759, "totalCost": 855.86, "totalQty": 276.0, "orderCount": 226, "uniqueProducts": 13, "margin": 1764.899, "marginPct": 67.34304833065535}, {"YearMonth": "2015-07", "Category": "Vitamin C", "totalRevenue": 788.0892, "totalRevenueExVAT": 673.0809, "totalCost": 222.5, "totalQty": 66.0, "orderCount": 57, "uniqueProducts": 3, "margin": 450.58090000000004, "marginPct": 66.94305246219288}, {"YearMonth": "2015-07", "Category": "Vitamin D", "totalRevenue": 88.4532, "totalRevenueExVAT": 73.711, "totalCost": 14.700000000000001, "totalQty": 11.0, "orderCount": 11, "uniqueProducts": 1, "margin": 59.010999999999996, "marginPct": 80.05725061388395}, {"YearMonth": "2015-07", "Category": "Vitamin E", "totalRevenue": 591.2004000000001, "totalRevenueExVAT": 496.542, "totalCost": 276.2, "totalQty": 43.0, "orderCount": 36, "uniqueProducts": 3, "margin": 220.34199999999998, "marginPct": 44.37529957183884}, {"YearMonth": "2015-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 2030.3796, "totalRevenueExVAT": 1691.9830000000002, "totalCost": 626.5, "totalQty": 93.0, "orderCount": 91, "uniqueProducts": 1, "margin": 1065.4830000000002, "marginPct": 62.97244121247082}, {"YearMonth": "2015-08", "Category": "Amino Acids", "totalRevenue": 9189.7742, "totalRevenueExVAT": 7687.77, "totalCost": 3183.22, "totalQty": 581.0, "orderCount": 495, "uniqueProducts": 8, "margin": 4504.550000000001, "marginPct": 58.59371443214353}, {"YearMonth": "2015-08", "Category": "Bone Health", "totalRevenue": 3194.5598, "totalRevenueExVAT": 2681.3488, "totalCost": 725.5, "totalQty": 328.0, "orderCount": 265, "uniqueProducts": 7, "margin": 1955.8488000000002, "marginPct": 72.9427219614248}, {"YearMonth": "2015-08", "Category": "Cod Liver Oil", "totalRevenue": 1554.8067, "totalRevenueExVAT": 1298.5748, "totalCost": 534.0, "totalQty": 154.0, "orderCount": 133, "uniqueProducts": 4, "margin": 764.5748000000001, "marginPct": 58.87799455218137}, {"YearMonth": "2015-08", "Category": "Evening Primose Oils", "totalRevenue": 2208.629, "totalRevenueExVAT": 1846.052, "totalCost": 827.4, "totalQty": 155.0, "orderCount": 147, "uniqueProducts": 4, "margin": 1018.6519999999999, "marginPct": 55.1800274315133}, {"YearMonth": "2015-08", "Category": "Glucosamine", "totalRevenue": 8593.7454, "totalRevenueExVAT": 7193.885, "totalCost": 3321.1, "totalQty": 507.0, "orderCount": 421, "uniqueProducts": 12, "margin": 3872.7850000000003, "marginPct": 53.8344024126046}, {"YearMonth": "2015-08", "Category": "Herbal Supplements", "totalRevenue": 19574.2422, "totalRevenueExVAT": 16402.7688, "totalCost": 6384.06, "totalQty": 1343.0, "orderCount": 1010, "uniqueProducts": 26, "margin": 10018.7088, "marginPct": 61.07937581855083}, {"YearMonth": "2015-08", "Category": "Minerals", "totalRevenue": 1001.2520000000001, "totalRevenueExVAT": 840.453, "totalCost": 331.2, "totalQty": 129.0, "orderCount": 117, "uniqueProducts": 4, "margin": 509.253, "marginPct": 60.59268037594012}, {"YearMonth": "2015-08", "Category": "Multivitamins", "totalRevenue": 3702.741, "totalRevenueExVAT": 3094.055, "totalCost": 1407.1, "totalQty": 323.0, "orderCount": 290, "uniqueProducts": 6, "margin": 1686.955, "marginPct": 54.52246323998765}, {"YearMonth": "2015-08", "Category": "Omega 3 Supplements", "totalRevenue": 4795.988, "totalRevenueExVAT": 4010.504, "totalCost": 1254.85, "totalQty": 308.0, "orderCount": 278, "uniqueProducts": 7, "margin": 2755.654, "marginPct": 68.71091513685063}, {"YearMonth": "2015-08", "Category": "Probiotics", "totalRevenue": 1763.3776, "totalRevenueExVAT": 1471.28, "totalCost": 625.0, "totalQty": 90.0, "orderCount": 86, "uniqueProducts": 1, "margin": 846.28, "marginPct": 57.519982600184875}, {"YearMonth": "2015-08", "Category": "Vitamin B", "totalRevenue": 3953.02, "totalRevenueExVAT": 3306.6209, "totalCost": 1074.21, "totalQty": 343.0, "orderCount": 276, "uniqueProducts": 13, "margin": 2232.4109, "marginPct": 67.51336084520605}, {"YearMonth": "2015-08", "Category": "Vitamin C", "totalRevenue": 1121.6756, "totalRevenueExVAT": 937.4936, "totalCost": 315.7, "totalQty": 80.0, "orderCount": 69, "uniqueProducts": 3, "margin": 621.7936, "marginPct": 66.32510344603952}, {"YearMonth": "2015-08", "Category": "Vitamin D", "totalRevenue": 273.4448, "totalRevenueExVAT": 228.836, "totalCost": 50.400000000000006, "totalQty": 28.0, "orderCount": 27, "uniqueProducts": 1, "margin": 178.436, "marginPct": 77.97549336642837}, {"YearMonth": "2015-08", "Category": "Vitamin E", "totalRevenue": 857.4888, "totalRevenueExVAT": 715.956, "totalCost": 405.8, "totalQty": 57.0, "orderCount": 52, "uniqueProducts": 3, "margin": 310.156, "marginPct": 43.320539251015425}, {"YearMonth": "2015-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 2901.4002, "totalRevenueExVAT": 2424.9030000000002, "totalCost": 919.6, "totalQty": 123.0, "orderCount": 120, "uniqueProducts": 1, "margin": 1505.3030000000003, "marginPct": 62.07683358880748}, {"YearMonth": "2015-09", "Category": "Amino Acids", "totalRevenue": 9265.3745, "totalRevenueExVAT": 7752.519, "totalCost": 3720.18, "totalQty": 599.0, "orderCount": 519, "uniqueProducts": 8, "margin": 4032.3390000000004, "marginPct": 52.013274653051475}, {"YearMonth": "2015-09", "Category": "Bone Health", "totalRevenue": 3076.4636, "totalRevenueExVAT": 2601.4072, "totalCost": 768.0, "totalQty": 350.0, "orderCount": 280, "uniqueProducts": 7, "margin": 1833.4072, "marginPct": 70.47751693775585}, {"YearMonth": "2015-09", "Category": "Cod Liver Oil", "totalRevenue": 1591.1619, "totalRevenueExVAT": 1329.0104000000001, "totalCost": 592.2, "totalQty": 162.0, "orderCount": 139, "uniqueProducts": 4, "margin": 736.8104000000001, "marginPct": 55.44052928404473}, {"YearMonth": "2015-09", "Category": "Evening Primose Oils", "totalRevenue": 2240.221, "totalRevenueExVAT": 1871.8381, "totalCost": 917.8, "totalQty": 154.0, "orderCount": 150, "uniqueProducts": 4, "margin": 954.0381, "marginPct": 50.96798168602296}, {"YearMonth": "2015-09", "Category": "Glucosamine", "totalRevenue": 8663.6306, "totalRevenueExVAT": 7243.3085, "totalCost": 3541.7, "totalQty": 554.0, "orderCount": 449, "uniqueProducts": 12, "margin": 3701.6085000000003, "marginPct": 51.10383604398459}, {"YearMonth": "2015-09", "Category": "Herbal Supplements", "totalRevenue": 20324.2096, "totalRevenueExVAT": 16981.3544, "totalCost": 6985.89, "totalQty": 1484.0, "orderCount": 1150, "uniqueProducts": 26, "margin": 9995.4644, "marginPct": 58.861408604722364}, {"YearMonth": "2015-09", "Category": "Minerals", "totalRevenue": 921.7822, "totalRevenueExVAT": 769.7646, "totalCost": 326.3, "totalQty": 134.0, "orderCount": 118, "uniqueProducts": 4, "margin": 443.46459999999996, "marginPct": 57.61041752244777}, {"YearMonth": "2015-09", "Category": "Multivitamins", "totalRevenue": 3485.1883, "totalRevenueExVAT": 2914.6747, "totalCost": 1394.8999999999999, "totalQty": 350.0, "orderCount": 320, "uniqueProducts": 6, "margin": 1519.7747000000002, "marginPct": 52.14217216075606}, {"YearMonth": "2015-09", "Category": "Omega 3 Supplements", "totalRevenue": 4592.6714, "totalRevenueExVAT": 3832.2064, "totalCost": 1314.8500000000001, "totalQty": 312.0, "orderCount": 268, "uniqueProducts": 8, "margin": 2517.3563999999997, "marginPct": 65.68947852078114}, {"YearMonth": "2015-09", "Category": "Probiotics", "totalRevenue": 1954.7340000000002, "totalRevenueExVAT": 1633.5616, "totalCost": 747.1, "totalQty": 104.0, "orderCount": 104, "uniqueProducts": 1, "margin": 886.4616, "marginPct": 54.26557529266114}, {"YearMonth": "2015-09", "Category": "Vitamin B", "totalRevenue": 3877.0000999999997, "totalRevenueExVAT": 3235.6886, "totalCost": 1091.6, "totalQty": 365.0, "orderCount": 307, "uniqueProducts": 13, "margin": 2144.0886, "marginPct": 66.26374985528582}, {"YearMonth": "2015-09", "Category": "Vitamin C", "totalRevenue": 1408.1846, "totalRevenueExVAT": 1185.5741, "totalCost": 418.3, "totalQty": 118.0, "orderCount": 99, "uniqueProducts": 4, "margin": 767.2741000000001, "marginPct": 64.71751533708438}, {"YearMonth": "2015-09", "Category": "Vitamin D", "totalRevenue": 643.9042000000001, "totalRevenueExVAT": 552.5581999999999, "totalCost": 160.65, "totalQty": 82.0, "orderCount": 65, "uniqueProducts": 1, "margin": 391.90819999999997, "marginPct": 70.92613954511941}, {"YearMonth": "2015-09", "Category": "Vitamin E", "totalRevenue": 921.9925999999999, "totalRevenueExVAT": 775.0584, "totalCost": 478.1, "totalQty": 63.0, "orderCount": 54, "uniqueProducts": 3, "margin": 296.9584, "marginPct": 38.31432573338989}, {"YearMonth": "2015-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 2872.2048, "totalRevenueExVAT": 2399.2947, "totalCost": 947.1, "totalQty": 133.0, "orderCount": 119, "uniqueProducts": 1, "margin": 1452.1947, "marginPct": 60.52589954872989}, {"YearMonth": "2015-10", "Category": "Amino Acids", "totalRevenue": 6846.8165, "totalRevenueExVAT": 5709.5405, "totalCost": 2669.91, "totalQty": 473.0, "orderCount": 402, "uniqueProducts": 9, "margin": 3039.6305, "marginPct": 53.23774303728995}, {"YearMonth": "2015-10", "Category": "Bone Health", "totalRevenue": 2811.5602, "totalRevenueExVAT": 2348.5766, "totalCost": 690.3, "totalQty": 306.0, "orderCount": 258, "uniqueProducts": 7, "margin": 1658.2766, "marginPct": 70.60772895378418}, {"YearMonth": "2015-10", "Category": "Cod Liver Oil", "totalRevenue": 1255.176, "totalRevenueExVAT": 1049.5823, "totalCost": 479.8, "totalQty": 135.0, "orderCount": 122, "uniqueProducts": 4, "margin": 569.7823000000001, "marginPct": 54.28657666959514}, {"YearMonth": "2015-10", "Category": "Evening Primose Oils", "totalRevenue": 1863.334, "totalRevenueExVAT": 1552.7779, "totalCost": 741.6, "totalQty": 144.0, "orderCount": 140, "uniqueProducts": 4, "margin": 811.1779, "marginPct": 52.2404330973541}, {"YearMonth": "2015-10", "Category": "Glucosamine", "totalRevenue": 6367.9317, "totalRevenueExVAT": 5325.8349, "totalCost": 2618.7, "totalQty": 430.0, "orderCount": 357, "uniqueProducts": 13, "margin": 2707.1349, "marginPct": 50.830244474908525}, {"YearMonth": "2015-10", "Category": "Herbal Supplements", "totalRevenue": 14215.2218, "totalRevenueExVAT": 11871.9785, "totalCost": 4725.41, "totalQty": 1072.0, "orderCount": 844, "uniqueProducts": 25, "margin": 7146.568499999999, "marginPct": 60.1969461113832}, {"YearMonth": "2015-10", "Category": "Minerals", "totalRevenue": 889.3004999999999, "totalRevenueExVAT": 741.7024, "totalCost": 309.40000000000003, "totalQty": 119.0, "orderCount": 110, "uniqueProducts": 4, "margin": 432.3024, "marginPct": 58.28515587923134}, {"YearMonth": "2015-10", "Category": "Multivitamins", "totalRevenue": 2472.64, "totalRevenueExVAT": 2063.5670999999998, "totalCost": 968.6999999999999, "totalQty": 242.0, "orderCount": 224, "uniqueProducts": 6, "margin": 1094.8671, "marginPct": 53.05701471980243}, {"YearMonth": "2015-10", "Category": "Omega 3 Supplements", "totalRevenue": 4120.4814, "totalRevenueExVAT": 3438.2192, "totalCost": 1168.05, "totalQty": 287.0, "orderCount": 246, "uniqueProducts": 7, "margin": 2270.1692000000003, "marginPct": 66.02747143055919}, {"YearMonth": "2015-10", "Category": "Probiotics", "totalRevenue": 1643.7708, "totalRevenueExVAT": 1377.988, "totalCost": 612.1, "totalQty": 94.0, "orderCount": 90, "uniqueProducts": 1, "margin": 765.888, "marginPct": 55.58016470390164}, {"YearMonth": "2015-10", "Category": "Vitamin B", "totalRevenue": 3346.849, "totalRevenueExVAT": 2789.0394, "totalCost": 918.79, "totalQty": 305.0, "orderCount": 258, "uniqueProducts": 13, "margin": 1870.2494000000002, "marginPct": 67.05711651115435}, {"YearMonth": "2015-10", "Category": "Vitamin C", "totalRevenue": 1142.884, "totalRevenueExVAT": 952.4032, "totalCost": 335.3, "totalQty": 98.0, "orderCount": 85, "uniqueProducts": 4, "margin": 617.1032, "marginPct": 64.79432240462863}, {"YearMonth": "2015-10", "Category": "Vitamin D", "totalRevenue": 799.2699, "totalRevenueExVAT": 666.061, "totalCost": 180.6, "totalQty": 97.0, "orderCount": 75, "uniqueProducts": 1, "margin": 485.461, "marginPct": 72.88536635533382}, {"YearMonth": "2015-10", "Category": "Vitamin E", "totalRevenue": 559.2185999999999, "totalRevenueExVAT": 467.3973, "totalCost": 284.0, "totalQty": 41.0, "orderCount": 34, "uniqueProducts": 4, "margin": 183.39729999999997, "marginPct": 39.23798875175359}, {"YearMonth": "2015-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 2465.4772000000003, "totalRevenueExVAT": 2054.5628, "totalCost": 840.3, "totalQty": 106.0, "orderCount": 102, "uniqueProducts": 1, "margin": 1214.2628000000002, "marginPct": 59.10078776857053}, {"YearMonth": "2015-11", "Category": "Amino Acids", "totalRevenue": 6773.4972, "totalRevenueExVAT": 5662.934, "totalCost": 2338.6, "totalQty": 413.0, "orderCount": 343, "uniqueProducts": 8, "margin": 3324.3340000000003, "marginPct": 58.703385912673546}, {"YearMonth": "2015-11", "Category": "Bone Health", "totalRevenue": 3290.6474, "totalRevenueExVAT": 2751.0464, "totalCost": 750.4, "totalQty": 335.0, "orderCount": 290, "uniqueProducts": 7, "margin": 2000.6464, "marginPct": 72.72310637872192}, {"YearMonth": "2015-11", "Category": "Cod Liver Oil", "totalRevenue": 1559.9114, "totalRevenueExVAT": 1301.1747, "totalCost": 635.9, "totalQty": 175.0, "orderCount": 147, "uniqueProducts": 4, "margin": 665.2747, "marginPct": 51.128776174329246}, {"YearMonth": "2015-11", "Category": "Evening Primose Oils", "totalRevenue": 2624.064, "totalRevenueExVAT": 2189.213, "totalCost": 970.6, "totalQty": 179.0, "orderCount": 171, "uniqueProducts": 4, "margin": 1218.6130000000003, "marginPct": 55.66443283499596}, {"YearMonth": "2015-11", "Category": "Glucosamine", "totalRevenue": 8405.507599999999, "totalRevenueExVAT": 7040.0617, "totalCost": 3157.5, "totalQty": 499.0, "orderCount": 418, "uniqueProducts": 12, "margin": 3882.5617, "marginPct": 55.14954080587107}, {"YearMonth": "2015-11", "Category": "Herbal Supplements", "totalRevenue": 19481.1435, "totalRevenueExVAT": 16270.0434, "totalCost": 6544.3, "totalQty": 1248.0, "orderCount": 988, "uniqueProducts": 25, "margin": 9725.7434, "marginPct": 59.776997275864666}, {"YearMonth": "2015-11", "Category": "Minerals", "totalRevenue": 933.8056, "totalRevenueExVAT": 779.831, "totalCost": 306.2, "totalQty": 124.0, "orderCount": 109, "uniqueProducts": 4, "margin": 473.63100000000003, "marginPct": 60.73508234476444}, {"YearMonth": "2015-11", "Category": "Multivitamins", "totalRevenue": 3483.7554, "totalRevenueExVAT": 2916.428, "totalCost": 1308.5, "totalQty": 326.0, "orderCount": 281, "uniqueProducts": 6, "margin": 1607.9279999999999, "marginPct": 55.13347149321019}, {"YearMonth": "2015-11", "Category": "Omega 3 Supplements", "totalRevenue": 4651.3933, "totalRevenueExVAT": 3893.7559, "totalCost": 1310.5, "totalQty": 291.0, "orderCount": 254, "uniqueProducts": 7, "margin": 2583.2559, "marginPct": 66.34355019532683}, {"YearMonth": "2015-11", "Category": "Probiotics", "totalRevenue": 1730.6256, "totalRevenueExVAT": 1447.3200000000002, "totalCost": 618.1, "totalQty": 85.0, "orderCount": 81, "uniqueProducts": 1, "margin": 829.2200000000001, "marginPct": 57.29348036370672}, {"YearMonth": "2015-11", "Category": "Vitamin B", "totalRevenue": 3829.7502, "totalRevenueExVAT": 3198.2362, "totalCost": 987.17, "totalQty": 315.0, "orderCount": 270, "uniqueProducts": 12, "margin": 2211.0661999999998, "marginPct": 69.1339245050131}, {"YearMonth": "2015-11", "Category": "Vitamin C", "totalRevenue": 1316.1984, "totalRevenueExVAT": 1100.707, "totalCost": 363.95, "totalQty": 103.0, "orderCount": 89, "uniqueProducts": 4, "margin": 736.7570000000001, "marginPct": 66.9348882127578}, {"YearMonth": "2015-11", "Category": "Vitamin D", "totalRevenue": 972.4108, "totalRevenueExVAT": 813.384, "totalCost": 179.55, "totalQty": 99.0, "orderCount": 89, "uniqueProducts": 1, "margin": 633.8340000000001, "marginPct": 77.92555545720103}, {"YearMonth": "2015-11", "Category": "Vitamin E", "totalRevenue": 784.752, "totalRevenueExVAT": 662.835, "totalCost": 380.6, "totalQty": 52.0, "orderCount": 49, "uniqueProducts": 3, "margin": 282.235, "marginPct": 42.57997842600346}, {"YearMonth": "2015-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 3011.6526, "totalRevenueExVAT": 2518.03, "totalCost": 951.4, "totalQty": 128.0, "orderCount": 127, "uniqueProducts": 1, "margin": 1566.63, "marginPct": 62.21649464065162}, {"YearMonth": "2015-12", "Category": "Amino Acids", "totalRevenue": 6574.7026, "totalRevenueExVAT": 5493.7098, "totalCost": 2514.22, "totalQty": 446.0, "orderCount": 392, "uniqueProducts": 8, "margin": 2979.4898, "marginPct": 54.23456841495341}, {"YearMonth": "2015-12", "Category": "Bone Health", "totalRevenue": 3044.2352, "totalRevenueExVAT": 2543.2473, "totalCost": 752.1, "totalQty": 329.0, "orderCount": 276, "uniqueProducts": 7, "margin": 1791.1473, "marginPct": 70.42757108205718}, {"YearMonth": "2015-12", "Category": "Cod Liver Oil", "totalRevenue": 1173.4359, "totalRevenueExVAT": 982.3445, "totalCost": 466.0, "totalQty": 129.0, "orderCount": 110, "uniqueProducts": 4, "margin": 516.3445, "marginPct": 52.56246662957853}, {"YearMonth": "2015-12", "Category": "Evening Primose Oils", "totalRevenue": 1943.3968, "totalRevenueExVAT": 1619.4971, "totalCost": 783.6, "totalQty": 137.0, "orderCount": 130, "uniqueProducts": 4, "margin": 835.8971, "marginPct": 51.6146092512299}, {"YearMonth": "2015-12", "Category": "Glucosamine", "totalRevenue": 6852.1716, "totalRevenueExVAT": 5736.5982, "totalCost": 2899.5, "totalQty": 464.0, "orderCount": 402, "uniqueProducts": 13, "margin": 2837.0982000000004, "marginPct": 49.45610797702374}, {"YearMonth": "2015-12", "Category": "Herbal Supplements", "totalRevenue": 17092.0156, "totalRevenueExVAT": 14251.9226, "totalCost": 5973.4800000000005, "totalQty": 1200.0, "orderCount": 955, "uniqueProducts": 24, "margin": 8278.442599999998, "marginPct": 58.086497045668764}, {"YearMonth": "2015-12", "Category": "Minerals", "totalRevenue": 809.9827, "totalRevenueExVAT": 675.6045, "totalCost": 285.8, "totalQty": 115.0, "orderCount": 105, "uniqueProducts": 4, "margin": 389.8045, "marginPct": 57.69714381712969}, {"YearMonth": "2015-12", "Category": "Multivitamins", "totalRevenue": 3050.4975, "totalRevenueExVAT": 2559.419, "totalCost": 1202.3, "totalQty": 306.0, "orderCount": 272, "uniqueProducts": 6, "margin": 1357.119, "marginPct": 53.024495012344595}, {"YearMonth": "2015-12", "Category": "Omega 3 Supplements", "totalRevenue": 4185.5514, "totalRevenueExVAT": 3495.9092, "totalCost": 1233.45, "totalQty": 292.0, "orderCount": 255, "uniqueProducts": 6, "margin": 2262.4592000000002, "marginPct": 64.71733304743728}, {"YearMonth": "2015-12", "Category": "Probiotics", "totalRevenue": 1343.9358, "totalRevenueExVAT": 1121.565, "totalCost": 512.4, "totalQty": 76.0, "orderCount": 74, "uniqueProducts": 1, "margin": 609.1650000000001, "marginPct": 54.313838252798554}, {"YearMonth": "2015-12", "Category": "Vitamin B", "totalRevenue": 2986.3932, "totalRevenueExVAT": 2493.9105, "totalCost": 860.1800000000001, "totalQty": 280.0, "orderCount": 239, "uniqueProducts": 12, "margin": 1633.7305, "marginPct": 65.50878630167361}, {"YearMonth": "2015-12", "Category": "Vitamin C", "totalRevenue": 1285.5163, "totalRevenueExVAT": 1077.9761, "totalCost": 382.55, "totalQty": 108.0, "orderCount": 89, "uniqueProducts": 4, "margin": 695.4261000000001, "marginPct": 64.51220022410517}, {"YearMonth": "2015-12", "Category": "Vitamin D", "totalRevenue": 1128.6091, "totalRevenueExVAT": 942.8813, "totalCost": 233.10000000000002, "totalQty": 150.0, "orderCount": 111, "uniqueProducts": 1, "margin": 709.7813, "marginPct": 75.27790613728367}, {"YearMonth": "2015-12", "Category": "Vitamin E", "totalRevenue": 745.233, "totalRevenueExVAT": 621.0276, "totalCost": 385.8, "totalQty": 46.0, "orderCount": 43, "uniqueProducts": 3, "margin": 235.2276, "marginPct": 37.87715715050346}, {"YearMonth": "2015-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 2455.5112, "totalRevenueExVAT": 2049.4957, "totalCost": 837.4, "totalQty": 105.0, "orderCount": 100, "uniqueProducts": 1, "margin": 1212.0956999999999, "marginPct": 59.14116823958205}, {"YearMonth": "2016-01", "Category": "Amino Acids", "totalRevenue": 12351.035, "totalRevenueExVAT": 10329.2529, "totalCost": 5386.44, "totalQty": 904.0, "orderCount": 754, "uniqueProducts": 8, "margin": 4942.8129, "marginPct": 47.852569279236064}, {"YearMonth": "2016-01", "Category": "Bone Health", "totalRevenue": 5102.9465, "totalRevenueExVAT": 4273.843, "totalCost": 1312.7, "totalQty": 562.0, "orderCount": 453, "uniqueProducts": 7, "margin": 2961.143, "marginPct": 69.28525451215685}, {"YearMonth": "2016-01", "Category": "Cod Liver Oil", "totalRevenue": 2096.982, "totalRevenueExVAT": 1749.4715, "totalCost": 812.5, "totalQty": 218.0, "orderCount": 194, "uniqueProducts": 3, "margin": 936.9715000000001, "marginPct": 53.55740290710652}, {"YearMonth": "2016-01", "Category": "Evening Primose Oils", "totalRevenue": 3205.8460999999998, "totalRevenueExVAT": 2686.7437, "totalCost": 1339.4, "totalQty": 254.0, "orderCount": 241, "uniqueProducts": 4, "margin": 1347.3437, "marginPct": 50.147831369251925}, {"YearMonth": "2016-01", "Category": "Glucosamine", "totalRevenue": 10526.1968, "totalRevenueExVAT": 8820.6736, "totalCost": 4892.9, "totalQty": 762.0, "orderCount": 634, "uniqueProducts": 12, "margin": 3927.7736000000004, "marginPct": 44.52917972160312}, {"YearMonth": "2016-01", "Category": "Herbal Supplements", "totalRevenue": 28730.5614, "totalRevenueExVAT": 24007.6692, "totalCost": 10763.17, "totalQty": 2199.0, "orderCount": 1705, "uniqueProducts": 24, "margin": 13244.4992, "marginPct": 55.16778446780665}, {"YearMonth": "2016-01", "Category": "Minerals", "totalRevenue": 1339.3183999999999, "totalRevenueExVAT": 1121.9298, "totalCost": 502.2, "totalQty": 202.0, "orderCount": 180, "uniqueProducts": 4, "margin": 619.7297999999998, "marginPct": 55.237841084174775}, {"YearMonth": "2016-01", "Category": "Multivitamins", "totalRevenue": 4616.1056, "totalRevenueExVAT": 3864.9726, "totalCost": 1934.8999999999999, "totalQty": 474.0, "orderCount": 421, "uniqueProducts": 6, "margin": 1930.0726000000002, "marginPct": 49.937549363221876}, {"YearMonth": "2016-01", "Category": "Omega 3 Supplements", "totalRevenue": 7545.9589, "totalRevenueExVAT": 6322.7055, "totalCost": 2269.9, "totalQty": 517.0, "orderCount": 434, "uniqueProducts": 6, "margin": 4052.8055, "marginPct": 64.09922935679987}, {"YearMonth": "2016-01", "Category": "Probiotics", "totalRevenue": 2695.344, "totalRevenueExVAT": 2260.7366, "totalCost": 1150.8, "totalQty": 148.0, "orderCount": 144, "uniqueProducts": 1, "margin": 1109.9366000000002, "marginPct": 49.09623704061765}, {"YearMonth": "2016-01", "Category": "Vitamin B", "totalRevenue": 5202.254, "totalRevenueExVAT": 4350.6276, "totalCost": 1487.18, "totalQty": 512.0, "orderCount": 453, "uniqueProducts": 12, "margin": 2863.4475999999995, "marginPct": 65.81688582125483}, {"YearMonth": "2016-01", "Category": "Vitamin C", "totalRevenue": 1905.7168, "totalRevenueExVAT": 1594.9477, "totalCost": 587.45, "totalQty": 168.0, "orderCount": 145, "uniqueProducts": 4, "margin": 1007.4976999999999, "marginPct": 63.16807127907704}, {"YearMonth": "2016-01", "Category": "Vitamin D", "totalRevenue": 1347.8519, "totalRevenueExVAT": 1128.7229, "totalCost": 286.65000000000003, "totalQty": 170.0, "orderCount": 153, "uniqueProducts": 1, "margin": 842.0728999999999, "marginPct": 74.60404143479325}, {"YearMonth": "2016-01", "Category": "Vitamin E", "totalRevenue": 1258.5774999999999, "totalRevenueExVAT": 1052.8089, "totalCost": 676.0, "totalQty": 85.0, "orderCount": 70, "uniqueProducts": 3, "margin": 376.8089, "marginPct": 35.79081635803041}, {"YearMonth": "2016-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 3824.6065000000003, "totalRevenueExVAT": 3197.3994000000002, "totalCost": 1344.9, "totalQty": 177.0, "orderCount": 171, "uniqueProducts": 1, "margin": 1852.4994000000002, "marginPct": 57.937691487650866}, {"YearMonth": "2016-02", "Category": "Amino Acids", "totalRevenue": 4584.3382, "totalRevenueExVAT": 3827.3373, "totalCost": 1549.42, "totalQty": 296.0, "orderCount": 263, "uniqueProducts": 8, "margin": 2277.9173, "marginPct": 59.5170250607387}, {"YearMonth": "2016-02", "Category": "Bone Health", "totalRevenue": 2968.5477, "totalRevenueExVAT": 2481.8113, "totalCost": 692.8, "totalQty": 299.0, "orderCount": 255, "uniqueProducts": 7, "margin": 1789.0113, "marginPct": 72.08490427938659}, {"YearMonth": "2016-02", "Category": "Cod Liver Oil", "totalRevenue": 922.6806, "totalRevenueExVAT": 771.2538, "totalCost": 311.5, "totalQty": 90.0, "orderCount": 84, "uniqueProducts": 3, "margin": 459.75379999999996, "marginPct": 59.61122006789464}, {"YearMonth": "2016-02", "Category": "Evening Primose Oils", "totalRevenue": 1742.135, "totalRevenueExVAT": 1453.7173, "totalCost": 652.0, "totalQty": 127.0, "orderCount": 126, "uniqueProducts": 4, "margin": 801.7173, "marginPct": 55.14946406705072}, {"YearMonth": "2016-02", "Category": "Glucosamine", "totalRevenue": 5984.3853, "totalRevenueExVAT": 4994.8835, "totalCost": 2282.3, "totalQty": 363.0, "orderCount": 308, "uniqueProducts": 12, "margin": 2712.5834999999997, "marginPct": 54.307242601353956}, {"YearMonth": "2016-02", "Category": "Herbal Supplements", "totalRevenue": 14841.0344, "totalRevenueExVAT": 12390.855, "totalCost": 4965.68, "totalQty": 980.0, "orderCount": 780, "uniqueProducts": 24, "margin": 7425.174999999999, "marginPct": 59.92463796888915}, {"YearMonth": "2016-02", "Category": "Minerals", "totalRevenue": 787.4364, "totalRevenueExVAT": 658.1271, "totalCost": 261.8, "totalQty": 105.0, "orderCount": 96, "uniqueProducts": 4, "margin": 396.32710000000003, "marginPct": 60.220449818887566}, {"YearMonth": "2016-02", "Category": "Multivitamins", "totalRevenue": 2672.3527, "totalRevenueExVAT": 2230.6965, "totalCost": 971.1999999999999, "totalQty": 252.0, "orderCount": 232, "uniqueProducts": 6, "margin": 1259.4965000000002, "marginPct": 56.46202878786962}, {"YearMonth": "2016-02", "Category": "Omega 3 Supplements", "totalRevenue": 3053.8096, "totalRevenueExVAT": 2547.3342, "totalCost": 847.8000000000001, "totalQty": 204.0, "orderCount": 186, "uniqueProducts": 6, "margin": 1699.5341999999996, "marginPct": 66.71814793677248}, {"YearMonth": "2016-02", "Category": "Probiotics", "totalRevenue": 1412.1625999999999, "totalRevenueExVAT": 1182.8999000000001, "totalCost": 494.59999999999997, "totalQty": 72.0, "orderCount": 69, "uniqueProducts": 1, "margin": 688.2999000000002, "marginPct": 58.18750174888003}, {"YearMonth": "2016-02", "Category": "Vitamin B", "totalRevenue": 3008.5690999999997, "totalRevenueExVAT": 2510.877, "totalCost": 784.92, "totalQty": 276.0, "orderCount": 241, "uniqueProducts": 12, "margin": 1725.9569999999999, "marginPct": 68.73920944753566}, {"YearMonth": "2016-02", "Category": "Vitamin C", "totalRevenue": 1049.6625, "totalRevenueExVAT": 883.1632, "totalCost": 291.0, "totalQty": 84.0, "orderCount": 73, "uniqueProducts": 4, "margin": 592.1632, "marginPct": 67.05025752884632}, {"YearMonth": "2016-02", "Category": "Vitamin D", "totalRevenue": 964.06, "totalRevenueExVAT": 803.3835, "totalCost": 176.4, "totalQty": 99.0, "orderCount": 85, "uniqueProducts": 1, "margin": 626.9835, "marginPct": 78.04286495801819}, {"YearMonth": "2016-02", "Category": "Vitamin E", "totalRevenue": 703.8564, "totalRevenueExVAT": 592.9152, "totalCost": 333.8, "totalQty": 50.0, "orderCount": 47, "uniqueProducts": 3, "margin": 259.1152, "marginPct": 43.70189868635515}, {"YearMonth": "2016-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 1862.7608, "totalRevenueExVAT": 1557.148, "totalCost": 578.0, "totalQty": 89.0, "orderCount": 84, "uniqueProducts": 1, "margin": 979.1479999999999, "marginPct": 62.88085654029032}, {"YearMonth": "2016-03", "Category": "Amino Acids", "totalRevenue": 7205.181, "totalRevenueExVAT": 6035.9789, "totalCost": 2571.98, "totalQty": 463.0, "orderCount": 384, "uniqueProducts": 8, "margin": 3463.9989, "marginPct": 57.38918172825289}, {"YearMonth": "2016-03", "Category": "Bone Health", "totalRevenue": 3736.6772, "totalRevenueExVAT": 3137.1883, "totalCost": 905.0, "totalQty": 370.0, "orderCount": 310, "uniqueProducts": 7, "margin": 2232.1883, "marginPct": 71.15251258587188}, {"YearMonth": "2016-03", "Category": "Cod Liver Oil", "totalRevenue": 1530.0574, "totalRevenueExVAT": 1275.0472, "totalCost": 518.9, "totalQty": 145.0, "orderCount": 137, "uniqueProducts": 3, "margin": 756.1472, "marginPct": 59.30346735399286}, {"YearMonth": "2016-03", "Category": "Evening Primose Oils", "totalRevenue": 2556.079, "totalRevenueExVAT": 2136.7125, "totalCost": 962.2, "totalQty": 179.0, "orderCount": 169, "uniqueProducts": 4, "margin": 1174.5125, "marginPct": 54.96820466019645}, {"YearMonth": "2016-03", "Category": "Glucosamine", "totalRevenue": 10483.4242, "totalRevenueExVAT": 8781.527900000001, "totalCost": 3860.8, "totalQty": 708.0, "orderCount": 536, "uniqueProducts": 12, "margin": 4920.727900000001, "marginPct": 56.03498566576325}, {"YearMonth": "2016-03", "Category": "Herbal Supplements", "totalRevenue": 21387.5852, "totalRevenueExVAT": 17856.7795, "totalCost": 7283.2, "totalQty": 1449.0, "orderCount": 1119, "uniqueProducts": 25, "margin": 10573.5795, "marginPct": 59.21325007121244}, {"YearMonth": "2016-03", "Category": "Minerals", "totalRevenue": 1067.46, "totalRevenueExVAT": 899.2090000000001, "totalCost": 376.1, "totalQty": 139.0, "orderCount": 117, "uniqueProducts": 4, "margin": 523.109, "marginPct": 58.17435101294583}, {"YearMonth": "2016-03", "Category": "Multivitamins", "totalRevenue": 3848.2241, "totalRevenueExVAT": 3218.4646000000002, "totalCost": 1433.7, "totalQty": 357.0, "orderCount": 325, "uniqueProducts": 6, "margin": 1784.7646000000002, "marginPct": 55.45391426707008}, {"YearMonth": "2016-03", "Category": "Omega 3 Supplements", "totalRevenue": 5572.6772, "totalRevenueExVAT": 4664.037, "totalCost": 1568.25, "totalQty": 372.0, "orderCount": 317, "uniqueProducts": 6, "margin": 3095.7870000000003, "marginPct": 66.37569556159181}, {"YearMonth": "2016-03", "Category": "Probiotics", "totalRevenue": 2276.2672000000002, "totalRevenueExVAT": 1908.952, "totalCost": 830.9, "totalQty": 106.0, "orderCount": 101, "uniqueProducts": 1, "margin": 1078.0520000000001, "marginPct": 56.47349959558963}, {"YearMonth": "2016-03", "Category": "Vitamin B", "totalRevenue": 3781.7239, "totalRevenueExVAT": 3158.7631, "totalCost": 1024.8, "totalQty": 341.0, "orderCount": 290, "uniqueProducts": 12, "margin": 2133.9631, "marginPct": 67.55692125186596}, {"YearMonth": "2016-03", "Category": "Vitamin C", "totalRevenue": 1579.614, "totalRevenueExVAT": 1323.9563, "totalCost": 438.95, "totalQty": 125.0, "orderCount": 111, "uniqueProducts": 4, "margin": 885.0063, "marginPct": 66.84558244105186}, {"YearMonth": "2016-03", "Category": "Vitamin D", "totalRevenue": 1133.7823999999998, "totalRevenueExVAT": 958.0986, "totalCost": 242.55, "totalQty": 131.0, "orderCount": 100, "uniqueProducts": 1, "margin": 715.5486000000001, "marginPct": 74.68423396088879}, {"YearMonth": "2016-03", "Category": "Vitamin E", "totalRevenue": 914.0106, "totalRevenueExVAT": 761.676, "totalCost": 451.0, "totalQty": 61.0, "orderCount": 53, "uniqueProducts": 3, "margin": 310.67600000000004, "marginPct": 40.78847173863953}, {"YearMonth": "2016-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 2785.542, "totalRevenueExVAT": 2321.2850000000003, "totalCost": 856.7, "totalQty": 130.0, "orderCount": 124, "uniqueProducts": 1, "margin": 1464.5850000000003, "marginPct": 63.093717488373905}, {"YearMonth": "2016-04", "Category": "Amino Acids", "totalRevenue": 6656.8786, "totalRevenueExVAT": 5592.891, "totalCost": 2473.03, "totalQty": 450.0, "orderCount": 392, "uniqueProducts": 8, "margin": 3119.8609999999994, "marginPct": 55.782617612250974}, {"YearMonth": "2016-04", "Category": "Bone Health", "totalRevenue": 3889.0729, "totalRevenueExVAT": 3249.832, "totalCost": 931.5, "totalQty": 418.0, "orderCount": 348, "uniqueProducts": 7, "margin": 2318.332, "marginPct": 71.33697988080615}, {"YearMonth": "2016-04", "Category": "Cod Liver Oil", "totalRevenue": 1321.1598999999999, "totalRevenueExVAT": 1107.3337999999999, "totalCost": 452.1, "totalQty": 124.0, "orderCount": 117, "uniqueProducts": 3, "margin": 655.2337999999999, "marginPct": 59.17220263663946}, {"YearMonth": "2016-04", "Category": "Evening Primose Oils", "totalRevenue": 1981.0024, "totalRevenueExVAT": 1650.8358, "totalCost": 731.8, "totalQty": 140.0, "orderCount": 134, "uniqueProducts": 4, "margin": 919.0358000000001, "marginPct": 55.670939532568894}, {"YearMonth": "2016-04", "Category": "Glucosamine", "totalRevenue": 6449.9202, "totalRevenueExVAT": 5386.5657, "totalCost": 2506.7, "totalQty": 426.0, "orderCount": 356, "uniqueProducts": 11, "margin": 2879.8657000000003, "marginPct": 53.463855458033315}, {"YearMonth": "2016-04", "Category": "Herbal Supplements", "totalRevenue": 20413.8357, "totalRevenueExVAT": 17059.644800000002, "totalCost": 7024.03, "totalQty": 1431.0, "orderCount": 1119, "uniqueProducts": 24, "margin": 10035.614800000003, "marginPct": 58.82663395195662}, {"YearMonth": "2016-04", "Category": "Minerals", "totalRevenue": 846.0802, "totalRevenueExVAT": 706.1707, "totalCost": 290.7, "totalQty": 112.0, "orderCount": 103, "uniqueProducts": 4, "margin": 415.4707, "marginPct": 58.834315838932426}, {"YearMonth": "2016-04", "Category": "Multivitamins", "totalRevenue": 3380.0584, "totalRevenueExVAT": 2831.0901, "totalCost": 1251.8, "totalQty": 334.0, "orderCount": 309, "uniqueProducts": 6, "margin": 1579.2901, "marginPct": 55.783816276281705}, {"YearMonth": "2016-04", "Category": "Omega 3 Supplements", "totalRevenue": 4982.2546, "totalRevenueExVAT": 4158.108, "totalCost": 1452.5, "totalQty": 336.0, "orderCount": 278, "uniqueProducts": 6, "margin": 2705.608, "marginPct": 65.0682473855898}, {"YearMonth": "2016-04", "Category": "Probiotics", "totalRevenue": 1556.4232, "totalRevenueExVAT": 1300.068, "totalCost": 550.6, "totalQty": 79.0, "orderCount": 78, "uniqueProducts": 1, "margin": 749.468, "marginPct": 57.64836916222843}, {"YearMonth": "2016-04", "Category": "Vitamin B", "totalRevenue": 3570.2936, "totalRevenueExVAT": 2979.536, "totalCost": 923.41, "totalQty": 324.0, "orderCount": 276, "uniqueProducts": 12, "margin": 2056.126, "marginPct": 69.00826168906838}, {"YearMonth": "2016-04", "Category": "Vitamin C", "totalRevenue": 1462.0508, "totalRevenueExVAT": 1218.3755, "totalCost": 400.65, "totalQty": 119.0, "orderCount": 102, "uniqueProducts": 4, "margin": 817.7255000000001, "marginPct": 67.11604919829725}, {"YearMonth": "2016-04", "Category": "Vitamin D", "totalRevenue": 1097.7487999999998, "totalRevenueExVAT": 917.3820000000001, "totalCost": 233.10000000000002, "totalQty": 138.0, "orderCount": 115, "uniqueProducts": 1, "margin": 684.282, "marginPct": 74.59073755534772}, {"YearMonth": "2016-04", "Category": "Vitamin E", "totalRevenue": 1028.0934, "totalRevenueExVAT": 860.6199, "totalCost": 519.6, "totalQty": 67.0, "orderCount": 64, "uniqueProducts": 3, "margin": 341.0199, "marginPct": 39.62491455287056}, {"YearMonth": "2016-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 2692.1352, "totalRevenueExVAT": 2243.446, "totalCost": 840.2, "totalQty": 118.0, "orderCount": 114, "uniqueProducts": 1, "margin": 1403.2459999999999, "marginPct": 62.548686262116405}, {"YearMonth": "2016-05", "Category": "Amino Acids", "totalRevenue": 5501.5818, "totalRevenueExVAT": 4597.9754, "totalCost": 2047.57, "totalQty": 364.0, "orderCount": 318, "uniqueProducts": 8, "margin": 2550.4054000000006, "marginPct": 55.46800881100844}, {"YearMonth": "2016-05", "Category": "Bone Health", "totalRevenue": 2969.7869, "totalRevenueExVAT": 2484.4029, "totalCost": 735.2, "totalQty": 305.0, "orderCount": 256, "uniqueProducts": 7, "margin": 1749.2029, "marginPct": 70.40737635590428}, {"YearMonth": "2016-05", "Category": "Cod Liver Oil", "totalRevenue": 1295.3464, "totalRevenueExVAT": 1080.8362, "totalCost": 441.7, "totalQty": 120.0, "orderCount": 109, "uniqueProducts": 3, "margin": 639.1361999999999, "marginPct": 59.13349312319479}, {"YearMonth": "2016-05", "Category": "Evening Primose Oils", "totalRevenue": 2223.5025, "totalRevenueExVAT": 1854.3013, "totalCost": 839.0, "totalQty": 157.0, "orderCount": 152, "uniqueProducts": 4, "margin": 1015.3013000000001, "marginPct": 54.75384717683151}, {"YearMonth": "2016-05", "Category": "Glucosamine", "totalRevenue": 7059.7932, "totalRevenueExVAT": 5900.2386, "totalCost": 2696.5, "totalQty": 453.0, "orderCount": 379, "uniqueProducts": 12, "margin": 3203.7385999999997, "marginPct": 54.298458370819105}, {"YearMonth": "2016-05", "Category": "Herbal Supplements", "totalRevenue": 17574.64, "totalRevenueExVAT": 14681.9147, "totalCost": 6170.74, "totalQty": 1206.0, "orderCount": 944, "uniqueProducts": 24, "margin": 8511.1747, "marginPct": 57.97046825234587}, {"YearMonth": "2016-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 940.1184, "totalRevenueExVAT": 783.432, "totalCost": 230.45000000000002, "totalQty": 79.0, "orderCount": 68, "uniqueProducts": 1, "margin": 552.982, "marginPct": 70.58455615803285}, {"YearMonth": "2016-05", "Category": "Minerals", "totalRevenue": 932.308, "totalRevenueExVAT": 778.5826000000001, "totalCost": 323.3, "totalQty": 114.0, "orderCount": 100, "uniqueProducts": 4, "margin": 455.28260000000006, "marginPct": 58.475825172563574}, {"YearMonth": "2016-05", "Category": "Multivitamins", "totalRevenue": 2995.1542, "totalRevenueExVAT": 2513.9412, "totalCost": 1096.0, "totalQty": 286.0, "orderCount": 247, "uniqueProducts": 6, "margin": 1417.9412000000002, "marginPct": 56.40311714530157}, {"YearMonth": "2016-05", "Category": "Omega 3 Supplements", "totalRevenue": 4046.2838, "totalRevenueExVAT": 3392.64, "totalCost": 1160.45, "totalQty": 266.0, "orderCount": 233, "uniqueProducts": 6, "margin": 2232.1899999999996, "marginPct": 65.79507404263346}, {"YearMonth": "2016-05", "Category": "Probiotics", "totalRevenue": 1994.3376, "totalRevenueExVAT": 1661.948, "totalCost": 715.6, "totalQty": 94.0, "orderCount": 91, "uniqueProducts": 1, "margin": 946.3480000000001, "marginPct": 56.94209445782901}, {"YearMonth": "2016-05", "Category": "Vitamin B", "totalRevenue": 2903.3903999999998, "totalRevenueExVAT": 2428.2073, "totalCost": 774.57, "totalQty": 259.0, "orderCount": 227, "uniqueProducts": 12, "margin": 1653.6372999999999, "marginPct": 68.1011584142754}, {"YearMonth": "2016-05", "Category": "Vitamin C", "totalRevenue": 1159.3316, "totalRevenueExVAT": 982.5816, "totalCost": 321.45, "totalQty": 98.0, "orderCount": 85, "uniqueProducts": 4, "margin": 661.1315999999999, "marginPct": 67.28515982794711}, {"YearMonth": "2016-05", "Category": "Vitamin D", "totalRevenue": 877.7884, "totalRevenueExVAT": 731.4924, "totalCost": 189.0, "totalQty": 106.0, "orderCount": 82, "uniqueProducts": 1, "margin": 542.4924, "marginPct": 74.16241098335404}, {"YearMonth": "2016-05", "Category": "Vitamin E", "totalRevenue": 652.1768, "totalRevenueExVAT": 550.7106, "totalCost": 321.7, "totalQty": 48.0, "orderCount": 41, "uniqueProducts": 3, "margin": 229.0106, "marginPct": 41.58456365285142}, {"YearMonth": "2016-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 2305.7214, "totalRevenueExVAT": 1921.4332, "totalCost": 778.2, "totalQty": 100.0, "orderCount": 96, "uniqueProducts": 1, "margin": 1143.2332, "marginPct": 59.498982322154106}, {"YearMonth": "2016-06", "Category": "Amino Acids", "totalRevenue": 5875.1619, "totalRevenueExVAT": 4937.1585, "totalCost": 2130.25, "totalQty": 383.0, "orderCount": 324, "uniqueProducts": 8, "margin": 2806.9084999999995, "marginPct": 56.852711939468826}, {"YearMonth": "2016-06", "Category": "Bone Health", "totalRevenue": 2941.2876, "totalRevenueExVAT": 2456.2713, "totalCost": 741.8, "totalQty": 301.0, "orderCount": 254, "uniqueProducts": 6, "margin": 1714.4713, "marginPct": 69.79975298331256}, {"YearMonth": "2016-06", "Category": "Cod Liver Oil", "totalRevenue": 1306.802, "totalRevenueExVAT": 1089.0007, "totalCost": 442.3, "totalQty": 124.0, "orderCount": 115, "uniqueProducts": 3, "margin": 646.7007000000001, "marginPct": 59.38478276460245}, {"YearMonth": "2016-06", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 4124.6916, "totalRevenueExVAT": 3437.243, "totalCost": 1065.01, "totalQty": 181.0, "orderCount": 164, "uniqueProducts": 1, "margin": 2372.233, "marginPct": 69.01557440076247}, {"YearMonth": "2016-06", "Category": "Evening Primose Oils", "totalRevenue": 2316.8203, "totalRevenueExVAT": 1933.1703, "totalCost": 857.6, "totalQty": 164.0, "orderCount": 157, "uniqueProducts": 4, "margin": 1075.5702999999999, "marginPct": 55.63763833946756}, {"YearMonth": "2016-06", "Category": "Glucosamine", "totalRevenue": 7051.180899999999, "totalRevenueExVAT": 5931.3329, "totalCost": 2722.4, "totalQty": 478.0, "orderCount": 399, "uniqueProducts": 12, "margin": 3208.9329000000002, "marginPct": 54.10137913520248}, {"YearMonth": "2016-06", "Category": "Herbal Supplements", "totalRevenue": 17400.0295, "totalRevenueExVAT": 14555.347600000001, "totalCost": 6273.49, "totalQty": 1159.0, "orderCount": 900, "uniqueProducts": 22, "margin": 8281.857600000001, "marginPct": 56.89907123894451}, {"YearMonth": "2016-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2356.21, "totalRevenueExVAT": 1966.8020000000001, "totalCost": 558.7, "totalQty": 185.0, "orderCount": 159, "uniqueProducts": 1, "margin": 1408.102, "marginPct": 71.59348017746575}, {"YearMonth": "2016-06", "Category": "Minerals", "totalRevenue": 870.0071, "totalRevenueExVAT": 726.7966, "totalCost": 301.1, "totalQty": 117.0, "orderCount": 108, "uniqueProducts": 4, "margin": 425.6966, "marginPct": 58.57162788048266}, {"YearMonth": "2016-06", "Category": "Multivitamins", "totalRevenue": 3448.837, "totalRevenueExVAT": 2878.0513, "totalCost": 1291.1, "totalQty": 327.0, "orderCount": 291, "uniqueProducts": 6, "margin": 1586.9513000000002, "marginPct": 55.139785034408526}, {"YearMonth": "2016-06", "Category": "Omega 3 Supplements", "totalRevenue": 4563.582, "totalRevenueExVAT": 3811.853, "totalCost": 1340.2, "totalQty": 302.0, "orderCount": 251, "uniqueProducts": 6, "margin": 2471.6530000000002, "marginPct": 64.84124650137349}, {"YearMonth": "2016-06", "Category": "Probiotics", "totalRevenue": 1481.1712, "totalRevenueExVAT": 1236.108, "totalCost": 527.4, "totalQty": 74.0, "orderCount": 71, "uniqueProducts": 1, "margin": 708.708, "marginPct": 57.33382519973983}, {"YearMonth": "2016-06", "Category": "Vitamin B", "totalRevenue": 3500.6992, "totalRevenueExVAT": 2926.1716, "totalCost": 907.84, "totalQty": 308.0, "orderCount": 261, "uniqueProducts": 12, "margin": 2018.3316, "marginPct": 68.9751619488071}, {"YearMonth": "2016-06", "Category": "Vitamin C", "totalRevenue": 1170.501, "totalRevenueExVAT": 978.8688999999999, "totalCost": 326.90000000000003, "totalQty": 87.0, "orderCount": 72, "uniqueProducts": 4, "margin": 651.9688999999998, "marginPct": 66.60431238544813}, {"YearMonth": "2016-06", "Category": "Vitamin D", "totalRevenue": 1107.7898, "totalRevenueExVAT": 930.442, "totalCost": 245.70000000000002, "totalQty": 128.0, "orderCount": 97, "uniqueProducts": 1, "margin": 684.742, "marginPct": 73.59319549203497}, {"YearMonth": "2016-06", "Category": "Vitamin E", "totalRevenue": 826.0598, "totalRevenueExVAT": 688.3833999999999, "totalCost": 408.4, "totalQty": 56.0, "orderCount": 51, "uniqueProducts": 3, "margin": 279.98339999999996, "marginPct": 40.672596114316526}, {"YearMonth": "2016-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 2360.1572, "totalRevenueExVAT": 1977.1389, "totalCost": 821.4, "totalQty": 117.0, "orderCount": 113, "uniqueProducts": 1, "margin": 1155.7388999999998, "marginPct": 58.4551191623411}, {"YearMonth": "2016-07", "Category": "Amino Acids", "totalRevenue": 4684.0718, "totalRevenueExVAT": 3924.9865, "totalCost": 1699.01, "totalQty": 313.0, "orderCount": 281, "uniqueProducts": 7, "margin": 2225.9764999999998, "marginPct": 56.7129721337895}, {"YearMonth": "2016-07", "Category": "Bone Health", "totalRevenue": 2689.7762000000002, "totalRevenueExVAT": 2243.3607, "totalCost": 666.2, "totalQty": 305.0, "orderCount": 256, "uniqueProducts": 6, "margin": 1577.1607000000001, "marginPct": 70.30348262764878}, {"YearMonth": "2016-07", "Category": "Cod Liver Oil", "totalRevenue": 923.5012, "totalRevenueExVAT": 769.5838, "totalCost": 311.40000000000003, "totalQty": 90.0, "orderCount": 86, "uniqueProducts": 3, "margin": 458.18379999999996, "marginPct": 59.53657028643274}, {"YearMonth": "2016-07", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2000.8455999999999, "totalRevenueExVAT": 1671.115, "totalCost": 502.30999999999995, "totalQty": 76.0, "orderCount": 69, "uniqueProducts": 1, "margin": 1168.805, "marginPct": 69.94162580073784}, {"YearMonth": "2016-07", "Category": "Evening Primose Oils", "totalRevenue": 1823.7048, "totalRevenueExVAT": 1519.7543, "totalCost": 672.8, "totalQty": 126.0, "orderCount": 125, "uniqueProducts": 4, "margin": 846.9543000000001, "marginPct": 55.729686042013505}, {"YearMonth": "2016-07", "Category": "Glucosamine", "totalRevenue": 6133.3998, "totalRevenueExVAT": 5132.4929, "totalCost": 2371.4, "totalQty": 418.0, "orderCount": 354, "uniqueProducts": 11, "margin": 2761.0929, "marginPct": 53.79633160330334}, {"YearMonth": "2016-07", "Category": "Herbal Supplements", "totalRevenue": 15123.2119, "totalRevenueExVAT": 12631.851, "totalCost": 5408.45, "totalQty": 1024.0, "orderCount": 822, "uniqueProducts": 23, "margin": 7223.401000000001, "marginPct": 57.184026315699896}, {"YearMonth": "2016-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2036.1484, "totalRevenueExVAT": 1700.084, "totalCost": 484.70000000000005, "totalQty": 156.0, "orderCount": 142, "uniqueProducts": 1, "margin": 1215.384, "marginPct": 71.48964404111796}, {"YearMonth": "2016-07", "Category": "Minerals", "totalRevenue": 553.5115, "totalRevenueExVAT": 462.08570000000003, "totalCost": 189.3, "totalQty": 70.0, "orderCount": 63, "uniqueProducts": 4, "margin": 272.7857, "marginPct": 59.03357320947175}, {"YearMonth": "2016-07", "Category": "Multivitamins", "totalRevenue": 2639.0576, "totalRevenueExVAT": 2200.5967, "totalCost": 992.1, "totalQty": 246.0, "orderCount": 235, "uniqueProducts": 6, "margin": 1208.4967000000001, "marginPct": 54.916773255181205}, {"YearMonth": "2016-07", "Category": "Omega 3 Supplements", "totalRevenue": 3743.6838, "totalRevenueExVAT": 3125.605, "totalCost": 1024.45, "totalQty": 257.0, "orderCount": 231, "uniqueProducts": 6, "margin": 2101.1549999999997, "marginPct": 67.223945444162}, {"YearMonth": "2016-07", "Category": "Probiotics", "totalRevenue": 1136.9152, "totalRevenueExVAT": 949.2280000000001, "totalCost": 401.9, "totalQty": 59.0, "orderCount": 58, "uniqueProducts": 1, "margin": 547.3280000000001, "marginPct": 57.660330289456276}, {"YearMonth": "2016-07", "Category": "Vitamin B", "totalRevenue": 3151.5908999999997, "totalRevenueExVAT": 2632.4089, "totalCost": 816.41, "totalQty": 264.0, "orderCount": 222, "uniqueProducts": 12, "margin": 1815.9989, "marginPct": 68.98620119389507}, {"YearMonth": "2016-07", "Category": "Vitamin C", "totalRevenue": 766.7548, "totalRevenueExVAT": 638.9622, "totalCost": 207.6, "totalQty": 65.0, "orderCount": 55, "uniqueProducts": 4, "margin": 431.36220000000003, "marginPct": 67.5098151346042}, {"YearMonth": "2016-07", "Category": "Vitamin D", "totalRevenue": 1136.5666, "totalRevenueExVAT": 949.2520000000001, "totalCost": 245.70000000000002, "totalQty": 137.0, "orderCount": 122, "uniqueProducts": 1, "margin": 703.552, "marginPct": 74.116462224994}, {"YearMonth": "2016-07", "Category": "Vitamin E", "totalRevenue": 722.064, "totalRevenueExVAT": 601.72, "totalCost": 368.4, "totalQty": 44.0, "orderCount": 39, "uniqueProducts": 3, "margin": 233.32000000000005, "marginPct": 38.775510204081634}, {"YearMonth": "2016-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 2448.4644000000003, "totalRevenueExVAT": 2055.3597, "totalCost": 869.2, "totalQty": 111.0, "orderCount": 106, "uniqueProducts": 1, "margin": 1186.1597, "marginPct": 57.71056521152964}, {"YearMonth": "2016-08", "Category": "Amino Acids", "totalRevenue": 6645.3058, "totalRevenueExVAT": 5566.0993, "totalCost": 2573.97, "totalQty": 461.0, "orderCount": 391, "uniqueProducts": 8, "margin": 2992.1293, "marginPct": 53.75630470696059}, {"YearMonth": "2016-08", "Category": "Bone Health", "totalRevenue": 3541.7213, "totalRevenueExVAT": 2965.2723, "totalCost": 957.1, "totalQty": 420.0, "orderCount": 345, "uniqueProducts": 6, "margin": 2008.1723000000002, "marginPct": 67.72303170943188}, {"YearMonth": "2016-08", "Category": "Cod Liver Oil", "totalRevenue": 1797.838, "totalRevenueExVAT": 1498.1975, "totalCost": 664.2, "totalQty": 181.0, "orderCount": 166, "uniqueProducts": 3, "margin": 833.9975, "marginPct": 55.66672618262945}, {"YearMonth": "2016-08", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3777.8024, "totalRevenueExVAT": 3155.4, "totalCost": 973.8, "totalQty": 156.0, "orderCount": 150, "uniqueProducts": 1, "margin": 2181.6000000000004, "marginPct": 69.13861950941245}, {"YearMonth": "2016-08", "Category": "Evening Primose Oils", "totalRevenue": 2629.06, "totalRevenueExVAT": 2202.0972, "totalCost": 1113.8, "totalQty": 198.0, "orderCount": 185, "uniqueProducts": 4, "margin": 1088.2972000000002, "marginPct": 49.42094290842385}, {"YearMonth": "2016-08", "Category": "Glucosamine", "totalRevenue": 9766.4153, "totalRevenueExVAT": 8200.0981, "totalCost": 4264.8, "totalQty": 640.0, "orderCount": 516, "uniqueProducts": 11, "margin": 3935.298099999999, "marginPct": 47.99086610927252}, {"YearMonth": "2016-08", "Category": "Herbal Supplements", "totalRevenue": 20587.5227, "totalRevenueExVAT": 17206.5866, "totalCost": 7828.25, "totalQty": 1445.0, "orderCount": 1101, "uniqueProducts": 24, "margin": 9378.336599999999, "marginPct": 54.50434079702943}, {"YearMonth": "2016-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2733.7327999999998, "totalRevenueExVAT": 2288.936, "totalCost": 653.0500000000001, "totalQty": 209.0, "orderCount": 190, "uniqueProducts": 2, "margin": 1635.886, "marginPct": 71.46927655469615}, {"YearMonth": "2016-08", "Category": "Minerals", "totalRevenue": 1076.433, "totalRevenueExVAT": 902.1207, "totalCost": 394.90000000000003, "totalQty": 144.0, "orderCount": 131, "uniqueProducts": 4, "margin": 507.2207, "marginPct": 56.225369842416875}, {"YearMonth": "2016-08", "Category": "Multivitamins", "totalRevenue": 3952.7503, "totalRevenueExVAT": 3305.9759, "totalCost": 1614.3, "totalQty": 391.0, "orderCount": 349, "uniqueProducts": 6, "margin": 1691.6759, "marginPct": 51.17024295307174}, {"YearMonth": "2016-08", "Category": "Omega 3 Supplements", "totalRevenue": 5504.043, "totalRevenueExVAT": 4607.3902, "totalCost": 1649.15, "totalQty": 385.0, "orderCount": 337, "uniqueProducts": 6, "margin": 2958.2401999999997, "marginPct": 64.20641776769851}, {"YearMonth": "2016-08", "Category": "Probiotics", "totalRevenue": 2003.4592, "totalRevenueExVAT": 1674.127, "totalCost": 793.5, "totalQty": 110.0, "orderCount": 104, "uniqueProducts": 1, "margin": 880.627, "marginPct": 52.602162201553405}, {"YearMonth": "2016-08", "Category": "Vitamin B", "totalRevenue": 4027.0868, "totalRevenueExVAT": 3361.6134, "totalCost": 1126.02, "totalQty": 389.0, "orderCount": 333, "uniqueProducts": 12, "margin": 2235.5934, "marginPct": 66.5035842610575}, {"YearMonth": "2016-08", "Category": "Vitamin C", "totalRevenue": 1522.3878, "totalRevenueExVAT": 1269.9003, "totalCost": 452.35, "totalQty": 125.0, "orderCount": 110, "uniqueProducts": 4, "margin": 817.5503, "marginPct": 64.37909338237026}, {"YearMonth": "2016-08", "Category": "Vitamin D", "totalRevenue": 171.9512, "totalRevenueExVAT": 145.87800000000001, "totalCost": 37.800000000000004, "totalQty": 21.0, "orderCount": 18, "uniqueProducts": 1, "margin": 108.078, "marginPct": 74.08793649487929}, {"YearMonth": "2016-08", "Category": "Vitamin E", "totalRevenue": 1008.53, "totalRevenueExVAT": 846.1726, "totalCost": 530.0, "totalQty": 74.0, "orderCount": 71, "uniqueProducts": 3, "margin": 316.1726, "marginPct": 37.36502458245516}, {"YearMonth": "2016-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 3022.6683000000003, "totalRevenueExVAT": 2523.6306, "totalCost": 1058.2, "totalQty": 144.0, "orderCount": 137, "uniqueProducts": 1, "margin": 1465.4306, "marginPct": 58.06834803794184}, {"YearMonth": "2016-09", "Category": "Amino Acids", "totalRevenue": 5113.5859, "totalRevenueExVAT": 4269.7074999999995, "totalCost": 2044.2, "totalQty": 364.0, "orderCount": 316, "uniqueProducts": 8, "margin": 2225.5074999999997, "marginPct": 52.12318408228198}, {"YearMonth": "2016-09", "Category": "Bone Health", "totalRevenue": 3245.443, "totalRevenueExVAT": 2708.959, "totalCost": 854.7, "totalQty": 387.0, "orderCount": 341, "uniqueProducts": 6, "margin": 1854.2589999999998, "marginPct": 68.44913488908469}, {"YearMonth": "2016-09", "Category": "Cod Liver Oil", "totalRevenue": 1145.2618, "totalRevenueExVAT": 955.6281, "totalCost": 426.8, "totalQty": 118.0, "orderCount": 110, "uniqueProducts": 3, "margin": 528.8281, "marginPct": 55.33827437682085}, {"YearMonth": "2016-09", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2804.1578, "totalRevenueExVAT": 2336.8003, "totalCost": 739.52, "totalQty": 130.0, "orderCount": 121, "uniqueProducts": 1, "margin": 1597.2803, "marginPct": 68.3533077259533}, {"YearMonth": "2016-09", "Category": "Evening Primose Oils", "totalRevenue": 1950.8126, "totalRevenueExVAT": 1625.6786, "totalCost": 816.1999999999999, "totalQty": 154.0, "orderCount": 137, "uniqueProducts": 4, "margin": 809.4786, "marginPct": 49.79327402107649}, {"YearMonth": "2016-09", "Category": "Glucosamine", "totalRevenue": 6836.5968, "totalRevenueExVAT": 5729.6864000000005, "totalCost": 2966.5, "totalQty": 460.0, "orderCount": 386, "uniqueProducts": 11, "margin": 2763.1864000000005, "marginPct": 48.22578771501352}, {"YearMonth": "2016-09", "Category": "Herbal Supplements", "totalRevenue": 16884.1953, "totalRevenueExVAT": 14095.0391, "totalCost": 6491.46, "totalQty": 1208.0, "orderCount": 958, "uniqueProducts": 23, "margin": 7603.5791, "marginPct": 53.94507277386694}, {"YearMonth": "2016-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1657.7964, "totalRevenueExVAT": 1383.616, "totalCost": 392.20000000000005, "totalQty": 132.0, "orderCount": 117, "uniqueProducts": 1, "margin": 991.4159999999999, "marginPct": 71.65398492067163}, {"YearMonth": "2016-09", "Category": "Minerals", "totalRevenue": 675.5182, "totalRevenueExVAT": 564.4250000000001, "totalCost": 256.4, "totalQty": 102.0, "orderCount": 92, "uniqueProducts": 4, "margin": 308.0250000000001, "marginPct": 54.573238251317726}, {"YearMonth": "2016-09", "Category": "Multivitamins", "totalRevenue": 2564.0986, "totalRevenueExVAT": 2139.4796, "totalCost": 1027.5, "totalQty": 278.0, "orderCount": 244, "uniqueProducts": 6, "margin": 1111.9796000000001, "marginPct": 51.97430253599988}, {"YearMonth": "2016-09", "Category": "Omega 3 Supplements", "totalRevenue": 4085.5088, "totalRevenueExVAT": 3416.7738, "totalCost": 1221.6000000000001, "totalQty": 297.0, "orderCount": 268, "uniqueProducts": 6, "margin": 2195.1737999999996, "marginPct": 64.24697473388493}, {"YearMonth": "2016-09", "Category": "Probiotics", "totalRevenue": 1612.3424, "totalRevenueExVAT": 1346.213, "totalCost": 681.5, "totalQty": 90.0, "orderCount": 90, "uniqueProducts": 1, "margin": 664.713, "marginPct": 49.37651025506365}, {"YearMonth": "2016-09", "Category": "Vitamin B", "totalRevenue": 3504.1819, "totalRevenueExVAT": 2928.3229, "totalCost": 1010.69, "totalQty": 349.0, "orderCount": 292, "uniqueProducts": 12, "margin": 1917.6329, "marginPct": 65.48570514542641}, {"YearMonth": "2016-09", "Category": "Vitamin C", "totalRevenue": 1383.4560999999999, "totalRevenueExVAT": 1165.3422, "totalCost": 428.65, "totalQty": 117.0, "orderCount": 96, "uniqueProducts": 4, "margin": 736.6922000000001, "marginPct": 63.216813052852636}, {"YearMonth": "2016-09", "Category": "Vitamin D", "totalRevenue": 1337.0724, "totalRevenueExVAT": 1116.6601, "totalCost": 302.40000000000003, "totalQty": 156.0, "orderCount": 122, "uniqueProducts": 1, "margin": 814.2601, "marginPct": 72.91924373406016}, {"YearMonth": "2016-09", "Category": "Vitamin E", "totalRevenue": 818.4122, "totalRevenueExVAT": 686.4974, "totalCost": 431.6, "totalQty": 57.0, "orderCount": 50, "uniqueProducts": 3, "margin": 254.89739999999995, "marginPct": 37.13013334063609}, {"YearMonth": "2016-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 5321.8616, "totalRevenueExVAT": 4437.6219, "totalCost": 1844.8, "totalQty": 265.0, "orderCount": 259, "uniqueProducts": 1, "margin": 2592.8219, "marginPct": 58.428184248865364}, {"YearMonth": "2016-10", "Category": "Amino Acids", "totalRevenue": 6457.6885, "totalRevenueExVAT": 5400.9636, "totalCost": 2440.124, "totalQty": 445.0, "orderCount": 385, "uniqueProducts": 8, "margin": 2960.8396000000002, "marginPct": 54.82058053492529}, {"YearMonth": "2016-10", "Category": "Bone Health", "totalRevenue": 3271.7407000000003, "totalRevenueExVAT": 2736.628, "totalCost": 848.206, "totalQty": 384.0, "orderCount": 328, "uniqueProducts": 6, "margin": 1888.422, "marginPct": 69.00543296348644}, {"YearMonth": "2016-10", "Category": "Cod Liver Oil", "totalRevenue": 1125.6633, "totalRevenueExVAT": 940.9143, "totalCost": 563.084, "totalQty": 113.0, "orderCount": 109, "uniqueProducts": 3, "margin": 377.8303000000001, "marginPct": 40.155654983668555}, {"YearMonth": "2016-10", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3189.6748, "totalRevenueExVAT": 2671.7333, "totalCost": 911.0899999999999, "totalQty": 143.0, "orderCount": 133, "uniqueProducts": 1, "margin": 1760.6433, "marginPct": 65.89891663213541}, {"YearMonth": "2016-10", "Category": "Evening Primose Oils", "totalRevenue": 2100.941, "totalRevenueExVAT": 1753.5219, "totalCost": 813.697, "totalQty": 160.0, "orderCount": 152, "uniqueProducts": 4, "margin": 939.8249, "marginPct": 53.59641644623885}, {"YearMonth": "2016-10", "Category": "Glucosamine", "totalRevenue": 5904.3808, "totalRevenueExVAT": 4933.1974, "totalCost": 2137.688, "totalQty": 403.0, "orderCount": 347, "uniqueProducts": 11, "margin": 2795.5094, "marginPct": 56.66729249472158}, {"YearMonth": "2016-10", "Category": "Herbal Supplements", "totalRevenue": 19479.8502, "totalRevenueExVAT": 16265.1994, "totalCost": 8026.372, "totalQty": 1366.0, "orderCount": 1044, "uniqueProducts": 23, "margin": 8238.827399999998, "marginPct": 50.65309804932363}, {"YearMonth": "2016-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1976.5308, "totalRevenueExVAT": 1649.228, "totalCost": 409.062, "totalQty": 152.0, "orderCount": 137, "uniqueProducts": 1, "margin": 1240.1660000000002, "marginPct": 75.19675872590085}, {"YearMonth": "2016-10", "Category": "Minerals", "totalRevenue": 649.8596, "totalRevenueExVAT": 543.0372, "totalCost": 167.679, "totalQty": 99.0, "orderCount": 92, "uniqueProducts": 4, "margin": 375.3582, "marginPct": 69.12200490132167}, {"YearMonth": "2016-10", "Category": "Multivitamins", "totalRevenue": 3410.6294, "totalRevenueExVAT": 2869.9900000000002, "totalCost": 1252.883, "totalQty": 325.0, "orderCount": 293, "uniqueProducts": 6, "margin": 1617.1070000000002, "marginPct": 56.345387963024265}, {"YearMonth": "2016-10", "Category": "Omega 3 Supplements", "totalRevenue": 4559.9425, "totalRevenueExVAT": 3811.7681, "totalCost": 1686.001, "totalQty": 313.0, "orderCount": 277, "uniqueProducts": 6, "margin": 2125.7671, "marginPct": 55.7685316690698}, {"YearMonth": "2016-10", "Category": "Probiotics", "totalRevenue": 1761.6048, "totalRevenueExVAT": 1470.5986, "totalCost": 827.235, "totalQty": 98.0, "orderCount": 87, "uniqueProducts": 1, "margin": 643.3636, "marginPct": 43.74841646116078}, {"YearMonth": "2016-10", "Category": "Vitamin B", "totalRevenue": 3479.5866, "totalRevenueExVAT": 2907.6562, "totalCost": 961.794, "totalQty": 322.0, "orderCount": 259, "uniqueProducts": 11, "margin": 1945.8622, "marginPct": 66.92201780939577}, {"YearMonth": "2016-10", "Category": "Vitamin C", "totalRevenue": 1236.2171999999998, "totalRevenueExVAT": 1035.5369, "totalCost": 359.56899999999996, "totalQty": 106.0, "orderCount": 90, "uniqueProducts": 4, "margin": 675.9679000000001, "marginPct": 65.27704613906081}, {"YearMonth": "2016-10", "Category": "Vitamin D", "totalRevenue": 1257.26, "totalRevenueExVAT": 1051.3653, "totalCost": 303.315, "totalQty": 159.0, "orderCount": 125, "uniqueProducts": 1, "margin": 748.0502999999999, "marginPct": 71.15036990473243}, {"YearMonth": "2016-10", "Category": "Vitamin E", "totalRevenue": 863.634, "totalRevenueExVAT": 719.6949999999999, "totalCost": 461.635, "totalQty": 59.0, "orderCount": 52, "uniqueProducts": 3, "margin": 258.05999999999995, "marginPct": 35.85685602929018}, {"YearMonth": "2016-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 3370.8835000000004, "totalRevenueExVAT": 2816.5527, "totalCost": 1152.22, "totalQty": 173.0, "orderCount": 156, "uniqueProducts": 1, "margin": 1664.3327000000002, "marginPct": 59.09112582910308}, {"YearMonth": "2016-11", "Category": "Amino Acids", "totalRevenue": 6598.9403999999995, "totalRevenueExVAT": 5517.9466, "totalCost": 2430.913, "totalQty": 456.0, "orderCount": 398, "uniqueProducts": 8, "margin": 3087.0336, "marginPct": 55.94533299760458}, {"YearMonth": "2016-11", "Category": "Bone Health", "totalRevenue": 3915.1039, "totalRevenueExVAT": 3278.4882000000002, "totalCost": 1048.976, "totalQty": 426.0, "orderCount": 364, "uniqueProducts": 6, "margin": 2229.5122, "marginPct": 68.00427709332612}, {"YearMonth": "2016-11", "Category": "Cod Liver Oil", "totalRevenue": 1529.5326, "totalRevenueExVAT": 1274.6096, "totalCost": 823.8539999999999, "totalQty": 150.0, "orderCount": 134, "uniqueProducts": 2, "margin": 450.7556000000001, "marginPct": 35.36420877420036}, {"YearMonth": "2016-11", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3640.5963, "totalRevenueExVAT": 3042.7176999999997, "totalCost": 982.943, "totalQty": 165.0, "orderCount": 153, "uniqueProducts": 1, "margin": 2059.7747, "marginPct": 67.69522851232634}, {"YearMonth": "2016-11", "Category": "Evening Primose Oils", "totalRevenue": 2539.6965999999998, "totalRevenueExVAT": 2116.4141, "totalCost": 966.085, "totalQty": 185.0, "orderCount": 173, "uniqueProducts": 4, "margin": 1150.3291, "marginPct": 54.352742216185376}, {"YearMonth": "2016-11", "Category": "Glucosamine", "totalRevenue": 9231.483, "totalRevenueExVAT": 7717.108, "totalCost": 3276.081, "totalQty": 568.0, "orderCount": 474, "uniqueProducts": 11, "margin": 4441.027, "marginPct": 57.54781454399757}, {"YearMonth": "2016-11", "Category": "Herbal Supplements", "totalRevenue": 23557.294599999997, "totalRevenueExVAT": 19669.4976, "totalCost": 8787.297, "totalQty": 1593.0, "orderCount": 1198, "uniqueProducts": 23, "margin": 10882.200599999998, "marginPct": 55.325259553146886}, {"YearMonth": "2016-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2624.3194, "totalRevenueExVAT": 2194.0378, "totalCost": 510.498, "totalQty": 193.0, "orderCount": 169, "uniqueProducts": 1, "margin": 1683.5398, "marginPct": 76.7324883828346}, {"YearMonth": "2016-11", "Category": "Minerals", "totalRevenue": 1114.2859, "totalRevenueExVAT": 934.8999, "totalCost": 283.87600000000003, "totalQty": 146.0, "orderCount": 129, "uniqueProducts": 4, "margin": 651.0238999999999, "marginPct": 69.63567971287621}, {"YearMonth": "2016-11", "Category": "Multivitamins", "totalRevenue": 4515.2732, "totalRevenueExVAT": 3775.1893, "totalCost": 1741.945, "totalQty": 411.0, "orderCount": 353, "uniqueProducts": 6, "margin": 2033.2443, "marginPct": 53.85807540829807}, {"YearMonth": "2016-11", "Category": "Omega 3 Supplements", "totalRevenue": 5786.237, "totalRevenueExVAT": 4837.5122, "totalCost": 2021.674, "totalQty": 402.0, "orderCount": 346, "uniqueProducts": 6, "margin": 2815.8382, "marginPct": 58.20839480260123}, {"YearMonth": "2016-11", "Category": "Probiotics", "totalRevenue": 2095.3676, "totalRevenueExVAT": 1763.7668, "totalCost": 964.106, "totalQty": 114.0, "orderCount": 110, "uniqueProducts": 1, "margin": 799.6608000000001, "marginPct": 45.33823859253956}, {"YearMonth": "2016-11", "Category": "Vitamin B", "totalRevenue": 4405.9616, "totalRevenueExVAT": 3680.0364, "totalCost": 1152.2839999999999, "totalQty": 393.0, "orderCount": 331, "uniqueProducts": 11, "margin": 2527.7524000000003, "marginPct": 68.68824449671204}, {"YearMonth": "2016-11", "Category": "Vitamin C", "totalRevenue": 1521.386, "totalRevenueExVAT": 1272.7964, "totalCost": 434.205, "totalQty": 118.0, "orderCount": 89, "uniqueProducts": 4, "margin": 838.5914, "marginPct": 65.88574574849521}, {"YearMonth": "2016-11", "Category": "Vitamin D", "totalRevenue": 1834.8905, "totalRevenueExVAT": 1532.4829, "totalCost": 422.67, "totalQty": 225.0, "orderCount": 178, "uniqueProducts": 1, "margin": 1109.8129, "marginPct": 72.41926810406824}, {"YearMonth": "2016-11", "Category": "Vitamin E", "totalRevenue": 1290.818, "totalRevenueExVAT": 1082.1682, "totalCost": 654.443, "totalQty": 82.0, "orderCount": 73, "uniqueProducts": 3, "margin": 427.7252000000001, "marginPct": 39.52483541837582}, {"YearMonth": "2016-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 3883.3814, "totalRevenueExVAT": 3245.6341, "totalCost": 1332.394, "totalQty": 191.0, "orderCount": 186, "uniqueProducts": 1, "margin": 1913.2401000000002, "marginPct": 58.94811432995481}, {"YearMonth": "2016-12", "Category": "Amino Acids", "totalRevenue": 5430.3872, "totalRevenueExVAT": 4534.0287, "totalCost": 1990.5369999999998, "totalQty": 367.0, "orderCount": 320, "uniqueProducts": 8, "margin": 2543.4917, "marginPct": 56.09782972922073}, {"YearMonth": "2016-12", "Category": "Bone Health", "totalRevenue": 3247.9944, "totalRevenueExVAT": 2717.8396, "totalCost": 791.721, "totalQty": 372.0, "orderCount": 307, "uniqueProducts": 6, "margin": 1926.1185999999998, "marginPct": 70.8694729446138}, {"YearMonth": "2016-12", "Category": "Cod Liver Oil", "totalRevenue": 739.1516, "totalRevenueExVAT": 617.2615, "totalCost": 326.077, "totalQty": 83.0, "orderCount": 80, "uniqueProducts": 2, "margin": 291.18449999999996, "marginPct": 47.17360470400308}, {"YearMonth": "2016-12", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2928.8062, "totalRevenueExVAT": 2442.0035, "totalCost": 852.169, "totalQty": 137.0, "orderCount": 127, "uniqueProducts": 1, "margin": 1589.8345, "marginPct": 65.10369456882434}, {"YearMonth": "2016-12", "Category": "Evening Primose Oils", "totalRevenue": 2363.2982, "totalRevenueExVAT": 1974.8259, "totalCost": 928.523, "totalQty": 163.0, "orderCount": 154, "uniqueProducts": 4, "margin": 1046.3029000000001, "marginPct": 52.98203249207943}, {"YearMonth": "2016-12", "Category": "Glucosamine", "totalRevenue": 6153.7419, "totalRevenueExVAT": 5149.7779, "totalCost": 2189.797, "totalQty": 416.0, "orderCount": 352, "uniqueProducts": 11, "margin": 2959.9809, "marginPct": 57.47783608298913}, {"YearMonth": "2016-12", "Category": "Herbal Supplements", "totalRevenue": 17778.1274, "totalRevenueExVAT": 14841.7971, "totalCost": 6680.400000000001, "totalQty": 1206.0, "orderCount": 945, "uniqueProducts": 23, "margin": 8161.397099999999, "marginPct": 54.989278218875526}, {"YearMonth": "2016-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2103.406, "totalRevenueExVAT": 1756.8281, "totalCost": 395.553, "totalQty": 148.0, "orderCount": 130, "uniqueProducts": 1, "margin": 1361.2750999999998, "marginPct": 77.4848205126045}, {"YearMonth": "2016-12", "Category": "Minerals", "totalRevenue": 832.8763, "totalRevenueExVAT": 697.742, "totalCost": 213.13400000000001, "totalQty": 107.0, "orderCount": 94, "uniqueProducts": 4, "margin": 484.60799999999995, "marginPct": 69.45375224653239}, {"YearMonth": "2016-12", "Category": "Multivitamins", "totalRevenue": 2799.8646, "totalRevenueExVAT": 2350.044, "totalCost": 1094.7350000000001, "totalQty": 276.0, "orderCount": 243, "uniqueProducts": 6, "margin": 1255.3089999999997, "marginPct": 53.41640411839097}, {"YearMonth": "2016-12", "Category": "Omega 3 Supplements", "totalRevenue": 3856.2037, "totalRevenueExVAT": 3219.387, "totalCost": 1361.093, "totalQty": 263.0, "orderCount": 230, "uniqueProducts": 6, "margin": 1858.294, "marginPct": 57.721982476788284}, {"YearMonth": "2016-12", "Category": "Probiotics", "totalRevenue": 1218.2068, "totalRevenueExVAT": 1016.6102000000001, "totalCost": 532.624, "totalQty": 69.0, "orderCount": 67, "uniqueProducts": 1, "margin": 483.98620000000005, "marginPct": 47.60784418649351}, {"YearMonth": "2016-12", "Category": "Vitamin B", "totalRevenue": 2840.8181, "totalRevenueExVAT": 2374.808, "totalCost": 761.088, "totalQty": 266.0, "orderCount": 220, "uniqueProducts": 11, "margin": 1613.72, "marginPct": 67.95159861344581}, {"YearMonth": "2016-12", "Category": "Vitamin C", "totalRevenue": 1140.684, "totalRevenueExVAT": 952.9596, "totalCost": 310.929, "totalQty": 94.0, "orderCount": 81, "uniqueProducts": 4, "margin": 642.0306, "marginPct": 67.3722789507551}, {"YearMonth": "2016-12", "Category": "Vitamin D", "totalRevenue": 261.3325, "totalRevenueExVAT": 217.77810000000002, "totalCost": 59.129999999999995, "totalQty": 31.0, "orderCount": 24, "uniqueProducts": 1, "margin": 158.64810000000003, "marginPct": 72.84850956087871}, {"YearMonth": "2016-12", "Category": "Vitamin E", "totalRevenue": 843.7168, "totalRevenueExVAT": 708.0215000000001, "totalCost": 433.07899999999995, "totalQty": 56.0, "orderCount": 49, "uniqueProducts": 3, "margin": 274.9425000000001, "marginPct": 38.83250720493658}, {"YearMonth": "2016-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 2885.8376, "totalRevenueExVAT": 2411.463, "totalCost": 974.264, "totalQty": 150.0, "orderCount": 140, "uniqueProducts": 1, "margin": 1437.199, "marginPct": 59.598633692492896}, {"YearMonth": "2017-01", "Category": "Amino Acids", "totalRevenue": 8634.84, "totalRevenueExVAT": 7225.42, "totalCost": 3267.1099999999997, "totalQty": 578.0, "orderCount": 499, "uniqueProducts": 8, "margin": 3958.3100000000004, "marginPct": 54.783112953987455}, {"YearMonth": "2017-01", "Category": "Bone Health", "totalRevenue": 5548.2, "totalRevenueExVAT": 4638.97, "totalCost": 1356.2440000000001, "totalQty": 616.0, "orderCount": 530, "uniqueProducts": 6, "margin": 3282.726, "marginPct": 70.76411358555886}, {"YearMonth": "2017-01", "Category": "Cod Liver Oil", "totalRevenue": 1903.3, "totalRevenueExVAT": 1586.75, "totalCost": 1065.373, "totalQty": 176.0, "orderCount": 165, "uniqueProducts": 2, "margin": 521.377, "marginPct": 32.858169213801794}, {"YearMonth": "2017-01", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 4326.5, "totalRevenueExVAT": 3606.4100000000003, "totalCost": 1169.3329999999999, "totalQty": 213.0, "orderCount": 172, "uniqueProducts": 1, "margin": 2437.077, "marginPct": 67.57626004808105}, {"YearMonth": "2017-01", "Category": "Evening Primose Oils", "totalRevenue": 3756.87, "totalRevenueExVAT": 3143.58, "totalCost": 1381.928, "totalQty": 281.0, "orderCount": 265, "uniqueProducts": 4, "margin": 1761.6519999999998, "marginPct": 56.039674511226046}, {"YearMonth": "2017-01", "Category": "Glucosamine", "totalRevenue": 10162.83, "totalRevenueExVAT": 8504.76, "totalCost": 3811.484, "totalQty": 686.0, "orderCount": 551, "uniqueProducts": 11, "margin": 4693.276, "marginPct": 55.184108663854126}, {"YearMonth": "2017-01", "Category": "Herbal Supplements", "totalRevenue": 36931.77, "totalRevenueExVAT": 30857.16, "totalCost": 14848.184000000001, "totalQty": 2492.0, "orderCount": 1952, "uniqueProducts": 24, "margin": 16008.975999999999, "marginPct": 51.8809119180119}, {"YearMonth": "2017-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 5122.94, "totalRevenueExVAT": 4283.25, "totalCost": 1402.329, "totalQty": 484.0, "orderCount": 369, "uniqueProducts": 1, "margin": 2880.9210000000003, "marginPct": 67.26016459464192}, {"YearMonth": "2017-01", "Category": "Minerals", "totalRevenue": 1061.66, "totalRevenueExVAT": 884.49, "totalCost": 259.76300000000003, "totalQty": 140.0, "orderCount": 130, "uniqueProducts": 4, "margin": 624.727, "marginPct": 70.63132426596117}, {"YearMonth": "2017-01", "Category": "Multivitamins", "totalRevenue": 5853.65, "totalRevenueExVAT": 4890.03, "totalCost": 2244.664, "totalQty": 572.0, "orderCount": 510, "uniqueProducts": 6, "margin": 2645.3659999999995, "marginPct": 54.09713232843152}, {"YearMonth": "2017-01", "Category": "Omega 3 Supplements", "totalRevenue": 7150.25, "totalRevenueExVAT": 5975.4400000000005, "totalCost": 2495.9990000000003, "totalQty": 509.0, "orderCount": 441, "uniqueProducts": 6, "margin": 3479.4410000000003, "marginPct": 58.22903417990977}, {"YearMonth": "2017-01", "Category": "Probiotics", "totalRevenue": 2484.57, "totalRevenueExVAT": 2078.84, "totalCost": 1035.564, "totalQty": 132.0, "orderCount": 131, "uniqueProducts": 1, "margin": 1043.276, "marginPct": 50.185488060649206}, {"YearMonth": "2017-01", "Category": "Vitamin B", "totalRevenue": 5661.1900000000005, "totalRevenueExVAT": 4721.27, "totalCost": 1579.174, "totalQty": 536.0, "orderCount": 453, "uniqueProducts": 12, "margin": 3142.0960000000005, "marginPct": 66.55192352905046}, {"YearMonth": "2017-01", "Category": "Vitamin C", "totalRevenue": 2148.22, "totalRevenueExVAT": 1808.97, "totalCost": 599.232, "totalQty": 187.0, "orderCount": 159, "uniqueProducts": 4, "margin": 1209.738, "marginPct": 66.87440919418233}, {"YearMonth": "2017-01", "Category": "Vitamin D", "totalRevenue": 1910.12, "totalRevenueExVAT": 1606.67, "totalCost": 389.82, "totalQty": 203.0, "orderCount": 160, "uniqueProducts": 1, "margin": 1216.8500000000001, "marginPct": 75.73739473569557}, {"YearMonth": "2017-01", "Category": "Vitamin E", "totalRevenue": 1148.18, "totalRevenueExVAT": 965.1, "totalCost": 603.452, "totalQty": 76.0, "orderCount": 71, "uniqueProducts": 3, "margin": 361.648, "marginPct": 37.47259351362553}, {"YearMonth": "2017-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 4929.95, "totalRevenueExVAT": 4111.13, "totalCost": 1593.238, "totalQty": 238.0, "orderCount": 231, "uniqueProducts": 1, "margin": 2517.892, "marginPct": 61.24574022227465}, {"YearMonth": "2017-02", "Category": "Amino Acids", "totalRevenue": 5742.77, "totalRevenueExVAT": 4807.09, "totalCost": 2153.814, "totalQty": 395.0, "orderCount": 346, "uniqueProducts": 8, "margin": 2653.2760000000003, "marginPct": 55.19505563657015}, {"YearMonth": "2017-02", "Category": "Bone Health", "totalRevenue": 4569.0, "totalRevenueExVAT": 3812.9, "totalCost": 1068.6190000000001, "totalQty": 529.0, "orderCount": 439, "uniqueProducts": 6, "margin": 2744.281, "marginPct": 71.97358965616722}, {"YearMonth": "2017-02", "Category": "Cod Liver Oil", "totalRevenue": 923.92, "totalRevenueExVAT": 771.65, "totalCost": 457.878, "totalQty": 92.0, "orderCount": 87, "uniqueProducts": 2, "margin": 313.772, "marginPct": 40.662476511371736}, {"YearMonth": "2017-02", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2145.73, "totalRevenueExVAT": 1788.2, "totalCost": 593.833, "totalQty": 98.0, "orderCount": 92, "uniqueProducts": 1, "margin": 1194.3670000000002, "marginPct": 66.79157812325244}, {"YearMonth": "2017-02", "Category": "Evening Primose Oils", "totalRevenue": 2888.02, "totalRevenueExVAT": 2410.49, "totalCost": 1140.0420000000001, "totalQty": 208.0, "orderCount": 199, "uniqueProducts": 4, "margin": 1270.4479999999996, "marginPct": 52.704968699310086}, {"YearMonth": "2017-02", "Category": "Glucosamine", "totalRevenue": 6545.23, "totalRevenueExVAT": 5488.0, "totalCost": 2307.3669999999997, "totalQty": 448.0, "orderCount": 366, "uniqueProducts": 10, "margin": 3180.6330000000003, "marginPct": 57.95614067055395}, {"YearMonth": "2017-02", "Category": "Herbal Supplements", "totalRevenue": 19121.23, "totalRevenueExVAT": 15968.640000000001, "totalCost": 7719.926, "totalQty": 1450.0, "orderCount": 1127, "uniqueProducts": 22, "margin": 8248.714, "marginPct": 51.655707687066645}, {"YearMonth": "2017-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2382.5, "totalRevenueExVAT": 1984.46, "totalCost": 639.9, "totalQty": 230.0, "orderCount": 180, "uniqueProducts": 1, "margin": 1344.56, "marginPct": 67.75445209276074}, {"YearMonth": "2017-02", "Category": "Minerals", "totalRevenue": 926.5, "totalRevenueExVAT": 774.13, "totalCost": 220.744, "totalQty": 115.0, "orderCount": 99, "uniqueProducts": 4, "margin": 553.386, "marginPct": 71.4848927182773}, {"YearMonth": "2017-02", "Category": "Multivitamins", "totalRevenue": 3315.89, "totalRevenueExVAT": 2778.65, "totalCost": 1230.505, "totalQty": 345.0, "orderCount": 314, "uniqueProducts": 6, "margin": 1548.145, "marginPct": 55.71572526226765}, {"YearMonth": "2017-02", "Category": "Omega 3 Supplements", "totalRevenue": 4697.41, "totalRevenueExVAT": 3933.23, "totalCost": 1663.247, "totalQty": 321.0, "orderCount": 283, "uniqueProducts": 6, "margin": 2269.983, "marginPct": 57.71294839101706}, {"YearMonth": "2017-02", "Category": "Probiotics", "totalRevenue": 1643.1499999999999, "totalRevenueExVAT": 1372.1699999999998, "totalCost": 653.589, "totalQty": 85.0, "orderCount": 80, "uniqueProducts": 1, "margin": 718.5809999999998, "marginPct": 52.36821968123482}, {"YearMonth": "2017-02", "Category": "Vitamin B", "totalRevenue": 3785.28, "totalRevenueExVAT": 3161.75, "totalCost": 1065.525, "totalQty": 371.0, "orderCount": 310, "uniqueProducts": 12, "margin": 2096.225, "marginPct": 66.29951767217521}, {"YearMonth": "2017-02", "Category": "Vitamin C", "totalRevenue": 970.66, "totalRevenueExVAT": 808.87, "totalCost": 253.47799999999998, "totalQty": 86.0, "orderCount": 78, "uniqueProducts": 4, "margin": 555.392, "marginPct": 68.66270228837762}, {"YearMonth": "2017-02", "Category": "Vitamin D", "totalRevenue": 2314.0099999999998, "totalRevenueExVAT": 1940.14, "totalCost": 485.085, "totalQty": 246.0, "orderCount": 193, "uniqueProducts": 1, "margin": 1455.055, "marginPct": 74.99742286639108}, {"YearMonth": "2017-02", "Category": "Vitamin E", "totalRevenue": 1047.48, "totalRevenueExVAT": 874.3, "totalCost": 516.8979999999999, "totalQty": 66.0, "orderCount": 64, "uniqueProducts": 3, "margin": 357.40200000000004, "marginPct": 40.878645773761875}, {"YearMonth": "2017-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 3331.0, "totalRevenueExVAT": 2780.47, "totalCost": 1036.452, "totalQty": 155.0, "orderCount": 149, "uniqueProducts": 1, "margin": 1744.0179999999998, "marginPct": 62.72385603872726}, {"YearMonth": "2017-03", "Category": "Amino Acids", "totalRevenue": 5862.65, "totalRevenueExVAT": 4912.7, "totalCost": 2197.0209999999997, "totalQty": 401.0, "orderCount": 359, "uniqueProducts": 8, "margin": 2715.679, "marginPct": 55.27874692124494}, {"YearMonth": "2017-03", "Category": "Bone Health", "totalRevenue": 4303.73, "totalRevenueExVAT": 3599.72, "totalCost": 1084.577, "totalQty": 447.0, "orderCount": 383, "uniqueProducts": 6, "margin": 2515.143, "marginPct": 69.87051770693277}, {"YearMonth": "2017-03", "Category": "Cod Liver Oil", "totalRevenue": 1287.05, "totalRevenueExVAT": 1072.72, "totalCost": 646.289, "totalQty": 119.0, "orderCount": 108, "uniqueProducts": 2, "margin": 426.43100000000004, "marginPct": 39.75231188008054}, {"YearMonth": "2017-03", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3352.9, "totalRevenueExVAT": 2797.17, "totalCost": 923.4979999999999, "totalQty": 149.0, "orderCount": 138, "uniqueProducts": 1, "margin": 1873.672, "marginPct": 66.9845593939589}, {"YearMonth": "2017-03", "Category": "Evening Primose Oils", "totalRevenue": 2777.52, "totalRevenueExVAT": 2316.68, "totalCost": 1082.005, "totalQty": 212.0, "orderCount": 206, "uniqueProducts": 4, "margin": 1234.6749999999997, "marginPct": 53.295017007096355}, {"YearMonth": "2017-03", "Category": "Glucosamine", "totalRevenue": 9019.01, "totalRevenueExVAT": 7545.52, "totalCost": 3139.331, "totalQty": 576.0, "orderCount": 485, "uniqueProducts": 11, "margin": 4406.189, "marginPct": 58.39476934657917}, {"YearMonth": "2017-03", "Category": "Herbal Supplements", "totalRevenue": 30299.39, "totalRevenueExVAT": 25283.38, "totalCost": 12168.467, "totalQty": 2101.0, "orderCount": 1640, "uniqueProducts": 22, "margin": 13114.913, "marginPct": 51.87167617620745}, {"YearMonth": "2017-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2669.3, "totalRevenueExVAT": 2229.6, "totalCost": 620.229, "totalQty": 229.0, "orderCount": 188, "uniqueProducts": 1, "margin": 1609.3709999999999, "marginPct": 72.18205059203444}, {"YearMonth": "2017-03", "Category": "Minerals", "totalRevenue": 1157.85, "totalRevenueExVAT": 970.12, "totalCost": 272.96500000000003, "totalQty": 144.0, "orderCount": 121, "uniqueProducts": 4, "margin": 697.155, "marginPct": 71.86275924627881}, {"YearMonth": "2017-03", "Category": "Multivitamins", "totalRevenue": 3281.31, "totalRevenueExVAT": 2749.37, "totalCost": 1305.699, "totalQty": 310.0, "orderCount": 282, "uniqueProducts": 5, "margin": 1443.6709999999998, "marginPct": 52.50915664315825}, {"YearMonth": "2017-03", "Category": "Omega 3 Supplements", "totalRevenue": 6006.3, "totalRevenueExVAT": 5018.599999999999, "totalCost": 2028.482, "totalQty": 395.0, "orderCount": 346, "uniqueProducts": 6, "margin": 2990.1179999999995, "marginPct": 59.580719722631805}, {"YearMonth": "2017-03", "Category": "Probiotics", "totalRevenue": 2139.79, "totalRevenueExVAT": 1784.79, "totalCost": 864.45, "totalQty": 101.0, "orderCount": 95, "uniqueProducts": 1, "margin": 920.3399999999999, "marginPct": 51.56573042206646}, {"YearMonth": "2017-03", "Category": "Vitamin B", "totalRevenue": 4576.96, "totalRevenueExVAT": 3818.49, "totalCost": 1242.586, "totalQty": 425.0, "orderCount": 362, "uniqueProducts": 12, "margin": 2575.9039999999995, "marginPct": 67.45870749956133}, {"YearMonth": "2017-03", "Category": "Vitamin C", "totalRevenue": 1782.34, "totalRevenueExVAT": 1486.77, "totalCost": 471.19899999999996, "totalQty": 140.0, "orderCount": 99, "uniqueProducts": 4, "margin": 1015.571, "marginPct": 68.3072028625813}, {"YearMonth": "2017-03", "Category": "Vitamin D", "totalRevenue": 1685.4199999999998, "totalRevenueExVAT": 1403.2700000000002, "totalCost": 361.34999999999997, "totalQty": 187.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1041.9200000000003, "marginPct": 74.24943168456535}, {"YearMonth": "2017-03", "Category": "Vitamin E", "totalRevenue": 1020.5999999999999, "totalRevenueExVAT": 850.52, "totalCost": 486.66999999999996, "totalQty": 68.0, "orderCount": 59, "uniqueProducts": 3, "margin": 363.85, "marginPct": 42.779711235479475}, {"YearMonth": "2017-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 3851.48, "totalRevenueExVAT": 3214.74, "totalCost": 1169.3700000000001, "totalQty": 184.0, "orderCount": 167, "uniqueProducts": 1, "margin": 2045.3699999999997, "marginPct": 63.62474103660015}, {"YearMonth": "2017-04", "Category": "Amino Acids", "totalRevenue": 5721.83, "totalRevenueExVAT": 4802.4800000000005, "totalCost": 2047.166, "totalQty": 399.0, "orderCount": 337, "uniqueProducts": 7, "margin": 2755.3140000000003, "marginPct": 57.372732421582185}, {"YearMonth": "2017-04", "Category": "Bone Health", "totalRevenue": 3798.2999999999997, "totalRevenueExVAT": 3179.84, "totalCost": 966.095, "totalQty": 388.0, "orderCount": 316, "uniqueProducts": 6, "margin": 2213.745, "marginPct": 69.61812544027372}, {"YearMonth": "2017-04", "Category": "Cod Liver Oil", "totalRevenue": 1155.1599999999999, "totalRevenueExVAT": 967.51, "totalCost": 606.8489999999999, "totalQty": 104.0, "orderCount": 97, "uniqueProducts": 2, "margin": 360.66100000000006, "marginPct": 37.277237444574226}, {"YearMonth": "2017-04", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2653.67, "totalRevenueExVAT": 2213.8, "totalCost": 725.317, "totalQty": 127.0, "orderCount": 124, "uniqueProducts": 1, "margin": 1488.4830000000002, "marginPct": 67.23656156834402}, {"YearMonth": "2017-04", "Category": "Evening Primose Oils", "totalRevenue": 2753.78, "totalRevenueExVAT": 2294.2200000000003, "totalCost": 1063.469, "totalQty": 192.0, "orderCount": 180, "uniqueProducts": 4, "margin": 1230.7510000000002, "marginPct": 53.645727088073514}, {"YearMonth": "2017-04", "Category": "Glucosamine", "totalRevenue": 6648.16, "totalRevenueExVAT": 5565.4400000000005, "totalCost": 2273.1929999999998, "totalQty": 425.0, "orderCount": 358, "uniqueProducts": 9, "margin": 3292.2470000000008, "marginPct": 59.15519707336707}, {"YearMonth": "2017-04", "Category": "Herbal Supplements", "totalRevenue": 26044.15, "totalRevenueExVAT": 21737.24, "totalCost": 9890.022, "totalQty": 1714.0, "orderCount": 1397, "uniqueProducts": 22, "margin": 11847.218, "marginPct": 54.50194228890144}, {"YearMonth": "2017-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2190.16, "totalRevenueExVAT": 1829.23, "totalCost": 489.879, "totalQty": 174.0, "orderCount": 147, "uniqueProducts": 1, "margin": 1339.351, "marginPct": 73.21938739250943}, {"YearMonth": "2017-04", "Category": "Minerals", "totalRevenue": 786.72, "totalRevenueExVAT": 659.11, "totalCost": 182.87800000000001, "totalQty": 106.0, "orderCount": 98, "uniqueProducts": 4, "margin": 476.23199999999997, "marginPct": 72.25379678657583}, {"YearMonth": "2017-04", "Category": "Multivitamins", "totalRevenue": 2334.9, "totalRevenueExVAT": 1950.25, "totalCost": 921.642, "totalQty": 259.0, "orderCount": 236, "uniqueProducts": 5, "margin": 1028.608, "marginPct": 52.74236636328675}, {"YearMonth": "2017-04", "Category": "Omega 3 Supplements", "totalRevenue": 4850.74, "totalRevenueExVAT": 4051.32, "totalCost": 1677.203, "totalQty": 333.0, "orderCount": 303, "uniqueProducts": 6, "margin": 2374.117, "marginPct": 58.60107323045328}, {"YearMonth": "2017-04", "Category": "Probiotics", "totalRevenue": 1842.87, "totalRevenueExVAT": 1543.47, "totalCost": 735.009, "totalQty": 93.0, "orderCount": 88, "uniqueProducts": 1, "margin": 808.461, "marginPct": 52.37944372096639}, {"YearMonth": "2017-04", "Category": "Vitamin B", "totalRevenue": 3435.44, "totalRevenueExVAT": 2876.28, "totalCost": 930.4019999999999, "totalQty": 314.0, "orderCount": 270, "uniqueProducts": 12, "margin": 1945.8780000000002, "marginPct": 67.65259293253786}, {"YearMonth": "2017-04", "Category": "Vitamin C", "totalRevenue": 1365.9399999999998, "totalRevenueExVAT": 1145.4, "totalCost": 366.70799999999997, "totalQty": 112.0, "orderCount": 98, "uniqueProducts": 4, "margin": 778.6920000000001, "marginPct": 67.98428496595076}, {"YearMonth": "2017-04", "Category": "Vitamin D", "totalRevenue": 1489.0, "totalRevenueExVAT": 1239.7, "totalCost": 315.36, "totalQty": 170.0, "orderCount": 147, "uniqueProducts": 1, "margin": 924.34, "marginPct": 74.56158748084214}, {"YearMonth": "2017-04", "Category": "Vitamin E", "totalRevenue": 743.42, "totalRevenueExVAT": 624.5, "totalCost": 361.57599999999996, "totalQty": 52.0, "orderCount": 43, "uniqueProducts": 3, "margin": 262.92400000000004, "marginPct": 42.10152121697359}, {"YearMonth": "2017-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 2374.32, "totalRevenueExVAT": 1985.6, "totalCost": 718.28, "totalQty": 124.0, "orderCount": 110, "uniqueProducts": 1, "margin": 1267.32, "marginPct": 63.825543916196615}, {"YearMonth": "2017-05", "Category": "Amino Acids", "totalRevenue": 6462.93, "totalRevenueExVAT": 5402.85, "totalCost": 2274.293, "totalQty": 456.0, "orderCount": 384, "uniqueProducts": 8, "margin": 3128.5570000000002, "marginPct": 57.905679409941044}, {"YearMonth": "2017-05", "Category": "Bone Health", "totalRevenue": 4338.38, "totalRevenueExVAT": 3633.52, "totalCost": 1066.041, "totalQty": 450.0, "orderCount": 381, "uniqueProducts": 6, "margin": 2567.4790000000003, "marginPct": 70.66092934674917}, {"YearMonth": "2017-05", "Category": "Cod Liver Oil", "totalRevenue": 1199.1499999999999, "totalRevenueExVAT": 999.46, "totalCost": 576.045, "totalQty": 117.0, "orderCount": 110, "uniqueProducts": 2, "margin": 423.4150000000001, "marginPct": 42.36437676345227}, {"YearMonth": "2017-05", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3026.57, "totalRevenueExVAT": 2529.32, "totalCost": 771.12, "totalQty": 142.0, "orderCount": 136, "uniqueProducts": 1, "margin": 1758.2000000000003, "marginPct": 69.51275441620673}, {"YearMonth": "2017-05", "Category": "Evening Primose Oils", "totalRevenue": 3565.64, "totalRevenueExVAT": 2979.02, "totalCost": 1344.39, "totalQty": 260.0, "orderCount": 243, "uniqueProducts": 4, "margin": 1634.6299999999999, "marginPct": 54.87140066196265}, {"YearMonth": "2017-05", "Category": "Glucosamine", "totalRevenue": 8348.13, "totalRevenueExVAT": 6993.24, "totalCost": 2900.445, "totalQty": 515.0, "orderCount": 437, "uniqueProducts": 8, "margin": 4092.7949999999996, "marginPct": 58.52501844638536}, {"YearMonth": "2017-05", "Category": "Herbal Supplements", "totalRevenue": 31530.5, "totalRevenueExVAT": 26389.73, "totalCost": 11798.632, "totalQty": 2035.0, "orderCount": 1606, "uniqueProducts": 22, "margin": 14591.098, "marginPct": 55.29081957261405}, {"YearMonth": "2017-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2659.01, "totalRevenueExVAT": 2224.34, "totalCost": 552.684, "totalQty": 204.0, "orderCount": 180, "uniqueProducts": 1, "margin": 1671.6560000000002, "marginPct": 75.15289928697952}, {"YearMonth": "2017-05", "Category": "Minerals", "totalRevenue": 1001.05, "totalRevenueExVAT": 839.16, "totalCost": 234.12900000000002, "totalQty": 123.0, "orderCount": 115, "uniqueProducts": 4, "margin": 605.031, "marginPct": 72.0995995995996}, {"YearMonth": "2017-05", "Category": "Multivitamins", "totalRevenue": 2088.2, "totalRevenueExVAT": 1746.21, "totalCost": 810.663, "totalQty": 246.0, "orderCount": 228, "uniqueProducts": 4, "margin": 935.547, "marginPct": 53.575858573711066}, {"YearMonth": "2017-05", "Category": "Omega 3 Supplements", "totalRevenue": 6251.64, "totalRevenueExVAT": 5233.3, "totalCost": 2164.263, "totalQty": 421.0, "orderCount": 362, "uniqueProducts": 6, "margin": 3069.0370000000003, "marginPct": 58.644392639443566}, {"YearMonth": "2017-05", "Category": "Probiotics", "totalRevenue": 3029.58, "totalRevenueExVAT": 2532.58, "totalCost": 1207.522, "totalQty": 152.0, "orderCount": 141, "uniqueProducts": 1, "margin": 1325.058, "marginPct": 52.320479511012486}, {"YearMonth": "2017-05", "Category": "Vitamin B", "totalRevenue": 5661.08, "totalRevenueExVAT": 4732.860000000001, "totalCost": 1555.912, "totalQty": 510.0, "orderCount": 407, "uniqueProducts": 12, "margin": 3176.9480000000003, "marginPct": 67.12533225153501}, {"YearMonth": "2017-05", "Category": "Vitamin C", "totalRevenue": 1124.6499999999999, "totalRevenueExVAT": 941.05, "totalCost": 305.29699999999997, "totalQty": 94.0, "orderCount": 84, "uniqueProducts": 3, "margin": 635.7529999999999, "marginPct": 67.55783433398862}, {"YearMonth": "2017-05", "Category": "Vitamin D", "totalRevenue": 1505.59, "totalRevenueExVAT": 1258.68, "totalCost": 301.125, "totalQty": 156.0, "orderCount": 136, "uniqueProducts": 1, "margin": 957.5550000000001, "marginPct": 76.07612737153208}, {"YearMonth": "2017-05", "Category": "Vitamin E", "totalRevenue": 1140.79, "totalRevenueExVAT": 952.09, "totalCost": 554.41, "totalQty": 71.0, "orderCount": 65, "uniqueProducts": 3, "margin": 397.68000000000006, "marginPct": 41.769160478526196}, {"YearMonth": "2017-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 3341.0, "totalRevenueExVAT": 2797.3399999999997, "totalCost": 1038.626, "totalQty": 144.0, "orderCount": 140, "uniqueProducts": 1, "margin": 1758.7139999999997, "marginPct": 62.87094168031058}, {"YearMonth": "2017-06", "Category": "Amino Acids", "totalRevenue": 6068.7699999999995, "totalRevenueExVAT": 5072.71, "totalCost": 2191.805, "totalQty": 411.0, "orderCount": 362, "uniqueProducts": 9, "margin": 2880.905, "marginPct": 56.79222742873139}, {"YearMonth": "2017-06", "Category": "Bone Health", "totalRevenue": 2840.88, "totalRevenueExVAT": 2378.84, "totalCost": 710.263, "totalQty": 299.0, "orderCount": 278, "uniqueProducts": 6, "margin": 1668.5770000000002, "marginPct": 70.14246439441074}, {"YearMonth": "2017-06", "Category": "Cod Liver Oil", "totalRevenue": 754.8599999999999, "totalRevenueExVAT": 629.96, "totalCost": 307.632, "totalQty": 83.0, "orderCount": 75, "uniqueProducts": 2, "margin": 322.32800000000003, "marginPct": 51.16642326496921}, {"YearMonth": "2017-06", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2798.63, "totalRevenueExVAT": 2335.2200000000003, "totalCost": 812.756, "totalQty": 127.0, "orderCount": 112, "uniqueProducts": 1, "margin": 1522.4640000000004, "marginPct": 65.1957417288307}, {"YearMonth": "2017-06", "Category": "Evening Primose Oils", "totalRevenue": 1795.5, "totalRevenueExVAT": 1499.21, "totalCost": 725.361, "totalQty": 133.0, "orderCount": 126, "uniqueProducts": 4, "margin": 773.849, "marginPct": 51.61711834899714}, {"YearMonth": "2017-06", "Category": "Glucosamine", "totalRevenue": 6585.38, "totalRevenueExVAT": 5502.46, "totalCost": 2338.9, "totalQty": 442.0, "orderCount": 385, "uniqueProducts": 10, "margin": 3163.56, "marginPct": 57.49355742704172}, {"YearMonth": "2017-06", "Category": "Herbal Supplements", "totalRevenue": 24875.31, "totalRevenueExVAT": 20780.32, "totalCost": 9248.907000000001, "totalQty": 1544.0, "orderCount": 1298, "uniqueProducts": 22, "margin": 11531.412999999999, "marginPct": 55.49198953625353}, {"YearMonth": "2017-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1830.89, "totalRevenueExVAT": 1526.15, "totalCost": 368.53499999999997, "totalQty": 140.0, "orderCount": 130, "uniqueProducts": 1, "margin": 1157.6150000000002, "marginPct": 75.85198047374112}, {"YearMonth": "2017-06", "Category": "Minerals", "totalRevenue": 716.1899999999999, "totalRevenueExVAT": 602.29, "totalCost": 166.133, "totalQty": 87.0, "orderCount": 78, "uniqueProducts": 3, "margin": 436.1569999999999, "marginPct": 72.41644390575968}, {"YearMonth": "2017-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 603.24, "totalRevenueExVAT": 502.44000000000005, "totalCost": 147.876, "totalQty": 39.0, "orderCount": 33, "uniqueProducts": 1, "margin": 354.5640000000001, "marginPct": 70.56842608072607}, {"YearMonth": "2017-06", "Category": "Multivitamins", "totalRevenue": 2903.17, "totalRevenueExVAT": 2431.0499999999997, "totalCost": 1049.258, "totalQty": 307.0, "orderCount": 269, "uniqueProducts": 6, "margin": 1381.7919999999997, "marginPct": 56.83930811789144}, {"YearMonth": "2017-06", "Category": "Omega 3 Supplements", "totalRevenue": 3861.33, "totalRevenueExVAT": 3231.38, "totalCost": 1375.469, "totalQty": 265.0, "orderCount": 245, "uniqueProducts": 6, "margin": 1855.911, "marginPct": 57.434006523528645}, {"YearMonth": "2017-06", "Category": "Probiotics", "totalRevenue": 1624.79, "totalRevenueExVAT": 1356.8899999999999, "totalCost": 617.759, "totalQty": 91.0, "orderCount": 88, "uniqueProducts": 1, "margin": 739.1309999999999, "marginPct": 54.47243328493835}, {"YearMonth": "2017-06", "Category": "Vitamin B", "totalRevenue": 3676.23, "totalRevenueExVAT": 3075.82, "totalCost": 1055.439, "totalQty": 338.0, "orderCount": 284, "uniqueProducts": 12, "margin": 2020.381, "marginPct": 65.68593090622988}, {"YearMonth": "2017-06", "Category": "Vitamin C", "totalRevenue": 879.7199999999999, "totalRevenueExVAT": 738.08, "totalCost": 241.214, "totalQty": 66.0, "orderCount": 54, "uniqueProducts": 3, "margin": 496.86600000000004, "marginPct": 67.31871883806633}, {"YearMonth": "2017-06", "Category": "Vitamin D", "totalRevenue": 1193.8799999999999, "totalRevenueExVAT": 994.3100000000001, "totalCost": 250.755, "totalQty": 129.0, "orderCount": 111, "uniqueProducts": 1, "margin": 743.5550000000001, "marginPct": 74.78100391226077}, {"YearMonth": "2017-06", "Category": "Vitamin E", "totalRevenue": 797.99, "totalRevenueExVAT": 666.42, "totalCost": 396.84, "totalQty": 47.0, "orderCount": 46, "uniqueProducts": 3, "margin": 269.58, "marginPct": 40.45196722787431}, {"YearMonth": "2017-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 2874.5, "totalRevenueExVAT": 2395.4, "totalCost": 883.4780000000001, "totalQty": 130.0, "orderCount": 127, "uniqueProducts": 1, "margin": 1511.922, "marginPct": 63.11772564081155}, {"YearMonth": "2017-07", "Category": "Amino Acids", "totalRevenue": 9603.08, "totalRevenueExVAT": 8021.43, "totalCost": 3416.35, "totalQty": 677.0, "orderCount": 558, "uniqueProducts": 8, "margin": 4605.08, "marginPct": 57.40971372934751}, {"YearMonth": "2017-07", "Category": "Bone Health", "totalRevenue": 5101.79, "totalRevenueExVAT": 4263.91, "totalCost": 1276.9270000000001, "totalQty": 521.0, "orderCount": 439, "uniqueProducts": 6, "margin": 2986.9829999999997, "marginPct": 70.05267465776717}, {"YearMonth": "2017-07", "Category": "Cod Liver Oil", "totalRevenue": 1954.25, "totalRevenueExVAT": 1631.03, "totalCost": 985.218, "totalQty": 182.0, "orderCount": 171, "uniqueProducts": 2, "margin": 645.812, "marginPct": 39.595347725057174}, {"YearMonth": "2017-07", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 5331.81, "totalRevenueExVAT": 4458.51, "totalCost": 1410.57, "totalQty": 231.0, "orderCount": 215, "uniqueProducts": 1, "margin": 3047.9400000000005, "marginPct": 68.36230040977817}, {"YearMonth": "2017-07", "Category": "Evening Primose Oils", "totalRevenue": 4380.86, "totalRevenueExVAT": 3654.5, "totalCost": 1666.698, "totalQty": 297.0, "orderCount": 278, "uniqueProducts": 3, "margin": 1987.802, "marginPct": 54.393268572992206}, {"YearMonth": "2017-07", "Category": "Glucosamine", "totalRevenue": 11301.32, "totalRevenueExVAT": 9447.65, "totalCost": 4166.64, "totalQty": 809.0, "orderCount": 650, "uniqueProducts": 10, "margin": 5281.009999999999, "marginPct": 55.89760416611538}, {"YearMonth": "2017-07", "Category": "Herbal Supplements", "totalRevenue": 46319.42, "totalRevenueExVAT": 38731.73, "totalCost": 17473.751, "totalQty": 2840.0, "orderCount": 2126, "uniqueProducts": 21, "margin": 21257.979000000003, "marginPct": 54.88517812140073}, {"YearMonth": "2017-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 4141.28, "totalRevenueExVAT": 3464.6600000000003, "totalCost": 855.5699999999999, "totalQty": 310.0, "orderCount": 247, "uniqueProducts": 1, "margin": 2609.09, "marginPct": 75.30580201231867}, {"YearMonth": "2017-07", "Category": "Minerals", "totalRevenue": 1131.81, "totalRevenueExVAT": 945.93, "totalCost": 260.791, "totalQty": 141.0, "orderCount": 127, "uniqueProducts": 3, "margin": 685.1389999999999, "marginPct": 72.43020096624485}, {"YearMonth": "2017-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 3028.6800000000003, "totalRevenueExVAT": 2530.0800000000004, "totalCost": 745.152, "totalQty": 198.0, "orderCount": 167, "uniqueProducts": 1, "margin": 1784.9280000000003, "marginPct": 70.54828305824323}, {"YearMonth": "2017-07", "Category": "Multivitamins", "totalRevenue": 6634.07, "totalRevenueExVAT": 5543.21, "totalCost": 2499.64, "totalQty": 629.0, "orderCount": 561, "uniqueProducts": 6, "margin": 3043.57, "marginPct": 54.906272719236696}, {"YearMonth": "2017-07", "Category": "Omega 3 Supplements", "totalRevenue": 8068.16, "totalRevenueExVAT": 6743.88, "totalCost": 2770.638, "totalQty": 535.0, "orderCount": 457, "uniqueProducts": 6, "margin": 3973.242, "marginPct": 58.916261855193156}, {"YearMonth": "2017-07", "Category": "Probiotics", "totalRevenue": 2962.2, "totalRevenueExVAT": 2468.24, "totalCost": 1160.987, "totalQty": 156.0, "orderCount": 149, "uniqueProducts": 1, "margin": 1307.2529999999997, "marginPct": 52.962961462418555}, {"YearMonth": "2017-07", "Category": "Vitamin B", "totalRevenue": 6695.57, "totalRevenueExVAT": 5601.8, "totalCost": 1811.9089999999999, "totalQty": 613.0, "orderCount": 506, "uniqueProducts": 12, "margin": 3789.8910000000005, "marginPct": 67.6548787889607}, {"YearMonth": "2017-07", "Category": "Vitamin C", "totalRevenue": 2114.2599999999998, "totalRevenueExVAT": 1767.13, "totalCost": 554.22, "totalQty": 172.0, "orderCount": 144, "uniqueProducts": 4, "margin": 1212.91, "marginPct": 68.637281920402}, {"YearMonth": "2017-07", "Category": "Vitamin D", "totalRevenue": 1953.57, "totalRevenueExVAT": 1630.6200000000001, "totalCost": 416.1, "totalQty": 222.0, "orderCount": 186, "uniqueProducts": 1, "margin": 1214.52, "marginPct": 74.4820988335725}, {"YearMonth": "2017-07", "Category": "Vitamin E", "totalRevenue": 1594.76, "totalRevenueExVAT": 1337.93, "totalCost": 791.684, "totalQty": 92.0, "orderCount": 82, "uniqueProducts": 3, "margin": 546.2460000000001, "marginPct": 40.8276965162602}, {"YearMonth": "2017-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 5888.49, "totalRevenueExVAT": 4923.79, "totalCost": 1842.766, "totalQty": 251.0, "orderCount": 234, "uniqueProducts": 1, "margin": 3081.024, "marginPct": 62.574236512930085}, {"YearMonth": "2017-08", "Category": "Amino Acids", "totalRevenue": 6281.65, "totalRevenueExVAT": 5268.46, "totalCost": 2216.864, "totalQty": 433.0, "orderCount": 379, "uniqueProducts": 8, "margin": 3051.596, "marginPct": 57.92197340399282}, {"YearMonth": "2017-08", "Category": "Bone Health", "totalRevenue": 3809.42, "totalRevenueExVAT": 3185.81, "totalCost": 963.898, "totalQty": 380.0, "orderCount": 326, "uniqueProducts": 6, "margin": 2221.912, "marginPct": 69.74402114375935}, {"YearMonth": "2017-08", "Category": "Cod Liver Oil", "totalRevenue": 1449.73, "totalRevenueExVAT": 1211.22, "totalCost": 735.5559999999999, "totalQty": 136.0, "orderCount": 128, "uniqueProducts": 2, "margin": 475.6640000000001, "marginPct": 39.27147834414888}, {"YearMonth": "2017-08", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2463.32, "totalRevenueExVAT": 2063.27, "totalCost": 648.773, "totalQty": 112.0, "orderCount": 107, "uniqueProducts": 1, "margin": 1414.4969999999998, "marginPct": 68.55607845798174}, {"YearMonth": "2017-08", "Category": "Evening Primose Oils", "totalRevenue": 3420.05, "totalRevenueExVAT": 2856.14, "totalCost": 1288.045, "totalQty": 238.0, "orderCount": 228, "uniqueProducts": 3, "margin": 1568.0949999999998, "marginPct": 54.90259581112971}, {"YearMonth": "2017-08", "Category": "Glucosamine", "totalRevenue": 9779.02, "totalRevenueExVAT": 8178.77, "totalCost": 3513.115, "totalQty": 618.0, "orderCount": 538, "uniqueProducts": 10, "margin": 4665.655000000001, "marginPct": 57.04592499850223}, {"YearMonth": "2017-08", "Category": "Herbal Supplements", "totalRevenue": 30029.61, "totalRevenueExVAT": 25093.77, "totalCost": 11393.676000000001, "totalQty": 1848.0, "orderCount": 1538, "uniqueProducts": 21, "margin": 13700.094, "marginPct": 54.59559882791625}, {"YearMonth": "2017-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2546.25, "totalRevenueExVAT": 2123.1600000000003, "totalCost": 528.51, "totalQty": 200.0, "orderCount": 177, "uniqueProducts": 1, "margin": 1594.6500000000003, "marginPct": 75.10738710224383}, {"YearMonth": "2017-08", "Category": "Minerals", "totalRevenue": 837.79, "totalRevenueExVAT": 700.99, "totalCost": 196.258, "totalQty": 98.0, "orderCount": 91, "uniqueProducts": 3, "margin": 504.73199999999997, "marginPct": 72.00273898343771}, {"YearMonth": "2017-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1566.9, "totalRevenueExVAT": 1307.5500000000002, "totalCost": 385.94100000000003, "totalQty": 105.0, "orderCount": 97, "uniqueProducts": 1, "margin": 921.6090000000002, "marginPct": 70.48365263278652}, {"YearMonth": "2017-08", "Category": "Multivitamins", "totalRevenue": 3696.3799999999997, "totalRevenueExVAT": 3089.0099999999998, "totalCost": 1383.756, "totalQty": 367.0, "orderCount": 330, "uniqueProducts": 6, "margin": 1705.2539999999997, "marginPct": 55.20390027873007}, {"YearMonth": "2017-08", "Category": "Omega 3 Supplements", "totalRevenue": 4703.2, "totalRevenueExVAT": 3943.46, "totalCost": 1753.755, "totalQty": 334.0, "orderCount": 299, "uniqueProducts": 6, "margin": 2189.705, "marginPct": 55.52750630157273}, {"YearMonth": "2017-08", "Category": "Probiotics", "totalRevenue": 1630.24, "totalRevenueExVAT": 1360.1799999999998, "totalCost": 618.5020000000001, "totalQty": 92.0, "orderCount": 92, "uniqueProducts": 1, "margin": 741.6779999999998, "marginPct": 54.527930126894965}, {"YearMonth": "2017-08", "Category": "Vitamin B", "totalRevenue": 4321.98, "totalRevenueExVAT": 3630.16, "totalCost": 1183.261, "totalQty": 400.0, "orderCount": 343, "uniqueProducts": 13, "margin": 2446.899, "marginPct": 67.40471494369395}, {"YearMonth": "2017-08", "Category": "Vitamin C", "totalRevenue": 1242.82, "totalRevenueExVAT": 1044.18, "totalCost": 328.842, "totalQty": 101.0, "orderCount": 94, "uniqueProducts": 4, "margin": 715.3380000000001, "marginPct": 68.50715393897605}, {"YearMonth": "2017-08", "Category": "Vitamin D", "totalRevenue": 1481.8799999999999, "totalRevenueExVAT": 1238.2800000000002, "totalCost": 316.455, "totalQty": 168.0, "orderCount": 141, "uniqueProducts": 1, "margin": 921.8250000000003, "marginPct": 74.44398682042834}, {"YearMonth": "2017-08", "Category": "Vitamin E", "totalRevenue": 1026.77, "totalRevenueExVAT": 860.67, "totalCost": 496.76699999999994, "totalQty": 65.0, "orderCount": 61, "uniqueProducts": 3, "margin": 363.903, "marginPct": 42.28136219456935}, {"YearMonth": "2017-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 3124.76, "totalRevenueExVAT": 2615.2599999999998, "totalCost": 951.346, "totalQty": 152.0, "orderCount": 140, "uniqueProducts": 1, "margin": 1663.9139999999998, "marginPct": 63.623272638284526}, {"YearMonth": "2017-09", "Category": "Amino Acids", "totalRevenue": 6886.76, "totalRevenueExVAT": 5772.96, "totalCost": 2484.676, "totalQty": 443.0, "orderCount": 404, "uniqueProducts": 7, "margin": 3288.284, "marginPct": 56.96010365566365}, {"YearMonth": "2017-09", "Category": "Bone Health", "totalRevenue": 3933.38, "totalRevenueExVAT": 3294.49, "totalCost": 995.764, "totalQty": 408.0, "orderCount": 348, "uniqueProducts": 6, "margin": 2298.7259999999997, "marginPct": 69.77486651955233}, {"YearMonth": "2017-09", "Category": "Cod Liver Oil", "totalRevenue": 1134.1299999999999, "totalRevenueExVAT": 947.64, "totalCost": 604.231, "totalQty": 101.0, "orderCount": 96, "uniqueProducts": 2, "margin": 343.409, "marginPct": 36.238339453801025}, {"YearMonth": "2017-09", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2782.26, "totalRevenueExVAT": 2317.71, "totalCost": 732.941, "totalQty": 126.0, "orderCount": 109, "uniqueProducts": 1, "margin": 1584.769, "marginPct": 68.37650094274089}, {"YearMonth": "2017-09", "Category": "Evening Primose Oils", "totalRevenue": 2897.87, "totalRevenueExVAT": 2418.65, "totalCost": 1112.194, "totalQty": 201.0, "orderCount": 189, "uniqueProducts": 3, "margin": 1306.4560000000001, "marginPct": 54.015917970768825}, {"YearMonth": "2017-09", "Category": "Glucosamine", "totalRevenue": 9482.99, "totalRevenueExVAT": 7934.17, "totalCost": 3471.465, "totalQty": 617.0, "orderCount": 537, "uniqueProducts": 10, "margin": 4462.705, "marginPct": 56.24665213878705}, {"YearMonth": "2017-09", "Category": "Herbal Supplements", "totalRevenue": 30290.829999999998, "totalRevenueExVAT": 25326.97, "totalCost": 11273.667000000001, "totalQty": 1855.0, "orderCount": 1556, "uniqueProducts": 21, "margin": 14053.303, "marginPct": 55.48750205808275}, {"YearMonth": "2017-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2401.95, "totalRevenueExVAT": 2006.19, "totalCost": 496.041, "totalQty": 181.0, "orderCount": 167, "uniqueProducts": 1, "margin": 1510.1490000000001, "marginPct": 75.27447549833266}, {"YearMonth": "2017-09", "Category": "Minerals", "totalRevenue": 902.26, "totalRevenueExVAT": 752.76, "totalCost": 205.23000000000002, "totalQty": 115.0, "orderCount": 96, "uniqueProducts": 3, "margin": 547.53, "marginPct": 72.73633030447951}, {"YearMonth": "2017-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1708.1200000000001, "totalRevenueExVAT": 1425.22, "totalCost": 418.31800000000004, "totalQty": 107.0, "orderCount": 89, "uniqueProducts": 1, "margin": 1006.902, "marginPct": 70.64888227782377}, {"YearMonth": "2017-09", "Category": "Multivitamins", "totalRevenue": 3465.5699999999997, "totalRevenueExVAT": 2899.55, "totalCost": 1327.116, "totalQty": 350.0, "orderCount": 331, "uniqueProducts": 6, "margin": 1572.4340000000002, "marginPct": 54.230277111965655}, {"YearMonth": "2017-09", "Category": "Omega 3 Supplements", "totalRevenue": 5275.89, "totalRevenueExVAT": 4404.51, "totalCost": 1904.361, "totalQty": 370.0, "orderCount": 325, "uniqueProducts": 6, "margin": 2500.1490000000003, "marginPct": 56.76338571146393}, {"YearMonth": "2017-09", "Category": "Probiotics", "totalRevenue": 2001.9, "totalRevenueExVAT": 1668.08, "totalCost": 792.047, "totalQty": 102.0, "orderCount": 98, "uniqueProducts": 1, "margin": 876.0329999999999, "marginPct": 52.51744520646492}, {"YearMonth": "2017-09", "Category": "Vitamin B", "totalRevenue": 3876.87, "totalRevenueExVAT": 3232.56, "totalCost": 1119.322, "totalQty": 369.0, "orderCount": 333, "uniqueProducts": 12, "margin": 2113.2380000000003, "marginPct": 65.3735120152449}, {"YearMonth": "2017-09", "Category": "Vitamin C", "totalRevenue": 1227.35, "totalRevenueExVAT": 1028.95, "totalCost": 317.432, "totalQty": 107.0, "orderCount": 96, "uniqueProducts": 4, "margin": 711.518, "marginPct": 69.1499101025317}, {"YearMonth": "2017-09", "Category": "Vitamin D", "totalRevenue": 1703.79, "totalRevenueExVAT": 1422.69, "totalCost": 366.825, "totalQty": 189.0, "orderCount": 166, "uniqueProducts": 1, "margin": 1055.865, "marginPct": 74.21609767412437}, {"YearMonth": "2017-09", "Category": "Vitamin E", "totalRevenue": 1000.01, "totalRevenueExVAT": 835.88, "totalCost": 493.94599999999997, "totalQty": 60.0, "orderCount": 56, "uniqueProducts": 3, "margin": 341.934, "marginPct": 40.90706800019142}, {"YearMonth": "2017-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 3270.83, "totalRevenueExVAT": 2730.5499999999997, "totalCost": 1012.846, "totalQty": 147.0, "orderCount": 138, "uniqueProducts": 1, "margin": 1717.7039999999997, "marginPct": 62.90688689091941}, {"YearMonth": "2017-10", "Category": "Amino Acids", "totalRevenue": 8579.63, "totalRevenueExVAT": 7178.58, "totalCost": 3151.359, "totalQty": 571.0, "orderCount": 511, "uniqueProducts": 7, "margin": 4027.221, "marginPct": 56.10052405907575}, {"YearMonth": "2017-10", "Category": "Bone Health", "totalRevenue": 5532.06, "totalRevenueExVAT": 4631.4, "totalCost": 1394.037, "totalQty": 619.0, "orderCount": 547, "uniqueProducts": 6, "margin": 3237.3629999999994, "marginPct": 69.90031092110375}, {"YearMonth": "2017-10", "Category": "Cod Liver Oil", "totalRevenue": 1745.24, "totalRevenueExVAT": 1458.24, "totalCost": 869.193, "totalQty": 169.0, "orderCount": 154, "uniqueProducts": 2, "margin": 589.047, "marginPct": 40.39437952600395}, {"YearMonth": "2017-10", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3633.11, "totalRevenueExVAT": 3034.06, "totalCost": 967.357, "totalQty": 171.0, "orderCount": 159, "uniqueProducts": 1, "margin": 2066.703, "marginPct": 68.11674785600812}, {"YearMonth": "2017-10", "Category": "Evening Primose Oils", "totalRevenue": 3658.63, "totalRevenueExVAT": 3062.85, "totalCost": 1460.452, "totalQty": 257.0, "orderCount": 241, "uniqueProducts": 3, "margin": 1602.398, "marginPct": 52.31722088904125}, {"YearMonth": "2017-10", "Category": "Glucosamine", "totalRevenue": 11640.43, "totalRevenueExVAT": 9748.67, "totalCost": 4235.017, "totalQty": 760.0, "orderCount": 671, "uniqueProducts": 10, "margin": 5513.653, "marginPct": 56.55800227107903}, {"YearMonth": "2017-10", "Category": "Herbal Supplements", "totalRevenue": 41233.35, "totalRevenueExVAT": 34475.64, "totalCost": 15525.979000000001, "totalQty": 2496.0, "orderCount": 2031, "uniqueProducts": 20, "margin": 18949.661, "marginPct": 54.96536394973378}, {"YearMonth": "2017-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3469.16, "totalRevenueExVAT": 2897.11, "totalCost": 739.914, "totalQty": 269.0, "orderCount": 229, "uniqueProducts": 1, "margin": 2157.196, "marginPct": 74.4602724784354}, {"YearMonth": "2017-10", "Category": "Minerals", "totalRevenue": 1261.75, "totalRevenueExVAT": 1056.14, "totalCost": 298.21000000000004, "totalQty": 159.0, "orderCount": 143, "uniqueProducts": 4, "margin": 757.9300000000001, "marginPct": 71.76416005453822}, {"YearMonth": "2017-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2584.3, "totalRevenueExVAT": 2164.9, "totalCost": 607.4000000000001, "totalQty": 163.0, "orderCount": 146, "uniqueProducts": 1, "margin": 1557.5, "marginPct": 71.94327682571942}, {"YearMonth": "2017-10", "Category": "Multivitamins", "totalRevenue": 5006.4, "totalRevenueExVAT": 4197.66, "totalCost": 1887.603, "totalQty": 509.0, "orderCount": 446, "uniqueProducts": 6, "margin": 2310.057, "marginPct": 55.03201783851003}, {"YearMonth": "2017-10", "Category": "Omega 3 Supplements", "totalRevenue": 6499.07, "totalRevenueExVAT": 5448.9400000000005, "totalCost": 2389.289, "totalQty": 464.0, "orderCount": 421, "uniqueProducts": 6, "margin": 3059.6510000000003, "marginPct": 56.15130649263893}, {"YearMonth": "2017-10", "Category": "Probiotics", "totalRevenue": 2397.96, "totalRevenueExVAT": 2011.12, "totalCost": 940.366, "totalQty": 128.0, "orderCount": 124, "uniqueProducts": 1, "margin": 1070.754, "marginPct": 53.24167627988384}, {"YearMonth": "2017-10", "Category": "Vitamin B", "totalRevenue": 4916.9, "totalRevenueExVAT": 4104.83, "totalCost": 1351.532, "totalQty": 499.0, "orderCount": 383, "uniqueProducts": 12, "margin": 2753.298, "marginPct": 67.07459261406684}, {"YearMonth": "2017-10", "Category": "Vitamin C", "totalRevenue": 1939.28, "totalRevenueExVAT": 1624.8600000000001, "totalCost": 520.908, "totalQty": 157.0, "orderCount": 143, "uniqueProducts": 4, "margin": 1103.9520000000002, "marginPct": 67.94136110187956}, {"YearMonth": "2017-10", "Category": "Vitamin D", "totalRevenue": 2729.0699999999997, "totalRevenueExVAT": 2276.3700000000003, "totalCost": 591.3, "totalQty": 297.0, "orderCount": 241, "uniqueProducts": 1, "margin": 1685.0700000000004, "marginPct": 74.0244336377654}, {"YearMonth": "2017-10", "Category": "Vitamin E", "totalRevenue": 1128.6, "totalRevenueExVAT": 940.55, "totalCost": 561.7479999999999, "totalQty": 68.0, "orderCount": 66, "uniqueProducts": 3, "margin": 378.802, "marginPct": 40.27452022752645}, {"YearMonth": "2017-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 3970.47, "totalRevenueExVAT": 3312.77, "totalCost": 1300.202, "totalQty": 188.0, "orderCount": 177, "uniqueProducts": 1, "margin": 2012.568, "marginPct": 60.75181796502625}, {"YearMonth": "2017-11", "Category": "Amino Acids", "totalRevenue": 8903.14, "totalRevenueExVAT": 7440.09, "totalCost": 3294.6059999999998, "totalQty": 600.0, "orderCount": 523, "uniqueProducts": 7, "margin": 4145.484, "marginPct": 55.71819695729487}, {"YearMonth": "2017-11", "Category": "Bone Health", "totalRevenue": 5628.22, "totalRevenueExVAT": 4711.75, "totalCost": 1416.935, "totalQty": 653.0, "orderCount": 562, "uniqueProducts": 6, "margin": 3294.815, "marginPct": 69.92762773916273}, {"YearMonth": "2017-11", "Category": "Cod Liver Oil", "totalRevenue": 1602.52, "totalRevenueExVAT": 1337.72, "totalCost": 755.48, "totalQty": 160.0, "orderCount": 150, "uniqueProducts": 2, "margin": 582.24, "marginPct": 43.524803396824446}, {"YearMonth": "2017-11", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 4334.96, "totalRevenueExVAT": 3626.26, "totalCost": 1228.009, "totalQty": 206.0, "orderCount": 190, "uniqueProducts": 1, "margin": 2398.251, "marginPct": 66.13566043251173}, {"YearMonth": "2017-11", "Category": "Evening Primose Oils", "totalRevenue": 3427.93, "totalRevenueExVAT": 2865.85, "totalCost": 1362.155, "totalQty": 246.0, "orderCount": 226, "uniqueProducts": 3, "margin": 1503.695, "marginPct": 52.46942442905246}, {"YearMonth": "2017-11", "Category": "Glucosamine", "totalRevenue": 13952.47, "totalRevenueExVAT": 11676.45, "totalCost": 5141.467, "totalQty": 880.0, "orderCount": 728, "uniqueProducts": 10, "margin": 6534.983000000001, "marginPct": 55.96720749885454}, {"YearMonth": "2017-11", "Category": "Herbal Supplements", "totalRevenue": 43314.09, "totalRevenueExVAT": 36229.04, "totalCost": 16219.256000000001, "totalQty": 2655.0, "orderCount": 2062, "uniqueProducts": 21, "margin": 20009.784, "marginPct": 55.23133927920806}, {"YearMonth": "2017-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3676.92, "totalRevenueExVAT": 3075.8700000000003, "totalCost": 1013.412, "totalQty": 362.0, "orderCount": 280, "uniqueProducts": 1, "margin": 2062.4580000000005, "marginPct": 67.05283383237915}, {"YearMonth": "2017-11", "Category": "Minerals", "totalRevenue": 1677.1, "totalRevenueExVAT": 1400.2, "totalCost": 397.728, "totalQty": 202.0, "orderCount": 182, "uniqueProducts": 4, "margin": 1002.472, "marginPct": 71.59491501214112}, {"YearMonth": "2017-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2367.6, "totalRevenueExVAT": 1973.74, "totalCost": 525.731, "totalQty": 148.0, "orderCount": 132, "uniqueProducts": 1, "margin": 1448.009, "marginPct": 73.36371558563944}, {"YearMonth": "2017-11", "Category": "Multivitamins", "totalRevenue": 5670.58, "totalRevenueExVAT": 4752.0199999999995, "totalCost": 2147.571, "totalQty": 562.0, "orderCount": 500, "uniqueProducts": 6, "margin": 2604.4489999999996, "marginPct": 54.807197781154116}, {"YearMonth": "2017-11", "Category": "Omega 3 Supplements", "totalRevenue": 8106.44, "totalRevenueExVAT": 6781.450000000001, "totalCost": 3004.818, "totalQty": 564.0, "orderCount": 494, "uniqueProducts": 7, "margin": 3776.6320000000005, "marginPct": 55.69062663589646}, {"YearMonth": "2017-11", "Category": "Probiotics", "totalRevenue": 2967.58, "totalRevenueExVAT": 2477.58, "totalCost": 1169.463, "totalQty": 152.0, "orderCount": 148, "uniqueProducts": 1, "margin": 1308.117, "marginPct": 52.798174024653086}, {"YearMonth": "2017-11", "Category": "Vitamin B", "totalRevenue": 5449.55, "totalRevenueExVAT": 4570.7300000000005, "totalCost": 1475.8419999999999, "totalQty": 506.0, "orderCount": 424, "uniqueProducts": 12, "margin": 3094.888000000001, "marginPct": 67.71102209056322}, {"YearMonth": "2017-11", "Category": "Vitamin C", "totalRevenue": 2425.96, "totalRevenueExVAT": 2030.74, "totalCost": 657.8199999999999, "totalQty": 207.0, "orderCount": 183, "uniqueProducts": 4, "margin": 1372.92, "marginPct": 67.60688222027439}, {"YearMonth": "2017-11", "Category": "Vitamin D", "totalRevenue": 3081.91, "totalRevenueExVAT": 2576.5000000000005, "totalCost": 658.095, "totalQty": 350.0, "orderCount": 279, "uniqueProducts": 1, "margin": 1918.4050000000004, "marginPct": 74.45779157772172}, {"YearMonth": "2017-11", "Category": "Vitamin E", "totalRevenue": 1609.1, "totalRevenueExVAT": 1340.98, "totalCost": 797.299, "totalQty": 98.0, "orderCount": 88, "uniqueProducts": 3, "margin": 543.681, "marginPct": 40.543557696609945}, {"YearMonth": "2017-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 5135.54, "totalRevenueExVAT": 4309.14, "totalCost": 1809.9080000000001, "totalQty": 234.0, "orderCount": 220, "uniqueProducts": 1, "margin": 2499.232, "marginPct": 57.99839411112193}, {"YearMonth": "2017-12", "Category": "Amino Acids", "totalRevenue": 6801.69, "totalRevenueExVAT": 5698.52, "totalCost": 2566.153, "totalQty": 466.0, "orderCount": 406, "uniqueProducts": 7, "margin": 3132.3670000000006, "marginPct": 54.96807943115055}, {"YearMonth": "2017-12", "Category": "Bone Health", "totalRevenue": 3084.2999999999997, "totalRevenueExVAT": 2574.51, "totalCost": 752.6940000000001, "totalQty": 353.0, "orderCount": 298, "uniqueProducts": 5, "margin": 1821.8160000000003, "marginPct": 70.76360161739515}, {"YearMonth": "2017-12", "Category": "Cod Liver Oil", "totalRevenue": 1289.76, "totalRevenueExVAT": 1075.73, "totalCost": 718.0799999999999, "totalQty": 131.0, "orderCount": 122, "uniqueProducts": 2, "margin": 357.6500000000001, "marginPct": 33.24719028008888}, {"YearMonth": "2017-12", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2934.48, "totalRevenueExVAT": 2460.29, "totalCost": 808.775, "totalQty": 144.0, "orderCount": 135, "uniqueProducts": 1, "margin": 1651.5149999999999, "marginPct": 67.12684277056769}, {"YearMonth": "2017-12", "Category": "Evening Primose Oils", "totalRevenue": 2447.8, "totalRevenueExVAT": 2043.6200000000001, "totalCost": 976.5930000000001, "totalQty": 173.0, "orderCount": 159, "uniqueProducts": 3, "margin": 1067.027, "marginPct": 52.212593339270505}, {"YearMonth": "2017-12", "Category": "Glucosamine", "totalRevenue": 8450.57, "totalRevenueExVAT": 7065.650000000001, "totalCost": 3132.435, "totalQty": 541.0, "orderCount": 449, "uniqueProducts": 10, "margin": 3933.2150000000006, "marginPct": 55.66671148443526}, {"YearMonth": "2017-12", "Category": "Herbal Supplements", "totalRevenue": 29987.0, "totalRevenueExVAT": 25026.350000000002, "totalCost": 11459.219000000001, "totalQty": 1847.0, "orderCount": 1464, "uniqueProducts": 20, "margin": 13567.131000000001, "marginPct": 54.2113851999992}, {"YearMonth": "2017-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2515.74, "totalRevenueExVAT": 2102.02, "totalCost": 684.456, "totalQty": 241.0, "orderCount": 194, "uniqueProducts": 1, "margin": 1417.5639999999999, "marginPct": 67.43817851400081}, {"YearMonth": "2017-12", "Category": "Minerals", "totalRevenue": 868.22, "totalRevenueExVAT": 725.48, "totalCost": 210.852, "totalQty": 112.0, "orderCount": 98, "uniqueProducts": 4, "margin": 514.628, "marginPct": 70.93620775210894}, {"YearMonth": "2017-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2444.2, "totalRevenueExVAT": 2049.8, "totalCost": 571.2560000000001, "totalQty": 148.0, "orderCount": 119, "uniqueProducts": 1, "margin": 1478.544, "marginPct": 72.13113474485316}, {"YearMonth": "2017-12", "Category": "Multivitamins", "totalRevenue": 3608.83, "totalRevenueExVAT": 3016.49, "totalCost": 1393.429, "totalQty": 378.0, "orderCount": 335, "uniqueProducts": 6, "margin": 1623.0609999999997, "marginPct": 53.80627815772636}, {"YearMonth": "2017-12", "Category": "Omega 3 Supplements", "totalRevenue": 5128.099999999999, "totalRevenueExVAT": 4275.1900000000005, "totalCost": 1922.248, "totalQty": 349.0, "orderCount": 306, "uniqueProducts": 6, "margin": 2352.9420000000005, "marginPct": 55.03713285257498}, {"YearMonth": "2017-12", "Category": "Probiotics", "totalRevenue": 1800.16, "totalRevenueExVAT": 1504.46, "totalCost": 735.7520000000001, "totalQty": 98.0, "orderCount": 96, "uniqueProducts": 1, "margin": 768.708, "marginPct": 51.09527671058054}, {"YearMonth": "2017-12", "Category": "Vitamin B", "totalRevenue": 3978.7999999999997, "totalRevenueExVAT": 3321.23, "totalCost": 1087.963, "totalQty": 344.0, "orderCount": 296, "uniqueProducts": 12, "margin": 2233.267, "marginPct": 67.24216630585656}, {"YearMonth": "2017-12", "Category": "Vitamin C", "totalRevenue": 1500.08, "totalRevenueExVAT": 1253.45, "totalCost": 417.067, "totalQty": 138.0, "orderCount": 115, "uniqueProducts": 4, "margin": 836.383, "marginPct": 66.72647492919542}, {"YearMonth": "2017-12", "Category": "Vitamin D", "totalRevenue": 2475.1, "totalRevenueExVAT": 2080.02, "totalCost": 547.5, "totalQty": 280.0, "orderCount": 228, "uniqueProducts": 1, "margin": 1532.52, "marginPct": 73.67813771021432}, {"YearMonth": "2017-12", "Category": "Vitamin E", "totalRevenue": 666.13, "totalRevenueExVAT": 555.14, "totalCost": 336.30199999999996, "totalQty": 39.0, "orderCount": 34, "uniqueProducts": 3, "margin": 218.83800000000002, "marginPct": 39.42032640415031}, {"YearMonth": "2017-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 3113.5, "totalRevenueExVAT": 2597.66, "totalCost": 1072.194, "totalQty": 152.0, "orderCount": 148, "uniqueProducts": 1, "margin": 1525.466, "marginPct": 58.724621390020246}, {"YearMonth": "2018-01", "Category": "Amino Acids", "totalRevenue": 12311.47, "totalRevenueExVAT": 10324.04, "totalCost": 4649.76, "totalQty": 855.0, "orderCount": 701, "uniqueProducts": 7, "margin": 5674.280000000001, "marginPct": 54.96181727308303}, {"YearMonth": "2018-01", "Category": "Bone Health", "totalRevenue": 8561.79, "totalRevenueExVAT": 7167.95, "totalCost": 2272.678, "totalQty": 951.0, "orderCount": 782, "uniqueProducts": 6, "margin": 4895.272, "marginPct": 68.2938915589534}, {"YearMonth": "2018-01", "Category": "Cod Liver Oil", "totalRevenue": 2969.15, "totalRevenueExVAT": 2479.7, "totalCost": 1845.299, "totalQty": 308.0, "orderCount": 286, "uniqueProducts": 2, "margin": 634.4009999999998, "marginPct": 25.583780296003546}, {"YearMonth": "2018-01", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 6045.45, "totalRevenueExVAT": 5046.59, "totalCost": 1720.482, "totalQty": 274.0, "orderCount": 244, "uniqueProducts": 1, "margin": 3326.108, "marginPct": 65.9080289859093}, {"YearMonth": "2018-01", "Category": "Evening Primose Oils", "totalRevenue": 5847.51, "totalRevenueExVAT": 4884.88, "totalCost": 2440.27, "totalQty": 400.0, "orderCount": 379, "uniqueProducts": 3, "margin": 2444.61, "marginPct": 50.044422790324425}, {"YearMonth": "2018-01", "Category": "Glucosamine", "totalRevenue": 18958.86, "totalRevenueExVAT": 15873.51, "totalCost": 7385.449, "totalQty": 1275.0, "orderCount": 1031, "uniqueProducts": 10, "margin": 8488.061000000002, "marginPct": 53.47311968178432}, {"YearMonth": "2018-01", "Category": "Herbal Supplements", "totalRevenue": 86109.07, "totalRevenueExVAT": 71881.86, "totalCost": 33179.173, "totalQty": 5180.0, "orderCount": 3913, "uniqueProducts": 21, "margin": 38702.687, "marginPct": 53.84207782046819}, {"YearMonth": "2018-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 5774.84, "totalRevenueExVAT": 4835.72, "totalCost": 1346.8709999999999, "totalQty": 476.0, "orderCount": 375, "uniqueProducts": 1, "margin": 3488.849, "marginPct": 72.14745684200078}, {"YearMonth": "2018-01", "Category": "Minerals", "totalRevenue": 2360.02, "totalRevenueExVAT": 1974.7, "totalCost": 627.255, "totalQty": 314.0, "orderCount": 271, "uniqueProducts": 4, "margin": 1347.4450000000002, "marginPct": 68.23542816630375}, {"YearMonth": "2018-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 4077.7300000000005, "totalRevenueExVAT": 3398.85, "totalCost": 1056.9840000000002, "totalQty": 273.0, "orderCount": 210, "uniqueProducts": 1, "margin": 2341.866, "marginPct": 68.90171675713844}, {"YearMonth": "2018-01", "Category": "Multivitamins", "totalRevenue": 8773.58, "totalRevenueExVAT": 7339.84, "totalCost": 3561.7090000000003, "totalQty": 878.0, "orderCount": 763, "uniqueProducts": 6, "margin": 3778.131, "marginPct": 51.47429644242926}, {"YearMonth": "2018-01", "Category": "Omega 3 Supplements", "totalRevenue": 11105.630000000001, "totalRevenueExVAT": 9295.81, "totalCost": 4190.807, "totalQty": 796.0, "orderCount": 693, "uniqueProducts": 6, "margin": 5105.003, "marginPct": 54.91724766319449}, {"YearMonth": "2018-01", "Category": "Probiotics", "totalRevenue": 4377.09, "totalRevenueExVAT": 3653.6400000000003, "totalCost": 1928.414, "totalQty": 234.0, "orderCount": 219, "uniqueProducts": 1, "margin": 1725.2260000000003, "marginPct": 47.21937574583156}, {"YearMonth": "2018-01", "Category": "Vitamin B", "totalRevenue": 7771.07, "totalRevenueExVAT": 6498.81, "totalCost": 2240.554, "totalQty": 760.0, "orderCount": 644, "uniqueProducts": 12, "margin": 4258.256, "marginPct": 65.52362663318362}, {"YearMonth": "2018-01", "Category": "Vitamin C", "totalRevenue": 3566.92, "totalRevenueExVAT": 2990.39, "totalCost": 1099.8899999999999, "totalQty": 327.0, "orderCount": 261, "uniqueProducts": 4, "margin": 1890.5, "marginPct": 63.2191787693244}, {"YearMonth": "2018-01", "Category": "Vitamin D", "totalRevenue": 5158.21, "totalRevenueExVAT": 4317.6, "totalCost": 1165.08, "totalQty": 623.0, "orderCount": 496, "uniqueProducts": 1, "margin": 3152.5200000000004, "marginPct": 73.01556420233464}, {"YearMonth": "2018-01", "Category": "Vitamin E", "totalRevenue": 2479.84, "totalRevenueExVAT": 2077.96, "totalCost": 1350.215, "totalQty": 165.0, "orderCount": 149, "uniqueProducts": 3, "margin": 727.7450000000001, "marginPct": 35.02208897187627}, {"YearMonth": "2018-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 6644.65, "totalRevenueExVAT": 5552.07, "totalCost": 2325.982, "totalQty": 306.0, "orderCount": 298, "uniqueProducts": 1, "margin": 3226.0879999999997, "marginPct": 58.10603972932618}, {"YearMonth": "2018-02", "Category": "Amino Acids", "totalRevenue": 6089.56, "totalRevenueExVAT": 5089.66, "totalCost": 2268.266, "totalQty": 425.0, "orderCount": 355, "uniqueProducts": 7, "margin": 2821.394, "marginPct": 55.43384037440615}, {"YearMonth": "2018-02", "Category": "Bone Health", "totalRevenue": 4694.1900000000005, "totalRevenueExVAT": 3935.89, "totalCost": 1284.13, "totalQty": 525.0, "orderCount": 426, "uniqueProducts": 6, "margin": 2651.7599999999998, "marginPct": 67.37383412646186}, {"YearMonth": "2018-02", "Category": "Cod Liver Oil", "totalRevenue": 1349.41, "totalRevenueExVAT": 1126.6399999999999, "totalCost": 778.702, "totalQty": 149.0, "orderCount": 137, "uniqueProducts": 2, "margin": 347.9379999999999, "marginPct": 30.88280195980969}, {"YearMonth": "2018-02", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3372.86, "totalRevenueExVAT": 2813.3500000000004, "totalCost": 968.684, "totalQty": 151.0, "orderCount": 129, "uniqueProducts": 1, "margin": 1844.6660000000004, "marginPct": 65.56830824461942}, {"YearMonth": "2018-02", "Category": "Evening Primose Oils", "totalRevenue": 3022.98, "totalRevenueExVAT": 2526.12, "totalCost": 1245.491, "totalQty": 228.0, "orderCount": 205, "uniqueProducts": 3, "margin": 1280.629, "marginPct": 50.69549348407835}, {"YearMonth": "2018-02", "Category": "Glucosamine", "totalRevenue": 9801.94, "totalRevenueExVAT": 8183.75, "totalCost": 3831.961, "totalQty": 692.0, "orderCount": 570, "uniqueProducts": 10, "margin": 4351.789000000001, "marginPct": 53.175976783259514}, {"YearMonth": "2018-02", "Category": "Herbal Supplements", "totalRevenue": 42533.6, "totalRevenueExVAT": 35499.53, "totalCost": 16583.844, "totalQty": 2734.0, "orderCount": 2109, "uniqueProducts": 21, "margin": 18915.685999999998, "marginPct": 53.2843279896945}, {"YearMonth": "2018-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2037.18, "totalRevenueExVAT": 1698.26, "totalCost": 479.688, "totalQty": 183.0, "orderCount": 164, "uniqueProducts": 1, "margin": 1218.5720000000001, "marginPct": 71.75414836361924}, {"YearMonth": "2018-02", "Category": "Minerals", "totalRevenue": 1104.45, "totalRevenueExVAT": 920.78, "totalCost": 288.003, "totalQty": 150.0, "orderCount": 137, "uniqueProducts": 4, "margin": 632.777, "marginPct": 68.72184452312172}, {"YearMonth": "2018-02", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1735.3600000000001, "totalRevenueExVAT": 1452.96, "totalCost": 451.31300000000005, "totalQty": 115.0, "orderCount": 93, "uniqueProducts": 1, "margin": 1001.6469999999999, "marginPct": 68.93837407774474}, {"YearMonth": "2018-02", "Category": "Multivitamins", "totalRevenue": 4917.71, "totalRevenueExVAT": 4109.77, "totalCost": 1987.1100000000001, "totalQty": 518.0, "orderCount": 463, "uniqueProducts": 6, "margin": 2122.6600000000003, "marginPct": 51.64911905045781}, {"YearMonth": "2018-02", "Category": "Omega 3 Supplements", "totalRevenue": 5667.01, "totalRevenueExVAT": 4737.38, "totalCost": 2010.742, "totalQty": 416.0, "orderCount": 365, "uniqueProducts": 6, "margin": 2726.638, "marginPct": 57.55582199443574}, {"YearMonth": "2018-02", "Category": "Probiotics", "totalRevenue": 2241.9900000000002, "totalRevenueExVAT": 1869.0900000000001, "totalCost": 976.9390000000001, "totalQty": 129.0, "orderCount": 124, "uniqueProducts": 1, "margin": 892.1510000000001, "marginPct": 47.73183741820886}, {"YearMonth": "2018-02", "Category": "Vitamin B", "totalRevenue": 4516.48, "totalRevenueExVAT": 3769.25, "totalCost": 1316.283, "totalQty": 442.0, "orderCount": 369, "uniqueProducts": 11, "margin": 2452.967, "marginPct": 65.0783842939577}, {"YearMonth": "2018-02", "Category": "Vitamin C", "totalRevenue": 1702.39, "totalRevenueExVAT": 1425.82, "totalCost": 526.268, "totalQty": 155.0, "orderCount": 135, "uniqueProducts": 4, "margin": 899.5519999999999, "marginPct": 63.09015163204331}, {"YearMonth": "2018-02", "Category": "Vitamin D", "totalRevenue": 2453.14, "totalRevenueExVAT": 2054.04, "totalCost": 552.975, "totalQty": 298.0, "orderCount": 245, "uniqueProducts": 1, "margin": 1501.065, "marginPct": 73.07866448559912}, {"YearMonth": "2018-02", "Category": "Vitamin E", "totalRevenue": 1551.74, "totalRevenueExVAT": 1300.09, "totalCost": 854.6009999999999, "totalQty": 102.0, "orderCount": 87, "uniqueProducts": 3, "margin": 445.48900000000003, "marginPct": 34.26601235299095}, {"YearMonth": "2018-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 2836.7, "totalRevenueExVAT": 2375.49, "totalCost": 974.974, "totalQty": 142.0, "orderCount": 134, "uniqueProducts": 1, "margin": 1400.5159999999996, "marginPct": 58.95693099107972}, {"YearMonth": "2018-03", "Category": "Amino Acids", "totalRevenue": 7211.53, "totalRevenueExVAT": 6026.240000000001, "totalCost": 2682.2619999999997, "totalQty": 511.0, "orderCount": 440, "uniqueProducts": 7, "margin": 3343.978000000001, "marginPct": 55.490289135514026}, {"YearMonth": "2018-03", "Category": "Bone Health", "totalRevenue": 5404.45, "totalRevenueExVAT": 4523.75, "totalCost": 1433.201, "totalQty": 599.0, "orderCount": 506, "uniqueProducts": 6, "margin": 3090.549, "marginPct": 68.31829787234042}, {"YearMonth": "2018-03", "Category": "Cod Liver Oil", "totalRevenue": 1762.15, "totalRevenueExVAT": 1470.31, "totalCost": 996.6419999999999, "totalQty": 200.0, "orderCount": 187, "uniqueProducts": 2, "margin": 473.668, "marginPct": 32.21551917622815}, {"YearMonth": "2018-03", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 5480.7300000000005, "totalRevenueExVAT": 4579.7300000000005, "totalCost": 1516.993, "totalQty": 261.0, "orderCount": 192, "uniqueProducts": 1, "margin": 3062.7370000000005, "marginPct": 66.87592936701509}, {"YearMonth": "2018-03", "Category": "Evening Primose Oils", "totalRevenue": 3621.02, "totalRevenueExVAT": 3024.02, "totalCost": 1502.38, "totalQty": 264.0, "orderCount": 246, "uniqueProducts": 3, "margin": 1521.6399999999999, "marginPct": 50.318450274799766}, {"YearMonth": "2018-03", "Category": "Glucosamine", "totalRevenue": 9070.1, "totalRevenueExVAT": 7567.18, "totalCost": 3502.527, "totalQty": 630.0, "orderCount": 524, "uniqueProducts": 10, "margin": 4064.6530000000002, "marginPct": 53.714237007709606}, {"YearMonth": "2018-03", "Category": "Herbal Supplements", "totalRevenue": 50606.35, "totalRevenueExVAT": 42240.71, "totalCost": 19687.255, "totalQty": 3197.0, "orderCount": 2492, "uniqueProducts": 21, "margin": 22553.454999999998, "marginPct": 53.39269865492318}, {"YearMonth": "2018-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3070.5800000000004, "totalRevenueExVAT": 2563.42, "totalCost": 717.636, "totalQty": 261.0, "orderCount": 208, "uniqueProducts": 1, "margin": 1845.784, "marginPct": 72.00474366276303}, {"YearMonth": "2018-03", "Category": "Minerals", "totalRevenue": 1513.2, "totalRevenueExVAT": 1264.71, "totalCost": 395.886, "totalQty": 203.0, "orderCount": 177, "uniqueProducts": 4, "margin": 868.8240000000001, "marginPct": 68.69748796166711}, {"YearMonth": "2018-03", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1912.44, "totalRevenueExVAT": 1593.45, "totalCost": 495.85200000000003, "totalQty": 129.0, "orderCount": 109, "uniqueProducts": 1, "margin": 1097.598, "marginPct": 68.88186011484514}, {"YearMonth": "2018-03", "Category": "Multivitamins", "totalRevenue": 4461.39, "totalRevenueExVAT": 3721.53, "totalCost": 1805.336, "totalQty": 468.0, "orderCount": 430, "uniqueProducts": 6, "margin": 1916.1940000000002, "marginPct": 51.48941430003252}, {"YearMonth": "2018-03", "Category": "Omega 3 Supplements", "totalRevenue": 7617.39, "totalRevenueExVAT": 6371.43, "totalCost": 2893.043, "totalQty": 546.0, "orderCount": 477, "uniqueProducts": 6, "margin": 3478.387, "marginPct": 54.59350569652338}, {"YearMonth": "2018-03", "Category": "Probiotics", "totalRevenue": 2167.84, "totalRevenueExVAT": 1805.74, "totalCost": 956.474, "totalQty": 119.0, "orderCount": 116, "uniqueProducts": 1, "margin": 849.266, "marginPct": 47.03146632405551}, {"YearMonth": "2018-03", "Category": "Vitamin B", "totalRevenue": 5132.57, "totalRevenueExVAT": 4284.14, "totalCost": 1546.201, "totalQty": 514.0, "orderCount": 434, "uniqueProducts": 12, "margin": 2737.9390000000003, "marginPct": 63.90871913616268}, {"YearMonth": "2018-03", "Category": "Vitamin C", "totalRevenue": 1906.22, "totalRevenueExVAT": 1592.4, "totalCost": 573.572, "totalQty": 182.0, "orderCount": 149, "uniqueProducts": 4, "margin": 1018.8280000000001, "marginPct": 63.98065812609898}, {"YearMonth": "2018-03", "Category": "Vitamin D", "totalRevenue": 3549.02, "totalRevenueExVAT": 2962.12, "totalCost": 800.4449999999999, "totalQty": 426.0, "orderCount": 356, "uniqueProducts": 1, "margin": 2161.675, "marginPct": 72.97729328994099}, {"YearMonth": "2018-03", "Category": "Vitamin E", "totalRevenue": 1756.3600000000001, "totalRevenueExVAT": 1469.33, "totalCost": 981.377, "totalQty": 109.0, "orderCount": 99, "uniqueProducts": 3, "margin": 487.953, "marginPct": 33.20921780675546}, {"YearMonth": "2018-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 3074.63, "totalRevenueExVAT": 2570.7, "totalCost": 1047.856, "totalQty": 160.0, "orderCount": 157, "uniqueProducts": 1, "margin": 1522.8439999999998, "marginPct": 59.238495351460685}, {"YearMonth": "2018-04", "Category": "Amino Acids", "totalRevenue": 7812.03, "totalRevenueExVAT": 6539.02, "totalCost": 2714.8289999999997, "totalQty": 523.0, "orderCount": 453, "uniqueProducts": 6, "margin": 3824.1910000000007, "marginPct": 58.4826319540237}, {"YearMonth": "2018-04", "Category": "Bone Health", "totalRevenue": 5386.9, "totalRevenueExVAT": 4500.99, "totalCost": 1414.6200000000001, "totalQty": 567.0, "orderCount": 487, "uniqueProducts": 6, "margin": 3086.37, "marginPct": 68.57091439883226}, {"YearMonth": "2018-04", "Category": "Cod Liver Oil", "totalRevenue": 1906.9599999999998, "totalRevenueExVAT": 1589.39, "totalCost": 954.1419999999999, "totalQty": 181.0, "orderCount": 166, "uniqueProducts": 2, "margin": 635.2480000000002, "marginPct": 39.968038052334556}, {"YearMonth": "2018-04", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 4048.23, "totalRevenueExVAT": 3378.75, "totalCost": 1070.475, "totalQty": 178.0, "orderCount": 167, "uniqueProducts": 1, "margin": 2308.275, "marginPct": 68.31742508324085}, {"YearMonth": "2018-04", "Category": "Evening Primose Oils", "totalRevenue": 3464.61, "totalRevenueExVAT": 2891.55, "totalCost": 1308.029, "totalQty": 248.0, "orderCount": 231, "uniqueProducts": 3, "margin": 1583.5210000000002, "marginPct": 54.763742629385625}, {"YearMonth": "2018-04", "Category": "Glucosamine", "totalRevenue": 11948.7, "totalRevenueExVAT": 10014.56, "totalCost": 4333.081, "totalQty": 747.0, "orderCount": 629, "uniqueProducts": 10, "margin": 5681.478999999999, "marginPct": 56.73218793436756}, {"YearMonth": "2018-04", "Category": "Herbal Supplements", "totalRevenue": 45811.23, "totalRevenueExVAT": 38239.68, "totalCost": 18344.018, "totalQty": 2983.0, "orderCount": 2346, "uniqueProducts": 20, "margin": 19895.662, "marginPct": 52.028840199499584}, {"YearMonth": "2018-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2863.06, "totalRevenueExVAT": 2391.21, "totalCost": 614.067, "totalQty": 267.0, "orderCount": 200, "uniqueProducts": 1, "margin": 1777.143, "marginPct": 74.31982134567855}, {"YearMonth": "2018-04", "Category": "Minerals", "totalRevenue": 1426.36, "totalRevenueExVAT": 1194.98, "totalCost": 335.332, "totalQty": 178.0, "orderCount": 162, "uniqueProducts": 4, "margin": 859.648, "marginPct": 71.93827511757519}, {"YearMonth": "2018-04", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1575.38, "totalRevenueExVAT": 1316.02, "totalCost": 388.163, "totalQty": 103.0, "orderCount": 90, "uniqueProducts": 1, "margin": 927.857, "marginPct": 70.50477956262063}, {"YearMonth": "2018-04", "Category": "Multivitamins", "totalRevenue": 5582.48, "totalRevenueExVAT": 4669.4, "totalCost": 2085.904, "totalQty": 575.0, "orderCount": 524, "uniqueProducts": 6, "margin": 2583.4959999999996, "marginPct": 55.32822204137576}, {"YearMonth": "2018-04", "Category": "Omega 3 Supplements", "totalRevenue": 7483.32, "totalRevenueExVAT": 6251.55, "totalCost": 2661.172, "totalQty": 518.0, "orderCount": 461, "uniqueProducts": 6, "margin": 3590.378, "marginPct": 57.431804912381736}, {"YearMonth": "2018-04", "Category": "Probiotics", "totalRevenue": 2491.7599999999998, "totalRevenueExVAT": 2094.93, "totalCost": 995.918, "totalQty": 131.0, "orderCount": 125, "uniqueProducts": 1, "margin": 1099.0119999999997, "marginPct": 52.46055954136891}, {"YearMonth": "2018-04", "Category": "Vitamin B", "totalRevenue": 5328.599999999999, "totalRevenueExVAT": 4450.22, "totalCost": 1420.779, "totalQty": 502.0, "orderCount": 416, "uniqueProducts": 12, "margin": 3029.4410000000003, "marginPct": 68.07396038847517}, {"YearMonth": "2018-04", "Category": "Vitamin C", "totalRevenue": 2226.63, "totalRevenueExVAT": 1865.66, "totalCost": 607.175, "totalQty": 183.0, "orderCount": 163, "uniqueProducts": 4, "margin": 1258.4850000000001, "marginPct": 67.45521692055358}, {"YearMonth": "2018-04", "Category": "Vitamin D", "totalRevenue": 2893.96, "totalRevenueExVAT": 2417.76, "totalCost": 620.865, "totalQty": 326.0, "orderCount": 280, "uniqueProducts": 1, "margin": 1796.8950000000002, "marginPct": 74.32065217391305}, {"YearMonth": "2018-04", "Category": "Vitamin E", "totalRevenue": 1313.1299999999999, "totalRevenueExVAT": 1096.82, "totalCost": 655.805, "totalQty": 78.0, "orderCount": 74, "uniqueProducts": 3, "margin": 441.015, "marginPct": 40.20851187979797}, {"YearMonth": "2018-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 4300.33, "totalRevenueExVAT": 3595.5, "totalCost": 1329.532, "totalQty": 192.0, "orderCount": 182, "uniqueProducts": 1, "margin": 2265.968, "marginPct": 63.02233347239604}, {"YearMonth": "2018-05", "Category": "Amino Acids", "totalRevenue": 7326.19, "totalRevenueExVAT": 6132.66, "totalCost": 2554.4649999999997, "totalQty": 472.0, "orderCount": 405, "uniqueProducts": 6, "margin": 3578.195, "marginPct": 58.34654130507806}, {"YearMonth": "2018-05", "Category": "Bone Health", "totalRevenue": 5003.9, "totalRevenueExVAT": 4177.94, "totalCost": 1373.211, "totalQty": 508.0, "orderCount": 440, "uniqueProducts": 5, "margin": 2804.7289999999994, "marginPct": 67.13186402868399}, {"YearMonth": "2018-05", "Category": "Cod Liver Oil", "totalRevenue": 1432.1, "totalRevenueExVAT": 1193.6299999999999, "totalCost": 688.5169999999999, "totalQty": 138.0, "orderCount": 134, "uniqueProducts": 2, "margin": 505.11299999999994, "marginPct": 42.31738478422962}, {"YearMonth": "2018-05", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3887.08, "totalRevenueExVAT": 3239.83, "totalCost": 1022.728, "totalQty": 173.0, "orderCount": 158, "uniqueProducts": 1, "margin": 2217.102, "marginPct": 68.43266467685034}, {"YearMonth": "2018-05", "Category": "Evening Primose Oils", "totalRevenue": 2567.14, "totalRevenueExVAT": 2151.36, "totalCost": 1017.014, "totalQty": 188.0, "orderCount": 173, "uniqueProducts": 3, "margin": 1134.346, "marginPct": 52.726926223412164}, {"YearMonth": "2018-05", "Category": "Glucosamine", "totalRevenue": 11412.51, "totalRevenueExVAT": 9522.53, "totalCost": 4112.23, "totalQty": 723.0, "orderCount": 620, "uniqueProducts": 10, "margin": 5410.300000000001, "marginPct": 56.81578320047299}, {"YearMonth": "2018-05", "Category": "Herbal Supplements", "totalRevenue": 46480.91, "totalRevenueExVAT": 38833.02, "totalCost": 19078.277000000002, "totalQty": 2963.0, "orderCount": 2315, "uniqueProducts": 20, "margin": 19754.742999999995, "marginPct": 50.87099329385146}, {"YearMonth": "2018-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1814.45, "totalRevenueExVAT": 1517.75, "totalCost": 374.46, "totalQty": 135.0, "orderCount": 115, "uniqueProducts": 1, "margin": 1143.29, "marginPct": 75.32795256135726}, {"YearMonth": "2018-05", "Category": "Minerals", "totalRevenue": 1347.04, "totalRevenueExVAT": 1124.22, "totalCost": 320.45, "totalQty": 166.0, "orderCount": 148, "uniqueProducts": 4, "margin": 803.77, "marginPct": 71.49579263845155}, {"YearMonth": "2018-05", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2108.0, "totalRevenueExVAT": 1755.8000000000002, "totalCost": 514.772, "totalQty": 130.0, "orderCount": 109, "uniqueProducts": 1, "margin": 1241.0280000000002, "marginPct": 70.68162660895318}, {"YearMonth": "2018-05", "Category": "Multivitamins", "totalRevenue": 4842.67, "totalRevenueExVAT": 4044.7799999999997, "totalCost": 1798.5810000000001, "totalQty": 450.0, "orderCount": 409, "uniqueProducts": 5, "margin": 2246.1989999999996, "marginPct": 55.53327993117054}, {"YearMonth": "2018-05", "Category": "Omega 3 Supplements", "totalRevenue": 6341.53, "totalRevenueExVAT": 5304.75, "totalCost": 2333.515, "totalQty": 454.0, "orderCount": 403, "uniqueProducts": 6, "margin": 2971.235, "marginPct": 56.01083934209906}, {"YearMonth": "2018-05", "Category": "Probiotics", "totalRevenue": 2499.8, "totalRevenueExVAT": 2082.96, "totalCost": 990.717, "totalQty": 124.0, "orderCount": 120, "uniqueProducts": 1, "margin": 1092.243, "marginPct": 52.43706072128125}, {"YearMonth": "2018-05", "Category": "Vitamin B", "totalRevenue": 4695.46, "totalRevenueExVAT": 3922.68, "totalCost": 1284.213, "totalQty": 415.0, "orderCount": 366, "uniqueProducts": 12, "margin": 2638.4669999999996, "marginPct": 67.26184649270395}, {"YearMonth": "2018-05", "Category": "Vitamin C", "totalRevenue": 1706.58, "totalRevenueExVAT": 1424.2, "totalCost": 443.58599999999996, "totalQty": 142.0, "orderCount": 127, "uniqueProducts": 4, "margin": 980.614, "marginPct": 68.85367223704536}, {"YearMonth": "2018-05", "Category": "Vitamin D", "totalRevenue": 2583.14, "totalRevenueExVAT": 2150.69, "totalCost": 551.88, "totalQty": 289.0, "orderCount": 243, "uniqueProducts": 1, "margin": 1598.81, "marginPct": 74.3393980536479}, {"YearMonth": "2018-05", "Category": "Vitamin E", "totalRevenue": 1314.2, "totalRevenueExVAT": 1095.25, "totalCost": 642.9789999999999, "totalQty": 76.0, "orderCount": 69, "uniqueProducts": 3, "margin": 452.2710000000001, "marginPct": 41.29385984934947}, {"YearMonth": "2018-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 3548.63, "totalRevenueExVAT": 2963.25, "totalCost": 1088.634, "totalQty": 161.0, "orderCount": 152, "uniqueProducts": 1, "margin": 1874.616, "marginPct": 63.262161478106805}, {"YearMonth": "2018-06", "Category": "Amino Acids", "totalRevenue": 6842.14, "totalRevenueExVAT": 5729.17, "totalCost": 2379.372, "totalQty": 443.0, "orderCount": 384, "uniqueProducts": 6, "margin": 3349.7980000000002, "marginPct": 58.46916743612077}, {"YearMonth": "2018-06", "Category": "Bone Health", "totalRevenue": 5003.9, "totalRevenueExVAT": 4180.63, "totalCost": 1292.308, "totalQty": 508.0, "orderCount": 428, "uniqueProducts": 5, "margin": 2888.322, "marginPct": 69.08819962541531}, {"YearMonth": "2018-06", "Category": "Cod Liver Oil", "totalRevenue": 1423.71, "totalRevenueExVAT": 1191.31, "totalCost": 462.48499999999996, "totalQty": 147.0, "orderCount": 140, "uniqueProducts": 2, "margin": 728.825, "marginPct": 61.17845061319053}, {"YearMonth": "2018-06", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3518.05, "totalRevenueExVAT": 2953.7000000000003, "totalCost": 874.145, "totalQty": 163.0, "orderCount": 153, "uniqueProducts": 1, "margin": 2079.5550000000003, "marginPct": 70.4050851474422}, {"YearMonth": "2018-06", "Category": "Evening Primose Oils", "totalRevenue": 3743.13, "totalRevenueExVAT": 3124.25, "totalCost": 1420.877, "totalQty": 266.0, "orderCount": 239, "uniqueProducts": 3, "margin": 1703.373, "marginPct": 54.52102104505081}, {"YearMonth": "2018-06", "Category": "Glucosamine", "totalRevenue": 10030.66, "totalRevenueExVAT": 8376.51, "totalCost": 3504.887, "totalQty": 621.0, "orderCount": 529, "uniqueProducts": 10, "margin": 4871.623, "marginPct": 58.158147008718416}, {"YearMonth": "2018-06", "Category": "Herbal Supplements", "totalRevenue": 41732.35, "totalRevenueExVAT": 34864.62, "totalCost": 16394.939000000002, "totalQty": 2607.0, "orderCount": 2109, "uniqueProducts": 21, "margin": 18469.681, "marginPct": 52.97542609097704}, {"YearMonth": "2018-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2775.7999999999997, "totalRevenueExVAT": 2322.7200000000003, "totalCost": 536.805, "totalQty": 200.0, "orderCount": 170, "uniqueProducts": 1, "margin": 1785.9150000000004, "marginPct": 76.88894916305023}, {"YearMonth": "2018-06", "Category": "Minerals", "totalRevenue": 1225.42, "totalRevenueExVAT": 1027.94, "totalCost": 290.999, "totalQty": 148.0, "orderCount": 127, "uniqueProducts": 4, "margin": 736.941, "marginPct": 71.69105200692647}, {"YearMonth": "2018-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1757.53, "totalRevenueExVAT": 1464.5, "totalCost": 407.48400000000004, "totalQty": 102.0, "orderCount": 90, "uniqueProducts": 1, "margin": 1057.016, "marginPct": 72.17589621031068}, {"YearMonth": "2018-06", "Category": "Multivitamins", "totalRevenue": 4951.889999999999, "totalRevenueExVAT": 4143.16, "totalCost": 1820.631, "totalQty": 496.0, "orderCount": 452, "uniqueProducts": 6, "margin": 2322.5289999999995, "marginPct": 56.05694687147008}, {"YearMonth": "2018-06", "Category": "Omega 3 Supplements", "totalRevenue": 6058.04, "totalRevenueExVAT": 5066.85, "totalCost": 2201.541, "totalQty": 448.0, "orderCount": 402, "uniqueProducts": 6, "margin": 2865.309, "marginPct": 56.55010509488143}, {"YearMonth": "2018-06", "Category": "Probiotics", "totalRevenue": 2271.3199999999997, "totalRevenueExVAT": 1899.82, "totalCost": 823.859, "totalQty": 124.0, "orderCount": 116, "uniqueProducts": 1, "margin": 1075.9609999999998, "marginPct": 56.63489172658461}, {"YearMonth": "2018-06", "Category": "Vitamin B", "totalRevenue": 5743.71, "totalRevenueExVAT": 4798.18, "totalCost": 1576.344, "totalQty": 534.0, "orderCount": 407, "uniqueProducts": 12, "margin": 3221.8360000000002, "marginPct": 67.14704325390043}, {"YearMonth": "2018-06", "Category": "Vitamin C", "totalRevenue": 1260.3999999999999, "totalRevenueExVAT": 1062.25, "totalCost": 336.976, "totalQty": 112.0, "orderCount": 97, "uniqueProducts": 4, "margin": 725.274, "marginPct": 68.27714756413273}, {"YearMonth": "2018-06", "Category": "Vitamin D", "totalRevenue": 2151.3399999999997, "totalRevenueExVAT": 1794.17, "totalCost": 424.86, "totalQty": 228.0, "orderCount": 190, "uniqueProducts": 1, "margin": 1369.31, "marginPct": 76.31996967957328}, {"YearMonth": "2018-06", "Category": "Vitamin E", "totalRevenue": 1371.23, "totalRevenueExVAT": 1150.28, "totalCost": 675.015, "totalQty": 76.0, "orderCount": 73, "uniqueProducts": 3, "margin": 475.265, "marginPct": 41.317331432346904}, {"YearMonth": "2018-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 3696.21, "totalRevenueExVAT": 3090.58, "totalCost": 1112.218, "totalQty": 163.0, "orderCount": 148, "uniqueProducts": 1, "margin": 1978.3619999999999, "marginPct": 64.01264487571912}, {"YearMonth": "2018-07", "Category": "Amino Acids", "totalRevenue": 6525.6, "totalRevenueExVAT": 5467.25, "totalCost": 2207.9519999999998, "totalQty": 420.0, "orderCount": 382, "uniqueProducts": 6, "margin": 3259.2980000000002, "marginPct": 59.614943527367515}, {"YearMonth": "2018-07", "Category": "Bone Health", "totalRevenue": 4331.99, "totalRevenueExVAT": 3623.88, "totalCost": 1069.643, "totalQty": 425.0, "orderCount": 357, "uniqueProducts": 5, "margin": 2554.237, "marginPct": 70.4834873119419}, {"YearMonth": "2018-07", "Category": "Cod Liver Oil", "totalRevenue": 1634.5, "totalRevenueExVAT": 1364.57, "totalCost": 537.37, "totalQty": 157.0, "orderCount": 150, "uniqueProducts": 2, "margin": 827.1999999999999, "marginPct": 60.619828957107366}, {"YearMonth": "2018-07", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 4284.55, "totalRevenueExVAT": 3578.2400000000002, "totalCost": 1016.2109999999999, "totalQty": 189.0, "orderCount": 155, "uniqueProducts": 1, "margin": 2562.0290000000005, "marginPct": 71.6002559917725}, {"YearMonth": "2018-07", "Category": "Evening Primose Oils", "totalRevenue": 2726.76, "totalRevenueExVAT": 2279.21, "totalCost": 1029.287, "totalQty": 209.0, "orderCount": 196, "uniqueProducts": 3, "margin": 1249.923, "marginPct": 54.840185853870416}, {"YearMonth": "2018-07", "Category": "Glucosamine", "totalRevenue": 10458.85, "totalRevenueExVAT": 8747.97, "totalCost": 3555.384, "totalQty": 659.0, "orderCount": 535, "uniqueProducts": 10, "margin": 5192.585999999999, "marginPct": 59.357610965744044}, {"YearMonth": "2018-07", "Category": "Herbal Supplements", "totalRevenue": 43361.02, "totalRevenueExVAT": 36239.47, "totalCost": 15621.091, "totalQty": 2571.0, "orderCount": 1980, "uniqueProducts": 20, "margin": 20618.379, "marginPct": 56.89481385903271}, {"YearMonth": "2018-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2752.77, "totalRevenueExVAT": 2300.4500000000003, "totalCost": 484.428, "totalQty": 178.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1816.0220000000004, "marginPct": 78.94203308048426}, {"YearMonth": "2018-07", "Category": "Minerals", "totalRevenue": 1262.5, "totalRevenueExVAT": 1055.36, "totalCost": 291.959, "totalQty": 161.0, "orderCount": 145, "uniqueProducts": 4, "margin": 763.4009999999998, "marginPct": 72.33560112189204}, {"YearMonth": "2018-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1248.1499999999999, "totalRevenueExVAT": 1040.51, "totalCost": 276.832, "totalQty": 77.0, "orderCount": 68, "uniqueProducts": 1, "margin": 763.678, "marginPct": 73.39458534756994}, {"YearMonth": "2018-07", "Category": "Multivitamins", "totalRevenue": 4905.179999999999, "totalRevenueExVAT": 4112.31, "totalCost": 1754.257, "totalQty": 500.0, "orderCount": 446, "uniqueProducts": 6, "margin": 2358.0530000000003, "marginPct": 57.34132397606212}, {"YearMonth": "2018-07", "Category": "Omega 3 Supplements", "totalRevenue": 5720.78, "totalRevenueExVAT": 4791.29, "totalCost": 2207.257, "totalQty": 422.0, "orderCount": 365, "uniqueProducts": 6, "margin": 2584.033, "marginPct": 53.93188473250419}, {"YearMonth": "2018-07", "Category": "Probiotics", "totalRevenue": 2054.91, "totalRevenueExVAT": 1716.51, "totalCost": 683.915, "totalQty": 109.0, "orderCount": 103, "uniqueProducts": 1, "margin": 1032.595, "marginPct": 60.15665507337563}, {"YearMonth": "2018-07", "Category": "Vitamin B", "totalRevenue": 4806.53, "totalRevenueExVAT": 4023.58, "totalCost": 1260.509, "totalQty": 436.0, "orderCount": 376, "uniqueProducts": 11, "margin": 2763.071, "marginPct": 68.67195383215942}, {"YearMonth": "2018-07", "Category": "Vitamin C", "totalRevenue": 1757.01, "totalRevenueExVAT": 1477.06, "totalCost": 469.89599999999996, "totalQty": 137.0, "orderCount": 116, "uniqueProducts": 4, "margin": 1007.164, "marginPct": 68.18707432331794}, {"YearMonth": "2018-07", "Category": "Vitamin D", "totalRevenue": 2033.9599999999998, "totalRevenueExVAT": 1700.37, "totalCost": 375.585, "totalQty": 203.0, "orderCount": 166, "uniqueProducts": 1, "margin": 1324.7849999999999, "marginPct": 77.91157218722984}, {"YearMonth": "2018-07", "Category": "Vitamin E", "totalRevenue": 1637.78, "totalRevenueExVAT": 1367.66, "totalCost": 811.28, "totalQty": 98.0, "orderCount": 92, "uniqueProducts": 3, "margin": 556.3800000000001, "marginPct": 40.68116344705556}, {"YearMonth": "2018-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 3456.84, "totalRevenueExVAT": 2886.31, "totalCost": 1018.57, "totalQty": 152.0, "orderCount": 139, "uniqueProducts": 1, "margin": 1867.7399999999998, "marginPct": 64.71030485290908}, {"YearMonth": "2018-08", "Category": "Amino Acids", "totalRevenue": 8387.9, "totalRevenueExVAT": 7001.86, "totalCost": 2761.9649999999997, "totalQty": 543.0, "orderCount": 462, "uniqueProducts": 6, "margin": 4239.895, "marginPct": 60.55383855147062}, {"YearMonth": "2018-08", "Category": "Bone Health", "totalRevenue": 6504.12, "totalRevenueExVAT": 5427.08, "totalCost": 1634.095, "totalQty": 635.0, "orderCount": 525, "uniqueProducts": 5, "margin": 3792.9849999999997, "marginPct": 69.88997766754865}, {"YearMonth": "2018-08", "Category": "Cod Liver Oil", "totalRevenue": 1884.1999999999998, "totalRevenueExVAT": 1570.47, "totalCost": 624.172, "totalQty": 172.0, "orderCount": 162, "uniqueProducts": 2, "margin": 946.298, "marginPct": 60.25571962533509}, {"YearMonth": "2018-08", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 5176.61, "totalRevenueExVAT": 4312.93, "totalCost": 1209.98, "totalQty": 241.0, "orderCount": 223, "uniqueProducts": 1, "margin": 3102.9500000000003, "marginPct": 71.94529009281393}, {"YearMonth": "2018-08", "Category": "Evening Primose Oils", "totalRevenue": 4125.15, "totalRevenueExVAT": 3454.16, "totalCost": 1598.856, "totalQty": 282.0, "orderCount": 254, "uniqueProducts": 3, "margin": 1855.3039999999999, "marginPct": 53.71216156750121}, {"YearMonth": "2018-08", "Category": "Glucosamine", "totalRevenue": 13384.07, "totalRevenueExVAT": 11159.2, "totalCost": 4560.505, "totalQty": 837.0, "orderCount": 713, "uniqueProducts": 10, "margin": 6598.695000000001, "marginPct": 59.13233027457166}, {"YearMonth": "2018-08", "Category": "Herbal Supplements", "totalRevenue": 52433.24, "totalRevenueExVAT": 43729.48, "totalCost": 19159.069, "totalQty": 3040.0, "orderCount": 2415, "uniqueProducts": 21, "margin": 24570.411000000004, "marginPct": 56.18729287428069}, {"YearMonth": "2018-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3506.85, "totalRevenueExVAT": 2922.54, "totalCost": 613.593, "totalQty": 223.0, "orderCount": 189, "uniqueProducts": 1, "margin": 2308.947, "marginPct": 79.00480404032109}, {"YearMonth": "2018-08", "Category": "Minerals", "totalRevenue": 1581.65, "totalRevenueExVAT": 1318.23, "totalCost": 369.815, "totalQty": 196.0, "orderCount": 171, "uniqueProducts": 4, "margin": 948.415, "marginPct": 71.9460943841363}, {"YearMonth": "2018-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2255.5299999999997, "totalRevenueExVAT": 1881.79, "totalCost": 498.69200000000006, "totalQty": 133.0, "orderCount": 116, "uniqueProducts": 1, "margin": 1383.098, "marginPct": 73.49906206324829}, {"YearMonth": "2018-08", "Category": "Multivitamins", "totalRevenue": 6109.719999999999, "totalRevenueExVAT": 5104.6, "totalCost": 2162.192, "totalQty": 610.0, "orderCount": 541, "uniqueProducts": 6, "margin": 2942.4080000000004, "marginPct": 57.6422834306312}, {"YearMonth": "2018-08", "Category": "Omega 3 Supplements", "totalRevenue": 8269.64, "totalRevenueExVAT": 6898.72, "totalCost": 3134.584, "totalQty": 613.0, "orderCount": 553, "uniqueProducts": 6, "margin": 3764.1360000000004, "marginPct": 54.56281745019367}, {"YearMonth": "2018-08", "Category": "Probiotics", "totalRevenue": 2608.5, "totalRevenueExVAT": 2181.3, "totalCost": 870.394, "totalQty": 134.0, "orderCount": 129, "uniqueProducts": 1, "margin": 1310.9060000000002, "marginPct": 60.097464814560134}, {"YearMonth": "2018-08", "Category": "Vitamin B", "totalRevenue": 5768.37, "totalRevenueExVAT": 4820.45, "totalCost": 1482.739, "totalQty": 543.0, "orderCount": 464, "uniqueProducts": 11, "margin": 3337.711, "marginPct": 69.24065180636663}, {"YearMonth": "2018-08", "Category": "Vitamin C", "totalRevenue": 2213.0899999999997, "totalRevenueExVAT": 1845.67, "totalCost": 583.286, "totalQty": 169.0, "orderCount": 145, "uniqueProducts": 4, "margin": 1262.384, "marginPct": 68.39705906256265}, {"YearMonth": "2018-08", "Category": "Vitamin D", "totalRevenue": 2361.85, "totalRevenueExVAT": 1967.82, "totalCost": 435.81, "totalQty": 233.0, "orderCount": 199, "uniqueProducts": 1, "margin": 1532.01, "marginPct": 77.85315730097265}, {"YearMonth": "2018-08", "Category": "Vitamin E", "totalRevenue": 1686.85, "totalRevenueExVAT": 1405.78, "totalCost": 822.045, "totalQty": 103.0, "orderCount": 99, "uniqueProducts": 3, "margin": 583.735, "marginPct": 41.523922662151975}, {"YearMonth": "2018-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 5074.51, "totalRevenueExVAT": 4231.43, "totalCost": 1494.598, "totalQty": 225.0, "orderCount": 216, "uniqueProducts": 1, "margin": 2736.8320000000003, "marginPct": 64.6786547337425}, {"YearMonth": "2018-09", "Category": "Amino Acids", "totalRevenue": 6010.63, "totalRevenueExVAT": 5040.14, "totalCost": 1977.0349999999999, "totalQty": 395.0, "orderCount": 332, "uniqueProducts": 6, "margin": 3063.1050000000005, "marginPct": 60.77420468479051}, {"YearMonth": "2018-09", "Category": "Bone Health", "totalRevenue": 5090.91, "totalRevenueExVAT": 4257.28, "totalCost": 1209.5810000000001, "totalQty": 515.0, "orderCount": 433, "uniqueProducts": 5, "margin": 3047.6989999999996, "marginPct": 71.58793877781117}, {"YearMonth": "2018-09", "Category": "Cod Liver Oil", "totalRevenue": 1204.45, "totalRevenueExVAT": 1003.9, "totalCost": 395.522, "totalQty": 115.0, "orderCount": 109, "uniqueProducts": 2, "margin": 608.3779999999999, "marginPct": 60.60145432812033}, {"YearMonth": "2018-09", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3356.95, "totalRevenueExVAT": 2805.4900000000002, "totalCost": 785.0999999999999, "totalQty": 159.0, "orderCount": 149, "uniqueProducts": 1, "margin": 2020.3900000000003, "marginPct": 72.01558373047133}, {"YearMonth": "2018-09", "Category": "Evening Primose Oils", "totalRevenue": 2925.41, "totalRevenueExVAT": 2443.35, "totalCost": 1102.601, "totalQty": 210.0, "orderCount": 204, "uniqueProducts": 3, "margin": 1340.7489999999998, "marginPct": 54.87339104098879}, {"YearMonth": "2018-09", "Category": "Glucosamine", "totalRevenue": 10355.63, "totalRevenueExVAT": 8659.65, "totalCost": 3551.679, "totalQty": 626.0, "orderCount": 543, "uniqueProducts": 10, "margin": 5107.971, "marginPct": 58.98588280126794}, {"YearMonth": "2018-09", "Category": "Herbal Supplements", "totalRevenue": 37993.09, "totalRevenueExVAT": 31715.72, "totalCost": 13751.15, "totalQty": 2242.0, "orderCount": 1814, "uniqueProducts": 20, "margin": 17964.57, "marginPct": 56.642478871676246}, {"YearMonth": "2018-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2582.43, "totalRevenueExVAT": 2159.58, "totalCost": 456.462, "totalQty": 172.0, "orderCount": 157, "uniqueProducts": 1, "margin": 1703.118, "marginPct": 78.86339010363126}, {"YearMonth": "2018-09", "Category": "Minerals", "totalRevenue": 1128.92, "totalRevenueExVAT": 945.25, "totalCost": 261.543, "totalQty": 146.0, "orderCount": 127, "uniqueProducts": 4, "margin": 683.707, "marginPct": 72.33081195450939}, {"YearMonth": "2018-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1403.85, "totalRevenueExVAT": 1170.29, "totalCost": 310.228, "totalQty": 83.0, "orderCount": 74, "uniqueProducts": 1, "margin": 860.0619999999999, "marginPct": 73.49135684317561}, {"YearMonth": "2018-09", "Category": "Multivitamins", "totalRevenue": 5062.24, "totalRevenueExVAT": 4224.48, "totalCost": 1785.913, "totalQty": 500.0, "orderCount": 447, "uniqueProducts": 6, "margin": 2438.5669999999996, "marginPct": 57.72466670454115}, {"YearMonth": "2018-09", "Category": "Omega 3 Supplements", "totalRevenue": 5897.33, "totalRevenueExVAT": 4934.03, "totalCost": 2310.792, "totalQty": 437.0, "orderCount": 383, "uniqueProducts": 6, "margin": 2623.238, "marginPct": 53.16623530866249}, {"YearMonth": "2018-09", "Category": "Probiotics", "totalRevenue": 2061.29, "totalRevenueExVAT": 1721.45, "totalCost": 685.4010000000001, "totalQty": 111.0, "orderCount": 102, "uniqueProducts": 1, "margin": 1036.049, "marginPct": 60.18466990037468}, {"YearMonth": "2018-09", "Category": "Vitamin B", "totalRevenue": 4100.11, "totalRevenueExVAT": 3423.93, "totalCost": 1118.488, "totalQty": 386.0, "orderCount": 326, "uniqueProducts": 11, "margin": 2305.442, "marginPct": 67.33321066727416}, {"YearMonth": "2018-09", "Category": "Vitamin C", "totalRevenue": 1547.49, "totalRevenueExVAT": 1291.01, "totalCost": 407.072, "totalQty": 123.0, "orderCount": 100, "uniqueProducts": 4, "margin": 883.938, "marginPct": 68.46871829033083}, {"YearMonth": "2018-09", "Category": "Vitamin D", "totalRevenue": 2641.68, "totalRevenueExVAT": 2212.1099999999997, "totalCost": 491.655, "totalQty": 259.0, "orderCount": 221, "uniqueProducts": 1, "margin": 1720.4549999999997, "marginPct": 77.77438734963451}, {"YearMonth": "2018-09", "Category": "Vitamin E", "totalRevenue": 1280.3899999999999, "totalRevenueExVAT": 1068.42, "totalCost": 630.843, "totalQty": 79.0, "orderCount": 74, "uniqueProducts": 3, "margin": 437.5770000000001, "marginPct": 40.95552310888977}, {"YearMonth": "2018-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 3471.64, "totalRevenueExVAT": 2900.94, "totalCost": 1037.916, "totalQty": 141.0, "orderCount": 137, "uniqueProducts": 1, "margin": 1863.0240000000001, "marginPct": 64.22139030796914}, {"YearMonth": "2018-10", "Category": "Amino Acids", "totalRevenue": 7217.87, "totalRevenueExVAT": 6042.74, "totalCost": 2344.2019999999998, "totalQty": 484.0, "orderCount": 405, "uniqueProducts": 6, "margin": 3698.538, "marginPct": 61.20630707261938}, {"YearMonth": "2018-10", "Category": "Bone Health", "totalRevenue": 5363.509999999999, "totalRevenueExVAT": 4486.57, "totalCost": 1288.699, "totalQty": 554.0, "orderCount": 459, "uniqueProducts": 5, "margin": 3197.8709999999996, "marginPct": 71.27652081657034}, {"YearMonth": "2018-10", "Category": "Cod Liver Oil", "totalRevenue": 2033.7299999999998, "totalRevenueExVAT": 1697.49, "totalCost": 674.8489999999999, "totalQty": 193.0, "orderCount": 176, "uniqueProducts": 2, "margin": 1022.6410000000001, "marginPct": 60.24430188101256}, {"YearMonth": "2018-10", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 4387.72, "totalRevenueExVAT": 3658.57, "totalCost": 1031.459, "totalQty": 199.0, "orderCount": 184, "uniqueProducts": 1, "margin": 2627.111, "marginPct": 71.80704482899056}, {"YearMonth": "2018-10", "Category": "Evening Primose Oils", "totalRevenue": 3444.4, "totalRevenueExVAT": 2876.16, "totalCost": 1308.162, "totalQty": 250.0, "orderCount": 231, "uniqueProducts": 3, "margin": 1567.9979999999998, "marginPct": 54.51706441922563}, {"YearMonth": "2018-10", "Category": "Glucosamine", "totalRevenue": 13995.1, "totalRevenueExVAT": 11684.14, "totalCost": 5196.065, "totalQty": 928.0, "orderCount": 753, "uniqueProducts": 10, "margin": 6488.075, "marginPct": 55.52890499429141}, {"YearMonth": "2018-10", "Category": "Herbal Supplements", "totalRevenue": 47061.28, "totalRevenueExVAT": 39339.8, "totalCost": 16952.331000000002, "totalQty": 2723.0, "orderCount": 2162, "uniqueProducts": 21, "margin": 22387.469, "marginPct": 56.90793801697009}, {"YearMonth": "2018-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3940.89, "totalRevenueExVAT": 3294.16, "totalCost": 696.543, "totalQty": 263.0, "orderCount": 228, "uniqueProducts": 1, "margin": 2597.6169999999997, "marginPct": 78.85521650435922}, {"YearMonth": "2018-10", "Category": "Minerals", "totalRevenue": 1662.55, "totalRevenueExVAT": 1392.0, "totalCost": 389.45500000000004, "totalQty": 211.0, "orderCount": 183, "uniqueProducts": 4, "margin": 1002.545, "marginPct": 72.02191091954022}, {"YearMonth": "2018-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2219.4, "totalRevenueExVAT": 1850.1599999999999, "totalCost": 490.69800000000004, "totalQty": 132.0, "orderCount": 107, "uniqueProducts": 1, "margin": 1359.4619999999998, "marginPct": 73.47807757166947}, {"YearMonth": "2018-10", "Category": "Multivitamins", "totalRevenue": 5755.08, "totalRevenueExVAT": 4820.96, "totalCost": 2058.331, "totalQty": 565.0, "orderCount": 490, "uniqueProducts": 6, "margin": 2762.629, "marginPct": 57.304541004281305}, {"YearMonth": "2018-10", "Category": "Omega 3 Supplements", "totalRevenue": 7404.09, "totalRevenueExVAT": 6193.84, "totalCost": 2886.32, "totalQty": 526.0, "orderCount": 462, "uniqueProducts": 6, "margin": 3307.52, "marginPct": 53.40015240949072}, {"YearMonth": "2018-10", "Category": "Probiotics", "totalRevenue": 2276.0499999999997, "totalRevenueExVAT": 1896.93, "totalCost": 756.217, "totalQty": 119.0, "orderCount": 111, "uniqueProducts": 1, "margin": 1140.7130000000002, "marginPct": 60.134691317022785}, {"YearMonth": "2018-10", "Category": "Vitamin B", "totalRevenue": 4801.13, "totalRevenueExVAT": 4019.19, "totalCost": 1287.571, "totalQty": 470.0, "orderCount": 405, "uniqueProducts": 11, "margin": 2731.619, "marginPct": 67.96441571560439}, {"YearMonth": "2018-10", "Category": "Vitamin C", "totalRevenue": 2555.79, "totalRevenueExVAT": 2139.83, "totalCost": 677.9889999999999, "totalQty": 201.0, "orderCount": 180, "uniqueProducts": 4, "margin": 1461.841, "marginPct": 68.31575405522868}, {"YearMonth": "2018-10", "Category": "Vitamin D", "totalRevenue": 2860.5699999999997, "totalRevenueExVAT": 2386.8599999999997, "totalCost": 527.79, "totalQty": 284.0, "orderCount": 248, "uniqueProducts": 1, "margin": 1859.0699999999997, "marginPct": 77.88768507578995}, {"YearMonth": "2018-10", "Category": "Vitamin E", "totalRevenue": 1347.6899999999998, "totalRevenueExVAT": 1124.46, "totalCost": 648.1809999999999, "totalQty": 93.0, "orderCount": 82, "uniqueProducts": 3, "margin": 476.2790000000001, "marginPct": 42.356242107322636}, {"YearMonth": "2018-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 3840.54, "totalRevenueExVAT": 3206.15, "totalCost": 1112.906, "totalQty": 178.0, "orderCount": 177, "uniqueProducts": 1, "margin": 2093.244, "marginPct": 65.28839885844393}, {"YearMonth": "2018-11", "Category": "Amino Acids", "totalRevenue": 6668.33, "totalRevenueExVAT": 5594.75, "totalCost": 2070.026, "totalQty": 434.0, "orderCount": 376, "uniqueProducts": 6, "margin": 3524.724, "marginPct": 63.000563027838595}, {"YearMonth": "2018-11", "Category": "Bone Health", "totalRevenue": 6651.679999999999, "totalRevenueExVAT": 5550.3099999999995, "totalCost": 1675.9530000000002, "totalQty": 703.0, "orderCount": 578, "uniqueProducts": 5, "margin": 3874.356999999999, "marginPct": 69.8043352533462}, {"YearMonth": "2018-11", "Category": "Cod Liver Oil", "totalRevenue": 1895.9499999999998, "totalRevenueExVAT": 1580.28, "totalCost": 624.631, "totalQty": 177.0, "orderCount": 162, "uniqueProducts": 2, "margin": 955.649, "marginPct": 60.473397119497804}, {"YearMonth": "2018-11", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3065.46, "totalRevenueExVAT": 2557.58, "totalCost": 647.074, "totalQty": 131.0, "orderCount": 125, "uniqueProducts": 1, "margin": 1910.5059999999999, "marginPct": 74.69975523737283}, {"YearMonth": "2018-11", "Category": "Evening Primose Oils", "totalRevenue": 3349.25, "totalRevenueExVAT": 2796.7000000000003, "totalCost": 1220.582, "totalQty": 214.0, "orderCount": 199, "uniqueProducts": 3, "margin": 1576.1180000000002, "marginPct": 56.35634855365252}, {"YearMonth": "2018-11", "Category": "Glucosamine", "totalRevenue": 12573.89, "totalRevenueExVAT": 10508.7, "totalCost": 4735.6359999999995, "totalQty": 842.0, "orderCount": 675, "uniqueProducts": 10, "margin": 5773.064000000001, "marginPct": 54.936043468744955}, {"YearMonth": "2018-11", "Category": "Herbal Supplements", "totalRevenue": 45299.09, "totalRevenueExVAT": 37806.51, "totalCost": 15443.094000000001, "totalQty": 2613.0, "orderCount": 2040, "uniqueProducts": 20, "margin": 22363.416, "marginPct": 59.152288851840595}, {"YearMonth": "2018-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3034.81, "totalRevenueExVAT": 2531.58, "totalCost": 536.0939999999999, "totalQty": 204.0, "orderCount": 181, "uniqueProducts": 1, "margin": 1995.4859999999999, "marginPct": 78.82373853482805}, {"YearMonth": "2018-11", "Category": "Minerals", "totalRevenue": 1488.69, "totalRevenueExVAT": 1244.85, "totalCost": 366.8, "totalQty": 194.0, "orderCount": 170, "uniqueProducts": 4, "margin": 878.05, "marginPct": 70.53460256255774}, {"YearMonth": "2018-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2270.67, "totalRevenueExVAT": 1898.9, "totalCost": 553.138, "totalQty": 143.0, "orderCount": 119, "uniqueProducts": 1, "margin": 1345.7620000000002, "marginPct": 70.87060930012112}, {"YearMonth": "2018-11", "Category": "Multivitamins", "totalRevenue": 5782.759999999999, "totalRevenueExVAT": 4835.2699999999995, "totalCost": 2048.993, "totalQty": 554.0, "orderCount": 483, "uniqueProducts": 6, "margin": 2786.2769999999996, "marginPct": 57.624020995725154}, {"YearMonth": "2018-11", "Category": "Omega 3 Supplements", "totalRevenue": 7132.49, "totalRevenueExVAT": 5947.24, "totalCost": 2414.437, "totalQty": 465.0, "orderCount": 414, "uniqueProducts": 6, "margin": 3532.803, "marginPct": 59.40239506056591}, {"YearMonth": "2018-11", "Category": "Probiotics", "totalRevenue": 2452.73, "totalRevenueExVAT": 2057.69, "totalCost": 908.453, "totalQty": 139.0, "orderCount": 123, "uniqueProducts": 1, "margin": 1149.237, "marginPct": 55.85083272990586}, {"YearMonth": "2018-11", "Category": "Vitamin B", "totalRevenue": 4544.79, "totalRevenueExVAT": 3812.05, "totalCost": 1190.5339999999999, "totalQty": 427.0, "orderCount": 358, "uniqueProducts": 11, "margin": 2621.5160000000005, "marginPct": 68.76919242927035}, {"YearMonth": "2018-11", "Category": "Vitamin C", "totalRevenue": 1805.1799999999998, "totalRevenueExVAT": 1509.83, "totalCost": 458.90999999999997, "totalQty": 154.0, "orderCount": 122, "uniqueProducts": 4, "margin": 1050.92, "marginPct": 69.60518733897194}, {"YearMonth": "2018-11", "Category": "Vitamin D", "totalRevenue": 3124.05, "totalRevenueExVAT": 2611.72, "totalCost": 638.385, "totalQty": 341.0, "orderCount": 286, "uniqueProducts": 1, "margin": 1973.3349999999998, "marginPct": 75.55691268589283}, {"YearMonth": "2018-11", "Category": "Vitamin E", "totalRevenue": 591.7299999999999, "totalRevenueExVAT": 495.78, "totalCost": 273.729, "totalQty": 59.0, "orderCount": 50, "uniqueProducts": 2, "margin": 222.051, "marginPct": 44.78821251361491}, {"YearMonth": "2018-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 4252.51, "totalRevenueExVAT": 3553.2200000000003, "totalCost": 1395.27, "totalQty": 203.0, "orderCount": 194, "uniqueProducts": 1, "margin": 2157.9500000000003, "marginPct": 60.73223723833594}, {"YearMonth": "2018-12", "Category": "Amino Acids", "totalRevenue": 6079.9, "totalRevenueExVAT": 5093.3099999999995, "totalCost": 1955.344, "totalQty": 400.0, "orderCount": 317, "uniqueProducts": 6, "margin": 3137.9659999999994, "marginPct": 61.60956234747148}, {"YearMonth": "2018-12", "Category": "Bone Health", "totalRevenue": 5441.66, "totalRevenueExVAT": 4545.92, "totalCost": 1371.545, "totalQty": 595.0, "orderCount": 502, "uniqueProducts": 5, "margin": 3174.375, "marginPct": 69.82909950021117}, {"YearMonth": "2018-12", "Category": "Cod Liver Oil", "totalRevenue": 1685.82, "totalRevenueExVAT": 1410.43, "totalCost": 576.6569999999999, "totalQty": 159.0, "orderCount": 147, "uniqueProducts": 2, "margin": 833.7730000000001, "marginPct": 59.11480895896997}, {"YearMonth": "2018-12", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2909.36, "totalRevenueExVAT": 2435.74, "totalCost": 630.068, "totalQty": 130.0, "orderCount": 119, "uniqueProducts": 1, "margin": 1805.6719999999998, "marginPct": 74.13237866110505}, {"YearMonth": "2018-12", "Category": "Evening Primose Oils", "totalRevenue": 2863.99, "totalRevenueExVAT": 2404.17, "totalCost": 1038.131, "totalQty": 204.0, "orderCount": 189, "uniqueProducts": 3, "margin": 1366.039, "marginPct": 56.819567667843785}, {"YearMonth": "2018-12", "Category": "Glucosamine", "totalRevenue": 10892.36, "totalRevenueExVAT": 9124.880000000001, "totalCost": 4104.008, "totalQty": 759.0, "orderCount": 597, "uniqueProducts": 10, "margin": 5020.872000000001, "marginPct": 55.02397839752414}, {"YearMonth": "2018-12", "Category": "Herbal Supplements", "totalRevenue": 41450.689999999995, "totalRevenueExVAT": 34658.57, "totalCost": 14497.664, "totalQty": 2450.0, "orderCount": 1900, "uniqueProducts": 20, "margin": 20160.906, "marginPct": 58.17004567701437}, {"YearMonth": "2018-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2744.68, "totalRevenueExVAT": 2296.77, "totalCost": 495.33, "totalQty": 185.0, "orderCount": 171, "uniqueProducts": 1, "margin": 1801.44, "marginPct": 78.43362635353127}, {"YearMonth": "2018-12", "Category": "Minerals", "totalRevenue": 1183.24, "totalRevenueExVAT": 990.83, "totalCost": 291.735, "totalQty": 160.0, "orderCount": 146, "uniqueProducts": 4, "margin": 699.095, "marginPct": 70.55650313373636}, {"YearMonth": "2018-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2102.36, "totalRevenueExVAT": 1751.0600000000002, "totalCost": 515.39, "totalQty": 136.0, "orderCount": 109, "uniqueProducts": 1, "margin": 1235.67, "marginPct": 70.56697086336277}, {"YearMonth": "2018-12", "Category": "Multivitamins", "totalRevenue": 5711.08, "totalRevenueExVAT": 4781.52, "totalCost": 2051.235, "totalQty": 557.0, "orderCount": 477, "uniqueProducts": 6, "margin": 2730.2850000000003, "marginPct": 57.100775485619636}, {"YearMonth": "2018-12", "Category": "Omega 3 Supplements", "totalRevenue": 6124.34, "totalRevenueExVAT": 5134.26, "totalCost": 2060.8940000000002, "totalQty": 416.0, "orderCount": 369, "uniqueProducts": 6, "margin": 3073.366, "marginPct": 59.85996034482086}, {"YearMonth": "2018-12", "Category": "Probiotics", "totalRevenue": 2168.08, "totalRevenueExVAT": 1817.38, "totalCost": 804.88, "totalQty": 128.0, "orderCount": 119, "uniqueProducts": 1, "margin": 1012.5000000000001, "marginPct": 55.712069022438904}, {"YearMonth": "2018-12", "Category": "Vitamin B", "totalRevenue": 4077.97, "totalRevenueExVAT": 3408.36, "totalCost": 1111.384, "totalQty": 400.0, "orderCount": 351, "uniqueProducts": 11, "margin": 2296.976, "marginPct": 67.39241159971364}, {"YearMonth": "2018-12", "Category": "Vitamin C", "totalRevenue": 2151.21, "totalRevenueExVAT": 1795.09, "totalCost": 577.783, "totalQty": 170.0, "orderCount": 147, "uniqueProducts": 4, "margin": 1217.3069999999998, "marginPct": 67.813145858982}, {"YearMonth": "2018-12", "Category": "Vitamin D", "totalRevenue": 2706.92, "totalRevenueExVAT": 2260.66, "totalCost": 569.4, "totalQty": 296.0, "orderCount": 244, "uniqueProducts": 1, "margin": 1691.2599999999998, "marginPct": 74.81266532782462}, {"YearMonth": "2018-12", "Category": "Vitamin E", "totalRevenue": 751.9899999999999, "totalRevenueExVAT": 628.0799999999999, "totalCost": 348.062, "totalQty": 77.0, "orderCount": 60, "uniqueProducts": 2, "margin": 280.0179999999999, "marginPct": 44.58317411794675}, {"YearMonth": "2018-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 3529.75, "totalRevenueExVAT": 2955.63, "totalCost": 1167.9940000000001, "totalQty": 165.0, "orderCount": 160, "uniqueProducts": 1, "margin": 1787.636, "marginPct": 60.482401383123054}, {"YearMonth": "2019-01", "Category": "Amino Acids", "totalRevenue": 9476.17, "totalRevenueExVAT": 7943.64, "totalCost": 3297.591, "totalQty": 677.0, "orderCount": 552, "uniqueProducts": 6, "margin": 4646.049000000001, "marginPct": 58.48765805096908}, {"YearMonth": "2019-01", "Category": "Bone Health", "totalRevenue": 6718.6, "totalRevenueExVAT": 5616.54, "totalCost": 1839.4650000000001, "totalQty": 710.0, "orderCount": 605, "uniqueProducts": 5, "margin": 3777.075, "marginPct": 67.2491427106368}, {"YearMonth": "2019-01", "Category": "Cod Liver Oil", "totalRevenue": 2539.84, "totalRevenueExVAT": 2116.17, "totalCost": 917.592, "totalQty": 269.0, "orderCount": 248, "uniqueProducts": 2, "margin": 1198.578, "marginPct": 56.63902238478005}, {"YearMonth": "2019-01", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 5715.07, "totalRevenueExVAT": 4790.63, "totalCost": 1350.474, "totalQty": 261.0, "orderCount": 233, "uniqueProducts": 1, "margin": 3440.156, "marginPct": 71.81009595815165}, {"YearMonth": "2019-01", "Category": "Evening Primose Oils", "totalRevenue": 4135.31, "totalRevenueExVAT": 3459.4300000000003, "totalCost": 1644.4250000000002, "totalQty": 286.0, "orderCount": 264, "uniqueProducts": 3, "margin": 1815.005, "marginPct": 52.46543505722041}, {"YearMonth": "2019-01", "Category": "Glucosamine", "totalRevenue": 15298.99, "totalRevenueExVAT": 12801.82, "totalCost": 5872.508, "totalQty": 1011.0, "orderCount": 836, "uniqueProducts": 10, "margin": 6929.312, "marginPct": 54.12755373845282}, {"YearMonth": "2019-01", "Category": "Herbal Supplements", "totalRevenue": 63346.63, "totalRevenueExVAT": 52917.46, "totalCost": 23583.977, "totalQty": 4121.0, "orderCount": 3040, "uniqueProducts": 20, "margin": 29333.483, "marginPct": 55.43252264942422}, {"YearMonth": "2019-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 4034.0899999999997, "totalRevenueExVAT": 3366.0, "totalCost": 791.5799999999999, "totalQty": 300.0, "orderCount": 266, "uniqueProducts": 1, "margin": 2574.42, "marginPct": 76.48306595365419}, {"YearMonth": "2019-01", "Category": "Minerals", "totalRevenue": 1883.5, "totalRevenueExVAT": 1572.57, "totalCost": 471.404, "totalQty": 249.0, "orderCount": 228, "uniqueProducts": 4, "margin": 1101.166, "marginPct": 70.02333759387498}, {"YearMonth": "2019-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 3356.7200000000003, "totalRevenueExVAT": 2800.82, "totalCost": 824.1980000000001, "totalQty": 217.0, "orderCount": 189, "uniqueProducts": 1, "margin": 1976.622, "marginPct": 70.57297505730465}, {"YearMonth": "2019-01", "Category": "Multivitamins", "totalRevenue": 7716.650000000001, "totalRevenueExVAT": 6463.32, "totalCost": 2948.224, "totalQty": 800.0, "orderCount": 679, "uniqueProducts": 6, "margin": 3515.0959999999995, "marginPct": 54.38530043383276}, {"YearMonth": "2019-01", "Category": "Omega 3 Supplements", "totalRevenue": 10219.42, "totalRevenueExVAT": 8552.37, "totalCost": 3643.306, "totalQty": 721.0, "orderCount": 607, "uniqueProducts": 6, "margin": 4909.064, "marginPct": 57.40004232744841}, {"YearMonth": "2019-01", "Category": "Probiotics", "totalRevenue": 3069.76, "totalRevenueExVAT": 2558.71, "totalCost": 1134.376, "totalQty": 176.0, "orderCount": 162, "uniqueProducts": 1, "margin": 1424.334, "marginPct": 55.666097369377546}, {"YearMonth": "2019-01", "Category": "Vitamin B", "totalRevenue": 7152.43, "totalRevenueExVAT": 5977.71, "totalCost": 2022.324, "totalQty": 697.0, "orderCount": 589, "uniqueProducts": 11, "margin": 3955.386, "marginPct": 66.16891752861882}, {"YearMonth": "2019-01", "Category": "Vitamin C", "totalRevenue": 2828.65, "totalRevenueExVAT": 2367.05, "totalCost": 828.0229999999999, "totalQty": 238.0, "orderCount": 213, "uniqueProducts": 4, "margin": 1539.0270000000003, "marginPct": 65.01877864852877}, {"YearMonth": "2019-01", "Category": "Vitamin D", "totalRevenue": 4506.12, "totalRevenueExVAT": 3759.8399999999997, "totalCost": 980.025, "totalQty": 523.0, "orderCount": 445, "uniqueProducts": 1, "margin": 2779.8149999999996, "marginPct": 73.93439614451678}, {"YearMonth": "2019-01", "Category": "Vitamin E", "totalRevenue": 2522.68, "totalRevenueExVAT": 2110.37, "totalCost": 1334.0439999999999, "totalQty": 170.0, "orderCount": 134, "uniqueProducts": 3, "margin": 776.326, "marginPct": 36.78625075223776}, {"YearMonth": "2019-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 6757.3, "totalRevenueExVAT": 5649.14, "totalCost": 2261.664, "totalQty": 302.0, "orderCount": 290, "uniqueProducts": 1, "margin": 3387.476, "marginPct": 59.964454766566234}, {"YearMonth": "2019-02", "Category": "Amino Acids", "totalRevenue": 5505.73, "totalRevenueExVAT": 4593.07, "totalCost": 1820.177332, "totalQty": 382.0, "orderCount": 285, "uniqueProducts": 6, "margin": 2772.8926679999995, "marginPct": 60.37122595562444}, {"YearMonth": "2019-02", "Category": "Bone Health", "totalRevenue": 4718.55, "totalRevenueExVAT": 3937.39, "totalCost": 1231.334331, "totalQty": 516.0, "orderCount": 407, "uniqueProducts": 5, "margin": 2706.055669, "marginPct": 68.7271433360678}, {"YearMonth": "2019-02", "Category": "Cod Liver Oil", "totalRevenue": 1615.18, "totalRevenueExVAT": 1350.03, "totalCost": 582.160664, "totalQty": 148.0, "orderCount": 136, "uniqueProducts": 2, "margin": 767.869336, "marginPct": 56.87794611971586}, {"YearMonth": "2019-02", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3012.14, "totalRevenueExVAT": 2523.16, "totalCost": 651.3589969999999, "totalQty": 137.0, "orderCount": 113, "uniqueProducts": 1, "margin": 1871.801003, "marginPct": 74.18479220501277}, {"YearMonth": "2019-02", "Category": "Evening Primose Oils", "totalRevenue": 3072.71, "totalRevenueExVAT": 2565.71, "totalCost": 1075.27833, "totalQty": 205.0, "orderCount": 178, "uniqueProducts": 3, "margin": 1490.43167, "marginPct": 58.09041824680108}, {"YearMonth": "2019-02", "Category": "Glucosamine", "totalRevenue": 8605.42, "totalRevenueExVAT": 7190.67, "totalCost": 3180.655654, "totalQty": 583.0, "orderCount": 430, "uniqueProducts": 10, "margin": 4010.014346, "marginPct": 55.76690831313355}, {"YearMonth": "2019-02", "Category": "Herbal Supplements", "totalRevenue": 40203.85, "totalRevenueExVAT": 33543.97, "totalCost": 14033.301982, "totalQty": 2314.0, "orderCount": 1770, "uniqueProducts": 20, "margin": 19510.668018, "marginPct": 58.16445703355924}, {"YearMonth": "2019-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2732.93, "totalRevenueExVAT": 2290.28, "totalCost": 527.165331, "totalQty": 194.0, "orderCount": 149, "uniqueProducts": 1, "margin": 1763.114669, "marginPct": 76.98249423651257}, {"YearMonth": "2019-02", "Category": "Minerals", "totalRevenue": 1086.56, "totalRevenueExVAT": 906.61, "totalCost": 273.039331, "totalQty": 137.0, "orderCount": 121, "uniqueProducts": 4, "margin": 633.570669, "marginPct": 69.88348562226315}, {"YearMonth": "2019-02", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1920.78, "totalRevenueExVAT": 1605.15, "totalCost": 437.409666, "totalQty": 118.0, "orderCount": 94, "uniqueProducts": 1, "margin": 1167.740334, "marginPct": 72.74960807401177}, {"YearMonth": "2019-02", "Category": "Multivitamins", "totalRevenue": 3882.37, "totalRevenueExVAT": 3241.4, "totalCost": 1457.33233, "totalQty": 413.0, "orderCount": 356, "uniqueProducts": 6, "margin": 1784.0676700000001, "marginPct": 55.04003424446228}, {"YearMonth": "2019-02", "Category": "Omega 3 Supplements", "totalRevenue": 4950.88, "totalRevenueExVAT": 4136.29, "totalCost": 1712.226329, "totalQty": 356.0, "orderCount": 306, "uniqueProducts": 6, "margin": 2424.063671, "marginPct": 58.60478039499164}, {"YearMonth": "2019-02", "Category": "Probiotics", "totalRevenue": 1732.81, "totalRevenueExVAT": 1447.13, "totalCost": 588.819332, "totalQty": 101.0, "orderCount": 89, "uniqueProducts": 1, "margin": 858.3106680000001, "marginPct": 59.31123451244878}, {"YearMonth": "2019-02", "Category": "Vitamin B", "totalRevenue": 4279.41, "totalRevenueExVAT": 3577.71, "totalCost": 1190.615993, "totalQty": 398.0, "orderCount": 331, "uniqueProducts": 11, "margin": 2387.094007, "marginPct": 66.72128280380467}, {"YearMonth": "2019-02", "Category": "Vitamin C", "totalRevenue": 1356.98, "totalRevenueExVAT": 1132.83, "totalCost": 413.57433, "totalQty": 121.0, "orderCount": 103, "uniqueProducts": 4, "margin": 719.25567, "marginPct": 63.491933476338026}, {"YearMonth": "2019-02", "Category": "Vitamin D", "totalRevenue": 2278.97, "totalRevenueExVAT": 1908.3899999999999, "totalCost": 460.597997, "totalQty": 245.0, "orderCount": 204, "uniqueProducts": 1, "margin": 1447.7920029999998, "marginPct": 75.86457710426066}, {"YearMonth": "2019-02", "Category": "Vitamin E", "totalRevenue": 932.1, "totalRevenueExVAT": 776.8199999999999, "totalCost": 465.76766599999996, "totalQty": 64.0, "orderCount": 56, "uniqueProducts": 3, "margin": 311.052334, "marginPct": 40.04175149970392}, {"YearMonth": "2019-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 2622.37, "totalRevenueExVAT": 2191.89, "totalCost": 800.744999, "totalQty": 120.0, "orderCount": 108, "uniqueProducts": 1, "margin": 1391.1450009999999, "marginPct": 63.467829179384}, {"YearMonth": "2019-03", "Category": "Amino Acids", "totalRevenue": 6277.8, "totalRevenueExVAT": 5269.11, "totalCost": 2036.346, "totalQty": 431.0, "orderCount": 336, "uniqueProducts": 6, "margin": 3232.7639999999997, "marginPct": 61.353131743311486}, {"YearMonth": "2019-03", "Category": "Bone Health", "totalRevenue": 6269.41, "totalRevenueExVAT": 5240.639999999999, "totalCost": 1670.795, "totalQty": 641.0, "orderCount": 499, "uniqueProducts": 5, "margin": 3569.8449999999993, "marginPct": 68.11849316114062}, {"YearMonth": "2019-03", "Category": "Cod Liver Oil", "totalRevenue": 1747.6899999999998, "totalRevenueExVAT": 1458.01, "totalCost": 574.515, "totalQty": 163.0, "orderCount": 142, "uniqueProducts": 2, "margin": 883.495, "marginPct": 60.5959492733246}, {"YearMonth": "2019-03", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3918.35, "totalRevenueExVAT": 3284.43, "totalCost": 827.446, "totalQty": 167.0, "orderCount": 133, "uniqueProducts": 1, "margin": 2456.984, "marginPct": 74.80701369796282}, {"YearMonth": "2019-03", "Category": "Evening Primose Oils", "totalRevenue": 3112.47, "totalRevenueExVAT": 2601.01, "totalCost": 1074.0330000000001, "totalQty": 223.0, "orderCount": 185, "uniqueProducts": 3, "margin": 1526.977, "marginPct": 58.70707917309045}, {"YearMonth": "2019-03", "Category": "Glucosamine", "totalRevenue": 11834.78, "totalRevenueExVAT": 9880.8, "totalCost": 4204.823, "totalQty": 758.0, "orderCount": 561, "uniqueProducts": 10, "margin": 5675.976999999999, "marginPct": 57.44450854181847}, {"YearMonth": "2019-03", "Category": "Herbal Supplements", "totalRevenue": 45911.7, "totalRevenueExVAT": 38366.53, "totalCost": 15512.74, "totalQty": 2497.0, "orderCount": 1799, "uniqueProducts": 19, "margin": 22853.79, "marginPct": 59.566997588783764}, {"YearMonth": "2019-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3030.58, "totalRevenueExVAT": 2533.01, "totalCost": 538.4639999999999, "totalQty": 209.0, "orderCount": 161, "uniqueProducts": 1, "margin": 1994.5460000000003, "marginPct": 78.74212892961339}, {"YearMonth": "2019-03", "Category": "Minerals", "totalRevenue": 1092.3799999999999, "totalRevenueExVAT": 917.5, "totalCost": 255.68900000000002, "totalQty": 137.0, "orderCount": 122, "uniqueProducts": 4, "margin": 661.8109999999999, "marginPct": 72.13198910081744}, {"YearMonth": "2019-03", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2729.85, "totalRevenueExVAT": 2275.69, "totalCost": 603.758, "totalQty": 163.0, "orderCount": 110, "uniqueProducts": 1, "margin": 1671.932, "marginPct": 73.46923350720002}, {"YearMonth": "2019-03", "Category": "Multivitamins", "totalRevenue": 4995.73, "totalRevenueExVAT": 4171.94, "totalCost": 1727.816, "totalQty": 523.0, "orderCount": 412, "uniqueProducts": 6, "margin": 2444.124, "marginPct": 58.58483103783851}, {"YearMonth": "2019-03", "Category": "Omega 3 Supplements", "totalRevenue": 6228.13, "totalRevenueExVAT": 5209.15, "totalCost": 2071.263, "totalQty": 432.0, "orderCount": 374, "uniqueProducts": 6, "margin": 3137.8869999999997, "marginPct": 60.23798508393884}, {"YearMonth": "2019-03", "Category": "Probiotics", "totalRevenue": 2181.5699999999997, "totalRevenueExVAT": 1823.65, "totalCost": 725.689, "totalQty": 119.0, "orderCount": 101, "uniqueProducts": 1, "margin": 1097.9610000000002, "marginPct": 60.20678309982728}, {"YearMonth": "2019-03", "Category": "Vitamin B", "totalRevenue": 5629.639999999999, "totalRevenueExVAT": 4702.47, "totalCost": 1507.358, "totalQty": 505.0, "orderCount": 406, "uniqueProducts": 11, "margin": 3195.112, "marginPct": 67.94539890738271}, {"YearMonth": "2019-03", "Category": "Vitamin C", "totalRevenue": 1929.1799999999998, "totalRevenueExVAT": 1610.44, "totalCost": 512.831, "totalQty": 154.0, "orderCount": 121, "uniqueProducts": 4, "margin": 1097.609, "marginPct": 68.15584560741164}, {"YearMonth": "2019-03", "Category": "Vitamin D", "totalRevenue": 2801.6, "totalRevenueExVAT": 2341.5299999999997, "totalCost": 515.745, "totalQty": 282.0, "orderCount": 229, "uniqueProducts": 1, "margin": 1825.7849999999999, "marginPct": 77.97401698889188}, {"YearMonth": "2019-03", "Category": "Vitamin E", "totalRevenue": 1296.09, "totalRevenueExVAT": 1081.48, "totalCost": 638.0369999999999, "totalQty": 85.0, "orderCount": 73, "uniqueProducts": 3, "margin": 443.4430000000001, "marginPct": 41.00334726485927}, {"YearMonth": "2019-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 2722.31, "totalRevenueExVAT": 2279.98, "totalCost": 791.938, "totalQty": 131.0, "orderCount": 106, "uniqueProducts": 1, "margin": 1488.042, "marginPct": 65.26557250502198}, {"YearMonth": "2019-04", "Category": "Amino Acids", "totalRevenue": 5181.92, "totalRevenueExVAT": 4342.29, "totalCost": 1681.997, "totalQty": 350.0, "orderCount": 291, "uniqueProducts": 6, "margin": 2660.2929999999997, "marginPct": 61.26474740286807}, {"YearMonth": "2019-04", "Category": "Bone Health", "totalRevenue": 5114.92, "totalRevenueExVAT": 4275.639999999999, "totalCost": 1371.732, "totalQty": 514.0, "orderCount": 423, "uniqueProducts": 5, "margin": 2903.9079999999994, "marginPct": 67.91750474782722}, {"YearMonth": "2019-04", "Category": "Cod Liver Oil", "totalRevenue": 1447.86, "totalRevenueExVAT": 1211.52, "totalCost": 485.57099999999997, "totalQty": 130.0, "orderCount": 122, "uniqueProducts": 2, "margin": 725.9490000000001, "marginPct": 59.92051307448495}, {"YearMonth": "2019-04", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3541.5, "totalRevenueExVAT": 2967.91, "totalCost": 744.884, "totalQty": 154.0, "orderCount": 133, "uniqueProducts": 1, "margin": 2223.026, "marginPct": 74.90206913282411}, {"YearMonth": "2019-04", "Category": "Evening Primose Oils", "totalRevenue": 2739.85, "totalRevenueExVAT": 2321.73, "totalCost": 938.446, "totalQty": 183.0, "orderCount": 158, "uniqueProducts": 3, "margin": 1383.284, "marginPct": 59.579882242982606}, {"YearMonth": "2019-04", "Category": "Glucosamine", "totalRevenue": 9248.98, "totalRevenueExVAT": 7740.01, "totalCost": 3391.384, "totalQty": 611.0, "orderCount": 501, "uniqueProducts": 10, "margin": 4348.626, "marginPct": 56.1837258608193}, {"YearMonth": "2019-04", "Category": "Herbal Supplements", "totalRevenue": 36918.75, "totalRevenueExVAT": 30823.69, "totalCost": 12324.41, "totalQty": 2006.0, "orderCount": 1594, "uniqueProducts": 19, "margin": 18499.28, "marginPct": 60.01643541055597}, {"YearMonth": "2019-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2290.15, "totalRevenueExVAT": 1908.5, "totalCost": 405.507, "totalQty": 157.0, "orderCount": 139, "uniqueProducts": 1, "margin": 1502.993, "marginPct": 78.75258056064972}, {"YearMonth": "2019-04", "Category": "Minerals", "totalRevenue": 1245.45, "totalRevenueExVAT": 1041.29, "totalCost": 292.315, "totalQty": 156.0, "orderCount": 142, "uniqueProducts": 4, "margin": 748.9749999999999, "marginPct": 71.92760902342286}, {"YearMonth": "2019-04", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2319.15, "totalRevenueExVAT": 1933.31, "totalCost": 512.4580000000001, "totalQty": 137.0, "orderCount": 114, "uniqueProducts": 1, "margin": 1420.8519999999999, "marginPct": 73.49323181486672}, {"YearMonth": "2019-04", "Category": "Multivitamins", "totalRevenue": 4774.95, "totalRevenueExVAT": 3992.15, "totalCost": 1688.4840000000002, "totalQty": 456.0, "orderCount": 404, "uniqueProducts": 6, "margin": 2303.666, "marginPct": 57.70489585812156}, {"YearMonth": "2019-04", "Category": "Omega 3 Supplements", "totalRevenue": 5799.8, "totalRevenueExVAT": 4855.45, "totalCost": 1898.018, "totalQty": 396.0, "orderCount": 360, "uniqueProducts": 6, "margin": 2957.432, "marginPct": 60.90953464663419}, {"YearMonth": "2019-04", "Category": "Probiotics", "totalRevenue": 1696.27, "totalRevenueExVAT": 1419.07, "totalCost": 566.867, "totalQty": 85.0, "orderCount": 81, "uniqueProducts": 1, "margin": 852.203, "marginPct": 60.05362667098875}, {"YearMonth": "2019-04", "Category": "Vitamin B", "totalRevenue": 4667.92, "totalRevenueExVAT": 3903.26, "totalCost": 1208.773, "totalQty": 429.0, "orderCount": 355, "uniqueProducts": 11, "margin": 2694.487, "marginPct": 69.03170682967571}, {"YearMonth": "2019-04", "Category": "Vitamin C", "totalRevenue": 1785.1799999999998, "totalRevenueExVAT": 1496.52, "totalCost": 472.827, "totalQty": 150.0, "orderCount": 125, "uniqueProducts": 4, "margin": 1023.693, "marginPct": 68.40489936653034}, {"YearMonth": "2019-04", "Category": "Vitamin D", "totalRevenue": 2542.48, "totalRevenueExVAT": 2121.5099999999998, "totalCost": 474.135, "totalQty": 244.0, "orderCount": 196, "uniqueProducts": 1, "margin": 1647.3749999999998, "marginPct": 77.65105985830847}, {"YearMonth": "2019-04", "Category": "Vitamin E", "totalRevenue": 1491.6499999999999, "totalRevenueExVAT": 1243.1, "totalCost": 756.2429999999999, "totalQty": 87.0, "orderCount": 78, "uniqueProducts": 3, "margin": 486.85699999999997, "marginPct": 39.16474941678063}, {"YearMonth": "2019-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 2851.72, "totalRevenueExVAT": 2387.43, "totalCost": 831.274, "totalQty": 133.0, "orderCount": 129, "uniqueProducts": 1, "margin": 1556.156, "marginPct": 65.18121997294162}, {"YearMonth": "2019-05", "Category": "Amino Acids", "totalRevenue": 5808.5, "totalRevenueExVAT": 4855.16, "totalCost": 1879.177, "totalQty": 384.0, "orderCount": 314, "uniqueProducts": 6, "margin": 2975.983, "marginPct": 61.295261124247205}, {"YearMonth": "2019-05", "Category": "Bone Health", "totalRevenue": 5490.01, "totalRevenueExVAT": 4588.95, "totalCost": 1477.607, "totalQty": 558.0, "orderCount": 456, "uniqueProducts": 5, "margin": 3111.343, "marginPct": 67.80076052255963}, {"YearMonth": "2019-05", "Category": "Cod Liver Oil", "totalRevenue": 1744.3, "totalRevenueExVAT": 1456.18, "totalCost": 581.621, "totalQty": 161.0, "orderCount": 140, "uniqueProducts": 2, "margin": 874.5590000000001, "marginPct": 60.05844057740115}, {"YearMonth": "2019-05", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3022.3399999999997, "totalRevenueExVAT": 2522.7, "totalCost": 634.1419999999999, "totalQty": 130.0, "orderCount": 118, "uniqueProducts": 1, "margin": 1888.558, "marginPct": 74.86256788361676}, {"YearMonth": "2019-05", "Category": "Evening Primose Oils", "totalRevenue": 2565.9, "totalRevenueExVAT": 2138.84, "totalCost": 876.443, "totalQty": 172.0, "orderCount": 163, "uniqueProducts": 3, "margin": 1262.3970000000002, "marginPct": 59.02250752744479}, {"YearMonth": "2019-05", "Category": "Glucosamine", "totalRevenue": 9896.3, "totalRevenueExVAT": 8265.9, "totalCost": 3504.547, "totalQty": 639.0, "orderCount": 519, "uniqueProducts": 10, "margin": 4761.352999999999, "marginPct": 57.60235425059581}, {"YearMonth": "2019-05", "Category": "Herbal Supplements", "totalRevenue": 37246.53, "totalRevenueExVAT": 31111.579999999998, "totalCost": 12424.26, "totalQty": 2096.0, "orderCount": 1705, "uniqueProducts": 19, "margin": 18687.32, "marginPct": 60.06548044168763}, {"YearMonth": "2019-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2681.5099999999998, "totalRevenueExVAT": 2241.05, "totalCost": 473.05199999999996, "totalQty": 177.0, "orderCount": 159, "uniqueProducts": 1, "margin": 1767.9980000000003, "marginPct": 78.89150175141117}, {"YearMonth": "2019-05", "Category": "Minerals", "totalRevenue": 1096.81, "totalRevenueExVAT": 919.41, "totalCost": 260.237, "totalQty": 137.0, "orderCount": 124, "uniqueProducts": 4, "margin": 659.173, "marginPct": 71.6952175851905}, {"YearMonth": "2019-05", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1908.0, "totalRevenueExVAT": 1590.6, "totalCost": 423.906, "totalQty": 120.0, "orderCount": 100, "uniqueProducts": 1, "margin": 1166.694, "marginPct": 73.34930215013202}, {"YearMonth": "2019-05", "Category": "Multivitamins", "totalRevenue": 4618.8, "totalRevenueExVAT": 3862.14, "totalCost": 1605.078, "totalQty": 462.0, "orderCount": 421, "uniqueProducts": 6, "margin": 2257.062, "marginPct": 58.44070903695878}, {"YearMonth": "2019-05", "Category": "Omega 3 Supplements", "totalRevenue": 5896.99, "totalRevenueExVAT": 4922.36, "totalCost": 1946.982, "totalQty": 381.0, "orderCount": 339, "uniqueProducts": 6, "margin": 2975.3779999999997, "marginPct": 60.4461680982293}, {"YearMonth": "2019-05", "Category": "Probiotics", "totalRevenue": 2143.92, "totalRevenueExVAT": 1797.2, "totalCost": 716.672, "totalQty": 112.0, "orderCount": 103, "uniqueProducts": 1, "margin": 1080.528, "marginPct": 60.12285777876697}, {"YearMonth": "2019-05", "Category": "Vitamin B", "totalRevenue": 4923.88, "totalRevenueExVAT": 4109.86, "totalCost": 1314.036, "totalQty": 466.0, "orderCount": 397, "uniqueProducts": 11, "margin": 2795.8239999999996, "marginPct": 68.02723207116543}, {"YearMonth": "2019-05", "Category": "Vitamin C", "totalRevenue": 1841.6399999999999, "totalRevenueExVAT": 1536.13, "totalCost": 500.363, "totalQty": 146.0, "orderCount": 122, "uniqueProducts": 4, "margin": 1035.767, "marginPct": 67.42704068015077}, {"YearMonth": "2019-05", "Category": "Vitamin D", "totalRevenue": 2398.73, "totalRevenueExVAT": 2009.6699999999998, "totalCost": 439.09499999999997, "totalQty": 248.0, "orderCount": 210, "uniqueProducts": 1, "margin": 1570.5749999999998, "marginPct": 78.15089044469987}, {"YearMonth": "2019-05", "Category": "Vitamin E", "totalRevenue": 1391.55, "totalRevenueExVAT": 1159.6399999999999, "totalCost": 696.025, "totalQty": 89.0, "orderCount": 67, "uniqueProducts": 3, "margin": 463.6149999999999, "marginPct": 39.97921768824807}, {"YearMonth": "2019-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 3298.65, "totalRevenueExVAT": 2749.41, "totalCost": 967.0980000000001, "totalQty": 147.0, "orderCount": 143, "uniqueProducts": 1, "margin": 1782.312, "marginPct": 64.82525341800604}, {"YearMonth": "2019-06", "Category": "Amino Acids", "totalRevenue": 5021.84, "totalRevenueExVAT": 4200.38, "totalCost": 1542.836, "totalQty": 337.0, "orderCount": 286, "uniqueProducts": 6, "margin": 2657.544, "marginPct": 63.26913279274732}, {"YearMonth": "2019-06", "Category": "Bone Health", "totalRevenue": 5434.799999999999, "totalRevenueExVAT": 4536.47, "totalCost": 1340.352, "totalQty": 535.0, "orderCount": 456, "uniqueProducts": 5, "margin": 3196.1180000000004, "marginPct": 70.45385508997084}, {"YearMonth": "2019-06", "Category": "Cod Liver Oil", "totalRevenue": 1623.4399999999998, "totalRevenueExVAT": 1358.14, "totalCost": 544.0169999999999, "totalQty": 148.0, "orderCount": 142, "uniqueProducts": 2, "margin": 814.1230000000002, "marginPct": 59.943967484942654}, {"YearMonth": "2019-06", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3060.86, "totalRevenueExVAT": 2567.7, "totalCost": 648.401, "totalQty": 130.0, "orderCount": 106, "uniqueProducts": 1, "margin": 1919.299, "marginPct": 74.74778985083927}, {"YearMonth": "2019-06", "Category": "Evening Primose Oils", "totalRevenue": 3356.38, "totalRevenueExVAT": 2809.83, "totalCost": 1139.775, "totalQty": 210.0, "orderCount": 188, "uniqueProducts": 3, "margin": 1670.0549999999998, "marginPct": 59.43615805938437}, {"YearMonth": "2019-06", "Category": "Glucosamine", "totalRevenue": 10047.89, "totalRevenueExVAT": 8412.34, "totalCost": 3608.652, "totalQty": 650.0, "orderCount": 504, "uniqueProducts": 10, "margin": 4803.688, "marginPct": 57.10287506211114}, {"YearMonth": "2019-06", "Category": "Herbal Supplements", "totalRevenue": 42059.64, "totalRevenueExVAT": 35122.1, "totalCost": 14025.305, "totalQty": 2263.0, "orderCount": 1691, "uniqueProducts": 21, "margin": 21096.795, "marginPct": 60.06700909114204}, {"YearMonth": "2019-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2565.6499999999996, "totalRevenueExVAT": 2138.14, "totalCost": 450.537, "totalQty": 167.0, "orderCount": 136, "uniqueProducts": 1, "margin": 1687.6029999999998, "marginPct": 78.92855472513493}, {"YearMonth": "2019-06", "Category": "Minerals", "totalRevenue": 1341.78, "totalRevenueExVAT": 1119.36, "totalCost": 316.983, "totalQty": 161.0, "orderCount": 134, "uniqueProducts": 4, "margin": 802.377, "marginPct": 71.68176457975987}, {"YearMonth": "2019-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2176.0499999999997, "totalRevenueExVAT": 1813.97, "totalCost": 477.826, "totalQty": 119.0, "orderCount": 79, "uniqueProducts": 1, "margin": 1336.144, "marginPct": 73.65855003114716}, {"YearMonth": "2019-06", "Category": "Multivitamins", "totalRevenue": 5478.349999999999, "totalRevenueExVAT": 4577.57, "totalCost": 1944.938, "totalQty": 526.0, "orderCount": 445, "uniqueProducts": 6, "margin": 2632.6319999999996, "marginPct": 57.51156181117929}, {"YearMonth": "2019-06", "Category": "Omega 3 Supplements", "totalRevenue": 6174.0199999999995, "totalRevenueExVAT": 5161.38, "totalCost": 2012.634, "totalQty": 404.0, "orderCount": 348, "uniqueProducts": 6, "margin": 3148.746, "marginPct": 61.0058937725957}, {"YearMonth": "2019-06", "Category": "Probiotics", "totalRevenue": 2353.99, "totalRevenueExVAT": 1965.27, "totalCost": 785.259, "totalQty": 117.0, "orderCount": 94, "uniqueProducts": 1, "margin": 1180.011, "marginPct": 60.043200170968866}, {"YearMonth": "2019-06", "Category": "Vitamin B", "totalRevenue": 5215.349999999999, "totalRevenueExVAT": 4352.9800000000005, "totalCost": 1403.341, "totalQty": 461.0, "orderCount": 388, "uniqueProducts": 11, "margin": 2949.6390000000006, "marginPct": 67.76137266883836}, {"YearMonth": "2019-06", "Category": "Vitamin C", "totalRevenue": 1387.35, "totalRevenueExVAT": 1167.0, "totalCost": 375.17199999999997, "totalQty": 110.0, "orderCount": 93, "uniqueProducts": 4, "margin": 791.828, "marginPct": 67.8515852613539}, {"YearMonth": "2019-06", "Category": "Vitamin D", "totalRevenue": 2639.21, "totalRevenueExVAT": 2205.27, "totalCost": 487.275, "totalQty": 263.0, "orderCount": 211, "uniqueProducts": 1, "margin": 1717.995, "marginPct": 77.90406616876845}, {"YearMonth": "2019-06", "Category": "Vitamin E", "totalRevenue": 1058.2, "totalRevenueExVAT": 881.81, "totalCost": 518.7829999999999, "totalQty": 76.0, "orderCount": 68, "uniqueProducts": 3, "margin": 363.02700000000004, "marginPct": 41.16839228405213}, {"YearMonth": "2019-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 3626.51, "totalRevenueExVAT": 3051.9100000000003, "totalCost": 1084.33, "totalQty": 158.0, "orderCount": 132, "uniqueProducts": 1, "margin": 1967.5800000000004, "marginPct": 64.47044637620377}, {"YearMonth": "2019-07", "Category": "Amino Acids", "totalRevenue": 8844.57, "totalRevenueExVAT": 7394.83, "totalCost": 2694.418, "totalQty": 583.0, "orderCount": 418, "uniqueProducts": 6, "margin": 4700.412, "marginPct": 63.56348962721253}, {"YearMonth": "2019-07", "Category": "Bone Health", "totalRevenue": 7875.0599999999995, "totalRevenueExVAT": 6578.25, "totalCost": 1947.5300000000002, "totalQty": 760.0, "orderCount": 523, "uniqueProducts": 5, "margin": 4630.719999999999, "marginPct": 70.39440580701553}, {"YearMonth": "2019-07", "Category": "Cod Liver Oil", "totalRevenue": 3031.1299999999997, "totalRevenueExVAT": 2528.81, "totalCost": 1009.001, "totalQty": 277.0, "orderCount": 219, "uniqueProducts": 2, "margin": 1519.809, "marginPct": 60.099770247665894}, {"YearMonth": "2019-07", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 6690.98, "totalRevenueExVAT": 5581.66, "totalCost": 1410.105, "totalQty": 279.0, "orderCount": 175, "uniqueProducts": 1, "margin": 4171.555, "marginPct": 74.73681664594405}, {"YearMonth": "2019-07", "Category": "Evening Primose Oils", "totalRevenue": 4516.07, "totalRevenueExVAT": 3768.09, "totalCost": 1564.905, "totalQty": 341.0, "orderCount": 231, "uniqueProducts": 3, "margin": 2203.1850000000004, "marginPct": 58.46954292493014}, {"YearMonth": "2019-07", "Category": "Glucosamine", "totalRevenue": 13651.519999999999, "totalRevenueExVAT": 11397.15, "totalCost": 4563.593, "totalQty": 914.0, "orderCount": 622, "uniqueProducts": 10, "margin": 6833.557, "marginPct": 59.958472074158884}, {"YearMonth": "2019-07", "Category": "Herbal Supplements", "totalRevenue": 69920.26, "totalRevenueExVAT": 58355.4, "totalCost": 23182.413, "totalQty": 3893.0, "orderCount": 2274, "uniqueProducts": 20, "margin": 35172.987, "marginPct": 60.273748444873995}, {"YearMonth": "2019-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 4343.53, "totalRevenueExVAT": 3635.0, "totalCost": 765.984, "totalQty": 284.0, "orderCount": 195, "uniqueProducts": 1, "margin": 2869.016, "marginPct": 78.92753782668501}, {"YearMonth": "2019-07", "Category": "Minerals", "totalRevenue": 1609.27, "totalRevenueExVAT": 1343.5, "totalCost": 384.175, "totalQty": 177.0, "orderCount": 140, "uniqueProducts": 4, "margin": 959.325, "marginPct": 71.40491254186826}, {"YearMonth": "2019-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 3571.7799999999997, "totalRevenueExVAT": 2980.34, "totalCost": 792.13, "totalQty": 218.0, "orderCount": 142, "uniqueProducts": 1, "margin": 2188.21, "marginPct": 73.42148882342283}, {"YearMonth": "2019-07", "Category": "Multivitamins", "totalRevenue": 8497.93, "totalRevenueExVAT": 7100.64, "totalCost": 3002.603, "totalQty": 787.0, "orderCount": 583, "uniqueProducts": 6, "margin": 4098.037, "marginPct": 57.71362863065864}, {"YearMonth": "2019-07", "Category": "Omega 3 Supplements", "totalRevenue": 11001.64, "totalRevenueExVAT": 9200.53, "totalCost": 3593.747, "totalQty": 724.0, "orderCount": 529, "uniqueProducts": 6, "margin": 5606.783000000001, "marginPct": 60.93978281685948}, {"YearMonth": "2019-07", "Category": "Probiotics", "totalRevenue": 4005.72, "totalRevenueExVAT": 3346.36, "totalCost": 1331.156, "totalQty": 220.0, "orderCount": 170, "uniqueProducts": 1, "margin": 2015.2040000000002, "marginPct": 60.22077720269189}, {"YearMonth": "2019-07", "Category": "Vitamin B", "totalRevenue": 7184.62, "totalRevenueExVAT": 6000.13, "totalCost": 1826.391, "totalQty": 641.0, "orderCount": 479, "uniqueProducts": 11, "margin": 4173.739, "marginPct": 69.56080951579382}, {"YearMonth": "2019-07", "Category": "Vitamin C", "totalRevenue": 3119.14, "totalRevenueExVAT": 2607.41, "totalCost": 829.982, "totalQty": 237.0, "orderCount": 164, "uniqueProducts": 4, "margin": 1777.4279999999999, "marginPct": 68.16833562807537}, {"YearMonth": "2019-07", "Category": "Vitamin D", "totalRevenue": 2952.93, "totalRevenueExVAT": 2463.45, "totalCost": 537.645, "totalQty": 305.0, "orderCount": 228, "uniqueProducts": 1, "margin": 1925.8049999999998, "marginPct": 78.17512025817452}, {"YearMonth": "2019-07", "Category": "Vitamin E", "totalRevenue": 2167.6299999999997, "totalRevenueExVAT": 1816.85, "totalCost": 1057.2579999999998, "totalQty": 155.0, "orderCount": 111, "uniqueProducts": 3, "margin": 759.5920000000001, "marginPct": 41.8081844951427}, {"YearMonth": "2019-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 6459.76, "totalRevenueExVAT": 5392.860000000001, "totalCost": 1881.282, "totalQty": 297.0, "orderCount": 224, "uniqueProducts": 1, "margin": 3511.5780000000004, "marginPct": 65.11531914420178}, {"YearMonth": "2019-08", "Category": "Amino Acids", "totalRevenue": 4059.52, "totalRevenueExVAT": 3389.18, "totalCost": 1254.575, "totalQty": 259.0, "orderCount": 210, "uniqueProducts": 6, "margin": 2134.6049999999996, "marginPct": 62.9829339250202}, {"YearMonth": "2019-08", "Category": "Bone Health", "totalRevenue": 4140.219999999999, "totalRevenueExVAT": 3458.5699999999997, "totalCost": 1034.355, "totalQty": 403.0, "orderCount": 343, "uniqueProducts": 5, "margin": 2424.2149999999997, "marginPct": 70.09298640767716}, {"YearMonth": "2019-08", "Category": "Cod Liver Oil", "totalRevenue": 986.0, "totalRevenueExVAT": 821.84, "totalCost": 321.113, "totalQty": 98.0, "orderCount": 94, "uniqueProducts": 2, "margin": 500.72700000000003, "marginPct": 60.92755280833252}, {"YearMonth": "2019-08", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2093.93, "totalRevenueExVAT": 1753.3999999999999, "totalCost": 445.34299999999996, "totalQty": 85.0, "orderCount": 78, "uniqueProducts": 1, "margin": 1308.0569999999998, "marginPct": 74.60117486027147}, {"YearMonth": "2019-08", "Category": "Evening Primose Oils", "totalRevenue": 1815.83, "totalRevenueExVAT": 1514.7, "totalCost": 619.096, "totalQty": 127.0, "orderCount": 114, "uniqueProducts": 3, "margin": 895.604, "marginPct": 59.12748399022909}, {"YearMonth": "2019-08", "Category": "Glucosamine", "totalRevenue": 5258.5599999999995, "totalRevenueExVAT": 4398.68, "totalCost": 1733.796, "totalQty": 334.0, "orderCount": 275, "uniqueProducts": 9, "margin": 2664.884, "marginPct": 60.58372057071667}, {"YearMonth": "2019-08", "Category": "Herbal Supplements", "totalRevenue": 25065.969999999998, "totalRevenueExVAT": 20933.329999999998, "totalCost": 8402.019, "totalQty": 1400.0, "orderCount": 1115, "uniqueProducts": 20, "margin": 12531.310999999998, "marginPct": 59.86296016926117}, {"YearMonth": "2019-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1570.6699999999998, "totalRevenueExVAT": 1313.91, "totalCost": 278.712, "totalQty": 107.0, "orderCount": 90, "uniqueProducts": 1, "margin": 1035.198, "marginPct": 78.78758819097199}, {"YearMonth": "2019-08", "Category": "Minerals", "totalRevenue": 832.71, "totalRevenueExVAT": 695.71, "totalCost": 194.54000000000002, "totalQty": 110.0, "orderCount": 101, "uniqueProducts": 4, "margin": 501.17, "marginPct": 72.03719940779922}, {"YearMonth": "2019-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1450.8, "totalRevenueExVAT": 1209.4199999999998, "totalCost": 320.043, "totalQty": 84.0, "orderCount": 72, "uniqueProducts": 1, "margin": 889.3769999999998, "marginPct": 73.53748077590912}, {"YearMonth": "2019-08", "Category": "Multivitamins", "totalRevenue": 3663.93, "totalRevenueExVAT": 3069.1, "totalCost": 1288.7730000000001, "totalQty": 363.0, "orderCount": 325, "uniqueProducts": 6, "margin": 1780.3269999999998, "marginPct": 58.008113127626984}, {"YearMonth": "2019-08", "Category": "Omega 3 Supplements", "totalRevenue": 3385.99, "totalRevenueExVAT": 2827.28, "totalCost": 1093.378, "totalQty": 239.0, "orderCount": 219, "uniqueProducts": 6, "margin": 1733.9020000000003, "marginPct": 61.327565716872755}, {"YearMonth": "2019-08", "Category": "Probiotics", "totalRevenue": 1528.1, "totalRevenueExVAT": 1273.54, "totalCost": 508.242, "totalQty": 78.0, "orderCount": 70, "uniqueProducts": 1, "margin": 765.298, "marginPct": 60.092183991079985}, {"YearMonth": "2019-08", "Category": "Vitamin B", "totalRevenue": 3405.77, "totalRevenueExVAT": 2842.7, "totalCost": 919.841, "totalQty": 301.0, "orderCount": 261, "uniqueProducts": 11, "margin": 1922.859, "marginPct": 67.64199528617159}, {"YearMonth": "2019-08", "Category": "Vitamin C", "totalRevenue": 1005.9499999999999, "totalRevenueExVAT": 838.33, "totalCost": 269.43399999999997, "totalQty": 77.0, "orderCount": 72, "uniqueProducts": 4, "margin": 568.8960000000001, "marginPct": 67.860627676452}, {"YearMonth": "2019-08", "Category": "Vitamin D", "totalRevenue": 1476.55, "totalRevenueExVAT": 1230.2099999999998, "totalCost": 270.465, "totalQty": 149.0, "orderCount": 123, "uniqueProducts": 1, "margin": 959.7449999999999, "marginPct": 78.01472919257688}, {"YearMonth": "2019-08", "Category": "Vitamin E", "totalRevenue": 1044.35, "totalRevenueExVAT": 870.28, "totalCost": 512.8209999999999, "totalQty": 73.0, "orderCount": 62, "uniqueProducts": 3, "margin": 357.45900000000006, "marginPct": 41.07402215378959}, {"YearMonth": "2019-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 2171.84, "totalRevenueExVAT": 1831.28, "totalCost": 654.782, "totalQty": 88.0, "orderCount": 82, "uniqueProducts": 1, "margin": 1176.498, "marginPct": 64.24457210257307}, {"YearMonth": "2019-09", "Category": "Amino Acids", "totalRevenue": 5616.66, "totalRevenueExVAT": 4695.38, "totalCost": 1811.931, "totalQty": 373.0, "orderCount": 313, "uniqueProducts": 6, "margin": 2883.449, "marginPct": 61.41034378474159}, {"YearMonth": "2019-09", "Category": "Bone Health", "totalRevenue": 6232.66, "totalRevenueExVAT": 5206.95, "totalCost": 1637.123, "totalQty": 646.0, "orderCount": 519, "uniqueProducts": 5, "margin": 3569.8269999999998, "marginPct": 68.55888764055733}, {"YearMonth": "2019-09", "Category": "Cod Liver Oil", "totalRevenue": 1474.6000000000001, "totalRevenueExVAT": 1232.3799999999999, "totalCost": 512.771, "totalQty": 145.0, "orderCount": 139, "uniqueProducts": 2, "margin": 719.6089999999999, "marginPct": 58.39181096739642}, {"YearMonth": "2019-09", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3010.98, "totalRevenueExVAT": 2519.84, "totalCost": 666.2099999999999, "totalQty": 135.0, "orderCount": 124, "uniqueProducts": 1, "margin": 1853.63, "marginPct": 73.56141659787923}, {"YearMonth": "2019-09", "Category": "Evening Primose Oils", "totalRevenue": 2567.81, "totalRevenueExVAT": 2140.83, "totalCost": 930.8340000000001, "totalQty": 167.0, "orderCount": 163, "uniqueProducts": 3, "margin": 1209.9959999999999, "marginPct": 56.51994787068566}, {"YearMonth": "2019-09", "Category": "Glucosamine", "totalRevenue": 9619.9, "totalRevenueExVAT": 8044.23, "totalCost": 3339.696, "totalQty": 601.0, "orderCount": 464, "uniqueProducts": 9, "margin": 4704.534, "marginPct": 58.48333526018028}, {"YearMonth": "2019-09", "Category": "Herbal Supplements", "totalRevenue": 15846.48, "totalRevenueExVAT": 13236.16, "totalCost": 5553.632, "totalQty": 1095.0, "orderCount": 849, "uniqueProducts": 21, "margin": 7682.528, "marginPct": 58.041969876459646}, {"YearMonth": "2019-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2283.3, "totalRevenueExVAT": 1903.17, "totalCost": 421.623, "totalQty": 158.0, "orderCount": 142, "uniqueProducts": 1, "margin": 1481.547, "marginPct": 77.84627752644272}, {"YearMonth": "2019-09", "Category": "Minerals", "totalRevenue": 1145.83, "totalRevenueExVAT": 959.3000000000001, "totalCost": 281.20300000000003, "totalQty": 151.0, "orderCount": 133, "uniqueProducts": 4, "margin": 678.097, "marginPct": 70.68664651308245}, {"YearMonth": "2019-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1557.85, "totalRevenueExVAT": 1298.23, "totalCost": 360.63100000000003, "totalQty": 95.0, "orderCount": 86, "uniqueProducts": 1, "margin": 937.5989999999999, "marginPct": 72.22133212142687}, {"YearMonth": "2019-09", "Category": "Multivitamins", "totalRevenue": 4670.28, "totalRevenueExVAT": 3907.67, "totalCost": 1709.2150000000001, "totalQty": 478.0, "orderCount": 428, "uniqueProducts": 6, "margin": 2198.455, "marginPct": 56.25999636612099}, {"YearMonth": "2019-09", "Category": "Omega 3 Supplements", "totalRevenue": 6105.29, "totalRevenueExVAT": 5104.71, "totalCost": 2162.498, "totalQty": 415.0, "orderCount": 359, "uniqueProducts": 6, "margin": 2942.212, "marginPct": 57.637201721547356}, {"YearMonth": "2019-09", "Category": "Probiotics", "totalRevenue": 2500.75, "totalRevenueExVAT": 2087.19, "totalCost": 877.384, "totalQty": 128.0, "orderCount": 113, "uniqueProducts": 1, "margin": 1209.806, "marginPct": 57.963386179504504}, {"YearMonth": "2019-09", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 19403.34, "totalRevenueExVAT": 16172.34, "totalCost": 6896.536, "totalQty": 911.0, "orderCount": 806, "uniqueProducts": 1, "margin": 9275.804, "marginPct": 57.35597940681435}, {"YearMonth": "2019-09", "Category": "Vitamin B", "totalRevenue": 5274.8099999999995, "totalRevenueExVAT": 4410.73, "totalCost": 1466.245, "totalQty": 486.0, "orderCount": 402, "uniqueProducts": 11, "margin": 2944.4849999999997, "marginPct": 66.75731681603725}, {"YearMonth": "2019-09", "Category": "Vitamin C", "totalRevenue": 1674.5, "totalRevenueExVAT": 1403.04, "totalCost": 471.01099999999997, "totalQty": 137.0, "orderCount": 117, "uniqueProducts": 4, "margin": 932.029, "marginPct": 66.42925362070932}, {"YearMonth": "2019-09", "Category": "Vitamin D", "totalRevenue": 2331.87, "totalRevenueExVAT": 1946.7, "totalCost": 451.14, "totalQty": 243.0, "orderCount": 199, "uniqueProducts": 1, "margin": 1495.56, "marginPct": 76.82539682539682}, {"YearMonth": "2019-09", "Category": "Vitamin E", "totalRevenue": 992.6899999999999, "totalRevenueExVAT": 828.85, "totalCost": 511.08399999999995, "totalQty": 73.0, "orderCount": 61, "uniqueProducts": 3, "margin": 317.7660000000001, "marginPct": 38.33817940519999}, {"YearMonth": "2019-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 2884.64, "totalRevenueExVAT": 2407.4900000000002, "totalCost": 897.056, "totalQty": 131.0, "orderCount": 119, "uniqueProducts": 1, "margin": 1510.4340000000002, "marginPct": 62.73895218671729}, {"YearMonth": "2019-10", "Category": "Amino Acids", "totalRevenue": 7285.44, "totalRevenueExVAT": 6086.28, "totalCost": 2255.188, "totalQty": 474.0, "orderCount": 327, "uniqueProducts": 6, "margin": 3831.0919999999996, "marginPct": 62.946364610238106}, {"YearMonth": "2019-10", "Category": "Bone Health", "totalRevenue": 6986.48, "totalRevenueExVAT": 5835.66, "totalCost": 1730.6680000000001, "totalQty": 686.0, "orderCount": 508, "uniqueProducts": 5, "margin": 4104.992, "marginPct": 70.34323452702866}, {"YearMonth": "2019-10", "Category": "Cod Liver Oil", "totalRevenue": 1836.4099999999999, "totalRevenueExVAT": 1534.29, "totalCost": 602.021, "totalQty": 182.0, "orderCount": 148, "uniqueProducts": 2, "margin": 932.269, "marginPct": 60.762241818691386}, {"YearMonth": "2019-10", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3951.93, "totalRevenueExVAT": 3319.68, "totalCost": 837.014, "totalQty": 169.0, "orderCount": 129, "uniqueProducts": 1, "margin": 2482.6659999999997, "marginPct": 74.78630470406785}, {"YearMonth": "2019-10", "Category": "Evening Primose Oils", "totalRevenue": 2992.27, "totalRevenueExVAT": 2498.69, "totalCost": 1017.157, "totalQty": 215.0, "orderCount": 167, "uniqueProducts": 3, "margin": 1481.533, "marginPct": 59.29238921194705}, {"YearMonth": "2019-10", "Category": "Glucosamine", "totalRevenue": 8981.48, "totalRevenueExVAT": 7501.22, "totalCost": 2944.108, "totalQty": 580.0, "orderCount": 418, "uniqueProducts": 9, "margin": 4557.112, "marginPct": 60.75161107126574}, {"YearMonth": "2019-10", "Category": "Herbal Supplements", "totalRevenue": 14681.179999999998, "totalRevenueExVAT": 12301.19, "totalCost": 4817.589, "totalQty": 1111.0, "orderCount": 769, "uniqueProducts": 19, "margin": 7483.601000000001, "marginPct": 60.83639875491721}, {"YearMonth": "2019-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2787.5899999999997, "totalRevenueExVAT": 2326.9, "totalCost": 494.61899999999997, "totalQty": 189.0, "orderCount": 134, "uniqueProducts": 1, "margin": 1832.2810000000002, "marginPct": 78.74343547208733}, {"YearMonth": "2019-10", "Category": "Minerals", "totalRevenue": 1232.08, "totalRevenueExVAT": 1028.57, "totalCost": 291.027, "totalQty": 147.0, "orderCount": 129, "uniqueProducts": 4, "margin": 737.5429999999999, "marginPct": 71.70566903565143}, {"YearMonth": "2019-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2400.6499999999996, "totalRevenueExVAT": 2001.18, "totalCost": 529.9580000000001, "totalQty": 136.0, "orderCount": 95, "uniqueProducts": 1, "margin": 1471.222, "marginPct": 73.51772454251991}, {"YearMonth": "2019-10", "Category": "Multivitamins", "totalRevenue": 6710.99, "totalRevenueExVAT": 5629.78, "totalCost": 2387.661, "totalQty": 641.0, "orderCount": 483, "uniqueProducts": 6, "margin": 3242.1189999999997, "marginPct": 57.58873348514506}, {"YearMonth": "2019-10", "Category": "Omega 3 Supplements", "totalRevenue": 7323.4, "totalRevenueExVAT": 6131.18, "totalCost": 2397.651, "totalQty": 485.0, "orderCount": 388, "uniqueProducts": 6, "margin": 3733.5290000000005, "marginPct": 60.89413457115923}, {"YearMonth": "2019-10", "Category": "Probiotics", "totalRevenue": 3076.25, "totalRevenueExVAT": 2563.88, "totalCost": 1024.657, "totalQty": 167.0, "orderCount": 137, "uniqueProducts": 1, "margin": 1539.2230000000002, "marginPct": 60.03490803001701}, {"YearMonth": "2019-10", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 30926.399999999998, "totalRevenueExVAT": 25869.74, "totalCost": 10639.192000000001, "totalQty": 1490.0, "orderCount": 990, "uniqueProducts": 1, "margin": 15230.548, "marginPct": 58.87398945640737}, {"YearMonth": "2019-10", "Category": "Vitamin B", "totalRevenue": 5563.799999999999, "totalRevenueExVAT": 4655.87, "totalCost": 1481.475, "totalQty": 515.0, "orderCount": 405, "uniqueProducts": 11, "margin": 3174.395, "marginPct": 68.18049043465561}, {"YearMonth": "2019-10", "Category": "Vitamin C", "totalRevenue": 2153.2999999999997, "totalRevenueExVAT": 1795.6200000000001, "totalCost": 560.172, "totalQty": 183.0, "orderCount": 134, "uniqueProducts": 4, "margin": 1235.448, "marginPct": 68.80342165937114}, {"YearMonth": "2019-10", "Category": "Vitamin D", "totalRevenue": 3051.86, "totalRevenueExVAT": 2543.62, "totalCost": 572.685, "totalQty": 320.0, "orderCount": 258, "uniqueProducts": 1, "margin": 1970.935, "marginPct": 77.48543414503739}, {"YearMonth": "2019-10", "Category": "Vitamin E", "totalRevenue": 1596.34, "totalRevenueExVAT": 1331.6599999999999, "totalCost": 779.986, "totalQty": 116.0, "orderCount": 85, "uniqueProducts": 3, "margin": 551.6739999999999, "marginPct": 41.42754156466364}, {"YearMonth": "2019-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 3516.5, "totalRevenueExVAT": 2942.81, "totalCost": 1032.126, "totalQty": 163.0, "orderCount": 122, "uniqueProducts": 1, "margin": 1910.684, "marginPct": 64.92719543565504}, {"YearMonth": "2019-11", "Category": "Amino Acids", "totalRevenue": 5453.5599999999995, "totalRevenueExVAT": 4558.679999999999, "totalCost": 1696.545, "totalQty": 348.0, "orderCount": 275, "uniqueProducts": 6, "margin": 2862.1349999999993, "marginPct": 62.78429282160624}, {"YearMonth": "2019-11", "Category": "Bone Health", "totalRevenue": 6522.16, "totalRevenueExVAT": 5459.22, "totalCost": 1535.9660000000001, "totalQty": 661.0, "orderCount": 556, "uniqueProducts": 5, "margin": 3923.254, "marginPct": 71.8647352552196}, {"YearMonth": "2019-11", "Category": "Cod Liver Oil", "totalRevenue": 1597.3799999999999, "totalRevenueExVAT": 1333.72, "totalCost": 525.011, "totalQty": 150.0, "orderCount": 138, "uniqueProducts": 2, "margin": 808.7090000000001, "marginPct": 60.635590678703174}, {"YearMonth": "2019-11", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3139.73, "totalRevenueExVAT": 2646.3199999999997, "totalCost": 668.8639999999999, "totalQty": 133.0, "orderCount": 117, "uniqueProducts": 1, "margin": 1977.4559999999997, "marginPct": 74.72474984128903}, {"YearMonth": "2019-11", "Category": "Evening Primose Oils", "totalRevenue": 2437.2799999999997, "totalRevenueExVAT": 2033.5700000000002, "totalCost": 838.947, "totalQty": 168.0, "orderCount": 160, "uniqueProducts": 3, "margin": 1194.623, "marginPct": 58.74511327370093}, {"YearMonth": "2019-11", "Category": "Glucosamine", "totalRevenue": 8163.34, "totalRevenueExVAT": 6818.05, "totalCost": 2695.2889999999998, "totalQty": 511.0, "orderCount": 417, "uniqueProducts": 9, "margin": 4122.761, "marginPct": 60.46833038772084}, {"YearMonth": "2019-11", "Category": "Herbal Supplements", "totalRevenue": 12161.21, "totalRevenueExVAT": 10181.93, "totalCost": 3964.71, "totalQty": 902.0, "orderCount": 711, "uniqueProducts": 19, "margin": 6217.22, "marginPct": 61.06131155881056}, {"YearMonth": "2019-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2507.0899999999997, "totalRevenueExVAT": 2103.17, "totalCost": 443.901, "totalQty": 166.0, "orderCount": 139, "uniqueProducts": 1, "margin": 1659.269, "marginPct": 78.89371757870262}, {"YearMonth": "2019-11", "Category": "Minerals", "totalRevenue": 1130.71, "totalRevenueExVAT": 944.2, "totalCost": 266.1, "totalQty": 142.0, "orderCount": 129, "uniqueProducts": 4, "margin": 678.1, "marginPct": 71.81741156534632}, {"YearMonth": "2019-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2332.46, "totalRevenueExVAT": 1948.6399999999999, "totalCost": 513.3520000000001, "totalQty": 128.0, "orderCount": 103, "uniqueProducts": 1, "margin": 1435.2879999999998, "marginPct": 73.65588307742836}, {"YearMonth": "2019-11", "Category": "Multivitamins", "totalRevenue": 4561.08, "totalRevenueExVAT": 3810.41, "totalCost": 1681.623, "totalQty": 416.0, "orderCount": 370, "uniqueProducts": 5, "margin": 2128.787, "marginPct": 55.86766253500279}, {"YearMonth": "2019-11", "Category": "Omega 3 Supplements", "totalRevenue": 6286.5199999999995, "totalRevenueExVAT": 5251.65, "totalCost": 2113.495, "totalQty": 409.0, "orderCount": 349, "uniqueProducts": 6, "margin": 3138.1549999999997, "marginPct": 59.755600620757285}, {"YearMonth": "2019-11", "Category": "Probiotics", "totalRevenue": 2022.6299999999999, "totalRevenueExVAT": 1687.59, "totalCost": 674.155, "totalQty": 101.0, "orderCount": 91, "uniqueProducts": 1, "margin": 1013.435, "marginPct": 60.05220462316084}, {"YearMonth": "2019-11", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 22710.31, "totalRevenueExVAT": 18952.399999999998, "totalCost": 7670.539000000001, "totalQty": 1025.0, "orderCount": 903, "uniqueProducts": 1, "margin": 11281.860999999997, "marginPct": 59.527347459952296}, {"YearMonth": "2019-11", "Category": "Vitamin B", "totalRevenue": 5076.79, "totalRevenueExVAT": 4251.84, "totalCost": 1294.752, "totalQty": 458.0, "orderCount": 380, "uniqueProducts": 11, "margin": 2957.088, "marginPct": 69.54843079701965}, {"YearMonth": "2019-11", "Category": "Vitamin C", "totalRevenue": 2089.67, "totalRevenueExVAT": 1744.77, "totalCost": 555.0659999999999, "totalQty": 161.0, "orderCount": 139, "uniqueProducts": 4, "margin": 1189.7040000000002, "marginPct": 68.18686703691606}, {"YearMonth": "2019-11", "Category": "Vitamin D", "totalRevenue": 3167.5699999999997, "totalRevenueExVAT": 2651.22, "totalCost": 584.73, "totalQty": 318.0, "orderCount": 246, "uniqueProducts": 1, "margin": 2066.49, "marginPct": 77.94487066331726}, {"YearMonth": "2019-11", "Category": "Vitamin E", "totalRevenue": 1261.6, "totalRevenueExVAT": 1051.32, "totalCost": 619.1139999999999, "totalQty": 88.0, "orderCount": 71, "uniqueProducts": 3, "margin": 432.206, "marginPct": 41.11079404938554}, {"YearMonth": "2019-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 2977.56, "totalRevenueExVAT": 2483.66, "totalCost": 882.08, "totalQty": 124.0, "orderCount": 117, "uniqueProducts": 1, "margin": 1601.58, "marginPct": 64.48467181498273}, {"YearMonth": "2019-12", "Category": "Amino Acids", "totalRevenue": 5535.639999999999, "totalRevenueExVAT": 4625.76, "totalCost": 1691.154, "totalQty": 354.0, "orderCount": 266, "uniqueProducts": 6, "margin": 2934.606, "marginPct": 63.44051572065996}, {"YearMonth": "2019-12", "Category": "Bone Health", "totalRevenue": 5167.259999999999, "totalRevenueExVAT": 4318.7699999999995, "totalCost": 1257.663, "totalQty": 521.0, "orderCount": 427, "uniqueProducts": 5, "margin": 3061.1069999999995, "marginPct": 70.87913919935536}, {"YearMonth": "2019-12", "Category": "Cod Liver Oil", "totalRevenue": 1300.98, "totalRevenueExVAT": 1086.73, "totalCost": 430.95, "totalQty": 122.0, "orderCount": 106, "uniqueProducts": 2, "margin": 655.78, "marginPct": 60.34433575957229}, {"YearMonth": "2019-12", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2862.48, "totalRevenueExVAT": 2392.7599999999998, "totalCost": 605.962, "totalQty": 119.0, "orderCount": 105, "uniqueProducts": 1, "margin": 1786.7979999999998, "marginPct": 74.67518681355422}, {"YearMonth": "2019-12", "Category": "Evening Primose Oils", "totalRevenue": 2540.88, "totalRevenueExVAT": 2124.9700000000003, "totalCost": 878.221, "totalQty": 175.0, "orderCount": 143, "uniqueProducts": 3, "margin": 1246.7490000000003, "marginPct": 58.671369478157345}, {"YearMonth": "2019-12", "Category": "Glucosamine", "totalRevenue": 7240.49, "totalRevenueExVAT": 6042.78, "totalCost": 2355.77, "totalQty": 453.0, "orderCount": 341, "uniqueProducts": 9, "margin": 3687.0099999999998, "marginPct": 61.01512879833454}, {"YearMonth": "2019-12", "Category": "Herbal Supplements", "totalRevenue": 12039.199999999999, "totalRevenueExVAT": 10046.84, "totalCost": 3746.42, "totalQty": 944.0, "orderCount": 682, "uniqueProducts": 19, "margin": 6300.42, "marginPct": 62.710464185753935}, {"YearMonth": "2019-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2369.31, "totalRevenueExVAT": 1977.01, "totalCost": 416.409, "totalQty": 154.0, "orderCount": 118, "uniqueProducts": 1, "margin": 1560.601, "marginPct": 78.93743582480616}, {"YearMonth": "2019-12", "Category": "Minerals", "totalRevenue": 1265.73, "totalRevenueExVAT": 1056.09, "totalCost": 298.769, "totalQty": 160.0, "orderCount": 121, "uniqueProducts": 4, "margin": 757.3209999999999, "marginPct": 71.70989214934333}, {"YearMonth": "2019-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1957.9299999999998, "totalRevenueExVAT": 1634.95, "totalCost": 433.103, "totalQty": 115.0, "orderCount": 80, "uniqueProducts": 1, "margin": 1201.847, "marginPct": 73.5097097770574}, {"YearMonth": "2019-12", "Category": "Multivitamins", "totalRevenue": 4446.4, "totalRevenueExVAT": 3723.2200000000003, "totalCost": 1640.964, "totalQty": 404.0, "orderCount": 347, "uniqueProducts": 5, "margin": 2082.2560000000003, "marginPct": 55.92621440581003}, {"YearMonth": "2019-12", "Category": "Omega 3 Supplements", "totalRevenue": 6273.049999999999, "totalRevenueExVAT": 5243.75, "totalCost": 2071.81, "totalQty": 410.0, "orderCount": 336, "uniqueProducts": 6, "margin": 3171.94, "marginPct": 60.48991656734207}, {"YearMonth": "2019-12", "Category": "Probiotics", "totalRevenue": 1536.9499999999998, "totalRevenueExVAT": 1280.95, "totalCost": 510.471, "totalQty": 81.0, "orderCount": 69, "uniqueProducts": 1, "margin": 770.479, "marginPct": 60.14903001678442}, {"YearMonth": "2019-12", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 22540.16, "totalRevenueExVAT": 18808.579999999998, "totalCost": 7610.957, "totalQty": 1021.0, "orderCount": 750, "uniqueProducts": 2, "margin": 11197.622999999998, "marginPct": 59.53465386541673}, {"YearMonth": "2019-12", "Category": "Vitamin B", "totalRevenue": 4578.78, "totalRevenueExVAT": 3823.68, "totalCost": 1193.415, "totalQty": 412.0, "orderCount": 338, "uniqueProducts": 11, "margin": 2630.265, "marginPct": 68.78883693196083}, {"YearMonth": "2019-12", "Category": "Vitamin C", "totalRevenue": 2181.2999999999997, "totalRevenueExVAT": 1832.92, "totalCost": 578.9359999999999, "totalQty": 183.0, "orderCount": 138, "uniqueProducts": 4, "margin": 1253.9840000000002, "marginPct": 68.41455164437073}, {"YearMonth": "2019-12", "Category": "Vitamin D", "totalRevenue": 2569.5499999999997, "totalRevenueExVAT": 2140.8599999999997, "totalCost": 470.84999999999997, "totalQty": 259.0, "orderCount": 206, "uniqueProducts": 1, "margin": 1670.0099999999998, "marginPct": 78.00650205991985}, {"YearMonth": "2019-12", "Category": "Vitamin E", "totalRevenue": 1111.69, "totalRevenueExVAT": 931.65, "totalCost": 541.757, "totalQty": 80.0, "orderCount": 67, "uniqueProducts": 3, "margin": 389.89300000000003, "marginPct": 41.849728975473624}, {"YearMonth": "2019-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 2556.69, "totalRevenueExVAT": 2136.04, "totalCost": 750.516, "totalQty": 115.0, "orderCount": 101, "uniqueProducts": 1, "margin": 1385.524, "marginPct": 64.8641411209528}, {"YearMonth": "2020-01", "Category": "Amino Acids", "totalRevenue": 9591.59, "totalRevenueExVAT": 8009.5599999999995, "totalCost": 2938.134, "totalQty": 619.0, "orderCount": 427, "uniqueProducts": 6, "margin": 5071.4259999999995, "marginPct": 63.31716099261382}, {"YearMonth": "2020-01", "Category": "Bone Health", "totalRevenue": 8543.199999999999, "totalRevenueExVAT": 7131.349999999999, "totalCost": 2039.5040000000001, "totalQty": 869.0, "orderCount": 672, "uniqueProducts": 5, "margin": 5091.846, "marginPct": 71.40087080286341}, {"YearMonth": "2020-01", "Category": "Cod Liver Oil", "totalRevenue": 2663.8599999999997, "totalRevenueExVAT": 2235.12, "totalCost": 884.0, "totalQty": 254.0, "orderCount": 209, "uniqueProducts": 2, "margin": 1351.12, "marginPct": 60.44955080711551}, {"YearMonth": "2020-01", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 5896.639999999999, "totalRevenueExVAT": 4915.46, "totalCost": 1242.141, "totalQty": 249.0, "orderCount": 184, "uniqueProducts": 1, "margin": 3673.319, "marginPct": 74.72991337535042}, {"YearMonth": "2020-01", "Category": "Evening Primose Oils", "totalRevenue": 4241.09, "totalRevenueExVAT": 3537.8700000000003, "totalCost": 1467.423, "totalQty": 307.0, "orderCount": 255, "uniqueProducts": 3, "margin": 2070.447, "marginPct": 58.522416029984136}, {"YearMonth": "2020-01", "Category": "Glucosamine", "totalRevenue": 14004.8, "totalRevenueExVAT": 11722.710000000001, "totalCost": 4678.688, "totalQty": 913.0, "orderCount": 613, "uniqueProducts": 9, "margin": 7044.022000000001, "marginPct": 60.08868256572073}, {"YearMonth": "2020-01", "Category": "Herbal Supplements", "totalRevenue": 20650.11, "totalRevenueExVAT": 17228.64, "totalCost": 7030.248, "totalQty": 1491.0, "orderCount": 1026, "uniqueProducts": 18, "margin": 10198.392, "marginPct": 59.19441116652272}, {"YearMonth": "2020-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 4125.17, "totalRevenueExVAT": 3442.62, "totalCost": 737.307, "totalQty": 297.0, "orderCount": 190, "uniqueProducts": 1, "margin": 2705.313, "marginPct": 78.58296878540182}, {"YearMonth": "2020-01", "Category": "Minerals", "totalRevenue": 1425.25, "totalRevenueExVAT": 1190.56, "totalCost": 338.452, "totalQty": 172.0, "orderCount": 138, "uniqueProducts": 4, "margin": 852.108, "marginPct": 71.57203332885365}, {"YearMonth": "2020-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 3032.5499999999997, "totalRevenueExVAT": 2528.07, "totalCost": 673.206, "totalQty": 189.0, "orderCount": 122, "uniqueProducts": 1, "margin": 1854.864, "marginPct": 73.37075318325837}, {"YearMonth": "2020-01", "Category": "Multivitamins", "totalRevenue": 10401.4, "totalRevenueExVAT": 8687.78, "totalCost": 3599.811, "totalQty": 1024.0, "orderCount": 743, "uniqueProducts": 6, "margin": 5087.969000000001, "marginPct": 58.564662088588804}, {"YearMonth": "2020-01", "Category": "Omega 3 Supplements", "totalRevenue": 9608.529999999999, "totalRevenueExVAT": 8050.25, "totalCost": 3348.257, "totalQty": 638.0, "orderCount": 516, "uniqueProducts": 6, "margin": 4701.993, "marginPct": 58.408037017483935}, {"YearMonth": "2020-01", "Category": "Probiotics", "totalRevenue": 4239.38, "totalRevenueExVAT": 3535.22, "totalCost": 1408.118, "totalQty": 226.0, "orderCount": 176, "uniqueProducts": 1, "margin": 2127.102, "marginPct": 60.16887209282591}, {"YearMonth": "2020-01", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 43145.09, "totalRevenueExVAT": 36011.19, "totalCost": 14519.975, "totalQty": 2098.0, "orderCount": 1326, "uniqueProducts": 1, "margin": 21491.215000000004, "marginPct": 59.6792691382873}, {"YearMonth": "2020-01", "Category": "Vitamin B", "totalRevenue": 8081.36, "totalRevenueExVAT": 6739.82, "totalCost": 2127.87, "totalQty": 709.0, "orderCount": 552, "uniqueProducts": 11, "margin": 4611.95, "marginPct": 68.42838532779807}, {"YearMonth": "2020-01", "Category": "Vitamin C", "totalRevenue": 4023.2799999999997, "totalRevenueExVAT": 3359.19, "totalCost": 1073.922, "totalQty": 324.0, "orderCount": 231, "uniqueProducts": 4, "margin": 2285.268, "marginPct": 68.03032873996409}, {"YearMonth": "2020-01", "Category": "Vitamin D", "totalRevenue": 4991.92, "totalRevenueExVAT": 4163.88, "totalCost": 919.8, "totalQty": 497.0, "orderCount": 360, "uniqueProducts": 1, "margin": 3244.08, "marginPct": 77.91002622553964}, {"YearMonth": "2020-01", "Category": "Vitamin E", "totalRevenue": 1953.6, "totalRevenueExVAT": 1628.02, "totalCost": 965.8879999999999, "totalQty": 128.0, "orderCount": 98, "uniqueProducts": 3, "margin": 662.1320000000001, "marginPct": 40.67099912777485}, {"YearMonth": "2020-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 5629.09, "totalRevenueExVAT": 4717.46, "totalCost": 1658.288, "totalQty": 253.0, "orderCount": 199, "uniqueProducts": 1, "margin": 3059.172, "marginPct": 64.84786304494368}, {"YearMonth": "2020-02", "Category": "Amino Acids", "totalRevenue": 3539.3999999999996, "totalRevenueExVAT": 2953.94, "totalCost": 1118.18, "totalQty": 234.0, "orderCount": 189, "uniqueProducts": 6, "margin": 1835.76, "marginPct": 62.146150565008085}, {"YearMonth": "2020-02", "Category": "Bone Health", "totalRevenue": 2711.04, "totalRevenueExVAT": 2265.3599999999997, "totalCost": 646.878, "totalQty": 297.0, "orderCount": 254, "uniqueProducts": 4, "margin": 1618.4819999999995, "marginPct": 71.44480347494438}, {"YearMonth": "2020-02", "Category": "Cod Liver Oil", "totalRevenue": 801.8, "totalRevenueExVAT": 668.31, "totalCost": 279.863, "totalQty": 76.0, "orderCount": 71, "uniqueProducts": 2, "margin": 388.44699999999995, "marginPct": 58.12377489488411}, {"YearMonth": "2020-02", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1412.01, "totalRevenueExVAT": 1191.48, "totalCost": 306.834, "totalQty": 62.0, "orderCount": 57, "uniqueProducts": 1, "margin": 884.646, "marginPct": 74.24765837445865}, {"YearMonth": "2020-02", "Category": "Evening Primose Oils", "totalRevenue": 1602.03, "totalRevenueExVAT": 1337.91, "totalCost": 571.792, "totalQty": 108.0, "orderCount": 107, "uniqueProducts": 3, "margin": 766.118, "marginPct": 57.2622971649812}, {"YearMonth": "2020-02", "Category": "Glucosamine", "totalRevenue": 4508.23, "totalRevenueExVAT": 3765.74, "totalCost": 1528.647, "totalQty": 289.0, "orderCount": 232, "uniqueProducts": 9, "margin": 2237.093, "marginPct": 59.40646459925539}, {"YearMonth": "2020-02", "Category": "Herbal Supplements", "totalRevenue": 6684.42, "totalRevenueExVAT": 5580.68, "totalCost": 2192.328, "totalQty": 541.0, "orderCount": 453, "uniqueProducts": 19, "margin": 3388.3520000000003, "marginPct": 60.715755069274714}, {"YearMonth": "2020-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1170.05, "totalRevenueExVAT": 975.07, "totalCost": 215.418, "totalQty": 79.0, "orderCount": 65, "uniqueProducts": 1, "margin": 759.652, "marginPct": 77.90743228691274}, {"YearMonth": "2020-02", "Category": "Minerals", "totalRevenue": 810.84, "totalRevenueExVAT": 676.75, "totalCost": 193.80100000000002, "totalQty": 106.0, "orderCount": 92, "uniqueProducts": 4, "margin": 482.94899999999996, "marginPct": 71.362984854082}, {"YearMonth": "2020-02", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 944.25, "totalRevenueExVAT": 787.15, "totalCost": 217.65, "totalQty": 55.0, "orderCount": 51, "uniqueProducts": 1, "margin": 569.5, "marginPct": 72.34961570221687}, {"YearMonth": "2020-02", "Category": "Multivitamins", "totalRevenue": 2500.7599999999998, "totalRevenueExVAT": 2090.55, "totalCost": 965.689, "totalQty": 239.0, "orderCount": 219, "uniqueProducts": 8, "margin": 1124.8610000000003, "marginPct": 53.80694075721701}, {"YearMonth": "2020-02", "Category": "Omega 3 Supplements", "totalRevenue": 2800.96, "totalRevenueExVAT": 2340.7, "totalCost": 927.135, "totalQty": 208.0, "orderCount": 190, "uniqueProducts": 6, "margin": 1413.5649999999998, "marginPct": 60.39069509121203}, {"YearMonth": "2020-02", "Category": "Probiotics", "totalRevenue": 1035.1399999999999, "totalRevenueExVAT": 866.1800000000001, "totalCost": 328.339, "totalQty": 54.0, "orderCount": 48, "uniqueProducts": 1, "margin": 537.8410000000001, "marginPct": 62.09344478053062}, {"YearMonth": "2020-02", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 13852.57, "totalRevenueExVAT": 11566.63, "totalCost": 4860.493, "totalQty": 631.0, "orderCount": 552, "uniqueProducts": 1, "margin": 6706.136999999999, "marginPct": 57.978313475921674}, {"YearMonth": "2020-02", "Category": "Vitamin B", "totalRevenue": 3633.81, "totalRevenueExVAT": 3030.34, "totalCost": 1035.688, "totalQty": 329.0, "orderCount": 278, "uniqueProducts": 12, "margin": 1994.652, "marginPct": 65.82271296290185}, {"YearMonth": "2020-02", "Category": "Vitamin C", "totalRevenue": 1141.1, "totalRevenueExVAT": 950.9399999999999, "totalCost": 321.922, "totalQty": 94.0, "orderCount": 75, "uniqueProducts": 4, "margin": 629.0179999999999, "marginPct": 66.146970366164}, {"YearMonth": "2020-02", "Category": "Vitamin D", "totalRevenue": 1823.3, "totalRevenueExVAT": 1519.11, "totalCost": 340.065, "totalQty": 184.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1179.0449999999998, "marginPct": 77.61419515374132}, {"YearMonth": "2020-02", "Category": "Vitamin E", "totalRevenue": 977.1999999999999, "totalRevenueExVAT": 814.38, "totalCost": 458.09799999999996, "totalQty": 56.0, "orderCount": 43, "uniqueProducts": 3, "margin": 356.28200000000004, "marginPct": 43.74886416660528}, {"YearMonth": "2020-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 1430.98, "totalRevenueExVAT": 1198.19, "totalCost": 429.096, "totalQty": 59.0, "orderCount": 57, "uniqueProducts": 1, "margin": 769.094, "marginPct": 64.18798354184227}, {"YearMonth": "2020-03", "Category": "Amino Acids", "totalRevenue": 5908.83, "totalRevenueExVAT": 4936.57, "totalCost": 2108.48, "totalQty": 421.0, "orderCount": 329, "uniqueProducts": 6, "margin": 2828.0899999999997, "marginPct": 57.28856270649458}, {"YearMonth": "2020-03", "Category": "Bone Health", "totalRevenue": 8394.46, "totalRevenueExVAT": 7010.29, "totalCost": 2153.45, "totalQty": 1051.0, "orderCount": 780, "uniqueProducts": 5, "margin": 4856.84, "marginPct": 69.28158464200482}, {"YearMonth": "2020-03", "Category": "Cod Liver Oil", "totalRevenue": 1942.85, "totalRevenueExVAT": 1619.41, "totalCost": 803.76, "totalQty": 231.0, "orderCount": 184, "uniqueProducts": 2, "margin": 815.6500000000001, "marginPct": 50.36710900883655}, {"YearMonth": "2020-03", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2914.2, "totalRevenueExVAT": 2428.29, "totalCost": 676.0500000000001, "totalQty": 126.0, "orderCount": 118, "uniqueProducts": 1, "margin": 1752.2399999999998, "marginPct": 72.15942082700171}, {"YearMonth": "2020-03", "Category": "Evening Primose Oils", "totalRevenue": 2522.11, "totalRevenueExVAT": 2103.86, "totalCost": 1083.32, "totalQty": 193.0, "orderCount": 174, "uniqueProducts": 3, "margin": 1020.5400000000002, "marginPct": 48.50798056904927}, {"YearMonth": "2020-03", "Category": "Glucosamine", "totalRevenue": 7587.9, "totalRevenueExVAT": 6330.86, "totalCost": 2864.069, "totalQty": 547.0, "orderCount": 429, "uniqueProducts": 9, "margin": 3466.7909999999997, "marginPct": 54.760190558628686}, {"YearMonth": "2020-03", "Category": "Herbal Supplements", "totalRevenue": 11880.119999999999, "totalRevenueExVAT": 9929.45, "totalCost": 4228.9, "totalQty": 1012.0, "orderCount": 782, "uniqueProducts": 18, "margin": 5700.550000000001, "marginPct": 57.410531298309586}, {"YearMonth": "2020-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2347.9, "totalRevenueExVAT": 1956.6200000000001, "totalCost": 501.8, "totalQty": 162.0, "orderCount": 149, "uniqueProducts": 1, "margin": 1454.8200000000002, "marginPct": 74.35373245699216}, {"YearMonth": "2020-03", "Category": "Minerals", "totalRevenue": 2696.28, "totalRevenueExVAT": 2249.2, "totalCost": 738.41, "totalQty": 378.0, "orderCount": 303, "uniqueProducts": 4, "margin": 1510.79, "marginPct": 67.17010492619599}, {"YearMonth": "2020-03", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1383.8999999999999, "totalRevenueExVAT": 1153.66, "totalCost": 360.46, "totalQty": 82.0, "orderCount": 77, "uniqueProducts": 1, "margin": 793.2, "marginPct": 68.75509248825476}, {"YearMonth": "2020-03", "Category": "Multivitamins", "totalRevenue": 6423.05, "totalRevenueExVAT": 5367.349999999999, "totalCost": 2623.61, "totalQty": 744.0, "orderCount": 598, "uniqueProducts": 5, "margin": 2743.7399999999993, "marginPct": 51.11908111079023}, {"YearMonth": "2020-03", "Category": "Omega 3 Supplements", "totalRevenue": 6863.339999999999, "totalRevenueExVAT": 5721.2699999999995, "totalCost": 2280.83, "totalQty": 500.0, "orderCount": 401, "uniqueProducts": 6, "margin": 3440.4399999999996, "marginPct": 60.13420097286092}, {"YearMonth": "2020-03", "Category": "Probiotics", "totalRevenue": 2958.77, "totalRevenueExVAT": 2471.33, "totalCost": 817.75, "totalQty": 155.0, "orderCount": 144, "uniqueProducts": 1, "margin": 1653.58, "marginPct": 66.91052995755322}, {"YearMonth": "2020-03", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 21791.97, "totalRevenueExVAT": 18181.95, "totalCost": 8821.0, "totalQty": 1030.0, "orderCount": 856, "uniqueProducts": 1, "margin": 9360.95, "marginPct": 51.48485173482492}, {"YearMonth": "2020-03", "Category": "Vitamin B", "totalRevenue": 7823.0599999999995, "totalRevenueExVAT": 6532.96, "totalCost": 2801.83, "totalQty": 708.0, "orderCount": 589, "uniqueProducts": 11, "margin": 3731.13, "marginPct": 57.112396218559425}, {"YearMonth": "2020-03", "Category": "Vitamin C", "totalRevenue": 10342.949999999999, "totalRevenueExVAT": 8637.57, "totalCost": 3350.19, "totalQty": 896.0, "orderCount": 648, "uniqueProducts": 4, "margin": 5287.379999999999, "marginPct": 61.21374414331808}, {"YearMonth": "2020-03", "Category": "Vitamin D", "totalRevenue": 4145.0599999999995, "totalRevenueExVAT": 3459.8399999999997, "totalCost": 816.0, "totalQty": 446.0, "orderCount": 309, "uniqueProducts": 1, "margin": 2643.8399999999997, "marginPct": 76.41509433962264}, {"YearMonth": "2020-03", "Category": "Vitamin E", "totalRevenue": 1913.9299999999998, "totalRevenueExVAT": 1599.36, "totalCost": 689.8, "totalQty": 135.0, "orderCount": 104, "uniqueProducts": 3, "margin": 909.56, "marginPct": 56.870248099239696}, {"YearMonth": "2020-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 2581.9, "totalRevenueExVAT": 2152.02, "totalCost": 752.72, "totalQty": 112.0, "orderCount": 109, "uniqueProducts": 1, "margin": 1399.3, "marginPct": 65.0226299012091}, {"YearMonth": "2020-04", "Category": "Amino Acids", "totalRevenue": 6495.61, "totalRevenueExVAT": 5418.389999999999, "totalCost": 2169.82, "totalQty": 547.0, "orderCount": 415, "uniqueProducts": 6, "margin": 3248.5699999999993, "marginPct": 59.95452523720145}, {"YearMonth": "2020-04", "Category": "Bone Health", "totalRevenue": 13467.24, "totalRevenueExVAT": 11236.06, "totalCost": 3250.95, "totalQty": 2067.0, "orderCount": 1390, "uniqueProducts": 5, "margin": 7985.11, "marginPct": 71.0668152359457}, {"YearMonth": "2020-04", "Category": "Cod Liver Oil", "totalRevenue": 1635.8400000000001, "totalRevenueExVAT": 1367.08, "totalCost": 585.39, "totalQty": 273.0, "orderCount": 194, "uniqueProducts": 2, "margin": 781.6899999999999, "marginPct": 57.17953594522632}, {"YearMonth": "2020-04", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2448.9, "totalRevenueExVAT": 2040.58, "totalCost": 570.24, "totalQty": 102.0, "orderCount": 96, "uniqueProducts": 1, "margin": 1470.34, "marginPct": 72.05500396945966}, {"YearMonth": "2020-04", "Category": "Evening Primose Oils", "totalRevenue": 3050.27, "totalRevenueExVAT": 2545.79, "totalCost": 1181.47, "totalQty": 325.0, "orderCount": 246, "uniqueProducts": 3, "margin": 1364.32, "marginPct": 53.59122315666257}, {"YearMonth": "2020-04", "Category": "Glucosamine", "totalRevenue": 6756.67, "totalRevenueExVAT": 5655.49, "totalCost": 2385.287, "totalQty": 599.0, "orderCount": 434, "uniqueProducts": 8, "margin": 3270.203, "marginPct": 57.82351308197875}, {"YearMonth": "2020-04", "Category": "Herbal Supplements", "totalRevenue": 13224.16, "totalRevenueExVAT": 11042.32, "totalCost": 4789.03, "totalQty": 1261.0, "orderCount": 944, "uniqueProducts": 18, "margin": 6253.29, "marginPct": 56.63021901194677}, {"YearMonth": "2020-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2216.18, "totalRevenueExVAT": 1849.52, "totalCost": 480.46000000000004, "totalQty": 170.0, "orderCount": 140, "uniqueProducts": 1, "margin": 1369.06, "marginPct": 74.02244906786626}, {"YearMonth": "2020-04", "Category": "Minerals", "totalRevenue": 3193.6600000000003, "totalRevenueExVAT": 2665.18, "totalCost": 817.43, "totalQty": 522.0, "orderCount": 407, "uniqueProducts": 4, "margin": 1847.75, "marginPct": 69.32927607140982}, {"YearMonth": "2020-04", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1487.55, "totalRevenueExVAT": 1240.07, "totalCost": 387.77, "totalQty": 89.0, "orderCount": 80, "uniqueProducts": 1, "margin": 852.3, "marginPct": 68.7299910488924}, {"YearMonth": "2020-04", "Category": "Multivitamins", "totalRevenue": 10083.19, "totalRevenueExVAT": 8418.52, "totalCost": 3790.6, "totalQty": 1452.0, "orderCount": 1068, "uniqueProducts": 6, "margin": 4627.92, "marginPct": 54.9730831547588}, {"YearMonth": "2020-04", "Category": "Omega 3 Supplements", "totalRevenue": 5742.74, "totalRevenueExVAT": 4797.0599999999995, "totalCost": 1680.65, "totalQty": 584.0, "orderCount": 424, "uniqueProducts": 6, "margin": 3116.4099999999994, "marginPct": 64.96499939546305}, {"YearMonth": "2020-04", "Category": "Probiotics", "totalRevenue": 2257.41, "totalRevenueExVAT": 1885.8100000000002, "totalCost": 633.29, "totalQty": 159.0, "orderCount": 134, "uniqueProducts": 1, "margin": 1252.5200000000002, "marginPct": 66.41814392754307}, {"YearMonth": "2020-04", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 22304.07, "totalRevenueExVAT": 18623.43, "totalCost": 9023.28, "totalQty": 861.0, "orderCount": 766, "uniqueProducts": 1, "margin": 9600.15, "marginPct": 51.54877484974571}, {"YearMonth": "2020-04", "Category": "Vitamin B", "totalRevenue": 11079.8, "totalRevenueExVAT": 9243.26, "totalCost": 3844.67, "totalQty": 1262.0, "orderCount": 1022, "uniqueProducts": 11, "margin": 5398.59, "marginPct": 58.40569236394951}, {"YearMonth": "2020-04", "Category": "Vitamin C", "totalRevenue": 6128.29, "totalRevenueExVAT": 5111.62, "totalCost": 1785.26, "totalQty": 897.0, "orderCount": 606, "uniqueProducts": 3, "margin": 3326.3599999999997, "marginPct": 65.07447736725342}, {"YearMonth": "2020-04", "Category": "Vitamin D", "totalRevenue": 8260.06, "totalRevenueExVAT": 6890.1, "totalCost": 1428.0, "totalQty": 1190.0, "orderCount": 703, "uniqueProducts": 1, "margin": 5462.1, "marginPct": 79.27461139896373}, {"YearMonth": "2020-04", "Category": "Vitamin E", "totalRevenue": 1940.8999999999999, "totalRevenueExVAT": 1617.4, "totalCost": 680.08, "totalQty": 142.0, "orderCount": 117, "uniqueProducts": 2, "margin": 937.32, "marginPct": 57.95226907382218}, {"YearMonth": "2020-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 2513.52, "totalRevenueExVAT": 2098.82, "totalCost": 698.8000000000001, "totalQty": 130.0, "orderCount": 117, "uniqueProducts": 1, "margin": 1400.02, "marginPct": 66.70510096149265}, {"YearMonth": "2020-05", "Category": "Amino Acids", "totalRevenue": 5892.66, "totalRevenueExVAT": 4920.99, "totalCost": 1953.61, "totalQty": 491.0, "orderCount": 360, "uniqueProducts": 6, "margin": 2967.38, "marginPct": 60.30046799526112}, {"YearMonth": "2020-05", "Category": "Bone Health", "totalRevenue": 12910.9, "totalRevenueExVAT": 10776.789999999999, "totalCost": 3210.1099999999997, "totalQty": 1975.0, "orderCount": 1265, "uniqueProducts": 5, "margin": 7566.679999999999, "marginPct": 70.21274424016799}, {"YearMonth": "2020-05", "Category": "Cod Liver Oil", "totalRevenue": 2183.78, "totalRevenueExVAT": 1822.8999999999999, "totalCost": 775.05, "totalQty": 365.0, "orderCount": 240, "uniqueProducts": 2, "margin": 1047.85, "marginPct": 57.482582697898955}, {"YearMonth": "2020-05", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3160.83, "totalRevenueExVAT": 2642.43, "totalCost": 746.52, "totalQty": 117.0, "orderCount": 105, "uniqueProducts": 1, "margin": 1895.9099999999999, "marginPct": 71.74873128143413}, {"YearMonth": "2020-05", "Category": "Evening Primose Oils", "totalRevenue": 2872.14, "totalRevenueExVAT": 2396.94, "totalCost": 1113.75, "totalQty": 306.0, "orderCount": 238, "uniqueProducts": 3, "margin": 1283.19, "marginPct": 53.53450649578212}, {"YearMonth": "2020-05", "Category": "Glucosamine", "totalRevenue": 7984.62, "totalRevenueExVAT": 6671.9, "totalCost": 2887.323, "totalQty": 736.0, "orderCount": 507, "uniqueProducts": 8, "margin": 3784.5769999999998, "marginPct": 56.72412656064989}, {"YearMonth": "2020-05", "Category": "Herbal Supplements", "totalRevenue": 11650.67, "totalRevenueExVAT": 9735.12, "totalCost": 4249.45, "totalQty": 1149.0, "orderCount": 848, "uniqueProducts": 17, "margin": 5485.670000000001, "marginPct": 56.34927972125665}, {"YearMonth": "2020-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2671.56, "totalRevenueExVAT": 2229.04, "totalCost": 558.75, "totalQty": 149.0, "orderCount": 136, "uniqueProducts": 1, "margin": 1670.29, "marginPct": 74.9331550802139}, {"YearMonth": "2020-05", "Category": "Minerals", "totalRevenue": 1920.05, "totalRevenueExVAT": 1604.27, "totalCost": 489.7, "totalQty": 300.0, "orderCount": 239, "uniqueProducts": 3, "margin": 1114.57, "marginPct": 69.47521302523889}, {"YearMonth": "2020-05", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1623.8799999999999, "totalRevenueExVAT": 1356.48, "totalCost": 423.68, "totalQty": 96.0, "orderCount": 80, "uniqueProducts": 1, "margin": 932.8, "marginPct": 68.76621844774711}, {"YearMonth": "2020-05", "Category": "Multivitamins", "totalRevenue": 9088.82, "totalRevenueExVAT": 7585.16, "totalCost": 3399.6, "totalQty": 1317.0, "orderCount": 989, "uniqueProducts": 6, "margin": 4185.5599999999995, "marginPct": 55.180905874101526}, {"YearMonth": "2020-05", "Category": "Omega 3 Supplements", "totalRevenue": 6125.049999999999, "totalRevenueExVAT": 5125.79, "totalCost": 1778.45, "totalQty": 616.0, "orderCount": 454, "uniqueProducts": 6, "margin": 3347.34, "marginPct": 65.30388486457697}, {"YearMonth": "2020-05", "Category": "Probiotics", "totalRevenue": 2092.5, "totalRevenueExVAT": 1744.5, "totalCost": 586.5, "totalQty": 150.0, "orderCount": 134, "uniqueProducts": 1, "margin": 1158.0, "marginPct": 66.38005159071368}, {"YearMonth": "2020-05", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 21876.86, "totalRevenueExVAT": 18266.37, "totalCost": 8857.92, "totalQty": 969.0, "orderCount": 823, "uniqueProducts": 1, "margin": 9408.449999999999, "marginPct": 51.506949656664126}, {"YearMonth": "2020-05", "Category": "Vitamin B", "totalRevenue": 6611.8099999999995, "totalRevenueExVAT": 5516.43, "totalCost": 2502.73, "totalQty": 845.0, "orderCount": 677, "uniqueProducts": 11, "margin": 3013.7000000000003, "marginPct": 54.63134672242737}, {"YearMonth": "2020-05", "Category": "Vitamin C", "totalRevenue": 7418.23, "totalRevenueExVAT": 6188.38, "totalCost": 1903.16, "totalQty": 899.0, "orderCount": 650, "uniqueProducts": 3, "margin": 4285.22, "marginPct": 69.24623245502055}, {"YearMonth": "2020-05", "Category": "Vitamin D", "totalRevenue": 6754.240000000001, "totalRevenueExVAT": 5627.88, "totalCost": 1166.3999999999999, "totalQty": 972.0, "orderCount": 586, "uniqueProducts": 1, "margin": 4461.4800000000005, "marginPct": 79.27461139896373}, {"YearMonth": "2020-05", "Category": "Vitamin E", "totalRevenue": 1614.1899999999998, "totalRevenueExVAT": 1346.5, "totalCost": 577.48, "totalQty": 123.0, "orderCount": 103, "uniqueProducts": 3, "margin": 769.02, "marginPct": 57.112513924990715}, {"YearMonth": "2020-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 1832.84, "totalRevenueExVAT": 1532.72, "totalCost": 518.5600000000001, "totalQty": 112.0, "orderCount": 92, "uniqueProducts": 1, "margin": 1014.16, "marginPct": 66.16733649981732}, {"YearMonth": "2020-06", "Category": "Amino Acids", "totalRevenue": 6048.889999999999, "totalRevenueExVAT": 5056.7699999999995, "totalCost": 2056.8, "totalQty": 485.0, "orderCount": 383, "uniqueProducts": 6, "margin": 2999.9699999999993, "marginPct": 59.325814699897364}, {"YearMonth": "2020-06", "Category": "Bone Health", "totalRevenue": 10008.21, "totalRevenueExVAT": 8344.77, "totalCost": 2691.2, "totalQty": 1302.0, "orderCount": 940, "uniqueProducts": 5, "margin": 5653.570000000001, "marginPct": 67.74986009200973}, {"YearMonth": "2020-06", "Category": "Cod Liver Oil", "totalRevenue": 2474.32, "totalRevenueExVAT": 2072.67, "totalCost": 923.0699999999999, "totalQty": 374.0, "orderCount": 251, "uniqueProducts": 2, "margin": 1149.6000000000001, "marginPct": 55.46469047171041}, {"YearMonth": "2020-06", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3601.6, "totalRevenueExVAT": 3001.12, "totalCost": 850.4000000000001, "totalQty": 128.0, "orderCount": 112, "uniqueProducts": 1, "margin": 2150.72, "marginPct": 71.66391213946793}, {"YearMonth": "2020-06", "Category": "Evening Primose Oils", "totalRevenue": 3241.5499999999997, "totalRevenueExVAT": 2707.01, "totalCost": 1273.81, "totalQty": 314.0, "orderCount": 233, "uniqueProducts": 3, "margin": 1433.2000000000003, "marginPct": 52.94402311036901}, {"YearMonth": "2020-06", "Category": "Glucosamine", "totalRevenue": 8116.62, "totalRevenueExVAT": 6776.59, "totalCost": 2977.892, "totalQty": 696.0, "orderCount": 493, "uniqueProducts": 8, "margin": 3798.6980000000003, "marginPct": 56.05618755155617}, {"YearMonth": "2020-06", "Category": "Herbal Supplements", "totalRevenue": 14452.859999999999, "totalRevenueExVAT": 12073.61, "totalCost": 5332.48, "totalQty": 1355.0, "orderCount": 1001, "uniqueProducts": 19, "margin": 6741.130000000001, "marginPct": 55.833590781878826}, {"YearMonth": "2020-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2539.46, "totalRevenueExVAT": 2118.89, "totalCost": 534.54, "totalQty": 151.0, "orderCount": 133, "uniqueProducts": 1, "margin": 1584.35, "marginPct": 74.77264039190331}, {"YearMonth": "2020-06", "Category": "Minerals", "totalRevenue": 1083.55, "totalRevenueExVAT": 902.93, "totalCost": 286.04, "totalQty": 142.0, "orderCount": 130, "uniqueProducts": 2, "margin": 616.8899999999999, "marginPct": 68.32091081257681}, {"YearMonth": "2020-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1638.1499999999999, "totalRevenueExVAT": 1365.61, "totalCost": 426.65999999999997, "totalQty": 97.0, "orderCount": 79, "uniqueProducts": 1, "margin": 938.9499999999999, "marginPct": 68.756819296871}, {"YearMonth": "2020-06", "Category": "Multivitamins", "totalRevenue": 9200.89, "totalRevenueExVAT": 7688.18, "totalCost": 3499.35, "totalQty": 1213.0, "orderCount": 954, "uniqueProducts": 6, "margin": 4188.83, "marginPct": 54.4840261284205}, {"YearMonth": "2020-06", "Category": "Omega 3 Supplements", "totalRevenue": 6886.21, "totalRevenueExVAT": 5753.97, "totalCost": 2048.13, "totalQty": 619.0, "orderCount": 471, "uniqueProducts": 6, "margin": 3705.84, "marginPct": 64.40492390471275}, {"YearMonth": "2020-06", "Category": "Probiotics", "totalRevenue": 2799.1499999999996, "totalRevenueExVAT": 2333.31, "totalCost": 809.37, "totalQty": 177.0, "orderCount": 147, "uniqueProducts": 1, "margin": 1523.94, "marginPct": 65.31236740938839}, {"YearMonth": "2020-06", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 26792.739999999998, "totalRevenueExVAT": 22356.93, "totalCost": 10847.08, "totalQty": 1276.0, "orderCount": 1077, "uniqueProducts": 1, "margin": 11509.85, "marginPct": 51.48224733896828}, {"YearMonth": "2020-06", "Category": "Vitamin B", "totalRevenue": 9125.0, "totalRevenueExVAT": 7614.13, "totalCost": 3253.79, "totalQty": 946.0, "orderCount": 757, "uniqueProducts": 11, "margin": 4360.34, "marginPct": 57.26642439779725}, {"YearMonth": "2020-06", "Category": "Vitamin C", "totalRevenue": 5818.469999999999, "totalRevenueExVAT": 4858.679999999999, "totalCost": 1585.23, "totalQty": 614.0, "orderCount": 430, "uniqueProducts": 3, "margin": 3273.4499999999994, "marginPct": 67.37323717552916}, {"YearMonth": "2020-06", "Category": "Vitamin D", "totalRevenue": 6247.74, "totalRevenueExVAT": 5212.29, "totalCost": 1194.0, "totalQty": 726.0, "orderCount": 505, "uniqueProducts": 1, "margin": 4018.29, "marginPct": 77.0926022918909}, {"YearMonth": "2020-06", "Category": "Vitamin E", "totalRevenue": 1919.9599999999998, "totalRevenueExVAT": 1602.44, "totalCost": 702.79, "totalQty": 141.0, "orderCount": 117, "uniqueProducts": 3, "margin": 899.6500000000001, "marginPct": 56.14250767579442}, {"YearMonth": "2020-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 2235.35, "totalRevenueExVAT": 1863.17, "totalCost": 686.56, "totalQty": 133.0, "orderCount": 107, "uniqueProducts": 1, "margin": 1176.6100000000001, "marginPct": 63.150973877853346}, {"YearMonth": "2020-07", "Category": "Amino Acids", "totalRevenue": 6289.04, "totalRevenueExVAT": 5249.9, "totalCost": 2155.27, "totalQty": 450.0, "orderCount": 351, "uniqueProducts": 7, "margin": 3094.6299999999997, "marginPct": 58.946456122973764}, {"YearMonth": "2020-07", "Category": "Bone Health", "totalRevenue": 7340.63, "totalRevenueExVAT": 6120.21, "totalCost": 2085.9, "totalQty": 788.0, "orderCount": 664, "uniqueProducts": 5, "margin": 4034.31, "marginPct": 65.91783615268103}, {"YearMonth": "2020-07", "Category": "Cod Liver Oil", "totalRevenue": 2183.1, "totalRevenueExVAT": 1819.29, "totalCost": 870.15, "totalQty": 268.0, "orderCount": 238, "uniqueProducts": 2, "margin": 949.14, "marginPct": 52.170901835331364}, {"YearMonth": "2020-07", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 443.65, "totalRevenueExVAT": 369.68, "totalCost": 104.11, "totalQty": 17.0, "orderCount": 16, "uniqueProducts": 1, "margin": 265.57, "marginPct": 71.83780566976844}, {"YearMonth": "2020-07", "Category": "Evening Primose Oils", "totalRevenue": 3330.2, "totalRevenueExVAT": 2778.62, "totalCost": 1302.31, "totalQty": 260.0, "orderCount": 228, "uniqueProducts": 3, "margin": 1476.31, "marginPct": 53.13105066543824}, {"YearMonth": "2020-07", "Category": "Glucosamine", "totalRevenue": 11016.06, "totalRevenueExVAT": 9191.07, "totalCost": 4190.325, "totalQty": 783.0, "orderCount": 600, "uniqueProducts": 9, "margin": 5000.745, "marginPct": 54.408735870796335}, {"YearMonth": "2020-07", "Category": "Herbal Supplements", "totalRevenue": 15750.21, "totalRevenueExVAT": 13136.52, "totalCost": 5896.39, "totalQty": 1298.0, "orderCount": 1001, "uniqueProducts": 17, "margin": 7240.13, "marginPct": 55.11452043615813}, {"YearMonth": "2020-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2428.85, "totalRevenueExVAT": 2023.99, "totalCost": 537.09, "totalQty": 183.0, "orderCount": 147, "uniqueProducts": 1, "margin": 1486.9, "marginPct": 73.46380169862499}, {"YearMonth": "2020-07", "Category": "Minerals", "totalRevenue": 4788.74, "totalRevenueExVAT": 4000.5899999999997, "totalCost": 1172.6599999999999, "totalQty": 471.0, "orderCount": 398, "uniqueProducts": 5, "margin": 2827.93, "marginPct": 70.68782354602696}, {"YearMonth": "2020-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1921.9299999999998, "totalRevenueExVAT": 1604.95, "totalCost": 501.8, "totalQty": 115.0, "orderCount": 102, "uniqueProducts": 1, "margin": 1103.15, "marginPct": 68.73422848063802}, {"YearMonth": "2020-07", "Category": "Multivitamins", "totalRevenue": 9540.84, "totalRevenueExVAT": 7964.98, "totalCost": 3583.91, "totalQty": 1064.0, "orderCount": 893, "uniqueProducts": 6, "margin": 4381.07, "marginPct": 55.004155691539715}, {"YearMonth": "2020-07", "Category": "Natural Co Q10", "totalRevenue": 8629.88, "totalRevenueExVAT": 7196.32, "totalCost": 2750.7000000000003, "totalQty": 311.0, "orderCount": 266, "uniqueProducts": 4, "margin": 4445.619999999999, "marginPct": 61.776296773906644}, {"YearMonth": "2020-07", "Category": "Omega 3 Supplements", "totalRevenue": 7416.75, "totalRevenueExVAT": 6183.14, "totalCost": 2325.2000000000003, "totalQty": 536.0, "orderCount": 459, "uniqueProducts": 6, "margin": 3857.94, "marginPct": 62.394511526505944}, {"YearMonth": "2020-07", "Category": "Probiotics", "totalRevenue": 3325.14, "totalRevenueExVAT": 2774.7400000000002, "totalCost": 1000.96, "totalQty": 174.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1773.7800000000002, "marginPct": 63.92598946207573}, {"YearMonth": "2020-07", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 26843.67, "totalRevenueExVAT": 22390.25, "totalCost": 10860.0, "totalQty": 1225.0, "orderCount": 1117, "uniqueProducts": 1, "margin": 11530.25, "marginPct": 51.49674523509117}, {"YearMonth": "2020-07", "Category": "Vitamin B", "totalRevenue": 9687.5, "totalRevenueExVAT": 8091.66, "totalCost": 2979.49, "totalQty": 837.0, "orderCount": 718, "uniqueProducts": 11, "margin": 5112.17, "marginPct": 63.17826008507525}, {"YearMonth": "2020-07", "Category": "Vitamin C", "totalRevenue": 4628.65, "totalRevenueExVAT": 3871.94, "totalCost": 1384.58, "totalQty": 444.0, "orderCount": 314, "uniqueProducts": 4, "margin": 2487.36, "marginPct": 64.24066488633605}, {"YearMonth": "2020-07", "Category": "Vitamin D", "totalRevenue": 5890.34, "totalRevenueExVAT": 4908.599999999999, "totalCost": 1185.6, "totalQty": 590.0, "orderCount": 473, "uniqueProducts": 1, "margin": 3722.9999999999995, "marginPct": 75.84647353624251}, {"YearMonth": "2020-07", "Category": "Vitamin E", "totalRevenue": 2191.0499999999997, "totalRevenueExVAT": 1825.96, "totalCost": 811.73, "totalQty": 139.0, "orderCount": 118, "uniqueProducts": 3, "margin": 1014.23, "marginPct": 55.54502836863896}, {"YearMonth": "2020-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 3697.41, "totalRevenueExVAT": 3083.46, "totalCost": 1104.76, "totalQty": 177.0, "orderCount": 157, "uniqueProducts": 2, "margin": 1978.7, "marginPct": 64.17141782283538}, {"YearMonth": "2020-08", "Category": "Amino Acids", "totalRevenue": 7518.889999999999, "totalRevenueExVAT": 6286.68, "totalCost": 2595.72, "totalQty": 516.0, "orderCount": 426, "uniqueProducts": 7, "margin": 3690.9600000000005, "marginPct": 58.71079806829679}, {"YearMonth": "2020-08", "Category": "Bone Health", "totalRevenue": 6192.0199999999995, "totalRevenueExVAT": 5165.34, "totalCost": 1748.2199999999998, "totalQty": 651.0, "orderCount": 555, "uniqueProducts": 4, "margin": 3417.1200000000003, "marginPct": 66.15479329531068}, {"YearMonth": "2020-08", "Category": "Cod Liver Oil", "totalRevenue": 1910.75, "totalRevenueExVAT": 1592.34, "totalCost": 763.41, "totalQty": 233.0, "orderCount": 197, "uniqueProducts": 2, "margin": 828.93, "marginPct": 52.0573495610234}, {"YearMonth": "2020-08", "Category": "Evening Primose Oils", "totalRevenue": 3512.96, "totalRevenueExVAT": 2934.63, "totalCost": 1414.32, "totalQty": 263.0, "orderCount": 237, "uniqueProducts": 3, "margin": 1520.3100000000002, "marginPct": 51.80584945972746}, {"YearMonth": "2020-08", "Category": "Glucosamine", "totalRevenue": 10793.369999999999, "totalRevenueExVAT": 9019.72, "totalCost": 4158.32, "totalQty": 742.0, "orderCount": 594, "uniqueProducts": 10, "margin": 4861.4, "marginPct": 53.897460231581476}, {"YearMonth": "2020-08", "Category": "Herbal Supplements", "totalRevenue": 15091.46, "totalRevenueExVAT": 12591.13, "totalCost": 5627.31, "totalQty": 1203.0, "orderCount": 988, "uniqueProducts": 17, "margin": 6963.819999999999, "marginPct": 55.30734731513375}, {"YearMonth": "2020-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2233.5099999999998, "totalRevenueExVAT": 1863.81, "totalCost": 544.32, "totalQty": 150.0, "orderCount": 132, "uniqueProducts": 1, "margin": 1319.4899999999998, "marginPct": 70.79530638852671}, {"YearMonth": "2020-08", "Category": "Minerals", "totalRevenue": 5262.5, "totalRevenueExVAT": 4395.71, "totalCost": 1283.4399999999998, "totalQty": 493.0, "orderCount": 421, "uniqueProducts": 5, "margin": 3112.2700000000004, "marginPct": 70.80244147134366}, {"YearMonth": "2020-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2668.0499999999997, "totalRevenueExVAT": 2224.17, "totalCost": 695.27, "totalQty": 159.0, "orderCount": 128, "uniqueProducts": 1, "margin": 1528.9, "marginPct": 68.74024917160109}, {"YearMonth": "2020-08", "Category": "Multivitamins", "totalRevenue": 9682.27, "totalRevenueExVAT": 8078.21, "totalCost": 3554.61, "totalQty": 982.0, "orderCount": 865, "uniqueProducts": 6, "margin": 4523.6, "marginPct": 55.997553913552636}, {"YearMonth": "2020-08", "Category": "Natural Co Q10", "totalRevenue": 10323.09, "totalRevenueExVAT": 8626.35, "totalCost": 3203.14, "totalQty": 366.0, "orderCount": 300, "uniqueProducts": 5, "margin": 5423.210000000001, "marginPct": 62.8679568994998}, {"YearMonth": "2020-08", "Category": "Omega 3 Supplements", "totalRevenue": 8364.52, "totalRevenueExVAT": 6991.07, "totalCost": 2686.25, "totalQty": 597.0, "orderCount": 500, "uniqueProducts": 6, "margin": 4304.82, "marginPct": 61.575981931235134}, {"YearMonth": "2020-08", "Category": "Probiotics", "totalRevenue": 2682.75, "totalRevenueExVAT": 2235.95, "totalCost": 801.5500000000001, "totalQty": 145.0, "orderCount": 135, "uniqueProducts": 1, "margin": 1434.3999999999996, "marginPct": 64.15170285560946}, {"YearMonth": "2020-08", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 28842.62, "totalRevenueExVAT": 24055.02, "totalCost": 12354.52, "totalQty": 1354.0, "orderCount": 1145, "uniqueProducts": 1, "margin": 11700.5, "marginPct": 48.64057481556864}, {"YearMonth": "2020-08", "Category": "Vitamin B", "totalRevenue": 11417.06, "totalRevenueExVAT": 9537.62, "totalCost": 3637.22, "totalQty": 918.0, "orderCount": 786, "uniqueProducts": 12, "margin": 5900.4000000000015, "marginPct": 61.8644903026122}, {"YearMonth": "2020-08", "Category": "Vitamin C", "totalRevenue": 3943.54, "totalRevenueExVAT": 3290.78, "totalCost": 1196.65, "totalQty": 334.0, "orderCount": 266, "uniqueProducts": 4, "margin": 2094.13, "marginPct": 63.63628076018452}, {"YearMonth": "2020-08", "Category": "Vitamin D", "totalRevenue": 4963.47, "totalRevenueExVAT": 4136.61, "totalCost": 1053.6, "totalQty": 539.0, "orderCount": 417, "uniqueProducts": 1, "margin": 3083.0099999999998, "marginPct": 74.52986866056989}, {"YearMonth": "2020-08", "Category": "Vitamin E", "totalRevenue": 2197.6, "totalRevenueExVAT": 1831.45, "totalCost": 799.17, "totalQty": 128.0, "orderCount": 114, "uniqueProducts": 3, "margin": 1032.2800000000002, "marginPct": 56.36408310355184}, {"YearMonth": "2020-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 5159.41, "totalRevenueExVAT": 4308.84, "totalCost": 1717.6, "totalQty": 277.0, "orderCount": 248, "uniqueProducts": 2, "margin": 2591.2400000000002, "marginPct": 60.13776329592188}, {"YearMonth": "2020-09", "Category": "Amino Acids", "totalRevenue": 6406.37, "totalRevenueExVAT": 5353.99, "totalCost": 2217.51, "totalQty": 453.0, "orderCount": 377, "uniqueProducts": 7, "margin": 3136.4799999999996, "marginPct": 58.582104187717945}, {"YearMonth": "2020-09", "Category": "Bone Health", "totalRevenue": 10023.73, "totalRevenueExVAT": 8359.42, "totalCost": 2674.16, "totalQty": 1145.0, "orderCount": 820, "uniqueProducts": 4, "margin": 5685.26, "marginPct": 68.01022080479268}, {"YearMonth": "2020-09", "Category": "Cod Liver Oil", "totalRevenue": 1971.55, "totalRevenueExVAT": 1645.1999999999998, "totalCost": 787.9799999999999, "totalQty": 240.0, "orderCount": 199, "uniqueProducts": 2, "margin": 857.2199999999999, "marginPct": 52.10430342815463}, {"YearMonth": "2020-09", "Category": "Evening Primose Oils", "totalRevenue": 2865.02, "totalRevenueExVAT": 2387.5499999999997, "totalCost": 1101.04, "totalQty": 208.0, "orderCount": 183, "uniqueProducts": 3, "margin": 1286.5099999999998, "marginPct": 53.884107139117496}, {"YearMonth": "2020-09", "Category": "Glucosamine", "totalRevenue": 8471.27, "totalRevenueExVAT": 7069.93, "totalCost": 3240.863, "totalQty": 598.0, "orderCount": 490, "uniqueProducts": 9, "margin": 3829.0670000000005, "marginPct": 54.15989974441049}, {"YearMonth": "2020-09", "Category": "Herbal Supplements", "totalRevenue": 11201.189999999999, "totalRevenueExVAT": 9355.37, "totalCost": 4094.06, "totalQty": 907.0, "orderCount": 722, "uniqueProducts": 17, "margin": 5261.310000000001, "marginPct": 56.23839570214755}, {"YearMonth": "2020-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2052.9, "totalRevenueExVAT": 1710.78, "totalCost": 497.28000000000003, "totalQty": 142.0, "orderCount": 125, "uniqueProducts": 1, "margin": 1213.5, "marginPct": 70.93255707922702}, {"YearMonth": "2020-09", "Category": "Minerals", "totalRevenue": 4325.47, "totalRevenueExVAT": 3606.57, "totalCost": 1057.1, "totalQty": 429.0, "orderCount": 374, "uniqueProducts": 5, "margin": 2549.4700000000003, "marginPct": 70.68960258639095}, {"YearMonth": "2020-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1598.6599999999999, "totalRevenueExVAT": 1338.22, "totalCost": 417.71999999999997, "totalQty": 94.0, "orderCount": 72, "uniqueProducts": 1, "margin": 920.5, "marginPct": 68.78540150348971}, {"YearMonth": "2020-09", "Category": "Multivitamins", "totalRevenue": 8957.36, "totalRevenueExVAT": 7469.17, "totalCost": 3366.31, "totalQty": 882.0, "orderCount": 788, "uniqueProducts": 5, "margin": 4102.860000000001, "marginPct": 54.930601392122554}, {"YearMonth": "2020-09", "Category": "Natural Co Q10", "totalRevenue": 8084.17, "totalRevenueExVAT": 6750.099999999999, "totalCost": 2622.55, "totalQty": 287.0, "orderCount": 241, "uniqueProducts": 4, "margin": 4127.549999999999, "marginPct": 61.14798299284454}, {"YearMonth": "2020-09", "Category": "Omega 3 Supplements", "totalRevenue": 6532.69, "totalRevenueExVAT": 5454.74, "totalCost": 2059.87, "totalQty": 466.0, "orderCount": 397, "uniqueProducts": 6, "margin": 3394.87, "marginPct": 62.23706354473357}, {"YearMonth": "2020-09", "Category": "Probiotics", "totalRevenue": 1842.6399999999999, "totalRevenueExVAT": 1539.28, "totalCost": 547.4, "totalQty": 104.0, "orderCount": 96, "uniqueProducts": 1, "margin": 991.88, "marginPct": 64.4379190270776}, {"YearMonth": "2020-09", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 19463.36, "totalRevenueExVAT": 16251.18, "totalCost": 7883.08, "totalQty": 901.0, "orderCount": 801, "uniqueProducts": 1, "margin": 8368.1, "marginPct": 51.492260869672236}, {"YearMonth": "2020-09", "Category": "Vitamin B", "totalRevenue": 8695.31, "totalRevenueExVAT": 7263.34, "totalCost": 2797.8199999999997, "totalQty": 743.0, "orderCount": 626, "uniqueProducts": 11, "margin": 4465.52, "marginPct": 61.4802556399673}, {"YearMonth": "2020-09", "Category": "Vitamin C", "totalRevenue": 4268.17, "totalRevenueExVAT": 3562.88, "totalCost": 1307.0, "totalQty": 355.0, "orderCount": 300, "uniqueProducts": 4, "margin": 2255.88, "marginPct": 63.31619364109934}, {"YearMonth": "2020-09", "Category": "Vitamin D", "totalRevenue": 6868.58, "totalRevenueExVAT": 5725.23, "totalCost": 1383.6, "totalQty": 687.0, "orderCount": 522, "uniqueProducts": 1, "margin": 4341.629999999999, "marginPct": 75.83328530032854}, {"YearMonth": "2020-09", "Category": "Vitamin E", "totalRevenue": 1657.9299999999998, "totalRevenueExVAT": 1386.15, "totalCost": 624.03, "totalQty": 95.0, "orderCount": 87, "uniqueProducts": 3, "margin": 762.1200000000001, "marginPct": 54.98106265555677}, {"YearMonth": "2020-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 2661.22, "totalRevenueExVAT": 2223.13, "totalCost": 821.48, "totalQty": 134.0, "orderCount": 115, "uniqueProducts": 2, "margin": 1401.65, "marginPct": 63.04849468991917}, {"YearMonth": "2020-10", "Category": "Amino Acids", "totalRevenue": 7579.879999999999, "totalRevenueExVAT": 6330.25, "totalCost": 2639.82, "totalQty": 521.0, "orderCount": 428, "uniqueProducts": 7, "margin": 3690.43, "marginPct": 58.29832944986375}, {"YearMonth": "2020-10", "Category": "Bone Health", "totalRevenue": 19678.18, "totalRevenueExVAT": 16410.829999999998, "totalCost": 5049.16, "totalQty": 2467.0, "orderCount": 1948, "uniqueProducts": 5, "margin": 11361.669999999998, "marginPct": 69.23275666130232}, {"YearMonth": "2020-10", "Category": "Cod Liver Oil", "totalRevenue": 2769.19, "totalRevenueExVAT": 2320.2799999999997, "totalCost": 1115.61, "totalQty": 335.0, "orderCount": 281, "uniqueProducts": 2, "margin": 1204.6699999999998, "marginPct": 51.91916492837071}, {"YearMonth": "2020-10", "Category": "Evening Primose Oils", "totalRevenue": 4283.349999999999, "totalRevenueExVAT": 3570.7999999999997, "totalCost": 1647.84, "totalQty": 320.0, "orderCount": 282, "uniqueProducts": 3, "margin": 1922.9599999999998, "marginPct": 53.85235801501064}, {"YearMonth": "2020-10", "Category": "Glucosamine", "totalRevenue": 11448.619999999999, "totalRevenueExVAT": 9556.119999999999, "totalCost": 4387.380999999999, "totalQty": 819.0, "orderCount": 660, "uniqueProducts": 9, "margin": 5168.739, "marginPct": 54.088259670242735}, {"YearMonth": "2020-10", "Category": "Herbal Supplements", "totalRevenue": 16361.279999999999, "totalRevenueExVAT": 13658.77, "totalCost": 5973.13, "totalQty": 1299.0, "orderCount": 1064, "uniqueProducts": 18, "margin": 7685.64, "marginPct": 56.26890269035938}, {"YearMonth": "2020-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2804.52, "totalRevenueExVAT": 2342.15, "totalCost": 683.2, "totalQty": 190.0, "orderCount": 169, "uniqueProducts": 1, "margin": 1658.95, "marginPct": 70.83022009691949}, {"YearMonth": "2020-10", "Category": "Minerals", "totalRevenue": 6446.46, "totalRevenueExVAT": 5379.29, "totalCost": 1572.48, "totalQty": 652.0, "orderCount": 553, "uniqueProducts": 5, "margin": 3806.81, "marginPct": 70.7678894426588}, {"YearMonth": "2020-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1917.3, "totalRevenueExVAT": 1598.42, "totalCost": 506.82, "totalQty": 134.0, "orderCount": 111, "uniqueProducts": 1, "margin": 1091.6000000000001, "marginPct": 68.29243878329851}, {"YearMonth": "2020-10", "Category": "Multivitamins", "totalRevenue": 13566.1, "totalRevenueExVAT": 11324.44, "totalCost": 5006.8, "totalQty": 1358.0, "orderCount": 1161, "uniqueProducts": 6, "margin": 6317.64, "marginPct": 55.7876592573231}, {"YearMonth": "2020-10", "Category": "Natural Co Q10", "totalRevenue": 13379.06, "totalRevenueExVAT": 11169.289999999999, "totalCost": 4884.11, "totalQty": 475.0, "orderCount": 394, "uniqueProducts": 4, "margin": 6285.179999999999, "marginPct": 56.27197431528772}, {"YearMonth": "2020-10", "Category": "Omega 3 Supplements", "totalRevenue": 8122.799999999999, "totalRevenueExVAT": 6781.19, "totalCost": 2508.65, "totalQty": 609.0, "orderCount": 526, "uniqueProducts": 6, "margin": 4272.539999999999, "marginPct": 63.00575562696223}, {"YearMonth": "2020-10", "Category": "Probiotics", "totalRevenue": 3231.56, "totalRevenueExVAT": 2697.2400000000002, "totalCost": 965.77, "totalQty": 176.0, "orderCount": 167, "uniqueProducts": 1, "margin": 1731.4700000000003, "marginPct": 64.1941391941392}, {"YearMonth": "2020-10", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 28807.489999999998, "totalRevenueExVAT": 24022.12, "totalCost": 11652.72, "totalQty": 1334.0, "orderCount": 1203, "uniqueProducts": 1, "margin": 12369.4, "marginPct": 51.49170847535521}, {"YearMonth": "2020-10", "Category": "Vitamin B", "totalRevenue": 11178.56, "totalRevenueExVAT": 9320.37, "totalCost": 3425.54, "totalQty": 926.0, "orderCount": 798, "uniqueProducts": 12, "margin": 5894.830000000001, "marginPct": 63.246738058682226}, {"YearMonth": "2020-10", "Category": "Vitamin C", "totalRevenue": 6555.8099999999995, "totalRevenueExVAT": 5467.96, "totalCost": 2007.44, "totalQty": 552.0, "orderCount": 466, "uniqueProducts": 4, "margin": 3460.52, "marginPct": 63.287222291311565}, {"YearMonth": "2020-10", "Category": "Vitamin D", "totalRevenue": 15028.06, "totalRevenueExVAT": 12534.449999999999, "totalCost": 3369.6, "totalQty": 1584.0, "orderCount": 1192, "uniqueProducts": 3, "margin": 9164.849999999999, "marginPct": 73.11728875219895}, {"YearMonth": "2020-10", "Category": "Vitamin E", "totalRevenue": 2326.7599999999998, "totalRevenueExVAT": 1947.97, "totalCost": 842.79, "totalQty": 132.0, "orderCount": 124, "uniqueProducts": 3, "margin": 1105.18, "marginPct": 56.73495998398332}, {"YearMonth": "2020-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 4904.17, "totalRevenueExVAT": 4091.08, "totalCost": 1445.12, "totalQty": 237.0, "orderCount": 201, "uniqueProducts": 2, "margin": 2645.96, "marginPct": 64.67632018928987}, {"YearMonth": "2020-11", "Category": "Amino Acids", "totalRevenue": 7575.259999999999, "totalRevenueExVAT": 6321.44, "totalCost": 2629.09, "totalQty": 536.0, "orderCount": 451, "uniqueProducts": 7, "margin": 3692.3499999999995, "marginPct": 58.409950897263904}, {"YearMonth": "2020-11", "Category": "Bone Health", "totalRevenue": 21391.46, "totalRevenueExVAT": 17841.75, "totalCost": 5660.099999999999, "totalQty": 2586.0, "orderCount": 2112, "uniqueProducts": 5, "margin": 12181.650000000001, "marginPct": 68.27609399302199}, {"YearMonth": "2020-11", "Category": "Cod Liver Oil", "totalRevenue": 2916.72, "totalRevenueExVAT": 2434.5299999999997, "totalCost": 1171.3799999999999, "totalQty": 351.0, "orderCount": 289, "uniqueProducts": 2, "margin": 1263.1499999999999, "marginPct": 51.884758043647025}, {"YearMonth": "2020-11", "Category": "Evening Primose Oils", "totalRevenue": 4062.93, "totalRevenueExVAT": 3390.38, "totalCost": 1549.05, "totalQty": 317.0, "orderCount": 280, "uniqueProducts": 3, "margin": 1841.3300000000002, "marginPct": 54.31043127908966}, {"YearMonth": "2020-11", "Category": "Glucosamine", "totalRevenue": 11241.939999999999, "totalRevenueExVAT": 9386.7, "totalCost": 4364.023999999999, "totalQty": 777.0, "orderCount": 610, "uniqueProducts": 11, "margin": 5022.676000000001, "marginPct": 53.50843214335177}, {"YearMonth": "2020-11", "Category": "Herbal Supplements", "totalRevenue": 14654.88, "totalRevenueExVAT": 12256.53, "totalCost": 5377.7699999999995, "totalQty": 1195.0, "orderCount": 1005, "uniqueProducts": 17, "margin": 6878.760000000001, "marginPct": 56.123225741706676}, {"YearMonth": "2020-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2084.9, "totalRevenueExVAT": 1737.46, "totalCost": 506.24000000000007, "totalQty": 142.0, "orderCount": 126, "uniqueProducts": 1, "margin": 1231.22, "marginPct": 70.86321411715953}, {"YearMonth": "2020-11", "Category": "Minerals", "totalRevenue": 2477.66, "totalRevenueExVAT": 2067.57, "totalCost": 668.42, "totalQty": 293.0, "orderCount": 265, "uniqueProducts": 5, "margin": 1399.15, "marginPct": 67.67122757633356}, {"YearMonth": "2020-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1948.1999999999998, "totalRevenueExVAT": 1624.18, "totalCost": 552.28, "totalQty": 136.0, "orderCount": 110, "uniqueProducts": 1, "margin": 1071.9, "marginPct": 65.99637971160833}, {"YearMonth": "2020-11", "Category": "Multivitamins", "totalRevenue": 14016.77, "totalRevenueExVAT": 11696.92, "totalCost": 5142.46, "totalQty": 1387.0, "orderCount": 1219, "uniqueProducts": 6, "margin": 6554.46, "marginPct": 56.03577693957041}, {"YearMonth": "2020-11", "Category": "Natural Co Q10", "totalRevenue": 8660.18, "totalRevenueExVAT": 7238.08, "totalCost": 3462.2000000000003, "totalQty": 301.0, "orderCount": 250, "uniqueProducts": 3, "margin": 3775.8799999999997, "marginPct": 52.16687298289049}, {"YearMonth": "2020-11", "Category": "Omega 3 Supplements", "totalRevenue": 7848.21, "totalRevenueExVAT": 6553.45, "totalCost": 2449.09, "totalQty": 590.0, "orderCount": 500, "uniqueProducts": 6, "margin": 4104.36, "marginPct": 62.62899694054277}, {"YearMonth": "2020-11", "Category": "Probiotics", "totalRevenue": 2861.0299999999997, "totalRevenueExVAT": 2393.83, "totalCost": 856.2900000000001, "totalQty": 157.0, "orderCount": 147, "uniqueProducts": 1, "margin": 1537.54, "marginPct": 64.22928946499961}, {"YearMonth": "2020-11", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 21862.01, "totalRevenueExVAT": 18239.75, "totalCost": 8847.0, "totalQty": 1000.0, "orderCount": 871, "uniqueProducts": 1, "margin": 9392.75, "marginPct": 51.49604572431091}, {"YearMonth": "2020-11", "Category": "Vitamin B", "totalRevenue": 12509.289999999999, "totalRevenueExVAT": 10449.18, "totalCost": 3777.5299999999997, "totalQty": 1027.0, "orderCount": 907, "uniqueProducts": 12, "margin": 6671.650000000001, "marginPct": 63.84855079537341}, {"YearMonth": "2020-11", "Category": "Vitamin C", "totalRevenue": 6412.98, "totalRevenueExVAT": 5356.82, "totalCost": 1983.5500000000002, "totalQty": 539.0, "orderCount": 463, "uniqueProducts": 4, "margin": 3373.2699999999995, "marginPct": 62.97150174917208}, {"YearMonth": "2020-11", "Category": "Vitamin D", "totalRevenue": 13282.23, "totalRevenueExVAT": 11076.57, "totalCost": 2826.6, "totalQty": 1359.0, "orderCount": 1047, "uniqueProducts": 2, "margin": 8249.97, "marginPct": 74.48126992381215}, {"YearMonth": "2020-11", "Category": "Vitamin E", "totalRevenue": 2311.08, "totalRevenueExVAT": 1934.32, "totalCost": 849.85, "totalQty": 139.0, "orderCount": 122, "uniqueProducts": 3, "margin": 1084.4699999999998, "marginPct": 56.064663551015336}, {"YearMonth": "2020-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 4153.45, "totalRevenueExVAT": 3461.63, "totalCost": 1205.3, "totalQty": 191.0, "orderCount": 173, "uniqueProducts": 2, "margin": 2256.33, "marginPct": 65.1811429875521}, {"YearMonth": "2020-12", "Category": "Amino Acids", "totalRevenue": 7906.24, "totalRevenueExVAT": 6604.2699999999995, "totalCost": 2804.64, "totalQty": 537.0, "orderCount": 423, "uniqueProducts": 7, "margin": 3799.6299999999997, "marginPct": 57.532929453217385}, {"YearMonth": "2020-12", "Category": "Bone Health", "totalRevenue": 15465.34, "totalRevenueExVAT": 12902.11, "totalCost": 4071.3199999999997, "totalQty": 1791.0, "orderCount": 1440, "uniqueProducts": 5, "margin": 8830.79, "marginPct": 68.44454124170389}, {"YearMonth": "2020-12", "Category": "Cod Liver Oil", "totalRevenue": 2631.8599999999997, "totalRevenueExVAT": 2198.7799999999997, "totalCost": 1069.56, "totalQty": 306.0, "orderCount": 247, "uniqueProducts": 2, "margin": 1129.2199999999998, "marginPct": 51.35666142133365}, {"YearMonth": "2020-12", "Category": "Evening Primose Oils", "totalRevenue": 3549.83, "totalRevenueExVAT": 2962.04, "totalCost": 1382.04, "totalQty": 268.0, "orderCount": 225, "uniqueProducts": 3, "margin": 1580.0, "marginPct": 53.34161591335701}, {"YearMonth": "2020-12", "Category": "Glucosamine", "totalRevenue": 12288.609999999999, "totalRevenueExVAT": 10247.74, "totalCost": 4734.976, "totalQty": 854.0, "orderCount": 655, "uniqueProducts": 10, "margin": 5512.764, "marginPct": 53.79492453945943}, {"YearMonth": "2020-12", "Category": "Herbal Supplements", "totalRevenue": 14665.109999999999, "totalRevenueExVAT": 12231.58, "totalCost": 5500.59, "totalQty": 1152.0, "orderCount": 946, "uniqueProducts": 17, "margin": 6730.99, "marginPct": 55.029603697968696}, {"YearMonth": "2020-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2630.39, "totalRevenueExVAT": 2192.01, "totalCost": 660.8000000000001, "totalQty": 179.0, "orderCount": 147, "uniqueProducts": 1, "margin": 1531.21, "marginPct": 69.8541521252184}, {"YearMonth": "2020-12", "Category": "Minerals", "totalRevenue": 2834.42, "totalRevenueExVAT": 2362.15, "totalCost": 765.05, "totalQty": 356.0, "orderCount": 308, "uniqueProducts": 4, "margin": 1597.1000000000001, "marginPct": 67.61213301441484}, {"YearMonth": "2020-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2357.85, "totalRevenueExVAT": 1965.59, "totalCost": 688.38, "totalQty": 143.0, "orderCount": 110, "uniqueProducts": 1, "margin": 1277.21, "marginPct": 64.9784543063406}, {"YearMonth": "2020-12", "Category": "Multivitamins", "totalRevenue": 12300.51, "totalRevenueExVAT": 10269.11, "totalCost": 4522.82, "totalQty": 1190.0, "orderCount": 1008, "uniqueProducts": 6, "margin": 5746.290000000001, "marginPct": 55.95704009402957}, {"YearMonth": "2020-12", "Category": "Natural Co Q10", "totalRevenue": 10407.85, "totalRevenueExVAT": 8701.94, "totalCost": 4156.34, "totalQty": 339.0, "orderCount": 286, "uniqueProducts": 2, "margin": 4545.6, "marginPct": 52.23662769451409}, {"YearMonth": "2020-12", "Category": "Omega 3 Supplements", "totalRevenue": 7683.12, "totalRevenueExVAT": 6418.44, "totalCost": 2489.61, "totalQty": 570.0, "orderCount": 477, "uniqueProducts": 6, "margin": 3928.8299999999995, "marginPct": 61.211602819376665}, {"YearMonth": "2020-12", "Category": "Probiotics", "totalRevenue": 2987.47, "totalRevenueExVAT": 2495.31, "totalCost": 895.39, "totalQty": 161.0, "orderCount": 151, "uniqueProducts": 1, "margin": 1599.92, "marginPct": 64.11708364892539}, {"YearMonth": "2020-12", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 23655.03, "totalRevenueExVAT": 19727.41, "totalCost": 9566.76, "totalQty": 1052.0, "orderCount": 927, "uniqueProducts": 1, "margin": 10160.65, "marginPct": 51.50524067781832}, {"YearMonth": "2020-12", "Category": "Vitamin B", "totalRevenue": 11156.55, "totalRevenueExVAT": 9308.28, "totalCost": 3574.65, "totalQty": 900.0, "orderCount": 773, "uniqueProducts": 12, "margin": 5733.630000000001, "marginPct": 61.59709420000259}, {"YearMonth": "2020-12", "Category": "Vitamin C", "totalRevenue": 5766.5, "totalRevenueExVAT": 4806.05, "totalCost": 1804.63, "totalQty": 462.0, "orderCount": 384, "uniqueProducts": 4, "margin": 3001.42, "marginPct": 62.450869216924495}, {"YearMonth": "2020-12", "Category": "Vitamin D", "totalRevenue": 10906.21, "totalRevenueExVAT": 9090.779999999999, "totalCost": 2318.4, "totalQty": 1101.0, "orderCount": 866, "uniqueProducts": 2, "margin": 6772.379999999999, "marginPct": 74.49723786077762}, {"YearMonth": "2020-12", "Category": "Vitamin E", "totalRevenue": 1955.36, "totalRevenueExVAT": 1632.07, "totalCost": 739.76, "totalQty": 113.0, "orderCount": 109, "uniqueProducts": 3, "margin": 892.31, "marginPct": 54.67351277825093}, {"YearMonth": "2020-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 4678.24, "totalRevenueExVAT": 3905.82, "totalCost": 1461.54, "totalQty": 222.0, "orderCount": 191, "uniqueProducts": 2, "margin": 2444.28, "marginPct": 62.580456856690795}, {"YearMonth": "2021-01", "Category": "Amino Acids", "totalRevenue": 9146.359999999999, "totalRevenueExVAT": 7622.2, "totalCost": 3180.68, "totalQty": 619.0, "orderCount": 492, "uniqueProducts": 7, "margin": 4441.52, "marginPct": 58.27084043976806}, {"YearMonth": "2021-01", "Category": "Bone Health", "totalRevenue": 24301.93, "totalRevenueExVAT": 20254.12, "totalCost": 6339.8099999999995, "totalQty": 2862.0, "orderCount": 2276, "uniqueProducts": 5, "margin": 13914.31, "marginPct": 68.6986647654897}, {"YearMonth": "2021-01", "Category": "Cod Liver Oil", "totalRevenue": 3940.02, "totalRevenueExVAT": 3282.46, "totalCost": 1701.3, "totalQty": 487.0, "orderCount": 423, "uniqueProducts": 2, "margin": 1581.16, "marginPct": 48.16997008341305}, {"YearMonth": "2021-01", "Category": "Evening Primose Oils", "totalRevenue": 5333.0599999999995, "totalRevenueExVAT": 4444.32, "totalCost": 2047.8999999999999, "totalQty": 394.0, "orderCount": 336, "uniqueProducts": 3, "margin": 2396.42, "marginPct": 53.920959786874036}, {"YearMonth": "2021-01", "Category": "Glucosamine", "totalRevenue": 14240.68, "totalRevenueExVAT": 11869.64, "totalCost": 5631.19, "totalQty": 1005.0, "orderCount": 819, "uniqueProducts": 10, "margin": 6238.45, "marginPct": 52.55803882847332}, {"YearMonth": "2021-01", "Category": "Herbal Supplements", "totalRevenue": 18198.489999999998, "totalRevenueExVAT": 15167.44, "totalCost": 6699.56, "totalQty": 1498.0, "orderCount": 1204, "uniqueProducts": 17, "margin": 8467.880000000001, "marginPct": 55.8293291418987}, {"YearMonth": "2021-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3074.2599999999998, "totalRevenueExVAT": 2561.77, "totalCost": 763.84, "totalQty": 224.0, "orderCount": 199, "uniqueProducts": 1, "margin": 1797.9299999999998, "marginPct": 70.18311558024334}, {"YearMonth": "2021-01", "Category": "Minerals", "totalRevenue": 4017.87, "totalRevenueExVAT": 3348.42, "totalCost": 1067.8899999999999, "totalQty": 521.0, "orderCount": 455, "uniqueProducts": 5, "margin": 2280.53, "marginPct": 68.10764479963684}, {"YearMonth": "2021-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2738.85, "totalRevenueExVAT": 2283.19, "totalCost": 801.62, "totalQty": 163.0, "orderCount": 132, "uniqueProducts": 1, "margin": 1481.5700000000002, "marginPct": 64.89035078114394}, {"YearMonth": "2021-01", "Category": "Multivitamins", "totalRevenue": 16916.92, "totalRevenueExVAT": 14099.06, "totalCost": 6416.88, "totalQty": 1658.0, "orderCount": 1461, "uniqueProducts": 6, "margin": 7682.179999999999, "marginPct": 54.487178577862636}, {"YearMonth": "2021-01", "Category": "Natural Co Q10", "totalRevenue": 16226.880000000001, "totalRevenueExVAT": 13526.92, "totalCost": 7025.7300000000005, "totalQty": 543.0, "orderCount": 419, "uniqueProducts": 3, "margin": 6501.19, "marginPct": 48.06112551859551}, {"YearMonth": "2021-01", "Category": "Omega 3 Supplements", "totalRevenue": 11823.23, "totalRevenueExVAT": 9854.92, "totalCost": 3800.6, "totalQty": 886.0, "orderCount": 776, "uniqueProducts": 6, "margin": 6054.32, "marginPct": 61.43449160419364}, {"YearMonth": "2021-01", "Category": "Probiotics", "totalRevenue": 4474.39, "totalRevenueExVAT": 3727.2400000000002, "totalCost": 1466.25, "totalQty": 264.0, "orderCount": 247, "uniqueProducts": 1, "margin": 2260.9900000000002, "marginPct": 60.6612399523508}, {"YearMonth": "2021-01", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 36761.299999999996, "totalRevenueExVAT": 30636.19, "totalCost": 15526.2, "totalQty": 1690.0, "orderCount": 1464, "uniqueProducts": 1, "margin": 15109.989999999998, "marginPct": 49.32072166937207}, {"YearMonth": "2021-01", "Category": "Vitamin B", "totalRevenue": 13886.3, "totalRevenueExVAT": 11574.32, "totalCost": 4034.98, "totalQty": 1119.0, "orderCount": 956, "uniqueProducts": 12, "margin": 7539.34, "marginPct": 65.13851353686437}, {"YearMonth": "2021-01", "Category": "Vitamin C", "totalRevenue": 7945.78, "totalRevenueExVAT": 6622.47, "totalCost": 2431.13, "totalQty": 678.0, "orderCount": 586, "uniqueProducts": 4, "margin": 4191.34, "marginPct": 63.289678926442846}, {"YearMonth": "2021-01", "Category": "Vitamin D", "totalRevenue": 19679.43, "totalRevenueExVAT": 16396.32, "totalCost": 4331.7, "totalQty": 2028.0, "orderCount": 1509, "uniqueProducts": 2, "margin": 12064.619999999999, "marginPct": 73.58126701601334}, {"YearMonth": "2021-01", "Category": "Vitamin E", "totalRevenue": 2672.5, "totalRevenueExVAT": 2227.25, "totalCost": 1004.92, "totalQty": 150.0, "orderCount": 134, "uniqueProducts": 3, "margin": 1222.33, "marginPct": 54.88068245594342}, {"YearMonth": "2021-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 6715.5, "totalRevenueExVAT": 5596.75, "totalCost": 1956.6399999999999, "totalQty": 302.0, "orderCount": 264, "uniqueProducts": 2, "margin": 3640.11, "marginPct": 65.03971054629919}, {"YearMonth": "2021-02", "Category": "Amino Acids", "totalRevenue": 5484.099999999999, "totalRevenueExVAT": 4618.07, "totalCost": 1875.22, "totalQty": 395.0, "orderCount": 339, "uniqueProducts": 7, "margin": 2742.8499999999995, "marginPct": 59.39385933950763}, {"YearMonth": "2021-02", "Category": "Bone Health", "totalRevenue": 11042.83, "totalRevenueExVAT": 9245.69, "totalCost": 3020.56, "totalQty": 1241.0, "orderCount": 1004, "uniqueProducts": 5, "margin": 6225.130000000001, "marginPct": 67.33007487813242}, {"YearMonth": "2021-02", "Category": "Cod Liver Oil", "totalRevenue": 2165.26, "totalRevenueExVAT": 1812.4, "totalCost": 954.2399999999999, "totalQty": 285.0, "orderCount": 245, "uniqueProducts": 2, "margin": 858.1600000000002, "marginPct": 47.3493709997793}, {"YearMonth": "2021-02", "Category": "Evening Primose Oils", "totalRevenue": 3574.27, "totalRevenueExVAT": 2988.68, "totalCost": 1371.72, "totalQty": 276.0, "orderCount": 246, "uniqueProducts": 3, "margin": 1616.9599999999998, "marginPct": 54.10281462050136}, {"YearMonth": "2021-02", "Category": "Glucosamine", "totalRevenue": 8010.9, "totalRevenueExVAT": 6724.46, "totalCost": 3072.336, "totalQty": 558.0, "orderCount": 468, "uniqueProducts": 10, "margin": 3652.1240000000003, "marginPct": 54.31103761491629}, {"YearMonth": "2021-02", "Category": "Herbal Supplements", "totalRevenue": 11375.65, "totalRevenueExVAT": 9534.210000000001, "totalCost": 4249.41, "totalQty": 951.0, "orderCount": 786, "uniqueProducts": 17, "margin": 5284.800000000001, "marginPct": 55.42986781285498}, {"YearMonth": "2021-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1596.84, "totalRevenueExVAT": 1332.1100000000001, "totalCost": 387.52000000000004, "totalQty": 110.0, "orderCount": 94, "uniqueProducts": 1, "margin": 944.5900000000001, "marginPct": 70.90930929127475}, {"YearMonth": "2021-02", "Category": "Minerals", "totalRevenue": 2443.33, "totalRevenueExVAT": 2043.34, "totalCost": 658.26, "totalQty": 313.0, "orderCount": 271, "uniqueProducts": 4, "margin": 1385.08, "marginPct": 67.78509694911273}, {"YearMonth": "2021-02", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1203.69, "totalRevenueExVAT": 1010.51, "totalCost": 351.64, "totalQty": 77.0, "orderCount": 69, "uniqueProducts": 1, "margin": 658.87, "marginPct": 65.20172981959604}, {"YearMonth": "2021-02", "Category": "Multivitamins", "totalRevenue": 8212.84, "totalRevenueExVAT": 6867.31, "totalCost": 3195.08, "totalQty": 895.0, "orderCount": 825, "uniqueProducts": 5, "margin": 3672.2300000000005, "marginPct": 53.47406772083975}, {"YearMonth": "2021-02", "Category": "Natural Co Q10", "totalRevenue": 6660.41, "totalRevenueExVAT": 5589.14, "totalCost": 2804.03, "totalQty": 238.0, "orderCount": 194, "uniqueProducts": 4, "margin": 2785.11, "marginPct": 49.83074319126019}, {"YearMonth": "2021-02", "Category": "Omega 3 Supplements", "totalRevenue": 5421.91, "totalRevenueExVAT": 4550.75, "totalCost": 1716.18, "totalQty": 427.0, "orderCount": 378, "uniqueProducts": 6, "margin": 2834.5699999999997, "marginPct": 62.2879745096962}, {"YearMonth": "2021-02", "Category": "Probiotics", "totalRevenue": 2366.48, "totalRevenueExVAT": 1985.3300000000002, "totalCost": 785.9100000000001, "totalQty": 148.0, "orderCount": 140, "uniqueProducts": 1, "margin": 1199.42, "marginPct": 60.41413770002971}, {"YearMonth": "2021-02", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16565.73, "totalRevenueExVAT": 13945.94, "totalCost": 6767.8, "totalQty": 770.0, "orderCount": 681, "uniqueProducts": 1, "margin": 7178.14, "marginPct": 51.4711808598058}, {"YearMonth": "2021-02", "Category": "Vitamin B", "totalRevenue": 10436.91, "totalRevenueExVAT": 8772.93, "totalCost": 3402.42, "totalQty": 870.0, "orderCount": 769, "uniqueProducts": 12, "margin": 5370.51, "marginPct": 61.21683405658087}, {"YearMonth": "2021-02", "Category": "Vitamin C", "totalRevenue": 3546.44, "totalRevenueExVAT": 2971.03, "totalCost": 1092.8700000000001, "totalQty": 301.0, "orderCount": 261, "uniqueProducts": 4, "margin": 1878.16, "marginPct": 63.21578711759894}, {"YearMonth": "2021-02", "Category": "Vitamin D", "totalRevenue": 6774.509999999999, "totalRevenueExVAT": 5665.7699999999995, "totalCost": 1428.3, "totalQty": 705.0, "orderCount": 562, "uniqueProducts": 2, "margin": 4237.469999999999, "marginPct": 74.79071688402459}, {"YearMonth": "2021-02", "Category": "Vitamin E", "totalRevenue": 1604.1999999999998, "totalRevenueExVAT": 1340.76, "totalCost": 627.21, "totalQty": 103.0, "orderCount": 97, "uniqueProducts": 3, "margin": 713.55, "marginPct": 53.219815626957846}, {"YearMonth": "2021-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 3219.66, "totalRevenueExVAT": 2703.59, "totalCost": 947.9, "totalQty": 152.0, "orderCount": 137, "uniqueProducts": 2, "margin": 1755.69, "marginPct": 64.9392104572069}, {"YearMonth": "2021-03", "Category": "Amino Acids", "totalRevenue": 7516.679999999999, "totalRevenueExVAT": 6406.849999999999, "totalCost": 2809.23, "totalQty": 537.0, "orderCount": 450, "uniqueProducts": 7, "margin": 3597.6199999999994, "marginPct": 56.152711550918156}, {"YearMonth": "2021-03", "Category": "Bone Health", "totalRevenue": 13234.33, "totalRevenueExVAT": 11139.28, "totalCost": 3749.66, "totalQty": 1464.0, "orderCount": 1149, "uniqueProducts": 5, "margin": 7389.620000000001, "marginPct": 66.3383988911312}, {"YearMonth": "2021-03", "Category": "Cod Liver Oil", "totalRevenue": 2524.11, "totalRevenueExVAT": 2119.39, "totalCost": 1126.08, "totalQty": 323.0, "orderCount": 271, "uniqueProducts": 2, "margin": 993.31, "marginPct": 46.86773080933665}, {"YearMonth": "2021-03", "Category": "Evening Primose Oils", "totalRevenue": 3683.0899999999997, "totalRevenueExVAT": 3086.0299999999997, "totalCost": 1399.77, "totalQty": 290.0, "orderCount": 256, "uniqueProducts": 3, "margin": 1686.2599999999998, "marginPct": 54.64172415692653}, {"YearMonth": "2021-03", "Category": "Glucosamine", "totalRevenue": 11532.199999999999, "totalRevenueExVAT": 9755.75, "totalCost": 4627.1759999999995, "totalQty": 824.0, "orderCount": 659, "uniqueProducts": 10, "margin": 5128.5740000000005, "marginPct": 52.569756297568105}, {"YearMonth": "2021-03", "Category": "Herbal Supplements", "totalRevenue": 15000.21, "totalRevenueExVAT": 12702.98, "totalCost": 5800.07, "totalQty": 1222.0, "orderCount": 993, "uniqueProducts": 17, "margin": 6902.91, "marginPct": 54.34087119715216}, {"YearMonth": "2021-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2226.18, "totalRevenueExVAT": 1872.72, "totalCost": 582.4000000000001, "totalQty": 168.0, "orderCount": 135, "uniqueProducts": 1, "margin": 1290.32, "marginPct": 68.90085010038874}, {"YearMonth": "2021-03", "Category": "Minerals", "totalRevenue": 2565.59, "totalRevenueExVAT": 2160.72, "totalCost": 690.96, "totalQty": 327.0, "orderCount": 297, "uniqueProducts": 4, "margin": 1469.7599999999998, "marginPct": 68.02177052093747}, {"YearMonth": "2021-03", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1432.31, "totalRevenueExVAT": 1198.33, "totalCost": 417.2, "totalQty": 91.0, "orderCount": 80, "uniqueProducts": 1, "margin": 781.1299999999999, "marginPct": 65.18488229452655}, {"YearMonth": "2021-03", "Category": "Multivitamins", "totalRevenue": 11608.539999999999, "totalRevenueExVAT": 9797.7, "totalCost": 4429.8099999999995, "totalQty": 1105.0, "orderCount": 977, "uniqueProducts": 5, "margin": 5367.890000000001, "marginPct": 54.78724598630291}, {"YearMonth": "2021-03", "Category": "Natural Co Q10", "totalRevenue": 9569.78, "totalRevenueExVAT": 8141.94, "totalCost": 4048.52, "totalQty": 346.0, "orderCount": 268, "uniqueProducts": 4, "margin": 4093.4199999999996, "marginPct": 50.275732810607785}, {"YearMonth": "2021-03", "Category": "Omega 3 Supplements", "totalRevenue": 8507.84, "totalRevenueExVAT": 7201.1, "totalCost": 2716.35, "totalQty": 643.0, "orderCount": 561, "uniqueProducts": 6, "margin": 4484.75, "marginPct": 62.278679646165166}, {"YearMonth": "2021-03", "Category": "Probiotics", "totalRevenue": 3102.52, "totalRevenueExVAT": 2621.4700000000003, "totalCost": 1051.79, "totalQty": 182.0, "orderCount": 172, "uniqueProducts": 1, "margin": 1569.6800000000003, "marginPct": 59.87785479139567}, {"YearMonth": "2021-03", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 22808.35, "totalRevenueExVAT": 19258.57, "totalCost": 9339.52, "totalQty": 1029.0, "orderCount": 899, "uniqueProducts": 1, "margin": 9919.05, "marginPct": 51.50460288588404}, {"YearMonth": "2021-03", "Category": "Vitamin B", "totalRevenue": 13183.9, "totalRevenueExVAT": 11090.56, "totalCost": 4155.37, "totalQty": 1081.0, "orderCount": 952, "uniqueProducts": 12, "margin": 6935.19, "marginPct": 62.53236987131399}, {"YearMonth": "2021-03", "Category": "Vitamin C", "totalRevenue": 4444.5, "totalRevenueExVAT": 3768.5, "totalCost": 1378.96, "totalQty": 385.0, "orderCount": 321, "uniqueProducts": 4, "margin": 2389.54, "marginPct": 63.40825262040599}, {"YearMonth": "2021-03", "Category": "Vitamin D", "totalRevenue": 7331.129999999999, "totalRevenueExVAT": 6191.66, "totalCost": 1620.0, "totalQty": 750.0, "orderCount": 587, "uniqueProducts": 2, "margin": 4571.66, "marginPct": 73.83577263609436}, {"YearMonth": "2021-03", "Category": "Vitamin E", "totalRevenue": 2271.52, "totalRevenueExVAT": 1926.3, "totalCost": 859.0699999999999, "totalQty": 132.0, "orderCount": 127, "uniqueProducts": 3, "margin": 1067.23, "marginPct": 55.403104397030575}, {"YearMonth": "2021-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 3918.67, "totalRevenueExVAT": 3317.85, "totalCost": 1173.14, "totalQty": 182.0, "orderCount": 169, "uniqueProducts": 2, "margin": 2144.71, "marginPct": 64.6415600464156}, {"YearMonth": "2021-04", "Category": "Amino Acids", "totalRevenue": 6192.3099999999995, "totalRevenueExVAT": 5252.12, "totalCost": 2325.18, "totalQty": 440.0, "orderCount": 369, "uniqueProducts": 7, "margin": 2926.94, "marginPct": 55.72873430157726}, {"YearMonth": "2021-04", "Category": "Bone Health", "totalRevenue": 10792.77, "totalRevenueExVAT": 9045.69, "totalCost": 3083.16, "totalQty": 1163.0, "orderCount": 932, "uniqueProducts": 5, "margin": 5962.530000000001, "marginPct": 65.91570128978552}, {"YearMonth": "2021-04", "Category": "Cod Liver Oil", "totalRevenue": 2382.87, "totalRevenueExVAT": 2003.87, "totalCost": 1061.76, "totalQty": 309.0, "orderCount": 254, "uniqueProducts": 2, "margin": 942.1099999999999, "marginPct": 47.014526890466946}, {"YearMonth": "2021-04", "Category": "Evening Primose Oils", "totalRevenue": 3252.39, "totalRevenueExVAT": 2731.16, "totalCost": 1268.06, "totalQty": 245.0, "orderCount": 225, "uniqueProducts": 3, "margin": 1463.1, "marginPct": 53.570643975453656}, {"YearMonth": "2021-04", "Category": "Glucosamine", "totalRevenue": 10806.06, "totalRevenueExVAT": 9141.7, "totalCost": 4440.446, "totalQty": 745.0, "orderCount": 601, "uniqueProducts": 10, "margin": 4701.254000000001, "marginPct": 51.4264742881521}, {"YearMonth": "2021-04", "Category": "Herbal Supplements", "totalRevenue": 12702.13, "totalRevenueExVAT": 10770.8, "totalCost": 4868.79, "totalQty": 1005.0, "orderCount": 820, "uniqueProducts": 17, "margin": 5902.009999999999, "marginPct": 54.796393954023834}, {"YearMonth": "2021-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2079.97, "totalRevenueExVAT": 1744.3000000000002, "totalCost": 566.72, "totalQty": 155.0, "orderCount": 133, "uniqueProducts": 1, "margin": 1177.5800000000002, "marginPct": 67.51017600183454}, {"YearMonth": "2021-04", "Category": "Minerals", "totalRevenue": 2030.52, "totalRevenueExVAT": 1722.22, "totalCost": 551.64, "totalQty": 264.0, "orderCount": 244, "uniqueProducts": 4, "margin": 1170.58, "marginPct": 67.96924899257934}, {"YearMonth": "2021-04", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1913.34, "totalRevenueExVAT": 1603.32, "totalCost": 563.22, "totalQty": 114.0, "orderCount": 98, "uniqueProducts": 1, "margin": 1040.1, "marginPct": 64.87164134421076}, {"YearMonth": "2021-04", "Category": "Multivitamins", "totalRevenue": 8758.98, "totalRevenueExVAT": 7393.32, "totalCost": 3299.19, "totalQty": 817.0, "orderCount": 744, "uniqueProducts": 5, "margin": 4094.1299999999997, "marginPct": 55.376069208420574}, {"YearMonth": "2021-04", "Category": "Natural Co Q10", "totalRevenue": 8465.49, "totalRevenueExVAT": 7244.2, "totalCost": 3499.8700000000003, "totalQty": 297.0, "orderCount": 243, "uniqueProducts": 4, "margin": 3744.3299999999995, "marginPct": 51.687280859170095}, {"YearMonth": "2021-04", "Category": "Omega 3 Supplements", "totalRevenue": 6424.9, "totalRevenueExVAT": 5422.1, "totalCost": 2071.06, "totalQty": 473.0, "orderCount": 424, "uniqueProducts": 6, "margin": 3351.0400000000004, "marginPct": 61.80336032164659}, {"YearMonth": "2021-04", "Category": "Probiotics", "totalRevenue": 2843.65, "totalRevenueExVAT": 2380.4500000000003, "totalCost": 950.13, "totalQty": 170.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1430.3200000000002, "marginPct": 60.086118170934064}, {"YearMonth": "2021-04", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 20823.75, "totalRevenueExVAT": 17489.97, "totalCost": 8482.72, "totalQty": 949.0, "orderCount": 863, "uniqueProducts": 1, "margin": 9007.250000000002, "marginPct": 51.499516580074186}, {"YearMonth": "2021-04", "Category": "Vitamin B", "totalRevenue": 8051.049999999999, "totalRevenueExVAT": 6793.27, "totalCost": 2338.5299999999997, "totalQty": 682.0, "orderCount": 601, "uniqueProducts": 12, "margin": 4454.740000000001, "marginPct": 65.57578309120645}, {"YearMonth": "2021-04", "Category": "Vitamin C", "totalRevenue": 3073.7999999999997, "totalRevenueExVAT": 2596.16, "totalCost": 949.6400000000001, "totalQty": 262.0, "orderCount": 225, "uniqueProducts": 4, "margin": 1646.5199999999998, "marginPct": 63.42136077899667}, {"YearMonth": "2021-04", "Category": "Vitamin D", "totalRevenue": 5497.009999999999, "totalRevenueExVAT": 4631.46, "totalCost": 1191.0, "totalQty": 565.0, "orderCount": 463, "uniqueProducts": 2, "margin": 3440.46, "marginPct": 74.28456685364874}, {"YearMonth": "2021-04", "Category": "Vitamin E", "totalRevenue": 1916.76, "totalRevenueExVAT": 1633.69, "totalCost": 710.64, "totalQty": 114.0, "orderCount": 107, "uniqueProducts": 3, "margin": 923.0500000000001, "marginPct": 56.50092734851777}, {"YearMonth": "2021-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 2970.39, "totalRevenueExVAT": 2495.87, "totalCost": 857.0, "totalQty": 145.0, "orderCount": 130, "uniqueProducts": 2, "margin": 1638.87, "marginPct": 65.66327573150845}, {"YearMonth": "2021-05", "Category": "Amino Acids", "totalRevenue": 7297.01, "totalRevenueExVAT": 6196.13, "totalCost": 2723.57, "totalQty": 527.0, "orderCount": 421, "uniqueProducts": 7, "margin": 3472.56, "marginPct": 56.04401457038506}, {"YearMonth": "2021-05", "Category": "Bone Health", "totalRevenue": 9876.6, "totalRevenueExVAT": 8302.93, "totalCost": 2810.66, "totalQty": 1078.0, "orderCount": 886, "uniqueProducts": 5, "margin": 5492.27, "marginPct": 66.14857646637994}, {"YearMonth": "2021-05", "Category": "Cod Liver Oil", "totalRevenue": 2337.63, "totalRevenueExVAT": 1978.58, "totalCost": 985.4999999999999, "totalQty": 279.0, "orderCount": 226, "uniqueProducts": 2, "margin": 993.08, "marginPct": 50.19155151674434}, {"YearMonth": "2021-05", "Category": "Evening Primose Oils", "totalRevenue": 3402.2599999999998, "totalRevenueExVAT": 2862.46, "totalCost": 1327.0, "totalQty": 254.0, "orderCount": 224, "uniqueProducts": 3, "margin": 1535.46, "marginPct": 53.64127358984929}, {"YearMonth": "2021-05", "Category": "Glucosamine", "totalRevenue": 11379.06, "totalRevenueExVAT": 9607.85, "totalCost": 4595.329, "totalQty": 786.0, "orderCount": 630, "uniqueProducts": 9, "margin": 5012.521000000001, "marginPct": 52.171099673704326}, {"YearMonth": "2021-05", "Category": "Herbal Supplements", "totalRevenue": 15031.15, "totalRevenueExVAT": 12730.91, "totalCost": 6058.16, "totalQty": 1158.0, "orderCount": 902, "uniqueProducts": 17, "margin": 6672.75, "marginPct": 52.413770893046916}, {"YearMonth": "2021-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2342.2599999999998, "totalRevenueExVAT": 1965.5900000000001, "totalCost": 593.6, "totalQty": 161.0, "orderCount": 137, "uniqueProducts": 1, "margin": 1371.9900000000002, "marginPct": 69.80041616003338}, {"YearMonth": "2021-05", "Category": "Minerals", "totalRevenue": 2390.8, "totalRevenueExVAT": 2029.77, "totalCost": 649.1899999999999, "totalQty": 309.0, "orderCount": 267, "uniqueProducts": 4, "margin": 1380.58, "marginPct": 68.01657330633519}, {"YearMonth": "2021-05", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1655.8, "totalRevenueExVAT": 1408.0, "totalCost": 494.68, "totalQty": 100.0, "orderCount": 78, "uniqueProducts": 1, "margin": 913.3199999999999, "marginPct": 64.86647727272727}, {"YearMonth": "2021-05", "Category": "Multivitamins", "totalRevenue": 8250.789999999999, "totalRevenueExVAT": 6944.12, "totalCost": 3133.37, "totalQty": 811.0, "orderCount": 724, "uniqueProducts": 5, "margin": 3810.75, "marginPct": 54.877363870440035}, {"YearMonth": "2021-05", "Category": "Natural Co Q10", "totalRevenue": 8915.09, "totalRevenueExVAT": 7572.01, "totalCost": 3656.0600000000004, "totalQty": 306.0, "orderCount": 244, "uniqueProducts": 4, "margin": 3915.95, "marginPct": 51.71612293169184}, {"YearMonth": "2021-05", "Category": "Omega 3 Supplements", "totalRevenue": 7935.07, "totalRevenueExVAT": 6686.16, "totalCost": 2538.58, "totalQty": 582.0, "orderCount": 509, "uniqueProducts": 6, "margin": 4147.58, "marginPct": 62.03231750361942}, {"YearMonth": "2021-05", "Category": "Probiotics", "totalRevenue": 3162.34, "totalRevenueExVAT": 2680.9900000000002, "totalCost": 1067.43, "totalQty": 194.0, "orderCount": 178, "uniqueProducts": 1, "margin": 1613.5600000000002, "marginPct": 60.18523008291713}, {"YearMonth": "2021-05", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 23339.19, "totalRevenueExVAT": 19614.2, "totalCost": 9511.800000000001, "totalQty": 1045.0, "orderCount": 937, "uniqueProducts": 1, "margin": 10102.4, "marginPct": 51.50554190331494}, {"YearMonth": "2021-05", "Category": "Vitamin B", "totalRevenue": 10245.63, "totalRevenueExVAT": 8632.210000000001, "totalCost": 3306.68, "totalQty": 813.0, "orderCount": 711, "uniqueProducts": 12, "margin": 5325.530000000001, "marginPct": 61.693703003054836}, {"YearMonth": "2021-05", "Category": "Vitamin C", "totalRevenue": 3272.8799999999997, "totalRevenueExVAT": 2776.06, "totalCost": 1042.41, "totalQty": 269.0, "orderCount": 233, "uniqueProducts": 4, "margin": 1733.6499999999999, "marginPct": 62.450019091806375}, {"YearMonth": "2021-05", "Category": "Vitamin D", "totalRevenue": 5390.91, "totalRevenueExVAT": 4510.469999999999, "totalCost": 1185.6, "totalQty": 549.0, "orderCount": 442, "uniqueProducts": 2, "margin": 3324.8699999999994, "marginPct": 73.71449095105388}, {"YearMonth": "2021-05", "Category": "Vitamin E", "totalRevenue": 1864.29, "totalRevenueExVAT": 1572.23, "totalCost": 703.14, "totalQty": 109.0, "orderCount": 106, "uniqueProducts": 3, "margin": 869.09, "marginPct": 55.277535729505225}, {"YearMonth": "2021-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 2840.44, "totalRevenueExVAT": 2407.75, "totalCost": 725.34, "totalQty": 113.0, "orderCount": 106, "uniqueProducts": 1, "margin": 1682.4099999999999, "marginPct": 69.87477935832209}, {"YearMonth": "2021-06", "Category": "Amino Acids", "totalRevenue": 6755.0, "totalRevenueExVAT": 5733.81, "totalCost": 2480.44, "totalQty": 488.0, "orderCount": 395, "uniqueProducts": 7, "margin": 3253.3700000000003, "marginPct": 56.74010823518743}, {"YearMonth": "2021-06", "Category": "Bone Health", "totalRevenue": 11044.34, "totalRevenueExVAT": 9301.89, "totalCost": 3253.68, "totalQty": 1179.0, "orderCount": 898, "uniqueProducts": 5, "margin": 6048.209999999999, "marginPct": 65.02130212247188}, {"YearMonth": "2021-06", "Category": "Cod Liver Oil", "totalRevenue": 2061.92, "totalRevenueExVAT": 1729.12, "totalCost": 834.9899999999999, "totalQty": 249.0, "orderCount": 222, "uniqueProducts": 2, "margin": 894.13, "marginPct": 51.710118441750716}, {"YearMonth": "2021-06", "Category": "Evening Primose Oils", "totalRevenue": 3975.5899999999997, "totalRevenueExVAT": 3340.35, "totalCost": 1549.81, "totalQty": 294.0, "orderCount": 255, "uniqueProducts": 3, "margin": 1790.54, "marginPct": 53.603364916850026}, {"YearMonth": "2021-06", "Category": "Glucosamine", "totalRevenue": 12298.49, "totalRevenueExVAT": 10382.09, "totalCost": 4790.063, "totalQty": 866.0, "orderCount": 690, "uniqueProducts": 10, "margin": 5592.027, "marginPct": 53.86224738949479}, {"YearMonth": "2021-06", "Category": "Herbal Supplements", "totalRevenue": 15093.75, "totalRevenueExVAT": 12750.39, "totalCost": 5602.96, "totalQty": 1232.0, "orderCount": 1011, "uniqueProducts": 17, "margin": 7147.429999999999, "marginPct": 56.0565598385618}, {"YearMonth": "2021-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2431.88, "totalRevenueExVAT": 2046.57, "totalCost": 598.08, "totalQty": 164.0, "orderCount": 146, "uniqueProducts": 1, "margin": 1448.4899999999998, "marginPct": 70.77646989841539}, {"YearMonth": "2021-06", "Category": "Minerals", "totalRevenue": 2378.78, "totalRevenueExVAT": 2003.8, "totalCost": 639.88, "totalQty": 303.0, "orderCount": 267, "uniqueProducts": 4, "margin": 1363.92, "marginPct": 68.0666733206907}, {"YearMonth": "2021-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1875.4599999999998, "totalRevenueExVAT": 1576.58, "totalCost": 551.3, "totalQty": 116.0, "orderCount": 104, "uniqueProducts": 1, "margin": 1025.28, "marginPct": 65.03190450215023}, {"YearMonth": "2021-06", "Category": "Multivitamins", "totalRevenue": 8346.48, "totalRevenueExVAT": 7062.42, "totalCost": 3132.58, "totalQty": 784.0, "orderCount": 702, "uniqueProducts": 5, "margin": 3929.84, "marginPct": 55.64438252043917}, {"YearMonth": "2021-06", "Category": "Natural Co Q10", "totalRevenue": 9467.38, "totalRevenueExVAT": 8036.21, "totalCost": 3864.94, "totalQty": 334.0, "orderCount": 272, "uniqueProducts": 4, "margin": 4171.27, "marginPct": 51.90593575827411}, {"YearMonth": "2021-06", "Category": "Omega 3 Supplements", "totalRevenue": 7805.07, "totalRevenueExVAT": 6585.81, "totalCost": 2469.2, "totalQty": 570.0, "orderCount": 493, "uniqueProducts": 6, "margin": 4116.610000000001, "marginPct": 62.50726941712561}, {"YearMonth": "2021-06", "Category": "Probiotics", "totalRevenue": 2874.4, "totalRevenueExVAT": 2421.7000000000003, "totalCost": 969.6800000000001, "totalQty": 170.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1452.0200000000002, "marginPct": 59.958706693644956}, {"YearMonth": "2021-06", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 23152.7, "totalRevenueExVAT": 19482.46, "totalCost": 9448.16, "totalQty": 1042.0, "orderCount": 942, "uniqueProducts": 1, "margin": 10034.3, "marginPct": 51.504276154038045}, {"YearMonth": "2021-06", "Category": "Vitamin B", "totalRevenue": 12461.119999999999, "totalRevenueExVAT": 10504.970000000001, "totalCost": 3806.15, "totalQty": 951.0, "orderCount": 834, "uniqueProducts": 12, "margin": 6698.8200000000015, "marginPct": 63.768102145936645}, {"YearMonth": "2021-06", "Category": "Vitamin C", "totalRevenue": 3924.48, "totalRevenueExVAT": 3319.59, "totalCost": 1236.23, "totalQty": 330.0, "orderCount": 293, "uniqueProducts": 4, "margin": 2083.36, "marginPct": 62.75955765621658}, {"YearMonth": "2021-06", "Category": "Vitamin D", "totalRevenue": 4963.969999999999, "totalRevenueExVAT": 4167.299999999999, "totalCost": 1083.6, "totalQty": 509.0, "orderCount": 414, "uniqueProducts": 2, "margin": 3083.6999999999994, "marginPct": 73.99755237203945}, {"YearMonth": "2021-06", "Category": "Vitamin E", "totalRevenue": 1843.37, "totalRevenueExVAT": 1553.67, "totalCost": 697.78, "totalQty": 114.0, "orderCount": 109, "uniqueProducts": 3, "margin": 855.8900000000001, "marginPct": 55.08827485888253}, {"YearMonth": "2021-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 7398.54, "totalRevenueExVAT": 6249.5, "totalCost": 2357.58, "totalQty": 357.0, "orderCount": 319, "uniqueProducts": 2, "margin": 3891.92, "marginPct": 62.2757020561645}, {"YearMonth": "2021-07", "Category": "Amino Acids", "totalRevenue": 7329.04, "totalRevenueExVAT": 6189.2, "totalCost": 2713.57, "totalQty": 542.0, "orderCount": 453, "uniqueProducts": 7, "margin": 3475.6299999999997, "marginPct": 56.15636915918051}, {"YearMonth": "2021-07", "Category": "Bone Health", "totalRevenue": 12124.69, "totalRevenueExVAT": 10179.61, "totalCost": 3795.25, "totalQty": 1384.0, "orderCount": 1096, "uniqueProducts": 5, "margin": 6384.360000000001, "marginPct": 62.71713749347961}, {"YearMonth": "2021-07", "Category": "Cod Liver Oil", "totalRevenue": 2655.56, "totalRevenueExVAT": 2225.13, "totalCost": 1206.1799999999998, "totalQty": 346.0, "orderCount": 292, "uniqueProducts": 2, "margin": 1018.9500000000003, "marginPct": 45.79283008183793}, {"YearMonth": "2021-07", "Category": "Evening Primose Oils", "totalRevenue": 4498.21, "totalRevenueExVAT": 3783.37, "totalCost": 1860.6499999999999, "totalQty": 353.0, "orderCount": 306, "uniqueProducts": 3, "margin": 1922.72, "marginPct": 50.82030041999593}, {"YearMonth": "2021-07", "Category": "Glucosamine", "totalRevenue": 14754.9, "totalRevenueExVAT": 12379.6, "totalCost": 6177.714, "totalQty": 1083.0, "orderCount": 861, "uniqueProducts": 10, "margin": 6201.886, "marginPct": 50.09762835632815}, {"YearMonth": "2021-07", "Category": "Herbal Supplements", "totalRevenue": 17366.579999999998, "totalRevenueExVAT": 14594.82, "totalCost": 7028.7, "totalQty": 1467.0, "orderCount": 1175, "uniqueProducts": 17, "margin": 7566.12, "marginPct": 51.84113267583979}, {"YearMonth": "2021-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2583.97, "totalRevenueExVAT": 2171.37, "totalCost": 683.2, "totalQty": 185.0, "orderCount": 155, "uniqueProducts": 1, "margin": 1488.1699999999998, "marginPct": 68.53599340508526}, {"YearMonth": "2021-07", "Category": "Minerals", "totalRevenue": 2895.5, "totalRevenueExVAT": 2431.5499999999997, "totalCost": 843.64, "totalQty": 390.0, "orderCount": 337, "uniqueProducts": 4, "margin": 1587.9099999999999, "marginPct": 65.30443544241328}, {"YearMonth": "2021-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2315.3, "totalRevenueExVAT": 1932.8700000000001, "totalCost": 727.12, "totalQty": 149.0, "orderCount": 123, "uniqueProducts": 1, "margin": 1205.75, "marginPct": 62.38132931857807}, {"YearMonth": "2021-07", "Category": "Multivitamins", "totalRevenue": 11218.48, "totalRevenueExVAT": 9403.98, "totalCost": 4699.47, "totalQty": 1120.0, "orderCount": 980, "uniqueProducts": 5, "margin": 4704.509999999999, "marginPct": 50.026797164604766}, {"YearMonth": "2021-07", "Category": "Natural Co Q10", "totalRevenue": 11073.23, "totalRevenueExVAT": 9401.99, "totalCost": 4892.030000000001, "totalQty": 413.0, "orderCount": 329, "uniqueProducts": 4, "margin": 4509.959999999999, "marginPct": 47.968142914425556}, {"YearMonth": "2021-07", "Category": "Omega 3 Supplements", "totalRevenue": 9441.59, "totalRevenueExVAT": 7926.39, "totalCost": 3296.79, "totalQty": 732.0, "orderCount": 612, "uniqueProducts": 6, "margin": 4629.6, "marginPct": 58.407421285099524}, {"YearMonth": "2021-07", "Category": "Probiotics", "totalRevenue": 3619.3, "totalRevenueExVAT": 3057.4, "totalCost": 1223.8300000000002, "totalQty": 215.0, "orderCount": 200, "uniqueProducts": 1, "margin": 1833.57, "marginPct": 59.971544449532274}, {"YearMonth": "2021-07", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 25640.11, "totalRevenueExVAT": 21442.8, "totalCost": 11164.4, "totalQty": 1240.0, "orderCount": 1074, "uniqueProducts": 1, "margin": 10278.4, "marginPct": 47.93403846512582}, {"YearMonth": "2021-07", "Category": "Vitamin B", "totalRevenue": 13383.25, "totalRevenueExVAT": 11246.810000000001, "totalCost": 4656.32, "totalQty": 1147.0, "orderCount": 968, "uniqueProducts": 12, "margin": 6590.490000000002, "marginPct": 58.59874933425567}, {"YearMonth": "2021-07", "Category": "Vitamin C", "totalRevenue": 4622.5599999999995, "totalRevenueExVAT": 3908.48, "totalCost": 1594.15, "totalQty": 393.0, "orderCount": 326, "uniqueProducts": 4, "margin": 2314.33, "marginPct": 59.21304445718029}, {"YearMonth": "2021-07", "Category": "Vitamin D", "totalRevenue": 5891.86, "totalRevenueExVAT": 4938.0599999999995, "totalCost": 1380.0, "totalQty": 638.0, "orderCount": 518, "uniqueProducts": 2, "margin": 3558.0599999999995, "marginPct": 72.05380250543736}, {"YearMonth": "2021-07", "Category": "Vitamin E", "totalRevenue": 2867.41, "totalRevenueExVAT": 2440.33, "totalCost": 1199.8899999999999, "totalQty": 174.0, "orderCount": 148, "uniqueProducts": 3, "margin": 1240.44, "marginPct": 50.830830256563665}, {"YearMonth": "2021-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 6625.44, "totalRevenueExVAT": 5550.08, "totalCost": 2203.12, "totalQty": 343.0, "orderCount": 293, "uniqueProducts": 2, "margin": 3346.96, "marginPct": 60.304716328413285}, {"YearMonth": "2021-08", "Category": "Amino Acids", "totalRevenue": 5737.5599999999995, "totalRevenueExVAT": 4820.53, "totalCost": 2010.6100000000001, "totalQty": 397.0, "orderCount": 336, "uniqueProducts": 7, "margin": 2809.9199999999996, "marginPct": 58.29068587893862}, {"YearMonth": "2021-08", "Category": "Bone Health", "totalRevenue": 8804.529999999999, "totalRevenueExVAT": 7397.21, "totalCost": 2595.29, "totalQty": 931.0, "orderCount": 761, "uniqueProducts": 5, "margin": 4801.92, "marginPct": 64.91528562795973}, {"YearMonth": "2021-08", "Category": "Cod Liver Oil", "totalRevenue": 1766.1999999999998, "totalRevenueExVAT": 1479.1899999999998, "totalCost": 717.0899999999999, "totalQty": 211.0, "orderCount": 179, "uniqueProducts": 2, "margin": 762.0999999999999, "marginPct": 51.52144078853967}, {"YearMonth": "2021-08", "Category": "Evening Primose Oils", "totalRevenue": 2625.72, "totalRevenueExVAT": 2205.1, "totalCost": 1092.17, "totalQty": 211.0, "orderCount": 189, "uniqueProducts": 3, "margin": 1112.9299999999998, "marginPct": 50.470726951158674}, {"YearMonth": "2021-08", "Category": "Glucosamine", "totalRevenue": 9381.699999999999, "totalRevenueExVAT": 7937.1, "totalCost": 3797.14, "totalQty": 662.0, "orderCount": 517, "uniqueProducts": 9, "margin": 4139.960000000001, "marginPct": 52.159604893474956}, {"YearMonth": "2021-08", "Category": "Herbal Supplements", "totalRevenue": 12230.99, "totalRevenueExVAT": 10262.91, "totalCost": 4688.71, "totalQty": 994.0, "orderCount": 815, "uniqueProducts": 17, "margin": 5574.2, "marginPct": 54.31402984143874}, {"YearMonth": "2021-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1347.56, "totalRevenueExVAT": 1128.23, "totalCost": 329.28000000000003, "totalQty": 95.0, "orderCount": 87, "uniqueProducts": 1, "margin": 798.95, "marginPct": 70.81446159027858}, {"YearMonth": "2021-08", "Category": "Minerals", "totalRevenue": 2054.02, "totalRevenueExVAT": 1724.4099999999999, "totalCost": 560.1899999999999, "totalQty": 259.0, "orderCount": 219, "uniqueProducts": 4, "margin": 1164.2199999999998, "marginPct": 67.51410627402996}, {"YearMonth": "2021-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1870.1299999999999, "totalRevenueExVAT": 1565.99, "totalCost": 554.28, "totalQty": 109.0, "orderCount": 94, "uniqueProducts": 1, "margin": 1011.71, "marginPct": 64.60513796384396}, {"YearMonth": "2021-08", "Category": "Multivitamins", "totalRevenue": 8242.36, "totalRevenueExVAT": 6929.43, "totalCost": 3124.21, "totalQty": 783.0, "orderCount": 698, "uniqueProducts": 5, "margin": 3805.2200000000003, "marginPct": 54.91389623677561}, {"YearMonth": "2021-08", "Category": "Natural Co Q10", "totalRevenue": 8102.52, "totalRevenueExVAT": 6827.26, "totalCost": 3283.86, "totalQty": 279.0, "orderCount": 226, "uniqueProducts": 4, "margin": 3543.4, "marginPct": 51.90076253138155}, {"YearMonth": "2021-08", "Category": "Omega 3 Supplements", "totalRevenue": 6201.24, "totalRevenueExVAT": 5230.83, "totalCost": 1991.05, "totalQty": 470.0, "orderCount": 408, "uniqueProducts": 6, "margin": 3239.7799999999997, "marginPct": 61.936251034730624}, {"YearMonth": "2021-08", "Category": "Probiotics", "totalRevenue": 2499.71, "totalRevenueExVAT": 2092.62, "totalCost": 754.63, "totalQty": 134.0, "orderCount": 129, "uniqueProducts": 1, "margin": 1337.9899999999998, "marginPct": 63.938507708040625}, {"YearMonth": "2021-08", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 17865.85, "totalRevenueExVAT": 14982.039999999999, "totalCost": 7291.04, "totalQty": 823.0, "orderCount": 734, "uniqueProducts": 1, "margin": 7690.999999999999, "marginPct": 51.334798198376184}, {"YearMonth": "2021-08", "Category": "Vitamin B", "totalRevenue": 11831.43, "totalRevenueExVAT": 9904.02, "totalCost": 3675.67, "totalQty": 925.0, "orderCount": 818, "uniqueProducts": 12, "margin": 6228.35, "marginPct": 62.887090292628656}, {"YearMonth": "2021-08", "Category": "Vitamin C", "totalRevenue": 3435.81, "totalRevenueExVAT": 2886.7, "totalCost": 1087.5800000000002, "totalQty": 282.0, "orderCount": 228, "uniqueProducts": 4, "margin": 1799.1199999999997, "marginPct": 62.324453528250245}, {"YearMonth": "2021-08", "Category": "Vitamin D", "totalRevenue": 4869.84, "totalRevenueExVAT": 4086.74, "totalCost": 1053.8999999999999, "totalQty": 500.0, "orderCount": 394, "uniqueProducts": 2, "margin": 3032.84, "marginPct": 74.21171887617025}, {"YearMonth": "2021-08", "Category": "Vitamin E", "totalRevenue": 1977.25, "totalRevenueExVAT": 1658.9, "totalCost": 739.48, "totalQty": 110.0, "orderCount": 102, "uniqueProducts": 3, "margin": 919.4200000000001, "marginPct": 55.42347338597866}, {"YearMonth": "2021-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 4035.5, "totalRevenueExVAT": 3407.4300000000003, "totalCost": 1303.62, "totalQty": 200.0, "orderCount": 172, "uniqueProducts": 2, "margin": 2103.8100000000004, "marginPct": 61.741840624752385}, {"YearMonth": "2021-09", "Category": "Amino Acids", "totalRevenue": 7399.53, "totalRevenueExVAT": 6206.41, "totalCost": 2589.24, "totalQty": 499.0, "orderCount": 406, "uniqueProducts": 7, "margin": 3617.17, "marginPct": 58.28119637600481}, {"YearMonth": "2021-09", "Category": "Bone Health", "totalRevenue": 9635.84, "totalRevenueExVAT": 8064.0599999999995, "totalCost": 2720.73, "totalQty": 1041.0, "orderCount": 860, "uniqueProducts": 5, "margin": 5343.33, "marginPct": 66.26103972440681}, {"YearMonth": "2021-09", "Category": "Cod Liver Oil", "totalRevenue": 2266.9, "totalRevenueExVAT": 1896.07, "totalCost": 914.55, "totalQty": 272.0, "orderCount": 233, "uniqueProducts": 2, "margin": 981.52, "marginPct": 51.766021296682084}, {"YearMonth": "2021-09", "Category": "Evening Primose Oils", "totalRevenue": 3202.4, "totalRevenueExVAT": 2673.72, "totalCost": 1329.99, "totalQty": 248.0, "orderCount": 209, "uniqueProducts": 3, "margin": 1343.7299999999998, "marginPct": 50.2569453794713}, {"YearMonth": "2021-09", "Category": "Glucosamine", "totalRevenue": 10886.01, "totalRevenueExVAT": 9156.56, "totalCost": 4383.389999999999, "totalQty": 762.0, "orderCount": 596, "uniqueProducts": 9, "margin": 4773.17, "marginPct": 52.128419406414636}, {"YearMonth": "2021-09", "Category": "Herbal Supplements", "totalRevenue": 11286.18, "totalRevenueExVAT": 9456.5, "totalCost": 4396.16, "totalQty": 892.0, "orderCount": 735, "uniqueProducts": 17, "margin": 5060.34, "marginPct": 53.511764394860684}, {"YearMonth": "2021-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2363.41, "totalRevenueExVAT": 1980.89, "totalCost": 582.4000000000001, "totalQty": 164.0, "orderCount": 134, "uniqueProducts": 1, "margin": 1398.49, "marginPct": 70.59907415353705}, {"YearMonth": "2021-09", "Category": "Minerals", "totalRevenue": 2257.81, "totalRevenueExVAT": 1885.56, "totalCost": 598.7, "totalQty": 290.0, "orderCount": 253, "uniqueProducts": 4, "margin": 1286.86, "marginPct": 68.24815969791467}, {"YearMonth": "2021-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2082.5099999999998, "totalRevenueExVAT": 1737.44, "totalCost": 613.88, "totalQty": 130.0, "orderCount": 96, "uniqueProducts": 1, "margin": 1123.56, "marginPct": 64.66755686527304}, {"YearMonth": "2021-09", "Category": "Multivitamins", "totalRevenue": 8945.19, "totalRevenueExVAT": 7500.58, "totalCost": 3332.1, "totalQty": 835.0, "orderCount": 727, "uniqueProducts": 5, "margin": 4168.48, "marginPct": 55.57543549965469}, {"YearMonth": "2021-09", "Category": "Natural Co Q10", "totalRevenue": 9402.37, "totalRevenueExVAT": 7934.61, "totalCost": 3788.03, "totalQty": 318.0, "orderCount": 263, "uniqueProducts": 4, "margin": 4146.58, "marginPct": 52.259405314186836}, {"YearMonth": "2021-09", "Category": "Omega 3 Supplements", "totalRevenue": 7685.17, "totalRevenueExVAT": 6434.7, "totalCost": 2456.05, "totalQty": 558.0, "orderCount": 479, "uniqueProducts": 6, "margin": 3978.6499999999996, "marginPct": 61.831165400096346}, {"YearMonth": "2021-09", "Category": "Probiotics", "totalRevenue": 2876.7599999999998, "totalRevenueExVAT": 2418.84, "totalCost": 868.02, "totalQty": 156.0, "orderCount": 147, "uniqueProducts": 1, "margin": 1550.8200000000002, "marginPct": 64.11420350250535}, {"YearMonth": "2021-09", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 21029.14, "totalRevenueExVAT": 17575.56, "totalCost": 8529.960000000001, "totalQty": 1047.0, "orderCount": 846, "uniqueProducts": 1, "margin": 9045.6, "marginPct": 51.46692338679393}, {"YearMonth": "2021-09", "Category": "Vitamin B", "totalRevenue": 11137.43, "totalRevenueExVAT": 9333.76, "totalCost": 3555.5099999999998, "totalQty": 893.0, "orderCount": 762, "uniqueProducts": 12, "margin": 5778.25, "marginPct": 61.9069913946791}, {"YearMonth": "2021-09", "Category": "Vitamin C", "totalRevenue": 4262.61, "totalRevenueExVAT": 3571.81, "totalCost": 1339.2, "totalQty": 352.0, "orderCount": 306, "uniqueProducts": 4, "margin": 2232.6099999999997, "marginPct": 62.50640431601904}, {"YearMonth": "2021-09", "Category": "Vitamin D", "totalRevenue": 6097.15, "totalRevenueExVAT": 5114.67, "totalCost": 1332.6, "totalQty": 627.0, "orderCount": 486, "uniqueProducts": 2, "margin": 3782.07, "marginPct": 73.94553314290071}, {"YearMonth": "2021-09", "Category": "Vitamin E", "totalRevenue": 1830.47, "totalRevenueExVAT": 1530.45, "totalCost": 699.24, "totalQty": 111.0, "orderCount": 102, "uniqueProducts": 3, "margin": 831.21, "marginPct": 54.31147701656376}, {"YearMonth": "2021-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 8040.46, "totalRevenueExVAT": 6750.36, "totalCost": 2434.5, "totalQty": 380.0, "orderCount": 317, "uniqueProducts": 2, "margin": 4315.86, "marginPct": 63.93525678630473}, {"YearMonth": "2021-10", "Category": "Amino Acids", "totalRevenue": 5635.2, "totalRevenueExVAT": 4712.67, "totalCost": 2027.46, "totalQty": 400.0, "orderCount": 352, "uniqueProducts": 7, "margin": 2685.21, "marginPct": 56.978528095538195}, {"YearMonth": "2021-10", "Category": "Bone Health", "totalRevenue": 10379.23, "totalRevenueExVAT": 8677.92, "totalCost": 2962.2999999999997, "totalQty": 1106.0, "orderCount": 940, "uniqueProducts": 5, "margin": 5715.620000000001, "marginPct": 65.86393974592991}, {"YearMonth": "2021-10", "Category": "Cod Liver Oil", "totalRevenue": 1923.9699999999998, "totalRevenueExVAT": 1609.71, "totalCost": 782.1899999999999, "totalQty": 226.0, "orderCount": 201, "uniqueProducts": 2, "margin": 827.5200000000001, "marginPct": 51.40801759323108}, {"YearMonth": "2021-10", "Category": "Evening Primose Oils", "totalRevenue": 3661.41, "totalRevenueExVAT": 3064.0499999999997, "totalCost": 1524.46, "totalQty": 282.0, "orderCount": 250, "uniqueProducts": 3, "margin": 1539.5899999999997, "marginPct": 50.24689544883405}, {"YearMonth": "2021-10", "Category": "Glucosamine", "totalRevenue": 9608.35, "totalRevenueExVAT": 8079.849999999999, "totalCost": 3896.97, "totalQty": 646.0, "orderCount": 527, "uniqueProducts": 8, "margin": 4182.879999999999, "marginPct": 51.769277895010426}, {"YearMonth": "2021-10", "Category": "Herbal Supplements", "totalRevenue": 12874.08, "totalRevenueExVAT": 10789.0, "totalCost": 4828.7699999999995, "totalQty": 1054.0, "orderCount": 839, "uniqueProducts": 17, "margin": 5960.2300000000005, "marginPct": 55.243581425526}, {"YearMonth": "2021-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2387.3199999999997, "totalRevenueExVAT": 2004.42, "totalCost": 651.84, "totalQty": 177.0, "orderCount": 150, "uniqueProducts": 1, "margin": 1352.58, "marginPct": 67.47986948843057}, {"YearMonth": "2021-10", "Category": "Minerals", "totalRevenue": 2256.57, "totalRevenueExVAT": 1890.56, "totalCost": 602.1, "totalQty": 292.0, "orderCount": 256, "uniqueProducts": 4, "margin": 1288.46, "marginPct": 68.15229350033853}, {"YearMonth": "2021-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2182.21, "totalRevenueExVAT": 1826.41, "totalCost": 712.22, "totalQty": 146.0, "orderCount": 116, "uniqueProducts": 1, "margin": 1114.19, "marginPct": 61.004374702284814}, {"YearMonth": "2021-10", "Category": "Multivitamins", "totalRevenue": 10394.49, "totalRevenueExVAT": 8719.94, "totalCost": 3891.44, "totalQty": 983.0, "orderCount": 849, "uniqueProducts": 6, "margin": 4828.5, "marginPct": 55.37308742950066}, {"YearMonth": "2021-10", "Category": "Natural Co Q10", "totalRevenue": 7371.9800000000005, "totalRevenueExVAT": 6210.69, "totalCost": 2977.11, "totalQty": 256.0, "orderCount": 217, "uniqueProducts": 4, "margin": 3233.5799999999995, "marginPct": 52.06474642914072}, {"YearMonth": "2021-10", "Category": "Omega 3 Supplements", "totalRevenue": 7598.71, "totalRevenueExVAT": 6378.61, "totalCost": 2471.34, "totalQty": 553.0, "orderCount": 487, "uniqueProducts": 6, "margin": 3907.2699999999995, "marginPct": 61.255822193236455}, {"YearMonth": "2021-10", "Category": "Probiotics", "totalRevenue": 2781.97, "totalRevenueExVAT": 2324.05, "totalCost": 832.83, "totalQty": 151.0, "orderCount": 140, "uniqueProducts": 1, "margin": 1491.2200000000003, "marginPct": 64.16471246315699}, {"YearMonth": "2021-10", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 19420.05, "totalRevenueExVAT": 16274.63, "totalCost": 7893.24, "totalQty": 873.0, "orderCount": 783, "uniqueProducts": 1, "margin": 8381.39, "marginPct": 51.49972687551114}, {"YearMonth": "2021-10", "Category": "Vitamin B", "totalRevenue": 10451.01, "totalRevenueExVAT": 8725.24, "totalCost": 3248.98, "totalQty": 798.0, "orderCount": 696, "uniqueProducts": 13, "margin": 5476.26, "marginPct": 62.763431149171836}, {"YearMonth": "2021-10", "Category": "Vitamin C", "totalRevenue": 3178.9199999999996, "totalRevenueExVAT": 2668.15, "totalCost": 1002.6400000000001, "totalQty": 255.0, "orderCount": 224, "uniqueProducts": 4, "margin": 1665.51, "marginPct": 62.42190281655829}, {"YearMonth": "2021-10", "Category": "Vitamin D", "totalRevenue": 7318.3, "totalRevenueExVAT": 6112.349999999999, "totalCost": 1668.6, "totalQty": 777.0, "orderCount": 599, "uniqueProducts": 2, "margin": 4443.75, "marginPct": 72.70117058087315}, {"YearMonth": "2021-10", "Category": "Vitamin E", "totalRevenue": 1681.47, "totalRevenueExVAT": 1411.02, "totalCost": 652.95, "totalQty": 98.0, "orderCount": 89, "uniqueProducts": 3, "margin": 758.0699999999999, "marginPct": 53.724964918994765}, {"YearMonth": "2021-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 3681.19, "totalRevenueExVAT": 3112.89, "totalCost": 1080.02, "totalQty": 179.0, "orderCount": 166, "uniqueProducts": 2, "margin": 2032.87, "marginPct": 65.30490958562622}, {"YearMonth": "2021-11", "Category": "Amino Acids", "totalRevenue": 7919.18, "totalRevenueExVAT": 6644.58, "totalCost": 3008.72, "totalQty": 570.0, "orderCount": 469, "uniqueProducts": 7, "margin": 3635.86, "marginPct": 54.71918465877452}, {"YearMonth": "2021-11", "Category": "Bone Health", "totalRevenue": 14786.9, "totalRevenueExVAT": 12363.56, "totalCost": 4586.15, "totalQty": 1568.0, "orderCount": 1234, "uniqueProducts": 5, "margin": 7777.41, "marginPct": 62.90591059533015}, {"YearMonth": "2021-11", "Category": "Cod Liver Oil", "totalRevenue": 2679.73, "totalRevenueExVAT": 2240.18, "totalCost": 1166.22, "totalQty": 339.0, "orderCount": 287, "uniqueProducts": 2, "margin": 1073.9599999999998, "marginPct": 47.940790472194195}, {"YearMonth": "2021-11", "Category": "Evening Primose Oils", "totalRevenue": 4141.31, "totalRevenueExVAT": 3464.62, "totalCost": 1786.37, "totalQty": 334.0, "orderCount": 288, "uniqueProducts": 3, "margin": 1678.25, "marginPct": 48.4396557198192}, {"YearMonth": "2021-11", "Category": "Glucosamine", "totalRevenue": 14661.17, "totalRevenueExVAT": 12299.75, "totalCost": 6256.2699999999995, "totalQty": 1036.0, "orderCount": 778, "uniqueProducts": 9, "margin": 6043.4800000000005, "marginPct": 49.134982418341835}, {"YearMonth": "2021-11", "Category": "Herbal Supplements", "totalRevenue": 15216.01, "totalRevenueExVAT": 12740.99, "totalCost": 6194.75, "totalQty": 1249.0, "orderCount": 1029, "uniqueProducts": 17, "margin": 6546.24, "marginPct": 51.379366909478776}, {"YearMonth": "2021-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3022.31, "totalRevenueExVAT": 2519.4900000000002, "totalCost": 808.6400000000001, "totalQty": 225.0, "orderCount": 197, "uniqueProducts": 1, "margin": 1710.8500000000001, "marginPct": 67.90461561665258}, {"YearMonth": "2021-11", "Category": "Minerals", "totalRevenue": 2968.09, "totalRevenueExVAT": 2481.69, "totalCost": 855.13, "totalQty": 399.0, "orderCount": 350, "uniqueProducts": 4, "margin": 1626.56, "marginPct": 65.5424327776636}, {"YearMonth": "2021-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2298.79, "totalRevenueExVAT": 1917.6000000000001, "totalCost": 739.04, "totalQty": 151.0, "orderCount": 121, "uniqueProducts": 1, "margin": 1178.5600000000002, "marginPct": 61.46015853149771}, {"YearMonth": "2021-11", "Category": "Multivitamins", "totalRevenue": 10882.75, "totalRevenueExVAT": 9122.720000000001, "totalCost": 4349.05, "totalQty": 1085.0, "orderCount": 906, "uniqueProducts": 6, "margin": 4773.670000000001, "marginPct": 52.32726642931056}, {"YearMonth": "2021-11", "Category": "Natural Co Q10", "totalRevenue": 10601.16, "totalRevenueExVAT": 8896.73, "totalCost": 4610.39, "totalQty": 374.0, "orderCount": 296, "uniqueProducts": 4, "margin": 4286.339999999999, "marginPct": 48.17882525377301}, {"YearMonth": "2021-11", "Category": "Omega 3 Supplements", "totalRevenue": 9355.76, "totalRevenueExVAT": 7829.7300000000005, "totalCost": 3131.52, "totalQty": 711.0, "orderCount": 608, "uniqueProducts": 6, "margin": 4698.210000000001, "marginPct": 60.0047511216862}, {"YearMonth": "2021-11", "Category": "Probiotics", "totalRevenue": 3002.91, "totalRevenueExVAT": 2527.4, "totalCost": 961.86, "totalQty": 171.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1565.54, "marginPct": 61.942707921183825}, {"YearMonth": "2021-11", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 23683.13, "totalRevenueExVAT": 19842.52, "totalCost": 10310.4, "totalQty": 1155.0, "orderCount": 1006, "uniqueProducts": 1, "margin": 9532.12, "marginPct": 48.03885796763718}, {"YearMonth": "2021-11", "Category": "Vitamin B", "totalRevenue": 12419.67, "totalRevenueExVAT": 10381.75, "totalCost": 4015.37, "totalQty": 1032.0, "orderCount": 893, "uniqueProducts": 12, "margin": 6366.38, "marginPct": 61.322802032412646}, {"YearMonth": "2021-11", "Category": "Vitamin C", "totalRevenue": 4643.599999999999, "totalRevenueExVAT": 3894.88, "totalCost": 1588.02, "totalQty": 401.0, "orderCount": 346, "uniqueProducts": 4, "margin": 2306.86, "marginPct": 59.22801215955305}, {"YearMonth": "2021-11", "Category": "Vitamin D", "totalRevenue": 8208.64, "totalRevenueExVAT": 6854.8099999999995, "totalCost": 1888.5, "totalQty": 886.0, "orderCount": 655, "uniqueProducts": 2, "margin": 4966.3099999999995, "marginPct": 72.45000226118594}, {"YearMonth": "2021-11", "Category": "Vitamin E", "totalRevenue": 2149.87, "totalRevenueExVAT": 1793.9, "totalCost": 823.67, "totalQty": 119.0, "orderCount": 108, "uniqueProducts": 3, "margin": 970.2300000000001, "marginPct": 54.0849545682591}, {"YearMonth": "2021-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 5365.32, "totalRevenueExVAT": 4482.08, "totalCost": 1662.08, "totalQty": 260.0, "orderCount": 235, "uniqueProducts": 2, "margin": 2820.0, "marginPct": 62.91721700638989}, {"YearMonth": "2021-12", "Category": "Amino Acids", "totalRevenue": 4638.49, "totalRevenueExVAT": 3879.79, "totalCost": 1674.06, "totalQty": 316.0, "orderCount": 259, "uniqueProducts": 6, "margin": 2205.73, "marginPct": 56.851788369989094}, {"YearMonth": "2021-12", "Category": "Bone Health", "totalRevenue": 6431.8099999999995, "totalRevenueExVAT": 5386.87, "totalCost": 1756.84, "totalQty": 718.0, "orderCount": 615, "uniqueProducts": 5, "margin": 3630.0299999999997, "marginPct": 67.38662711370425}, {"YearMonth": "2021-12", "Category": "Cod Liver Oil", "totalRevenue": 1855.93, "totalRevenueExVAT": 1552.24, "totalCost": 774.4799999999999, "totalQty": 235.0, "orderCount": 194, "uniqueProducts": 2, "margin": 777.7600000000001, "marginPct": 50.10565376488173}, {"YearMonth": "2021-12", "Category": "Evening Primose Oils", "totalRevenue": 2359.64, "totalRevenueExVAT": 1969.1499999999999, "totalCost": 943.71, "totalQty": 183.0, "orderCount": 166, "uniqueProducts": 3, "margin": 1025.4399999999998, "marginPct": 52.07526089937282}, {"YearMonth": "2021-12", "Category": "Glucosamine", "totalRevenue": 8488.25, "totalRevenueExVAT": 7152.82, "totalCost": 3494.2999999999997, "totalQty": 585.0, "orderCount": 469, "uniqueProducts": 9, "margin": 3658.52, "marginPct": 51.14793885488521}, {"YearMonth": "2021-12", "Category": "Herbal Supplements", "totalRevenue": 10940.57, "totalRevenueExVAT": 9147.01, "totalCost": 4177.49, "totalQty": 887.0, "orderCount": 717, "uniqueProducts": 16, "margin": 4969.52, "marginPct": 54.32944754624736}, {"YearMonth": "2021-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1426.1399999999999, "totalRevenueExVAT": 1190.87, "totalCost": 358.40000000000003, "totalQty": 108.0, "orderCount": 95, "uniqueProducts": 1, "margin": 832.4699999999998, "marginPct": 69.90435563915456}, {"YearMonth": "2021-12", "Category": "Minerals", "totalRevenue": 2114.97, "totalRevenueExVAT": 1764.21, "totalCost": 576.5699999999999, "totalQty": 280.0, "orderCount": 257, "uniqueProducts": 4, "margin": 1187.64, "marginPct": 67.31851650313739}, {"YearMonth": "2021-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1693.83, "totalRevenueExVAT": 1417.2, "totalCost": 515.54, "totalQty": 103.0, "orderCount": 86, "uniqueProducts": 1, "margin": 901.6600000000001, "marginPct": 63.62263618402484}, {"YearMonth": "2021-12", "Category": "Multivitamins", "totalRevenue": 7101.67, "totalRevenueExVAT": 5948.4800000000005, "totalCost": 2689.86, "totalQty": 645.0, "orderCount": 567, "uniqueProducts": 5, "margin": 3258.6200000000003, "marginPct": 54.780717090752596}, {"YearMonth": "2021-12", "Category": "Natural Co Q10", "totalRevenue": 6702.09, "totalRevenueExVAT": 5617.58, "totalCost": 2775.59, "totalQty": 230.0, "orderCount": 182, "uniqueProducts": 4, "margin": 2841.99, "marginPct": 50.59100181928873}, {"YearMonth": "2021-12", "Category": "Omega 3 Supplements", "totalRevenue": 5886.42, "totalRevenueExVAT": 4933.87, "totalCost": 1905.17, "totalQty": 459.0, "orderCount": 376, "uniqueProducts": 6, "margin": 3028.7, "marginPct": 61.38588977820656}, {"YearMonth": "2021-12", "Category": "Probiotics", "totalRevenue": 2163.44, "totalRevenueExVAT": 1813.68, "totalCost": 672.52, "totalQty": 118.0, "orderCount": 112, "uniqueProducts": 1, "margin": 1141.16, "marginPct": 62.91958890212166}, {"YearMonth": "2021-12", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 18938.89, "totalRevenueExVAT": 15808.0, "totalCost": 8074.72, "totalQty": 889.0, "orderCount": 727, "uniqueProducts": 1, "margin": 7733.28, "marginPct": 48.92004048582996}, {"YearMonth": "2021-12", "Category": "Vitamin B", "totalRevenue": 8891.19, "totalRevenueExVAT": 7432.72, "totalCost": 2799.91, "totalQty": 717.0, "orderCount": 632, "uniqueProducts": 12, "margin": 4632.81, "marginPct": 62.32994112518702}, {"YearMonth": "2021-12", "Category": "Vitamin C", "totalRevenue": 3244.0099999999998, "totalRevenueExVAT": 2712.45, "totalCost": 1045.41, "totalQty": 275.0, "orderCount": 243, "uniqueProducts": 4, "margin": 1667.0399999999997, "marginPct": 61.45882873417021}, {"YearMonth": "2021-12", "Category": "Vitamin D", "totalRevenue": 5590.71, "totalRevenueExVAT": 4671.179999999999, "totalCost": 1276.8, "totalQty": 579.0, "orderCount": 461, "uniqueProducts": 2, "margin": 3394.379999999999, "marginPct": 72.66643546170346}, {"YearMonth": "2021-12", "Category": "Vitamin E", "totalRevenue": 1683.24, "totalRevenueExVAT": 1417.7, "totalCost": 627.89, "totalQty": 91.0, "orderCount": 82, "uniqueProducts": 3, "margin": 789.8100000000001, "marginPct": 55.710658108203425}, {"YearMonth": "2021-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 3415.6, "totalRevenueExVAT": 2859.05, "totalCost": 1043.24, "totalQty": 162.0, "orderCount": 133, "uniqueProducts": 2, "margin": 1815.8100000000002, "marginPct": 63.51095643657858}, {"YearMonth": "2022-01", "Category": "Amino Acids", "totalRevenue": 7585.34, "totalRevenueExVAT": 6318.1, "totalCost": 2972.55, "totalQty": 581.0, "orderCount": 486, "uniqueProducts": 6, "margin": 3345.55, "marginPct": 52.95183678637565}, {"YearMonth": "2022-01", "Category": "Bone Health", "totalRevenue": 16506.47, "totalRevenueExVAT": 13759.11, "totalCost": 5356.54, "totalQty": 1817.0, "orderCount": 1474, "uniqueProducts": 5, "margin": 8402.57, "marginPct": 61.06913891959581}, {"YearMonth": "2022-01", "Category": "Cod Liver Oil", "totalRevenue": 3274.06, "totalRevenueExVAT": 2728.89, "totalCost": 1517.55, "totalQty": 437.0, "orderCount": 356, "uniqueProducts": 2, "margin": 1211.34, "marginPct": 44.38947704011521}, {"YearMonth": "2022-01", "Category": "Evening Primose Oils", "totalRevenue": 4753.33, "totalRevenueExVAT": 3960.63, "totalCost": 2111.05, "totalQty": 400.0, "orderCount": 348, "uniqueProducts": 3, "margin": 1849.58, "marginPct": 46.699136248526116}, {"YearMonth": "2022-01", "Category": "Glucosamine", "totalRevenue": 14826.81, "totalRevenueExVAT": 12352.480000000001, "totalCost": 6332.96, "totalQty": 1077.0, "orderCount": 873, "uniqueProducts": 9, "margin": 6019.520000000001, "marginPct": 48.73126691967929}, {"YearMonth": "2022-01", "Category": "Herbal Supplements", "totalRevenue": 19937.0, "totalRevenueExVAT": 16616.68, "totalCost": 8220.974, "totalQty": 1706.0, "orderCount": 1375, "uniqueProducts": 17, "margin": 8395.706, "marginPct": 50.52577289807591}, {"YearMonth": "2022-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2920.23, "totalRevenueExVAT": 2433.07, "totalCost": 855.6800000000001, "totalQty": 243.0, "orderCount": 201, "uniqueProducts": 1, "margin": 1577.39, "marginPct": 64.83126256129088}, {"YearMonth": "2022-01", "Category": "Minerals", "totalRevenue": 3536.18, "totalRevenueExVAT": 2947.47, "totalCost": 1055.47, "totalQty": 486.0, "orderCount": 423, "uniqueProducts": 4, "margin": 1891.9999999999998, "marginPct": 64.19064485813256}, {"YearMonth": "2022-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 3236.26, "totalRevenueExVAT": 2695.84, "totalCost": 1078.76, "totalQty": 216.0, "orderCount": 179, "uniqueProducts": 1, "margin": 1617.0800000000002, "marginPct": 59.984272063623955}, {"YearMonth": "2022-01", "Category": "Multivitamins", "totalRevenue": 15233.58, "totalRevenueExVAT": 12693.43, "totalCost": 6281.45, "totalQty": 1564.0, "orderCount": 1326, "uniqueProducts": 5, "margin": 6411.9800000000005, "marginPct": 50.51416362637995}, {"YearMonth": "2022-01", "Category": "Natural Co Q10", "totalRevenue": 13980.58, "totalRevenueExVAT": 11660.81, "totalCost": 6304.93, "totalQty": 527.0, "orderCount": 389, "uniqueProducts": 4, "margin": 5355.879999999999, "marginPct": 45.93060001835207}, {"YearMonth": "2022-01", "Category": "Omega 3 Supplements", "totalRevenue": 11186.88, "totalRevenueExVAT": 9321.7, "totalCost": 4321.1900000000005, "totalQty": 941.0, "orderCount": 760, "uniqueProducts": 6, "margin": 5000.51, "marginPct": 53.64375596725919}, {"YearMonth": "2022-01", "Category": "Probiotics", "totalRevenue": 3626.2200000000003, "totalRevenueExVAT": 3020.55, "totalCost": 1223.8300000000002, "totalQty": 222.0, "orderCount": 212, "uniqueProducts": 1, "margin": 1796.72, "marginPct": 59.48320670076641}, {"YearMonth": "2022-01", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 26881.52, "totalRevenueExVAT": 22403.38, "totalCost": 12075.92, "totalQty": 1334.0, "orderCount": 1131, "uniqueProducts": 1, "margin": 10327.460000000001, "marginPct": 46.09777631768064}, {"YearMonth": "2022-01", "Category": "Vitamin B", "totalRevenue": 17095.69, "totalRevenueExVAT": 14242.17, "totalCost": 5802.65, "totalQty": 1449.0, "orderCount": 1262, "uniqueProducts": 12, "margin": 8439.52, "marginPct": 59.25726206048657}, {"YearMonth": "2022-01", "Category": "Vitamin C", "totalRevenue": 4630.31, "totalRevenueExVAT": 3858.52, "totalCost": 1580.3700000000001, "totalQty": 425.0, "orderCount": 361, "uniqueProducts": 3, "margin": 2278.1499999999996, "marginPct": 59.04206794314918}, {"YearMonth": "2022-01", "Category": "Vitamin D", "totalRevenue": 9442.74, "totalRevenueExVAT": 7866.16, "totalCost": 2274.6, "totalQty": 1044.0, "orderCount": 816, "uniqueProducts": 2, "margin": 5591.5599999999995, "marginPct": 71.08373081656106}, {"YearMonth": "2022-01", "Category": "Vitamin E", "totalRevenue": 2906.88, "totalRevenueExVAT": 2421.86, "totalCost": 1173.55, "totalQty": 166.0, "orderCount": 156, "uniqueProducts": 3, "margin": 1248.3100000000002, "marginPct": 51.5434418174461}, {"YearMonth": "2022-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 6907.33, "totalRevenueExVAT": 5755.4400000000005, "totalCost": 2196.66, "totalQty": 339.0, "orderCount": 293, "uniqueProducts": 2, "margin": 3558.7800000000007, "marginPct": 61.833326383386854}, {"YearMonth": "2022-02", "Category": "Amino Acids", "totalRevenue": 4036.45, "totalRevenueExVAT": 3364.2, "totalCost": 1391.6299999999999, "totalQty": 288.0, "orderCount": 258, "uniqueProducts": 6, "margin": 1972.57, "marginPct": 58.63414779145116}, {"YearMonth": "2022-02", "Category": "Bone Health", "totalRevenue": 7403.2, "totalRevenueExVAT": 6169.82, "totalCost": 2241.14, "totalQty": 725.0, "orderCount": 628, "uniqueProducts": 5, "margin": 3928.68, "marginPct": 63.67576363654045}, {"YearMonth": "2022-02", "Category": "Cod Liver Oil", "totalRevenue": 1438.07, "totalRevenueExVAT": 1198.3999999999999, "totalCost": 582.39, "totalQty": 174.0, "orderCount": 146, "uniqueProducts": 2, "margin": 616.0099999999999, "marginPct": 51.4027036048064}, {"YearMonth": "2022-02", "Category": "Evening Primose Oils", "totalRevenue": 2166.15, "totalRevenueExVAT": 1805.18, "totalCost": 905.63, "totalQty": 169.0, "orderCount": 152, "uniqueProducts": 3, "margin": 899.5500000000001, "marginPct": 49.83159574114493}, {"YearMonth": "2022-02", "Category": "Glucosamine", "totalRevenue": 6359.32, "totalRevenueExVAT": 5300.68, "totalCost": 2427.72, "totalQty": 434.0, "orderCount": 364, "uniqueProducts": 9, "margin": 2872.9600000000005, "marginPct": 54.19983851128535}, {"YearMonth": "2022-02", "Category": "Herbal Supplements", "totalRevenue": 9656.539999999999, "totalRevenueExVAT": 8048.67, "totalCost": 3584.65, "totalQty": 784.0, "orderCount": 661, "uniqueProducts": 17, "margin": 4464.02, "marginPct": 55.46282802003313}, {"YearMonth": "2022-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1192.8, "totalRevenueExVAT": 994.03, "totalCost": 297.92, "totalQty": 83.0, "orderCount": 74, "uniqueProducts": 1, "margin": 696.1099999999999, "marginPct": 70.02907356920817}, {"YearMonth": "2022-02", "Category": "Minerals", "totalRevenue": 1585.54, "totalRevenueExVAT": 1321.35, "totalCost": 424.36, "totalQty": 201.0, "orderCount": 180, "uniqueProducts": 4, "margin": 896.9899999999999, "marginPct": 67.88436069171681}, {"YearMonth": "2022-02", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1528.1999999999998, "totalRevenueExVAT": 1273.98, "totalCost": 444.02, "totalQty": 96.0, "orderCount": 84, "uniqueProducts": 1, "margin": 829.96, "marginPct": 65.14701957644547}, {"YearMonth": "2022-02", "Category": "Multivitamins", "totalRevenue": 5495.099999999999, "totalRevenueExVAT": 4581.77, "totalCost": 2061.34, "totalQty": 586.0, "orderCount": 523, "uniqueProducts": 5, "margin": 2520.4300000000003, "marginPct": 55.00996339842463}, {"YearMonth": "2022-02", "Category": "Natural Co Q10", "totalRevenue": 4312.1, "totalRevenueExVAT": 3593.88, "totalCost": 1823.41, "totalQty": 152.0, "orderCount": 131, "uniqueProducts": 4, "margin": 1770.47, "marginPct": 49.26347012142865}, {"YearMonth": "2022-02", "Category": "Omega 3 Supplements", "totalRevenue": 5003.16, "totalRevenueExVAT": 4172.67, "totalCost": 1648.22, "totalQty": 411.0, "orderCount": 346, "uniqueProducts": 6, "margin": 2524.45, "marginPct": 60.499632130027045}, {"YearMonth": "2022-02", "Category": "Probiotics", "totalRevenue": 2248.1800000000003, "totalRevenueExVAT": 1875.73, "totalCost": 754.63, "totalQty": 134.0, "orderCount": 123, "uniqueProducts": 1, "margin": 1121.1, "marginPct": 59.76873004110399}, {"YearMonth": "2022-02", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10551.53, "totalRevenueExVAT": 8795.34, "totalCost": 4273.72, "totalQty": 489.0, "orderCount": 438, "uniqueProducts": 1, "margin": 4521.62, "marginPct": 51.40926899926552}, {"YearMonth": "2022-02", "Category": "Vitamin B", "totalRevenue": 6595.92, "totalRevenueExVAT": 5496.99, "totalCost": 2122.09, "totalQty": 541.0, "orderCount": 483, "uniqueProducts": 12, "margin": 3374.8999999999996, "marginPct": 61.39541821978936}, {"YearMonth": "2022-02", "Category": "Vitamin C", "totalRevenue": 1995.4199999999998, "totalRevenueExVAT": 1663.07, "totalCost": 609.96, "totalQty": 174.0, "orderCount": 160, "uniqueProducts": 4, "margin": 1053.11, "marginPct": 63.32325157690295}, {"YearMonth": "2022-02", "Category": "Vitamin D", "totalRevenue": 3581.99, "totalRevenueExVAT": 2984.54, "totalCost": 774.9, "totalQty": 373.0, "orderCount": 312, "uniqueProducts": 2, "margin": 2209.64, "marginPct": 74.0361998833991}, {"YearMonth": "2022-02", "Category": "Vitamin E", "totalRevenue": 1402.25, "totalRevenueExVAT": 1168.6399999999999, "totalCost": 518.35, "totalQty": 75.0, "orderCount": 69, "uniqueProducts": 3, "margin": 650.2899999999998, "marginPct": 55.64502327491785}, {"YearMonth": "2022-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 2655.24, "totalRevenueExVAT": 2212.7400000000002, "totalCost": 799.74, "totalQty": 121.0, "orderCount": 108, "uniqueProducts": 2, "margin": 1413.0000000000002, "marginPct": 63.85747986659075}, {"YearMonth": "2022-03", "Category": "Amino Acids", "totalRevenue": 7206.29, "totalRevenueExVAT": 6005.78, "totalCost": 2535.97, "totalQty": 489.0, "orderCount": 405, "uniqueProducts": 8, "margin": 3469.81, "marginPct": 57.77451055483218}, {"YearMonth": "2022-03", "Category": "Bone Health", "totalRevenue": 10476.72, "totalRevenueExVAT": 8732.68, "totalCost": 3096.1699999999996, "totalQty": 1030.0, "orderCount": 841, "uniqueProducts": 5, "margin": 5636.51, "marginPct": 64.54501939839774}, {"YearMonth": "2022-03", "Category": "Cod Liver Oil", "totalRevenue": 2516.29, "totalRevenueExVAT": 2100.5099999999998, "totalCost": 1019.3399999999999, "totalQty": 297.0, "orderCount": 254, "uniqueProducts": 2, "margin": 1081.1699999999998, "marginPct": 51.47178542354}, {"YearMonth": "2022-03", "Category": "Evening Primose Oils", "totalRevenue": 4118.18, "totalRevenueExVAT": 3435.5899999999997, "totalCost": 1718.37, "totalQty": 307.0, "orderCount": 257, "uniqueProducts": 3, "margin": 1717.2199999999998, "marginPct": 49.98326342782462}, {"YearMonth": "2022-03", "Category": "Glucosamine", "totalRevenue": 11879.619999999999, "totalRevenueExVAT": 9905.39, "totalCost": 4673.3099999999995, "totalQty": 798.0, "orderCount": 666, "uniqueProducts": 9, "margin": 5232.08, "marginPct": 52.820535082414736}, {"YearMonth": "2022-03", "Category": "Herbal Supplements", "totalRevenue": 16231.32, "totalRevenueExVAT": 13531.69, "totalCost": 6015.83, "totalQty": 1267.0, "orderCount": 1002, "uniqueProducts": 17, "margin": 7515.860000000001, "marginPct": 55.542655795395845}, {"YearMonth": "2022-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2926.54, "totalRevenueExVAT": 2448.87, "totalCost": 719.0400000000001, "totalQty": 190.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1729.83, "marginPct": 70.63788604540053}, {"YearMonth": "2022-03", "Category": "Minerals", "totalRevenue": 2629.61, "totalRevenueExVAT": 2191.57, "totalCost": 697.4399999999999, "totalQty": 337.0, "orderCount": 306, "uniqueProducts": 4, "margin": 1494.13, "marginPct": 68.17623895198419}, {"YearMonth": "2022-03", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2003.85, "totalRevenueExVAT": 1670.49, "totalCost": 584.08, "totalQty": 123.0, "orderCount": 108, "uniqueProducts": 1, "margin": 1086.4099999999999, "marginPct": 65.0354087722764}, {"YearMonth": "2022-03", "Category": "Multivitamins", "totalRevenue": 11214.24, "totalRevenueExVAT": 9347.05, "totalCost": 4106.46, "totalQty": 1062.0, "orderCount": 933, "uniqueProducts": 6, "margin": 5240.589999999999, "marginPct": 56.06678042804949}, {"YearMonth": "2022-03", "Category": "Natural Co Q10", "totalRevenue": 9469.84, "totalRevenueExVAT": 7901.79, "totalCost": 3797.96, "totalQty": 322.0, "orderCount": 261, "uniqueProducts": 4, "margin": 4103.83, "marginPct": 51.93544753783637}, {"YearMonth": "2022-03", "Category": "Omega 3 Supplements", "totalRevenue": 8644.02, "totalRevenueExVAT": 7207.76, "totalCost": 2815.6, "totalQty": 645.0, "orderCount": 534, "uniqueProducts": 6, "margin": 4392.16, "marginPct": 60.93654616690899}, {"YearMonth": "2022-03", "Category": "Probiotics", "totalRevenue": 2855.2400000000002, "totalRevenueExVAT": 2378.2400000000002, "totalCost": 950.13, "totalQty": 169.0, "orderCount": 158, "uniqueProducts": 1, "margin": 1428.1100000000001, "marginPct": 60.049027852529605}, {"YearMonth": "2022-03", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 20694.78, "totalRevenueExVAT": 17268.649999999998, "totalCost": 8381.2, "totalQty": 920.0, "orderCount": 794, "uniqueProducts": 1, "margin": 8887.449999999997, "marginPct": 51.46580653380547}, {"YearMonth": "2022-03", "Category": "Vitamin B", "totalRevenue": 22555.73, "totalRevenueExVAT": 18814.760000000002, "totalCost": 7920.320000000001, "totalQty": 1737.0, "orderCount": 1534, "uniqueProducts": 12, "margin": 10894.440000000002, "marginPct": 57.90368838082443}, {"YearMonth": "2022-03", "Category": "Vitamin C", "totalRevenue": 3458.49, "totalRevenueExVAT": 2883.79, "totalCost": 1078.45, "totalQty": 281.0, "orderCount": 243, "uniqueProducts": 4, "margin": 1805.34, "marginPct": 62.60303281445597}, {"YearMonth": "2022-03", "Category": "Vitamin D", "totalRevenue": 5854.75, "totalRevenueExVAT": 4878.299999999999, "totalCost": 1287.0, "totalQty": 595.0, "orderCount": 483, "uniqueProducts": 2, "margin": 3591.2999999999993, "marginPct": 73.61785868027796}, {"YearMonth": "2022-03", "Category": "Vitamin E", "totalRevenue": 2612.85, "totalRevenueExVAT": 2177.56, "totalCost": 998.95, "totalQty": 143.0, "orderCount": 121, "uniqueProducts": 3, "margin": 1178.61, "marginPct": 54.12525946472198}, {"YearMonth": "2022-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 5527.08, "totalRevenueExVAT": 4610.2, "totalCost": 1655.82, "totalQty": 266.0, "orderCount": 231, "uniqueProducts": 2, "margin": 2954.38, "marginPct": 64.08355385883476}, {"YearMonth": "2022-04", "Category": "Amino Acids", "totalRevenue": 6197.5599999999995, "totalRevenueExVAT": 5168.58, "totalCost": 2215.43, "totalQty": 417.0, "orderCount": 353, "uniqueProducts": 7, "margin": 2953.15, "marginPct": 57.13658296862968}, {"YearMonth": "2022-04", "Category": "Bone Health", "totalRevenue": 10807.24, "totalRevenueExVAT": 9008.88, "totalCost": 3233.3999999999996, "totalQty": 1070.0, "orderCount": 880, "uniqueProducts": 5, "margin": 5775.48, "marginPct": 64.10874603724326}, {"YearMonth": "2022-04", "Category": "Cod Liver Oil", "totalRevenue": 2435.31, "totalRevenueExVAT": 2030.27, "totalCost": 985.8299999999999, "totalQty": 289.0, "orderCount": 235, "uniqueProducts": 2, "margin": 1044.44, "marginPct": 51.443404079260404}, {"YearMonth": "2022-04", "Category": "Evening Primose Oils", "totalRevenue": 3612.66, "totalRevenueExVAT": 3012.0, "totalCost": 1524.77, "totalQty": 278.0, "orderCount": 253, "uniqueProducts": 3, "margin": 1487.23, "marginPct": 49.37682602921647}, {"YearMonth": "2022-04", "Category": "Glucosamine", "totalRevenue": 9924.369999999999, "totalRevenueExVAT": 8272.11, "totalCost": 3979.7999999999997, "totalQty": 673.0, "orderCount": 563, "uniqueProducts": 9, "margin": 4292.310000000001, "marginPct": 51.88893764710577}, {"YearMonth": "2022-04", "Category": "Herbal Supplements", "totalRevenue": 13371.05, "totalRevenueExVAT": 11154.11, "totalCost": 5027.81, "totalQty": 1059.0, "orderCount": 876, "uniqueProducts": 17, "margin": 6126.3, "marginPct": 54.92414903564695}, {"YearMonth": "2022-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1671.2099999999998, "totalRevenueExVAT": 1395.19, "totalCost": 405.44000000000005, "totalQty": 116.0, "orderCount": 102, "uniqueProducts": 1, "margin": 989.75, "marginPct": 70.94015868806399}, {"YearMonth": "2022-04", "Category": "Minerals", "totalRevenue": 2301.93, "totalRevenueExVAT": 1918.3799999999999, "totalCost": 612.79, "totalQty": 287.0, "orderCount": 247, "uniqueProducts": 4, "margin": 1305.59, "marginPct": 68.05690217787925}, {"YearMonth": "2022-04", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2213.5499999999997, "totalRevenueExVAT": 1845.27, "totalCost": 649.64, "totalQty": 129.0, "orderCount": 118, "uniqueProducts": 1, "margin": 1195.63, "marginPct": 64.79431194350963}, {"YearMonth": "2022-04", "Category": "Multivitamins", "totalRevenue": 10111.35, "totalRevenueExVAT": 8434.82, "totalCost": 3652.72, "totalQty": 963.0, "orderCount": 851, "uniqueProducts": 6, "margin": 4782.1, "marginPct": 56.694748672763616}, {"YearMonth": "2022-04", "Category": "Natural Co Q10", "totalRevenue": 6116.84, "totalRevenueExVAT": 5108.44, "totalCost": 2405.81, "totalQty": 218.0, "orderCount": 199, "uniqueProducts": 4, "margin": 2702.6299999999997, "marginPct": 52.90519219174542}, {"YearMonth": "2022-04", "Category": "Omega 3 Supplements", "totalRevenue": 6113.07, "totalRevenueExVAT": 5096.62, "totalCost": 1975.14, "totalQty": 478.0, "orderCount": 423, "uniqueProducts": 5, "margin": 3121.4799999999996, "marginPct": 61.24608073586023}, {"YearMonth": "2022-04", "Category": "Probiotics", "totalRevenue": 3272.0800000000004, "totalRevenueExVAT": 2725.48, "totalCost": 1098.71, "totalQty": 189.0, "orderCount": 178, "uniqueProducts": 1, "margin": 1626.77, "marginPct": 59.68746789556335}, {"YearMonth": "2022-04", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 17041.55, "totalRevenueExVAT": 14213.94, "totalCost": 6638.2, "totalQty": 755.0, "orderCount": 683, "uniqueProducts": 1, "margin": 7575.740000000001, "marginPct": 53.297959608665856}, {"YearMonth": "2022-04", "Category": "Vitamin B", "totalRevenue": 13167.0, "totalRevenueExVAT": 10973.51, "totalCost": 4311.74, "totalQty": 1023.0, "orderCount": 917, "uniqueProducts": 12, "margin": 6661.77, "marginPct": 60.70774073199915}, {"YearMonth": "2022-04", "Category": "Vitamin C", "totalRevenue": 2673.56, "totalRevenueExVAT": 2228.21, "totalCost": 838.2, "totalQty": 214.0, "orderCount": 198, "uniqueProducts": 4, "margin": 1390.01, "marginPct": 62.38236072901566}, {"YearMonth": "2022-04", "Category": "Vitamin D", "totalRevenue": 4378.42, "totalRevenueExVAT": 3651.27, "totalCost": 927.9, "totalQty": 442.0, "orderCount": 363, "uniqueProducts": 2, "margin": 2723.37, "marginPct": 74.58692454954029}, {"YearMonth": "2022-04", "Category": "Vitamin E", "totalRevenue": 2248.0, "totalRevenueExVAT": 1873.5, "totalCost": 819.47, "totalQty": 120.0, "orderCount": 109, "uniqueProducts": 3, "margin": 1054.03, "marginPct": 56.25994128636243}, {"YearMonth": "2022-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 4685.12, "totalRevenueExVAT": 3904.67, "totalCost": 1415.94, "totalQty": 214.0, "orderCount": 181, "uniqueProducts": 2, "margin": 2488.73, "marginPct": 63.737268450342796}, {"YearMonth": "2022-05", "Category": "Amino Acids", "totalRevenue": 6389.28, "totalRevenueExVAT": 5327.45, "totalCost": 2314.33, "totalQty": 435.0, "orderCount": 350, "uniqueProducts": 7, "margin": 3013.12, "marginPct": 56.55839097504435}, {"YearMonth": "2022-05", "Category": "Bone Health", "totalRevenue": 8373.55, "totalRevenueExVAT": 6987.98, "totalCost": 2518.54, "totalQty": 830.0, "orderCount": 694, "uniqueProducts": 5, "margin": 4469.44, "marginPct": 63.95896954484701}, {"YearMonth": "2022-05", "Category": "Cod Liver Oil", "totalRevenue": 1907.85, "totalRevenueExVAT": 1589.87, "totalCost": 769.7399999999999, "totalQty": 225.0, "orderCount": 200, "uniqueProducts": 2, "margin": 820.13, "marginPct": 51.58472076333286}, {"YearMonth": "2022-05", "Category": "Evening Primose Oils", "totalRevenue": 2935.98, "totalRevenueExVAT": 2448.06, "totalCost": 1184.84, "totalQty": 233.0, "orderCount": 208, "uniqueProducts": 3, "margin": 1263.22, "marginPct": 51.60085945605909}, {"YearMonth": "2022-05", "Category": "Glucosamine", "totalRevenue": 9711.88, "totalRevenueExVAT": 8096.41, "totalCost": 3881.67, "totalQty": 665.0, "orderCount": 546, "uniqueProducts": 9, "margin": 4214.74, "marginPct": 52.056899292402434}, {"YearMonth": "2022-05", "Category": "Herbal Supplements", "totalRevenue": 12102.26, "totalRevenueExVAT": 10093.53, "totalCost": 4653.63, "totalQty": 948.0, "orderCount": 783, "uniqueProducts": 17, "margin": 5439.900000000001, "marginPct": 53.89492080570425}, {"YearMonth": "2022-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1770.0, "totalRevenueExVAT": 1475.04, "totalCost": 430.08000000000004, "totalQty": 120.0, "orderCount": 106, "uniqueProducts": 1, "margin": 1044.96, "marginPct": 70.84282460136674}, {"YearMonth": "2022-05", "Category": "Minerals", "totalRevenue": 1860.79, "totalRevenueExVAT": 1550.81, "totalCost": 502.7, "totalQty": 235.0, "orderCount": 213, "uniqueProducts": 4, "margin": 1048.11, "marginPct": 67.58468155351073}, {"YearMonth": "2022-05", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1832.1, "totalRevenueExVAT": 1527.34, "totalCost": 533.42, "totalQty": 119.0, "orderCount": 103, "uniqueProducts": 1, "margin": 993.92, "marginPct": 65.07522882920634}, {"YearMonth": "2022-05", "Category": "Multivitamins", "totalRevenue": 7733.25, "totalRevenueExVAT": 6448.33, "totalCost": 2781.95, "totalQty": 722.0, "orderCount": 638, "uniqueProducts": 6, "margin": 3666.38, "marginPct": 56.857822102777}, {"YearMonth": "2022-05", "Category": "Natural Co Q10", "totalRevenue": 6371.5, "totalRevenueExVAT": 5310.32, "totalCost": 2534.11, "totalQty": 222.0, "orderCount": 188, "uniqueProducts": 4, "margin": 2776.2099999999996, "marginPct": 52.27952364452613}, {"YearMonth": "2022-05", "Category": "Omega 3 Supplements", "totalRevenue": 5397.33, "totalRevenueExVAT": 4501.25, "totalCost": 1770.33, "totalQty": 416.0, "orderCount": 363, "uniqueProducts": 5, "margin": 2730.92, "marginPct": 60.670258261594}, {"YearMonth": "2022-05", "Category": "Probiotics", "totalRevenue": 2335.08, "totalRevenueExVAT": 1946.73, "totalCost": 778.09, "totalQty": 138.0, "orderCount": 134, "uniqueProducts": 1, "margin": 1168.6399999999999, "marginPct": 60.03092365145653}, {"YearMonth": "2022-05", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15198.189999999999, "totalRevenueExVAT": 12668.9, "totalCost": 5788.32, "totalQty": 684.0, "orderCount": 609, "uniqueProducts": 1, "margin": 6880.58, "marginPct": 54.310792570783576}, {"YearMonth": "2022-05", "Category": "Vitamin B", "totalRevenue": 13758.51, "totalRevenueExVAT": 11470.46, "totalCost": 4631.86, "totalQty": 1058.0, "orderCount": 937, "uniqueProducts": 12, "margin": 6838.599999999999, "marginPct": 59.61923061498842}, {"YearMonth": "2022-05", "Category": "Vitamin C", "totalRevenue": 2473.4, "totalRevenueExVAT": 2062.51, "totalCost": 777.7900000000001, "totalQty": 194.0, "orderCount": 167, "uniqueProducts": 4, "margin": 1284.7200000000003, "marginPct": 62.28915253744225}, {"YearMonth": "2022-05", "Category": "Vitamin D", "totalRevenue": 3743.3599999999997, "totalRevenueExVAT": 3120.6, "totalCost": 810.0, "totalQty": 387.0, "orderCount": 315, "uniqueProducts": 2, "margin": 2310.6, "marginPct": 74.04345318208037}, {"YearMonth": "2022-05", "Category": "Vitamin E", "totalRevenue": 1539.4499999999998, "totalRevenueExVAT": 1282.96, "totalCost": 575.23, "totalQty": 91.0, "orderCount": 87, "uniqueProducts": 3, "margin": 707.73, "marginPct": 55.16383987029994}, {"YearMonth": "2022-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 4342.9, "totalRevenueExVAT": 3644.37, "totalCost": 1223.82, "totalQty": 183.0, "orderCount": 155, "uniqueProducts": 2, "margin": 2420.55, "marginPct": 66.41888721507422}, {"YearMonth": "2022-06", "Category": "Amino Acids", "totalRevenue": 5737.39, "totalRevenueExVAT": 4785.68, "totalCost": 2124.03, "totalQty": 397.0, "orderCount": 336, "uniqueProducts": 7, "margin": 2661.65, "marginPct": 55.61696561408201}, {"YearMonth": "2022-06", "Category": "Bone Health", "totalRevenue": 8535.119999999999, "totalRevenueExVAT": 7113.0599999999995, "totalCost": 2559.49, "totalQty": 826.0, "orderCount": 681, "uniqueProducts": 5, "margin": 4553.57, "marginPct": 64.01703345676826}, {"YearMonth": "2022-06", "Category": "Cod Liver Oil", "totalRevenue": 1663.35, "totalRevenueExVAT": 1386.1399999999999, "totalCost": 670.77, "totalQty": 197.0, "orderCount": 167, "uniqueProducts": 2, "margin": 715.3699999999999, "marginPct": 51.608784105501606}, {"YearMonth": "2022-06", "Category": "Evening Primose Oils", "totalRevenue": 2592.0699999999997, "totalRevenueExVAT": 2162.9, "totalCost": 977.17, "totalQty": 184.0, "orderCount": 165, "uniqueProducts": 3, "margin": 1185.73, "marginPct": 54.82130472976097}, {"YearMonth": "2022-06", "Category": "Glucosamine", "totalRevenue": 9295.68, "totalRevenueExVAT": 7750.58, "totalCost": 3623.8799999999997, "totalQty": 611.0, "orderCount": 496, "uniqueProducts": 9, "margin": 4126.700000000001, "marginPct": 53.24375724139355}, {"YearMonth": "2022-06", "Category": "Herbal Supplements", "totalRevenue": 10788.08, "totalRevenueExVAT": 8991.56, "totalCost": 4126.39, "totalQty": 827.0, "orderCount": 684, "uniqueProducts": 17, "margin": 4865.169999999999, "marginPct": 54.108185898776185}, {"YearMonth": "2022-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1566.8999999999999, "totalRevenueExVAT": 1305.81, "totalCost": 383.04, "totalQty": 102.0, "orderCount": 92, "uniqueProducts": 1, "margin": 922.77, "marginPct": 70.6664828726997}, {"YearMonth": "2022-06", "Category": "Minerals", "totalRevenue": 1697.69, "totalRevenueExVAT": 1414.8899999999999, "totalCost": 447.21999999999997, "totalQty": 221.0, "orderCount": 193, "uniqueProducts": 4, "margin": 967.6699999999998, "marginPct": 68.39188912212256}, {"YearMonth": "2022-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1773.8999999999999, "totalRevenueExVAT": 1478.76, "totalCost": 521.5, "totalQty": 102.0, "orderCount": 90, "uniqueProducts": 1, "margin": 957.26, "marginPct": 64.73396629608591}, {"YearMonth": "2022-06", "Category": "Multivitamins", "totalRevenue": 7582.3, "totalRevenueExVAT": 6319.66, "totalCost": 2711.61, "totalQty": 695.0, "orderCount": 605, "uniqueProducts": 6, "margin": 3608.0499999999997, "marginPct": 57.09247016453417}, {"YearMonth": "2022-06", "Category": "Natural Co Q10", "totalRevenue": 6983.38, "totalRevenueExVAT": 5820.2699999999995, "totalCost": 2780.1600000000003, "totalQty": 241.0, "orderCount": 211, "uniqueProducts": 4, "margin": 3040.109999999999, "marginPct": 52.23314382322468}, {"YearMonth": "2022-06", "Category": "Omega 3 Supplements", "totalRevenue": 6014.599999999999, "totalRevenueExVAT": 5013.31, "totalCost": 1884.98, "totalQty": 445.0, "orderCount": 383, "uniqueProducts": 6, "margin": 3128.3300000000004, "marginPct": 62.400489895897124}, {"YearMonth": "2022-06", "Category": "Probiotics", "totalRevenue": 2581.58, "totalRevenueExVAT": 2150.33, "totalCost": 864.11, "totalQty": 148.0, "orderCount": 134, "uniqueProducts": 1, "margin": 1286.2199999999998, "marginPct": 59.81500513874614}, {"YearMonth": "2022-06", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15167.05, "totalRevenueExVAT": 12638.95, "totalCost": 5756.32, "totalQty": 659.0, "orderCount": 599, "uniqueProducts": 1, "margin": 6882.630000000001, "marginPct": 54.455710324037994}, {"YearMonth": "2022-06", "Category": "Vitamin B", "totalRevenue": 12072.23, "totalRevenueExVAT": 10061.08, "totalCost": 3969.37, "totalQty": 918.0, "orderCount": 817, "uniqueProducts": 12, "margin": 6091.71, "marginPct": 60.547277230675036}, {"YearMonth": "2022-06", "Category": "Vitamin C", "totalRevenue": 2125.67, "totalRevenueExVAT": 1771.49, "totalCost": 667.44, "totalQty": 173.0, "orderCount": 161, "uniqueProducts": 4, "margin": 1104.05, "marginPct": 62.32324201660748}, {"YearMonth": "2022-06", "Category": "Vitamin D", "totalRevenue": 3186.6, "totalRevenueExVAT": 2655.12, "totalCost": 692.6999999999999, "totalQty": 328.0, "orderCount": 271, "uniqueProducts": 2, "margin": 1962.42, "marginPct": 73.91078369339239}, {"YearMonth": "2022-06", "Category": "Vitamin E", "totalRevenue": 1934.9099999999999, "totalRevenueExVAT": 1618.91, "totalCost": 717.63, "totalQty": 110.0, "orderCount": 97, "uniqueProducts": 3, "margin": 901.2800000000001, "marginPct": 55.67202623987745}, {"YearMonth": "2022-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 3441.6, "totalRevenueExVAT": 2868.32, "totalCost": 997.06, "totalQty": 158.0, "orderCount": 148, "uniqueProducts": 2, "margin": 1871.2600000000002, "marginPct": 65.23888548000224}, {"YearMonth": "2022-07", "Category": "Amino Acids", "totalRevenue": 5646.02, "totalRevenueExVAT": 4704.4, "totalCost": 2103.61, "totalQty": 411.0, "orderCount": 342, "uniqueProducts": 7, "margin": 2600.7899999999995, "marginPct": 55.28420202363744}, {"YearMonth": "2022-07", "Category": "Bone Health", "totalRevenue": 10202.8, "totalRevenueExVAT": 8503.42, "totalCost": 3193.95, "totalQty": 1018.0, "orderCount": 838, "uniqueProducts": 5, "margin": 5309.47, "marginPct": 62.43923033320711}, {"YearMonth": "2022-07", "Category": "Cod Liver Oil", "totalRevenue": 2313.08, "totalRevenueExVAT": 1928.1399999999999, "totalCost": 1073.1599999999999, "totalQty": 294.0, "orderCount": 252, "uniqueProducts": 2, "margin": 854.98, "marginPct": 44.342215814204366}, {"YearMonth": "2022-07", "Category": "Evening Primose Oils", "totalRevenue": 3435.5499999999997, "totalRevenueExVAT": 2866.77, "totalCost": 1327.27, "totalQty": 248.0, "orderCount": 233, "uniqueProducts": 3, "margin": 1539.5, "marginPct": 53.70155261845213}, {"YearMonth": "2022-07", "Category": "Glucosamine", "totalRevenue": 9272.73, "totalRevenueExVAT": 7728.05, "totalCost": 3678.7599999999998, "totalQty": 639.0, "orderCount": 521, "uniqueProducts": 9, "margin": 4049.2900000000004, "marginPct": 52.39730591805177}, {"YearMonth": "2022-07", "Category": "Herbal Supplements", "totalRevenue": 13769.25, "totalRevenueExVAT": 11479.91, "totalCost": 5370.39, "totalQty": 1111.0, "orderCount": 881, "uniqueProducts": 17, "margin": 6109.5199999999995, "marginPct": 53.21923255495905}, {"YearMonth": "2022-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2087.61, "totalRevenueExVAT": 1742.3400000000001, "totalCost": 530.88, "totalQty": 144.0, "orderCount": 129, "uniqueProducts": 1, "margin": 1211.46, "marginPct": 69.53063122008332}, {"YearMonth": "2022-07", "Category": "Minerals", "totalRevenue": 2096.2799999999997, "totalRevenueExVAT": 1747.35, "totalCost": 594.39, "totalQty": 261.0, "orderCount": 227, "uniqueProducts": 4, "margin": 1152.96, "marginPct": 65.98334620997511}, {"YearMonth": "2022-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1930.85, "totalRevenueExVAT": 1609.1999999999998, "totalCost": 587.06, "totalQty": 120.0, "orderCount": 108, "uniqueProducts": 1, "margin": 1022.1399999999999, "marginPct": 63.51851851851852}, {"YearMonth": "2022-07", "Category": "Multivitamins", "totalRevenue": 9861.89, "totalRevenueExVAT": 8220.36, "totalCost": 3982.34, "totalQty": 982.0, "orderCount": 813, "uniqueProducts": 6, "margin": 4238.02, "marginPct": 51.55516303422235}, {"YearMonth": "2022-07", "Category": "Natural Co Q10", "totalRevenue": 7366.65, "totalRevenueExVAT": 6139.59, "totalCost": 3066.76, "totalQty": 270.0, "orderCount": 225, "uniqueProducts": 4, "margin": 3072.83, "marginPct": 50.049433268345275}, {"YearMonth": "2022-07", "Category": "Omega 3 Supplements", "totalRevenue": 7139.15, "totalRevenueExVAT": 5948.23, "totalCost": 2497.32, "totalQty": 590.0, "orderCount": 478, "uniqueProducts": 5, "margin": 3450.9099999999994, "marginPct": 58.01574586053329}, {"YearMonth": "2022-07", "Category": "Probiotics", "totalRevenue": 3254.94, "totalRevenueExVAT": 2711.19, "totalCost": 1086.98, "totalQty": 189.0, "orderCount": 165, "uniqueProducts": 1, "margin": 1624.21, "marginPct": 59.90764203172777}, {"YearMonth": "2022-07", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16637.62, "totalRevenueExVAT": 13875.289999999999, "totalCost": 6576.84, "totalQty": 743.0, "orderCount": 655, "uniqueProducts": 1, "margin": 7298.449999999999, "marginPct": 52.600342046904956}, {"YearMonth": "2022-07", "Category": "Vitamin B", "totalRevenue": 14881.86, "totalRevenueExVAT": 12408.14, "totalCost": 5117.22, "totalQty": 1189.0, "orderCount": 1033, "uniqueProducts": 12, "margin": 7290.919999999999, "marginPct": 58.75916938396891}, {"YearMonth": "2022-07", "Category": "Vitamin C", "totalRevenue": 2601.55, "totalRevenueExVAT": 2168.31, "totalCost": 845.07, "totalQty": 224.0, "orderCount": 198, "uniqueProducts": 4, "margin": 1323.2399999999998, "marginPct": 61.02632926103739}, {"YearMonth": "2022-07", "Category": "Vitamin D", "totalRevenue": 4429.02, "totalRevenueExVAT": 3689.1, "totalCost": 997.1999999999999, "totalQty": 467.0, "orderCount": 363, "uniqueProducts": 2, "margin": 2691.9, "marginPct": 72.969016833374}, {"YearMonth": "2022-07", "Category": "Vitamin E", "totalRevenue": 1861.5, "totalRevenueExVAT": 1551.48, "totalCost": 739.42, "totalQty": 110.0, "orderCount": 99, "uniqueProducts": 3, "margin": 812.0600000000001, "marginPct": 52.340990538066876}, {"YearMonth": "2022-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 4917.38, "totalRevenueExVAT": 4098.15, "totalCost": 1447.76, "totalQty": 222.0, "orderCount": 192, "uniqueProducts": 2, "margin": 2650.3899999999994, "marginPct": 64.67284018398544}, {"YearMonth": "2022-08", "Category": "Amino Acids", "totalRevenue": 5068.139999999999, "totalRevenueExVAT": 4223.95, "totalCost": 1782.42, "totalQty": 348.0, "orderCount": 308, "uniqueProducts": 7, "margin": 2441.5299999999997, "marginPct": 57.802057316019365}, {"YearMonth": "2022-08", "Category": "Bone Health", "totalRevenue": 8478.34, "totalRevenueExVAT": 7067.35, "totalCost": 2587.02, "totalQty": 833.0, "orderCount": 687, "uniqueProducts": 5, "margin": 4480.33, "marginPct": 63.39476607214868}, {"YearMonth": "2022-08", "Category": "Cod Liver Oil", "totalRevenue": 1805.8799999999999, "totalRevenueExVAT": 1506.46, "totalCost": 728.2199999999999, "totalQty": 214.0, "orderCount": 179, "uniqueProducts": 2, "margin": 778.2400000000001, "marginPct": 51.660183476494566}, {"YearMonth": "2022-08", "Category": "Evening Primose Oils", "totalRevenue": 3230.66, "totalRevenueExVAT": 2694.07, "totalCost": 1202.7, "totalQty": 226.0, "orderCount": 206, "uniqueProducts": 3, "margin": 1491.3700000000001, "marginPct": 55.35750741443244}, {"YearMonth": "2022-08", "Category": "Glucosamine", "totalRevenue": 9199.77, "totalRevenueExVAT": 7670.75, "totalCost": 3813.77, "totalQty": 625.0, "orderCount": 492, "uniqueProducts": 9, "margin": 3856.98, "marginPct": 50.28165433627741}, {"YearMonth": "2022-08", "Category": "Herbal Supplements", "totalRevenue": 11702.47, "totalRevenueExVAT": 9758.02, "totalCost": 4371.47, "totalQty": 913.0, "orderCount": 739, "uniqueProducts": 17, "margin": 5386.55, "marginPct": 55.201260091698934}, {"YearMonth": "2022-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1778.0, "totalRevenueExVAT": 1481.71, "totalCost": 432.32000000000005, "totalQty": 120.0, "orderCount": 105, "uniqueProducts": 1, "margin": 1049.3899999999999, "marginPct": 70.82290056758744}, {"YearMonth": "2022-08", "Category": "Minerals", "totalRevenue": 1523.05, "totalRevenueExVAT": 1269.28, "totalCost": 399.78, "totalQty": 202.0, "orderCount": 179, "uniqueProducts": 4, "margin": 869.5, "marginPct": 68.50340350434892}, {"YearMonth": "2022-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1813.35, "totalRevenueExVAT": 1511.69, "totalCost": 527.46, "totalQty": 113.0, "orderCount": 93, "uniqueProducts": 1, "margin": 984.23, "marginPct": 65.10792556674978}, {"YearMonth": "2022-08", "Category": "Multivitamins", "totalRevenue": 8498.99, "totalRevenueExVAT": 7092.29, "totalCost": 3061.2799999999997, "totalQty": 784.0, "orderCount": 676, "uniqueProducts": 6, "margin": 4031.01, "marginPct": 56.836508377407014}, {"YearMonth": "2022-08", "Category": "Natural Co Q10", "totalRevenue": 7367.79, "totalRevenueExVAT": 6155.82, "totalCost": 2980.4, "totalQty": 259.0, "orderCount": 186, "uniqueProducts": 4, "margin": 3175.4199999999996, "marginPct": 51.58402942256271}, {"YearMonth": "2022-08", "Category": "Omega 3 Supplements", "totalRevenue": 4895.36, "totalRevenueExVAT": 4080.4300000000003, "totalCost": 1512.88, "totalQty": 380.0, "orderCount": 336, "uniqueProducts": 5, "margin": 2567.55, "marginPct": 62.92351541381668}, {"YearMonth": "2022-08", "Category": "Probiotics", "totalRevenue": 2313.56, "totalRevenueExVAT": 1928.18, "totalCost": 695.98, "totalQty": 121.0, "orderCount": 116, "uniqueProducts": 1, "margin": 1232.2, "marginPct": 63.90482216390586}, {"YearMonth": "2022-08", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 14353.74, "totalRevenueExVAT": 11964.98, "totalCost": 5437.52, "totalQty": 604.0, "orderCount": 547, "uniqueProducts": 1, "margin": 6527.459999999999, "marginPct": 54.55470882525503}, {"YearMonth": "2022-08", "Category": "Vitamin B", "totalRevenue": 13020.93, "totalRevenueExVAT": 10853.75, "totalCost": 4327.13, "totalQty": 979.0, "orderCount": 853, "uniqueProducts": 12, "margin": 6526.62, "marginPct": 60.132396637106986}, {"YearMonth": "2022-08", "Category": "Vitamin C", "totalRevenue": 2544.5299999999997, "totalRevenueExVAT": 2120.7599999999998, "totalCost": 788.5500000000001, "totalQty": 217.0, "orderCount": 193, "uniqueProducts": 4, "margin": 1332.2099999999996, "marginPct": 62.8175748316641}, {"YearMonth": "2022-08", "Category": "Vitamin D", "totalRevenue": 2974.62, "totalRevenueExVAT": 2478.5, "totalCost": 654.6, "totalQty": 316.0, "orderCount": 261, "uniqueProducts": 2, "margin": 1823.9, "marginPct": 73.58886423239863}, {"YearMonth": "2022-08", "Category": "Vitamin E", "totalRevenue": 1936.85, "totalRevenueExVAT": 1614.17, "totalCost": 723.52, "totalQty": 107.0, "orderCount": 95, "uniqueProducts": 3, "margin": 890.6500000000001, "marginPct": 55.176964012464616}, {"YearMonth": "2022-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 4616.93, "totalRevenueExVAT": 3847.87, "totalCost": 1339.64, "totalQty": 208.0, "orderCount": 186, "uniqueProducts": 2, "margin": 2508.2299999999996, "marginPct": 65.18489450007405}, {"YearMonth": "2022-09", "Category": "Amino Acids", "totalRevenue": 5302.849999999999, "totalRevenueExVAT": 4424.34, "totalCost": 1960.98, "totalQty": 364.0, "orderCount": 304, "uniqueProducts": 7, "margin": 2463.36, "marginPct": 55.6774569766338}, {"YearMonth": "2022-09", "Category": "Bone Health", "totalRevenue": 7320.0599999999995, "totalRevenueExVAT": 6106.64, "totalCost": 2272.32, "totalQty": 697.0, "orderCount": 582, "uniqueProducts": 5, "margin": 3834.32, "marginPct": 62.78935715876488}, {"YearMonth": "2022-09", "Category": "Cod Liver Oil", "totalRevenue": 2211.06, "totalRevenueExVAT": 1843.4399999999998, "totalCost": 952.56, "totalQty": 265.0, "orderCount": 205, "uniqueProducts": 2, "margin": 890.8799999999999, "marginPct": 48.32704074990236}, {"YearMonth": "2022-09", "Category": "Evening Primose Oils", "totalRevenue": 2926.19, "totalRevenueExVAT": 2445.04, "totalCost": 1169.13, "totalQty": 208.0, "orderCount": 178, "uniqueProducts": 3, "margin": 1275.9099999999999, "marginPct": 52.1836043582109}, {"YearMonth": "2022-09", "Category": "Glucosamine", "totalRevenue": 8667.94, "totalRevenueExVAT": 7228.87, "totalCost": 3617.2999999999997, "totalQty": 582.0, "orderCount": 454, "uniqueProducts": 8, "margin": 3611.57, "marginPct": 49.96036724965313}, {"YearMonth": "2022-09", "Category": "Herbal Supplements", "totalRevenue": 12141.609999999999, "totalRevenueExVAT": 10120.6, "totalCost": 5003.01, "totalQty": 944.0, "orderCount": 728, "uniqueProducts": 18, "margin": 5117.59, "marginPct": 50.566073157717916}, {"YearMonth": "2022-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1654.6999999999998, "totalRevenueExVAT": 1378.99, "totalCost": 426.01000000000005, "totalQty": 106.0, "orderCount": 94, "uniqueProducts": 1, "margin": 952.98, "marginPct": 69.1071001240038}, {"YearMonth": "2022-09", "Category": "Minerals", "totalRevenue": 1461.9, "totalRevenueExVAT": 1222.24, "totalCost": 429.84, "totalQty": 185.0, "orderCount": 165, "uniqueProducts": 4, "margin": 792.4000000000001, "marginPct": 64.83178426495616}, {"YearMonth": "2022-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1524.1299999999999, "totalRevenueExVAT": 1273.33, "totalCost": 434.28, "totalQty": 91.0, "orderCount": 80, "uniqueProducts": 1, "margin": 839.05, "marginPct": 65.89415155537056}, {"YearMonth": "2022-09", "Category": "Multivitamins", "totalRevenue": 9089.39, "totalRevenueExVAT": 7579.9800000000005, "totalCost": 3521.7, "totalQty": 871.0, "orderCount": 735, "uniqueProducts": 6, "margin": 4058.2800000000007, "marginPct": 53.5394552492223}, {"YearMonth": "2022-09", "Category": "Natural Co Q10", "totalRevenue": 7515.68, "totalRevenueExVAT": 6267.95, "totalCost": 3277.76, "totalQty": 255.0, "orderCount": 194, "uniqueProducts": 4, "margin": 2990.1899999999996, "marginPct": 47.70602828676042}, {"YearMonth": "2022-09", "Category": "Omega 3 Supplements", "totalRevenue": 5923.91, "totalRevenueExVAT": 4939.2, "totalCost": 2057.88, "totalQty": 444.0, "orderCount": 383, "uniqueProducts": 5, "margin": 2881.3199999999997, "marginPct": 58.3357628765792}, {"YearMonth": "2022-09", "Category": "Probiotics", "totalRevenue": 2528.2999999999997, "totalRevenueExVAT": 2107.13, "totalCost": 764.48, "totalQty": 134.0, "orderCount": 128, "uniqueProducts": 1, "margin": 1342.65, "marginPct": 63.71937184701466}, {"YearMonth": "2022-09", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 14246.039999999999, "totalRevenueExVAT": 11894.75, "totalCost": 5868.25, "totalQty": 620.0, "orderCount": 552, "uniqueProducts": 1, "margin": 6026.5, "marginPct": 50.66520944114}, {"YearMonth": "2022-09", "Category": "Vitamin B", "totalRevenue": 8517.24, "totalRevenueExVAT": 7101.74, "totalCost": 2801.6, "totalQty": 666.0, "orderCount": 578, "uniqueProducts": 12, "margin": 4300.139999999999, "marginPct": 60.550512972877065}, {"YearMonth": "2022-09", "Category": "Vitamin C", "totalRevenue": 2428.23, "totalRevenueExVAT": 2023.75, "totalCost": 787.02, "totalQty": 193.0, "orderCount": 172, "uniqueProducts": 4, "margin": 1236.73, "marginPct": 61.11080914144533}, {"YearMonth": "2022-09", "Category": "Vitamin D", "totalRevenue": 4232.61, "totalRevenueExVAT": 3526.6499999999996, "totalCost": 948.95, "totalQty": 431.0, "orderCount": 345, "uniqueProducts": 2, "margin": 2577.7, "marginPct": 73.09202784512215}, {"YearMonth": "2022-09", "Category": "Vitamin E", "totalRevenue": 1739.45, "totalRevenueExVAT": 1449.69, "totalCost": 597.26, "totalQty": 91.0, "orderCount": 81, "uniqueProducts": 3, "margin": 852.4300000000001, "marginPct": 58.800847077651085}, {"YearMonth": "2022-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 4898.75, "totalRevenueExVAT": 4082.48, "totalCost": 1471.55, "totalQty": 215.0, "orderCount": 180, "uniqueProducts": 2, "margin": 2610.9300000000003, "marginPct": 63.954508044130044}, {"YearMonth": "2022-10", "Category": "Amino Acids", "totalRevenue": 4799.41, "totalRevenueExVAT": 4003.87, "totalCost": 1759.03, "totalQty": 326.0, "orderCount": 277, "uniqueProducts": 7, "margin": 2244.84, "marginPct": 56.06675541413683}, {"YearMonth": "2022-10", "Category": "Bone Health", "totalRevenue": 8976.39, "totalRevenueExVAT": 7481.07, "totalCost": 2697.25, "totalQty": 883.0, "orderCount": 726, "uniqueProducts": 5, "margin": 4783.82, "marginPct": 63.94566552645544}, {"YearMonth": "2022-10", "Category": "Cod Liver Oil", "totalRevenue": 1540.6999999999998, "totalRevenueExVAT": 1283.9399999999998, "totalCost": 678.3599999999999, "totalQty": 182.0, "orderCount": 159, "uniqueProducts": 2, "margin": 605.5799999999999, "marginPct": 47.165755409131265}, {"YearMonth": "2022-10", "Category": "Evening Primose Oils", "totalRevenue": 3528.94, "totalRevenueExVAT": 2940.7200000000003, "totalCost": 1491.6100000000001, "totalQty": 264.0, "orderCount": 230, "uniqueProducts": 3, "margin": 1449.1100000000001, "marginPct": 49.27738785059441}, {"YearMonth": "2022-10", "Category": "Glucosamine", "totalRevenue": 8205.34, "totalRevenueExVAT": 6839.48, "totalCost": 3505.21, "totalQty": 547.0, "orderCount": 445, "uniqueProducts": 8, "margin": 3334.2699999999995, "marginPct": 48.75034359337259}, {"YearMonth": "2022-10", "Category": "Herbal Supplements", "totalRevenue": 10288.06, "totalRevenueExVAT": 8574.92, "totalCost": 4157.16, "totalQty": 798.0, "orderCount": 642, "uniqueProducts": 17, "margin": 4417.76, "marginPct": 51.519547704235144}, {"YearMonth": "2022-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1875.55, "totalRevenueExVAT": 1562.99, "totalCost": 491.64000000000004, "totalQty": 130.0, "orderCount": 109, "uniqueProducts": 1, "margin": 1071.35, "marginPct": 68.54490431800588}, {"YearMonth": "2022-10", "Category": "Minerals", "totalRevenue": 1715.36, "totalRevenueExVAT": 1429.52, "totalCost": 511.26, "totalQty": 218.0, "orderCount": 189, "uniqueProducts": 4, "margin": 918.26, "marginPct": 64.23554759639599}, {"YearMonth": "2022-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1473.45, "totalRevenueExVAT": 1228.33, "totalCost": 411.84, "totalQty": 91.0, "orderCount": 78, "uniqueProducts": 1, "margin": 816.49, "marginPct": 66.47155080475116}, {"YearMonth": "2022-10", "Category": "Multivitamins", "totalRevenue": 8770.17, "totalRevenueExVAT": 7309.99, "totalCost": 3525.17, "totalQty": 871.0, "orderCount": 741, "uniqueProducts": 6, "margin": 3784.8199999999997, "marginPct": 51.775994221606325}, {"YearMonth": "2022-10", "Category": "Natural Co Q10", "totalRevenue": 6193.01, "totalRevenueExVAT": 5165.99, "totalCost": 2781.21, "totalQty": 208.0, "orderCount": 165, "uniqueProducts": 4, "margin": 2384.7799999999997, "marginPct": 46.16307813216827}, {"YearMonth": "2022-10", "Category": "Omega 3 Supplements", "totalRevenue": 6033.47, "totalRevenueExVAT": 5027.82, "totalCost": 2165.81, "totalQty": 473.0, "orderCount": 405, "uniqueProducts": 6, "margin": 2862.0099999999998, "marginPct": 56.92347776968945}, {"YearMonth": "2022-10", "Category": "Probiotics", "totalRevenue": 2503.7999999999997, "totalRevenueExVAT": 2086.54, "totalCost": 716.88, "totalQty": 124.0, "orderCount": 111, "uniqueProducts": 1, "margin": 1369.6599999999999, "marginPct": 65.6426428441343}, {"YearMonth": "2022-10", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12074.949999999999, "totalRevenueExVAT": 10062.3, "totalCost": 5039.84, "totalQty": 534.0, "orderCount": 490, "uniqueProducts": 1, "margin": 5022.459999999999, "marginPct": 49.913638035041686}, {"YearMonth": "2022-10", "Category": "Vitamin B", "totalRevenue": 10772.75, "totalRevenueExVAT": 8979.07, "totalCost": 3620.72, "totalQty": 824.0, "orderCount": 714, "uniqueProducts": 12, "margin": 5358.35, "marginPct": 59.67600208039363}, {"YearMonth": "2022-10", "Category": "Vitamin C", "totalRevenue": 2177.43, "totalRevenueExVAT": 1814.72, "totalCost": 716.47, "totalQty": 181.0, "orderCount": 161, "uniqueProducts": 4, "margin": 1098.25, "marginPct": 60.51897813436784}, {"YearMonth": "2022-10", "Category": "Vitamin D", "totalRevenue": 3672.5099999999998, "totalRevenueExVAT": 3060.06, "totalCost": 865.4, "totalQty": 396.0, "orderCount": 312, "uniqueProducts": 2, "margin": 2194.66, "marginPct": 71.71950876780193}, {"YearMonth": "2022-10", "Category": "Vitamin E", "totalRevenue": 1795.05, "totalRevenueExVAT": 1496.0, "totalCost": 609.38, "totalQty": 99.0, "orderCount": 89, "uniqueProducts": 3, "margin": 886.62, "marginPct": 59.26604278074866}, {"YearMonth": "2022-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 3625.5299999999997, "totalRevenueExVAT": 3020.95, "totalCost": 1144.08, "totalQty": 165.0, "orderCount": 145, "uniqueProducts": 2, "margin": 1876.87, "marginPct": 62.12846952117711}, {"YearMonth": "2022-11", "Category": "Amino Acids", "totalRevenue": 5076.99, "totalRevenueExVAT": 4234.36, "totalCost": 1931.52, "totalQty": 350.0, "orderCount": 299, "uniqueProducts": 7, "margin": 2302.8399999999997, "marginPct": 54.38460593808745}, {"YearMonth": "2022-11", "Category": "Bone Health", "totalRevenue": 12270.369999999999, "totalRevenueExVAT": 10227.51, "totalCost": 3613.16, "totalQty": 1206.0, "orderCount": 945, "uniqueProducts": 5, "margin": 6614.35, "marginPct": 64.67214405070247}, {"YearMonth": "2022-11", "Category": "Cod Liver Oil", "totalRevenue": 2173.47, "totalRevenueExVAT": 1812.9299999999998, "totalCost": 960.3599999999999, "totalQty": 255.0, "orderCount": 215, "uniqueProducts": 2, "margin": 852.5699999999999, "marginPct": 47.02718803263226}, {"YearMonth": "2022-11", "Category": "Evening Primose Oils", "totalRevenue": 3713.06, "totalRevenueExVAT": 3096.14, "totalCost": 1520.32, "totalQty": 266.0, "orderCount": 230, "uniqueProducts": 3, "margin": 1575.82, "marginPct": 50.89627730012209}, {"YearMonth": "2022-11", "Category": "Glucosamine", "totalRevenue": 11313.31, "totalRevenueExVAT": 9435.36, "totalCost": 5154.39, "totalQty": 734.0, "orderCount": 584, "uniqueProducts": 8, "margin": 4280.97, "marginPct": 45.37155974970749}, {"YearMonth": "2022-11", "Category": "Herbal Supplements", "totalRevenue": 13222.0, "totalRevenueExVAT": 11023.98, "totalCost": 5422.93, "totalQty": 1003.0, "orderCount": 780, "uniqueProducts": 17, "margin": 5601.049999999999, "marginPct": 50.807875195709705}, {"YearMonth": "2022-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2513.25, "totalRevenueExVAT": 2094.19, "totalCost": 723.0, "totalQty": 182.0, "orderCount": 140, "uniqueProducts": 1, "margin": 1371.19, "marginPct": 65.47591192776204}, {"YearMonth": "2022-11", "Category": "Minerals", "totalRevenue": 2208.86, "totalRevenueExVAT": 1840.83, "totalCost": 655.05, "totalQty": 283.0, "orderCount": 248, "uniqueProducts": 4, "margin": 1185.78, "marginPct": 64.41550822183471}, {"YearMonth": "2022-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2122.35, "totalRevenueExVAT": 1769.29, "totalCost": 597.74, "totalQty": 134.0, "orderCount": 98, "uniqueProducts": 1, "margin": 1171.55, "marginPct": 66.21582668754132}, {"YearMonth": "2022-11", "Category": "Multivitamins", "totalRevenue": 10576.06, "totalRevenueExVAT": 8824.3, "totalCost": 4310.92, "totalQty": 969.0, "orderCount": 816, "uniqueProducts": 6, "margin": 4513.379999999999, "marginPct": 51.1471731468785}, {"YearMonth": "2022-11", "Category": "Natural Co Q10", "totalRevenue": 9342.47, "totalRevenueExVAT": 7797.87, "totalCost": 4505.469999999999, "totalQty": 312.0, "orderCount": 241, "uniqueProducts": 4, "margin": 3292.4000000000005, "marginPct": 42.221786205720285}, {"YearMonth": "2022-11", "Category": "Omega 3 Supplements", "totalRevenue": 8058.01, "totalRevenueExVAT": 6715.13, "totalCost": 3021.05, "totalQty": 596.0, "orderCount": 487, "uniqueProducts": 6, "margin": 3694.08, "marginPct": 55.011295388175654}, {"YearMonth": "2022-11", "Category": "Probiotics", "totalRevenue": 3188.25, "totalRevenueExVAT": 2656.91, "totalCost": 914.64, "totalQty": 155.0, "orderCount": 143, "uniqueProducts": 1, "margin": 1742.27, "marginPct": 65.57504770579358}, {"YearMonth": "2022-11", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 17250.98, "totalRevenueExVAT": 14383.789999999999, "totalCost": 7645.85, "totalQty": 734.0, "orderCount": 638, "uniqueProducts": 1, "margin": 6737.939999999999, "marginPct": 46.84398201030465}, {"YearMonth": "2022-11", "Category": "Vitamin B", "totalRevenue": 11026.84, "totalRevenueExVAT": 9195.43, "totalCost": 3868.84, "totalQty": 845.0, "orderCount": 703, "uniqueProducts": 12, "margin": 5326.59, "marginPct": 57.92649174644361}, {"YearMonth": "2022-11", "Category": "Vitamin C", "totalRevenue": 3140.54, "totalRevenueExVAT": 2617.4, "totalCost": 1045.06, "totalQty": 242.0, "orderCount": 218, "uniqueProducts": 4, "margin": 1572.3400000000001, "marginPct": 60.07259112095974}, {"YearMonth": "2022-11", "Category": "Vitamin D", "totalRevenue": 5540.9, "totalRevenueExVAT": 4618.23, "totalCost": 1227.1200000000001, "totalQty": 565.0, "orderCount": 434, "uniqueProducts": 2, "margin": 3391.1099999999997, "marginPct": 73.42878115641707}, {"YearMonth": "2022-11", "Category": "Vitamin E", "totalRevenue": 2008.4499999999998, "totalRevenueExVAT": 1673.85, "totalCost": 690.63, "totalQty": 111.0, "orderCount": 100, "uniqueProducts": 3, "margin": 983.2199999999999, "marginPct": 58.74003046867998}, {"YearMonth": "2022-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 6006.75, "totalRevenueExVAT": 5007.41, "totalCost": 1962.36, "totalQty": 261.0, "orderCount": 224, "uniqueProducts": 2, "margin": 3045.05, "marginPct": 60.810878278391435}, {"YearMonth": "2022-12", "Category": "Amino Acids", "totalRevenue": 3411.7, "totalRevenueExVAT": 2843.0, "totalCost": 1318.09, "totalQty": 258.0, "orderCount": 216, "uniqueProducts": 6, "margin": 1524.91, "marginPct": 53.6373549067886}, {"YearMonth": "2022-12", "Category": "Bone Health", "totalRevenue": 5536.1, "totalRevenueExVAT": 4619.88, "totalCost": 1587.3999999999999, "totalQty": 621.0, "orderCount": 531, "uniqueProducts": 4, "margin": 3032.4800000000005, "marginPct": 65.63980016796974}, {"YearMonth": "2022-12", "Category": "Cod Liver Oil", "totalRevenue": 1711.24, "totalRevenueExVAT": 1425.97, "totalCost": 783.12, "totalQty": 215.0, "orderCount": 181, "uniqueProducts": 2, "margin": 642.85, "marginPct": 45.081593581912664}, {"YearMonth": "2022-12", "Category": "Evening Primose Oils", "totalRevenue": 2401.4, "totalRevenueExVAT": 2001.18, "totalCost": 1009.0, "totalQty": 167.0, "orderCount": 145, "uniqueProducts": 3, "margin": 992.1800000000001, "marginPct": 49.57974794871026}, {"YearMonth": "2022-12", "Category": "Glucosamine", "totalRevenue": 7240.62, "totalRevenueExVAT": 6034.57, "totalCost": 3391.47, "totalQty": 516.0, "orderCount": 414, "uniqueProducts": 9, "margin": 2643.1, "marginPct": 43.79930964426629}, {"YearMonth": "2022-12", "Category": "Herbal Supplements", "totalRevenue": 9878.73, "totalRevenueExVAT": 8235.49, "totalCost": 4068.71, "totalQty": 819.0, "orderCount": 643, "uniqueProducts": 17, "margin": 4166.78, "marginPct": 50.595410837727925}, {"YearMonth": "2022-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1820.96, "totalRevenueExVAT": 1517.15, "totalCost": 527.7900000000001, "totalQty": 147.0, "orderCount": 111, "uniqueProducts": 1, "margin": 989.36, "marginPct": 65.21174570741192}, {"YearMonth": "2022-12", "Category": "Minerals", "totalRevenue": 1359.08, "totalRevenueExVAT": 1132.57, "totalCost": 416.9, "totalQty": 179.0, "orderCount": 159, "uniqueProducts": 4, "margin": 715.67, "marginPct": 63.18991320624774}, {"YearMonth": "2022-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1281.08, "totalRevenueExVAT": 1073.26, "totalCost": 371.8, "totalQty": 82.0, "orderCount": 67, "uniqueProducts": 1, "margin": 701.46, "marginPct": 65.35788159439466}, {"YearMonth": "2022-12", "Category": "Multivitamins", "totalRevenue": 7954.26, "totalRevenueExVAT": 6629.33, "totalCost": 3326.8, "totalQty": 749.0, "orderCount": 642, "uniqueProducts": 6, "margin": 3302.5299999999997, "marginPct": 49.816949827508964}, {"YearMonth": "2022-12", "Category": "Natural Co Q10", "totalRevenue": 5311.12, "totalRevenueExVAT": 4430.78, "totalCost": 2590.1299999999997, "totalQty": 185.0, "orderCount": 154, "uniqueProducts": 4, "margin": 1840.65, "marginPct": 41.542346945684514}, {"YearMonth": "2022-12", "Category": "Omega 3 Supplements", "totalRevenue": 5432.33, "totalRevenueExVAT": 4526.97, "totalCost": 2038.37, "totalQty": 447.0, "orderCount": 375, "uniqueProducts": 7, "margin": 2488.6000000000004, "marginPct": 54.97275219407241}, {"YearMonth": "2022-12", "Category": "Probiotics", "totalRevenue": 2425.42, "totalRevenueExVAT": 2021.1100000000001, "totalCost": 721.0, "totalQty": 124.0, "orderCount": 116, "uniqueProducts": 1, "margin": 1300.1100000000001, "marginPct": 64.3265334395456}, {"YearMonth": "2022-12", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 19682.739999999998, "totalRevenueExVAT": 16401.56, "totalCost": 9443.9, "totalQty": 854.0, "orderCount": 716, "uniqueProducts": 1, "margin": 6957.660000000002, "marginPct": 42.420720955811525}, {"YearMonth": "2022-12", "Category": "Vitamin B", "totalRevenue": 7850.0, "totalRevenueExVAT": 6542.14, "totalCost": 2833.96, "totalQty": 651.0, "orderCount": 562, "uniqueProducts": 12, "margin": 3708.1800000000003, "marginPct": 56.68145285793334}, {"YearMonth": "2022-12", "Category": "Vitamin C", "totalRevenue": 2675.23, "totalRevenueExVAT": 2229.43, "totalCost": 915.0500000000001, "totalQty": 224.0, "orderCount": 194, "uniqueProducts": 4, "margin": 1314.3799999999997, "marginPct": 58.95587661420183}, {"YearMonth": "2022-12", "Category": "Vitamin D", "totalRevenue": 4318.51, "totalRevenueExVAT": 3597.99, "totalCost": 1020.42, "totalQty": 460.0, "orderCount": 363, "uniqueProducts": 2, "margin": 2577.5699999999997, "marginPct": 71.6391652005703}, {"YearMonth": "2022-12", "Category": "Vitamin E", "totalRevenue": 707.29, "totalRevenueExVAT": 589.34, "totalCost": 284.81, "totalQty": 56.0, "orderCount": 51, "uniqueProducts": 2, "margin": 304.53000000000003, "marginPct": 51.673057997081486}, {"YearMonth": "2022-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 3463.65, "totalRevenueExVAT": 2885.93, "totalCost": 1132.22, "totalQty": 159.0, "orderCount": 143, "uniqueProducts": 2, "margin": 1753.7099999999998, "marginPct": 60.76758618538911}, {"YearMonth": "2023-01", "Category": "Amino Acids", "totalRevenue": 5611.29, "totalRevenueExVAT": 4676.51, "totalCost": 2385.1, "totalQty": 456.0, "orderCount": 359, "uniqueProducts": 6, "margin": 2291.4100000000003, "marginPct": 48.99829146093989}, {"YearMonth": "2023-01", "Category": "Bone Health", "totalRevenue": 14594.81, "totalRevenueExVAT": 12166.91, "totalCost": 4894.98, "totalQty": 1558.0, "orderCount": 1225, "uniqueProducts": 5, "margin": 7271.93, "marginPct": 59.76809230938669}, {"YearMonth": "2023-01", "Category": "Cod Liver Oil", "totalRevenue": 3162.1, "totalRevenueExVAT": 2634.62, "totalCost": 1590.33, "totalQty": 415.0, "orderCount": 330, "uniqueProducts": 2, "margin": 1044.29, "marginPct": 39.6372152340755}, {"YearMonth": "2023-01", "Category": "Evening Primose Oils", "totalRevenue": 4855.12, "totalRevenueExVAT": 4048.7000000000003, "totalCost": 2288.7, "totalQty": 360.0, "orderCount": 311, "uniqueProducts": 3, "margin": 1760.0000000000005, "marginPct": 43.47074369550721}, {"YearMonth": "2023-01", "Category": "Glucosamine", "totalRevenue": 13621.66, "totalRevenueExVAT": 11352.300000000001, "totalCost": 6839.91, "totalQty": 959.0, "orderCount": 739, "uniqueProducts": 10, "margin": 4512.390000000001, "marginPct": 39.74868528844376}, {"YearMonth": "2023-01", "Category": "Herbal Supplements", "totalRevenue": 18578.29, "totalRevenueExVAT": 15482.640000000001, "totalCost": 8568.95, "totalQty": 1624.0, "orderCount": 1203, "uniqueProducts": 17, "margin": 6913.6900000000005, "marginPct": 44.654464613270086}, {"YearMonth": "2023-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2582.64, "totalRevenueExVAT": 2151.36, "totalCost": 800.12, "totalQty": 205.0, "orderCount": 156, "uniqueProducts": 1, "margin": 1351.2400000000002, "marginPct": 62.80864197530865}, {"YearMonth": "2023-01", "Category": "Minerals", "totalRevenue": 2810.58, "totalRevenueExVAT": 2341.5099999999998, "totalCost": 940.0600000000001, "totalQty": 382.0, "orderCount": 333, "uniqueProducts": 4, "margin": 1401.4499999999998, "marginPct": 59.85240293656658}, {"YearMonth": "2023-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2677.9500000000003, "totalRevenueExVAT": 2231.27, "totalCost": 889.4599999999999, "totalQty": 180.0, "orderCount": 130, "uniqueProducts": 1, "margin": 1341.81, "marginPct": 60.13660381755681}, {"YearMonth": "2023-01", "Category": "Multivitamins", "totalRevenue": 15046.5, "totalRevenueExVAT": 12546.75, "totalCost": 6724.32, "totalQty": 1481.0, "orderCount": 1204, "uniqueProducts": 6, "margin": 5822.43, "marginPct": 46.405882001315085}, {"YearMonth": "2023-01", "Category": "Natural Co Q10", "totalRevenue": 11974.24, "totalRevenueExVAT": 9981.27, "totalCost": 6119.829999999999, "totalQty": 439.0, "orderCount": 330, "uniqueProducts": 4, "margin": 3861.4400000000014, "marginPct": 38.68686048969722}, {"YearMonth": "2023-01", "Category": "Omega 3 Supplements", "totalRevenue": 10131.24, "totalRevenueExVAT": 8443.42, "totalCost": 4028.89, "totalQty": 858.0, "orderCount": 693, "uniqueProducts": 6, "margin": 4414.530000000001, "marginPct": 52.28367178228728}, {"YearMonth": "2023-01", "Category": "Probiotics", "totalRevenue": 4114.48, "totalRevenueExVAT": 3428.48, "totalCost": 1301.92, "totalQty": 238.0, "orderCount": 216, "uniqueProducts": 1, "margin": 2126.56, "marginPct": 62.02632070188538}, {"YearMonth": "2023-01", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 17028.55, "totalRevenueExVAT": 14195.02, "totalCost": 8577.119999999999, "totalQty": 813.0, "orderCount": 714, "uniqueProducts": 1, "margin": 5617.9000000000015, "marginPct": 39.57655572165451}, {"YearMonth": "2023-01", "Category": "Vitamin B", "totalRevenue": 16886.170000000002, "totalRevenueExVAT": 14068.19, "totalCost": 6677.82, "totalQty": 1392.0, "orderCount": 1184, "uniqueProducts": 12, "margin": 7390.370000000001, "marginPct": 52.532486410831815}, {"YearMonth": "2023-01", "Category": "Vitamin C", "totalRevenue": 3566.18, "totalRevenueExVAT": 2970.9500000000003, "totalCost": 1328.9, "totalQty": 321.0, "orderCount": 266, "uniqueProducts": 4, "margin": 1642.0500000000002, "marginPct": 55.27019976775106}, {"YearMonth": "2023-01", "Category": "Vitamin D", "totalRevenue": 6531.82, "totalRevenueExVAT": 5441.78, "totalCost": 1645.61, "totalQty": 750.0, "orderCount": 580, "uniqueProducts": 2, "margin": 3796.17, "marginPct": 69.75971097692299}, {"YearMonth": "2023-01", "Category": "Vitamin E", "totalRevenue": 1413.02, "totalRevenueExVAT": 1177.04, "totalCost": 604.8000000000001, "totalQty": 124.0, "orderCount": 108, "uniqueProducts": 2, "margin": 572.2399999999999, "marginPct": 48.61686943519336}, {"YearMonth": "2023-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 7680.79, "totalRevenueExVAT": 6398.66, "totalCost": 2659.34, "totalQty": 356.0, "orderCount": 300, "uniqueProducts": 2, "margin": 3739.3199999999997, "marginPct": 58.43911068880047}, {"YearMonth": "2023-02", "Category": "Amino Acids", "totalRevenue": 3006.74, "totalRevenueExVAT": 2506.28, "totalCost": 1157.09, "totalQty": 218.0, "orderCount": 190, "uniqueProducts": 5, "margin": 1349.1900000000003, "marginPct": 53.832373078826}, {"YearMonth": "2023-02", "Category": "Bone Health", "totalRevenue": 9033.619999999999, "totalRevenueExVAT": 7533.33, "totalCost": 2707.62, "totalQty": 859.0, "orderCount": 664, "uniqueProducts": 5, "margin": 4825.71, "marginPct": 64.05812568943615}, {"YearMonth": "2023-02", "Category": "Cod Liver Oil", "totalRevenue": 2065.73, "totalRevenueExVAT": 1721.48, "totalCost": 942.4799999999999, "totalQty": 245.0, "orderCount": 200, "uniqueProducts": 2, "margin": 779.0000000000001, "marginPct": 45.25176011339081}, {"YearMonth": "2023-02", "Category": "Evening Primose Oils", "totalRevenue": 2836.81, "totalRevenueExVAT": 2364.33, "totalCost": 1245.6, "totalQty": 197.0, "orderCount": 180, "uniqueProducts": 3, "margin": 1118.73, "marginPct": 47.31699889609319}, {"YearMonth": "2023-02", "Category": "Glucosamine", "totalRevenue": 7296.929999999999, "totalRevenueExVAT": 6084.18, "totalCost": 3229.59, "totalQty": 489.0, "orderCount": 401, "uniqueProducts": 10, "margin": 2854.59, "marginPct": 46.91823713302368}, {"YearMonth": "2023-02", "Category": "Herbal Supplements", "totalRevenue": 9781.92, "totalRevenueExVAT": 8158.89, "totalCost": 4149.45, "totalQty": 722.0, "orderCount": 595, "uniqueProducts": 17, "margin": 4009.4400000000005, "marginPct": 49.14197887212599}, {"YearMonth": "2023-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1446.52, "totalRevenueExVAT": 1205.2, "totalCost": 419.34000000000003, "totalQty": 112.0, "orderCount": 96, "uniqueProducts": 1, "margin": 785.86, "marginPct": 65.20577497510787}, {"YearMonth": "2023-02", "Category": "Minerals", "totalRevenue": 1595.1, "totalRevenueExVAT": 1329.19, "totalCost": 487.21, "totalQty": 208.0, "orderCount": 185, "uniqueProducts": 4, "margin": 841.98, "marginPct": 63.34534566164356}, {"YearMonth": "2023-02", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1074.8999999999999, "totalRevenueExVAT": 896.06, "totalCost": 303.15999999999997, "totalQty": 62.0, "orderCount": 49, "uniqueProducts": 1, "margin": 592.9, "marginPct": 66.16744414436533}, {"YearMonth": "2023-02", "Category": "Multivitamins", "totalRevenue": 7625.16, "totalRevenueExVAT": 6357.83, "totalCost": 3119.2799999999997, "totalQty": 709.0, "orderCount": 603, "uniqueProducts": 6, "margin": 3238.55, "marginPct": 50.937977265828124}, {"YearMonth": "2023-02", "Category": "Natural Co Q10", "totalRevenue": 5464.47, "totalRevenueExVAT": 4563.15, "totalCost": 2513.5699999999997, "totalQty": 190.0, "orderCount": 164, "uniqueProducts": 4, "margin": 2049.58, "marginPct": 44.91590239198799}, {"YearMonth": "2023-02", "Category": "Omega 3 Supplements", "totalRevenue": 5120.41, "totalRevenueExVAT": 4271.76, "totalCost": 1702.43, "totalQty": 397.0, "orderCount": 346, "uniqueProducts": 6, "margin": 2569.33, "marginPct": 60.146871547090655}, {"YearMonth": "2023-02", "Category": "Probiotics", "totalRevenue": 1937.54, "totalRevenueExVAT": 1618.53, "totalCost": 556.2, "totalQty": 96.0, "orderCount": 90, "uniqueProducts": 1, "margin": 1062.33, "marginPct": 65.63548405034197}, {"YearMonth": "2023-02", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10392.97, "totalRevenueExVAT": 8662.4, "totalCost": 4711.94, "totalQty": 456.0, "orderCount": 413, "uniqueProducts": 1, "margin": 3950.46, "marginPct": 45.60468230513484}, {"YearMonth": "2023-02", "Category": "Vitamin B", "totalRevenue": 8890.52, "totalRevenueExVAT": 7410.5, "totalCost": 3295.3, "totalQty": 703.0, "orderCount": 627, "uniqueProducts": 12, "margin": 4115.2, "marginPct": 55.532015383577345}, {"YearMonth": "2023-02", "Category": "Vitamin C", "totalRevenue": 2210.93, "totalRevenueExVAT": 1842.67, "totalCost": 741.32, "totalQty": 173.0, "orderCount": 141, "uniqueProducts": 4, "margin": 1101.35, "marginPct": 59.76924788486272}, {"YearMonth": "2023-02", "Category": "Vitamin D", "totalRevenue": 3402.73, "totalRevenueExVAT": 2835.21, "totalCost": 781.37, "totalQty": 352.0, "orderCount": 284, "uniqueProducts": 2, "margin": 2053.84, "marginPct": 72.44048941700967}, {"YearMonth": "2023-02", "Category": "Vitamin E", "totalRevenue": 1034.25, "totalRevenueExVAT": 861.87, "totalCost": 404.14000000000004, "totalQty": 75.0, "orderCount": 66, "uniqueProducts": 2, "margin": 457.72999999999996, "marginPct": 53.10893754278487}, {"YearMonth": "2023-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 3940.56, "totalRevenueExVAT": 3283.62, "totalCost": 1208.86, "totalQty": 169.0, "orderCount": 156, "uniqueProducts": 2, "margin": 2074.76, "marginPct": 63.18514322607367}, {"YearMonth": "2023-03", "Category": "Amino Acids", "totalRevenue": 5783.929999999999, "totalRevenueExVAT": 4823.34, "totalCost": 2160.79, "totalQty": 418.0, "orderCount": 360, "uniqueProducts": 6, "margin": 2662.55, "marginPct": 55.201374980822415}, {"YearMonth": "2023-03", "Category": "Bone Health", "totalRevenue": 10314.24, "totalRevenueExVAT": 8596.74, "totalCost": 3091.3199999999997, "totalQty": 998.0, "orderCount": 805, "uniqueProducts": 5, "margin": 5505.42, "marginPct": 64.040787554352}, {"YearMonth": "2023-03", "Category": "Cod Liver Oil", "totalRevenue": 2406.36, "totalRevenueExVAT": 2006.0, "totalCost": 1003.7399999999999, "totalQty": 258.0, "orderCount": 213, "uniqueProducts": 2, "margin": 1002.2600000000001, "marginPct": 49.96311066799602}, {"YearMonth": "2023-03", "Category": "Evening Primose Oils", "totalRevenue": 3081.75, "totalRevenueExVAT": 2568.32, "totalCost": 1262.41, "totalQty": 206.0, "orderCount": 184, "uniqueProducts": 2, "margin": 1305.91, "marginPct": 50.84685708945925}, {"YearMonth": "2023-03", "Category": "Glucosamine", "totalRevenue": 10823.14, "totalRevenueExVAT": 9024.17, "totalCost": 4512.54, "totalQty": 671.0, "orderCount": 535, "uniqueProducts": 10, "margin": 4511.63, "marginPct": 49.99495798505569}, {"YearMonth": "2023-03", "Category": "Herbal Supplements", "totalRevenue": 10762.5, "totalRevenueExVAT": 8974.06, "totalCost": 4177.8099999999995, "totalQty": 788.0, "orderCount": 631, "uniqueProducts": 13, "margin": 4796.25, "marginPct": 53.44570907705097}, {"YearMonth": "2023-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1711.51, "totalRevenueExVAT": 1427.26, "totalCost": 496.46000000000004, "totalQty": 131.0, "orderCount": 103, "uniqueProducts": 1, "margin": 930.8, "marginPct": 65.21586816697729}, {"YearMonth": "2023-03", "Category": "Minerals", "totalRevenue": 1707.17, "totalRevenueExVAT": 1422.55, "totalCost": 529.91, "totalQty": 229.0, "orderCount": 211, "uniqueProducts": 4, "margin": 892.64, "marginPct": 62.749288249973645}, {"YearMonth": "2023-03", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1790.6999999999998, "totalRevenueExVAT": 1492.78, "totalCost": 503.35999999999996, "totalQty": 106.0, "orderCount": 87, "uniqueProducts": 1, "margin": 989.4200000000001, "marginPct": 66.2803628130066}, {"YearMonth": "2023-03", "Category": "Multivitamins", "totalRevenue": 10399.46, "totalRevenueExVAT": 8667.4, "totalCost": 4105.62, "totalQty": 955.0, "orderCount": 792, "uniqueProducts": 6, "margin": 4561.78, "marginPct": 52.631469644876205}, {"YearMonth": "2023-03", "Category": "Natural Co Q10", "totalRevenue": 8697.9, "totalRevenueExVAT": 7253.8, "totalCost": 3926.1199999999994, "totalQty": 278.0, "orderCount": 216, "uniqueProducts": 4, "margin": 3327.6800000000007, "marginPct": 45.874989660591694}, {"YearMonth": "2023-03", "Category": "Omega 3 Supplements", "totalRevenue": 7628.28, "totalRevenueExVAT": 6358.38, "totalCost": 2506.16, "totalQty": 584.0, "orderCount": 489, "uniqueProducts": 6, "margin": 3852.2200000000003, "marginPct": 60.58492886552864}, {"YearMonth": "2023-03", "Category": "Probiotics", "totalRevenue": 2665.0, "totalRevenueExVAT": 2220.92, "totalCost": 758.08, "totalQty": 140.0, "orderCount": 126, "uniqueProducts": 1, "margin": 1462.8400000000001, "marginPct": 65.86639770905751}, {"YearMonth": "2023-03", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15551.199999999999, "totalRevenueExVAT": 12959.1, "totalCost": 6709.4, "totalQty": 638.0, "orderCount": 567, "uniqueProducts": 1, "margin": 6249.700000000001, "marginPct": 48.2263428787493}, {"YearMonth": "2023-03", "Category": "Vitamin B", "totalRevenue": 11123.439999999999, "totalRevenueExVAT": 9273.49, "totalCost": 3630.04, "totalQty": 834.0, "orderCount": 725, "uniqueProducts": 12, "margin": 5643.45, "marginPct": 60.85572961204465}, {"YearMonth": "2023-03", "Category": "Vitamin C", "totalRevenue": 2568.17, "totalRevenueExVAT": 2144.21, "totalCost": 858.08, "totalQty": 204.0, "orderCount": 185, "uniqueProducts": 4, "margin": 1286.13, "marginPct": 59.98153165967886}, {"YearMonth": "2023-03", "Category": "Vitamin D", "totalRevenue": 4375.48, "totalRevenueExVAT": 3645.6, "totalCost": 977.64, "totalQty": 448.0, "orderCount": 366, "uniqueProducts": 2, "margin": 2667.96, "marginPct": 73.18301514154048}, {"YearMonth": "2023-03", "Category": "Vitamin E", "totalRevenue": 1314.05, "totalRevenueExVAT": 1095.06, "totalCost": 509.09000000000003, "totalQty": 99.0, "orderCount": 89, "uniqueProducts": 2, "margin": 585.9699999999999, "marginPct": 53.510309937355025}, {"YearMonth": "2023-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 4947.2, "totalRevenueExVAT": 4122.48, "totalCost": 1517.78, "totalQty": 206.0, "orderCount": 175, "uniqueProducts": 2, "margin": 2604.7, "marginPct": 63.18284139644098}, {"YearMonth": "2023-04", "Category": "Amino Acids", "totalRevenue": 3117.68, "totalRevenueExVAT": 2599.86, "totalCost": 1162.1499999999999, "totalQty": 216.0, "orderCount": 168, "uniqueProducts": 6, "margin": 1437.7100000000003, "marginPct": 55.299516127791506}, {"YearMonth": "2023-04", "Category": "Bone Health", "totalRevenue": 7237.82, "totalRevenueExVAT": 6035.93, "totalCost": 2156.39, "totalQty": 700.0, "orderCount": 572, "uniqueProducts": 5, "margin": 3879.5400000000004, "marginPct": 64.27410523316209}, {"YearMonth": "2023-04", "Category": "Cod Liver Oil", "totalRevenue": 1413.0, "totalRevenueExVAT": 1179.67, "totalCost": 562.65, "totalQty": 161.0, "orderCount": 127, "uniqueProducts": 2, "margin": 617.0200000000001, "marginPct": 52.304458026397214}, {"YearMonth": "2023-04", "Category": "Evening Primose Oils", "totalRevenue": 2486.95, "totalRevenueExVAT": 2072.64, "totalCost": 982.27, "totalQty": 161.0, "orderCount": 141, "uniqueProducts": 3, "margin": 1090.37, "marginPct": 52.60778524008028}, {"YearMonth": "2023-04", "Category": "Glucosamine", "totalRevenue": 6506.15, "totalRevenueExVAT": 5422.36, "totalCost": 2529.42, "totalQty": 400.0, "orderCount": 334, "uniqueProducts": 10, "margin": 2892.9399999999996, "marginPct": 53.35204597260233}, {"YearMonth": "2023-04", "Category": "Herbal Supplements", "totalRevenue": 6003.24, "totalRevenueExVAT": 5003.570000000001, "totalCost": 2399.7999999999997, "totalQty": 442.0, "orderCount": 354, "uniqueProducts": 11, "margin": 2603.770000000001, "marginPct": 52.038244693289}, {"YearMonth": "2023-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1418.8799999999999, "totalRevenueExVAT": 1182.22, "totalCost": 412.11, "totalQty": 107.0, "orderCount": 84, "uniqueProducts": 1, "margin": 770.11, "marginPct": 65.14100590414643}, {"YearMonth": "2023-04", "Category": "Minerals", "totalRevenue": 1358.7, "totalRevenueExVAT": 1132.21, "totalCost": 419.92, "totalQty": 178.0, "orderCount": 159, "uniqueProducts": 4, "margin": 712.29, "marginPct": 62.9114740198373}, {"YearMonth": "2023-04", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1155.45, "totalRevenueExVAT": 963.23, "totalCost": 323.18, "totalQty": 71.0, "orderCount": 56, "uniqueProducts": 1, "margin": 640.05, "marginPct": 66.44830414335101}, {"YearMonth": "2023-04", "Category": "Multivitamins", "totalRevenue": 5320.57, "totalRevenueExVAT": 4440.4800000000005, "totalCost": 2017.7, "totalQty": 566.0, "orderCount": 469, "uniqueProducts": 6, "margin": 2422.7800000000007, "marginPct": 54.56121860699745}, {"YearMonth": "2023-04", "Category": "Natural Co Q10", "totalRevenue": 6420.45, "totalRevenueExVAT": 5356.73, "totalCost": 2825.8999999999996, "totalQty": 204.0, "orderCount": 166, "uniqueProducts": 4, "margin": 2530.83, "marginPct": 47.245801076402955}, {"YearMonth": "2023-04", "Category": "Omega 3 Supplements", "totalRevenue": 5665.69, "totalRevenueExVAT": 4724.47, "totalCost": 1871.65, "totalQty": 400.0, "orderCount": 337, "uniqueProducts": 6, "margin": 2852.82, "marginPct": 60.38391607947558}, {"YearMonth": "2023-04", "Category": "Probiotics", "totalRevenue": 1830.3999999999999, "totalRevenueExVAT": 1525.3700000000001, "totalCost": 523.24, "totalQty": 92.0, "orderCount": 91, "uniqueProducts": 1, "margin": 1002.1300000000001, "marginPct": 65.69750290093552}, {"YearMonth": "2023-04", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10246.6, "totalRevenueExVAT": 8538.119999999999, "totalCost": 4345.5599999999995, "totalQty": 429.0, "orderCount": 385, "uniqueProducts": 1, "margin": 4192.5599999999995, "marginPct": 49.10401821478265}, {"YearMonth": "2023-04", "Category": "Vitamin B", "totalRevenue": 9189.869999999999, "totalRevenueExVAT": 7665.92, "totalCost": 3055.04, "totalQty": 687.0, "orderCount": 607, "uniqueProducts": 12, "margin": 4610.88, "marginPct": 60.14777091334113}, {"YearMonth": "2023-04", "Category": "Vitamin C", "totalRevenue": 1852.28, "totalRevenueExVAT": 1543.68, "totalCost": 616.44, "totalQty": 150.0, "orderCount": 130, "uniqueProducts": 4, "margin": 927.24, "marginPct": 60.06685323383084}, {"YearMonth": "2023-04", "Category": "Vitamin D", "totalRevenue": 2375.81, "totalRevenueExVAT": 1979.4199999999998, "totalCost": 515.92, "totalQty": 243.0, "orderCount": 193, "uniqueProducts": 2, "margin": 1463.5, "marginPct": 73.93579937557467}, {"YearMonth": "2023-04", "Category": "Vitamin E", "totalRevenue": 533.9, "totalRevenueExVAT": 445.03000000000003, "totalCost": 202.39000000000001, "totalQty": 42.0, "orderCount": 38, "uniqueProducts": 2, "margin": 242.64000000000001, "marginPct": 54.522167044918326}, {"YearMonth": "2023-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 2651.65, "totalRevenueExVAT": 2209.59, "totalCost": 820.46, "totalQty": 118.0, "orderCount": 102, "uniqueProducts": 2, "margin": 1389.13, "marginPct": 62.868224421725294}, {"YearMonth": "2023-05", "Category": "Amino Acids", "totalRevenue": 5384.78, "totalRevenueExVAT": 4487.79, "totalCost": 1968.04, "totalQty": 368.0, "orderCount": 313, "uniqueProducts": 7, "margin": 2519.75, "marginPct": 56.14678939968225}, {"YearMonth": "2023-05", "Category": "Bone Health", "totalRevenue": 8793.75, "totalRevenueExVAT": 7331.24, "totalCost": 2677.55, "totalQty": 809.0, "orderCount": 637, "uniqueProducts": 5, "margin": 4653.69, "marginPct": 63.477529040107804}, {"YearMonth": "2023-05", "Category": "Cod Liver Oil", "totalRevenue": 1903.43, "totalRevenueExVAT": 1588.92, "totalCost": 750.5999999999999, "totalQty": 210.0, "orderCount": 178, "uniqueProducts": 2, "margin": 838.3200000000002, "marginPct": 52.76036553130429}, {"YearMonth": "2023-05", "Category": "Evening Primose Oils", "totalRevenue": 3241.31, "totalRevenueExVAT": 2703.0099999999998, "totalCost": 1279.95, "totalQty": 214.0, "orderCount": 184, "uniqueProducts": 3, "margin": 1423.0599999999997, "marginPct": 52.64723400949312}, {"YearMonth": "2023-05", "Category": "Glucosamine", "totalRevenue": 9783.960000000001, "totalRevenueExVAT": 8156.76, "totalCost": 3879.7999999999997, "totalQty": 569.0, "orderCount": 461, "uniqueProducts": 10, "margin": 4276.960000000001, "marginPct": 52.43454508898142}, {"YearMonth": "2023-05", "Category": "Herbal Supplements", "totalRevenue": 9420.3, "totalRevenueExVAT": 7852.820000000001, "totalCost": 3780.67, "totalQty": 637.0, "orderCount": 512, "uniqueProducts": 13, "margin": 4072.1500000000005, "marginPct": 51.85589380630143}, {"YearMonth": "2023-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1691.55, "totalRevenueExVAT": 1409.42, "totalCost": 491.64000000000004, "totalQty": 127.0, "orderCount": 97, "uniqueProducts": 1, "margin": 917.78, "marginPct": 65.11756609101616}, {"YearMonth": "2023-05", "Category": "Minerals", "totalRevenue": 1519.82, "totalRevenueExVAT": 1267.24, "totalCost": 465.85, "totalQty": 204.0, "orderCount": 179, "uniqueProducts": 4, "margin": 801.39, "marginPct": 63.23900760708311}, {"YearMonth": "2023-05", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1733.3799999999999, "totalRevenueExVAT": 1447.78, "totalCost": 486.2, "totalQty": 106.0, "orderCount": 82, "uniqueProducts": 1, "margin": 961.5799999999999, "marginPct": 66.41754962770587}, {"YearMonth": "2023-05", "Category": "Multivitamins", "totalRevenue": 9336.64, "totalRevenueExVAT": 7785.6900000000005, "totalCost": 3537.68, "totalQty": 813.0, "orderCount": 671, "uniqueProducts": 6, "margin": 4248.01, "marginPct": 54.56176652294145}, {"YearMonth": "2023-05", "Category": "Natural Co Q10", "totalRevenue": 8326.37, "totalRevenueExVAT": 6938.71, "totalCost": 3703.1299999999997, "totalQty": 257.0, "orderCount": 200, "uniqueProducts": 4, "margin": 3235.5800000000004, "marginPct": 46.63085789721721}, {"YearMonth": "2023-05", "Category": "Omega 3 Supplements", "totalRevenue": 7372.639999999999, "totalRevenueExVAT": 6145.12, "totalCost": 2444.78, "totalQty": 518.0, "orderCount": 439, "uniqueProducts": 6, "margin": 3700.3399999999997, "marginPct": 60.215911162027744}, {"YearMonth": "2023-05", "Category": "Probiotics", "totalRevenue": 3078.4, "totalRevenueExVAT": 2565.38, "totalCost": 881.6800000000001, "totalQty": 152.0, "orderCount": 145, "uniqueProducts": 1, "margin": 1683.7, "marginPct": 65.63160233571634}, {"YearMonth": "2023-05", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16094.539999999999, "totalRevenueExVAT": 13413.279999999999, "totalCost": 6829.44, "totalQty": 637.0, "orderCount": 560, "uniqueProducts": 1, "margin": 6583.839999999999, "marginPct": 49.08448940154832}, {"YearMonth": "2023-05", "Category": "Vitamin B", "totalRevenue": 10743.26, "totalRevenueExVAT": 8962.02, "totalCost": 3655.41, "totalQty": 769.0, "orderCount": 678, "uniqueProducts": 12, "margin": 5306.610000000001, "marginPct": 59.21220885470018}, {"YearMonth": "2023-05", "Category": "Vitamin C", "totalRevenue": 1942.84, "totalRevenueExVAT": 1619.17, "totalCost": 645.33, "totalQty": 156.0, "orderCount": 133, "uniqueProducts": 4, "margin": 973.84, "marginPct": 60.14439496779214}, {"YearMonth": "2023-05", "Category": "Vitamin D", "totalRevenue": 4067.62, "totalRevenueExVAT": 3388.9799999999996, "totalCost": 883.2, "totalQty": 412.0, "orderCount": 322, "uniqueProducts": 2, "margin": 2505.7799999999997, "marginPct": 73.9390613104828}, {"YearMonth": "2023-05", "Category": "Vitamin E", "totalRevenue": 405.65, "totalRevenueExVAT": 338.14000000000004, "totalCost": 158.08, "totalQty": 27.0, "orderCount": 26, "uniqueProducts": 1, "margin": 180.06000000000003, "marginPct": 53.25013308097238}, {"YearMonth": "2023-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 4243.7, "totalRevenueExVAT": 3536.21, "totalCost": 1307.8799999999999, "totalQty": 186.0, "orderCount": 150, "uniqueProducts": 2, "margin": 2228.33, "marginPct": 63.014639967648975}, {"YearMonth": "2023-06", "Category": "Amino Acids", "totalRevenue": 5092.099999999999, "totalRevenueExVAT": 4249.13, "totalCost": 1850.75, "totalQty": 335.0, "orderCount": 268, "uniqueProducts": 7, "margin": 2398.38, "marginPct": 56.44402501217897}, {"YearMonth": "2023-06", "Category": "Bone Health", "totalRevenue": 7237.23, "totalRevenueExVAT": 6031.37, "totalCost": 2141.0099999999998, "totalQty": 692.0, "orderCount": 551, "uniqueProducts": 5, "margin": 3890.36, "marginPct": 64.50209488059927}, {"YearMonth": "2023-06", "Category": "Cod Liver Oil", "totalRevenue": 1985.9, "totalRevenueExVAT": 1655.79, "totalCost": 795.15, "totalQty": 222.0, "orderCount": 169, "uniqueProducts": 2, "margin": 860.64, "marginPct": 51.97760585581504}, {"YearMonth": "2023-06", "Category": "Evening Primose Oils", "totalRevenue": 2953.99, "totalRevenueExVAT": 2464.47, "totalCost": 1185.4, "totalQty": 199.0, "orderCount": 175, "uniqueProducts": 3, "margin": 1279.0699999999997, "marginPct": 51.90040860712445}, {"YearMonth": "2023-06", "Category": "Glucosamine", "totalRevenue": 9489.52, "totalRevenueExVAT": 7911.37, "totalCost": 3701.3199999999997, "totalQty": 553.0, "orderCount": 453, "uniqueProducts": 10, "margin": 4210.05, "marginPct": 53.215182705397424}, {"YearMonth": "2023-06", "Category": "Herbal Supplements", "totalRevenue": 9840.14, "totalRevenueExVAT": 8204.75, "totalCost": 3748.4, "totalQty": 698.0, "orderCount": 551, "uniqueProducts": 15, "margin": 4456.35, "marginPct": 54.31426917334471}, {"YearMonth": "2023-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1583.81, "totalRevenueExVAT": 1319.5800000000002, "totalCost": 457.90000000000003, "totalQty": 123.0, "orderCount": 95, "uniqueProducts": 1, "margin": 861.6800000000001, "marginPct": 65.29956501311023}, {"YearMonth": "2023-06", "Category": "Minerals", "totalRevenue": 1597.23, "totalRevenueExVAT": 1332.08, "totalCost": 501.6, "totalQty": 208.0, "orderCount": 181, "uniqueProducts": 4, "margin": 830.4799999999999, "marginPct": 62.34460392769202}, {"YearMonth": "2023-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1365.1499999999999, "totalRevenueExVAT": 1138.01, "totalCost": 386.09999999999997, "totalQty": 77.0, "orderCount": 60, "uniqueProducts": 1, "margin": 751.9100000000001, "marginPct": 66.07235437298444}, {"YearMonth": "2023-06", "Category": "Multivitamins", "totalRevenue": 8302.13, "totalRevenueExVAT": 6920.400000000001, "totalCost": 3155.12, "totalQty": 738.0, "orderCount": 609, "uniqueProducts": 6, "margin": 3765.2800000000007, "marginPct": 54.408415698514546}, {"YearMonth": "2023-06", "Category": "Natural Co Q10", "totalRevenue": 8760.35, "totalRevenueExVAT": 7316.36, "totalCost": 3711.6399999999994, "totalQty": 285.0, "orderCount": 224, "uniqueProducts": 4, "margin": 3604.7200000000003, "marginPct": 49.26930878196262}, {"YearMonth": "2023-06", "Category": "Omega 3 Supplements", "totalRevenue": 6219.15, "totalRevenueExVAT": 5183.32, "totalCost": 2085.63, "totalQty": 461.0, "orderCount": 374, "uniqueProducts": 6, "margin": 3097.6899999999996, "marginPct": 59.76266176890487}, {"YearMonth": "2023-06", "Category": "Probiotics", "totalRevenue": 2660.45, "totalRevenueExVAT": 2217.08, "totalCost": 762.2, "totalQty": 131.0, "orderCount": 122, "uniqueProducts": 1, "margin": 1454.8799999999999, "marginPct": 65.62144803074314}, {"YearMonth": "2023-06", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 14226.3, "totalRevenueExVAT": 11855.68, "totalCost": 6127.63, "totalQty": 564.0, "orderCount": 502, "uniqueProducts": 1, "margin": 5728.05, "marginPct": 48.31481618937084}, {"YearMonth": "2023-06", "Category": "Vitamin B", "totalRevenue": 9105.02, "totalRevenueExVAT": 7591.06, "totalCost": 2970.17, "totalQty": 676.0, "orderCount": 594, "uniqueProducts": 12, "margin": 4620.89, "marginPct": 60.87278983435779}, {"YearMonth": "2023-06", "Category": "Vitamin C", "totalRevenue": 1944.9199999999998, "totalRevenueExVAT": 1622.3, "totalCost": 647.0, "totalQty": 158.0, "orderCount": 140, "uniqueProducts": 4, "margin": 975.3, "marginPct": 60.11835049004499}, {"YearMonth": "2023-06", "Category": "Vitamin D", "totalRevenue": 3144.8599999999997, "totalRevenueExVAT": 2620.16, "totalCost": 717.75, "totalQty": 309.0, "orderCount": 245, "uniqueProducts": 2, "margin": 1902.4099999999999, "marginPct": 72.60663470933073}, {"YearMonth": "2023-06", "Category": "Vitamin E", "totalRevenue": 308.84999999999997, "totalRevenueExVAT": 257.37, "totalCost": 115.17, "totalQty": 23.0, "orderCount": 21, "uniqueProducts": 1, "margin": 142.2, "marginPct": 55.25119477794615}, {"YearMonth": "2023-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 4031.0, "totalRevenueExVAT": 3359.0, "totalCost": 1242.46, "totalQty": 170.0, "orderCount": 148, "uniqueProducts": 2, "margin": 2116.54, "marginPct": 63.0110151830902}, {"YearMonth": "2023-07", "Category": "Amino Acids", "totalRevenue": 6308.16, "totalRevenueExVAT": 5257.21, "totalCost": 2423.83, "totalQty": 430.0, "orderCount": 357, "uniqueProducts": 7, "margin": 2833.38, "marginPct": 53.89512688289035}, {"YearMonth": "2023-07", "Category": "Bone Health", "totalRevenue": 9104.33, "totalRevenueExVAT": 7591.2, "totalCost": 3053.0499999999997, "totalQty": 881.0, "orderCount": 720, "uniqueProducts": 5, "margin": 4538.15, "marginPct": 59.78172094003583}, {"YearMonth": "2023-07", "Category": "Cod Liver Oil", "totalRevenue": 2293.0099999999998, "totalRevenueExVAT": 1912.1000000000001, "totalCost": 1001.81, "totalQty": 287.0, "orderCount": 222, "uniqueProducts": 2, "margin": 910.2900000000002, "marginPct": 47.60681972700173}, {"YearMonth": "2023-07", "Category": "Evening Primose Oils", "totalRevenue": 4507.67, "totalRevenueExVAT": 3755.79, "totalCost": 1909.66, "totalQty": 317.0, "orderCount": 276, "uniqueProducts": 3, "margin": 1846.1299999999999, "marginPct": 49.15423918802701}, {"YearMonth": "2023-07", "Category": "Glucosamine", "totalRevenue": 11547.12, "totalRevenueExVAT": 9621.86, "totalCost": 4804.21, "totalQty": 696.0, "orderCount": 538, "uniqueProducts": 10, "margin": 4817.650000000001, "marginPct": 50.06984096629966}, {"YearMonth": "2023-07", "Category": "Herbal Supplements", "totalRevenue": 12833.76, "totalRevenueExVAT": 10696.15, "totalCost": 5131.26, "totalQty": 950.0, "orderCount": 750, "uniqueProducts": 16, "margin": 5564.889999999999, "marginPct": 52.02703776592512}, {"YearMonth": "2023-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1922.96, "totalRevenueExVAT": 1602.24, "totalCost": 559.12, "totalQty": 144.0, "orderCount": 114, "uniqueProducts": 1, "margin": 1043.12, "marginPct": 65.103854603555}, {"YearMonth": "2023-07", "Category": "Minerals", "totalRevenue": 1773.61, "totalRevenueExVAT": 1477.85, "totalCost": 570.13, "totalQty": 238.0, "orderCount": 214, "uniqueProducts": 4, "margin": 907.7199999999999, "marginPct": 61.42165984369184}, {"YearMonth": "2023-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1643.82, "totalRevenueExVAT": 1369.54, "totalCost": 494.78, "totalQty": 106.0, "orderCount": 86, "uniqueProducts": 1, "margin": 874.76, "marginPct": 63.87254114520204}, {"YearMonth": "2023-07", "Category": "Multivitamins", "totalRevenue": 9508.68, "totalRevenueExVAT": 7929.12, "totalCost": 3995.4, "totalQty": 896.0, "orderCount": 732, "uniqueProducts": 6, "margin": 3933.72, "marginPct": 49.6110539378897}, {"YearMonth": "2023-07", "Category": "Natural Co Q10", "totalRevenue": 8721.800000000001, "totalRevenueExVAT": 7269.76, "totalCost": 3915.5399999999995, "totalQty": 287.0, "orderCount": 215, "uniqueProducts": 4, "margin": 3354.2200000000007, "marginPct": 46.13934985474074}, {"YearMonth": "2023-07", "Category": "Omega 3 Supplements", "totalRevenue": 8044.61, "totalRevenueExVAT": 6705.66, "totalCost": 3066.07, "totalQty": 620.0, "orderCount": 497, "uniqueProducts": 6, "margin": 3639.5899999999997, "marginPct": 54.27638741003869}, {"YearMonth": "2023-07", "Category": "Probiotics", "totalRevenue": 3248.88, "totalRevenueExVAT": 2707.25, "totalCost": 997.0400000000001, "totalQty": 174.0, "orderCount": 150, "uniqueProducts": 1, "margin": 1710.21, "marginPct": 63.171483978206666}, {"YearMonth": "2023-07", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15176.45, "totalRevenueExVAT": 12646.14, "totalCost": 7037.799999999999, "totalQty": 637.0, "orderCount": 553, "uniqueProducts": 1, "margin": 5608.34, "marginPct": 44.34823590439454}, {"YearMonth": "2023-07", "Category": "Vitamin B", "totalRevenue": 12944.25, "totalRevenueExVAT": 10785.66, "totalCost": 4436.83, "totalQty": 982.0, "orderCount": 856, "uniqueProducts": 12, "margin": 6348.83, "marginPct": 58.86362077054162}, {"YearMonth": "2023-07", "Category": "Vitamin C", "totalRevenue": 1828.53, "totalRevenueExVAT": 1523.6100000000001, "totalCost": 657.01, "totalQty": 163.0, "orderCount": 152, "uniqueProducts": 4, "margin": 866.6000000000001, "marginPct": 56.878072472614384}, {"YearMonth": "2023-07", "Category": "Vitamin D", "totalRevenue": 4087.15, "totalRevenueExVAT": 3404.8399999999997, "totalCost": 1060.29, "totalQty": 454.0, "orderCount": 351, "uniqueProducts": 2, "margin": 2344.5499999999997, "marginPct": 68.85932966013087}, {"YearMonth": "2023-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 5392.05, "totalRevenueExVAT": 4492.39, "totalCost": 1787.22, "totalQty": 239.0, "orderCount": 204, "uniqueProducts": 2, "margin": 2705.17, "marginPct": 60.21672205663356}, {"YearMonth": "2023-08", "Category": "Amino Acids", "totalRevenue": 4805.9, "totalRevenueExVAT": 4005.07, "totalCost": 1717.31, "totalQty": 325.0, "orderCount": 269, "uniqueProducts": 7, "margin": 2287.76, "marginPct": 57.12159837406088}, {"YearMonth": "2023-08", "Category": "Bone Health", "totalRevenue": 8083.61, "totalRevenueExVAT": 6736.88, "totalCost": 2524.22, "totalQty": 742.0, "orderCount": 602, "uniqueProducts": 5, "margin": 4212.66, "marginPct": 62.53132013632423}, {"YearMonth": "2023-08", "Category": "Cod Liver Oil", "totalRevenue": 1325.3, "totalRevenueExVAT": 1105.97, "totalCost": 552.4399999999999, "totalQty": 147.0, "orderCount": 112, "uniqueProducts": 2, "margin": 553.5300000000001, "marginPct": 50.049278009349266}, {"YearMonth": "2023-08", "Category": "Evening Primose Oils", "totalRevenue": 3283.39, "totalRevenueExVAT": 2738.19, "totalCost": 1275.53, "totalQty": 219.0, "orderCount": 195, "uniqueProducts": 3, "margin": 1462.66, "marginPct": 53.41703826250187}, {"YearMonth": "2023-08", "Category": "Glucosamine", "totalRevenue": 7566.24, "totalRevenueExVAT": 6308.68, "totalCost": 2897.72, "totalQty": 460.0, "orderCount": 379, "uniqueProducts": 10, "margin": 3410.9600000000005, "marginPct": 54.06772890683948}, {"YearMonth": "2023-08", "Category": "Herbal Supplements", "totalRevenue": 9832.8, "totalRevenueExVAT": 8194.58, "totalCost": 3786.9, "totalQty": 702.0, "orderCount": 561, "uniqueProducts": 14, "margin": 4407.68, "marginPct": 53.78774751115982}, {"YearMonth": "2023-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1369.6, "totalRevenueExVAT": 1141.3700000000001, "totalCost": 359.09000000000003, "totalQty": 92.0, "orderCount": 78, "uniqueProducts": 1, "margin": 782.2800000000001, "marginPct": 68.5386859651121}, {"YearMonth": "2023-08", "Category": "Minerals", "totalRevenue": 1484.85, "totalRevenueExVAT": 1237.47, "totalCost": 438.6, "totalQty": 190.0, "orderCount": 172, "uniqueProducts": 4, "margin": 798.87, "marginPct": 64.55671652646124}, {"YearMonth": "2023-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1396.47, "totalRevenueExVAT": 1164.01, "totalCost": 411.84, "totalQty": 88.0, "orderCount": 74, "uniqueProducts": 1, "margin": 752.1700000000001, "marginPct": 64.61886066270908}, {"YearMonth": "2023-08", "Category": "Multivitamins", "totalRevenue": 7076.92, "totalRevenueExVAT": 5902.150000000001, "totalCost": 2718.32, "totalQty": 632.0, "orderCount": 530, "uniqueProducts": 6, "margin": 3183.8300000000004, "marginPct": 53.943562938929034}, {"YearMonth": "2023-08", "Category": "Natural Co Q10", "totalRevenue": 4989.7300000000005, "totalRevenueExVAT": 4157.92, "totalCost": 2072.98, "totalQty": 174.0, "orderCount": 145, "uniqueProducts": 5, "margin": 2084.94, "marginPct": 50.14382191095548}, {"YearMonth": "2023-08", "Category": "Omega 3 Supplements", "totalRevenue": 5160.47, "totalRevenueExVAT": 4299.65, "totalCost": 1813.54, "totalQty": 384.0, "orderCount": 320, "uniqueProducts": 6, "margin": 2486.1099999999997, "marginPct": 57.82121800611677}, {"YearMonth": "2023-08", "Category": "Probiotics", "totalRevenue": 2119.85, "totalRevenueExVAT": 1766.54, "totalCost": 613.88, "totalQty": 104.0, "orderCount": 98, "uniqueProducts": 1, "margin": 1152.6599999999999, "marginPct": 65.24958393243288}, {"YearMonth": "2023-08", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11298.710000000001, "totalRevenueExVAT": 9419.09, "totalCost": 4605.95, "totalQty": 426.0, "orderCount": 381, "uniqueProducts": 1, "margin": 4813.14, "marginPct": 51.09984085511445}, {"YearMonth": "2023-08", "Category": "Vitamin B", "totalRevenue": 8563.51, "totalRevenueExVAT": 7140.55, "totalCost": 2787.32, "totalQty": 590.0, "orderCount": 526, "uniqueProducts": 11, "margin": 4353.23, "marginPct": 60.96491166646826}, {"YearMonth": "2023-08", "Category": "Vitamin C", "totalRevenue": 1704.25, "totalRevenueExVAT": 1420.32, "totalCost": 565.9, "totalQty": 143.0, "orderCount": 132, "uniqueProducts": 4, "margin": 854.42, "marginPct": 60.156866058353046}, {"YearMonth": "2023-08", "Category": "Vitamin D", "totalRevenue": 2067.8199999999997, "totalRevenueExVAT": 1722.79, "totalCost": 573.3, "totalQty": 220.0, "orderCount": 178, "uniqueProducts": 2, "margin": 1149.49, "marginPct": 66.72258371594914}, {"YearMonth": "2023-08", "Category": "Vitamin E", "totalRevenue": 460.9, "totalRevenueExVAT": 384.18, "totalCost": 228.24, "totalQty": 23.0, "orderCount": 23, "uniqueProducts": 1, "margin": 155.94, "marginPct": 40.590348274246445}, {"YearMonth": "2023-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 3205.7, "totalRevenueExVAT": 2671.24, "totalCost": 992.42, "totalQty": 135.0, "orderCount": 124, "uniqueProducts": 2, "margin": 1678.8199999999997, "marginPct": 62.84796573875803}, {"YearMonth": "2023-09", "Category": "Amino Acids", "totalRevenue": 6021.13, "totalRevenueExVAT": 5037.81, "totalCost": 2132.71, "totalQty": 382.0, "orderCount": 291, "uniqueProducts": 8, "margin": 2905.1000000000004, "marginPct": 57.665930235558704}, {"YearMonth": "2023-09", "Category": "Bone Health", "totalRevenue": 8957.73, "totalRevenueExVAT": 7468.9400000000005, "totalCost": 2737.66, "totalQty": 800.0, "orderCount": 645, "uniqueProducts": 5, "margin": 4731.280000000001, "marginPct": 63.346070526741414}, {"YearMonth": "2023-09", "Category": "Cod Liver Oil", "totalRevenue": 1851.6, "totalRevenueExVAT": 1542.79, "totalCost": 732.3000000000001, "totalQty": 190.0, "orderCount": 157, "uniqueProducts": 2, "margin": 810.4899999999999, "marginPct": 52.5340454630896}, {"YearMonth": "2023-09", "Category": "Evening Primose Oils", "totalRevenue": 2969.5299999999997, "totalRevenueExVAT": 2476.12, "totalCost": 1146.38, "totalQty": 186.0, "orderCount": 164, "uniqueProducts": 3, "margin": 1329.7399999999998, "marginPct": 53.702566919212316}, {"YearMonth": "2023-09", "Category": "Glucosamine", "totalRevenue": 9387.47, "totalRevenueExVAT": 7839.8, "totalCost": 3602.8399999999997, "totalQty": 541.0, "orderCount": 429, "uniqueProducts": 10, "margin": 4236.960000000001, "marginPct": 54.044235822342415}, {"YearMonth": "2023-09", "Category": "Herbal Supplements", "totalRevenue": 10501.34, "totalRevenueExVAT": 8760.92, "totalCost": 3890.25, "totalQty": 678.0, "orderCount": 548, "uniqueProducts": 15, "margin": 4870.67, "marginPct": 55.59541691968424}, {"YearMonth": "2023-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1536.85, "totalRevenueExVAT": 1280.75, "totalCost": 402.47, "totalQty": 103.0, "orderCount": 81, "uniqueProducts": 1, "margin": 878.28, "marginPct": 68.57544407573687}, {"YearMonth": "2023-09", "Category": "Minerals", "totalRevenue": 1322.82, "totalRevenueExVAT": 1104.1, "totalCost": 395.91, "totalQty": 168.0, "orderCount": 147, "uniqueProducts": 4, "margin": 708.1899999999998, "marginPct": 64.14183497871568}, {"YearMonth": "2023-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1277.06, "totalRevenueExVAT": 1069.28, "totalCost": 368.94, "totalQty": 79.0, "orderCount": 65, "uniqueProducts": 1, "margin": 700.3399999999999, "marginPct": 65.49640879844381}, {"YearMonth": "2023-09", "Category": "Multivitamins", "totalRevenue": 8141.379999999999, "totalRevenueExVAT": 6788.83, "totalCost": 2932.82, "totalQty": 762.0, "orderCount": 591, "uniqueProducts": 6, "margin": 3856.0099999999998, "marginPct": 56.79933066522508}, {"YearMonth": "2023-09", "Category": "Natural Co Q10", "totalRevenue": 5851.320000000001, "totalRevenueExVAT": 4894.37, "totalCost": 2421.6, "totalQty": 197.0, "orderCount": 151, "uniqueProducts": 4, "margin": 2472.77, "marginPct": 50.52274347873169}, {"YearMonth": "2023-09", "Category": "Omega 3 Supplements", "totalRevenue": 7145.09, "totalRevenueExVAT": 5959.08, "totalCost": 2521.4, "totalQty": 539.0, "orderCount": 441, "uniqueProducts": 6, "margin": 3437.68, "marginPct": 57.688099505292755}, {"YearMonth": "2023-09", "Category": "Probiotics", "totalRevenue": 2643.7799999999997, "totalRevenueExVAT": 2203.15, "totalCost": 766.32, "totalQty": 127.0, "orderCount": 117, "uniqueProducts": 1, "margin": 1436.83, "marginPct": 65.21707555091572}, {"YearMonth": "2023-09", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 14443.95, "totalRevenueExVAT": 12040.19, "totalCost": 5873.95, "totalQty": 537.0, "orderCount": 477, "uniqueProducts": 1, "margin": 6166.240000000001, "marginPct": 51.213809748849485}, {"YearMonth": "2023-09", "Category": "Vitamin B", "totalRevenue": 9486.08, "totalRevenueExVAT": 7913.62, "totalCost": 2965.61, "totalQty": 647.0, "orderCount": 575, "uniqueProducts": 11, "margin": 4948.01, "marginPct": 62.525241292859654}, {"YearMonth": "2023-09", "Category": "Vitamin C", "totalRevenue": 2413.69, "totalRevenueExVAT": 2015.28, "totalCost": 823.97, "totalQty": 186.0, "orderCount": 155, "uniqueProducts": 4, "margin": 1191.31, "marginPct": 59.11387003294827}, {"YearMonth": "2023-09", "Category": "Vitamin D", "totalRevenue": 3590.0099999999998, "totalRevenueExVAT": 2991.06, "totalCost": 955.4499999999999, "totalQty": 370.0, "orderCount": 283, "uniqueProducts": 2, "margin": 2035.6100000000001, "marginPct": 68.0564749620536}, {"YearMonth": "2023-09", "Category": "Vitamin E", "totalRevenue": 958.13, "totalRevenueExVAT": 800.86, "totalCost": 375.82, "totalQty": 43.0, "orderCount": 42, "uniqueProducts": 2, "margin": 425.04, "marginPct": 53.072946582423896}, {"YearMonth": "2023-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 6255.77, "totalRevenueExVAT": 5214.35, "totalCost": 1931.84, "totalQty": 254.0, "orderCount": 222, "uniqueProducts": 2, "margin": 3282.51, "marginPct": 62.951470461323076}, {"YearMonth": "2023-10", "Category": "Amino Acids", "totalRevenue": 6040.599999999999, "totalRevenueExVAT": 5049.099999999999, "totalCost": 2099.91, "totalQty": 382.0, "orderCount": 303, "uniqueProducts": 7, "margin": 2949.1899999999996, "marginPct": 58.41021172090075}, {"YearMonth": "2023-10", "Category": "Bone Health", "totalRevenue": 10869.31, "totalRevenueExVAT": 9063.26, "totalCost": 3308.44, "totalQty": 953.0, "orderCount": 744, "uniqueProducts": 5, "margin": 5754.82, "marginPct": 63.49613715153267}, {"YearMonth": "2023-10", "Category": "Cod Liver Oil", "totalRevenue": 2195.13, "totalRevenueExVAT": 1829.44, "totalCost": 816.45, "totalQty": 219.0, "orderCount": 184, "uniqueProducts": 2, "margin": 1012.99, "marginPct": 55.37158912016792}, {"YearMonth": "2023-10", "Category": "Evening Primose Oils", "totalRevenue": 3037.71, "totalRevenueExVAT": 2531.48, "totalCost": 1147.0, "totalQty": 196.0, "orderCount": 172, "uniqueProducts": 3, "margin": 1384.48, "marginPct": 54.690536761104184}, {"YearMonth": "2023-10", "Category": "Glucosamine", "totalRevenue": 9506.76, "totalRevenueExVAT": 7925.38, "totalCost": 3559.2599999999998, "totalQty": 525.0, "orderCount": 443, "uniqueProducts": 10, "margin": 4366.120000000001, "marginPct": 55.09035528895776}, {"YearMonth": "2023-10", "Category": "Herbal Supplements", "totalRevenue": 11664.08, "totalRevenueExVAT": 9727.880000000001, "totalCost": 4072.92, "totalQty": 824.0, "orderCount": 654, "uniqueProducts": 17, "margin": 5654.960000000001, "marginPct": 58.13147366127049}, {"YearMonth": "2023-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1363.84, "totalRevenueExVAT": 1136.65, "totalCost": 344.63, "totalQty": 92.0, "orderCount": 80, "uniqueProducts": 1, "margin": 792.0200000000001, "marginPct": 69.68020058945146}, {"YearMonth": "2023-10", "Category": "Minerals", "totalRevenue": 1591.42, "totalRevenueExVAT": 1326.57, "totalCost": 480.47, "totalQty": 195.0, "orderCount": 167, "uniqueProducts": 4, "margin": 846.0999999999999, "marginPct": 63.78102927097703}, {"YearMonth": "2023-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2332.2599999999998, "totalRevenueExVAT": 1945.75, "totalCost": 666.38, "totalQty": 139.0, "orderCount": 100, "uniqueProducts": 1, "margin": 1279.37, "marginPct": 65.75202364126943}, {"YearMonth": "2023-10", "Category": "Multivitamins", "totalRevenue": 8830.27, "totalRevenueExVAT": 7363.41, "totalCost": 3086.7999999999997, "totalQty": 830.0, "orderCount": 620, "uniqueProducts": 6, "margin": 4276.610000000001, "marginPct": 58.0792051508744}, {"YearMonth": "2023-10", "Category": "Natural Co Q10", "totalRevenue": 7492.26, "totalRevenueExVAT": 6249.34, "totalCost": 3006.89, "totalQty": 273.0, "orderCount": 205, "uniqueProducts": 4, "margin": 3242.4500000000003, "marginPct": 51.88467902210474}, {"YearMonth": "2023-10", "Category": "Omega 3 Supplements", "totalRevenue": 7155.179999999999, "totalRevenueExVAT": 5963.61, "totalCost": 2486.77, "totalQty": 504.0, "orderCount": 420, "uniqueProducts": 6, "margin": 3476.8399999999997, "marginPct": 58.300928464470346}, {"YearMonth": "2023-10", "Category": "Probiotics", "totalRevenue": 2713.9, "totalRevenueExVAT": 2261.7000000000003, "totalCost": 865.2, "totalQty": 150.0, "orderCount": 138, "uniqueProducts": 1, "margin": 1396.5000000000002, "marginPct": 61.74558960074281}, {"YearMonth": "2023-10", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16151.44, "totalRevenueExVAT": 13458.4, "totalCost": 6627.849999999999, "totalQty": 593.0, "orderCount": 539, "uniqueProducts": 1, "margin": 6830.55, "marginPct": 50.75306128514534}, {"YearMonth": "2023-10", "Category": "Vitamin B", "totalRevenue": 9436.48, "totalRevenueExVAT": 7873.36, "totalCost": 2890.23, "totalQty": 662.0, "orderCount": 595, "uniqueProducts": 11, "margin": 4983.129999999999, "marginPct": 63.291021876301855}, {"YearMonth": "2023-10", "Category": "Vitamin C", "totalRevenue": 2213.8199999999997, "totalRevenueExVAT": 1846.36, "totalCost": 754.63, "totalQty": 191.0, "orderCount": 175, "uniqueProducts": 4, "margin": 1091.73, "marginPct": 59.12877228709461}, {"YearMonth": "2023-10", "Category": "Vitamin D", "totalRevenue": 3419.92, "totalRevenueExVAT": 2850.35, "totalCost": 942.7299999999999, "totalQty": 368.0, "orderCount": 299, "uniqueProducts": 2, "margin": 1907.62, "marginPct": 66.92581612784394}, {"YearMonth": "2023-10", "Category": "Vitamin E", "totalRevenue": 765.54, "totalRevenueExVAT": 640.63, "totalCost": 260.84, "totalQty": 28.0, "orderCount": 27, "uniqueProducts": 2, "margin": 379.79, "marginPct": 59.283829979863576}, {"YearMonth": "2023-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 3468.58, "totalRevenueExVAT": 2897.0, "totalCost": 1098.28, "totalQty": 153.0, "orderCount": 139, "uniqueProducts": 2, "margin": 1798.72, "marginPct": 62.089057645840526}, {"YearMonth": "2023-11", "Category": "Amino Acids", "totalRevenue": 4437.57, "totalRevenueExVAT": 3705.41, "totalCost": 1564.94, "totalQty": 285.0, "orderCount": 234, "uniqueProducts": 7, "margin": 2140.47, "marginPct": 57.766077168248586}, {"YearMonth": "2023-11", "Category": "Bone Health", "totalRevenue": 8383.01, "totalRevenueExVAT": 6990.07, "totalCost": 2470.7599999999998, "totalQty": 775.0, "orderCount": 629, "uniqueProducts": 5, "margin": 4519.3099999999995, "marginPct": 64.65328673389537}, {"YearMonth": "2023-11", "Category": "Cod Liver Oil", "totalRevenue": 2088.33, "totalRevenueExVAT": 1740.42, "totalCost": 726.15, "totalQty": 178.0, "orderCount": 154, "uniqueProducts": 2, "margin": 1014.2700000000001, "marginPct": 58.277312372875514}, {"YearMonth": "2023-11", "Category": "Evening Primose Oils", "totalRevenue": 3158.24, "totalRevenueExVAT": 2632.66, "totalCost": 1138.42, "totalQty": 182.0, "orderCount": 160, "uniqueProducts": 3, "margin": 1494.2399999999998, "marginPct": 56.757803894160276}, {"YearMonth": "2023-11", "Category": "Glucosamine", "totalRevenue": 7238.01, "totalRevenueExVAT": 6028.93, "totalCost": 2669.79, "totalQty": 433.0, "orderCount": 355, "uniqueProducts": 9, "margin": 3359.1400000000003, "marginPct": 55.71701777927427}, {"YearMonth": "2023-11", "Category": "Herbal Supplements", "totalRevenue": 9858.5, "totalRevenueExVAT": 8225.94, "totalCost": 3492.2999999999997, "totalQty": 655.0, "orderCount": 517, "uniqueProducts": 16, "margin": 4733.640000000001, "marginPct": 57.5452775002006}, {"YearMonth": "2023-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1213.46, "totalRevenueExVAT": 1010.74, "totalCost": 296.43, "totalQty": 77.0, "orderCount": 70, "uniqueProducts": 1, "margin": 714.31, "marginPct": 70.67198290361517}, {"YearMonth": "2023-11", "Category": "Minerals", "totalRevenue": 1386.59, "totalRevenueExVAT": 1155.62, "totalCost": 417.46, "totalQty": 174.0, "orderCount": 150, "uniqueProducts": 4, "margin": 738.1599999999999, "marginPct": 63.87566847233519}, {"YearMonth": "2023-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1772.3999999999999, "totalRevenueExVAT": 1477.83, "totalCost": 503.35999999999996, "totalQty": 110.0, "orderCount": 85, "uniqueProducts": 1, "margin": 974.47, "marginPct": 65.93924876338957}, {"YearMonth": "2023-11", "Category": "Multivitamins", "totalRevenue": 9262.19, "totalRevenueExVAT": 7728.49, "totalCost": 3173.62, "totalQty": 825.0, "orderCount": 600, "uniqueProducts": 6, "margin": 4554.87, "marginPct": 58.93609230263609}, {"YearMonth": "2023-11", "Category": "Natural Co Q10", "totalRevenue": 6955.71, "totalRevenueExVAT": 5802.81, "totalCost": 2824.5, "totalQty": 240.0, "orderCount": 170, "uniqueProducts": 4, "margin": 2978.3100000000004, "marginPct": 51.325306187864165}, {"YearMonth": "2023-11", "Category": "Omega 3 Supplements", "totalRevenue": 6977.639999999999, "totalRevenueExVAT": 5816.3, "totalCost": 2318.85, "totalQty": 459.0, "orderCount": 385, "uniqueProducts": 6, "margin": 3497.4500000000003, "marginPct": 60.13187077695442}, {"YearMonth": "2023-11", "Category": "Probiotics", "totalRevenue": 2386.74, "totalRevenueExVAT": 1989.39, "totalCost": 766.32, "totalQty": 133.0, "orderCount": 125, "uniqueProducts": 1, "margin": 1223.0700000000002, "marginPct": 61.479649540814016}, {"YearMonth": "2023-11", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15289.210000000001, "totalRevenueExVAT": 12742.66, "totalCost": 6263.0, "totalQty": 562.0, "orderCount": 506, "uniqueProducts": 1, "margin": 6479.66, "marginPct": 50.85013647072118}, {"YearMonth": "2023-11", "Category": "Vitamin B", "totalRevenue": 9161.119999999999, "totalRevenueExVAT": 7637.12, "totalCost": 2772.11, "totalQty": 578.0, "orderCount": 488, "uniqueProducts": 10, "margin": 4865.01, "marginPct": 63.702154738959194}, {"YearMonth": "2023-11", "Category": "Vitamin C", "totalRevenue": 2276.84, "totalRevenueExVAT": 1898.17, "totalCost": 830.88, "totalQty": 193.0, "orderCount": 167, "uniqueProducts": 4, "margin": 1067.29, "marginPct": 56.227313675803536}, {"YearMonth": "2023-11", "Category": "Vitamin D", "totalRevenue": 2833.5, "totalRevenueExVAT": 2360.45, "totalCost": 807.54, "totalQty": 310.0, "orderCount": 232, "uniqueProducts": 2, "margin": 1552.9099999999999, "marginPct": 65.78872672583617}, {"YearMonth": "2023-11", "Category": "Vitamin E", "totalRevenue": 651.87, "totalRevenueExVAT": 542.51, "totalCost": 215.57999999999998, "totalQty": 22.0, "orderCount": 21, "uniqueProducts": 2, "margin": 326.93, "marginPct": 60.26248364085455}, {"YearMonth": "2023-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 4108.4204, "totalRevenueExVAT": 3425.142, "totalCost": 1292.86, "totalQty": 178.0, "orderCount": 147, "uniqueProducts": 2, "margin": 2132.282, "marginPct": 62.253827724514785}, {"YearMonth": "2023-12", "Category": "Amino Acids", "totalRevenue": 4396.349999999999, "totalRevenueExVAT": 3670.02, "totalCost": 1554.32, "totalQty": 274.0, "orderCount": 231, "uniqueProducts": 7, "margin": 2115.7, "marginPct": 57.64818720333948}, {"YearMonth": "2023-12", "Category": "Bone Health", "totalRevenue": 5431.03, "totalRevenueExVAT": 4527.04, "totalCost": 1673.61, "totalQty": 546.0, "orderCount": 447, "uniqueProducts": 5, "margin": 2853.4300000000003, "marginPct": 63.030810419170145}, {"YearMonth": "2023-12", "Category": "Cod Liver Oil", "totalRevenue": 2069.65, "totalRevenueExVAT": 1724.94, "totalCost": 745.9, "totalQty": 190.0, "orderCount": 154, "uniqueProducts": 2, "margin": 979.0400000000001, "marginPct": 56.75791621737568}, {"YearMonth": "2023-12", "Category": "Evening Primose Oils", "totalRevenue": 2212.7599999999998, "totalRevenueExVAT": 1844.18, "totalCost": 842.84, "totalQty": 131.0, "orderCount": 116, "uniqueProducts": 3, "margin": 1001.34, "marginPct": 54.29730286631457}, {"YearMonth": "2023-12", "Category": "Glucosamine", "totalRevenue": 9172.64, "totalRevenueExVAT": 7650.1, "totalCost": 3624.12, "totalQty": 490.0, "orderCount": 397, "uniqueProducts": 9, "margin": 4025.9800000000005, "marginPct": 52.62650161435799}, {"YearMonth": "2023-12", "Category": "Herbal Supplements", "totalRevenue": 10532.4704, "totalRevenueExVAT": 8780.522, "totalCost": 3969.46, "totalQty": 714.0, "orderCount": 551, "uniqueProducts": 16, "margin": 4811.062000000001, "marginPct": 54.792437169453024}, {"YearMonth": "2023-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1768.23, "totalRevenueExVAT": 1473.05, "totalCost": 445.85, "totalQty": 114.0, "orderCount": 94, "uniqueProducts": 1, "margin": 1027.1999999999998, "marginPct": 69.7328671803401}, {"YearMonth": "2023-12", "Category": "Minerals", "totalRevenue": 1212.49, "totalRevenueExVAT": 1009.8199999999999, "totalCost": 394.17, "totalQty": 159.0, "orderCount": 140, "uniqueProducts": 4, "margin": 615.6499999999999, "marginPct": 60.96631082767225}, {"YearMonth": "2023-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1406.72, "totalRevenueExVAT": 1173.9, "totalCost": 411.84, "totalQty": 83.0, "orderCount": 60, "uniqueProducts": 1, "margin": 762.0600000000002, "marginPct": 64.91694352159469}, {"YearMonth": "2023-12", "Category": "Multivitamins", "totalRevenue": 8645.41, "totalRevenueExVAT": 7204.56, "totalCost": 3132.02, "totalQty": 745.0, "orderCount": 565, "uniqueProducts": 6, "margin": 4072.5400000000004, "marginPct": 56.527254960747086}, {"YearMonth": "2023-12", "Category": "Natural Co Q10", "totalRevenue": 6011.58, "totalRevenueExVAT": 5026.7, "totalCost": 2606.3999999999996, "totalQty": 219.0, "orderCount": 173, "uniqueProducts": 4, "margin": 2420.3, "marginPct": 48.148884954343806}, {"YearMonth": "2023-12", "Category": "Omega 3 Supplements", "totalRevenue": 6097.67, "totalRevenueExVAT": 5085.38, "totalCost": 2209.22, "totalQty": 431.0, "orderCount": 347, "uniqueProducts": 6, "margin": 2876.1600000000003, "marginPct": 56.55742540380464}, {"YearMonth": "2023-12", "Category": "Probiotics", "totalRevenue": 2335.49, "totalRevenueExVAT": 1949.3200000000002, "totalCost": 758.08, "totalQty": 130.0, "orderCount": 114, "uniqueProducts": 1, "margin": 1191.2400000000002, "marginPct": 61.11054111177232}, {"YearMonth": "2023-12", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 13691.78, "totalRevenueExVAT": 11422.57, "totalCost": 5831.25, "totalQty": 530.0, "orderCount": 469, "uniqueProducts": 1, "margin": 5591.32, "marginPct": 48.94975473995782}, {"YearMonth": "2023-12", "Category": "Vitamin B", "totalRevenue": 7575.42, "totalRevenueExVAT": 6320.4, "totalCost": 2385.61, "totalQty": 513.0, "orderCount": 438, "uniqueProducts": 10, "margin": 3934.7899999999995, "marginPct": 62.255395228150114}, {"YearMonth": "2023-12", "Category": "Vitamin C", "totalRevenue": 1987.37, "totalRevenueExVAT": 1659.51, "totalCost": 735.5600000000001, "totalQty": 169.0, "orderCount": 151, "uniqueProducts": 4, "margin": 923.9499999999999, "marginPct": 55.67607305770981}, {"YearMonth": "2023-12", "Category": "Vitamin D", "totalRevenue": 2900.75, "totalRevenueExVAT": 2420.34, "totalCost": 818.8499999999999, "totalQty": 328.0, "orderCount": 253, "uniqueProducts": 3, "margin": 1601.4900000000002, "marginPct": 66.16797640000992}, {"YearMonth": "2023-12", "Category": "Vitamin E", "totalRevenue": 656.56, "totalRevenueExVAT": 547.22, "totalCost": 218.72, "totalQty": 22.0, "orderCount": 21, "uniqueProducts": 2, "margin": 328.5, "marginPct": 60.03070063228682}, {"YearMonth": "2023-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 4167.12, "totalRevenueExVAT": 3485.15, "totalCost": 1343.08, "totalQty": 177.0, "orderCount": 155, "uniqueProducts": 2, "margin": 2142.07, "marginPct": 61.4627777857481}, {"YearMonth": "2024-01", "Category": "Amino Acids", "totalRevenue": 7134.65, "totalRevenueExVAT": 5949.6, "totalCost": 2902.38, "totalQty": 482.0, "orderCount": 377, "uniqueProducts": 7, "margin": 3047.2200000000003, "marginPct": 51.21722468737394}, {"YearMonth": "2024-01", "Category": "Bone Health", "totalRevenue": 11727.8065, "totalRevenueExVAT": 9789.34875, "totalCost": 4206.84, "totalQty": 1206.0, "orderCount": 884, "uniqueProducts": 5, "margin": 5582.508749999999, "marginPct": 57.026354791987565}, {"YearMonth": "2024-01", "Category": "Cod Liver Oil", "totalRevenue": 3163.8900000000003, "totalRevenueExVAT": 2635.98, "totalCost": 1295.3999999999999, "totalQty": 314.0, "orderCount": 255, "uniqueProducts": 2, "margin": 1340.5800000000002, "marginPct": 50.85698677531697}, {"YearMonth": "2024-01", "Category": "Evening Primose Oils", "totalRevenue": 3934.79, "totalRevenueExVAT": 3280.21, "totalCost": 1678.3, "totalQty": 257.0, "orderCount": 234, "uniqueProducts": 3, "margin": 1601.91, "marginPct": 48.83559284314114}, {"YearMonth": "2024-01", "Category": "Glucosamine", "totalRevenue": 12326.79, "totalRevenueExVAT": 10270.720000000001, "totalCost": 5383.4, "totalQty": 728.0, "orderCount": 578, "uniqueProducts": 9, "margin": 4887.3200000000015, "marginPct": 47.58497943668994}, {"YearMonth": "2024-01", "Category": "Herbal Supplements", "totalRevenue": 15684.67, "totalRevenueExVAT": 13080.460000000001, "totalCost": 6561.4800000000005, "totalQty": 1159.0, "orderCount": 873, "uniqueProducts": 16, "margin": 6518.9800000000005, "marginPct": 49.83754393958622}, {"YearMonth": "2024-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2110.78, "totalRevenueExVAT": 1758.65, "totalCost": 600.09, "totalQty": 147.0, "orderCount": 122, "uniqueProducts": 1, "margin": 1158.56, "marginPct": 65.87780399738435}, {"YearMonth": "2024-01", "Category": "Minerals", "totalRevenue": 1797.49, "totalRevenueExVAT": 1497.04, "totalCost": 636.44, "totalQty": 251.0, "orderCount": 218, "uniqueProducts": 4, "margin": 860.5999999999999, "marginPct": 57.48677390049698}, {"YearMonth": "2024-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2261.9300000000003, "totalRevenueExVAT": 1884.66, "totalCost": 752.18, "totalQty": 159.0, "orderCount": 122, "uniqueProducts": 1, "margin": 1132.48, "marginPct": 60.08935298674562}, {"YearMonth": "2024-01", "Category": "Multivitamins", "totalRevenue": 12493.84, "totalRevenueExVAT": 10412.6, "totalCost": 4978.86, "totalQty": 1129.0, "orderCount": 880, "uniqueProducts": 6, "margin": 5433.740000000001, "marginPct": 52.18427674163995}, {"YearMonth": "2024-01", "Category": "Natural Co Q10", "totalRevenue": 10047.23, "totalRevenueExVAT": 8371.37, "totalCost": 4716.2, "totalQty": 406.0, "orderCount": 271, "uniqueProducts": 4, "margin": 3655.170000000001, "marginPct": 43.662745763238284}, {"YearMonth": "2024-01", "Category": "Omega 3 Supplements", "totalRevenue": 9438.55, "totalRevenueExVAT": 7865.66, "totalCost": 3830.2599999999998, "totalQty": 757.0, "orderCount": 572, "uniqueProducts": 6, "margin": 4035.4, "marginPct": 51.304022802918006}, {"YearMonth": "2024-01", "Category": "Probiotics", "totalRevenue": 3459.07, "totalRevenueExVAT": 2886.44, "totalCost": 1170.08, "totalQty": 197.0, "orderCount": 183, "uniqueProducts": 1, "margin": 1716.3600000000001, "marginPct": 59.462867754049974}, {"YearMonth": "2024-01", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 21308.38, "totalRevenueExVAT": 17769.47, "totalCost": 10100.1, "totalQty": 878.0, "orderCount": 725, "uniqueProducts": 1, "margin": 7669.370000000001, "marginPct": 43.160375633038015}, {"YearMonth": "2024-01", "Category": "Vitamin B", "totalRevenue": 11552.87, "totalRevenueExVAT": 9631.09, "totalCost": 4164.6, "totalQty": 861.0, "orderCount": 725, "uniqueProducts": 10, "margin": 5466.49, "marginPct": 56.75878846527236}, {"YearMonth": "2024-01", "Category": "Vitamin C", "totalRevenue": 2754.55, "totalRevenueExVAT": 2294.92, "totalCost": 1134.47, "totalQty": 256.0, "orderCount": 215, "uniqueProducts": 4, "margin": 1160.45, "marginPct": 50.566032802886376}, {"YearMonth": "2024-01", "Category": "Vitamin D", "totalRevenue": 3742.4900000000002, "totalRevenueExVAT": 3118.58, "totalCost": 1101.74, "totalQty": 451.0, "orderCount": 356, "uniqueProducts": 3, "margin": 2016.84, "marginPct": 64.67174162599645}, {"YearMonth": "2024-01", "Category": "Vitamin E", "totalRevenue": 1176.1000000000001, "totalRevenueExVAT": 980.1400000000001, "totalCost": 464.3, "totalQty": 51.0, "orderCount": 44, "uniqueProducts": 2, "margin": 515.8400000000001, "marginPct": 52.6292162344155}, {"YearMonth": "2024-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 5859.76, "totalRevenueExVAT": 4900.09, "totalCost": 2153.04, "totalQty": 281.0, "orderCount": 238, "uniqueProducts": 2, "margin": 2747.05, "marginPct": 56.061215202169755}, {"YearMonth": "2024-02", "Category": "Amino Acids", "totalRevenue": 3279.72, "totalRevenueExVAT": 2730.82, "totalCost": 1131.68, "totalQty": 205.0, "orderCount": 178, "uniqueProducts": 7, "margin": 1599.14, "marginPct": 58.55896763609465}, {"YearMonth": "2024-02", "Category": "Bone Health", "totalRevenue": 6631.5199999999995, "totalRevenueExVAT": 5532.08, "totalCost": 2078.12, "totalQty": 575.0, "orderCount": 464, "uniqueProducts": 5, "margin": 3453.96, "marginPct": 62.43510578299664}, {"YearMonth": "2024-02", "Category": "Cod Liver Oil", "totalRevenue": 1438.5, "totalRevenueExVAT": 1199.95, "totalCost": 497.54999999999995, "totalQty": 134.0, "orderCount": 105, "uniqueProducts": 2, "margin": 702.4000000000001, "marginPct": 58.535772323846835}, {"YearMonth": "2024-02", "Category": "Evening Primose Oils", "totalRevenue": 1922.4099999999999, "totalRevenueExVAT": 1601.73, "totalCost": 698.5, "totalQty": 119.0, "orderCount": 112, "uniqueProducts": 3, "margin": 903.23, "marginPct": 56.39090233684828}, {"YearMonth": "2024-02", "Category": "Glucosamine", "totalRevenue": 6375.63, "totalRevenueExVAT": 5315.51, "totalCost": 2400.7999999999997, "totalQty": 360.0, "orderCount": 303, "uniqueProducts": 9, "margin": 2914.7100000000005, "marginPct": 54.83406107786459}, {"YearMonth": "2024-02", "Category": "Herbal Supplements", "totalRevenue": 7971.66, "totalRevenueExVAT": 6639.880003, "totalCost": 2890.41, "totalQty": 508.0, "orderCount": 408, "uniqueProducts": 16, "margin": 3749.4700030000004, "marginPct": 56.468942229466975}, {"YearMonth": "2024-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1059.16, "totalRevenueExVAT": 882.48, "totalCost": 298.84000000000003, "totalQty": 76.0, "orderCount": 61, "uniqueProducts": 1, "margin": 583.64, "marginPct": 66.13634303326987}, {"YearMonth": "2024-02", "Category": "Minerals", "totalRevenue": 1180.48, "totalRevenueExVAT": 983.74, "totalCost": 359.74, "totalQty": 135.0, "orderCount": 124, "uniqueProducts": 4, "margin": 624.0, "marginPct": 63.43139447414967}, {"YearMonth": "2024-02", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1008.6999999999999, "totalRevenueExVAT": 842.23, "totalCost": 291.71999999999997, "totalQty": 66.0, "orderCount": 57, "uniqueProducts": 1, "margin": 550.51, "marginPct": 65.36338054925614}, {"YearMonth": "2024-02", "Category": "Multivitamins", "totalRevenue": 6864.59, "totalRevenueExVAT": 5723.21, "totalCost": 2346.0, "totalQty": 567.0, "orderCount": 423, "uniqueProducts": 6, "margin": 3377.21, "marginPct": 59.00901766665909}, {"YearMonth": "2024-02", "Category": "Natural Co Q10", "totalRevenue": 4184.51, "totalRevenueExVAT": 3487.32, "totalCost": 1790.2299999999998, "totalQty": 144.0, "orderCount": 115, "uniqueProducts": 4, "margin": 1697.0900000000004, "marginPct": 48.66459057385041}, {"YearMonth": "2024-02", "Category": "Omega 3 Supplements", "totalRevenue": 5196.5, "totalRevenueExVAT": 4331.2300000000005, "totalCost": 1790.24, "totalQty": 347.0, "orderCount": 283, "uniqueProducts": 6, "margin": 2540.9900000000007, "marginPct": 58.66670668609149}, {"YearMonth": "2024-02", "Category": "Probiotics", "totalRevenue": 1776.77, "totalRevenueExVAT": 1485.51, "totalCost": 519.12, "totalQty": 94.0, "orderCount": 87, "uniqueProducts": 1, "margin": 966.39, "marginPct": 65.05442575277178}, {"YearMonth": "2024-02", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9810.48, "totalRevenueExVAT": 8174.66, "totalCost": 4059.0, "totalQty": 372.0, "orderCount": 348, "uniqueProducts": 1, "margin": 4115.66, "marginPct": 50.346558755960494}, {"YearMonth": "2024-02", "Category": "Vitamin B", "totalRevenue": 6250.429999999999, "totalRevenueExVAT": 5209.6, "totalCost": 1949.95, "totalQty": 406.0, "orderCount": 371, "uniqueProducts": 11, "margin": 3259.6500000000005, "marginPct": 62.57006296068796}, {"YearMonth": "2024-02", "Category": "Vitamin C", "totalRevenue": 1106.29, "totalRevenueExVAT": 922.13, "totalCost": 388.71, "totalQty": 91.0, "orderCount": 84, "uniqueProducts": 4, "margin": 533.4200000000001, "marginPct": 57.8465075423205}, {"YearMonth": "2024-02", "Category": "Vitamin D", "totalRevenue": 1176.96, "totalRevenueExVAT": 980.5899999999999, "totalCost": 292.25, "totalQty": 127.0, "orderCount": 107, "uniqueProducts": 3, "margin": 688.3399999999999, "marginPct": 70.1965143434055}, {"YearMonth": "2024-02", "Category": "Vitamin E", "totalRevenue": 322.90999999999997, "totalRevenueExVAT": 269.15, "totalCost": 113.72, "totalQty": 13.0, "orderCount": 13, "uniqueProducts": 2, "margin": 155.42999999999998, "marginPct": 57.748467397362056}, {"YearMonth": "2024-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 3209.51, "totalRevenueExVAT": 2677.03, "totalCost": 998.44, "totalQty": 135.0, "orderCount": 118, "uniqueProducts": 2, "margin": 1678.5900000000001, "marginPct": 62.70344374175859}, {"YearMonth": "2024-03", "Category": "Amino Acids", "totalRevenue": 4758.91, "totalRevenueExVAT": 3968.0, "totalCost": 1623.1200000000001, "totalQty": 302.0, "orderCount": 258, "uniqueProducts": 7, "margin": 2344.88, "marginPct": 59.09475806451613}, {"YearMonth": "2024-03", "Category": "Bone Health", "totalRevenue": 8853.5, "totalRevenueExVAT": 7380.42, "totalCost": 2717.31, "totalQty": 760.0, "orderCount": 595, "uniqueProducts": 5, "margin": 4663.110000000001, "marginPct": 63.182176624094566}, {"YearMonth": "2024-03", "Category": "Cod Liver Oil", "totalRevenue": 1991.12, "totalRevenueExVAT": 1659.71, "totalCost": 655.85, "totalQty": 157.0, "orderCount": 134, "uniqueProducts": 2, "margin": 1003.86, "marginPct": 60.484060468395086}, {"YearMonth": "2024-03", "Category": "Evening Primose Oils", "totalRevenue": 2738.61, "totalRevenueExVAT": 2283.62, "totalCost": 984.8000000000001, "totalQty": 162.0, "orderCount": 148, "uniqueProducts": 3, "margin": 1298.8199999999997, "marginPct": 56.875487165115025}, {"YearMonth": "2024-03", "Category": "Glucosamine", "totalRevenue": 8201.61, "totalRevenueExVAT": 6836.05, "totalCost": 3105.52, "totalQty": 441.0, "orderCount": 361, "uniqueProducts": 9, "margin": 3730.53, "marginPct": 54.571426481667054}, {"YearMonth": "2024-03", "Category": "Herbal Supplements", "totalRevenue": 10193.19, "totalRevenueExVAT": 8499.380000000001, "totalCost": 3689.56, "totalQty": 660.0, "orderCount": 523, "uniqueProducts": 17, "margin": 4809.8200000000015, "marginPct": 56.59024540613552}, {"YearMonth": "2024-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1311.44, "totalRevenueExVAT": 1092.67, "totalCost": 368.73, "totalQty": 94.0, "orderCount": 75, "uniqueProducts": 1, "margin": 723.94, "marginPct": 66.25422131110034}, {"YearMonth": "2024-03", "Category": "Minerals", "totalRevenue": 1364.3799999999999, "totalRevenueExVAT": 1137.19, "totalCost": 408.67, "totalQty": 172.0, "orderCount": 145, "uniqueProducts": 4, "margin": 728.52, "marginPct": 64.06317326040502}, {"YearMonth": "2024-03", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1460.75, "totalRevenueExVAT": 1217.45, "totalCost": 420.41999999999996, "totalQty": 88.0, "orderCount": 70, "uniqueProducts": 1, "margin": 797.0300000000001, "marginPct": 65.46716497597438}, {"YearMonth": "2024-03", "Category": "Multivitamins", "totalRevenue": 8090.19, "totalRevenueExVAT": 6743.97, "totalCost": 2763.98, "totalQty": 672.0, "orderCount": 544, "uniqueProducts": 6, "margin": 3979.9900000000002, "marginPct": 59.015535359736184}, {"YearMonth": "2024-03", "Category": "Natural Co Q10", "totalRevenue": 5948.0, "totalRevenueExVAT": 4968.7, "totalCost": 2536.78, "totalQty": 196.0, "orderCount": 154, "uniqueProducts": 4, "margin": 2431.9199999999996, "marginPct": 48.944794413025534}, {"YearMonth": "2024-03", "Category": "Omega 3 Supplements", "totalRevenue": 6474.08, "totalRevenueExVAT": 5396.82, "totalCost": 2253.96, "totalQty": 437.0, "orderCount": 354, "uniqueProducts": 6, "margin": 3142.8599999999997, "marginPct": 58.235405294228826}, {"YearMonth": "2024-03", "Category": "Probiotics", "totalRevenue": 2313.36, "totalRevenueExVAT": 1926.97, "totalCost": 671.5600000000001, "totalQty": 123.0, "orderCount": 116, "uniqueProducts": 1, "margin": 1255.4099999999999, "marginPct": 65.14943149088982}, {"YearMonth": "2024-03", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 13120.140000000001, "totalRevenueExVAT": 10932.41, "totalCost": 5359.2, "totalQty": 497.0, "orderCount": 451, "uniqueProducts": 1, "margin": 5573.21, "marginPct": 50.978786928042396}, {"YearMonth": "2024-03", "Category": "Vitamin B", "totalRevenue": 8663.1, "totalRevenueExVAT": 7224.47, "totalCost": 2640.57, "totalQty": 579.0, "orderCount": 499, "uniqueProducts": 11, "margin": 4583.9, "marginPct": 63.44963713601135}, {"YearMonth": "2024-03", "Category": "Vitamin C", "totalRevenue": 1767.31, "totalRevenueExVAT": 1473.53, "totalCost": 623.47, "totalQty": 145.0, "orderCount": 131, "uniqueProducts": 4, "margin": 850.06, "marginPct": 57.68867956539737}, {"YearMonth": "2024-03", "Category": "Vitamin D", "totalRevenue": 1650.8999999999999, "totalRevenueExVAT": 1376.74, "totalCost": 445.46, "totalQty": 170.0, "orderCount": 145, "uniqueProducts": 3, "margin": 931.28, "marginPct": 67.64385432253003}, {"YearMonth": "2024-03", "Category": "Vitamin E", "totalRevenue": 549.95, "totalRevenueExVAT": 458.39, "totalCost": 181.22, "totalQty": 21.0, "orderCount": 21, "uniqueProducts": 2, "margin": 277.16999999999996, "marginPct": 60.46597875171796}, {"YearMonth": "2024-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 3474.43, "totalRevenueExVAT": 2896.94, "totalCost": 1104.92, "totalQty": 157.0, "orderCount": 135, "uniqueProducts": 2, "margin": 1792.02, "marginPct": 61.85906508246632}, {"YearMonth": "2024-04", "Category": "Amino Acids", "totalRevenue": 5798.53, "totalRevenueExVAT": 4839.97, "totalCost": 2021.19, "totalQty": 370.0, "orderCount": 312, "uniqueProducts": 9, "margin": 2818.78, "marginPct": 58.23961718770985}, {"YearMonth": "2024-04", "Category": "Bone Health", "totalRevenue": 7667.12, "totalRevenueExVAT": 6395.05, "totalCost": 2336.6, "totalQty": 694.0, "orderCount": 560, "uniqueProducts": 5, "margin": 4058.4500000000003, "marginPct": 63.46236542325705}, {"YearMonth": "2024-04", "Category": "Cod Liver Oil", "totalRevenue": 1821.07, "totalRevenueExVAT": 1517.34, "totalCost": 593.4499999999999, "totalQty": 161.0, "orderCount": 138, "uniqueProducts": 2, "margin": 923.89, "marginPct": 60.88879222850515}, {"YearMonth": "2024-04", "Category": "Evening Primose Oils", "totalRevenue": 3108.4404, "totalRevenueExVAT": 2592.252, "totalCost": 1137.8600000000001, "totalQty": 187.0, "orderCount": 168, "uniqueProducts": 3, "margin": 1454.3919999999998, "marginPct": 56.10534778254582}, {"YearMonth": "2024-04", "Category": "Glucosamine", "totalRevenue": 8744.42, "totalRevenueExVAT": 7282.39, "totalCost": 3244.2999999999997, "totalQty": 487.0, "orderCount": 414, "uniqueProducts": 9, "margin": 4038.0900000000006, "marginPct": 55.45006515718055}, {"YearMonth": "2024-04", "Category": "Herbal Supplements", "totalRevenue": 9996.01, "totalRevenueExVAT": 8331.56, "totalCost": 3659.27, "totalQty": 645.0, "orderCount": 523, "uniqueProducts": 16, "margin": 4672.289999999999, "marginPct": 56.07941369923519}, {"YearMonth": "2024-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1438.8600000000001, "totalRevenueExVAT": 1198.8400000000001, "totalCost": 404.88, "totalQty": 104.0, "orderCount": 85, "uniqueProducts": 1, "margin": 793.9600000000002, "marginPct": 66.22735310800441}, {"YearMonth": "2024-04", "Category": "Minerals", "totalRevenue": 1218.98, "totalRevenueExVAT": 1015.8499999999999, "totalCost": 358.81, "totalQty": 156.0, "orderCount": 140, "uniqueProducts": 4, "margin": 657.04, "marginPct": 64.67884037997736}, {"YearMonth": "2024-04", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1574.1699999999998, "totalRevenueExVAT": 1313.6299999999999, "totalCost": 466.18, "totalQty": 94.0, "orderCount": 73, "uniqueProducts": 1, "margin": 847.4499999999998, "marginPct": 64.51207722113533}, {"YearMonth": "2024-04", "Category": "Multivitamins", "totalRevenue": 9157.41, "totalRevenueExVAT": 7636.19, "totalCost": 3144.88, "totalQty": 727.0, "orderCount": 587, "uniqueProducts": 6, "margin": 4491.3099999999995, "marginPct": 58.81611117586125}, {"YearMonth": "2024-04", "Category": "Natural Co Q10", "totalRevenue": 6073.62, "totalRevenueExVAT": 5061.8, "totalCost": 2642.43, "totalQty": 209.0, "orderCount": 167, "uniqueProducts": 4, "margin": 2419.3700000000003, "marginPct": 47.79663360859774}, {"YearMonth": "2024-04", "Category": "Omega 3 Supplements", "totalRevenue": 6224.13, "totalRevenueExVAT": 5188.885, "totalCost": 2170.59, "totalQty": 439.0, "orderCount": 376, "uniqueProducts": 6, "margin": 3018.295, "marginPct": 58.168469719409856}, {"YearMonth": "2024-04", "Category": "Probiotics", "totalRevenue": 2518.27, "totalRevenueExVAT": 2098.84, "totalCost": 733.36, "totalQty": 130.0, "orderCount": 125, "uniqueProducts": 1, "margin": 1365.48, "marginPct": 65.05879438165843}, {"YearMonth": "2024-04", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12730.69, "totalRevenueExVAT": 10609.04, "totalCost": 5230.849999999999, "totalQty": 492.0, "orderCount": 466, "uniqueProducts": 1, "margin": 5378.190000000001, "marginPct": 50.69440778807508}, {"YearMonth": "2024-04", "Category": "Vitamin B", "totalRevenue": 8889.71, "totalRevenueExVAT": 7411.07, "totalCost": 2827.82, "totalQty": 596.0, "orderCount": 533, "uniqueProducts": 11, "margin": 4583.25, "marginPct": 61.843296582005024}, {"YearMonth": "2024-04", "Category": "Vitamin C", "totalRevenue": 1915.55, "totalRevenueExVAT": 1596.3799999999999, "totalCost": 682.99, "totalQty": 154.0, "orderCount": 140, "uniqueProducts": 4, "margin": 913.3899999999999, "marginPct": 57.21632693970107}, {"YearMonth": "2024-04", "Category": "Vitamin D", "totalRevenue": 1614.1299999999999, "totalRevenueExVAT": 1344.81, "totalCost": 414.09999999999997, "totalQty": 164.0, "orderCount": 133, "uniqueProducts": 3, "margin": 930.71, "marginPct": 69.20754604739705}, {"YearMonth": "2024-04", "Category": "Vitamin E", "totalRevenue": 703.65, "totalRevenueExVAT": 586.5, "totalCost": 231.54, "totalQty": 27.0, "orderCount": 26, "uniqueProducts": 2, "margin": 354.96000000000004, "marginPct": 60.521739130434796}, {"YearMonth": "2024-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 4354.41, "totalRevenueExVAT": 3628.4, "totalCost": 1356.94, "totalQty": 183.0, "orderCount": 158, "uniqueProducts": 2, "margin": 2271.46, "marginPct": 62.602248925146064}, {"YearMonth": "2024-05", "Category": "Amino Acids", "totalRevenue": 5340.850399999999, "totalRevenueExVAT": 4454.052, "totalCost": 1836.48, "totalQty": 336.0, "orderCount": 293, "uniqueProducts": 7, "margin": 2617.5719999999997, "marginPct": 58.76833049995823}, {"YearMonth": "2024-05", "Category": "Bone Health", "totalRevenue": 8174.13, "totalRevenueExVAT": 6815.52, "totalCost": 2556.5099999999998, "totalQty": 722.0, "orderCount": 559, "uniqueProducts": 5, "margin": 4259.01, "marginPct": 62.48987604760898}, {"YearMonth": "2024-05", "Category": "Cod Liver Oil", "totalRevenue": 1443.54, "totalRevenueExVAT": 1203.98, "totalCost": 475.3, "totalQty": 121.0, "orderCount": 107, "uniqueProducts": 2, "margin": 728.6800000000001, "marginPct": 60.52260004319009}, {"YearMonth": "2024-05", "Category": "Evening Primose Oils", "totalRevenue": 2503.27, "totalRevenueExVAT": 2087.15, "totalCost": 913.72, "totalQty": 146.0, "orderCount": 140, "uniqueProducts": 3, "margin": 1173.43, "marginPct": 56.22164195194404}, {"YearMonth": "2024-05", "Category": "Glucosamine", "totalRevenue": 7039.98, "totalRevenueExVAT": 5873.81, "totalCost": 2654.22, "totalQty": 381.0, "orderCount": 333, "uniqueProducts": 9, "margin": 3219.5900000000006, "marginPct": 54.812634388923044}, {"YearMonth": "2024-05", "Category": "Herbal Supplements", "totalRevenue": 7872.16, "totalRevenueExVAT": 6573.87, "totalCost": 2878.28, "totalQty": 499.0, "orderCount": 414, "uniqueProducts": 17, "margin": 3695.5899999999997, "marginPct": 56.216353533002625}, {"YearMonth": "2024-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1328.22, "totalRevenueExVAT": 1106.66, "totalCost": 373.55, "totalQty": 97.0, "orderCount": 79, "uniqueProducts": 1, "margin": 733.1100000000001, "marginPct": 66.24527858601559}, {"YearMonth": "2024-05", "Category": "Minerals", "totalRevenue": 1070.6, "totalRevenueExVAT": 894.35, "totalCost": 322.59000000000003, "totalQty": 137.0, "orderCount": 127, "uniqueProducts": 4, "margin": 571.76, "marginPct": 63.93022865768435}, {"YearMonth": "2024-05", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1239.98, "totalRevenueExVAT": 1034.99, "totalCost": 357.5, "totalQty": 78.0, "orderCount": 72, "uniqueProducts": 1, "margin": 677.49, "marginPct": 65.45860346476778}, {"YearMonth": "2024-05", "Category": "Multivitamins", "totalRevenue": 7088.11, "totalRevenueExVAT": 5919.82, "totalCost": 2447.84, "totalQty": 603.0, "orderCount": 509, "uniqueProducts": 6, "margin": 3471.9799999999996, "marginPct": 58.6500940906987}, {"YearMonth": "2024-05", "Category": "Natural Co Q10", "totalRevenue": 5736.58, "totalRevenueExVAT": 4782.08, "totalCost": 2496.91, "totalQty": 189.0, "orderCount": 152, "uniqueProducts": 4, "margin": 2285.17, "marginPct": 47.786109809957175}, {"YearMonth": "2024-05", "Category": "Omega 3 Supplements", "totalRevenue": 5512.2396, "totalRevenueExVAT": 4596.688, "totalCost": 1880.35, "totalQty": 390.0, "orderCount": 338, "uniqueProducts": 6, "margin": 2716.338, "marginPct": 59.09337331574386}, {"YearMonth": "2024-05", "Category": "Probiotics", "totalRevenue": 2469.4, "totalRevenueExVAT": 2057.69, "totalCost": 729.24, "totalQty": 127.0, "orderCount": 117, "uniqueProducts": 1, "margin": 1328.45, "marginPct": 64.560259319917}, {"YearMonth": "2024-05", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10449.82, "totalRevenueExVAT": 8716.57, "totalCost": 4317.45, "totalQty": 403.0, "orderCount": 372, "uniqueProducts": 1, "margin": 4399.12, "marginPct": 50.468475558619964}, {"YearMonth": "2024-05", "Category": "Vitamin B", "totalRevenue": 8361.16, "totalRevenueExVAT": 6972.43, "totalCost": 2700.2400000000002, "totalQty": 544.0, "orderCount": 481, "uniqueProducts": 11, "margin": 4272.1900000000005, "marginPct": 61.27261227434339}, {"YearMonth": "2024-05", "Category": "Vitamin C", "totalRevenue": 1484.51, "totalRevenueExVAT": 1238.82, "totalCost": 521.1, "totalQty": 116.0, "orderCount": 97, "uniqueProducts": 4, "margin": 717.7199999999999, "marginPct": 57.93577759480796}, {"YearMonth": "2024-05", "Category": "Vitamin D", "totalRevenue": 391.75, "totalRevenueExVAT": 326.37, "totalCost": 116.57, "totalQty": 39.0, "orderCount": 32, "uniqueProducts": 3, "margin": 209.8, "marginPct": 64.28286913625641}, {"YearMonth": "2024-05", "Category": "Vitamin E", "totalRevenue": 536.81, "totalRevenueExVAT": 448.46, "totalCost": 184.62, "totalQty": 19.0, "orderCount": 18, "uniqueProducts": 2, "margin": 263.84, "marginPct": 58.83244882486732}, {"YearMonth": "2024-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 3243.96, "totalRevenueExVAT": 2707.2, "totalCost": 1024.0, "totalQty": 139.0, "orderCount": 123, "uniqueProducts": 2, "margin": 1683.1999999999998, "marginPct": 62.174940898345156}, {"YearMonth": "2024-06", "Category": "Amino Acids", "totalRevenue": 4661.24, "totalRevenueExVAT": 3887.22, "totalCost": 1642.21, "totalQty": 296.0, "orderCount": 252, "uniqueProducts": 7, "margin": 2245.0099999999998, "marginPct": 57.753613121974055}, {"YearMonth": "2024-06", "Category": "Bone Health", "totalRevenue": 7373.88, "totalRevenueExVAT": 6148.17, "totalCost": 2383.58, "totalQty": 643.0, "orderCount": 514, "uniqueProducts": 5, "margin": 3764.59, "marginPct": 61.23106550404429}, {"YearMonth": "2024-06", "Category": "Cod Liver Oil", "totalRevenue": 1785.9399999999998, "totalRevenueExVAT": 1488.17, "totalCost": 607.75, "totalQty": 155.0, "orderCount": 124, "uniqueProducts": 2, "margin": 880.4200000000001, "marginPct": 59.16125173871265}, {"YearMonth": "2024-06", "Category": "Evening Primose Oils", "totalRevenue": 2440.74, "totalRevenueExVAT": 2034.9199999999998, "totalCost": 895.98, "totalQty": 153.0, "orderCount": 146, "uniqueProducts": 3, "margin": 1138.9399999999998, "marginPct": 55.969767853281695}, {"YearMonth": "2024-06", "Category": "Glucosamine", "totalRevenue": 6610.856, "totalRevenueExVAT": 5512.6900000000005, "totalCost": 2514.5499999999997, "totalQty": 361.0, "orderCount": 302, "uniqueProducts": 9, "margin": 2998.140000000001, "marginPct": 54.386152676823855}, {"YearMonth": "2024-06", "Category": "Herbal Supplements", "totalRevenue": 8064.32, "totalRevenueExVAT": 6724.47, "totalCost": 3017.0, "totalQty": 531.0, "orderCount": 435, "uniqueProducts": 15, "margin": 3707.4700000000003, "marginPct": 55.13401056142715}, {"YearMonth": "2024-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1411.23, "totalRevenueExVAT": 1178.88, "totalCost": 397.65000000000003, "totalQty": 102.0, "orderCount": 82, "uniqueProducts": 1, "margin": 781.23, "marginPct": 66.26883143322475}, {"YearMonth": "2024-06", "Category": "Minerals", "totalRevenue": 1042.06, "totalRevenueExVAT": 868.12, "totalCost": 313.18, "totalQty": 132.0, "orderCount": 118, "uniqueProducts": 4, "margin": 554.94, "marginPct": 63.924342256830855}, {"YearMonth": "2024-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1222.58, "totalRevenueExVAT": 1018.9399999999999, "totalCost": 354.64, "totalQty": 73.0, "orderCount": 63, "uniqueProducts": 1, "margin": 664.3, "marginPct": 65.1952028578719}, {"YearMonth": "2024-06", "Category": "Multivitamins", "totalRevenue": 6942.15, "totalRevenueExVAT": 5787.08, "totalCost": 2434.62, "totalQty": 586.0, "orderCount": 491, "uniqueProducts": 6, "margin": 3352.46, "marginPct": 57.930078727095534}, {"YearMonth": "2024-06", "Category": "Natural Co Q10", "totalRevenue": 5398.72, "totalRevenueExVAT": 4499.51, "totalCost": 2313.15, "totalQty": 182.0, "orderCount": 140, "uniqueProducts": 4, "margin": 2186.36, "marginPct": 48.59106880526991}, {"YearMonth": "2024-06", "Category": "Omega 3 Supplements", "totalRevenue": 5458.099999999999, "totalRevenueExVAT": 4557.26, "totalCost": 1865.3899999999999, "totalQty": 409.0, "orderCount": 335, "uniqueProducts": 6, "margin": 2691.8700000000003, "marginPct": 59.067729293478976}, {"YearMonth": "2024-06", "Category": "Probiotics", "totalRevenue": 2137.52, "totalRevenueExVAT": 1784.42, "totalCost": 638.6, "totalQty": 110.0, "orderCount": 104, "uniqueProducts": 1, "margin": 1145.8200000000002, "marginPct": 64.21246119187187}, {"YearMonth": "2024-06", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10510.49, "totalRevenueExVAT": 8760.76, "totalCost": 4389.55, "totalQty": 417.0, "orderCount": 391, "uniqueProducts": 1, "margin": 4371.21, "marginPct": 49.895328715773516}, {"YearMonth": "2024-06", "Category": "Vitamin B", "totalRevenue": 7815.2, "totalRevenueExVAT": 6520.18, "totalCost": 2427.28, "totalQty": 529.0, "orderCount": 460, "uniqueProducts": 10, "margin": 4092.9, "marginPct": 62.772806885699474}, {"YearMonth": "2024-06", "Category": "Vitamin C", "totalRevenue": 1302.71, "totalRevenueExVAT": 1085.54, "totalCost": 459.44, "totalQty": 112.0, "orderCount": 103, "uniqueProducts": 4, "margin": 626.0999999999999, "marginPct": 57.67636383735283}, {"YearMonth": "2024-06", "Category": "Vitamin D", "totalRevenue": 158.52, "totalRevenueExVAT": 132.07000000000002, "totalCost": 56.39, "totalQty": 15.0, "orderCount": 11, "uniqueProducts": 2, "margin": 75.68000000000002, "marginPct": 57.30294540773833}, {"YearMonth": "2024-06", "Category": "Vitamin E", "totalRevenue": 626.96, "totalRevenueExVAT": 522.56, "totalCost": 208.07999999999998, "totalQty": 23.0, "orderCount": 21, "uniqueProducts": 2, "margin": 314.47999999999996, "marginPct": 60.18064911206369}, {"YearMonth": "2024-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 3493.82, "totalRevenueExVAT": 2911.16, "totalCost": 1113.2, "totalQty": 156.0, "orderCount": 138, "uniqueProducts": 2, "margin": 1797.9599999999998, "marginPct": 61.76094752607207}, {"YearMonth": "2024-07", "Category": "Amino Acids", "totalRevenue": 6978.82, "totalRevenueExVAT": 5820.96, "totalCost": 2708.09, "totalQty": 501.0, "orderCount": 402, "uniqueProducts": 7, "margin": 3112.87, "marginPct": 53.47691789670432}, {"YearMonth": "2024-07", "Category": "Bone Health", "totalRevenue": 10324.18, "totalRevenueExVAT": 8614.29, "totalCost": 3639.56, "totalQty": 1017.0, "orderCount": 769, "uniqueProducts": 5, "margin": 4974.730000000001, "marginPct": 57.74973909631556}, {"YearMonth": "2024-07", "Category": "Cod Liver Oil", "totalRevenue": 2927.77, "totalRevenueExVAT": 2441.4500000000003, "totalCost": 1134.95, "totalQty": 270.0, "orderCount": 224, "uniqueProducts": 2, "margin": 1306.5000000000002, "marginPct": 53.51328104200373}, {"YearMonth": "2024-07", "Category": "Evening Primose Oils", "totalRevenue": 3427.0, "totalRevenueExVAT": 2854.32, "totalCost": 1392.52, "totalQty": 225.0, "orderCount": 197, "uniqueProducts": 3, "margin": 1461.8000000000002, "marginPct": 51.21359903584742}, {"YearMonth": "2024-07", "Category": "Glucosamine", "totalRevenue": 11542.38, "totalRevenueExVAT": 9616.68, "totalCost": 4814.04, "totalQty": 661.0, "orderCount": 535, "uniqueProducts": 9, "margin": 4802.64, "marginPct": 49.94072798512585}, {"YearMonth": "2024-07", "Category": "Herbal Supplements", "totalRevenue": 12496.789999999999, "totalRevenueExVAT": 10425.26, "totalCost": 5102.68, "totalQty": 883.0, "orderCount": 701, "uniqueProducts": 16, "margin": 5322.58, "marginPct": 51.05464995597232}, {"YearMonth": "2024-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1837.88, "totalRevenueExVAT": 1530.43, "totalCost": 496.46000000000004, "totalQty": 127.0, "orderCount": 103, "uniqueProducts": 1, "margin": 1033.97, "marginPct": 67.56075090007383}, {"YearMonth": "2024-07", "Category": "Minerals", "totalRevenue": 1378.3700000000001, "totalRevenueExVAT": 1151.3, "totalCost": 466.02, "totalQty": 180.0, "orderCount": 159, "uniqueProducts": 4, "margin": 685.28, "marginPct": 59.52227916268566}, {"YearMonth": "2024-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1666.6200000000001, "totalRevenueExVAT": 1388.3200000000002, "totalCost": 534.8199999999999, "totalQty": 108.0, "orderCount": 87, "uniqueProducts": 1, "margin": 853.5000000000002, "marginPct": 61.477181053359466}, {"YearMonth": "2024-07", "Category": "Multivitamins", "totalRevenue": 10358.25784, "totalRevenueExVAT": 8634.8032, "totalCost": 4199.3, "totalQty": 963.0, "orderCount": 759, "uniqueProducts": 6, "margin": 4435.5032, "marginPct": 51.36773933654909}, {"YearMonth": "2024-07", "Category": "Natural Co Q10", "totalRevenue": 7497.67, "totalRevenueExVAT": 6268.55, "totalCost": 3519.8199999999997, "totalQty": 285.0, "orderCount": 208, "uniqueProducts": 4, "margin": 2748.7300000000005, "marginPct": 43.84953458136252}, {"YearMonth": "2024-07", "Category": "Omega 3 Supplements", "totalRevenue": 7478.88, "totalRevenueExVAT": 6232.84, "totalCost": 3401.34, "totalQty": 595.0, "orderCount": 472, "uniqueProducts": 5, "margin": 2831.5, "marginPct": 45.428729118668215}, {"YearMonth": "2024-07", "Category": "Probiotics", "totalRevenue": 3432.46, "totalRevenueExVAT": 2862.9, "totalCost": 1112.4, "totalQty": 187.0, "orderCount": 169, "uniqueProducts": 1, "margin": 1750.5, "marginPct": 61.14429424709211}, {"YearMonth": "2024-07", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16520.69, "totalRevenueExVAT": 13766.76, "totalCost": 7417.549999999999, "totalQty": 672.0, "orderCount": 578, "uniqueProducts": 1, "margin": 6349.210000000001, "marginPct": 46.119856814530074}, {"YearMonth": "2024-07", "Category": "Vitamin B", "totalRevenue": 9865.37536, "totalRevenueExVAT": 8223.3228, "totalCost": 3432.52, "totalQty": 723.0, "orderCount": 618, "uniqueProducts": 10, "margin": 4790.8027999999995, "marginPct": 58.25872237436671}, {"YearMonth": "2024-07", "Category": "Vitamin C", "totalRevenue": 1997.83, "totalRevenueExVAT": 1667.0900000000001, "totalCost": 780.1800000000001, "totalQty": 173.0, "orderCount": 155, "uniqueProducts": 4, "margin": 886.9100000000001, "marginPct": 53.20108692392132}, {"YearMonth": "2024-07", "Category": "Vitamin D", "totalRevenue": 8.54, "totalRevenueExVAT": 7.12, "totalCost": 2.85, "totalQty": 1.0, "orderCount": 1, "uniqueProducts": 1, "margin": 4.27, "marginPct": 59.97191011235954}, {"YearMonth": "2024-07", "Category": "Vitamin E", "totalRevenue": 887.18, "totalRevenueExVAT": 743.98, "totalCost": 327.12, "totalQty": 38.0, "orderCount": 36, "uniqueProducts": 2, "margin": 416.86, "marginPct": 56.03107610419635}, {"YearMonth": "2024-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 6091.24, "totalRevenueExVAT": 5079.85, "totalCost": 2122.66, "totalQty": 280.0, "orderCount": 224, "uniqueProducts": 2, "margin": 2957.1900000000005, "marginPct": 58.21412049568393}, {"YearMonth": "2024-08", "Category": "Amino Acids", "totalRevenue": 5051.98, "totalRevenueExVAT": 4211.7, "totalCost": 1752.65, "totalQty": 324.0, "orderCount": 270, "uniqueProducts": 7, "margin": 2459.0499999999997, "marginPct": 58.38616235724291}, {"YearMonth": "2024-08", "Category": "Bone Health", "totalRevenue": 7639.74, "totalRevenueExVAT": 6373.05, "totalCost": 2419.98, "totalQty": 685.0, "orderCount": 531, "uniqueProducts": 5, "margin": 3953.07, "marginPct": 62.02791442088168}, {"YearMonth": "2024-08", "Category": "Cod Liver Oil", "totalRevenue": 1872.07, "totalRevenueExVAT": 1561.03, "totalCost": 624.4, "totalQty": 152.0, "orderCount": 131, "uniqueProducts": 2, "margin": 936.63, "marginPct": 60.000768723214804}, {"YearMonth": "2024-08", "Category": "Evening Primose Oils", "totalRevenue": 2577.04, "totalRevenueExVAT": 2147.64, "totalCost": 947.52, "totalQty": 156.0, "orderCount": 134, "uniqueProducts": 3, "margin": 1200.12, "marginPct": 55.88087388947868}, {"YearMonth": "2024-08", "Category": "Glucosamine", "totalRevenue": 7302.63, "totalRevenueExVAT": 6088.63, "totalCost": 2705.73, "totalQty": 384.0, "orderCount": 322, "uniqueProducts": 9, "margin": 3382.9, "marginPct": 55.56093899612885}, {"YearMonth": "2024-08", "Category": "Herbal Supplements", "totalRevenue": 9365.26, "totalRevenueExVAT": 7814.36, "totalCost": 3554.56, "totalQty": 626.0, "orderCount": 483, "uniqueProducts": 16, "margin": 4259.799999999999, "marginPct": 54.512461673124854}, {"YearMonth": "2024-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1034.47, "totalRevenueExVAT": 862.61, "totalCost": 253.05, "totalQty": 67.0, "orderCount": 60, "uniqueProducts": 1, "margin": 609.56, "marginPct": 70.66461089020531}, {"YearMonth": "2024-08", "Category": "Minerals", "totalRevenue": 1002.5903999999999, "totalRevenueExVAT": 835.832, "totalCost": 311.7, "totalQty": 124.0, "orderCount": 112, "uniqueProducts": 4, "margin": 524.1320000000001, "marginPct": 62.70781688186143}, {"YearMonth": "2024-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1157.96, "totalRevenueExVAT": 964.84, "totalCost": 369.08, "totalQty": 66.0, "orderCount": 58, "uniqueProducts": 1, "margin": 595.76, "marginPct": 61.74702541354007}, {"YearMonth": "2024-08", "Category": "Multivitamins", "totalRevenue": 7725.28, "totalRevenueExVAT": 6443.93, "totalCost": 2671.7999999999997, "totalQty": 595.0, "orderCount": 469, "uniqueProducts": 6, "margin": 3772.1300000000006, "marginPct": 58.53772464939875}, {"YearMonth": "2024-08", "Category": "Natural Co Q10", "totalRevenue": 5961.860000000001, "totalRevenueExVAT": 4965.57, "totalCost": 2546.34, "totalQty": 208.0, "orderCount": 156, "uniqueProducts": 4, "margin": 2419.2299999999996, "marginPct": 48.72008651574743}, {"YearMonth": "2024-08", "Category": "Omega 3 Supplements", "totalRevenue": 5312.18, "totalRevenueExVAT": 4427.54, "totalCost": 1916.61, "totalQty": 395.0, "orderCount": 334, "uniqueProducts": 5, "margin": 2510.9300000000003, "marginPct": 56.71162767586516}, {"YearMonth": "2024-08", "Category": "Probiotics", "totalRevenue": 2242.0499999999997, "totalRevenueExVAT": 1868.28, "totalCost": 673.1, "totalQty": 115.0, "orderCount": 108, "uniqueProducts": 1, "margin": 1195.1799999999998, "marginPct": 63.97220973301646}, {"YearMonth": "2024-08", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11497.220000000001, "totalRevenueExVAT": 9584.54, "totalCost": 4780.2, "totalQty": 446.0, "orderCount": 413, "uniqueProducts": 1, "margin": 4804.340000000001, "marginPct": 50.1259319696094}, {"YearMonth": "2024-08", "Category": "Vitamin B", "totalRevenue": 7581.29, "totalRevenueExVAT": 6329.59, "totalCost": 2368.34, "totalQty": 509.0, "orderCount": 448, "uniqueProducts": 11, "margin": 3961.25, "marginPct": 62.583042503542885}, {"YearMonth": "2024-08", "Category": "Vitamin C", "totalRevenue": 1612.31, "totalRevenueExVAT": 1345.4399999999998, "totalCost": 569.37, "totalQty": 130.0, "orderCount": 116, "uniqueProducts": 4, "margin": 776.0699999999998, "marginPct": 57.68150196218337}, {"YearMonth": "2024-08", "Category": "Vitamin D", "totalRevenue": 18.98, "totalRevenueExVAT": 15.82, "totalCost": 5.7, "totalQty": 2.0, "orderCount": 2, "uniqueProducts": 1, "margin": 10.120000000000001, "marginPct": 63.96965865992416}, {"YearMonth": "2024-08", "Category": "Vitamin E", "totalRevenue": 764.3100000000001, "totalRevenueExVAT": 637.04, "totalCost": 259.62, "totalQty": 28.0, "orderCount": 23, "uniqueProducts": 2, "margin": 377.41999999999996, "marginPct": 59.24588722843149}, {"YearMonth": "2024-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 3206.32, "totalRevenueExVAT": 2674.17, "totalCost": 1015.62, "totalQty": 143.0, "orderCount": 125, "uniqueProducts": 2, "margin": 1658.5500000000002, "marginPct": 62.02111309303447}, {"YearMonth": "2024-09", "Category": "Amino Acids", "totalRevenue": 4242.99, "totalRevenueExVAT": 3554.2, "totalCost": 1491.42, "totalQty": 265.0, "orderCount": 222, "uniqueProducts": 7, "margin": 2062.7799999999997, "marginPct": 58.03781441674638}, {"YearMonth": "2024-09", "Category": "Bone Health", "totalRevenue": 5988.6, "totalRevenueExVAT": 4995.37, "totalCost": 1827.9099999999999, "totalQty": 588.0, "orderCount": 478, "uniqueProducts": 5, "margin": 3167.46, "marginPct": 63.40791572996595}, {"YearMonth": "2024-09", "Category": "Cod Liver Oil", "totalRevenue": 2141.7799999999997, "totalRevenueExVAT": 1790.34, "totalCost": 711.8199999999999, "totalQty": 182.0, "orderCount": 144, "uniqueProducts": 2, "margin": 1078.52, "marginPct": 60.241071528313064}, {"YearMonth": "2024-09", "Category": "Evening Primose Oils", "totalRevenue": 2665.44, "totalRevenueExVAT": 2220.58, "totalCost": 1005.44, "totalQty": 166.0, "orderCount": 149, "uniqueProducts": 3, "margin": 1215.1399999999999, "marginPct": 54.72173936539102}, {"YearMonth": "2024-09", "Category": "Glucosamine", "totalRevenue": 7621.16, "totalRevenueExVAT": 6358.36833, "totalCost": 2890.5, "totalQty": 404.0, "orderCount": 345, "uniqueProducts": 9, "margin": 3467.8683300000002, "marginPct": 54.540224001147166}, {"YearMonth": "2024-09", "Category": "Herbal Supplements", "totalRevenue": 9969.38, "totalRevenueExVAT": 8326.69, "totalCost": 3734.28, "totalQty": 627.0, "orderCount": 508, "uniqueProducts": 16, "margin": 4592.41, "marginPct": 55.1528878822197}, {"YearMonth": "2024-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1320.11, "totalRevenueExVAT": 1100.24, "totalCost": 325.35, "totalQty": 88.0, "orderCount": 71, "uniqueProducts": 1, "margin": 774.89, "marginPct": 70.42917908819894}, {"YearMonth": "2024-09", "Category": "Minerals", "totalRevenue": 1160.59, "totalRevenueExVAT": 971.31, "totalCost": 364.63, "totalQty": 142.0, "orderCount": 122, "uniqueProducts": 4, "margin": 606.68, "marginPct": 62.4599767324541}, {"YearMonth": "2024-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1263.27, "totalRevenueExVAT": 1054.27, "totalCost": 402.5, "totalQty": 74.0, "orderCount": 58, "uniqueProducts": 1, "margin": 651.77, "marginPct": 61.82192417502158}, {"YearMonth": "2024-09", "Category": "Multivitamins", "totalRevenue": 7615.8, "totalRevenueExVAT": 6350.62, "totalCost": 2619.2799999999997, "totalQty": 620.0, "orderCount": 510, "uniqueProducts": 6, "margin": 3731.34, "marginPct": 58.75552308278562}, {"YearMonth": "2024-09", "Category": "Natural Co Q10", "totalRevenue": 5347.7300000000005, "totalRevenueExVAT": 4471.02, "totalCost": 2301.96, "totalQty": 175.0, "orderCount": 142, "uniqueProducts": 4, "margin": 2169.0600000000004, "marginPct": 48.513761960358046}, {"YearMonth": "2024-09", "Category": "Omega 3 Supplements", "totalRevenue": 4932.13, "totalRevenueExVAT": 4114.535, "totalCost": 1842.34, "totalQty": 350.0, "orderCount": 276, "uniqueProducts": 6, "margin": 2272.1949999999997, "marginPct": 55.22361579133486}, {"YearMonth": "2024-09", "Category": "Probiotics", "totalRevenue": 2500.89, "totalRevenueExVAT": 2088.02, "totalCost": 827.7, "totalQty": 125.0, "orderCount": 108, "uniqueProducts": 1, "margin": 1260.32, "marginPct": 60.35957509985537}, {"YearMonth": "2024-09", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 13098.130000000001, "totalRevenueExVAT": 10928.53, "totalCost": 5373.7, "totalQty": 500.0, "orderCount": 434, "uniqueProducts": 2, "margin": 5554.830000000001, "marginPct": 50.82870248789179}, {"YearMonth": "2024-09", "Category": "Vitamin B", "totalRevenue": 6886.76, "totalRevenueExVAT": 5742.691668, "totalCost": 2225.8, "totalQty": 468.0, "orderCount": 407, "uniqueProducts": 11, "margin": 3516.891668, "marginPct": 61.24117175918003}, {"YearMonth": "2024-09", "Category": "Vitamin C", "totalRevenue": 1685.1499999999999, "totalRevenueExVAT": 1405.8, "totalCost": 600.45, "totalQty": 122.0, "orderCount": 108, "uniqueProducts": 4, "margin": 805.3499999999999, "marginPct": 57.28766538625693}, {"YearMonth": "2024-09", "Category": "Vitamin D", "totalRevenue": 9.49, "totalRevenueExVAT": 7.91, "totalCost": 2.85, "totalQty": 1.0, "orderCount": 1, "uniqueProducts": 1, "margin": 5.0600000000000005, "marginPct": 63.96965865992416}, {"YearMonth": "2024-09", "Category": "Vitamin E", "totalRevenue": 708.73, "totalRevenueExVAT": 591.7, "totalCost": 235.9, "totalQty": 21.0, "orderCount": 20, "uniqueProducts": 2, "margin": 355.80000000000007, "marginPct": 60.13182355923611}, {"YearMonth": "2024-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 5103.84, "totalRevenueExVAT": 4259.45, "totalCost": 1598.8, "totalQty": 210.0, "orderCount": 174, "uniqueProducts": 2, "margin": 2660.6499999999996, "marginPct": 62.46463745319231}, {"YearMonth": "2024-10", "Category": "Amino Acids", "totalRevenue": 3258.7999999999997, "totalRevenueExVAT": 2718.68, "totalCost": 1199.01, "totalQty": 234.0, "orderCount": 176, "uniqueProducts": 6, "margin": 1519.6699999999998, "marginPct": 55.89734724204393}, {"YearMonth": "2024-10", "Category": "Bone Health", "totalRevenue": 9755.449999999999, "totalRevenueExVAT": 8134.345, "totalCost": 3101.94, "totalQty": 885.0, "orderCount": 705, "uniqueProducts": 5, "margin": 5032.405000000001, "marginPct": 61.86613673258265}, {"YearMonth": "2024-10", "Category": "Cod Liver Oil", "totalRevenue": 2120.8199999999997, "totalRevenueExVAT": 1767.23, "totalCost": 786.78, "totalQty": 177.0, "orderCount": 146, "uniqueProducts": 2, "margin": 980.45, "marginPct": 55.47947918493914}, {"YearMonth": "2024-10", "Category": "Evening Primose Oils", "totalRevenue": 1706.74, "totalRevenueExVAT": 1420.53, "totalCost": 631.34, "totalQty": 111.0, "orderCount": 103, "uniqueProducts": 2, "margin": 789.1899999999999, "marginPct": 55.556024863959216}, {"YearMonth": "2024-10", "Category": "Glucosamine", "totalRevenue": 7583.04, "totalRevenueExVAT": 6344.28, "totalCost": 2868.06, "totalQty": 399.0, "orderCount": 324, "uniqueProducts": 8, "margin": 3476.22, "marginPct": 54.79297887230702}, {"YearMonth": "2024-10", "Category": "Herbal Supplements", "totalRevenue": 9189.64, "totalRevenueExVAT": 7664.66, "totalCost": 3428.37, "totalQty": 597.0, "orderCount": 470, "uniqueProducts": 16, "margin": 4236.29, "marginPct": 55.27042295418192}, {"YearMonth": "2024-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1202.86, "totalRevenueExVAT": 1001.8199999999999, "totalCost": 294.02000000000004, "totalQty": 76.0, "orderCount": 64, "uniqueProducts": 1, "margin": 707.8, "marginPct": 70.65141442574514}, {"YearMonth": "2024-10", "Category": "Minerals", "totalRevenue": 1081.6499999999999, "totalRevenueExVAT": 901.92, "totalCost": 346.92, "totalQty": 129.0, "orderCount": 116, "uniqueProducts": 4, "margin": 555.0, "marginPct": 61.53539116551357}, {"YearMonth": "2024-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1453.95, "totalRevenueExVAT": 1211.45, "totalCost": 465.5, "totalQty": 86.0, "orderCount": 67, "uniqueProducts": 1, "margin": 745.95, "marginPct": 61.57497214082298}, {"YearMonth": "2024-10", "Category": "Multivitamins", "totalRevenue": 8039.599999999999, "totalRevenueExVAT": 6712.14, "totalCost": 2772.32, "totalQty": 676.0, "orderCount": 551, "uniqueProducts": 6, "margin": 3939.82, "marginPct": 58.69692825239044}, {"YearMonth": "2024-10", "Category": "Natural Co Q10", "totalRevenue": 6822.91, "totalRevenueExVAT": 5701.57, "totalCost": 3047.1, "totalQty": 222.0, "orderCount": 163, "uniqueProducts": 4, "margin": 2654.47, "marginPct": 46.55682557611324}, {"YearMonth": "2024-10", "Category": "Omega 3 Supplements", "totalRevenue": 6193.41, "totalRevenueExVAT": 5164.8, "totalCost": 2166.5099999999998, "totalQty": 422.0, "orderCount": 376, "uniqueProducts": 6, "margin": 2998.2900000000004, "marginPct": 58.052393122676584}, {"YearMonth": "2024-10", "Category": "Probiotics", "totalRevenue": 2252.48, "totalRevenueExVAT": 1877.3700000000001, "totalCost": 744.0, "totalQty": 117.0, "orderCount": 112, "uniqueProducts": 2, "margin": 1133.3700000000001, "marginPct": 60.37009220345484}, {"YearMonth": "2024-10", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11884.02, "totalRevenueExVAT": 9905.91, "totalCost": 4537.35, "totalQty": 466.0, "orderCount": 405, "uniqueProducts": 1, "margin": 5368.5599999999995, "marginPct": 54.19552570132375}, {"YearMonth": "2024-10", "Category": "Vitamin B", "totalRevenue": 6824.83, "totalRevenueExVAT": 5698.64, "totalCost": 2200.53, "totalQty": 454.0, "orderCount": 399, "uniqueProducts": 10, "margin": 3498.11, "marginPct": 61.38499712212037}, {"YearMonth": "2024-10", "Category": "Vitamin C", "totalRevenue": 1903.07, "totalRevenueExVAT": 1585.9199999999998, "totalCost": 678.14, "totalQty": 143.0, "orderCount": 123, "uniqueProducts": 4, "margin": 907.7799999999999, "marginPct": 57.23996166263115}, {"YearMonth": "2024-10", "Category": "Vitamin D", "totalRevenue": 9.49, "totalRevenueExVAT": 7.91, "totalCost": 2.85, "totalQty": 1.0, "orderCount": 1, "uniqueProducts": 1, "margin": 5.0600000000000005, "marginPct": 63.96965865992416}, {"YearMonth": "2024-10", "Category": "Vitamin E", "totalRevenue": 730.61, "totalRevenueExVAT": 608.97, "totalCost": 241.48, "totalQty": 28.0, "orderCount": 27, "uniqueProducts": 2, "margin": 367.49, "marginPct": 60.346158267238124}, {"YearMonth": "2024-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 2906.23, "totalRevenueExVAT": 2423.85, "totalCost": 915.4, "totalQty": 126.0, "orderCount": 110, "uniqueProducts": 2, "margin": 1508.4499999999998, "marginPct": 62.233636569919746}, {"YearMonth": "2024-11", "Category": "Amino Acids", "totalRevenue": 6505.25, "totalRevenueExVAT": 5427.13, "totalCost": 2269.34, "totalQty": 383.0, "orderCount": 327, "uniqueProducts": 7, "margin": 3157.79, "marginPct": 58.18526550865742}, {"YearMonth": "2024-11", "Category": "Bone Health", "totalRevenue": 11626.96, "totalRevenueExVAT": 9695.28, "totalCost": 3693.5, "totalQty": 1031.0, "orderCount": 780, "uniqueProducts": 5, "margin": 6001.780000000001, "marginPct": 61.90414304692593}, {"YearMonth": "2024-11", "Category": "Cod Liver Oil", "totalRevenue": 2329.18, "totalRevenueExVAT": 1940.99, "totalCost": 856.6999999999999, "totalQty": 193.0, "orderCount": 168, "uniqueProducts": 2, "margin": 1084.29, "marginPct": 55.86272984404865}, {"YearMonth": "2024-11", "Category": "Evening Primose Oils", "totalRevenue": 3256.09, "totalRevenueExVAT": 2715.5, "totalCost": 1202.42, "totalQty": 190.0, "orderCount": 172, "uniqueProducts": 3, "margin": 1513.08, "marginPct": 55.720125207144164}, {"YearMonth": "2024-11", "Category": "Glucosamine", "totalRevenue": 8660.15, "totalRevenueExVAT": 7245.07, "totalCost": 3277.44, "totalQty": 459.0, "orderCount": 367, "uniqueProducts": 9, "margin": 3967.6299999999997, "marginPct": 54.76316999007601}, {"YearMonth": "2024-11", "Category": "Herbal Supplements", "totalRevenue": 11112.789999999999, "totalRevenueExVAT": 9270.79, "totalCost": 4160.74, "totalQty": 695.0, "orderCount": 559, "uniqueProducts": 16, "margin": 5110.050000000001, "marginPct": 55.11989808851242}, {"YearMonth": "2024-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2081.52, "totalRevenueExVAT": 1736.94, "totalCost": 506.1, "totalQty": 121.0, "orderCount": 97, "uniqueProducts": 1, "margin": 1230.8400000000001, "marginPct": 70.86255138346749}, {"YearMonth": "2024-11", "Category": "Minerals", "totalRevenue": 1435.76, "totalRevenueExVAT": 1198.97, "totalCost": 458.6, "totalQty": 172.0, "orderCount": 149, "uniqueProducts": 4, "margin": 740.37, "marginPct": 61.750502514658415}, {"YearMonth": "2024-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1609.3, "totalRevenueExVAT": 1343.7, "totalCost": 525.0, "totalQty": 93.0, "orderCount": 81, "uniqueProducts": 1, "margin": 818.7, "marginPct": 60.92877874525564}, {"YearMonth": "2024-11", "Category": "Multivitamins", "totalRevenue": 6998.219999999999, "totalRevenueExVAT": 5835.5, "totalCost": 2491.2599999999998, "totalQty": 629.0, "orderCount": 483, "uniqueProducts": 6, "margin": 3344.2400000000002, "marginPct": 57.30854254134179}, {"YearMonth": "2024-11", "Category": "Natural Co Q10", "totalRevenue": 6938.92, "totalRevenueExVAT": 5781.86, "totalCost": 2918.04, "totalQty": 233.0, "orderCount": 183, "uniqueProducts": 4, "margin": 2863.8199999999997, "marginPct": 49.53111974347355}, {"YearMonth": "2024-11", "Category": "Omega 3 Supplements", "totalRevenue": 7029.63, "totalRevenueExVAT": 5863.53, "totalCost": 2474.55, "totalQty": 486.0, "orderCount": 408, "uniqueProducts": 6, "margin": 3388.9799999999996, "marginPct": 57.79760656123529}, {"YearMonth": "2024-11", "Category": "Probiotics", "totalRevenue": 2961.24, "totalRevenueExVAT": 2467.3, "totalCost": 967.2, "totalQty": 160.0, "orderCount": 150, "uniqueProducts": 1, "margin": 1500.1000000000001, "marginPct": 60.79925424553155}, {"YearMonth": "2024-11", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15156.91, "totalRevenueExVAT": 12635.35, "totalCost": 4446.4400000000005, "totalQty": 578.0, "orderCount": 517, "uniqueProducts": 1, "margin": 8188.91, "marginPct": 64.80952249047314}, {"YearMonth": "2024-11", "Category": "Vitamin B", "totalRevenue": 7120.15, "totalRevenueExVAT": 5935.5, "totalCost": 2304.41, "totalQty": 458.0, "orderCount": 393, "uniqueProducts": 10, "margin": 3631.09, "marginPct": 61.17580658748211}, {"YearMonth": "2024-11", "Category": "Vitamin C", "totalRevenue": 2096.5899999999997, "totalRevenueExVAT": 1747.2099999999998, "totalCost": 752.3100000000001, "totalQty": 165.0, "orderCount": 145, "uniqueProducts": 3, "margin": 994.8999999999997, "marginPct": 56.94221072452652}, {"YearMonth": "2024-11", "Category": "Vitamin D", "totalRevenue": 9.49, "totalRevenueExVAT": 7.91, "totalCost": 2.85, "totalQty": 1.0, "orderCount": 1, "uniqueProducts": 1, "margin": 5.0600000000000005, "marginPct": 63.96965865992416}, {"YearMonth": "2024-11", "Category": "Vitamin E", "totalRevenue": 816.32, "totalRevenueExVAT": 681.42, "totalCost": 270.26, "totalQty": 29.0, "orderCount": 29, "uniqueProducts": 2, "margin": 411.15999999999997, "marginPct": 60.33870447007719}, {"YearMonth": "2024-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 4362.4800000000005, "totalRevenueExVAT": 3639.34, "totalCost": 1338.24, "totalQty": 161.0, "orderCount": 138, "uniqueProducts": 1, "margin": 2301.1000000000004, "marginPct": 63.22849747481687}, {"YearMonth": "2024-12", "Category": "Amino Acids", "totalRevenue": 3228.88, "totalRevenueExVAT": 2696.42, "totalCost": 1169.07, "totalQty": 215.0, "orderCount": 178, "uniqueProducts": 7, "margin": 1527.3500000000001, "marginPct": 56.64362376781066}, {"YearMonth": "2024-12", "Category": "Bone Health", "totalRevenue": 6585.7699999999995, "totalRevenueExVAT": 5499.29, "totalCost": 1831.27, "totalQty": 584.0, "orderCount": 455, "uniqueProducts": 6, "margin": 3668.02, "marginPct": 66.69988307581525}, {"YearMonth": "2024-12", "Category": "Cod Liver Oil", "totalRevenue": 1246.58, "totalRevenueExVAT": 1038.92, "totalCost": 455.84, "totalQty": 99.0, "orderCount": 90, "uniqueProducts": 2, "margin": 583.0800000000002, "marginPct": 56.12366688484196}, {"YearMonth": "2024-12", "Category": "Evening Primose Oils", "totalRevenue": 2203.38, "totalRevenueExVAT": 1835.74, "totalCost": 793.4200000000001, "totalQty": 134.0, "orderCount": 120, "uniqueProducts": 4, "margin": 1042.32, "marginPct": 56.77928246919498}, {"YearMonth": "2024-12", "Category": "Glucosamine", "totalRevenue": 4517.36, "totalRevenueExVAT": 3766.23, "totalCost": 1726.87, "totalQty": 234.0, "orderCount": 203, "uniqueProducts": 8, "margin": 2039.3600000000001, "marginPct": 54.14857828650932}, {"YearMonth": "2024-12", "Category": "Herbal Supplements", "totalRevenue": 6713.59, "totalRevenueExVAT": 5600.34, "totalCost": 2493.11, "totalQty": 420.0, "orderCount": 341, "uniqueProducts": 16, "margin": 3107.23, "marginPct": 55.48288139648664}, {"YearMonth": "2024-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 666.09, "totalRevenueExVAT": 558.76, "totalCost": 166.29000000000002, "totalQty": 41.0, "orderCount": 36, "uniqueProducts": 1, "margin": 392.46999999999997, "marginPct": 70.23945880163218}, {"YearMonth": "2024-12", "Category": "Minerals", "totalRevenue": 991.63, "totalRevenueExVAT": 826.36, "totalCost": 250.38, "totalQty": 116.0, "orderCount": 94, "uniqueProducts": 4, "margin": 575.98, "marginPct": 69.70085676944673}, {"YearMonth": "2024-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1005.6800000000001, "totalRevenueExVAT": 837.88, "totalCost": 336.0, "totalQty": 61.0, "orderCount": 54, "uniqueProducts": 1, "margin": 501.88, "marginPct": 59.89879218981239}, {"YearMonth": "2024-12", "Category": "Multivitamins", "totalRevenue": 6303.29, "totalRevenueExVAT": 5255.3, "totalCost": 1998.85, "totalQty": 460.0, "orderCount": 392, "uniqueProducts": 6, "margin": 3256.4500000000003, "marginPct": 61.9650638403136}, {"YearMonth": "2024-12", "Category": "Natural Co Q10", "totalRevenue": 3780.6800000000003, "totalRevenueExVAT": 3149.75, "totalCost": 1669.59, "totalQty": 121.0, "orderCount": 94, "uniqueProducts": 4, "margin": 1480.16, "marginPct": 46.99293594729741}, {"YearMonth": "2024-12", "Category": "Omega 3 Supplements", "totalRevenue": 4159.41, "totalRevenueExVAT": 3468.12, "totalCost": 1485.8, "totalQty": 278.0, "orderCount": 236, "uniqueProducts": 6, "margin": 1982.32, "marginPct": 57.15834515530028}, {"YearMonth": "2024-12", "Category": "Probiotics", "totalRevenue": 2107.4496, "totalRevenueExVAT": 1755.388, "totalCost": 694.5600000000001, "totalQty": 110.0, "orderCount": 91, "uniqueProducts": 2, "margin": 1060.828, "marginPct": 60.43267927090763}, {"YearMonth": "2024-12", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8991.49, "totalRevenueExVAT": 7494.3, "totalCost": 2563.34, "totalQty": 351.0, "orderCount": 315, "uniqueProducts": 1, "margin": 4930.96, "marginPct": 65.7961383985162}, {"YearMonth": "2024-12", "Category": "Vitamin B", "totalRevenue": 4301.37, "totalRevenueExVAT": 3586.63, "totalCost": 1364.47, "totalQty": 303.0, "orderCount": 262, "uniqueProducts": 11, "margin": 2222.16, "marginPct": 61.956767216021724}, {"YearMonth": "2024-12", "Category": "Vitamin C", "totalRevenue": 958.2399999999999, "totalRevenueExVAT": 800.3399999999999, "totalCost": 340.46, "totalQty": 76.0, "orderCount": 70, "uniqueProducts": 3, "margin": 459.87999999999994, "marginPct": 57.46057925381712}, {"YearMonth": "2024-12", "Category": "Vitamin D", "totalRevenue": 18.98, "totalRevenueExVAT": 15.82, "totalCost": 5.7, "totalQty": 2.0, "orderCount": 2, "uniqueProducts": 1, "margin": 10.120000000000001, "marginPct": 63.96965865992416}, {"YearMonth": "2024-12", "Category": "Vitamin E", "totalRevenue": 266.8, "totalRevenueExVAT": 222.28, "totalCost": 94.36, "totalQty": 12.0, "orderCount": 12, "uniqueProducts": 2, "margin": 127.92, "marginPct": 57.54903725031492}, {"YearMonth": "2024-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 3244.5, "totalRevenueExVAT": 2705.09, "totalCost": 1034.58, "totalQty": 140.0, "orderCount": 127, "uniqueProducts": 2, "margin": 1670.5100000000002, "marginPct": 61.75432240701788}, {"YearMonth": "2025-01", "Category": "Amino Acids", "totalRevenue": 5896.5, "totalRevenueExVAT": 4920.33, "totalCost": 2235.66, "totalQty": 391.0, "orderCount": 326, "uniqueProducts": 7, "margin": 2684.67, "marginPct": 54.56280371438501}, {"YearMonth": "2025-01", "Category": "Bone Health", "totalRevenue": 13151.56, "totalRevenueExVAT": 10960.78, "totalCost": 3775.66, "totalQty": 1057.0, "orderCount": 785, "uniqueProducts": 6, "margin": 7185.120000000001, "marginPct": 65.5529989654021}, {"YearMonth": "2025-01", "Category": "Cod Liver Oil", "totalRevenue": 2258.86, "totalRevenueExVAT": 1888.17, "totalCost": 880.13, "totalQty": 204.0, "orderCount": 165, "uniqueProducts": 2, "margin": 1008.0400000000001, "marginPct": 53.387142047591055}, {"YearMonth": "2025-01", "Category": "Evening Primose Oils", "totalRevenue": 3167.96, "totalRevenueExVAT": 2638.1800000000003, "totalCost": 1104.56, "totalQty": 181.0, "orderCount": 165, "uniqueProducts": 3, "margin": 1533.6200000000003, "marginPct": 58.13174233752058}, {"YearMonth": "2025-01", "Category": "Glucosamine", "totalRevenue": 7948.03504, "totalRevenueExVAT": 6636.709199, "totalCost": 3200.11, "totalQty": 427.0, "orderCount": 351, "uniqueProducts": 8, "margin": 3436.5991989999998, "marginPct": 51.78167516391733}, {"YearMonth": "2025-01", "Category": "Herbal Supplements", "totalRevenue": 10767.65, "totalRevenueExVAT": 8979.09, "totalCost": 4259.47, "totalQty": 677.0, "orderCount": 536, "uniqueProducts": 15, "margin": 4719.62, "marginPct": 52.56234206361668}, {"YearMonth": "2025-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 74.77, "totalRevenueExVAT": 62.300000000000004, "totalCost": 19.28, "totalQty": 5.0, "orderCount": 5, "uniqueProducts": 1, "margin": 43.02, "marginPct": 69.0529695024077}, {"YearMonth": "2025-01", "Category": "Minerals", "totalRevenue": 1447.03, "totalRevenueExVAT": 1205.51, "totalCost": 365.68, "totalQty": 169.0, "orderCount": 143, "uniqueProducts": 4, "margin": 839.8299999999999, "marginPct": 69.66595051057229}, {"YearMonth": "2025-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1651.4150000000002, "totalRevenueExVAT": 1376.0525, "totalCost": 574.0, "totalQty": 100.0, "orderCount": 78, "uniqueProducts": 1, "margin": 802.0525, "marginPct": 58.28647526166334}, {"YearMonth": "2025-01", "Category": "Multivitamins", "totalRevenue": 10428.17, "totalRevenueExVAT": 8704.64, "totalCost": 3153.99, "totalQty": 757.0, "orderCount": 633, "uniqueProducts": 6, "margin": 5550.65, "marginPct": 63.76656587750901}, {"YearMonth": "2025-01", "Category": "Natural Co Q10", "totalRevenue": 8373.55, "totalRevenueExVAT": 6987.26, "totalCost": 3997.39, "totalQty": 296.0, "orderCount": 197, "uniqueProducts": 5, "margin": 2989.8700000000003, "marginPct": 42.79030693004125}, {"YearMonth": "2025-01", "Category": "Omega 3 Supplements", "totalRevenue": 8041.12, "totalRevenueExVAT": 6705.29, "totalCost": 2984.06, "totalQty": 533.0, "orderCount": 444, "uniqueProducts": 6, "margin": 3721.23, "marginPct": 55.496928544477576}, {"YearMonth": "2025-01", "Category": "Probiotics", "totalRevenue": 3745.92, "totalRevenueExVAT": 3121.8700000000003, "totalCost": 1283.3500000000001, "totalQty": 192.0, "orderCount": 167, "uniqueProducts": 2, "margin": 1838.5200000000002, "marginPct": 58.89162585245382}, {"YearMonth": "2025-01", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 13303.470000000001, "totalRevenueExVAT": 11092.75, "totalCost": 3724.5400000000004, "totalQty": 523.0, "orderCount": 439, "uniqueProducts": 1, "margin": 7368.209999999999, "marginPct": 66.42365509003628}, {"YearMonth": "2025-01", "Category": "Vitamin B", "totalRevenue": 6601.88, "totalRevenueExVAT": 5501.87, "totalCost": 2264.42, "totalQty": 487.0, "orderCount": 423, "uniqueProducts": 11, "margin": 3237.45, "marginPct": 58.84272074767306}, {"YearMonth": "2025-01", "Category": "Vitamin C", "totalRevenue": 2079.0, "totalRevenueExVAT": 1739.42, "totalCost": 797.82, "totalQty": 187.0, "orderCount": 152, "uniqueProducts": 3, "margin": 941.6, "marginPct": 54.132986857688195}, {"YearMonth": "2025-01", "Category": "Vitamin D", "totalRevenue": 25.619999999999997, "totalRevenueExVAT": 21.36, "totalCost": 8.55, "totalQty": 3.0, "orderCount": 2, "uniqueProducts": 1, "margin": 12.809999999999999, "marginPct": 59.97191011235955}, {"YearMonth": "2025-01", "Category": "Vitamin E", "totalRevenue": 656.6, "totalRevenueExVAT": 547.09, "totalCost": 246.8, "totalQty": 26.0, "orderCount": 25, "uniqueProducts": 2, "margin": 300.29, "marginPct": 54.88859237054232}, {"YearMonth": "2025-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 5261.58, "totalRevenueExVAT": 4385.1, "totalCost": 1766.46, "totalQty": 227.0, "orderCount": 176, "uniqueProducts": 2, "margin": 2618.6400000000003, "marginPct": 59.716768146678525}, {"YearMonth": "2025-02", "Category": "Amino Acids", "totalRevenue": 3597.2799999999997, "totalRevenueExVAT": 3008.21, "totalCost": 1210.39, "totalQty": 220.0, "orderCount": 197, "uniqueProducts": 7, "margin": 1797.82, "marginPct": 59.76377978930992}, {"YearMonth": "2025-02", "Category": "Bone Health", "totalRevenue": 8091.69, "totalRevenueExVAT": 6758.46, "totalCost": 2292.7400000000002, "totalQty": 575.0, "orderCount": 462, "uniqueProducts": 6, "margin": 4465.719999999999, "marginPct": 66.07599956203039}, {"YearMonth": "2025-02", "Category": "Cod Liver Oil", "totalRevenue": 1358.23, "totalRevenueExVAT": 1132.83, "totalCost": 417.12, "totalQty": 85.0, "orderCount": 77, "uniqueProducts": 2, "margin": 715.7099999999999, "marginPct": 63.17894123566643}, {"YearMonth": "2025-02", "Category": "Evening Primose Oils", "totalRevenue": 2156.11, "totalRevenueExVAT": 1811.7, "totalCost": 688.2, "totalQty": 107.0, "orderCount": 99, "uniqueProducts": 3, "margin": 1123.5, "marginPct": 62.01357840702103}, {"YearMonth": "2025-02", "Category": "Glucosamine", "totalRevenue": 5080.05, "totalRevenueExVAT": 4239.08, "totalCost": 1855.84, "totalQty": 235.0, "orderCount": 202, "uniqueProducts": 8, "margin": 2383.24, "marginPct": 56.22068939486869}, {"YearMonth": "2025-02", "Category": "Herbal Supplements", "totalRevenue": 7724.98, "totalRevenueExVAT": 6446.03, "totalCost": 2797.56, "totalQty": 405.0, "orderCount": 355, "uniqueProducts": 15, "margin": 3648.47, "marginPct": 56.600264038485705}, {"YearMonth": "2025-02", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1628.43, "totalRevenueExVAT": 1357.03, "totalCost": 428.98, "totalQty": 111.0, "orderCount": 88, "uniqueProducts": 1, "margin": 928.05, "marginPct": 68.38831860754736}, {"YearMonth": "2025-02", "Category": "Minerals", "totalRevenue": 1356.84, "totalRevenueExVAT": 1132.99, "totalCost": 309.6, "totalQty": 101.0, "orderCount": 88, "uniqueProducts": 4, "margin": 823.39, "marginPct": 72.67407479324619}, {"YearMonth": "2025-02", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 943.23, "totalRevenueExVAT": 786.8, "totalCost": 315.0, "totalQty": 49.0, "orderCount": 43, "uniqueProducts": 1, "margin": 471.79999999999995, "marginPct": 59.9644128113879}, {"YearMonth": "2025-02", "Category": "Multivitamins", "totalRevenue": 6237.3099999999995, "totalRevenueExVAT": 5204.7300000000005, "totalCost": 1734.22, "totalQty": 427.0, "orderCount": 362, "uniqueProducts": 6, "margin": 3470.51, "marginPct": 66.67992383850844}, {"YearMonth": "2025-02", "Category": "Natural Co Q10", "totalRevenue": 4606.6, "totalRevenueExVAT": 3841.2599999999998, "totalCost": 2039.6299999999999, "totalQty": 142.0, "orderCount": 118, "uniqueProducts": 4, "margin": 1801.6299999999999, "marginPct": 46.90205817882674}, {"YearMonth": "2025-02", "Category": "Omega 3 Supplements", "totalRevenue": 5248.5599999999995, "totalRevenueExVAT": 4388.76, "totalCost": 1791.6399999999999, "totalQty": 314.0, "orderCount": 282, "uniqueProducts": 6, "margin": 2597.1200000000003, "marginPct": 59.17662392110756}, {"YearMonth": "2025-02", "Category": "Probiotics", "totalRevenue": 2188.04, "totalRevenueExVAT": 1822.58, "totalCost": 681.14, "totalQty": 109.0, "orderCount": 98, "uniqueProducts": 2, "margin": 1141.44, "marginPct": 62.62770358502783}, {"YearMonth": "2025-02", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9094.01, "totalRevenueExVAT": 7579.16, "totalCost": 2473.2200000000003, "totalQty": 341.0, "orderCount": 303, "uniqueProducts": 1, "margin": 5105.94, "marginPct": 67.36815161574633}, {"YearMonth": "2025-02", "Category": "Vitamin B", "totalRevenue": 4824.51, "totalRevenueExVAT": 4025.59, "totalCost": 1439.38, "totalQty": 290.0, "orderCount": 266, "uniqueProducts": 11, "margin": 2586.21, "marginPct": 64.24424742708523}, {"YearMonth": "2025-02", "Category": "Vitamin C", "totalRevenue": 1371.09, "totalRevenueExVAT": 1148.27, "totalCost": 475.68, "totalQty": 106.0, "orderCount": 91, "uniqueProducts": 3, "margin": 672.5899999999999, "marginPct": 58.574202931366315}, {"YearMonth": "2025-02", "Category": "Vitamin D", "totalRevenue": 28.47, "totalRevenueExVAT": 23.73, "totalCost": 8.55, "totalQty": 3.0, "orderCount": 1, "uniqueProducts": 1, "margin": 15.18, "marginPct": 63.96965865992414}, {"YearMonth": "2025-02", "Category": "Vitamin E", "totalRevenue": 599.66, "totalRevenueExVAT": 499.76, "totalCost": 203.72, "totalQty": 22.0, "orderCount": 22, "uniqueProducts": 2, "margin": 296.03999999999996, "marginPct": 59.23643348807427}, {"YearMonth": "2025-02", "Category": "Vitamins To Aid Vision", "totalRevenue": 2259.0099999999998, "totalRevenueExVAT": 1882.25, "totalCost": 729.46, "totalQty": 98.0, "orderCount": 90, "uniqueProducts": 2, "margin": 1152.79, "marginPct": 61.24531810333378}, {"YearMonth": "2025-03", "Category": "Amino Acids", "totalRevenue": 4948.73, "totalRevenueExVAT": 4127.06, "totalCost": 1665.27, "totalQty": 287.0, "orderCount": 262, "uniqueProducts": 7, "margin": 2461.7900000000004, "marginPct": 59.64996874288234}, {"YearMonth": "2025-03", "Category": "Bone Health", "totalRevenue": 9314.790002, "totalRevenueExVAT": 7762.881668, "totalCost": 2567.19, "totalQty": 658.0, "orderCount": 501, "uniqueProducts": 6, "margin": 5195.6916679999995, "marginPct": 66.92993517365566}, {"YearMonth": "2025-03", "Category": "Cod Liver Oil", "totalRevenue": 2143.74, "totalRevenueExVAT": 1786.07, "totalCost": 595.5899999999999, "totalQty": 132.0, "orderCount": 117, "uniqueProducts": 2, "margin": 1190.48, "marginPct": 66.65360260236162}, {"YearMonth": "2025-03", "Category": "Evening Primose Oils", "totalRevenue": 2472.14, "totalRevenueExVAT": 2061.85, "totalCost": 734.32, "totalQty": 130.0, "orderCount": 118, "uniqueProducts": 3, "margin": 1327.5299999999997, "marginPct": 64.38538205980066}, {"YearMonth": "2025-03", "Category": "Glucosamine", "totalRevenue": 5820.43, "totalRevenueExVAT": 4851.99, "totalCost": 2052.41, "totalQty": 276.0, "orderCount": 238, "uniqueProducts": 8, "margin": 2799.58, "marginPct": 57.69962427787362}, {"YearMonth": "2025-03", "Category": "Herbal Supplements", "totalRevenue": 8057.5199999999995, "totalRevenueExVAT": 6718.16, "totalCost": 2844.9900000000002, "totalQty": 398.0, "orderCount": 353, "uniqueProducts": 15, "margin": 3873.1699999999996, "marginPct": 57.65224406682782}, {"YearMonth": "2025-03", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 980.91, "totalRevenueExVAT": 818.42, "totalCost": 241.0, "totalQty": 60.0, "orderCount": 53, "uniqueProducts": 1, "margin": 577.42, "marginPct": 70.55301678844603}, {"YearMonth": "2025-03", "Category": "Minerals", "totalRevenue": 1272.1499999999999, "totalRevenueExVAT": 1060.3200000000002, "totalCost": 291.48, "totalQty": 83.0, "orderCount": 77, "uniqueProducts": 4, "margin": 768.8400000000001, "marginPct": 72.51018560434585}, {"YearMonth": "2025-03", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1142.59, "totalRevenueExVAT": 951.97, "totalCost": 374.5, "totalQty": 56.0, "orderCount": 47, "uniqueProducts": 1, "margin": 577.47, "marginPct": 60.66052501654464}, {"YearMonth": "2025-03", "Category": "Multivitamins", "totalRevenue": 7400.25, "totalRevenueExVAT": 6178.5, "totalCost": 1973.91, "totalQty": 474.0, "orderCount": 425, "uniqueProducts": 6, "margin": 4204.59, "marginPct": 68.05195435785384}, {"YearMonth": "2025-03", "Category": "Natural Co Q10", "totalRevenue": 4033.3, "totalRevenueExVAT": 3366.5, "totalCost": 1785.53, "totalQty": 124.0, "orderCount": 105, "uniqueProducts": 4, "margin": 1580.97, "marginPct": 46.96182979355414}, {"YearMonth": "2025-03", "Category": "Omega 3 Supplements", "totalRevenue": 5232.59, "totalRevenueExVAT": 4363.82, "totalCost": 1663.47, "totalQty": 322.0, "orderCount": 287, "uniqueProducts": 6, "margin": 2700.3499999999995, "marginPct": 61.88041669913057}, {"YearMonth": "2025-03", "Category": "Probiotics", "totalRevenue": 2123.77, "totalRevenueExVAT": 1769.75, "totalCost": 662.48, "totalQty": 99.0, "orderCount": 94, "uniqueProducts": 2, "margin": 1107.27, "marginPct": 62.56646418985732}, {"YearMonth": "2025-03", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9532.130000000001, "totalRevenueExVAT": 7944.53, "totalCost": 2591.7200000000003, "totalQty": 354.0, "orderCount": 327, "uniqueProducts": 1, "margin": 5352.8099999999995, "marginPct": 67.37730237031013}, {"YearMonth": "2025-03", "Category": "Vitamin B", "totalRevenue": 4920.57, "totalRevenueExVAT": 4102.06, "totalCost": 1425.54, "totalQty": 290.0, "orderCount": 260, "uniqueProducts": 11, "margin": 2676.5200000000004, "marginPct": 65.24819237163767}, {"YearMonth": "2025-03", "Category": "Vitamin C", "totalRevenue": 1494.0, "totalRevenueExVAT": 1245.8999999999999, "totalCost": 490.6, "totalQty": 116.0, "orderCount": 89, "uniqueProducts": 3, "margin": 755.2999999999998, "marginPct": 60.62284292479332}, {"YearMonth": "2025-03", "Category": "Vitamin D", "totalRevenue": 28.47, "totalRevenueExVAT": 23.73, "totalCost": 8.55, "totalQty": 3.0, "orderCount": 2, "uniqueProducts": 1, "margin": 15.18, "marginPct": 63.96965865992414}, {"YearMonth": "2025-03", "Category": "Vitamin E", "totalRevenue": 486.14, "totalRevenueExVAT": 405.16999999999996, "totalCost": 161.86, "totalQty": 20.0, "orderCount": 20, "uniqueProducts": 2, "margin": 243.30999999999995, "marginPct": 60.05133647604708}, {"YearMonth": "2025-03", "Category": "Vitamins To Aid Vision", "totalRevenue": 3041.58, "totalRevenueExVAT": 2539.52, "totalCost": 975.82, "totalQty": 131.0, "orderCount": 117, "uniqueProducts": 2, "margin": 1563.6999999999998, "marginPct": 61.57462827620967}, {"YearMonth": "2025-04", "Category": "Amino Acids", "totalRevenue": 4811.05, "totalRevenueExVAT": 4016.52, "totalCost": 1595.7, "totalQty": 281.0, "orderCount": 250, "uniqueProducts": 7, "margin": 2420.8199999999997, "marginPct": 60.27157838128529}, {"YearMonth": "2025-04", "Category": "Bone Health", "totalRevenue": 9570.869999999999, "totalRevenueExVAT": 7978.19, "totalCost": 2626.66, "totalQty": 674.0, "orderCount": 523, "uniqueProducts": 6, "margin": 5351.53, "marginPct": 67.07699365394907}, {"YearMonth": "2025-04", "Category": "Cod Liver Oil", "totalRevenue": 2039.01, "totalRevenueExVAT": 1699.14, "totalCost": 580.3, "totalQty": 128.0, "orderCount": 118, "uniqueProducts": 2, "margin": 1118.8400000000001, "marginPct": 65.84742869922432}, {"YearMonth": "2025-04", "Category": "Evening Primose Oils", "totalRevenue": 2214.81, "totalRevenueExVAT": 1846.96, "totalCost": 658.82, "totalQty": 110.0, "orderCount": 104, "uniqueProducts": 3, "margin": 1188.1399999999999, "marginPct": 64.32949278814917}, {"YearMonth": "2025-04", "Category": "Glucosamine", "totalRevenue": 5411.49, "totalRevenueExVAT": 4508.48, "totalCost": 1915.1499999999999, "totalQty": 248.0, "orderCount": 219, "uniqueProducts": 8, "margin": 2593.33, "marginPct": 57.52116012492016}, {"YearMonth": "2025-04", "Category": "Herbal Supplements", "totalRevenue": 8454.69, "totalRevenueExVAT": 7047.205001, "totalCost": 3047.09, "totalQty": 433.0, "orderCount": 363, "uniqueProducts": 15, "margin": 4000.115001, "marginPct": 56.76172327089084}, {"YearMonth": "2025-04", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1077.1299999999999, "totalRevenueExVAT": 897.7, "totalCost": 265.1, "totalQty": 69.0, "orderCount": 58, "uniqueProducts": 1, "margin": 632.6, "marginPct": 70.46897627269689}, {"YearMonth": "2025-04", "Category": "Minerals", "totalRevenue": 1214.36, "totalRevenueExVAT": 1012.1500000000001, "totalCost": 284.66, "totalQty": 79.0, "orderCount": 72, "uniqueProducts": 4, "margin": 727.49, "marginPct": 71.87571012201748}, {"YearMonth": "2025-04", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1304.81, "totalRevenueExVAT": 1087.1299999999999, "totalCost": 434.0, "totalQty": 65.0, "orderCount": 54, "uniqueProducts": 1, "margin": 653.1299999999999, "marginPct": 60.07837149190989}, {"YearMonth": "2025-04", "Category": "Multivitamins", "totalRevenue": 7682.3099999999995, "totalRevenueExVAT": 6409.530000000001, "totalCost": 2040.1, "totalQty": 492.0, "orderCount": 423, "uniqueProducts": 6, "margin": 4369.43, "marginPct": 68.17083311880901}, {"YearMonth": "2025-04", "Category": "Natural Co Q10", "totalRevenue": 5827.66, "totalRevenueExVAT": 4869.67, "totalCost": 2549.42, "totalQty": 181.0, "orderCount": 141, "uniqueProducts": 4, "margin": 2320.25, "marginPct": 47.646965810824966}, {"YearMonth": "2025-04", "Category": "Omega 3 Supplements", "totalRevenue": 5018.71, "totalRevenueExVAT": 4184.13, "totalCost": 1625.3, "totalQty": 302.0, "orderCount": 270, "uniqueProducts": 5, "margin": 2558.83, "marginPct": 61.155604629875256}, {"YearMonth": "2025-04", "Category": "Probiotics", "totalRevenue": 2586.6, "totalRevenueExVAT": 2155.19, "totalCost": 790.2700000000001, "totalQty": 121.0, "orderCount": 110, "uniqueProducts": 2, "margin": 1364.92, "marginPct": 63.3317712127469}, {"YearMonth": "2025-04", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10050.800000000001, "totalRevenueExVAT": 8382.87, "totalCost": 2751.0400000000004, "totalQty": 368.0, "orderCount": 329, "uniqueProducts": 1, "margin": 5631.83, "marginPct": 67.18259975402219}, {"YearMonth": "2025-04", "Category": "Vitamin B", "totalRevenue": 4781.5, "totalRevenueExVAT": 3987.208333, "totalCost": 1403.54, "totalQty": 289.0, "orderCount": 258, "uniqueProducts": 11, "margin": 2583.668333, "marginPct": 64.79892990833595}, {"YearMonth": "2025-04", "Category": "Vitamin C", "totalRevenue": 1186.09, "totalRevenueExVAT": 990.1899999999999, "totalCost": 426.87, "totalQty": 79.0, "orderCount": 71, "uniqueProducts": 3, "margin": 563.3199999999999, "marginPct": 56.890091800563525}, {"YearMonth": "2025-04", "Category": "Vitamin D", "totalRevenue": 37.96, "totalRevenueExVAT": 31.64, "totalCost": 11.4, "totalQty": 4.0, "orderCount": 4, "uniqueProducts": 1, "margin": 20.240000000000002, "marginPct": 63.96965865992416}, {"YearMonth": "2025-04", "Category": "Vitamin E", "totalRevenue": 813.76, "totalRevenueExVAT": 680.24, "totalCost": 273.4, "totalQty": 29.0, "orderCount": 29, "uniqueProducts": 2, "margin": 406.84000000000003, "marginPct": 59.80830295189933}, {"YearMonth": "2025-04", "Category": "Vitamins To Aid Vision", "totalRevenue": 3250.59, "totalRevenueExVAT": 2714.77, "totalCost": 1038.04, "totalQty": 154.0, "orderCount": 135, "uniqueProducts": 2, "margin": 1676.73, "marginPct": 61.7632432950121}, {"YearMonth": "2025-05", "Category": "Amino Acids", "totalRevenue": 5340.37, "totalRevenueExVAT": 4456.97, "totalCost": 1799.38, "totalQty": 304.0, "orderCount": 254, "uniqueProducts": 7, "margin": 2657.59, "marginPct": 59.62772915231649}, {"YearMonth": "2025-05", "Category": "Bone Health", "totalRevenue": 10654.09, "totalRevenueExVAT": 8880.66, "totalCost": 3025.32, "totalQty": 733.0, "orderCount": 533, "uniqueProducts": 6, "margin": 5855.34, "marginPct": 65.93361304227389}, {"YearMonth": "2025-05", "Category": "Cod Liver Oil", "totalRevenue": 1973.53, "totalRevenueExVAT": 1644.49, "totalCost": 565.9499999999999, "totalQty": 113.0, "orderCount": 97, "uniqueProducts": 2, "margin": 1078.54, "marginPct": 65.5850750080572}, {"YearMonth": "2025-05", "Category": "Evening Primose Oils", "totalRevenue": 2813.9, "totalRevenueExVAT": 2349.29, "totalCost": 879.5, "totalQty": 136.0, "orderCount": 121, "uniqueProducts": 3, "margin": 1469.79, "marginPct": 62.56315737946358}, {"YearMonth": "2025-05", "Category": "Glucosamine", "totalRevenue": 6114.18, "totalRevenueExVAT": 5097.15, "totalCost": 2227.18, "totalQty": 273.0, "orderCount": 248, "uniqueProducts": 8, "margin": 2869.97, "marginPct": 56.30538634334873}, {"YearMonth": "2025-05", "Category": "Herbal Supplements", "totalRevenue": 8710.15, "totalRevenueExVAT": 7258.26, "totalCost": 3132.9, "totalQty": 437.0, "orderCount": 387, "uniqueProducts": 15, "margin": 4125.360000000001, "marginPct": 56.83676252986254}, {"YearMonth": "2025-05", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 968.92, "totalRevenueExVAT": 805.41, "totalCost": 233.77, "totalQty": 60.0, "orderCount": 42, "uniqueProducts": 1, "margin": 571.64, "marginPct": 70.9750313504923}, {"YearMonth": "2025-05", "Category": "Minerals", "totalRevenue": 1167.01, "totalRevenueExVAT": 972.6800000000001, "totalCost": 262.12, "totalQty": 76.0, "orderCount": 72, "uniqueProducts": 4, "margin": 710.5600000000001, "marginPct": 73.05177447875971}, {"YearMonth": "2025-05", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1465.8, "totalRevenueExVAT": 1223.57, "totalCost": 476.0, "totalQty": 73.0, "orderCount": 57, "uniqueProducts": 1, "margin": 747.5699999999999, "marginPct": 61.097444363624476}, {"YearMonth": "2025-05", "Category": "Multivitamins", "totalRevenue": 7386.34, "totalRevenueExVAT": 6153.2, "totalCost": 1998.43, "totalQty": 474.0, "orderCount": 418, "uniqueProducts": 6, "margin": 4154.7699999999995, "marginPct": 67.52210232074367}, {"YearMonth": "2025-05", "Category": "Natural Co Q10", "totalRevenue": 6751.820000000001, "totalRevenueExVAT": 5637.63, "totalCost": 3079.59, "totalQty": 200.0, "orderCount": 142, "uniqueProducts": 4, "margin": 2558.04, "marginPct": 45.37438604519984}, {"YearMonth": "2025-05", "Category": "Omega 3 Supplements", "totalRevenue": 5434.41, "totalRevenueExVAT": 4532.13, "totalCost": 1728.22, "totalQty": 325.0, "orderCount": 292, "uniqueProducts": 5, "margin": 2803.91, "marginPct": 61.86737803196289}, {"YearMonth": "2025-05", "Category": "Probiotics", "totalRevenue": 1702.99, "totalRevenueExVAT": 1418.94, "totalCost": 521.45, "totalQty": 83.0, "orderCount": 78, "uniqueProducts": 2, "margin": 897.49, "marginPct": 63.2507364652487}, {"YearMonth": "2025-05", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9482.04, "totalRevenueExVAT": 7902.26833, "totalCost": 2581.28, "totalQty": 360.0, "orderCount": 329, "uniqueProducts": 1, "margin": 5320.98833, "marginPct": 67.33494874882336}, {"YearMonth": "2025-05", "Category": "Vitamin B", "totalRevenue": 6122.21, "totalRevenueExVAT": 5102.85, "totalCost": 1837.3799999999999, "totalQty": 352.0, "orderCount": 320, "uniqueProducts": 11, "margin": 3265.4700000000003, "marginPct": 63.99306270025574}, {"YearMonth": "2025-05", "Category": "Vitamin C", "totalRevenue": 1453.95, "totalRevenueExVAT": 1212.3999999999999, "totalCost": 500.55, "totalQty": 86.0, "orderCount": 68, "uniqueProducts": 3, "margin": 711.8499999999999, "marginPct": 58.71412075222698}, {"YearMonth": "2025-05", "Category": "Vitamin D", "totalRevenue": 56.94, "totalRevenueExVAT": 47.46, "totalCost": 19.95, "totalQty": 7.0, "orderCount": 4, "uniqueProducts": 1, "margin": 27.51, "marginPct": 57.9646017699115}, {"YearMonth": "2025-05", "Category": "Vitamin E", "totalRevenue": 634.22, "totalRevenueExVAT": 530.58, "totalCost": 215.57999999999998, "totalQty": 22.0, "orderCount": 21, "uniqueProducts": 2, "margin": 315.00000000000006, "marginPct": 59.368992423385734}, {"YearMonth": "2025-05", "Category": "Vitamins To Aid Vision", "totalRevenue": 3182.79, "totalRevenueExVAT": 2652.97, "totalCost": 1022.1, "totalQty": 138.0, "orderCount": 128, "uniqueProducts": 3, "margin": 1630.87, "marginPct": 61.473367584254625}, {"YearMonth": "2025-06", "Category": "Amino Acids", "totalRevenue": 4596.33, "totalRevenueExVAT": 3833.56, "totalCost": 1520.6000000000001, "totalQty": 267.0, "orderCount": 239, "uniqueProducts": 7, "margin": 2312.96, "marginPct": 60.334519350160164}, {"YearMonth": "2025-06", "Category": "Bone Health", "totalRevenue": 9160.58, "totalRevenueExVAT": 7655.07, "totalCost": 2490.37, "totalQty": 650.0, "orderCount": 496, "uniqueProducts": 6, "margin": 5164.7, "marginPct": 67.46770441027972}, {"YearMonth": "2025-06", "Category": "Cod Liver Oil", "totalRevenue": 1624.81, "totalRevenueExVAT": 1356.16, "totalCost": 458.53, "totalQty": 102.0, "orderCount": 84, "uniqueProducts": 2, "margin": 897.6300000000001, "marginPct": 66.18909273242096}, {"YearMonth": "2025-06", "Category": "Evening Primose Oils", "totalRevenue": 2065.72, "totalRevenueExVAT": 1721.3600000000001, "totalCost": 627.38, "totalQty": 101.0, "orderCount": 92, "uniqueProducts": 3, "margin": 1093.98, "marginPct": 63.553236975414784}, {"YearMonth": "2025-06", "Category": "Glucosamine", "totalRevenue": 5940.57, "totalRevenueExVAT": 5005.04, "totalCost": 2119.0499999999997, "totalQty": 273.0, "orderCount": 218, "uniqueProducts": 10, "margin": 2885.9900000000002, "marginPct": 57.66167702955421}, {"YearMonth": "2025-06", "Category": "Herbal Supplements", "totalRevenue": 7119.34, "totalRevenueExVAT": 5950.01, "totalCost": 2573.61, "totalQty": 354.0, "orderCount": 301, "uniqueProducts": 15, "margin": 3376.4, "marginPct": 56.746123115759474}, {"YearMonth": "2025-06", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1023.89, "totalRevenueExVAT": 853.19, "totalCost": 257.87, "totalQty": 67.0, "orderCount": 65, "uniqueProducts": 1, "margin": 595.32, "marginPct": 69.77578265099216}, {"YearMonth": "2025-06", "Category": "Minerals", "totalRevenue": 843.23, "totalRevenueExVAT": 702.4200000000001, "totalCost": 201.98, "totalQty": 55.0, "orderCount": 49, "uniqueProducts": 4, "margin": 500.44000000000005, "marginPct": 71.2451239998861}, {"YearMonth": "2025-06", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1085.74, "totalRevenueExVAT": 904.6, "totalCost": 378.0, "totalQty": 56.0, "orderCount": 43, "uniqueProducts": 1, "margin": 526.6, "marginPct": 58.21357506080036}, {"YearMonth": "2025-06", "Category": "Multivitamins", "totalRevenue": 6527.599999999999, "totalRevenueExVAT": 5442.27, "totalCost": 1760.68, "totalQty": 423.0, "orderCount": 359, "uniqueProducts": 6, "margin": 3681.59, "marginPct": 67.64805862259682}, {"YearMonth": "2025-06", "Category": "Natural Co Q10", "totalRevenue": 5635.08, "totalRevenueExVAT": 4709.19, "totalCost": 2578.19, "totalQty": 170.0, "orderCount": 119, "uniqueProducts": 4, "margin": 2130.9999999999995, "marginPct": 45.251943540184186}, {"YearMonth": "2025-06", "Category": "Omega 3 Supplements", "totalRevenue": 4691.83, "totalRevenueExVAT": 3910.69, "totalCost": 1546.26, "totalQty": 280.0, "orderCount": 255, "uniqueProducts": 5, "margin": 2364.4300000000003, "marginPct": 60.46068596590373}, {"YearMonth": "2025-06", "Category": "Probiotics", "totalRevenue": 2090.64, "totalRevenueExVAT": 1742.23, "totalCost": 650.1800000000001, "totalQty": 97.0, "orderCount": 91, "uniqueProducts": 2, "margin": 1092.05, "marginPct": 62.68116149991677}, {"YearMonth": "2025-06", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8998.82, "totalRevenueExVAT": 7520.29, "totalCost": 2477.6600000000003, "totalQty": 323.0, "orderCount": 293, "uniqueProducts": 1, "margin": 5042.629999999999, "marginPct": 67.05366415390894}, {"YearMonth": "2025-06", "Category": "Vitamin B", "totalRevenue": 4682.08, "totalRevenueExVAT": 3904.73, "totalCost": 1339.03, "totalQty": 271.0, "orderCount": 249, "uniqueProducts": 12, "margin": 2565.7, "marginPct": 65.70748809776859}, {"YearMonth": "2025-06", "Category": "Vitamin C", "totalRevenue": 1266.4099999999999, "totalRevenueExVAT": 1059.8799999999999, "totalCost": 456.59, "totalQty": 70.0, "orderCount": 69, "uniqueProducts": 3, "margin": 603.29, "marginPct": 56.920594784315206}, {"YearMonth": "2025-06", "Category": "Vitamin D", "totalRevenue": 9.49, "totalRevenueExVAT": 7.91, "totalCost": 2.85, "totalQty": 1.0, "orderCount": 1, "uniqueProducts": 1, "margin": 5.0600000000000005, "marginPct": 63.96965865992416}, {"YearMonth": "2025-06", "Category": "Vitamin E", "totalRevenue": 618.98, "totalRevenueExVAT": 515.89, "totalCost": 207.12, "totalQty": 23.0, "orderCount": 22, "uniqueProducts": 2, "margin": 308.77, "marginPct": 59.85190641415805}, {"YearMonth": "2025-06", "Category": "Vitamins To Aid Vision", "totalRevenue": 3329.84, "totalRevenueExVAT": 2774.52, "totalCost": 1076.72, "totalQty": 141.0, "orderCount": 127, "uniqueProducts": 2, "margin": 1697.8, "marginPct": 61.19256664215792}, {"YearMonth": "2025-07", "Category": "Amino Acids", "totalRevenue": 4121.93, "totalRevenueExVAT": 3439.6, "totalCost": 1370.5, "totalQty": 243.0, "orderCount": 208, "uniqueProducts": 7, "margin": 2069.1, "marginPct": 60.1552506105361}, {"YearMonth": "2025-07", "Category": "Bone Health", "totalRevenue": 9496.1, "totalRevenueExVAT": 7917.29, "totalCost": 2662.7200000000003, "totalQty": 654.0, "orderCount": 507, "uniqueProducts": 6, "margin": 5254.57, "marginPct": 66.36829015989056}, {"YearMonth": "2025-07", "Category": "Cod Liver Oil", "totalRevenue": 1690.34, "totalRevenueExVAT": 1408.53, "totalCost": 496.46, "totalQty": 103.0, "orderCount": 96, "uniqueProducts": 2, "margin": 912.0699999999999, "marginPct": 64.75332438783697}, {"YearMonth": "2025-07", "Category": "Evening Primose Oils", "totalRevenue": 2254.06, "totalRevenueExVAT": 1879.52, "totalCost": 683.1800000000001, "totalQty": 111.0, "orderCount": 106, "uniqueProducts": 3, "margin": 1196.34, "marginPct": 63.65135779347918}, {"YearMonth": "2025-07", "Category": "Glucosamine", "totalRevenue": 6752.03, "totalRevenueExVAT": 5630.17, "totalCost": 2387.02, "totalQty": 300.0, "orderCount": 252, "uniqueProducts": 9, "margin": 3243.15, "marginPct": 57.603056390837224}, {"YearMonth": "2025-07", "Category": "Herbal Supplements", "totalRevenue": 7924.79, "totalRevenueExVAT": 6606.61, "totalCost": 2777.64, "totalQty": 408.0, "orderCount": 341, "uniqueProducts": 15, "margin": 3828.97, "marginPct": 57.95665250408303}, {"YearMonth": "2025-07", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 914.1899999999999, "totalRevenueExVAT": 761.88, "totalCost": 228.95000000000002, "totalQty": 55.0, "orderCount": 44, "uniqueProducts": 1, "margin": 532.93, "marginPct": 69.94933585341523}, {"YearMonth": "2025-07", "Category": "Minerals", "totalRevenue": 1070.34, "totalRevenueExVAT": 892.08, "totalCost": 243.96, "totalQty": 70.0, "orderCount": 64, "uniqueProducts": 4, "margin": 648.12, "marginPct": 72.65267688996502}, {"YearMonth": "2025-07", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 986.99, "totalRevenueExVAT": 822.29, "totalCost": 329.0, "totalQty": 49.0, "orderCount": 43, "uniqueProducts": 1, "margin": 493.28999999999996, "marginPct": 59.98978462586192}, {"YearMonth": "2025-07", "Category": "Multivitamins", "totalRevenue": 7228.63, "totalRevenueExVAT": 6031.1, "totalCost": 1967.94, "totalQty": 470.0, "orderCount": 392, "uniqueProducts": 6, "margin": 4063.1600000000003, "marginPct": 67.37013148513539}, {"YearMonth": "2025-07", "Category": "Natural Co Q10", "totalRevenue": 5293.32, "totalRevenueExVAT": 4415.39, "totalCost": 2269.48, "totalQty": 170.0, "orderCount": 144, "uniqueProducts": 4, "margin": 2145.9100000000003, "marginPct": 48.60068985978589}, {"YearMonth": "2025-07", "Category": "Omega 3 Supplements", "totalRevenue": 5409.19, "totalRevenueExVAT": 4508.59, "totalCost": 1765.5, "totalQty": 316.0, "orderCount": 279, "uniqueProducts": 5, "margin": 2743.09, "marginPct": 60.84141605246873}, {"YearMonth": "2025-07", "Category": "Probiotics", "totalRevenue": 2158.61, "totalRevenueExVAT": 1798.53, "totalCost": 666.6600000000001, "totalQty": 105.0, "orderCount": 101, "uniqueProducts": 2, "margin": 1131.87, "marginPct": 62.933062000633846}, {"YearMonth": "2025-07", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9414.01, "totalRevenueExVAT": 7845.83, "totalCost": 2599.6600000000003, "totalQty": 343.0, "orderCount": 309, "uniqueProducts": 1, "margin": 5246.17, "marginPct": 66.86571082982935}, {"YearMonth": "2025-07", "Category": "Vitamin B", "totalRevenue": 4626.29, "totalRevenueExVAT": 3858.3, "totalCost": 1353.19, "totalQty": 274.0, "orderCount": 251, "uniqueProducts": 11, "margin": 2505.11, "marginPct": 64.92781795091102}, {"YearMonth": "2025-07", "Category": "Vitamin C", "totalRevenue": 1247.76, "totalRevenueExVAT": 1040.54, "totalCost": 445.41, "totalQty": 72.0, "orderCount": 66, "uniqueProducts": 3, "margin": 595.1299999999999, "marginPct": 57.19434139965786}, {"YearMonth": "2025-07", "Category": "Vitamin D", "totalRevenue": 18.98, "totalRevenueExVAT": 15.82, "totalCost": 5.7, "totalQty": 2.0, "orderCount": 2, "uniqueProducts": 1, "margin": 10.120000000000001, "marginPct": 63.96965865992416}, {"YearMonth": "2025-07", "Category": "Vitamin E", "totalRevenue": 579.23, "totalRevenueExVAT": 482.76, "totalCost": 194.04, "totalQty": 22.0, "orderCount": 21, "uniqueProducts": 2, "margin": 288.72, "marginPct": 59.8061148396719}, {"YearMonth": "2025-07", "Category": "Vitamins To Aid Vision", "totalRevenue": 3489.47, "totalRevenueExVAT": 2908.79, "totalCost": 1129.6200000000001, "totalQty": 151.0, "orderCount": 135, "uniqueProducts": 2, "margin": 1779.1699999999998, "marginPct": 61.165295535256924}, {"YearMonth": "2025-08", "Category": "Amino Acids", "totalRevenue": 4491.639999999999, "totalRevenueExVAT": 3748.46, "totalCost": 1486.5900000000001, "totalQty": 256.0, "orderCount": 233, "uniqueProducts": 6, "margin": 2261.87, "marginPct": 60.34131349941042}, {"YearMonth": "2025-08", "Category": "Bone Health", "totalRevenue": 9802.65, "totalRevenueExVAT": 8176.6900000000005, "totalCost": 2675.43, "totalQty": 703.0, "orderCount": 545, "uniqueProducts": 6, "margin": 5501.26, "marginPct": 67.27979170055364}, {"YearMonth": "2025-08", "Category": "Cod Liver Oil", "totalRevenue": 1849.08, "totalRevenueExVAT": 1541.428333, "totalCost": 541.3399999999999, "totalQty": 108.0, "orderCount": 102, "uniqueProducts": 2, "margin": 1000.0883330000001, "marginPct": 64.88062478088627}, {"YearMonth": "2025-08", "Category": "Evening Primose Oils", "totalRevenue": 2225.69, "totalRevenueExVAT": 1853.8000000000002, "totalCost": 667.76, "totalQty": 114.0, "orderCount": 107, "uniqueProducts": 3, "margin": 1186.0400000000002, "marginPct": 63.97885424533391}, {"YearMonth": "2025-08", "Category": "Glucosamine", "totalRevenue": 7194.6, "totalRevenueExVAT": 6007.37, "totalCost": 2612.0299999999997, "totalQty": 325.0, "orderCount": 276, "uniqueProducts": 9, "margin": 3395.34, "marginPct": 56.51957512189194}, {"YearMonth": "2025-08", "Category": "Herbal Supplements", "totalRevenue": 8266.2, "totalRevenueExVAT": 6900.53, "totalCost": 2932.44, "totalQty": 407.0, "orderCount": 347, "uniqueProducts": 15, "margin": 3968.0899999999997, "marginPct": 57.50413374045181}, {"YearMonth": "2025-08", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 920.29, "totalRevenueExVAT": 766.94, "totalCost": 228.95000000000002, "totalQty": 58.0, "orderCount": 51, "uniqueProducts": 1, "margin": 537.99, "marginPct": 70.14759955146425}, {"YearMonth": "2025-08", "Category": "Minerals", "totalRevenue": 1097.46, "totalRevenueExVAT": 917.2500000000001, "totalCost": 242.24, "totalQty": 72.0, "orderCount": 66, "uniqueProducts": 3, "margin": 675.0100000000001, "marginPct": 73.59062414826928}, {"YearMonth": "2025-08", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1191.11, "totalRevenueExVAT": 992.39, "totalCost": 406.0, "totalQty": 60.0, "orderCount": 46, "uniqueProducts": 1, "margin": 586.39, "marginPct": 59.08866473866121}, {"YearMonth": "2025-08", "Category": "Multivitamins", "totalRevenue": 7766.429999999999, "totalRevenueExVAT": 6472.4800000000005, "totalCost": 2123.31, "totalQty": 478.0, "orderCount": 405, "uniqueProducts": 6, "margin": 4349.17, "marginPct": 67.19480013843226}, {"YearMonth": "2025-08", "Category": "Natural Co Q10", "totalRevenue": 5478.01, "totalRevenueExVAT": 4575.76, "totalCost": 2482.91, "totalQty": 163.0, "orderCount": 123, "uniqueProducts": 4, "margin": 2092.8500000000004, "marginPct": 45.73775722502929}, {"YearMonth": "2025-08", "Category": "Omega 3 Supplements", "totalRevenue": 5249.94, "totalRevenueExVAT": 4375.59, "totalCost": 1678.09, "totalQty": 313.0, "orderCount": 278, "uniqueProducts": 5, "margin": 2697.5, "marginPct": 61.64882907219369}, {"YearMonth": "2025-08", "Category": "Probiotics", "totalRevenue": 2203.13, "totalRevenueExVAT": 1836.24, "totalCost": 682.7900000000001, "totalQty": 105.0, "orderCount": 98, "uniqueProducts": 2, "margin": 1153.4499999999998, "marginPct": 62.815862850172074}, {"YearMonth": "2025-08", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9202.6, "totalRevenueExVAT": 7670.12, "totalCost": 2511.0600000000004, "totalQty": 345.0, "orderCount": 313, "uniqueProducts": 1, "margin": 5159.0599999999995, "marginPct": 67.2617899068072}, {"YearMonth": "2025-08", "Category": "Vitamin B", "totalRevenue": 5026.95, "totalRevenueExVAT": 4190.58, "totalCost": 1478.4, "totalQty": 297.0, "orderCount": 258, "uniqueProducts": 11, "margin": 2712.18, "marginPct": 64.72087396016781}, {"YearMonth": "2025-08", "Category": "Vitamin C", "totalRevenue": 880.0799999999999, "totalRevenueExVAT": 733.8199999999999, "totalCost": 296.57, "totalQty": 56.0, "orderCount": 48, "uniqueProducts": 3, "margin": 437.24999999999994, "marginPct": 59.58545692404131}, {"YearMonth": "2025-08", "Category": "Vitamin E", "totalRevenue": 574.75, "totalRevenueExVAT": 478.99, "totalCost": 195.26, "totalQty": 20.0, "orderCount": 19, "uniqueProducts": 2, "margin": 283.73, "marginPct": 59.23505709931314}, {"YearMonth": "2025-08", "Category": "Vitamins To Aid Vision", "totalRevenue": 2898.04, "totalRevenueExVAT": 2416.34833, "totalCost": 925.82, "totalQty": 125.0, "orderCount": 115, "uniqueProducts": 2, "margin": 1490.5283299999996, "marginPct": 61.68515985441552}, {"YearMonth": "2025-09", "Category": "Amino Acids", "totalRevenue": 3651.87, "totalRevenueExVAT": 3044.94, "totalCost": 1197.0, "totalQty": 217.0, "orderCount": 196, "uniqueProducts": 6, "margin": 1847.94, "marginPct": 60.68888056907525}, {"YearMonth": "2025-09", "Category": "Bone Health", "totalRevenue": 8670.9, "totalRevenueExVAT": 7228.6, "totalCost": 2245.45, "totalQty": 640.0, "orderCount": 494, "uniqueProducts": 6, "margin": 4983.150000000001, "marginPct": 68.93658523088841}, {"YearMonth": "2025-09", "Category": "Cod Liver Oil", "totalRevenue": 1669.68, "totalRevenueExVAT": 1391.31, "totalCost": 491.21999999999997, "totalQty": 101.0, "orderCount": 87, "uniqueProducts": 3, "margin": 900.0899999999999, "marginPct": 64.69370593181965}, {"YearMonth": "2025-09", "Category": "Evening Primose Oils", "totalRevenue": 1778.05, "totalRevenueExVAT": 1481.63, "totalCost": 544.4200000000001, "totalQty": 92.0, "orderCount": 86, "uniqueProducts": 3, "margin": 937.21, "marginPct": 63.255333652801305}, {"YearMonth": "2025-09", "Category": "Glucosamine", "totalRevenue": 4862.39, "totalRevenueExVAT": 4052.39, "totalCost": 1760.31, "totalQty": 219.0, "orderCount": 189, "uniqueProducts": 9, "margin": 2292.08, "marginPct": 56.561189816379965}, {"YearMonth": "2025-09", "Category": "Herbal Supplements", "totalRevenue": 6992.92, "totalRevenueExVAT": 5832.2300000000005, "totalCost": 2515.43, "totalQty": 344.0, "orderCount": 301, "uniqueProducts": 15, "margin": 3316.8000000000006, "marginPct": 56.87018516073612}, {"YearMonth": "2025-09", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 710.2, "totalRevenueExVAT": 591.88, "totalCost": 175.93, "totalQty": 43.0, "orderCount": 39, "uniqueProducts": 1, "margin": 415.95, "marginPct": 70.27606947354194}, {"YearMonth": "2025-09", "Category": "Minerals", "totalRevenue": 872.05, "totalRevenueExVAT": 726.82, "totalCost": 206.12, "totalQty": 56.0, "orderCount": 48, "uniqueProducts": 4, "margin": 520.7, "marginPct": 71.64084642690075}, {"YearMonth": "2025-09", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1135.02, "totalRevenueExVAT": 946.67, "totalCost": 371.0, "totalQty": 55.0, "orderCount": 44, "uniqueProducts": 1, "margin": 575.67, "marginPct": 60.80999714789736}, {"YearMonth": "2025-09", "Category": "Multivitamins", "totalRevenue": 7199.2807999999995, "totalRevenueExVAT": 6011.305670000001, "totalCost": 1928.74, "totalQty": 461.0, "orderCount": 391, "uniqueProducts": 6, "margin": 4082.565670000001, "marginPct": 67.91479079785341}, {"YearMonth": "2025-09", "Category": "Natural Co Q10", "totalRevenue": 4460.92, "totalRevenueExVAT": 3719.04, "totalCost": 2004.09, "totalQty": 132.0, "orderCount": 100, "uniqueProducts": 3, "margin": 1714.95, "marginPct": 46.112706504904494}, {"YearMonth": "2025-09", "Category": "Omega 3 Supplements", "totalRevenue": 4180.2, "totalRevenueExVAT": 3488.84, "totalCost": 1338.01, "totalQty": 255.0, "orderCount": 228, "uniqueProducts": 5, "margin": 2150.83, "marginPct": 61.64885749991401}, {"YearMonth": "2025-09", "Category": "Probiotics", "totalRevenue": 2397.56, "totalRevenueExVAT": 1997.2, "totalCost": 750.95, "totalQty": 111.0, "orderCount": 97, "uniqueProducts": 2, "margin": 1246.25, "marginPct": 62.399859803725214}, {"YearMonth": "2025-09", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8306.44, "totalRevenueExVAT": 6922.2, "totalCost": 2271.5400000000004, "totalQty": 305.0, "orderCount": 274, "uniqueProducts": 1, "margin": 4650.66, "marginPct": 67.18471006327468}, {"YearMonth": "2025-09", "Category": "Vitamin B", "totalRevenue": 4716.099999999999, "totalRevenueExVAT": 3933.2, "totalCost": 1356.86, "totalQty": 284.0, "orderCount": 261, "uniqueProducts": 11, "margin": 2576.34, "marginPct": 65.50238991152243}, {"YearMonth": "2025-09", "Category": "Vitamin C", "totalRevenue": 1598.06, "totalRevenueExVAT": 1333.52, "totalCost": 534.37, "totalQty": 104.0, "orderCount": 67, "uniqueProducts": 3, "margin": 799.15, "marginPct": 59.92786009958606}, {"YearMonth": "2025-09", "Category": "Vitamin D", "totalRevenue": 142.35000000000002, "totalRevenueExVAT": 118.64999999999999, "totalCost": 42.75, "totalQty": 15.0, "orderCount": 3, "uniqueProducts": 1, "margin": 75.89999999999999, "marginPct": 63.96965865992414}, {"YearMonth": "2025-09", "Category": "Vitamin E", "totalRevenue": 486.69, "totalRevenueExVAT": 405.11, "totalCost": 165.0, "totalQty": 19.0, "orderCount": 19, "uniqueProducts": 1, "margin": 240.11, "marginPct": 59.27032164103577}, {"YearMonth": "2025-09", "Category": "Vitamins To Aid Vision", "totalRevenue": 3277.54, "totalRevenueExVAT": 2734.77, "totalCost": 1049.3, "totalQty": 133.0, "orderCount": 121, "uniqueProducts": 2, "margin": 1685.47, "marginPct": 61.63114265550668}, {"YearMonth": "2025-10", "Category": "Amino Acids", "totalRevenue": 4289.74, "totalRevenueExVAT": 3580.4700000000003, "totalCost": 1435.65, "totalQty": 241.0, "orderCount": 208, "uniqueProducts": 6, "margin": 2144.82, "marginPct": 59.90330878348373}, {"YearMonth": "2025-10", "Category": "Bone Health", "totalRevenue": 11390.34, "totalRevenueExVAT": 9496.79, "totalCost": 3138.8, "totalQty": 802.0, "orderCount": 592, "uniqueProducts": 6, "margin": 6357.990000000001, "marginPct": 66.9488321843486}, {"YearMonth": "2025-10", "Category": "Cod Liver Oil", "totalRevenue": 1972.73, "totalRevenueExVAT": 1643.83, "totalCost": 581.55, "totalQty": 121.0, "orderCount": 106, "uniqueProducts": 2, "margin": 1062.28, "marginPct": 64.62225412603493}, {"YearMonth": "2025-10", "Category": "Evening Primose Oils", "totalRevenue": 2281.23, "totalRevenueExVAT": 1900.99, "totalCost": 684.1, "totalQty": 115.0, "orderCount": 105, "uniqueProducts": 3, "margin": 1216.8899999999999, "marginPct": 64.01348770903581}, {"YearMonth": "2025-10", "Category": "Glucosamine", "totalRevenue": 5584.2, "totalRevenueExVAT": 4653.26, "totalCost": 2036.57, "totalQty": 239.0, "orderCount": 200, "uniqueProducts": 8, "margin": 2616.6900000000005, "marginPct": 56.23347932417274}, {"YearMonth": "2025-10", "Category": "Herbal Supplements", "totalRevenue": 6608.03, "totalRevenueExVAT": 5508.39, "totalCost": 2350.2200000000003, "totalQty": 328.0, "orderCount": 286, "uniqueProducts": 15, "margin": 3158.17, "marginPct": 57.33381260223042}, {"YearMonth": "2025-10", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 939.74, "totalRevenueExVAT": 783.1700000000001, "totalCost": 236.18, "totalQty": 63.0, "orderCount": 54, "uniqueProducts": 1, "margin": 546.99, "marginPct": 69.84307366216785}, {"YearMonth": "2025-10", "Category": "Minerals", "totalRevenue": 1104.9099999999999, "totalRevenueExVAT": 921.59, "totalCost": 254.32, "totalQty": 72.0, "orderCount": 67, "uniqueProducts": 4, "margin": 667.27, "marginPct": 72.40421445545199}, {"YearMonth": "2025-10", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1029.89, "totalRevenueExVAT": 859.06, "totalCost": 339.5, "totalQty": 50.0, "orderCount": 41, "uniqueProducts": 1, "margin": 519.56, "marginPct": 60.480059600027936}, {"YearMonth": "2025-10", "Category": "Multivitamins", "totalRevenue": 6940.5199999999995, "totalRevenueExVAT": 5785.6, "totalCost": 1876.35, "totalQty": 461.0, "orderCount": 401, "uniqueProducts": 6, "margin": 3909.2500000000005, "marginPct": 67.56861863938055}, {"YearMonth": "2025-10", "Category": "Natural Co Q10", "totalRevenue": 5744.47, "totalRevenueExVAT": 4791.83, "totalCost": 2546.1, "totalQty": 175.0, "orderCount": 134, "uniqueProducts": 3, "margin": 2245.73, "marginPct": 46.865811182784036}, {"YearMonth": "2025-10", "Category": "Omega 3 Supplements", "totalRevenue": 5265.69, "totalRevenueExVAT": 4393.76, "totalCost": 1683.85, "totalQty": 305.0, "orderCount": 270, "uniqueProducts": 5, "margin": 2709.9100000000003, "marginPct": 61.67633188886057}, {"YearMonth": "2025-10", "Category": "Probiotics", "totalRevenue": 2232.72, "totalRevenueExVAT": 1859.08, "totalCost": 695.62, "totalQty": 107.0, "orderCount": 106, "uniqueProducts": 2, "margin": 1163.46, "marginPct": 62.582567721668795}, {"YearMonth": "2025-10", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9957.65, "totalRevenueExVAT": 8303.95, "totalCost": 2728.1200000000003, "totalQty": 358.0, "orderCount": 319, "uniqueProducts": 1, "margin": 5575.83, "marginPct": 67.1467193323659}, {"YearMonth": "2025-10", "Category": "Vitamin B", "totalRevenue": 4420.45, "totalRevenueExVAT": 3683.9700000000003, "totalCost": 1331.8, "totalQty": 262.0, "orderCount": 233, "uniqueProducts": 9, "margin": 2352.17, "marginPct": 63.84878269909907}, {"YearMonth": "2025-10", "Category": "Vitamin C", "totalRevenue": 1511.6, "totalRevenueExVAT": 1260.4099999999999, "totalCost": 531.75, "totalQty": 89.0, "orderCount": 78, "uniqueProducts": 3, "margin": 728.6599999999999, "marginPct": 57.81134710134004}, {"YearMonth": "2025-10", "Category": "Vitamin D", "totalRevenue": 47.45, "totalRevenueExVAT": 39.55, "totalCost": 14.25, "totalQty": 5.0, "orderCount": 4, "uniqueProducts": 1, "margin": 25.299999999999997, "marginPct": 63.96965865992414}, {"YearMonth": "2025-10", "Category": "Vitamin E", "totalRevenue": 444.98, "totalRevenueExVAT": 370.37, "totalCost": 150.0, "totalQty": 19.0, "orderCount": 18, "uniqueProducts": 1, "margin": 220.37, "marginPct": 59.4999594999595}, {"YearMonth": "2025-10", "Category": "Vitamins To Aid Vision", "totalRevenue": 4378.09, "totalRevenueExVAT": 3648.95, "totalCost": 1411.68, "totalQty": 183.0, "orderCount": 150, "uniqueProducts": 2, "margin": 2237.2699999999995, "marginPct": 61.312706394990336}, {"YearMonth": "2025-11", "Category": "Amino Acids", "totalRevenue": 2973.73, "totalRevenueExVAT": 2484.2000000000003, "totalCost": 1003.9100000000001, "totalQty": 165.0, "orderCount": 151, "uniqueProducts": 6, "margin": 1480.2900000000002, "marginPct": 59.588197407616136}, {"YearMonth": "2025-11", "Category": "Bone Health", "totalRevenue": 9231.22, "totalRevenueExVAT": 7692.08, "totalCost": 2439.92, "totalQty": 669.0, "orderCount": 501, "uniqueProducts": 6, "margin": 5252.16, "marginPct": 68.28010109099229}, {"YearMonth": "2025-11", "Category": "Cod Liver Oil", "totalRevenue": 1348.21, "totalRevenueExVAT": 1123.39, "totalCost": 385.56, "totalQty": 80.0, "orderCount": 76, "uniqueProducts": 2, "margin": 737.8300000000002, "marginPct": 65.67888266763991}, {"YearMonth": "2025-11", "Category": "Evening Primose Oils", "totalRevenue": 1966.3799999999999, "totalRevenueExVAT": 1638.65, "totalCost": 592.1800000000001, "totalQty": 94.0, "orderCount": 88, "uniqueProducts": 3, "margin": 1046.47, "marginPct": 63.86171543648735}, {"YearMonth": "2025-11", "Category": "Glucosamine", "totalRevenue": 4373.98, "totalRevenueExVAT": 3649.4, "totalCost": 1620.7, "totalQty": 189.0, "orderCount": 170, "uniqueProducts": 7, "margin": 2028.7, "marginPct": 55.58995999342358}, {"YearMonth": "2025-11", "Category": "Herbal Supplements", "totalRevenue": 6619.58, "totalRevenueExVAT": 5517.53, "totalCost": 2333.08, "totalQty": 329.0, "orderCount": 280, "uniqueProducts": 15, "margin": 3184.45, "marginPct": 57.71513702689428}, {"YearMonth": "2025-11", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 784.0, "totalRevenueExVAT": 659.18, "totalCost": 195.21, "totalQty": 49.0, "orderCount": 40, "uniqueProducts": 1, "margin": 463.9699999999999, "marginPct": 70.38593403926089}, {"YearMonth": "2025-11", "Category": "Minerals", "totalRevenue": 1107.1599999999999, "totalRevenueExVAT": 923.0100000000001, "totalCost": 252.16, "totalQty": 72.0, "orderCount": 65, "uniqueProducts": 4, "margin": 670.8500000000001, "marginPct": 72.68068601640286}, {"YearMonth": "2025-11", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 723.54, "totalRevenueExVAT": 602.8199999999999, "totalCost": 238.0, "totalQty": 36.0, "orderCount": 32, "uniqueProducts": 1, "margin": 364.81999999999994, "marginPct": 60.518894529046804}, {"YearMonth": "2025-11", "Category": "Multivitamins", "totalRevenue": 6788.49, "totalRevenueExVAT": 5661.360000000001, "totalCost": 1827.53, "totalQty": 426.0, "orderCount": 358, "uniqueProducts": 6, "margin": 3833.830000000001, "marginPct": 67.7192406064974}, {"YearMonth": "2025-11", "Category": "Natural Co Q10", "totalRevenue": 4592.57, "totalRevenueExVAT": 3847.46, "totalCost": 2386.76, "totalQty": 155.0, "orderCount": 107, "uniqueProducts": 3, "margin": 1460.6999999999998, "marginPct": 37.965306981748995}, {"YearMonth": "2025-11", "Category": "Omega 3 Supplements", "totalRevenue": 5085.54, "totalRevenueExVAT": 4244.56, "totalCost": 1683.91, "totalQty": 316.0, "orderCount": 264, "uniqueProducts": 5, "margin": 2560.6500000000005, "marginPct": 60.32780782931565}, {"YearMonth": "2025-11", "Category": "Probiotics", "totalRevenue": 1951.56, "totalRevenueExVAT": 1625.54, "totalCost": 590.85, "totalQty": 90.0, "orderCount": 82, "uniqueProducts": 2, "margin": 1034.69, "marginPct": 63.65207869384943}, {"YearMonth": "2025-11", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7311.12, "totalRevenueExVAT": 6104.66, "totalCost": 1994.1800000000003, "totalQty": 261.0, "orderCount": 238, "uniqueProducts": 1, "margin": 4110.48, "marginPct": 67.33347966962943}, {"YearMonth": "2025-11", "Category": "Vitamin B", "totalRevenue": 3947.5899999999997, "totalRevenueExVAT": 3289.9700000000003, "totalCost": 1166.7, "totalQty": 253.0, "orderCount": 218, "uniqueProducts": 9, "margin": 2123.2700000000004, "marginPct": 64.53767055626648}, {"YearMonth": "2025-11", "Category": "Vitamin C", "totalRevenue": 1215.3, "totalRevenueExVAT": 1012.67, "totalCost": 427.79, "totalQty": 71.0, "orderCount": 56, "uniqueProducts": 3, "margin": 584.8799999999999, "marginPct": 57.756228583842706}, {"YearMonth": "2025-11", "Category": "Vitamin D", "totalRevenue": 18.98, "totalRevenueExVAT": 15.82, "totalCost": 5.7, "totalQty": 2.0, "orderCount": 1, "uniqueProducts": 1, "margin": 10.120000000000001, "marginPct": 63.96965865992416}, {"YearMonth": "2025-11", "Category": "Vitamin E", "totalRevenue": 493.84, "totalRevenueExVAT": 411.58, "totalCost": 165.0, "totalQty": 20.0, "orderCount": 20, "uniqueProducts": 1, "margin": 246.57999999999998, "marginPct": 59.91058846396812}, {"YearMonth": "2025-11", "Category": "Vitamins To Aid Vision", "totalRevenue": 2721.27, "totalRevenueExVAT": 2268.77, "totalCost": 865.46, "totalQty": 115.0, "orderCount": 107, "uniqueProducts": 2, "margin": 1403.31, "marginPct": 61.85333903392587}, {"YearMonth": "2025-12", "Category": "Amino Acids", "totalRevenue": 2943.13, "totalRevenueExVAT": 2463.27, "totalCost": 975.19, "totalQty": 151.0, "orderCount": 128, "uniqueProducts": 5, "margin": 1488.08, "marginPct": 60.41075480966357}, {"YearMonth": "2025-12", "Category": "Bone Health", "totalRevenue": 6803.0199999999995, "totalRevenueExVAT": 5676.77, "totalCost": 1763.83, "totalQty": 505.0, "orderCount": 390, "uniqueProducts": 6, "margin": 3912.9400000000005, "marginPct": 68.92898602550395}, {"YearMonth": "2025-12", "Category": "Cod Liver Oil", "totalRevenue": 1575.68, "totalRevenueExVAT": 1317.02, "totalCost": 463.2, "totalQty": 95.0, "orderCount": 80, "uniqueProducts": 2, "margin": 853.8199999999999, "marginPct": 64.82969127272175}, {"YearMonth": "2025-12", "Category": "Evening Primose Oils", "totalRevenue": 1539.92, "totalRevenueExVAT": 1283.21, "totalCost": 463.96000000000004, "totalQty": 77.0, "orderCount": 70, "uniqueProducts": 3, "margin": 819.25, "marginPct": 63.84379797538984}, {"YearMonth": "2025-12", "Category": "Glucosamine", "totalRevenue": 4925.86, "totalRevenueExVAT": 4108.24, "totalCost": 1722.3799999999999, "totalQty": 228.0, "orderCount": 194, "uniqueProducts": 8, "margin": 2385.8599999999997, "marginPct": 58.07499075029696}, {"YearMonth": "2025-12", "Category": "Herbal Supplements", "totalRevenue": 6229.83, "totalRevenueExVAT": 5195.38, "totalCost": 2206.57, "totalQty": 313.0, "orderCount": 265, "uniqueProducts": 15, "margin": 2988.81, "marginPct": 57.52822700168226}, {"YearMonth": "2025-12", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 691.88, "totalRevenueExVAT": 576.6, "totalCost": 171.11, "totalQty": 46.0, "orderCount": 39, "uniqueProducts": 1, "margin": 405.49, "marginPct": 70.32431494970517}, {"YearMonth": "2025-12", "Category": "Minerals", "totalRevenue": 655.78, "totalRevenueExVAT": 546.5500000000001, "totalCost": 145.32, "totalQty": 43.0, "orderCount": 36, "uniqueProducts": 4, "margin": 401.2300000000001, "marginPct": 73.41139877412863}, {"YearMonth": "2025-12", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 785.44, "totalRevenueExVAT": 654.4, "totalCost": 259.0, "totalQty": 38.0, "orderCount": 33, "uniqueProducts": 1, "margin": 395.4, "marginPct": 60.42176039119804}, {"YearMonth": "2025-12", "Category": "Multivitamins", "totalRevenue": 6079.59, "totalRevenueExVAT": 5063.900000000001, "totalCost": 1620.54, "totalQty": 406.0, "orderCount": 339, "uniqueProducts": 6, "margin": 3443.3600000000006, "marginPct": 67.99818321846797}, {"YearMonth": "2025-12", "Category": "Natural Co Q10", "totalRevenue": 4531.33, "totalRevenueExVAT": 3775.87, "totalCost": 2607.02, "totalQty": 165.0, "orderCount": 121, "uniqueProducts": 3, "margin": 1168.85, "marginPct": 30.95577972758596}, {"YearMonth": "2025-12", "Category": "Omega 3 Supplements", "totalRevenue": 3878.6, "totalRevenueExVAT": 3233.15, "totalCost": 1227.1, "totalQty": 237.0, "orderCount": 202, "uniqueProducts": 5, "margin": 2006.0500000000002, "marginPct": 62.04630159442031}, {"YearMonth": "2025-12", "Category": "Probiotics", "totalRevenue": 2122.98, "totalRevenueExVAT": 1768.84, "totalCost": 654.36, "totalQty": 98.0, "orderCount": 88, "uniqueProducts": 2, "margin": 1114.48, "marginPct": 63.00626399222089}, {"YearMonth": "2025-12", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6280.99, "totalRevenueExVAT": 5234.39, "totalCost": 1734.2800000000002, "totalQty": 234.0, "orderCount": 217, "uniqueProducts": 1, "margin": 3500.11, "marginPct": 66.86758151379625}, {"YearMonth": "2025-12", "Category": "Vitamin B", "totalRevenue": 3469.35, "totalRevenueExVAT": 2891.59, "totalCost": 1023.42, "totalQty": 218.0, "orderCount": 188, "uniqueProducts": 8, "margin": 1868.17, "marginPct": 64.6070155174143}, {"YearMonth": "2025-12", "Category": "Vitamin C", "totalRevenue": 931.3, "totalRevenueExVAT": 776.85, "totalCost": 351.41, "totalQty": 58.0, "orderCount": 50, "uniqueProducts": 3, "margin": 425.44, "marginPct": 54.76475510072729}, {"YearMonth": "2025-12", "Category": "Vitamin D", "totalRevenue": 18.98, "totalRevenueExVAT": 15.82, "totalCost": 5.7, "totalQty": 2.0, "orderCount": 2, "uniqueProducts": 1, "margin": 10.120000000000001, "marginPct": 63.96965865992416}, {"YearMonth": "2025-12", "Category": "Vitamin E", "totalRevenue": 243.29, "totalRevenueExVAT": 202.75, "totalCost": 82.5, "totalQty": 11.0, "orderCount": 11, "uniqueProducts": 1, "margin": 120.25, "marginPct": 59.3094944512947}, {"YearMonth": "2025-12", "Category": "Vitamins To Aid Vision", "totalRevenue": 2739.77, "totalRevenueExVAT": 2283.98, "totalCost": 879.84, "totalQty": 119.0, "orderCount": 106, "uniqueProducts": 2, "margin": 1404.1399999999999, "marginPct": 61.47777125894272}, {"YearMonth": "2026-01", "Category": "Amino Acids", "totalRevenue": 1490.87, "totalRevenueExVAT": 1247.83, "totalCost": 479.04, "totalQty": 76.0, "orderCount": 72, "uniqueProducts": 5, "margin": 768.79, "marginPct": 61.61015522947838}, {"YearMonth": "2026-01", "Category": "Bone Health", "totalRevenue": 4058.94, "totalRevenueExVAT": 3385.55, "totalCost": 1127.9, "totalQty": 278.0, "orderCount": 212, "uniqueProducts": 5, "margin": 2257.65, "marginPct": 66.68488133390439}, {"YearMonth": "2026-01", "Category": "Cod Liver Oil", "totalRevenue": 676.39, "totalRevenueExVAT": 563.62, "totalCost": 215.31, "totalQty": 41.0, "orderCount": 37, "uniqueProducts": 2, "margin": 348.31, "marginPct": 61.79872964053795}, {"YearMonth": "2026-01", "Category": "Evening Primose Oils", "totalRevenue": 766.72, "totalRevenueExVAT": 638.94, "totalCost": 224.9, "totalQty": 38.0, "orderCount": 36, "uniqueProducts": 2, "margin": 414.0400000000001, "marginPct": 64.80107678342254}, {"YearMonth": "2026-01", "Category": "Glucosamine", "totalRevenue": 2253.59, "totalRevenueExVAT": 1888.4, "totalCost": 833.24, "totalQty": 102.0, "orderCount": 83, "uniqueProducts": 7, "margin": 1055.16, "marginPct": 55.87587375556027}, {"YearMonth": "2026-01", "Category": "Herbal Supplements", "totalRevenue": 3195.47, "totalRevenueExVAT": 2675.96, "totalCost": 1136.83, "totalQty": 157.0, "orderCount": 129, "uniqueProducts": 15, "margin": 1539.13, "marginPct": 57.516928504163}, {"YearMonth": "2026-01", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 337.71999999999997, "totalRevenueExVAT": 285.08, "totalCost": 96.4, "totalQty": 23.0, "orderCount": 16, "uniqueProducts": 1, "margin": 188.67999999999998, "marginPct": 66.1849305458117}, {"YearMonth": "2026-01", "Category": "Minerals", "totalRevenue": 395.71999999999997, "totalRevenueExVAT": 329.81, "totalCost": 93.7, "totalQty": 27.0, "orderCount": 25, "uniqueProducts": 4, "margin": 236.11, "marginPct": 71.58970316242686}, {"YearMonth": "2026-01", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 337.82, "totalRevenueExVAT": 281.48, "totalCost": 108.5, "totalQty": 16.0, "orderCount": 15, "uniqueProducts": 1, "margin": 172.98000000000002, "marginPct": 61.45374449339207}, {"YearMonth": "2026-01", "Category": "Multivitamins", "totalRevenue": 2983.63, "totalRevenueExVAT": 2488.28833, "totalCost": 809.78, "totalQty": 186.0, "orderCount": 160, "uniqueProducts": 6, "margin": 1678.50833, "marginPct": 67.45634377508011}, {"YearMonth": "2026-01", "Category": "Natural Co Q10", "totalRevenue": 1916.52, "totalRevenueExVAT": 1600.62, "totalCost": 1067.08, "totalQty": 68.0, "orderCount": 50, "uniqueProducts": 3, "margin": 533.54, "marginPct": 33.33333333333333}, {"YearMonth": "2026-01", "Category": "Omega 3 Supplements", "totalRevenue": 2079.08, "totalRevenueExVAT": 1734.47, "totalCost": 642.17, "totalQty": 130.0, "orderCount": 114, "uniqueProducts": 5, "margin": 1092.3000000000002, "marginPct": 62.976009962697546}, {"YearMonth": "2026-01", "Category": "Probiotics", "totalRevenue": 980.4399999999999, "totalRevenueExVAT": 816.96, "totalCost": 300.25, "totalQty": 43.0, "orderCount": 38, "uniqueProducts": 2, "margin": 516.71, "marginPct": 63.247894633764204}, {"YearMonth": "2026-01", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 2879.81, "totalRevenueExVAT": 2399.59, "totalCost": 794.2, "totalQty": 110.0, "orderCount": 103, "uniqueProducts": 1, "margin": 1605.39, "marginPct": 66.90267920769799}, {"YearMonth": "2026-01", "Category": "Vitamin B", "totalRevenue": 1863.3, "totalRevenueExVAT": 1555.78, "totalCost": 505.57, "totalQty": 113.0, "orderCount": 100, "uniqueProducts": 7, "margin": 1050.21, "marginPct": 67.50376017174665}, {"YearMonth": "2026-01", "Category": "Vitamin C", "totalRevenue": 496.2, "totalRevenueExVAT": 413.45, "totalCost": 182.76, "totalQty": 27.0, "orderCount": 26, "uniqueProducts": 2, "margin": 230.69, "marginPct": 55.79634780505502}, {"YearMonth": "2026-01", "Category": "Vitamin E", "totalRevenue": 181.70000000000002, "totalRevenueExVAT": 151.44, "totalCost": 60.0, "totalQty": 6.0, "orderCount": 5, "uniqueProducts": 1, "margin": 91.44, "marginPct": 60.38034865293186}, {"YearMonth": "2026-01", "Category": "Vitamins To Aid Vision", "totalRevenue": 1278.69, "totalRevenueExVAT": 1067.36, "totalCost": 412.16, "totalQty": 56.0, "orderCount": 50, "uniqueProducts": 2, "margin": 655.1999999999998, "marginPct": 61.3850996852046}], "productMonthly": [{"YearMonth": "2015-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 925.0037, "totalRevenueExVAT": 774.8244, "totalCost": 456.32, "totalQty": 62.0, "orderCount": 59, "margin": 318.5044, "marginPct": 41.106655908099945}, {"YearMonth": "2015-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 822.9304, "totalRevenueExVAT": 687.102, "totalCost": 330.46000000000004, "totalQty": 82.0, "orderCount": 77, "margin": 356.64199999999994, "marginPct": 51.90524842017633}, {"YearMonth": "2015-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 435.34959999999995, "totalRevenueExVAT": 365.84000000000003, "totalCost": 150.0, "totalQty": 20.0, "orderCount": 19, "margin": 215.84000000000003, "marginPct": 58.99846927618631}, {"YearMonth": "2015-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 580.6096, "totalRevenueExVAT": 485.64, "totalCost": 184.49999999999997, "totalQty": 45.0, "orderCount": 42, "margin": 301.14, "marginPct": 62.008895478131954}, {"YearMonth": "2015-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 268.5912, "totalRevenueExVAT": 223.8262, "totalCost": 108.80000000000001, "totalQty": 34.0, "orderCount": 32, "margin": 115.02619999999999, "marginPct": 51.390855940904146}, {"YearMonth": "2015-04", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1629.81, "totalRevenueExVAT": 1358.175, "totalCost": 427.8, "totalQty": 62.0, "orderCount": 55, "margin": 930.375, "marginPct": 68.50184990888508}, {"YearMonth": "2015-04", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1855.5248, "totalRevenueExVAT": 1550.4311, "totalCost": 473.1, "totalQty": 57.0, "orderCount": 51, "margin": 1077.3310999999999, "marginPct": 69.4859062102147}, {"YearMonth": "2015-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 523.9584, "totalRevenueExVAT": 436.63200000000006, "totalCost": 218.4, "totalQty": 21.0, "orderCount": 21, "margin": 218.23200000000006, "marginPct": 49.98076183147365}, {"YearMonth": "2015-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 192.975, "totalRevenueExVAT": 162.75, "totalCost": 72.8, "totalQty": 14.0, "orderCount": 11, "margin": 89.95, "marginPct": 55.26881720430108}, {"YearMonth": "2015-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 175.4544, "totalRevenueExVAT": 146.212, "totalCost": 41.8, "totalQty": 11.0, "orderCount": 10, "margin": 104.41199999999999, "marginPct": 71.41137526331627}, {"YearMonth": "2015-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 3311.7, "totalRevenueExVAT": 2776.375, "totalCost": 1102.1999999999998, "totalQty": 167.0, "orderCount": 124, "margin": 1674.1750000000002, "marginPct": 60.300751879699256}, {"YearMonth": "2015-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 574.2144, "totalRevenueExVAT": 478.512, "totalCost": 172.79999999999998, "totalQty": 36.0, "orderCount": 28, "margin": 305.712, "marginPct": 63.88805296418898}, {"YearMonth": "2015-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 178.99200000000002, "totalRevenueExVAT": 149.16, "totalCost": 48.0, "totalQty": 20.0, "orderCount": 20, "margin": 101.16, "marginPct": 67.81979082864038}, {"YearMonth": "2015-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 556.4376, "totalRevenueExVAT": 463.698, "totalCost": 99.2, "totalQty": 31.0, "orderCount": 29, "margin": 364.498, "marginPct": 78.60676561037572}, {"YearMonth": "2015-04", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 319.008, "totalRevenueExVAT": 265.84, "totalCost": 72.0, "totalQty": 20.0, "orderCount": 20, "margin": 193.83999999999997, "marginPct": 72.91603972314174}, {"YearMonth": "2015-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 599.2560000000001, "totalRevenueExVAT": 499.38, "totalCost": 315.0, "totalQty": 15.0, "orderCount": 15, "margin": 184.38, "marginPct": 36.92178301093356}, {"YearMonth": "2015-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 394.8912, "totalRevenueExVAT": 329.076, "totalCost": 149.6, "totalQty": 22.0, "orderCount": 22, "margin": 179.47600000000003, "marginPct": 54.53937692204841}, {"YearMonth": "2015-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 407.9664, "totalRevenueExVAT": 339.972, "totalCost": 139.4, "totalQty": 41.0, "orderCount": 38, "margin": 200.57199999999997, "marginPct": 58.996623251326575}, {"YearMonth": "2015-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 878.016, "totalRevenueExVAT": 731.6800000000001, "totalCost": 260.0, "totalQty": 40.0, "orderCount": 40, "margin": 471.68000000000006, "marginPct": 64.46534003936148}, {"YearMonth": "2015-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1442.1000000000001, "totalRevenueExVAT": 1201.75, "totalCost": 494.0, "totalQty": 38.0, "orderCount": 35, "margin": 707.75, "marginPct": 58.89328063241107}, {"YearMonth": "2015-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 427.3632, "totalRevenueExVAT": 356.13599999999997, "totalCost": 118.80000000000001, "totalQty": 33.0, "orderCount": 31, "margin": 237.33599999999996, "marginPct": 66.64195700518903}, {"YearMonth": "2015-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 755.55, "totalRevenueExVAT": 629.625, "totalCost": 144.9, "totalQty": 69.0, "orderCount": 63, "margin": 484.725, "marginPct": 76.98630136986301}, {"YearMonth": "2015-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 565.6392, "totalRevenueExVAT": 471.366, "totalCost": 91.8, "totalQty": 27.0, "orderCount": 25, "margin": 379.566, "marginPct": 80.52468782220186}, {"YearMonth": "2015-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 197.4456, "totalRevenueExVAT": 164.538, "totalCost": 57.2, "totalQty": 11.0, "orderCount": 10, "margin": 107.33800000000001, "marginPct": 65.23599411686054}, {"YearMonth": "2015-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 237.15120000000002, "totalRevenueExVAT": 199.00799999999998, "totalCost": 62.400000000000006, "totalQty": 24.0, "orderCount": 24, "margin": 136.60799999999998, "marginPct": 68.64447660395562}, {"YearMonth": "2015-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 911.5509000000001, "totalRevenueExVAT": 764.3625000000001, "totalCost": 397.44, "totalQty": 54.0, "orderCount": 52, "margin": 366.92250000000007, "marginPct": 48.00372859736055}, {"YearMonth": "2015-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 756.8238, "totalRevenueExVAT": 632.3459, "totalCost": 270.01, "totalQty": 67.0, "orderCount": 67, "margin": 362.33590000000004, "marginPct": 57.3002687295039}, {"YearMonth": "2015-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 746.3136, "totalRevenueExVAT": 621.9280000000001, "totalCost": 255.0, "totalQty": 34.0, "orderCount": 33, "margin": 366.9280000000001, "marginPct": 58.99846927618631}, {"YearMonth": "2015-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 645.3616, "totalRevenueExVAT": 539.6, "totalCost": 204.99999999999997, "totalQty": 50.0, "orderCount": 49, "margin": 334.6, "marginPct": 62.008895478131954}, {"YearMonth": "2015-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 248.74999999999997, "totalRevenueExVAT": 207.29250000000002, "totalCost": 80.0, "totalQty": 25.0, "orderCount": 25, "margin": 127.29250000000002, "marginPct": 61.407190322852976}, {"YearMonth": "2015-05", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1885.0511999999999, "totalRevenueExVAT": 1570.876, "totalCost": 420.90000000000003, "totalQty": 61.0, "orderCount": 51, "margin": 1149.9759999999999, "marginPct": 73.20603281226525}, {"YearMonth": "2015-05", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1733.265, "totalRevenueExVAT": 1444.3876, "totalCost": 390.1, "totalQty": 47.0, "orderCount": 40, "margin": 1054.2876, "marginPct": 72.99201405495313}, {"YearMonth": "2015-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 998.016, "totalRevenueExVAT": 831.6800000000001, "totalCost": 416.0, "totalQty": 40.0, "orderCount": 39, "margin": 415.68000000000006, "marginPct": 49.98076183147365}, {"YearMonth": "2015-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 471.97499999999997, "totalRevenueExVAT": 395.25, "totalCost": 176.8, "totalQty": 34.0, "orderCount": 32, "margin": 218.45, "marginPct": 55.268817204301065}, {"YearMonth": "2015-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 287.1072, "totalRevenueExVAT": 239.256, "totalCost": 68.39999999999999, "totalQty": 18.0, "orderCount": 16, "margin": 170.856, "marginPct": 71.41137526331627}, {"YearMonth": "2015-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 734.8249999999999, "totalRevenueExVAT": 615.125, "totalCost": 244.2, "totalQty": 37.0, "orderCount": 32, "margin": 370.925, "marginPct": 60.300751879699256}, {"YearMonth": "2015-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 590.1648, "totalRevenueExVAT": 491.804, "totalCost": 177.6, "totalQty": 37.0, "orderCount": 30, "margin": 314.20399999999995, "marginPct": 63.88805296418898}, {"YearMonth": "2015-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 196.8912, "totalRevenueExVAT": 164.076, "totalCost": 52.8, "totalQty": 22.0, "orderCount": 21, "margin": 111.276, "marginPct": 67.8197908286404}, {"YearMonth": "2015-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 628.236, "totalRevenueExVAT": 523.53, "totalCost": 112.0, "totalQty": 35.0, "orderCount": 33, "margin": 411.53, "marginPct": 78.60676561037572}, {"YearMonth": "2015-05", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 350.9088, "totalRevenueExVAT": 292.424, "totalCost": 79.2, "totalQty": 22.0, "orderCount": 22, "margin": 213.224, "marginPct": 72.91603972314175}, {"YearMonth": "2015-05", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1478.1648, "totalRevenueExVAT": 1231.804, "totalCost": 777.0, "totalQty": 37.0, "orderCount": 30, "margin": 454.8040000000001, "marginPct": 36.92178301093356}, {"YearMonth": "2015-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 251.2944, "totalRevenueExVAT": 209.412, "totalCost": 95.2, "totalQty": 14.0, "orderCount": 14, "margin": 114.212, "marginPct": 54.5393769220484}, {"YearMonth": "2015-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 447.76800000000003, "totalRevenueExVAT": 373.14, "totalCost": 153.0, "totalQty": 45.0, "orderCount": 45, "margin": 220.14, "marginPct": 58.996623251326575}, {"YearMonth": "2015-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1218.2472, "totalRevenueExVAT": 1024.352, "totalCost": 364.0, "totalQty": 56.0, "orderCount": 55, "margin": 660.3520000000001, "marginPct": 64.46534003936148}, {"YearMonth": "2015-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2213.75, "totalRevenueExVAT": 1865.875, "totalCost": 767.0, "totalQty": 59.0, "orderCount": 56, "margin": 1098.875, "marginPct": 58.89328063241107}, {"YearMonth": "2015-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 712.272, "totalRevenueExVAT": 593.56, "totalCost": 198.0, "totalQty": 55.0, "orderCount": 53, "margin": 395.55999999999995, "marginPct": 66.64195700518903}, {"YearMonth": "2015-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 886.9499999999999, "totalRevenueExVAT": 739.125, "totalCost": 170.1, "totalQty": 81.0, "orderCount": 77, "margin": 569.025, "marginPct": 76.98630136986301}, {"YearMonth": "2015-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 314.244, "totalRevenueExVAT": 261.87, "totalCost": 51.0, "totalQty": 15.0, "orderCount": 15, "margin": 210.87, "marginPct": 80.52468782220186}, {"YearMonth": "2015-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 661.1436, "totalRevenueExVAT": 553.446, "totalCost": 192.4, "totalQty": 37.0, "orderCount": 27, "margin": 361.04600000000005, "marginPct": 65.23599411686055}, {"YearMonth": "2015-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 217.2504, "totalRevenueExVAT": 182.424, "totalCost": 57.2, "totalQty": 22.0, "orderCount": 22, "margin": 125.224, "marginPct": 68.64447660395562}, {"YearMonth": "2015-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 636.5616, "totalRevenueExVAT": 530.4680000000001, "totalCost": 217.5, "totalQty": 29.0, "orderCount": 29, "margin": 312.9680000000001, "marginPct": 58.99846927618631}, {"YearMonth": "2015-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 634.5696, "totalRevenueExVAT": 528.808, "totalCost": 200.89999999999998, "totalQty": 49.0, "orderCount": 48, "margin": 327.908, "marginPct": 62.008895478131954}, {"YearMonth": "2015-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 278.6112, "totalRevenueExVAT": 232.176, "totalCost": 89.60000000000001, "totalQty": 28.0, "orderCount": 27, "margin": 142.57599999999996, "marginPct": 61.408586589483825}, {"YearMonth": "2015-06", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2530.4928, "totalRevenueExVAT": 2108.744, "totalCost": 607.2, "totalQty": 88.0, "orderCount": 77, "margin": 1501.544, "marginPct": 71.2056086466636}, {"YearMonth": "2015-06", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 3633.9936000000002, "totalRevenueExVAT": 3038.0688, "totalCost": 863.2, "totalQty": 104.0, "orderCount": 87, "margin": 2174.8688, "marginPct": 71.5872135614572}, {"YearMonth": "2015-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 939.7983999999999, "totalRevenueExVAT": 790.096, "totalCost": 395.2, "totalQty": 38.0, "orderCount": 37, "margin": 394.896, "marginPct": 49.98076183147365}, {"YearMonth": "2015-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 390.59999999999997, "totalRevenueExVAT": 325.5, "totalCost": 145.6, "totalQty": 28.0, "orderCount": 28, "margin": 179.9, "marginPct": 55.26881720430108}, {"YearMonth": "2015-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 255.2064, "totalRevenueExVAT": 212.672, "totalCost": 60.8, "totalQty": 16.0, "orderCount": 13, "margin": 151.872, "marginPct": 71.41137526331629}, {"YearMonth": "2015-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 977.55, "totalRevenueExVAT": 814.625, "totalCost": 323.4, "totalQty": 49.0, "orderCount": 45, "margin": 491.225, "marginPct": 60.300751879699256}, {"YearMonth": "2015-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 685.8672, "totalRevenueExVAT": 571.556, "totalCost": 206.39999999999998, "totalQty": 43.0, "orderCount": 32, "margin": 365.15600000000006, "marginPct": 63.888052964188994}, {"YearMonth": "2015-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 277.4376, "totalRevenueExVAT": 231.198, "totalCost": 74.39999999999999, "totalQty": 31.0, "orderCount": 28, "margin": 156.798, "marginPct": 67.81979082864038}, {"YearMonth": "2015-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 535.4964, "totalRevenueExVAT": 448.74, "totalCost": 96.0, "totalQty": 30.0, "orderCount": 28, "margin": 352.74, "marginPct": 78.60676561037572}, {"YearMonth": "2015-06", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 350.9088, "totalRevenueExVAT": 292.424, "totalCost": 79.2, "totalQty": 22.0, "orderCount": 21, "margin": 213.224, "marginPct": 72.91603972314175}, {"YearMonth": "2015-06", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1238.4624000000001, "totalRevenueExVAT": 1032.0520000000001, "totalCost": 651.0, "totalQty": 31.0, "orderCount": 28, "margin": 381.05200000000013, "marginPct": 36.92178301093357}, {"YearMonth": "2015-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 466.6896, "totalRevenueExVAT": 388.908, "totalCost": 176.79999999999998, "totalQty": 26.0, "orderCount": 26, "margin": 212.10800000000003, "marginPct": 54.53937692204841}, {"YearMonth": "2015-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 378.1152, "totalRevenueExVAT": 315.096, "totalCost": 129.2, "totalQty": 38.0, "orderCount": 35, "margin": 185.89600000000002, "marginPct": 58.99662325132658}, {"YearMonth": "2015-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 984.1095999999999, "totalRevenueExVAT": 823.1400000000001, "totalCost": 292.5, "totalQty": 45.0, "orderCount": 45, "margin": 530.6400000000001, "marginPct": 64.46534003936148}, {"YearMonth": "2015-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1290.3000000000002, "totalRevenueExVAT": 1075.25, "totalCost": 442.0, "totalQty": 34.0, "orderCount": 33, "margin": 633.25, "marginPct": 58.89328063241107}, {"YearMonth": "2015-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 669.104, "totalRevenueExVAT": 561.184, "totalCost": 187.20000000000002, "totalQty": 52.0, "orderCount": 49, "margin": 373.9839999999999, "marginPct": 66.64195700518903}, {"YearMonth": "2015-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 819.425, "totalRevenueExVAT": 684.375, "totalCost": 157.5, "totalQty": 75.0, "orderCount": 72, "margin": 526.875, "marginPct": 76.98630136986301}, {"YearMonth": "2015-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 544.6896, "totalRevenueExVAT": 453.90799999999996, "totalCost": 88.4, "totalQty": 26.0, "orderCount": 24, "margin": 365.5079999999999, "marginPct": 80.52468782220184}, {"YearMonth": "2015-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 484.6392, "totalRevenueExVAT": 403.866, "totalCost": 140.4, "totalQty": 27.0, "orderCount": 24, "margin": 263.466, "marginPct": 65.23599411686055}, {"YearMonth": "2015-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 288.5616, "totalRevenueExVAT": 240.468, "totalCost": 75.4, "totalQty": 29.0, "orderCount": 27, "margin": 165.06799999999998, "marginPct": 68.64447660395562}, {"YearMonth": "2015-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 548.76, "totalRevenueExVAT": 457.30000000000007, "totalCost": 187.5, "totalQty": 25.0, "orderCount": 24, "margin": 269.80000000000007, "marginPct": 58.99846927618631}, {"YearMonth": "2015-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 751.1232, "totalRevenueExVAT": 625.936, "totalCost": 237.79999999999998, "totalQty": 58.0, "orderCount": 57, "margin": 388.1360000000001, "marginPct": 62.008895478131954}, {"YearMonth": "2015-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 308.4624, "totalRevenueExVAT": 257.052, "totalCost": 99.2, "totalQty": 31.0, "orderCount": 29, "margin": 157.85200000000003, "marginPct": 61.408586589483846}, {"YearMonth": "2015-07", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2180.6330000000003, "totalRevenueExVAT": 1821.188, "totalCost": 524.4, "totalQty": 76.0, "orderCount": 68, "margin": 1296.788, "marginPct": 71.20560864666359}, {"YearMonth": "2015-07", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2021.4768000000001, "totalRevenueExVAT": 1694.3024, "totalCost": 481.40000000000003, "totalQty": 58.0, "orderCount": 51, "margin": 1212.9024, "marginPct": 71.58712635949756}, {"YearMonth": "2015-07", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 272.3448, "totalRevenueExVAT": 226.95399999999998, "totalCost": 86.97, "totalQty": 13.0, "orderCount": 8, "margin": 139.98399999999998, "marginPct": 61.67945927368541}, {"YearMonth": "2015-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 694.4527999999999, "totalRevenueExVAT": 582.176, "totalCost": 291.2, "totalQty": 28.0, "orderCount": 27, "margin": 290.97600000000006, "marginPct": 49.98076183147365}, {"YearMonth": "2015-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 418.5, "totalRevenueExVAT": 348.75, "totalCost": 156.0, "totalQty": 30.0, "orderCount": 28, "margin": 192.75, "marginPct": 55.26881720430108}, {"YearMonth": "2015-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 207.3552, "totalRevenueExVAT": 172.796, "totalCost": 49.4, "totalQty": 13.0, "orderCount": 12, "margin": 123.39599999999999, "marginPct": 71.41137526331627}, {"YearMonth": "2015-07", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 32.849999999999994, "totalRevenueExVAT": 27.375, "totalCost": 6.300000000000001, "totalQty": 3.0, "orderCount": 3, "margin": 21.075, "marginPct": 76.98630136986301}, {"YearMonth": "2015-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 615.125, "totalRevenueExVAT": 515.375, "totalCost": 204.6, "totalQty": 31.0, "orderCount": 28, "margin": 310.775, "marginPct": 60.30075187969924}, {"YearMonth": "2015-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 396.1016, "totalRevenueExVAT": 332.3, "totalCost": 120.0, "totalQty": 25.0, "orderCount": 22, "margin": 212.3, "marginPct": 63.888052964188994}, {"YearMonth": "2015-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 295.3368, "totalRevenueExVAT": 246.114, "totalCost": 79.2, "totalQty": 33.0, "orderCount": 33, "margin": 166.914, "marginPct": 67.81979082864038}, {"YearMonth": "2015-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 574.3872, "totalRevenueExVAT": 478.656, "totalCost": 102.4, "totalQty": 32.0, "orderCount": 30, "margin": 376.256, "marginPct": 78.60676561037572}, {"YearMonth": "2015-07", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 287.1072, "totalRevenueExVAT": 239.256, "totalCost": 64.8, "totalQty": 18.0, "orderCount": 18, "margin": 174.45600000000002, "marginPct": 72.91603972314175}, {"YearMonth": "2015-07", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1065.344, "totalRevenueExVAT": 898.884, "totalCost": 567.0, "totalQty": 27.0, "orderCount": 21, "margin": 331.884, "marginPct": 36.92178301093356}, {"YearMonth": "2015-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 412.8408, "totalRevenueExVAT": 344.034, "totalCost": 156.4, "totalQty": 23.0, "orderCount": 22, "margin": 187.634, "marginPct": 54.5393769220484}, {"YearMonth": "2015-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 467.66880000000003, "totalRevenueExVAT": 389.724, "totalCost": 159.79999999999998, "totalQty": 47.0, "orderCount": 46, "margin": 229.924, "marginPct": 58.99662325132658}, {"YearMonth": "2015-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 159.504, "totalRevenueExVAT": 132.92, "totalCost": 57.0, "totalQty": 10.0, "orderCount": 8, "margin": 75.91999999999999, "marginPct": 57.11706289497441}, {"YearMonth": "2015-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 856.0655999999999, "totalRevenueExVAT": 713.388, "totalCost": 253.5, "totalQty": 39.0, "orderCount": 38, "margin": 459.88800000000003, "marginPct": 64.46534003936148}, {"YearMonth": "2015-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 721.0500000000001, "totalRevenueExVAT": 600.875, "totalCost": 247.0, "totalQty": 19.0, "orderCount": 19, "margin": 353.875, "marginPct": 58.89328063241107}, {"YearMonth": "2015-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 453.264, "totalRevenueExVAT": 377.71999999999997, "totalCost": 126.0, "totalQty": 35.0, "orderCount": 34, "margin": 251.71999999999997, "marginPct": 66.64195700518903}, {"YearMonth": "2015-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 600.425, "totalRevenueExVAT": 501.875, "totalCost": 115.5, "totalQty": 55.0, "orderCount": 54, "margin": 386.375, "marginPct": 76.98630136986301}, {"YearMonth": "2015-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 356.1432, "totalRevenueExVAT": 296.78599999999994, "totalCost": 57.8, "totalQty": 17.0, "orderCount": 15, "margin": 238.98599999999993, "marginPct": 80.52468782220184}, {"YearMonth": "2015-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 305.14320000000004, "totalRevenueExVAT": 269.244, "totalCost": 93.60000000000001, "totalQty": 18.0, "orderCount": 10, "margin": 175.644, "marginPct": 65.23599411686054}, {"YearMonth": "2015-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 217.2504, "totalRevenueExVAT": 182.424, "totalCost": 57.2, "totalQty": 22.0, "orderCount": 21, "margin": 125.224, "marginPct": 68.64447660395562}, {"YearMonth": "2015-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 526.8095999999999, "totalRevenueExVAT": 439.00800000000004, "totalCost": 180.0, "totalQty": 24.0, "orderCount": 24, "margin": 259.00800000000004, "marginPct": 58.99846927618631}, {"YearMonth": "2015-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 645.3616, "totalRevenueExVAT": 539.6, "totalCost": 204.99999999999997, "totalQty": 50.0, "orderCount": 46, "margin": 334.6, "marginPct": 62.008895478131954}, {"YearMonth": "2015-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 318.4128, "totalRevenueExVAT": 265.344, "totalCost": 102.4, "totalQty": 32.0, "orderCount": 31, "margin": 162.944, "marginPct": 61.40858658948384}, {"YearMonth": "2015-08", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2616.7596000000003, "totalRevenueExVAT": 2180.6330000000003, "totalCost": 627.9000000000001, "totalQty": 91.0, "orderCount": 77, "margin": 1552.7330000000002, "marginPct": 71.2056086466636}, {"YearMonth": "2015-08", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1606.66, "totalRevenueExVAT": 1343.752, "totalCost": 381.8, "totalQty": 46.0, "orderCount": 42, "margin": 961.952, "marginPct": 71.587019033274}, {"YearMonth": "2015-08", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 272.3448, "totalRevenueExVAT": 226.95399999999998, "totalCost": 86.97, "totalQty": 13.0, "orderCount": 11, "margin": 139.98399999999998, "marginPct": 61.67945927368541}, {"YearMonth": "2015-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 998.016, "totalRevenueExVAT": 831.6800000000001, "totalCost": 416.0, "totalQty": 40.0, "orderCount": 37, "margin": 415.68000000000006, "marginPct": 49.98076183147365}, {"YearMonth": "2015-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 458.025, "totalRevenueExVAT": 383.625, "totalCost": 171.6, "totalQty": 33.0, "orderCount": 31, "margin": 212.025, "marginPct": 55.26881720430108}, {"YearMonth": "2015-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 159.504, "totalRevenueExVAT": 132.92, "totalCost": 38.0, "totalQty": 10.0, "orderCount": 9, "margin": 94.91999999999999, "marginPct": 71.41137526331627}, {"YearMonth": "2015-08", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 219.0, "totalRevenueExVAT": 182.5, "totalCost": 42.0, "totalQty": 20.0, "orderCount": 19, "margin": 140.5, "marginPct": 76.98630136986301}, {"YearMonth": "2015-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 871.15, "totalRevenueExVAT": 731.5, "totalCost": 290.4, "totalQty": 44.0, "orderCount": 41, "margin": 441.1, "marginPct": 60.300751879699256}, {"YearMonth": "2015-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 454.5864, "totalRevenueExVAT": 385.468, "totalCost": 139.2, "totalQty": 29.0, "orderCount": 26, "margin": 246.26800000000003, "marginPct": 63.888052964188994}, {"YearMonth": "2015-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 274.4544, "totalRevenueExVAT": 231.198, "totalCost": 74.39999999999999, "totalQty": 31.0, "orderCount": 29, "margin": 156.798, "marginPct": 67.81979082864038}, {"YearMonth": "2015-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 714.9924, "totalRevenueExVAT": 598.32, "totalCost": 128.0, "totalQty": 40.0, "orderCount": 38, "margin": 470.32000000000005, "marginPct": 78.60676561037572}, {"YearMonth": "2015-08", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 332.3, "totalRevenueExVAT": 279.132, "totalCost": 75.60000000000001, "totalQty": 21.0, "orderCount": 21, "margin": 203.53199999999998, "marginPct": 72.91603972314174}, {"YearMonth": "2015-08", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1238.4624000000001, "totalRevenueExVAT": 1032.0520000000001, "totalCost": 651.0, "totalQty": 31.0, "orderCount": 26, "margin": 381.05200000000013, "marginPct": 36.92178301093357}, {"YearMonth": "2015-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 466.6896, "totalRevenueExVAT": 388.908, "totalCost": 176.79999999999998, "totalQty": 26.0, "orderCount": 24, "margin": 212.10800000000003, "marginPct": 54.53937692204841}, {"YearMonth": "2015-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 466.0104, "totalRevenueExVAT": 389.724, "totalCost": 159.79999999999998, "totalQty": 47.0, "orderCount": 46, "margin": 229.924, "marginPct": 58.99662325132658}, {"YearMonth": "2015-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 143.5536, "totalRevenueExVAT": 119.628, "totalCost": 51.300000000000004, "totalQty": 9.0, "orderCount": 8, "margin": 68.328, "marginPct": 57.117062894974424}, {"YearMonth": "2015-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 834.1152, "totalRevenueExVAT": 695.096, "totalCost": 247.0, "totalQty": 38.0, "orderCount": 38, "margin": 448.096, "marginPct": 64.46534003936148}, {"YearMonth": "2015-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1473.7250000000001, "totalRevenueExVAT": 1233.375, "totalCost": 507.0, "totalQty": 39.0, "orderCount": 38, "margin": 726.375, "marginPct": 58.89328063241107}, {"YearMonth": "2015-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 593.5600000000001, "totalRevenueExVAT": 496.432, "totalCost": 165.6, "totalQty": 46.0, "orderCount": 44, "margin": 330.832, "marginPct": 66.64195700518903}, {"YearMonth": "2015-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 764.675, "totalRevenueExVAT": 638.75, "totalCost": 147.0, "totalQty": 70.0, "orderCount": 64, "margin": 491.75, "marginPct": 76.98630136986301}, {"YearMonth": "2015-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 457.3996, "totalRevenueExVAT": 384.07599999999996, "totalCost": 74.8, "totalQty": 22.0, "orderCount": 19, "margin": 309.27599999999995, "marginPct": 80.52468782220184}, {"YearMonth": "2015-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 700.0344, "totalRevenueExVAT": 583.362, "totalCost": 202.8, "totalQty": 39.0, "orderCount": 29, "margin": 380.56199999999995, "marginPct": 65.23599411686054}, {"YearMonth": "2015-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 245.4432, "totalRevenueExVAT": 207.29999999999998, "totalCost": 65.0, "totalQty": 25.0, "orderCount": 25, "margin": 142.29999999999998, "marginPct": 68.64447660395562}, {"YearMonth": "2015-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 548.7608, "totalRevenueExVAT": 457.30000000000007, "totalCost": 202.5, "totalQty": 27.0, "orderCount": 27, "margin": 254.80000000000007, "marginPct": 55.71834681828122}, {"YearMonth": "2015-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 679.8974000000001, "totalRevenueExVAT": 566.5799999999999, "totalCost": 229.59999999999997, "totalQty": 56.0, "orderCount": 56, "margin": 336.97999999999996, "marginPct": 59.476155176674084}, {"YearMonth": "2015-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 341.6314, "totalRevenueExVAT": 286.074, "totalCost": 118.4, "totalQty": 37.0, "orderCount": 37, "margin": 167.674, "marginPct": 58.61210735683774}, {"YearMonth": "2015-09", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 3164.6668, "totalRevenueExVAT": 2643.8832, "totalCost": 869.4000000000001, "totalQty": 126.0, "orderCount": 112, "margin": 1774.4832000000001, "marginPct": 67.11655038316367}, {"YearMonth": "2015-09", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2506.4022, "totalRevenueExVAT": 2088.6684999999998, "totalCost": 680.6, "totalQty": 82.0, "orderCount": 66, "margin": 1408.0684999999999, "marginPct": 67.41464717833395}, {"YearMonth": "2015-09", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1937.838, "totalRevenueExVAT": 1614.865, "totalCost": 816.1800000000001, "totalQty": 122.0, "orderCount": 82, "margin": 798.685, "marginPct": 49.45831385286076}, {"YearMonth": "2015-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1171.4224, "totalRevenueExVAT": 979.3032000000001, "totalCost": 520.0, "totalQty": 50.0, "orderCount": 43, "margin": 459.30320000000006, "marginPct": 46.901021052519795}, {"YearMonth": "2015-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 574.74, "totalRevenueExVAT": 478.95, "totalCost": 228.8, "totalQty": 44.0, "orderCount": 43, "margin": 250.14999999999998, "marginPct": 52.228833907506}, {"YearMonth": "2015-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 105.2728, "totalRevenueExVAT": 87.7272, "totalCost": 26.599999999999998, "totalQty": 7.0, "orderCount": 6, "margin": 61.1272, "marginPct": 69.67873133988091}, {"YearMonth": "2015-09", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 583.0882, "totalRevenueExVAT": 501.8782, "totalCost": 149.10000000000002, "totalQty": 71.0, "orderCount": 55, "margin": 352.77819999999997, "marginPct": 70.29159664635762}, {"YearMonth": "2015-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 775.0658, "totalRevenueExVAT": 648.382, "totalCost": 270.59999999999997, "totalQty": 41.0, "orderCount": 35, "margin": 377.782, "marginPct": 58.26534357832266}, {"YearMonth": "2015-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 448.2066, "totalRevenueExVAT": 389.4556, "totalCost": 148.79999999999998, "totalQty": 31.0, "orderCount": 23, "margin": 240.65560000000002, "marginPct": 61.792820542315994}, {"YearMonth": "2015-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 248.20180000000002, "totalRevenueExVAT": 208.0782, "totalCost": 69.6, "totalQty": 29.0, "orderCount": 24, "margin": 138.47820000000002, "marginPct": 66.55103706202765}, {"YearMonth": "2015-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 606.6931999999999, "totalRevenueExVAT": 505.578, "totalCost": 115.2, "totalQty": 36.0, "orderCount": 33, "margin": 390.378, "marginPct": 77.21419840262037}, {"YearMonth": "2015-09", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 389.1904, "totalRevenueExVAT": 324.3248, "totalCost": 93.60000000000001, "totalQty": 26.0, "orderCount": 25, "margin": 230.72479999999996, "marginPct": 71.14004232793792}, {"YearMonth": "2015-09", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1262.4335999999998, "totalRevenueExVAT": 1052.0272, "totalCost": 714.0, "totalQty": 34.0, "orderCount": 30, "margin": 338.0272, "marginPct": 32.131032353536106}, {"YearMonth": "2015-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 468.4838, "totalRevenueExVAT": 390.4038, "totalCost": 190.4, "totalQty": 28.0, "orderCount": 28, "margin": 200.00379999999998, "marginPct": 51.22998290487951}, {"YearMonth": "2015-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 346.27479999999997, "totalRevenueExVAT": 288.5616, "totalCost": 125.8, "totalQty": 37.0, "orderCount": 36, "margin": 162.7616, "marginPct": 56.40445575572078}, {"YearMonth": "2015-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 200.1792, "totalRevenueExVAT": 168.8096, "totalCost": 79.8, "totalQty": 14.0, "orderCount": 11, "margin": 89.00959999999999, "marginPct": 52.7278069493678}, {"YearMonth": "2015-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1270.5634, "totalRevenueExVAT": 1064.5944000000002, "totalCost": 396.5, "totalQty": 61.0, "orderCount": 49, "margin": 668.0944000000002, "marginPct": 62.75576876977749}, {"YearMonth": "2015-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1104.345, "totalRevenueExVAT": 920.2875, "totalCost": 403.0, "totalQty": 31.0, "orderCount": 30, "margin": 517.2875, "marginPct": 56.20933675617674}, {"YearMonth": "2015-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 497.2964, "totalRevenueExVAT": 414.4128, "totalCost": 147.6, "totalQty": 41.0, "orderCount": 40, "margin": 266.81280000000004, "marginPct": 64.38333951074871}, {"YearMonth": "2015-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 764.8575, "totalRevenueExVAT": 638.75, "totalCost": 155.4, "totalQty": 74.0, "orderCount": 72, "margin": 483.35, "marginPct": 75.67123287671234}, {"YearMonth": "2015-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 589.7306, "totalRevenueExVAT": 494.06139999999994, "totalCost": 102.0, "totalQty": 30.0, "orderCount": 28, "margin": 392.06139999999994, "marginPct": 79.3547927443836}, {"YearMonth": "2015-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 490.921, "totalRevenueExVAT": 420.3198, "totalCost": 156.0, "totalQty": 30.0, "orderCount": 24, "margin": 264.3198, "marginPct": 62.885402971737236}, {"YearMonth": "2015-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 341.2998, "totalRevenueExVAT": 284.4156, "totalCost": 96.2, "totalQty": 37.0, "orderCount": 36, "margin": 188.2156, "marginPct": 66.17625756111832}, {"YearMonth": "2015-10", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 140.6052, "totalRevenueExVAT": 119.664, "totalCost": 58.88, "totalQty": 8.0, "orderCount": 8, "margin": 60.784, "marginPct": 50.79556090386416}, {"YearMonth": "2015-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 107.5464, "totalRevenueExVAT": 89.622, "totalCost": 36.27, "totalQty": 9.0, "orderCount": 9, "margin": 53.352, "marginPct": 59.530026109660575}, {"YearMonth": "2015-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 509.9816, "totalRevenueExVAT": 428.03280000000007, "totalCost": 187.5, "totalQty": 25.0, "orderCount": 25, "margin": 240.53280000000007, "marginPct": 56.19494580789136}, {"YearMonth": "2015-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 692.8474, "totalRevenueExVAT": 577.372, "totalCost": 229.59999999999997, "totalQty": 56.0, "orderCount": 53, "margin": 347.772, "marginPct": 60.23361022010073}, {"YearMonth": "2015-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 231.845, "totalRevenueExVAT": 193.2036, "totalCost": 80.0, "totalQty": 25.0, "orderCount": 25, "margin": 113.2036, "marginPct": 58.59290406596978}, {"YearMonth": "2015-10", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2344.3313, "totalRevenueExVAT": 1956.9416, "totalCost": 648.6, "totalQty": 94.0, "orderCount": 75, "margin": 1308.3416000000002, "marginPct": 66.85644579276153}, {"YearMonth": "2015-10", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2288.2889999999998, "totalRevenueExVAT": 1906.9074999999998, "totalCost": 605.9000000000001, "totalQty": 73.0, "orderCount": 59, "margin": 1301.0074999999997, "marginPct": 68.22604137851468}, {"YearMonth": "2015-10", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 927.0197999999999, "totalRevenueExVAT": 772.5165000000001, "totalCost": 394.71000000000004, "totalQty": 59.0, "orderCount": 40, "margin": 377.8065, "marginPct": 48.90594569824722}, {"YearMonth": "2015-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 642.4736, "totalRevenueExVAT": 538.5128000000001, "totalCost": 291.2, "totalQty": 28.0, "orderCount": 28, "margin": 247.3128000000001, "marginPct": 45.925147925917464}, {"YearMonth": "2015-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 680.5274999999999, "totalRevenueExVAT": 574.275, "totalCost": 270.40000000000003, "totalQty": 52.0, "orderCount": 44, "margin": 303.87499999999994, "marginPct": 52.91454442558007}, {"YearMonth": "2015-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 192.2026, "totalRevenueExVAT": 162.1624, "totalCost": 49.4, "totalQty": 13.0, "orderCount": 12, "margin": 112.76239999999999, "marginPct": 69.5367113461567}, {"YearMonth": "2015-10", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 670.6875, "totalRevenueExVAT": 558.909, "totalCost": 157.5, "totalQty": 75.0, "orderCount": 55, "margin": 401.409, "marginPct": 71.82009951530571}, {"YearMonth": "2015-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 482.8008, "totalRevenueExVAT": 402.334, "totalCost": 171.6, "totalQty": 26.0, "orderCount": 25, "margin": 230.734, "marginPct": 57.34886934735817}, {"YearMonth": "2015-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 480.1078, "totalRevenueExVAT": 400.0892, "totalCost": 153.6, "totalQty": 32.0, "orderCount": 29, "margin": 246.4892, "marginPct": 61.60856129083214}, {"YearMonth": "2015-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 307.86560000000003, "totalRevenueExVAT": 256.5552, "totalCost": 86.39999999999999, "totalQty": 36.0, "orderCount": 34, "margin": 170.15520000000004, "marginPct": 66.32303691369343}, {"YearMonth": "2015-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 545.6704, "totalRevenueExVAT": 454.7248, "totalCost": 102.4, "totalQty": 32.0, "orderCount": 30, "margin": 352.3248, "marginPct": 77.48088514195838}, {"YearMonth": "2015-10", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 369.25239999999997, "totalRevenueExVAT": 309.7036, "totalCost": 90.0, "totalQty": 25.0, "orderCount": 25, "margin": 219.7036, "marginPct": 70.93995678448685}, {"YearMonth": "2015-10", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 671.1672, "totalRevenueExVAT": 559.3056, "totalCost": 378.0, "totalQty": 18.0, "orderCount": 18, "margin": 181.30560000000003, "marginPct": 32.4161960831431}, {"YearMonth": "2015-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 351.8116, "totalRevenueExVAT": 293.1768, "totalCost": 142.79999999999998, "totalQty": 21.0, "orderCount": 21, "margin": 150.37680000000003, "marginPct": 51.29218955933759}, {"YearMonth": "2015-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 442.7938, "totalRevenueExVAT": 368.99399999999997, "totalCost": 159.79999999999998, "totalQty": 47.0, "orderCount": 45, "margin": 209.194, "marginPct": 56.693062759828074}, {"YearMonth": "2015-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 277.5336, "totalRevenueExVAT": 231.2784, "totalCost": 102.60000000000001, "totalQty": 18.0, "orderCount": 17, "margin": 128.6784, "marginPct": 55.63788058028766}, {"YearMonth": "2015-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 715.5840000000001, "totalRevenueExVAT": 596.3192, "totalCost": 227.5, "totalQty": 35.0, "orderCount": 34, "margin": 368.8192, "marginPct": 61.84929145330219}, {"YearMonth": "2015-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1351.02, "totalRevenueExVAT": 1125.85, "totalCost": 494.0, "totalQty": 38.0, "orderCount": 37, "margin": 631.8499999999999, "marginPct": 56.12204112448372}, {"YearMonth": "2015-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 398.8732, "totalRevenueExVAT": 332.3936, "totalCost": 118.8, "totalQty": 33.0, "orderCount": 33, "margin": 213.59359999999998, "marginPct": 64.25923964841681}, {"YearMonth": "2015-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 778.5462, "totalRevenueExVAT": 648.7885, "totalCost": 157.5, "totalQty": 75.0, "orderCount": 74, "margin": 491.2885, "marginPct": 75.72398401019747}, {"YearMonth": "2015-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 586.5914, "totalRevenueExVAT": 488.8264, "totalCost": 102.0, "totalQty": 30.0, "orderCount": 29, "margin": 386.8264, "marginPct": 79.13369654339455}, {"YearMonth": "2015-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 468.4838, "totalRevenueExVAT": 390.4038, "totalCost": 145.6, "totalQty": 28.0, "orderCount": 25, "margin": 244.8038, "marginPct": 62.70528104490787}, {"YearMonth": "2015-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 336.32439999999997, "totalRevenueExVAT": 280.26959999999997, "totalCost": 93.60000000000001, "totalQty": 36.0, "orderCount": 32, "margin": 186.66959999999995, "marginPct": 66.60358454859178}, {"YearMonth": "2015-11", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 538.488, "totalRevenueExVAT": 448.74, "totalCost": 220.8, "totalQty": 30.0, "orderCount": 30, "margin": 227.94, "marginPct": 50.79556090386416}, {"YearMonth": "2015-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 597.48, "totalRevenueExVAT": 497.90000000000003, "totalCost": 201.5, "totalQty": 50.0, "orderCount": 50, "margin": 296.40000000000003, "marginPct": 59.530026109660575}, {"YearMonth": "2015-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 614.6111999999999, "totalRevenueExVAT": 512.176, "totalCost": 210.0, "totalQty": 28.0, "orderCount": 28, "margin": 302.17600000000004, "marginPct": 58.99846927618631}, {"YearMonth": "2015-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 530.9664, "totalRevenueExVAT": 442.472, "totalCost": 168.1, "totalQty": 41.0, "orderCount": 38, "margin": 274.37199999999996, "marginPct": 62.00889547813194}, {"YearMonth": "2015-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 338.3136, "totalRevenueExVAT": 281.928, "totalCost": 108.80000000000001, "totalQty": 34.0, "orderCount": 33, "margin": 173.128, "marginPct": 61.40858658948384}, {"YearMonth": "2015-11", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1501.6499999999999, "totalRevenueExVAT": 1251.375, "totalCost": 324.3, "totalQty": 47.0, "orderCount": 44, "margin": 927.075, "marginPct": 74.08450704225352}, {"YearMonth": "2015-11", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1713.7823999999998, "totalRevenueExVAT": 1428.152, "totalCost": 365.20000000000005, "totalQty": 44.0, "orderCount": 37, "margin": 1062.952, "marginPct": 74.42849220531149}, {"YearMonth": "2015-11", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1169.686, "totalRevenueExVAT": 977.6479999999999, "totalCost": 374.64000000000004, "totalQty": 56.0, "orderCount": 41, "margin": 603.0079999999998, "marginPct": 61.6794592736854}, {"YearMonth": "2015-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 973.0655999999999, "totalRevenueExVAT": 810.888, "totalCost": 405.6, "totalQty": 39.0, "orderCount": 39, "margin": 405.288, "marginPct": 49.98076183147364}, {"YearMonth": "2015-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 318.525, "totalRevenueExVAT": 267.375, "totalCost": 119.60000000000001, "totalQty": 23.0, "orderCount": 23, "margin": 147.77499999999998, "marginPct": 55.268817204301065}, {"YearMonth": "2015-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 207.3552, "totalRevenueExVAT": 172.796, "totalCost": 49.4, "totalQty": 13.0, "orderCount": 12, "margin": 123.39599999999999, "marginPct": 71.41137526331627}, {"YearMonth": "2015-11", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 784.75, "totalRevenueExVAT": 657.0, "totalCost": 151.20000000000002, "totalQty": 72.0, "orderCount": 63, "margin": 505.79999999999995, "marginPct": 76.98630136986301}, {"YearMonth": "2015-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 724.85, "totalRevenueExVAT": 615.125, "totalCost": 244.2, "totalQty": 37.0, "orderCount": 34, "margin": 370.925, "marginPct": 60.300751879699256}, {"YearMonth": "2015-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 558.264, "totalRevenueExVAT": 465.21999999999997, "totalCost": 168.0, "totalQty": 35.0, "orderCount": 34, "margin": 297.21999999999997, "marginPct": 63.88805296418898}, {"YearMonth": "2015-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 381.8496, "totalRevenueExVAT": 320.694, "totalCost": 103.2, "totalQty": 43.0, "orderCount": 43, "margin": 217.49400000000003, "marginPct": 67.8197908286404}, {"YearMonth": "2015-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 643.2083, "totalRevenueExVAT": 538.4988, "totalCost": 115.2, "totalQty": 36.0, "orderCount": 34, "margin": 423.29879999999997, "marginPct": 78.60719466784327}, {"YearMonth": "2015-11", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 271.1568, "totalRevenueExVAT": 225.964, "totalCost": 61.2, "totalQty": 17.0, "orderCount": 16, "margin": 164.764, "marginPct": 72.91603972314175}, {"YearMonth": "2015-11", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1910.9608, "totalRevenueExVAT": 1598.016, "totalCost": 1008.0, "totalQty": 48.0, "orderCount": 38, "margin": 590.0160000000001, "marginPct": 36.92178301093356}, {"YearMonth": "2015-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 571.3956000000001, "totalRevenueExVAT": 478.656, "totalCost": 217.6, "totalQty": 32.0, "orderCount": 30, "margin": 261.05600000000004, "marginPct": 54.53937692204841}, {"YearMonth": "2015-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 497.52, "totalRevenueExVAT": 414.59999999999997, "totalCost": 170.0, "totalQty": 50.0, "orderCount": 50, "margin": 244.59999999999997, "marginPct": 58.996623251326575}, {"YearMonth": "2015-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 462.5608, "totalRevenueExVAT": 385.4674, "totalCost": 165.3, "totalQty": 29.0, "orderCount": 25, "margin": 220.1674, "marginPct": 57.11699614545873}, {"YearMonth": "2015-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1006.06, "totalRevenueExVAT": 841.432, "totalCost": 299.0, "totalQty": 46.0, "orderCount": 46, "margin": 542.432, "marginPct": 64.46534003936148}, {"YearMonth": "2015-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1435.775, "totalRevenueExVAT": 1201.75, "totalCost": 494.0, "totalQty": 38.0, "orderCount": 37, "margin": 707.75, "marginPct": 58.89328063241107}, {"YearMonth": "2015-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 569.8176, "totalRevenueExVAT": 474.848, "totalCost": 158.4, "totalQty": 44.0, "orderCount": 44, "margin": 316.448, "marginPct": 66.64195700518903}, {"YearMonth": "2015-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 722.6999999999999, "totalRevenueExVAT": 602.25, "totalCost": 138.6, "totalQty": 66.0, "orderCount": 62, "margin": 463.65, "marginPct": 76.98630136986301}, {"YearMonth": "2015-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 858.9352, "totalRevenueExVAT": 715.7792, "totalCost": 139.4, "totalQty": 41.0, "orderCount": 38, "margin": 576.3792, "marginPct": 80.52472047245854}, {"YearMonth": "2015-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 517.5468, "totalRevenueExVAT": 433.782, "totalCost": 150.8, "totalQty": 29.0, "orderCount": 25, "margin": 282.98199999999997, "marginPct": 65.23599411686054}, {"YearMonth": "2015-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 316.75440000000003, "totalRevenueExVAT": 265.344, "totalCost": 83.2, "totalQty": 32.0, "orderCount": 32, "margin": 182.144, "marginPct": 68.64447660395562}, {"YearMonth": "2015-12", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 945.9426, "totalRevenueExVAT": 788.2868, "totalCost": 434.24, "totalQty": 59.0, "orderCount": 56, "margin": 354.04679999999996, "marginPct": 44.91345028230842}, {"YearMonth": "2015-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 702.4362, "totalRevenueExVAT": 588.5183999999999, "totalCost": 265.98, "totalQty": 66.0, "orderCount": 65, "margin": 322.5383999999999, "marginPct": 54.805151376745386}, {"YearMonth": "2015-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 547.6626, "totalRevenueExVAT": 456.3854, "totalCost": 202.5, "totalQty": 27.0, "orderCount": 25, "margin": 253.8854, "marginPct": 55.629606030341904}, {"YearMonth": "2015-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 465.5672, "totalRevenueExVAT": 389.5912, "totalCost": 159.89999999999998, "totalQty": 39.0, "orderCount": 39, "margin": 229.69120000000004, "marginPct": 58.956978494380785}, {"YearMonth": "2015-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 247.76579999999998, "totalRevenueExVAT": 206.4708, "totalCost": 86.4, "totalQty": 27.0, "orderCount": 27, "margin": 120.07079999999999, "marginPct": 58.153889072934284}, {"YearMonth": "2015-12", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1975.3087999999998, "totalRevenueExVAT": 1649.4213, "totalCost": 503.70000000000005, "totalQty": 73.0, "orderCount": 57, "margin": 1145.7213, "marginPct": 69.46201676915412}, {"YearMonth": "2015-12", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1386.6064, "totalRevenueExVAT": 1155.5048, "totalCost": 348.6, "totalQty": 42.0, "orderCount": 34, "margin": 806.9047999999999, "marginPct": 69.83136720851354}, {"YearMonth": "2015-12", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1551.3197, "totalRevenueExVAT": 1292.7649, "totalCost": 595.4100000000001, "totalQty": 89.0, "orderCount": 58, "margin": 697.3548999999998, "marginPct": 53.94290176040515}, {"YearMonth": "2015-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 681.1462, "totalRevenueExVAT": 567.6216000000001, "totalCost": 322.40000000000003, "totalQty": 31.0, "orderCount": 31, "margin": 245.22160000000002, "marginPct": 43.201597684090956}, {"YearMonth": "2015-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 442.215, "totalRevenueExVAT": 368.5125, "totalCost": 182.0, "totalQty": 35.0, "orderCount": 35, "margin": 186.5125, "marginPct": 50.61225874291917}, {"YearMonth": "2015-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 270.0938, "totalRevenueExVAT": 227.2932, "totalCost": 68.39999999999999, "totalQty": 18.0, "orderCount": 13, "margin": 158.89320000000004, "marginPct": 69.90671080349084}, {"YearMonth": "2015-12", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 663.6997, "totalRevenueExVAT": 555.4552, "totalCost": 151.20000000000002, "totalQty": 72.0, "orderCount": 57, "margin": 404.25519999999995, "marginPct": 72.77908281351942}, {"YearMonth": "2015-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 626.43, "totalRevenueExVAT": 522.025, "totalCost": 224.39999999999998, "totalQty": 34.0, "orderCount": 31, "margin": 297.625, "marginPct": 57.013552990757155}, {"YearMonth": "2015-12", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 569.4302, "totalRevenueExVAT": 474.5244, "totalCost": 182.4, "totalQty": 38.0, "orderCount": 33, "margin": 292.12440000000004, "marginPct": 61.56151295908072}, {"YearMonth": "2015-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 273.8568, "totalRevenueExVAT": 228.2148, "totalCost": 79.2, "totalQty": 33.0, "orderCount": 28, "margin": 149.01479999999998, "marginPct": 65.2958528544161}, {"YearMonth": "2015-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 761.08, "totalRevenueExVAT": 634.2327, "totalCost": 144.0, "totalQty": 45.0, "orderCount": 35, "margin": 490.2327, "marginPct": 77.29539962225222}, {"YearMonth": "2015-12", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 239.788, "totalRevenueExVAT": 202.0384, "totalCost": 57.6, "totalQty": 16.0, "orderCount": 16, "margin": 144.4384, "marginPct": 71.49056812962289}, {"YearMonth": "2015-12", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1270.4236, "totalRevenueExVAT": 1058.6856, "totalCost": 714.0, "totalQty": 34.0, "orderCount": 30, "margin": 344.6856, "marginPct": 32.55788120665852}, {"YearMonth": "2015-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 405.6604, "totalRevenueExVAT": 338.0508, "totalCost": 163.2, "totalQty": 24.0, "orderCount": 24, "margin": 174.8508, "marginPct": 51.72323212960892}, {"YearMonth": "2015-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 383.09139999999996, "totalRevenueExVAT": 319.24199999999996, "totalCost": 139.4, "totalQty": 41.0, "orderCount": 40, "margin": 179.84199999999996, "marginPct": 56.334066319594534}, {"YearMonth": "2015-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 349.3146, "totalRevenueExVAT": 291.0948, "totalCost": 136.8, "totalQty": 24.0, "orderCount": 21, "margin": 154.2948, "marginPct": 53.00500043284868}, {"YearMonth": "2015-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 658.5128, "totalRevenueExVAT": 548.76, "totalCost": 208.0, "totalQty": 32.0, "orderCount": 31, "margin": 340.76, "marginPct": 62.09636270865223}, {"YearMonth": "2015-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1385.1750000000002, "totalRevenueExVAT": 1154.3125, "totalCost": 507.0, "totalQty": 39.0, "orderCount": 36, "margin": 647.3125, "marginPct": 56.0777519086036}, {"YearMonth": "2015-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 411.8234, "totalRevenueExVAT": 346.4232, "totalCost": 122.4, "totalQty": 34.0, "orderCount": 33, "margin": 224.0232, "marginPct": 64.6674934011348}, {"YearMonth": "2015-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 601.155, "totalRevenueExVAT": 500.96250000000003, "totalCost": 121.80000000000001, "totalQty": 58.0, "orderCount": 57, "margin": 379.1625, "marginPct": 75.686802904409}, {"YearMonth": "2015-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 316.33860000000004, "totalRevenueExVAT": 263.6158, "totalCost": 54.4, "totalQty": 16.0, "orderCount": 14, "margin": 209.21579999999997, "marginPct": 79.36390762617414}, {"YearMonth": "2015-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 586.951, "totalRevenueExVAT": 489.1266, "totalCost": 182.0, "totalQty": 35.0, "orderCount": 26, "margin": 307.1266, "marginPct": 62.79081939113513}, {"YearMonth": "2015-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 305.9756, "totalRevenueExVAT": 256.2228, "totalCost": 85.8, "totalQty": 33.0, "orderCount": 32, "margin": 170.4228, "marginPct": 66.51351870325357}, {"YearMonth": "2016-01", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1667.1383, "totalRevenueExVAT": 1391.1526, "totalCost": 912.64, "totalQty": 124.0, "orderCount": 122, "margin": 478.5125999999999, "marginPct": 34.39684474586037}, {"YearMonth": "2016-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1250.3032, "totalRevenueExVAT": 1045.655, "totalCost": 564.2, "totalQty": 140.0, "orderCount": 139, "margin": 481.4549999999999, "marginPct": 46.04338907192142}, {"YearMonth": "2016-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 951.5398, "totalRevenueExVAT": 792.9502, "totalCost": 382.5, "totalQty": 51.0, "orderCount": 48, "margin": 410.4502, "marginPct": 51.76241837129242}, {"YearMonth": "2016-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 691.6478, "totalRevenueExVAT": 577.9026, "totalCost": 258.29999999999995, "totalQty": 63.0, "orderCount": 63, "margin": 319.60260000000005, "marginPct": 55.303886848752725}, {"YearMonth": "2016-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 508.9651999999999, "totalRevenueExVAT": 425.3796, "totalCost": 182.4, "totalQty": 57.0, "orderCount": 56, "margin": 242.97959999999998, "marginPct": 57.120651766093154}, {"YearMonth": "2016-01", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 4692.6997, "totalRevenueExVAT": 3913.9138000000003, "totalCost": 1352.4, "totalQty": 196.0, "orderCount": 165, "margin": 2561.5138, "marginPct": 65.4463519354974}, {"YearMonth": "2016-01", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 3300.9786, "totalRevenueExVAT": 2775.1589999999997, "totalCost": 946.2, "totalQty": 114.0, "orderCount": 86, "margin": 1828.9589999999996, "marginPct": 65.90465627374863}, {"YearMonth": "2016-01", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 2747.0163, "totalRevenueExVAT": 2291.3625, "totalCost": 1170.75, "totalQty": 175.0, "orderCount": 113, "margin": 1120.6125000000002, "marginPct": 48.90594569824723}, {"YearMonth": "2016-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1141.0639, "totalRevenueExVAT": 964.7488000000001, "totalCost": 603.2, "totalQty": 58.0, "orderCount": 57, "margin": 361.5488, "marginPct": 37.475952289342054}, {"YearMonth": "2016-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 580.32, "totalRevenueExVAT": 483.6, "totalCost": 270.40000000000003, "totalQty": 52.0, "orderCount": 50, "margin": 213.2, "marginPct": 44.08602150537634}, {"YearMonth": "2016-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 416.3066, "totalRevenueExVAT": 346.9212, "totalCost": 110.19999999999999, "totalQty": 29.0, "orderCount": 21, "margin": 236.7212, "marginPct": 68.23486140368476}, {"YearMonth": "2016-01", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 954.0185999999999, "totalRevenueExVAT": 798.8886, "totalCost": 216.3, "totalQty": 103.0, "orderCount": 91, "margin": 582.5886, "marginPct": 72.92488589773343}, {"YearMonth": "2016-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 867.8486, "totalRevenueExVAT": 733.1825, "totalCost": 323.4, "totalQty": 49.0, "orderCount": 45, "margin": 409.7825, "marginPct": 55.89092756578342}, {"YearMonth": "2016-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 787.1544, "totalRevenueExVAT": 657.954, "totalCost": 264.0, "totalQty": 55.0, "orderCount": 42, "margin": 393.95399999999995, "marginPct": 59.87561440465442}, {"YearMonth": "2016-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 545.028, "totalRevenueExVAT": 456.4296, "totalCost": 163.2, "totalQty": 68.0, "orderCount": 66, "margin": 293.2296, "marginPct": 64.24421203182266}, {"YearMonth": "2016-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1287.015, "totalRevenueExVAT": 1077.0, "totalCost": 256.0, "totalQty": 80.0, "orderCount": 74, "margin": 821.0, "marginPct": 76.23026926648096}, {"YearMonth": "2016-01", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 586.1788, "totalRevenueExVAT": 490.47479999999996, "totalCost": 147.6, "totalQty": 41.0, "orderCount": 39, "margin": 342.87479999999994, "marginPct": 69.90671080349081}, {"YearMonth": "2016-01", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1402.2669999999998, "totalRevenueExVAT": 1168.5556000000001, "totalCost": 819.0, "totalQty": 39.0, "orderCount": 35, "margin": 349.55560000000014, "marginPct": 29.91347608962724}, {"YearMonth": "2016-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 740.4169999999999, "totalRevenueExVAT": 619.259, "totalCost": 312.8, "totalQty": 46.0, "orderCount": 44, "margin": 306.459, "marginPct": 49.488017130150716}, {"YearMonth": "2016-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 707.4802, "totalRevenueExVAT": 589.5648, "totalCost": 268.59999999999997, "totalQty": 79.0, "orderCount": 77, "margin": 320.9648, "marginPct": 54.440970695672476}, {"YearMonth": "2016-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 574.216, "totalRevenueExVAT": 478.512, "totalCost": 228.0, "totalQty": 40.0, "orderCount": 36, "margin": 250.512, "marginPct": 52.352292105527134}, {"YearMonth": "2016-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1356.5374000000002, "totalRevenueExVAT": 1135.9332000000002, "totalCost": 448.5, "totalQty": 69.0, "orderCount": 68, "margin": 687.4332000000002, "marginPct": 60.517044488179415}, {"YearMonth": "2016-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1838.6775, "totalRevenueExVAT": 1536.975, "totalCost": 702.0, "totalQty": 54.0, "orderCount": 50, "margin": 834.9749999999999, "marginPct": 54.32586736934562}, {"YearMonth": "2016-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 629.3916, "totalRevenueExVAT": 524.4911999999999, "totalCost": 194.4, "totalQty": 54.0, "orderCount": 54, "margin": 330.09119999999996, "marginPct": 62.935507783543365}, {"YearMonth": "2016-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1276.2225, "totalRevenueExVAT": 1067.625, "totalCost": 273.0, "totalQty": 130.0, "orderCount": 125, "margin": 794.625, "marginPct": 74.42922374429224}, {"YearMonth": "2016-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 754.1840000000001, "totalRevenueExVAT": 628.4879999999999, "totalCost": 136.0, "totalQty": 40.0, "orderCount": 38, "margin": 492.48799999999994, "marginPct": 78.36076424689095}, {"YearMonth": "2016-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 737.7267999999999, "totalRevenueExVAT": 619.2611999999999, "totalCost": 239.20000000000002, "totalQty": 46.0, "orderCount": 41, "margin": 380.0611999999999, "marginPct": 61.373326796511705}, {"YearMonth": "2016-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 419.41119999999995, "totalRevenueExVAT": 350.7516, "totalCost": 122.2, "totalQty": 47.0, "orderCount": 46, "margin": 228.5516, "marginPct": 65.16052955995069}, {"YearMonth": "2016-02", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 459.2112, "totalRevenueExVAT": 385.169, "totalCost": 191.36, "totalQty": 26.0, "orderCount": 26, "margin": 193.80899999999997, "marginPct": 50.317912396895906}, {"YearMonth": "2016-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 379.4008, "totalRevenueExVAT": 316.1673, "totalCost": 128.96, "totalQty": 32.0, "orderCount": 32, "margin": 187.2073, "marginPct": 59.211468105651655}, {"YearMonth": "2016-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 717.0433999999999, "totalRevenueExVAT": 603.6336, "totalCost": 247.5, "totalQty": 33.0, "orderCount": 31, "margin": 356.1336, "marginPct": 58.99830625730576}, {"YearMonth": "2016-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 399.5164, "totalRevenueExVAT": 332.9306, "totalCost": 127.1, "totalQty": 31.0, "orderCount": 30, "margin": 205.83060000000003, "marginPct": 61.823875606507784}, {"YearMonth": "2016-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 288.5616, "totalRevenueExVAT": 240.468, "totalCost": 92.80000000000001, "totalQty": 29.0, "orderCount": 26, "margin": 147.66799999999998, "marginPct": 61.40858658948384}, {"YearMonth": "2016-02", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 830.6999999999999, "totalRevenueExVAT": 692.25, "totalCost": 179.4, "totalQty": 26.0, "orderCount": 22, "margin": 512.85, "marginPct": 74.08450704225352}, {"YearMonth": "2016-02", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1071.1139999999998, "totalRevenueExVAT": 892.5949999999999, "totalCost": 232.40000000000003, "totalQty": 28.0, "orderCount": 25, "margin": 660.1949999999999, "marginPct": 73.9635556999535}, {"YearMonth": "2016-02", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1211.5852, "totalRevenueExVAT": 1012.5639999999999, "totalCost": 388.02000000000004, "totalQty": 58.0, "orderCount": 44, "margin": 624.5439999999999, "marginPct": 61.67945927368541}, {"YearMonth": "2016-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 594.6512, "totalRevenueExVAT": 499.00800000000004, "totalCost": 249.60000000000002, "totalQty": 24.0, "orderCount": 23, "margin": 249.40800000000002, "marginPct": 49.98076183147364}, {"YearMonth": "2016-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 388.275, "totalRevenueExVAT": 325.5, "totalCost": 145.6, "totalQty": 28.0, "orderCount": 28, "margin": 179.9, "marginPct": 55.26881720430108}, {"YearMonth": "2016-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 223.3056, "totalRevenueExVAT": 186.088, "totalCost": 53.199999999999996, "totalQty": 14.0, "orderCount": 13, "margin": 132.888, "marginPct": 71.41137526331629}, {"YearMonth": "2016-02", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 755.55, "totalRevenueExVAT": 629.625, "totalCost": 144.9, "totalQty": 69.0, "orderCount": 57, "margin": 484.725, "marginPct": 76.98630136986301}, {"YearMonth": "2016-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 698.25, "totalRevenueExVAT": 581.875, "totalCost": 231.0, "totalQty": 35.0, "orderCount": 27, "margin": 350.875, "marginPct": 60.30075187969924}, {"YearMonth": "2016-02", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 507.75440000000003, "totalRevenueExVAT": 425.344, "totalCost": 153.6, "totalQty": 32.0, "orderCount": 31, "margin": 271.744, "marginPct": 63.888052964188994}, {"YearMonth": "2016-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 331.1352, "totalRevenueExVAT": 275.946, "totalCost": 88.8, "totalQty": 37.0, "orderCount": 35, "margin": 187.14600000000002, "marginPct": 67.81979082864038}, {"YearMonth": "2016-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 430.7904, "totalRevenueExVAT": 358.992, "totalCost": 76.80000000000001, "totalQty": 24.0, "orderCount": 23, "margin": 282.192, "marginPct": 78.60676561037572}, {"YearMonth": "2016-02", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 207.3552, "totalRevenueExVAT": 172.796, "totalCost": 46.800000000000004, "totalQty": 13.0, "orderCount": 13, "margin": 125.99599999999998, "marginPct": 72.91603972314174}, {"YearMonth": "2016-02", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 825.6416, "totalRevenueExVAT": 699.1320000000001, "totalCost": 441.0, "totalQty": 21.0, "orderCount": 18, "margin": 258.13200000000006, "marginPct": 36.92178301093356}, {"YearMonth": "2016-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 323.0948, "totalRevenueExVAT": 269.2455, "totalCost": 122.39999999999999, "totalQty": 18.0, "orderCount": 17, "margin": 146.84550000000002, "marginPct": 54.53963018880539}, {"YearMonth": "2016-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 388.0624, "totalRevenueExVAT": 323.3856, "totalCost": 132.6, "totalQty": 39.0, "orderCount": 39, "margin": 190.78560000000002, "marginPct": 58.99631894555603}, {"YearMonth": "2016-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 414.7104, "totalRevenueExVAT": 345.592, "totalCost": 148.20000000000002, "totalQty": 26.0, "orderCount": 20, "margin": 197.39199999999997, "marginPct": 57.11706289497441}, {"YearMonth": "2016-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 523.1512, "totalRevenueExVAT": 439.00800000000004, "totalCost": 156.0, "totalQty": 24.0, "orderCount": 24, "margin": 283.00800000000004, "marginPct": 64.46534003936148}, {"YearMonth": "2016-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 759.0, "totalRevenueExVAT": 632.5, "totalCost": 260.0, "totalQty": 20.0, "orderCount": 15, "margin": 372.5, "marginPct": 58.89328063241107}, {"YearMonth": "2016-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 580.6096, "totalRevenueExVAT": 485.64, "totalCost": 162.0, "totalQty": 45.0, "orderCount": 45, "margin": 323.64, "marginPct": 66.64195700518903}, {"YearMonth": "2016-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 764.675, "totalRevenueExVAT": 638.75, "totalCost": 147.0, "totalQty": 70.0, "orderCount": 70, "margin": 491.75, "marginPct": 76.98630136986301}, {"YearMonth": "2016-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 377.0928, "totalRevenueExVAT": 314.24399999999997, "totalCost": 61.199999999999996, "totalQty": 18.0, "orderCount": 18, "margin": 253.04399999999998, "marginPct": 80.52468782220186}, {"YearMonth": "2016-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 493.614, "totalRevenueExVAT": 418.824, "totalCost": 145.60000000000002, "totalQty": 28.0, "orderCount": 23, "margin": 273.224, "marginPct": 65.23599411686054}, {"YearMonth": "2016-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 248.76, "totalRevenueExVAT": 207.29999999999998, "totalCost": 65.0, "totalQty": 25.0, "orderCount": 24, "margin": 142.29999999999998, "marginPct": 68.64447660395562}, {"YearMonth": "2016-03", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 646.1852, "totalRevenueExVAT": 538.4879999999999, "totalCost": 294.40000000000003, "totalQty": 40.0, "orderCount": 39, "margin": 244.0879999999999, "marginPct": 45.32840100429349}, {"YearMonth": "2016-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 501.2854, "totalRevenueExVAT": 417.7381, "totalCost": 185.38000000000002, "totalQty": 46.0, "orderCount": 46, "margin": 232.35809999999995, "marginPct": 55.62291301655271}, {"YearMonth": "2016-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 658.512, "totalRevenueExVAT": 548.76, "totalCost": 225.0, "totalQty": 30.0, "orderCount": 30, "margin": 323.76, "marginPct": 58.998469276186306}, {"YearMonth": "2016-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 632.4112, "totalRevenueExVAT": 528.808, "totalCost": 200.89999999999998, "totalQty": 49.0, "orderCount": 48, "margin": 327.908, "marginPct": 62.008895478131954}, {"YearMonth": "2016-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 378.1152, "totalRevenueExVAT": 315.096, "totalCost": 121.60000000000001, "totalQty": 38.0, "orderCount": 37, "margin": 193.49599999999998, "marginPct": 61.40858658948384}, {"YearMonth": "2016-03", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2811.6, "totalRevenueExVAT": 2343.0036, "totalCost": 752.1, "totalQty": 109.0, "orderCount": 94, "margin": 1590.9036, "marginPct": 67.90017736208344}, {"YearMonth": "2016-03", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 3284.4267999999997, "totalRevenueExVAT": 2755.6842, "totalCost": 854.9000000000001, "totalQty": 103.0, "orderCount": 74, "margin": 1900.7842, "marginPct": 68.97685155650274}, {"YearMonth": "2016-03", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1940.1105, "totalRevenueExVAT": 1619.2295, "totalCost": 695.76, "totalQty": 104.0, "orderCount": 75, "margin": 923.4694999999999, "marginPct": 57.03141525027798}, {"YearMonth": "2016-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1139.4016, "totalRevenueExVAT": 956.432, "totalCost": 478.40000000000003, "totalQty": 46.0, "orderCount": 43, "margin": 478.032, "marginPct": 49.98076183147364}, {"YearMonth": "2016-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 667.275, "totalRevenueExVAT": 558.0, "totalCost": 249.60000000000002, "totalQty": 48.0, "orderCount": 44, "margin": 308.4, "marginPct": 55.268817204301065}, {"YearMonth": "2016-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 308.3744, "totalRevenueExVAT": 265.84, "totalCost": 76.0, "totalQty": 20.0, "orderCount": 16, "margin": 189.83999999999997, "marginPct": 71.41137526331627}, {"YearMonth": "2016-03", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 946.3542, "totalRevenueExVAT": 800.2666, "totalCost": 210.0, "totalQty": 100.0, "orderCount": 71, "margin": 590.2666, "marginPct": 73.75874489826265}, {"YearMonth": "2016-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1632.5749999999998, "totalRevenueExVAT": 1363.25, "totalCost": 541.1999999999999, "totalQty": 82.0, "orderCount": 73, "margin": 822.0500000000001, "marginPct": 60.300751879699256}, {"YearMonth": "2016-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 794.8616, "totalRevenueExVAT": 664.6, "totalCost": 240.0, "totalQty": 50.0, "orderCount": 44, "margin": 424.6, "marginPct": 63.888052964188994}, {"YearMonth": "2016-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 465.3792, "totalRevenueExVAT": 387.81600000000003, "totalCost": 124.8, "totalQty": 52.0, "orderCount": 49, "margin": 263.016, "marginPct": 67.81979082864038}, {"YearMonth": "2016-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 700.0344, "totalRevenueExVAT": 583.362, "totalCost": 124.80000000000001, "totalQty": 39.0, "orderCount": 34, "margin": 458.56199999999995, "marginPct": 78.60676561037572}, {"YearMonth": "2016-03", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 396.1016, "totalRevenueExVAT": 332.3, "totalCost": 90.0, "totalQty": 25.0, "orderCount": 24, "margin": 242.3, "marginPct": 72.91603972314175}, {"YearMonth": "2016-03", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1118.6112, "totalRevenueExVAT": 932.176, "totalCost": 588.0, "totalQty": 28.0, "orderCount": 26, "margin": 344.17600000000004, "marginPct": 36.92178301093356}, {"YearMonth": "2016-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 448.74, "totalRevenueExVAT": 373.95, "totalCost": 170.0, "totalQty": 25.0, "orderCount": 24, "margin": 203.95, "marginPct": 54.5393769220484}, {"YearMonth": "2016-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 477.6192, "totalRevenueExVAT": 398.01599999999996, "totalCost": 163.2, "totalQty": 48.0, "orderCount": 48, "margin": 234.81599999999997, "marginPct": 58.996623251326575}, {"YearMonth": "2016-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 622.0656, "totalRevenueExVAT": 518.388, "totalCost": 222.3, "totalQty": 39.0, "orderCount": 31, "margin": 296.088, "marginPct": 57.117062894974424}, {"YearMonth": "2016-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1163.3711999999998, "totalRevenueExVAT": 969.4760000000001, "totalCost": 344.5, "totalQty": 53.0, "orderCount": 49, "margin": 624.9760000000001, "marginPct": 64.46534003936148}, {"YearMonth": "2016-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 948.7500000000001, "totalRevenueExVAT": 790.625, "totalCost": 325.0, "totalQty": 25.0, "orderCount": 25, "margin": 465.625, "marginPct": 58.89328063241107}, {"YearMonth": "2016-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 673.4208, "totalRevenueExVAT": 561.184, "totalCost": 187.20000000000002, "totalQty": 52.0, "orderCount": 51, "margin": 373.9839999999999, "marginPct": 66.64195700518903}, {"YearMonth": "2016-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1047.55, "totalRevenueExVAT": 876.0, "totalCost": 201.6, "totalQty": 96.0, "orderCount": 89, "margin": 674.4, "marginPct": 76.98630136986301}, {"YearMonth": "2016-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 272.3448, "totalRevenueExVAT": 226.95399999999998, "totalCost": 44.199999999999996, "totalQty": 13.0, "orderCount": 13, "margin": 182.754, "marginPct": 80.52468782220186}, {"YearMonth": "2016-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 694.0512, "totalRevenueExVAT": 583.362, "totalCost": 202.8, "totalQty": 39.0, "orderCount": 35, "margin": 380.56199999999995, "marginPct": 65.23599411686054}, {"YearMonth": "2016-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 378.1152, "totalRevenueExVAT": 315.096, "totalCost": 98.8, "totalQty": 38.0, "orderCount": 36, "margin": 216.296, "marginPct": 68.64447660395562}, {"YearMonth": "2016-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 803.5248, "totalRevenueExVAT": 673.842, "totalCost": 390.08000000000004, "totalQty": 53.0, "orderCount": 51, "margin": 283.76199999999994, "marginPct": 42.111058675475846}, {"YearMonth": "2016-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 553.5456, "totalRevenueExVAT": 465.52000000000004, "totalCost": 221.65, "totalQty": 55.0, "orderCount": 53, "margin": 243.87000000000003, "marginPct": 52.386578449905485}, {"YearMonth": "2016-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 545.1016, "totalRevenueExVAT": 457.30000000000007, "totalCost": 187.5, "totalQty": 25.0, "orderCount": 25, "margin": 269.80000000000007, "marginPct": 58.99846927618631}, {"YearMonth": "2016-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 530.9664, "totalRevenueExVAT": 442.472, "totalCost": 168.1, "totalQty": 41.0, "orderCount": 40, "margin": 274.37199999999996, "marginPct": 62.00889547813194}, {"YearMonth": "2016-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 308.4624, "totalRevenueExVAT": 257.052, "totalCost": 99.2, "totalQty": 31.0, "orderCount": 29, "margin": 157.85200000000003, "marginPct": 61.408586589483846}, {"YearMonth": "2016-04", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2512.0726999999997, "totalRevenueExVAT": 2096.7266, "totalCost": 724.5, "totalQty": 105.0, "orderCount": 92, "margin": 1372.2266, "marginPct": 65.44613875743266}, {"YearMonth": "2016-04", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1928.0052, "totalRevenueExVAT": 1606.6709999999998, "totalCost": 547.8000000000001, "totalQty": 66.0, "orderCount": 52, "margin": 1058.8709999999996, "marginPct": 65.90465627374863}, {"YearMonth": "2016-04", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1026.5304, "totalRevenueExVAT": 855.4419999999999, "totalCost": 327.81, "totalQty": 49.0, "orderCount": 34, "margin": 527.6319999999998, "marginPct": 61.6794592736854}, {"YearMonth": "2016-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 819.2048, "totalRevenueExVAT": 686.1360000000001, "totalCost": 343.2, "totalQty": 33.0, "orderCount": 32, "margin": 342.9360000000001, "marginPct": 49.98076183147365}, {"YearMonth": "2016-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 488.24999999999994, "totalRevenueExVAT": 406.875, "totalCost": 182.0, "totalQty": 35.0, "orderCount": 33, "margin": 224.875, "marginPct": 55.26881720430108}, {"YearMonth": "2016-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 175.4544, "totalRevenueExVAT": 146.212, "totalCost": 41.8, "totalQty": 11.0, "orderCount": 11, "margin": 104.41199999999999, "marginPct": 71.41137526331627}, {"YearMonth": "2016-04", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 778.7275999999999, "totalRevenueExVAT": 651.5292000000001, "totalCost": 176.4, "totalQty": 84.0, "orderCount": 67, "margin": 475.1292000000001, "marginPct": 72.92523497028223}, {"YearMonth": "2016-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 711.55, "totalRevenueExVAT": 598.5, "totalCost": 237.6, "totalQty": 36.0, "orderCount": 31, "margin": 360.9, "marginPct": 60.30075187969924}, {"YearMonth": "2016-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 669.9168, "totalRevenueExVAT": 558.264, "totalCost": 201.6, "totalQty": 42.0, "orderCount": 34, "margin": 356.664, "marginPct": 63.88805296418898}, {"YearMonth": "2016-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 410.19, "totalRevenueExVAT": 343.068, "totalCost": 110.39999999999999, "totalQty": 46.0, "orderCount": 42, "margin": 232.668, "marginPct": 67.8197908286404}, {"YearMonth": "2016-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 358.992, "totalRevenueExVAT": 299.16, "totalCost": 64.0, "totalQty": 20.0, "orderCount": 20, "margin": 235.16000000000003, "marginPct": 78.60676561037572}, {"YearMonth": "2016-04", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 558.264, "totalRevenueExVAT": 465.21999999999997, "totalCost": 126.0, "totalQty": 35.0, "orderCount": 33, "margin": 339.21999999999997, "marginPct": 72.91603972314174}, {"YearMonth": "2016-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1118.6112, "totalRevenueExVAT": 932.176, "totalCost": 588.0, "totalQty": 28.0, "orderCount": 22, "margin": 344.17600000000004, "marginPct": 36.92178301093356}, {"YearMonth": "2016-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 448.74, "totalRevenueExVAT": 373.95, "totalCost": 170.0, "totalQty": 25.0, "orderCount": 25, "margin": 203.95, "marginPct": 54.5393769220484}, {"YearMonth": "2016-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 427.8672, "totalRevenueExVAT": 356.556, "totalCost": 146.2, "totalQty": 43.0, "orderCount": 41, "margin": 210.356, "marginPct": 58.99662325132658}, {"YearMonth": "2016-04", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 462.5616, "totalRevenueExVAT": 385.46799999999996, "totalCost": 165.3, "totalQty": 29.0, "orderCount": 21, "margin": 220.16799999999995, "marginPct": 57.11706289497441}, {"YearMonth": "2016-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1009.7184, "totalRevenueExVAT": 841.432, "totalCost": 299.0, "totalQty": 46.0, "orderCount": 45, "margin": 542.432, "marginPct": 64.46534003936148}, {"YearMonth": "2016-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1138.5, "totalRevenueExVAT": 948.75, "totalCost": 390.0, "totalQty": 30.0, "orderCount": 27, "margin": 558.75, "marginPct": 58.89328063241107}, {"YearMonth": "2016-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 543.9168, "totalRevenueExVAT": 453.264, "totalCost": 151.20000000000002, "totalQty": 42.0, "orderCount": 42, "margin": 302.06399999999996, "marginPct": 66.64195700518903}, {"YearMonth": "2016-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 874.175, "totalRevenueExVAT": 730.0, "totalCost": 168.0, "totalQty": 80.0, "orderCount": 74, "margin": 562.0, "marginPct": 76.98630136986301}, {"YearMonth": "2016-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 523.74, "totalRevenueExVAT": 436.44999999999993, "totalCost": 85.0, "totalQty": 25.0, "orderCount": 22, "margin": 351.44999999999993, "marginPct": 80.52468782220186}, {"YearMonth": "2016-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 520.5384, "totalRevenueExVAT": 433.78200000000004, "totalCost": 150.8, "totalQty": 29.0, "orderCount": 21, "margin": 282.982, "marginPct": 65.23599411686054}, {"YearMonth": "2016-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 358.2144, "totalRevenueExVAT": 298.512, "totalCost": 93.60000000000001, "totalQty": 36.0, "orderCount": 35, "margin": 204.91199999999998, "marginPct": 68.64447660395562}, {"YearMonth": "2016-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 616.721, "totalRevenueExVAT": 516.054, "totalCost": 309.12, "totalQty": 42.0, "orderCount": 39, "margin": 206.93399999999997, "marginPct": 40.09929193456499}, {"YearMonth": "2016-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 344.8432, "totalRevenueExVAT": 290.2742, "totalCost": 141.05, "totalQty": 35.0, "orderCount": 35, "margin": 149.2242, "marginPct": 51.408013526520776}, {"YearMonth": "2016-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 724.3631999999999, "totalRevenueExVAT": 603.6360000000001, "totalCost": 247.5, "totalQty": 33.0, "orderCount": 32, "margin": 356.1360000000001, "marginPct": 58.99846927618631}, {"YearMonth": "2016-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 530.9664, "totalRevenueExVAT": 442.472, "totalCost": 168.1, "totalQty": 41.0, "orderCount": 40, "margin": 274.37199999999996, "marginPct": 62.00889547813194}, {"YearMonth": "2016-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 296.85360000000003, "totalRevenueExVAT": 248.76, "totalCost": 96.0, "totalQty": 30.0, "orderCount": 27, "margin": 152.76, "marginPct": 61.40858658948384}, {"YearMonth": "2016-05", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1845.1215, "totalRevenueExVAT": 1537.6021, "totalCost": 496.8, "totalQty": 72.0, "orderCount": 62, "margin": 1040.8021, "marginPct": 67.68995047548387}, {"YearMonth": "2016-05", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1691.3859, "totalRevenueExVAT": 1421.6604, "totalCost": 464.80000000000007, "totalQty": 56.0, "orderCount": 47, "margin": 956.8603999999999, "marginPct": 67.30583478304663}, {"YearMonth": "2016-05", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1173.1776, "totalRevenueExVAT": 977.6479999999999, "totalCost": 374.64000000000004, "totalQty": 56.0, "orderCount": 47, "margin": 603.0079999999998, "marginPct": 61.6794592736854}, {"YearMonth": "2016-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 694.4527999999999, "totalRevenueExVAT": 582.176, "totalCost": 291.2, "totalQty": 28.0, "orderCount": 28, "margin": 290.97600000000006, "marginPct": 49.98076183147365}, {"YearMonth": "2016-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 444.075, "totalRevenueExVAT": 372.0, "totalCost": 166.4, "totalQty": 32.0, "orderCount": 29, "margin": 205.6, "marginPct": 55.268817204301065}, {"YearMonth": "2016-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 414.7104, "totalRevenueExVAT": 345.592, "totalCost": 98.8, "totalQty": 26.0, "orderCount": 19, "margin": 246.79199999999997, "marginPct": 71.41137526331627}, {"YearMonth": "2016-05", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 688.7424, "totalRevenueExVAT": 573.9536, "totalCost": 155.4, "totalQty": 74.0, "orderCount": 56, "margin": 418.5536000000001, "marginPct": 72.92464059812501}, {"YearMonth": "2016-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 871.15, "totalRevenueExVAT": 731.5, "totalCost": 290.4, "totalQty": 44.0, "orderCount": 35, "margin": 441.1, "marginPct": 60.300751879699256}, {"YearMonth": "2016-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 486.48720000000003, "totalRevenueExVAT": 412.052, "totalCost": 148.79999999999998, "totalQty": 31.0, "orderCount": 27, "margin": 263.25200000000007, "marginPct": 63.888052964189}, {"YearMonth": "2016-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 322.1856, "totalRevenueExVAT": 268.488, "totalCost": 86.39999999999999, "totalQty": 36.0, "orderCount": 36, "margin": 182.08800000000002, "marginPct": 67.8197908286404}, {"YearMonth": "2016-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 400.87440000000004, "totalRevenueExVAT": 344.034, "totalCost": 73.60000000000001, "totalQty": 23.0, "orderCount": 20, "margin": 270.43399999999997, "marginPct": 78.6067656103757}, {"YearMonth": "2016-05", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 319.008, "totalRevenueExVAT": 265.84, "totalCost": 72.0, "totalQty": 20.0, "orderCount": 18, "margin": 193.83999999999997, "marginPct": 72.91603972314174}, {"YearMonth": "2016-05", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 998.76, "totalRevenueExVAT": 832.3000000000001, "totalCost": 525.0, "totalQty": 25.0, "orderCount": 21, "margin": 307.30000000000007, "marginPct": 36.92178301093356}, {"YearMonth": "2016-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 323.0928, "totalRevenueExVAT": 269.244, "totalCost": 122.39999999999999, "totalQty": 18.0, "orderCount": 18, "margin": 146.84400000000005, "marginPct": 54.53937692204841}, {"YearMonth": "2016-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 517.4208, "totalRevenueExVAT": 431.18399999999997, "totalCost": 176.79999999999998, "totalQty": 52.0, "orderCount": 52, "margin": 254.384, "marginPct": 58.99662325132658}, {"YearMonth": "2016-05", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 223.3056, "totalRevenueExVAT": 186.088, "totalCost": 79.8, "totalQty": 14.0, "orderCount": 13, "margin": 106.288, "marginPct": 57.117062894974424}, {"YearMonth": "2016-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 700.2186, "totalRevenueExVAT": 583.5148, "totalCost": 221.0, "totalQty": 34.0, "orderCount": 33, "margin": 362.51480000000004, "marginPct": 62.12606775355142}, {"YearMonth": "2016-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1214.4, "totalRevenueExVAT": 1012.0, "totalCost": 442.0, "totalQty": 34.0, "orderCount": 32, "margin": 570.0, "marginPct": 56.32411067193676}, {"YearMonth": "2016-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 391.1028, "totalRevenueExVAT": 325.9184, "totalCost": 115.2, "totalQty": 32.0, "orderCount": 31, "margin": 210.71840000000003, "marginPct": 64.65372927702148}, {"YearMonth": "2016-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 677.0749999999999, "totalRevenueExVAT": 565.75, "totalCost": 130.20000000000002, "totalQty": 62.0, "orderCount": 58, "margin": 435.54999999999995, "marginPct": 76.98630136986301}, {"YearMonth": "2016-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 377.0928, "totalRevenueExVAT": 314.24399999999997, "totalCost": 61.199999999999996, "totalQty": 18.0, "orderCount": 18, "margin": 253.04399999999998, "marginPct": 80.52468782220186}, {"YearMonth": "2016-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 469.6812, "totalRevenueExVAT": 403.866, "totalCost": 140.4, "totalQty": 27.0, "orderCount": 24, "margin": 263.466, "marginPct": 65.23599411686055}, {"YearMonth": "2016-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 325.0464, "totalRevenueExVAT": 273.63599999999997, "totalCost": 85.8, "totalQty": 33.0, "orderCount": 31, "margin": 187.83599999999996, "marginPct": 68.64447660395561}, {"YearMonth": "2016-06", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 533.115, "totalRevenueExVAT": 444.2625, "totalCost": 242.88000000000002, "totalQty": 33.0, "orderCount": 33, "margin": 201.38249999999996, "marginPct": 45.32961931290622}, {"YearMonth": "2016-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 410.4825, "totalRevenueExVAT": 349.5375, "totalCost": 157.17000000000002, "totalQty": 39.0, "orderCount": 38, "margin": 192.3675, "marginPct": 55.03486750348675}, {"YearMonth": "2016-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 460.9584, "totalRevenueExVAT": 384.13200000000006, "totalCost": 157.5, "totalQty": 21.0, "orderCount": 21, "margin": 226.63200000000006, "marginPct": 58.99846927618631}, {"YearMonth": "2016-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 502.9072, "totalRevenueExVAT": 420.888, "totalCost": 159.89999999999998, "totalQty": 39.0, "orderCount": 39, "margin": 260.988, "marginPct": 62.008895478131954}, {"YearMonth": "2016-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 308.4624, "totalRevenueExVAT": 257.052, "totalCost": 99.2, "totalQty": 31.0, "orderCount": 29, "margin": 157.85200000000003, "marginPct": 61.408586589483846}, {"YearMonth": "2016-06", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1705.4388, "totalRevenueExVAT": 1421.1989999999998, "totalCost": 419.73, "totalQty": 61.0, "orderCount": 53, "margin": 1001.4689999999998, "marginPct": 70.46648639634562}, {"YearMonth": "2016-06", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 57.51, "totalRevenueExVAT": 47.925, "totalCost": 13.8, "totalQty": 2.0, "orderCount": 2, "margin": 34.125, "marginPct": 71.20500782472614}, {"YearMonth": "2016-06", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2511.8158000000003, "totalRevenueExVAT": 2093.1806, "totalCost": 696.6, "totalQty": 84.0, "orderCount": 69, "margin": 1396.5806000000002, "marginPct": 66.72050180476545}, {"YearMonth": "2016-06", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 140.2184, "totalRevenueExVAT": 116.8488, "totalCost": 33.2, "totalQty": 4.0, "orderCount": 4, "margin": 83.6488, "marginPct": 71.58721356145719}, {"YearMonth": "2016-06", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 2069.8228, "totalRevenueExVAT": 1724.848, "totalCost": 707.38, "totalQty": 106.0, "orderCount": 78, "margin": 1017.468, "marginPct": 58.988850032002816}, {"YearMonth": "2016-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 889.8975999999999, "totalRevenueExVAT": 748.5120000000001, "totalCost": 374.40000000000003, "totalQty": 36.0, "orderCount": 36, "margin": 374.112, "marginPct": 49.98076183147364}, {"YearMonth": "2016-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 397.575, "totalRevenueExVAT": 337.125, "totalCost": 150.8, "totalQty": 29.0, "orderCount": 28, "margin": 186.325, "marginPct": 55.268817204301065}, {"YearMonth": "2016-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 303.0576, "totalRevenueExVAT": 252.548, "totalCost": 72.2, "totalQty": 19.0, "orderCount": 17, "margin": 180.348, "marginPct": 71.41137526331629}, {"YearMonth": "2016-06", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 978.8072, "totalRevenueExVAT": 822.136, "totalCost": 222.60000000000002, "totalQty": 106.0, "orderCount": 77, "margin": 599.536, "marginPct": 72.92418772563177}, {"YearMonth": "2016-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 452.2, "totalRevenueExVAT": 382.375, "totalCost": 151.79999999999998, "totalQty": 23.0, "orderCount": 23, "margin": 230.57500000000002, "marginPct": 60.300751879699256}, {"YearMonth": "2016-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 558.264, "totalRevenueExVAT": 465.21999999999997, "totalCost": 168.0, "totalQty": 35.0, "orderCount": 30, "margin": 297.21999999999997, "marginPct": 63.88805296418898}, {"YearMonth": "2016-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 331.1352, "totalRevenueExVAT": 275.946, "totalCost": 88.8, "totalQty": 37.0, "orderCount": 37, "margin": 187.14600000000002, "marginPct": 67.81979082864038}, {"YearMonth": "2016-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 520.5384, "totalRevenueExVAT": 433.782, "totalCost": 92.80000000000001, "totalQty": 29.0, "orderCount": 27, "margin": 340.98199999999997, "marginPct": 78.60676561037572}, {"YearMonth": "2016-06", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 223.3056, "totalRevenueExVAT": 186.088, "totalCost": 50.4, "totalQty": 14.0, "orderCount": 12, "margin": 135.688, "marginPct": 72.91603972314174}, {"YearMonth": "2016-06", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1078.6608, "totalRevenueExVAT": 898.884, "totalCost": 567.0, "totalQty": 27.0, "orderCount": 25, "margin": 331.884, "marginPct": 36.92178301093356}, {"YearMonth": "2016-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 538.488, "totalRevenueExVAT": 448.74, "totalCost": 204.0, "totalQty": 30.0, "orderCount": 29, "margin": 244.74, "marginPct": 54.5393769220484}, {"YearMonth": "2016-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 527.3712, "totalRevenueExVAT": 439.476, "totalCost": 180.2, "totalQty": 53.0, "orderCount": 53, "margin": 259.276, "marginPct": 58.99662325132658}, {"YearMonth": "2016-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 510.4128, "totalRevenueExVAT": 425.344, "totalCost": 182.4, "totalQty": 32.0, "orderCount": 28, "margin": 242.944, "marginPct": 57.117062894974424}, {"YearMonth": "2016-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 862.6524000000001, "totalRevenueExVAT": 724.3632, "totalCost": 286.0, "totalQty": 44.0, "orderCount": 41, "margin": 438.3632, "marginPct": 60.51704448817941}, {"YearMonth": "2016-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 990.495, "totalRevenueExVAT": 825.4124999999999, "totalCost": 377.0, "totalQty": 29.0, "orderCount": 29, "margin": 448.4124999999999, "marginPct": 54.32586736934562}, {"YearMonth": "2016-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 507.0098, "totalRevenueExVAT": 427.3632, "totalCost": 158.4, "totalQty": 44.0, "orderCount": 43, "margin": 268.96320000000003, "marginPct": 62.93550778354338}, {"YearMonth": "2016-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 764.675, "totalRevenueExVAT": 638.75, "totalCost": 147.0, "totalQty": 70.0, "orderCount": 69, "margin": 491.75, "marginPct": 76.98630136986301}, {"YearMonth": "2016-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 541.198, "totalRevenueExVAT": 453.90799999999996, "totalCost": 88.39999999999999, "totalQty": 26.0, "orderCount": 26, "margin": 365.508, "marginPct": 80.52468782220186}, {"YearMonth": "2016-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 646.1856, "totalRevenueExVAT": 538.488, "totalCost": 187.20000000000002, "totalQty": 36.0, "orderCount": 26, "margin": 351.288, "marginPct": 65.23599411686054}, {"YearMonth": "2016-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 217.2504, "totalRevenueExVAT": 182.424, "totalCost": 57.2, "totalQty": 22.0, "orderCount": 22, "margin": 125.224, "marginPct": 68.64447660395562}, {"YearMonth": "2016-07", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 436.18500000000006, "totalRevenueExVAT": 363.4875, "totalCost": 198.72, "totalQty": 27.0, "orderCount": 27, "margin": 164.7675, "marginPct": 45.329619312906225}, {"YearMonth": "2016-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 349.5375, "totalRevenueExVAT": 295.7625, "totalCost": 132.99, "totalQty": 33.0, "orderCount": 33, "margin": 162.77249999999998, "marginPct": 55.03486750348675}, {"YearMonth": "2016-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 329.256, "totalRevenueExVAT": 274.38, "totalCost": 112.5, "totalQty": 15.0, "orderCount": 15, "margin": 161.88, "marginPct": 58.998469276186306}, {"YearMonth": "2016-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 438.1552, "totalRevenueExVAT": 366.928, "totalCost": 139.39999999999998, "totalQty": 34.0, "orderCount": 34, "margin": 227.52800000000002, "marginPct": 62.008895478131954}, {"YearMonth": "2016-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 248.76, "totalRevenueExVAT": 207.29999999999998, "totalCost": 80.0, "totalQty": 25.0, "orderCount": 24, "margin": 127.29999999999998, "marginPct": 61.40858658948384}, {"YearMonth": "2016-07", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1963.1788, "totalRevenueExVAT": 1639.7259999999999, "totalCost": 494.21, "totalQty": 73.0, "orderCount": 66, "margin": 1145.5159999999998, "marginPct": 69.86020835188317}, {"YearMonth": "2016-07", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2488.44, "totalRevenueExVAT": 2073.7000000000003, "totalCost": 733.36, "totalQty": 89.0, "orderCount": 78, "margin": 1340.3400000000001, "marginPct": 64.63519313304721}, {"YearMonth": "2016-07", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1416.4686000000002, "totalRevenueExVAT": 1182.951, "totalCost": 498.19, "totalQty": 77.0, "orderCount": 59, "margin": 684.761, "marginPct": 57.88582959057476}, {"YearMonth": "2016-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 765.1456, "totalRevenueExVAT": 644.552, "totalCost": 322.40000000000003, "totalQty": 31.0, "orderCount": 28, "margin": 322.152, "marginPct": 49.98076183147364}, {"YearMonth": "2016-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 374.325, "totalRevenueExVAT": 313.875, "totalCost": 140.4, "totalQty": 27.0, "orderCount": 26, "margin": 173.475, "marginPct": 55.268817204301065}, {"YearMonth": "2016-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 175.4544, "totalRevenueExVAT": 146.212, "totalCost": 41.8, "totalQty": 11.0, "orderCount": 11, "margin": 104.41199999999999, "marginPct": 71.41137526331627}, {"YearMonth": "2016-07", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 901.2472, "totalRevenueExVAT": 752.332, "totalCost": 203.70000000000002, "totalQty": 97.0, "orderCount": 83, "margin": 548.632, "marginPct": 72.92418772563177}, {"YearMonth": "2016-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 515.375, "totalRevenueExVAT": 432.25, "totalCost": 171.6, "totalQty": 26.0, "orderCount": 25, "margin": 260.65, "marginPct": 60.30075187969924}, {"YearMonth": "2016-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 462.5616, "totalRevenueExVAT": 385.468, "totalCost": 139.2, "totalQty": 29.0, "orderCount": 27, "margin": 246.26800000000003, "marginPct": 63.888052964188994}, {"YearMonth": "2016-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 268.488, "totalRevenueExVAT": 223.74, "totalCost": 72.0, "totalQty": 30.0, "orderCount": 29, "margin": 151.74, "marginPct": 67.8197908286404}, {"YearMonth": "2016-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 646.1856, "totalRevenueExVAT": 538.488, "totalCost": 115.2, "totalQty": 36.0, "orderCount": 35, "margin": 423.28800000000007, "marginPct": 78.60676561037573}, {"YearMonth": "2016-07", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 350.9088, "totalRevenueExVAT": 292.424, "totalCost": 79.2, "totalQty": 22.0, "orderCount": 22, "margin": 213.224, "marginPct": 72.91603972314175}, {"YearMonth": "2016-07", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 639.2064, "totalRevenueExVAT": 532.672, "totalCost": 336.0, "totalQty": 16.0, "orderCount": 15, "margin": 196.67200000000003, "marginPct": 36.92178301093356}, {"YearMonth": "2016-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 376.9416, "totalRevenueExVAT": 314.118, "totalCost": 142.79999999999998, "totalQty": 21.0, "orderCount": 21, "margin": 171.318, "marginPct": 54.53937692204841}, {"YearMonth": "2016-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 437.8176, "totalRevenueExVAT": 364.848, "totalCost": 149.6, "totalQty": 44.0, "orderCount": 44, "margin": 215.24800000000002, "marginPct": 58.99662325132658}, {"YearMonth": "2016-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 334.9584, "totalRevenueExVAT": 279.132, "totalCost": 119.7, "totalQty": 21.0, "orderCount": 19, "margin": 159.43200000000002, "marginPct": 57.117062894974424}, {"YearMonth": "2016-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 823.1416, "totalRevenueExVAT": 691.4376000000001, "totalCost": 273.0, "totalQty": 42.0, "orderCount": 42, "margin": 418.4376000000001, "marginPct": 60.517044488179415}, {"YearMonth": "2016-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1252.3500000000001, "totalRevenueExVAT": 1053.1125, "totalCost": 481.0, "totalQty": 37.0, "orderCount": 32, "margin": 572.1125, "marginPct": 54.32586736934562}, {"YearMonth": "2016-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 372.9728, "totalRevenueExVAT": 310.8096, "totalCost": 115.2, "totalQty": 32.0, "orderCount": 32, "margin": 195.6096, "marginPct": 62.935507783543365}, {"YearMonth": "2016-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 753.7249999999999, "totalRevenueExVAT": 629.625, "totalCost": 144.9, "totalQty": 69.0, "orderCount": 66, "margin": 484.725, "marginPct": 76.98630136986301}, {"YearMonth": "2016-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 607.5384, "totalRevenueExVAT": 506.2819999999999, "totalCost": 98.6, "totalQty": 29.0, "orderCount": 27, "margin": 407.6819999999999, "marginPct": 80.52468782220184}, {"YearMonth": "2016-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 179.496, "totalRevenueExVAT": 149.58, "totalCost": 52.0, "totalQty": 10.0, "orderCount": 10, "margin": 97.58000000000001, "marginPct": 65.23599411686054}, {"YearMonth": "2016-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 189.0576, "totalRevenueExVAT": 157.548, "totalCost": 49.4, "totalQty": 19.0, "orderCount": 19, "margin": 108.148, "marginPct": 68.64447660395562}, {"YearMonth": "2016-08", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 725.1800000000001, "totalRevenueExVAT": 608.8044, "totalCost": 338.56, "totalQty": 46.0, "orderCount": 44, "margin": 270.2444, "marginPct": 44.389363808802955}, {"YearMonth": "2016-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 482.48130000000003, "totalRevenueExVAT": 412.2753, "totalCost": 189.41000000000003, "totalQty": 47.0, "orderCount": 46, "margin": 222.8653, "marginPct": 54.05739805416429}, {"YearMonth": "2016-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 539.6138, "totalRevenueExVAT": 452.72700000000003, "totalCost": 202.5, "totalQty": 27.0, "orderCount": 23, "margin": 250.22700000000003, "marginPct": 55.27105739220325}, {"YearMonth": "2016-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 702.6672, "totalRevenueExVAT": 587.0848, "totalCost": 245.99999999999997, "totalQty": 60.0, "orderCount": 58, "margin": 341.0848, "marginPct": 58.098046483233766}, {"YearMonth": "2016-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 472.6454, "totalRevenueExVAT": 393.87, "totalCost": 163.20000000000002, "totalQty": 51.0, "orderCount": 50, "margin": 230.67, "marginPct": 58.56500875923528}, {"YearMonth": "2016-08", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2097.9508, "totalRevenueExVAT": 1752.036, "totalCost": 528.06, "totalQty": 78.0, "orderCount": 74, "margin": 1223.976, "marginPct": 69.86020835188317}, {"YearMonth": "2016-08", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2823.96, "totalRevenueExVAT": 2376.6, "totalCost": 840.48, "totalQty": 102.0, "orderCount": 79, "margin": 1536.12, "marginPct": 64.63519313304721}, {"YearMonth": "2016-08", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1729.8738, "totalRevenueExVAT": 1444.1219999999998, "totalCost": 608.18, "totalQty": 94.0, "orderCount": 62, "margin": 835.9419999999999, "marginPct": 57.88582959057476}, {"YearMonth": "2016-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1070.5801999999999, "totalRevenueExVAT": 898.2144000000001, "totalCost": 499.20000000000005, "totalQty": 48.0, "orderCount": 47, "margin": 399.0144, "marginPct": 44.42306870163738}, {"YearMonth": "2016-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 511.965, "totalRevenueExVAT": 426.6383, "totalCost": 208.0, "totalQty": 40.0, "orderCount": 38, "margin": 218.63830000000002, "marginPct": 51.24675867122104}, {"YearMonth": "2016-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 263.9796, "totalRevenueExVAT": 221.97639999999998, "totalCost": 68.39999999999999, "totalQty": 18.0, "orderCount": 16, "margin": 153.57639999999998, "marginPct": 69.18591345746664}, {"YearMonth": "2016-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1561.2792, "totalRevenueExVAT": 1309.5420000000001, "totalCost": 381.1, "totalQty": 103.0, "orderCount": 88, "margin": 928.4420000000001, "marginPct": 70.89822243196477}, {"YearMonth": "2016-08", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 136.5056, "totalRevenueExVAT": 116.34, "totalCost": 31.5, "totalQty": 15.0, "orderCount": 13, "margin": 84.84, "marginPct": 72.92418772563177}, {"YearMonth": "2016-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1044.3825, "totalRevenueExVAT": 887.775, "totalCost": 382.79999999999995, "totalQty": 58.0, "orderCount": 45, "margin": 504.975, "marginPct": 56.88096646109656}, {"YearMonth": "2016-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 796.7239999999999, "totalRevenueExVAT": 665.9292, "totalCost": 259.2, "totalQty": 54.0, "orderCount": 49, "margin": 406.72920000000005, "marginPct": 61.076943314694724}, {"YearMonth": "2016-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 333.3716, "totalRevenueExVAT": 278.9292, "totalCost": 96.0, "totalQty": 40.0, "orderCount": 39, "margin": 182.92919999999998, "marginPct": 65.58266398785068}, {"YearMonth": "2016-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 880.4261999999999, "totalRevenueExVAT": 740.4209999999999, "totalCost": 172.8, "totalQty": 54.0, "orderCount": 49, "margin": 567.6209999999999, "marginPct": 76.66192612040986}, {"YearMonth": "2016-08", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 279.13259999999997, "totalRevenueExVAT": 232.60999999999999, "totalCost": 68.4, "totalQty": 19.0, "orderCount": 19, "margin": 164.20999999999998, "marginPct": 70.59455741369675}, {"YearMonth": "2016-08", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1496.1437999999998, "totalRevenueExVAT": 1251.7792, "totalCost": 861.0, "totalQty": 41.0, "orderCount": 28, "margin": 390.77919999999995, "marginPct": 31.21790168745414}, {"YearMonth": "2016-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 528.7663, "totalRevenueExVAT": 442.7568, "totalCost": 231.2, "totalQty": 34.0, "orderCount": 31, "margin": 211.5568, "marginPct": 47.78171673478533}, {"YearMonth": "2016-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 530.8530000000001, "totalRevenueExVAT": 442.3782, "totalCost": 197.2, "totalQty": 58.0, "orderCount": 58, "margin": 245.1782, "marginPct": 55.42275817388832}, {"YearMonth": "2016-08", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4145.383400000001, "totalRevenueExVAT": 3473.693, "totalCost": 1666.9, "totalQty": 211.0, "orderCount": 172, "margin": 1806.7930000000001, "marginPct": 52.01360626860232}, {"YearMonth": "2016-08", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 856.6866, "totalRevenueExVAT": 718.762, "totalCost": 318.2, "totalQty": 74.0, "orderCount": 70, "margin": 400.56199999999995, "marginPct": 55.7294347781324}, {"YearMonth": "2016-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 525.5668, "totalRevenueExVAT": 439.9652, "totalCost": 205.20000000000002, "totalQty": 36.0, "orderCount": 32, "margin": 234.76519999999996, "marginPct": 53.35994755948879}, {"YearMonth": "2016-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 987.7700000000001, "totalRevenueExVAT": 823.1400000000001, "totalCost": 325.0, "totalQty": 50.0, "orderCount": 49, "margin": 498.1400000000001, "marginPct": 60.517044488179415}, {"YearMonth": "2016-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1428.8175, "totalRevenueExVAT": 1195.425, "totalCost": 546.0, "totalQty": 42.0, "orderCount": 38, "margin": 649.425, "marginPct": 54.32586736934562}, {"YearMonth": "2016-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 606.0808, "totalRevenueExVAT": 505.06559999999996, "totalCost": 187.20000000000002, "totalQty": 52.0, "orderCount": 51, "margin": 317.8656, "marginPct": 62.935507783543365}, {"YearMonth": "2016-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 850.8151, "totalRevenueExVAT": 711.2966, "totalCost": 195.3, "totalQty": 93.0, "orderCount": 90, "margin": 515.9966, "marginPct": 72.54309946089998}, {"YearMonth": "2016-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 817.5581, "totalRevenueExVAT": 683.4807, "totalCost": 166.6, "totalQty": 49.0, "orderCount": 45, "margin": 516.8806999999999, "marginPct": 75.6247689217852}, {"YearMonth": "2016-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 766.4466, "totalRevenueExVAT": 638.7066, "totalCost": 239.20000000000002, "totalQty": 46.0, "orderCount": 38, "margin": 399.50659999999993, "marginPct": 62.549314505283014}, {"YearMonth": "2016-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 380.6038, "totalRevenueExVAT": 318.4128, "totalCost": 106.60000000000001, "totalQty": 41.0, "orderCount": 41, "margin": 211.81279999999998, "marginPct": 66.5214463740151}, {"YearMonth": "2016-09", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 470.4396, "totalRevenueExVAT": 394.1526, "totalCost": 228.16000000000003, "totalQty": 31.0, "orderCount": 30, "margin": 165.99259999999998, "marginPct": 42.11379044562943}, {"YearMonth": "2016-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 282.7171, "totalRevenueExVAT": 237.0088, "totalCost": 112.84, "totalQty": 28.0, "orderCount": 27, "margin": 124.1688, "marginPct": 52.389953453205116}, {"YearMonth": "2016-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 575.2822000000001, "totalRevenueExVAT": 481.9942, "totalCost": 232.5, "totalQty": 31.0, "orderCount": 31, "margin": 249.49419999999998, "marginPct": 51.762905030807424}, {"YearMonth": "2016-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 440.312, "totalRevenueExVAT": 366.928, "totalCost": 164.0, "totalQty": 40.0, "orderCount": 40, "margin": 202.928, "marginPct": 55.30458291544935}, {"YearMonth": "2016-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 302.991, "totalRevenueExVAT": 253.7352, "totalCost": 108.80000000000001, "totalQty": 34.0, "orderCount": 34, "margin": 144.93519999999998, "marginPct": 57.12065176609315}, {"YearMonth": "2016-09", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 944.9111, "totalRevenueExVAT": 787.4262, "totalCost": 243.71999999999997, "totalQty": 36.0, "orderCount": 32, "margin": 543.7062000000001, "marginPct": 69.04852797633609}, {"YearMonth": "2016-09", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1312.955, "totalRevenueExVAT": 1098.0134, "totalCost": 379.04, "totalQty": 46.0, "orderCount": 36, "margin": 718.9734000000001, "marginPct": 65.47947411206458}, {"YearMonth": "2016-09", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1220.1108000000002, "totalRevenueExVAT": 1016.7594, "totalCost": 433.49, "totalQty": 67.0, "orderCount": 59, "margin": 583.2694, "marginPct": 57.36552816723406}, {"YearMonth": "2016-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 841.2428, "totalRevenueExVAT": 706.9280000000001, "totalCost": 416.0, "totalQty": 40.0, "orderCount": 39, "margin": 290.9280000000001, "marginPct": 41.15383744879253}, {"YearMonth": "2016-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 389.3213, "totalRevenueExVAT": 326.0829, "totalCost": 171.6, "totalQty": 33.0, "orderCount": 32, "margin": 154.4829, "marginPct": 47.37534534929615}, {"YearMonth": "2016-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 382.8104, "totalRevenueExVAT": 319.008, "totalCost": 98.8, "totalQty": 26.0, "orderCount": 20, "margin": 220.20799999999997, "marginPct": 69.02898986859263}, {"YearMonth": "2016-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1218.0012, "totalRevenueExVAT": 1017.12, "totalCost": 296.0, "totalQty": 80.0, "orderCount": 70, "margin": 721.12, "marginPct": 70.89822243196477}, {"YearMonth": "2016-09", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1197.7232, "totalRevenueExVAT": 1000.5360000000001, "totalCost": 277.2, "totalQty": 132.0, "orderCount": 99, "margin": 723.336, "marginPct": 72.29484996042122}, {"YearMonth": "2016-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 930.6674999999999, "totalRevenueExVAT": 778.0500000000001, "totalCost": 343.2, "totalQty": 52.0, "orderCount": 42, "margin": 434.8500000000001, "marginPct": 55.88972431077694}, {"YearMonth": "2016-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 377.2278, "totalRevenueExVAT": 316.3496, "totalCost": 124.8, "totalQty": 26.0, "orderCount": 24, "margin": 191.5496, "marginPct": 60.54997382642494}, {"YearMonth": "2016-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 358.87780000000004, "totalRevenueExVAT": 299.0658, "totalCost": 103.2, "totalQty": 43.0, "orderCount": 43, "margin": 195.86580000000004, "marginPct": 65.49254378133509}, {"YearMonth": "2016-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 581.5655999999999, "totalRevenueExVAT": 484.63919999999996, "totalCost": 115.2, "totalQty": 36.0, "orderCount": 33, "margin": 369.43919999999997, "marginPct": 76.22973956708414}, {"YearMonth": "2016-09", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 413.914, "totalRevenueExVAT": 346.9212, "totalCost": 104.4, "totalQty": 29.0, "orderCount": 28, "margin": 242.5212, "marginPct": 69.90671080349082}, {"YearMonth": "2016-09", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 934.8403999999999, "totalRevenueExVAT": 779.0328000000001, "totalCost": 546.0, "totalQty": 26.0, "orderCount": 21, "margin": 233.03280000000007, "marginPct": 29.913092234370627}, {"YearMonth": "2016-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 252.1924, "totalRevenueExVAT": 210.1599, "totalCost": 108.8, "totalQty": 16.0, "orderCount": 16, "margin": 101.3599, "marginPct": 48.22989542724373}, {"YearMonth": "2016-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 393.0396, "totalRevenueExVAT": 327.534, "totalCost": 149.6, "totalQty": 44.0, "orderCount": 42, "margin": 177.934, "marginPct": 54.325352482490366}, {"YearMonth": "2016-09", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5500.0279, "totalRevenueExVAT": 4599.5123, "totalCost": 2267.3, "totalQty": 287.0, "orderCount": 239, "margin": 2332.2123, "marginPct": 50.70564329178987}, {"YearMonth": "2016-09", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1228.3458, "totalRevenueExVAT": 1025.2395999999999, "totalCost": 464.4, "totalQty": 108.0, "orderCount": 102, "margin": 560.8395999999999, "marginPct": 54.70327131335934}, {"YearMonth": "2016-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 424.28159999999997, "totalRevenueExVAT": 353.5672, "totalCost": 165.3, "totalQty": 29.0, "orderCount": 24, "margin": 188.2672, "marginPct": 53.247925712566094}, {"YearMonth": "2016-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1774.6934, "totalRevenueExVAT": 1481.652, "totalCost": 585.0, "totalQty": 90.0, "orderCount": 90, "margin": 896.652, "marginPct": 60.517044488179415}, {"YearMonth": "2016-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2288.385, "totalRevenueExVAT": 1906.9875, "totalCost": 871.0, "totalQty": 67.0, "orderCount": 63, "margin": 1035.9875, "marginPct": 54.32586736934562}, {"YearMonth": "2016-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1258.7832, "totalRevenueExVAT": 1048.9823999999999, "totalCost": 388.8, "totalQty": 108.0, "orderCount": 106, "margin": 660.1823999999999, "marginPct": 62.935507783543365}, {"YearMonth": "2016-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 715.4001, "totalRevenueExVAT": 599.9716, "totalCost": 168.0, "totalQty": 80.0, "orderCount": 79, "margin": 431.97159999999997, "marginPct": 71.99867460393125}, {"YearMonth": "2016-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 727.9986, "totalRevenueExVAT": 606.6655, "totalCost": 146.2, "totalQty": 43.0, "orderCount": 37, "margin": 460.46549999999996, "marginPct": 75.9010525569692}, {"YearMonth": "2016-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 605.7976, "totalRevenueExVAT": 511.56359999999995, "totalCost": 197.6, "totalQty": 38.0, "orderCount": 26, "margin": 313.96359999999993, "marginPct": 61.373326796511705}, {"YearMonth": "2016-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 349.26059999999995, "totalRevenueExVAT": 291.0492, "totalCost": 101.4, "totalQty": 39.0, "orderCount": 37, "margin": 189.64919999999998, "marginPct": 65.16052955995069}, {"YearMonth": "2016-10", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 452.6392, "totalRevenueExVAT": 381.43800000000005, "totalCost": 221.04000000000002, "totalQty": 30.0, "orderCount": 30, "margin": 160.39800000000002, "marginPct": 42.05087065263555}, {"YearMonth": "2016-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 484.17420000000004, "totalRevenueExVAT": 406.30080000000004, "totalCost": 193.87199999999999, "totalQty": 48.0, "orderCount": 47, "margin": 212.42880000000005, "marginPct": 52.28362828721972}, {"YearMonth": "2016-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 724.5446000000001, "totalRevenueExVAT": 606.3797999999999, "totalCost": 326.625, "totalQty": 39.0, "orderCount": 31, "margin": 279.75479999999993, "marginPct": 46.13524395106828}, {"YearMonth": "2016-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 440.312, "totalRevenueExVAT": 366.928, "totalCost": 182.36, "totalQty": 40.0, "orderCount": 39, "margin": 184.56799999999998, "marginPct": 50.300876466227706}, {"YearMonth": "2016-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 259.7066, "totalRevenueExVAT": 216.4212, "totalCost": 89.726, "totalQty": 29.0, "orderCount": 29, "margin": 126.6952, "marginPct": 58.54103017634132}, {"YearMonth": "2016-10", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 708.5671, "totalRevenueExVAT": 594.0088000000001, "totalCost": 190.988, "totalQty": 28.0, "orderCount": 27, "margin": 403.02080000000007, "marginPct": 67.84761437877688}, {"YearMonth": "2016-10", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1960.695, "totalRevenueExVAT": 1633.9134000000001, "totalCost": 571.458, "totalQty": 69.0, "orderCount": 60, "margin": 1062.4554000000003, "marginPct": 65.02519656182514}, {"YearMonth": "2016-10", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1139.68, "totalRevenueExVAT": 949.7344, "totalCost": 387.2, "totalQty": 64.0, "orderCount": 47, "margin": 562.5344, "marginPct": 59.23070702714358}, {"YearMonth": "2016-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 487.77939999999995, "totalRevenueExVAT": 406.4836, "totalCost": 190.624, "totalQty": 23.0, "orderCount": 23, "margin": 215.85960000000003, "marginPct": 53.1041350745762}, {"YearMonth": "2016-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 426.87, "totalRevenueExVAT": 355.72679999999997, "totalCost": 149.184, "totalQty": 36.0, "orderCount": 35, "margin": 206.54279999999997, "marginPct": 58.06219829374677}, {"YearMonth": "2016-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 191.4048, "totalRevenueExVAT": 159.504, "totalCost": 58.608000000000004, "totalQty": 12.0, "orderCount": 11, "margin": 100.89599999999999, "marginPct": 63.25609389106229}, {"YearMonth": "2016-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1553.6508000000001, "totalRevenueExVAT": 1296.828, "totalCost": 314.262, "totalQty": 102.0, "orderCount": 88, "margin": 982.566, "marginPct": 75.76687116564418}, {"YearMonth": "2016-10", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1029.3, "totalRevenueExVAT": 861.4, "totalCost": 258.42, "totalQty": 118.0, "orderCount": 91, "margin": 602.98, "marginPct": 70.0}, {"YearMonth": "2016-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 807.9749999999999, "totalRevenueExVAT": 673.3125, "totalCost": 261.45, "totalQty": 45.0, "orderCount": 42, "margin": 411.8625, "marginPct": 61.16959064327485}, {"YearMonth": "2016-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 687.3336, "totalRevenueExVAT": 572.778, "totalCost": 332.1, "totalQty": 27.0, "orderCount": 19, "margin": 240.678, "marginPct": 42.01942113698501}, {"YearMonth": "2016-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 632.6992, "totalRevenueExVAT": 531.68, "totalCost": 192.16000000000003, "totalQty": 40.0, "orderCount": 33, "margin": 339.5199999999999, "marginPct": 63.85795967499247}, {"YearMonth": "2016-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 346.0512, "totalRevenueExVAT": 290.862, "totalCost": 93.67800000000001, "totalQty": 39.0, "orderCount": 39, "margin": 197.18400000000003, "marginPct": 67.79297398766425}, {"YearMonth": "2016-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 869.656, "totalRevenueExVAT": 726.9588, "totalCost": 523.152, "totalQty": 54.0, "orderCount": 47, "margin": 203.80679999999995, "marginPct": 28.035536539347206}, {"YearMonth": "2016-10", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 370.8478, "totalRevenueExVAT": 311.0328, "totalCost": 93.60000000000001, "totalQty": 26.0, "orderCount": 25, "margin": 217.4328, "marginPct": 69.90671080349081}, {"YearMonth": "2016-10", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1222.4836, "totalRevenueExVAT": 1018.7352000000001, "totalCost": 804.44, "totalQty": 34.0, "orderCount": 27, "margin": 214.29520000000002, "marginPct": 21.03541725072423}, {"YearMonth": "2016-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 376.9416, "totalRevenueExVAT": 314.118, "totalCost": 119.196, "totalQty": 21.0, "orderCount": 21, "margin": 194.922, "marginPct": 62.053750501403925}, {"YearMonth": "2016-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 427.8672, "totalRevenueExVAT": 356.556, "totalCost": 122.034, "totalQty": 43.0, "orderCount": 43, "margin": 234.522, "marginPct": 65.77424023154849}, {"YearMonth": "2016-10", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 7061.8637, "totalRevenueExVAT": 5892.6541, "totalCost": 3341.264, "totalQty": 379.0, "orderCount": 310, "margin": 2551.3900999999996, "marginPct": 43.29780870728522}, {"YearMonth": "2016-10", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1746.5233, "totalRevenueExVAT": 1458.4911, "totalCost": 757.317, "totalQty": 159.0, "orderCount": 150, "margin": 701.1741, "marginPct": 48.07530879002278}, {"YearMonth": "2016-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 430.6608, "totalRevenueExVAT": 358.884, "totalCost": 156.438, "totalQty": 27.0, "orderCount": 21, "margin": 202.44600000000003, "marginPct": 56.40987059885646}, {"YearMonth": "2016-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1182.0314, "totalRevenueExVAT": 987.768, "totalCost": 386.04, "totalQty": 60.0, "orderCount": 57, "margin": 601.7280000000001, "marginPct": 60.917948344145586}, {"YearMonth": "2016-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1326.3525, "totalRevenueExVAT": 1110.0375, "totalCost": 501.85200000000003, "totalQty": 39.0, "orderCount": 35, "margin": 608.1854999999998, "marginPct": 54.78963548528765}, {"YearMonth": "2016-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 862.4996, "totalRevenueExVAT": 718.7472, "totalCost": 264.32800000000003, "totalQty": 74.0, "orderCount": 66, "margin": 454.4192, "marginPct": 63.22378716744914}, {"YearMonth": "2016-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 711.75, "totalRevenueExVAT": 593.125, "totalCost": 125.71, "totalQty": 65.0, "orderCount": 63, "margin": 467.415, "marginPct": 78.8054794520548}, {"YearMonth": "2016-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 418.992, "totalRevenueExVAT": 349.15999999999997, "totalCost": 63.16, "totalQty": 20.0, "orderCount": 20, "margin": 286.0, "marginPct": 81.91087180662161}, {"YearMonth": "2016-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 576.1808, "totalRevenueExVAT": 484.63919999999996, "totalCost": 183.88799999999998, "totalQty": 36.0, "orderCount": 28, "margin": 300.7512, "marginPct": 62.05672178395805}, {"YearMonth": "2016-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 313.43899999999996, "totalRevenueExVAT": 261.198, "totalCost": 89.39, "totalQty": 35.0, "orderCount": 34, "margin": 171.808, "marginPct": 65.7769201908131}, {"YearMonth": "2016-11", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 631.84, "totalRevenueExVAT": 526.5336, "totalCost": 294.72, "totalQty": 40.0, "orderCount": 40, "margin": 231.81359999999995, "marginPct": 44.026364129468654}, {"YearMonth": "2016-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 549.0029000000001, "totalRevenueExVAT": 462.0668, "totalCost": 210.028, "totalQty": 52.0, "orderCount": 52, "margin": 252.0388, "marginPct": 54.54596608109477}, {"YearMonth": "2016-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 521.322, "totalRevenueExVAT": 437.1788, "totalCost": 226.125, "totalQty": 27.0, "orderCount": 27, "margin": 211.05380000000002, "marginPct": 48.27631166012625}, {"YearMonth": "2016-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 666.2974, "totalRevenueExVAT": 555.2484, "totalCost": 268.981, "totalQty": 59.0, "orderCount": 57, "margin": 286.26739999999995, "marginPct": 51.556636633261796}, {"YearMonth": "2016-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 439.80879999999996, "totalRevenueExVAT": 366.5064, "totalCost": 145.418, "totalQty": 47.0, "orderCount": 44, "margin": 221.08839999999998, "marginPct": 60.32320308731307}, {"YearMonth": "2016-11", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 838.5999999999999, "totalRevenueExVAT": 698.8335999999999, "totalCost": 218.272, "totalQty": 32.0, "orderCount": 28, "margin": 480.56159999999994, "marginPct": 68.76624134844117}, {"YearMonth": "2016-11", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2916.5775, "totalRevenueExVAT": 2434.85, "totalCost": 819.918, "totalQty": 99.0, "orderCount": 80, "margin": 1614.9319999999998, "marginPct": 66.32572848430087}, {"YearMonth": "2016-11", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 2166.23, "totalRevenueExVAT": 1805.1911, "totalCost": 683.65, "totalQty": 113.0, "orderCount": 80, "margin": 1121.5411, "marginPct": 62.12866327559448}, {"YearMonth": "2016-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 965.5795999999999, "totalRevenueExVAT": 804.6504000000001, "totalCost": 348.096, "totalQty": 42.0, "orderCount": 41, "margin": 456.5544000000001, "marginPct": 56.73947344088812}, {"YearMonth": "2016-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 591.5962999999999, "totalRevenueExVAT": 494.6449, "totalCost": 190.624, "totalQty": 46.0, "orderCount": 43, "margin": 304.0209, "marginPct": 61.46245518754969}, {"YearMonth": "2016-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 558.264, "totalRevenueExVAT": 465.21999999999997, "totalCost": 170.94, "totalQty": 35.0, "orderCount": 29, "margin": 294.28, "marginPct": 63.25609389106229}, {"YearMonth": "2016-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1968.6109999999999, "totalRevenueExVAT": 1647.6129, "totalCost": 375.882, "totalQty": 122.0, "orderCount": 104, "margin": 1271.7309, "marginPct": 77.1862674782408}, {"YearMonth": "2016-11", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1464.7450999999999, "totalRevenueExVAT": 1223.2093, "totalCost": 352.59, "totalQty": 161.0, "orderCount": 123, "margin": 870.6193000000001, "marginPct": 71.17500659944295}, {"YearMonth": "2016-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1011.4649999999999, "totalRevenueExVAT": 851.2, "totalCost": 313.74, "totalQty": 54.0, "orderCount": 46, "margin": 537.46, "marginPct": 63.141447368421055}, {"YearMonth": "2016-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2313.1075, "totalRevenueExVAT": 1931.748, "totalCost": 1033.2, "totalQty": 84.0, "orderCount": 62, "margin": 898.548, "marginPct": 46.51476279514719}, {"YearMonth": "2016-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 792.2032, "totalRevenueExVAT": 664.6, "totalCost": 240.20000000000002, "totalQty": 50.0, "orderCount": 45, "margin": 424.4, "marginPct": 63.85795967499247}, {"YearMonth": "2016-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 474.3288, "totalRevenueExVAT": 402.732, "totalCost": 129.708, "totalQty": 54.0, "orderCount": 49, "margin": 273.024, "marginPct": 67.79297398766425}, {"YearMonth": "2016-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 834.356, "totalRevenueExVAT": 700.0344, "totalCost": 484.40000000000003, "totalQty": 50.0, "orderCount": 41, "margin": 215.63439999999997, "marginPct": 30.80340051860308}, {"YearMonth": "2016-11", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 512.0092, "totalRevenueExVAT": 430.6608, "totalCost": 129.6, "totalQty": 36.0, "orderCount": 31, "margin": 301.0608, "marginPct": 69.90671080349081}, {"YearMonth": "2016-11", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1218.4877999999999, "totalRevenueExVAT": 1015.4060000000001, "totalCost": 757.12, "totalQty": 32.0, "orderCount": 28, "margin": 258.28600000000006, "marginPct": 25.43672186297895}, {"YearMonth": "2016-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 387.7108, "totalRevenueExVAT": 323.0928, "totalCost": 130.548, "totalQty": 23.0, "orderCount": 23, "margin": 192.5448, "marginPct": 59.59427136723566}, {"YearMonth": "2016-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 607.9702, "totalRevenueExVAT": 506.64119999999997, "totalCost": 178.794, "totalQty": 63.0, "orderCount": 60, "margin": 327.84719999999993, "marginPct": 64.70993673629384}, {"YearMonth": "2016-11", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 7171.1101, "totalRevenueExVAT": 5984.1537, "totalCost": 3173.76, "totalQty": 360.0, "orderCount": 304, "margin": 2810.3936999999996, "marginPct": 46.963929084909694}, {"YearMonth": "2016-11", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1913.5991000000001, "totalRevenueExVAT": 1597.7226, "totalCost": 771.606, "totalQty": 162.0, "orderCount": 154, "margin": 826.1166000000001, "marginPct": 51.705884363155405}, {"YearMonth": "2016-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 648.6496, "totalRevenueExVAT": 544.972, "totalCost": 237.55399999999997, "totalQty": 41.0, "orderCount": 31, "margin": 307.418, "marginPct": 56.40987059885646}, {"YearMonth": "2016-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1600.1884000000002, "totalRevenueExVAT": 1333.4878, "totalCost": 521.154, "totalQty": 81.0, "orderCount": 79, "margin": 812.3338000000001, "marginPct": 60.91797765228899}, {"YearMonth": "2016-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1525.5912, "totalRevenueExVAT": 1280.8135, "totalCost": 579.0600000000001, "totalQty": 45.0, "orderCount": 43, "margin": 701.7534999999999, "marginPct": 54.78967078345129}, {"YearMonth": "2016-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 757.6018, "totalRevenueExVAT": 631.3328, "totalCost": 232.18, "totalQty": 65.0, "orderCount": 65, "margin": 399.1528, "marginPct": 63.22383376881417}, {"YearMonth": "2016-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1040.25, "totalRevenueExVAT": 866.875, "totalCost": 183.73, "totalQty": 95.0, "orderCount": 91, "margin": 683.145, "marginPct": 78.8054794520548}, {"YearMonth": "2016-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 666.8956000000001, "totalRevenueExVAT": 558.656, "totalCost": 101.056, "totalQty": 32.0, "orderCount": 29, "margin": 457.59999999999997, "marginPct": 81.91087180662161}, {"YearMonth": "2016-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 831.0658, "totalRevenueExVAT": 692.5554, "totalCost": 245.18399999999997, "totalQty": 48.0, "orderCount": 31, "margin": 447.3714, "marginPct": 64.59720045501052}, {"YearMonth": "2016-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 375.131, "totalRevenueExVAT": 317.5836, "totalCost": 104.714, "totalQty": 41.0, "orderCount": 36, "margin": 212.8696, "marginPct": 67.02789438749356}, {"YearMonth": "2016-12", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 484.7272, "totalRevenueExVAT": 403.846, "totalCost": 221.04000000000002, "totalQty": 30.0, "orderCount": 29, "margin": 182.80599999999998, "marginPct": 45.26626486333899}, {"YearMonth": "2016-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 430.0796, "totalRevenueExVAT": 358.43800000000005, "totalCost": 161.56, "totalQty": 40.0, "orderCount": 40, "margin": 196.87800000000004, "marginPct": 54.926653981999685}, {"YearMonth": "2016-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 434.6618, "totalRevenueExVAT": 362.158, "totalCost": 184.25, "totalQty": 22.0, "orderCount": 21, "margin": 177.90800000000002, "marginPct": 49.12441531044461}, {"YearMonth": "2016-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 417.7162, "totalRevenueExVAT": 349.6216, "totalCost": 164.124, "totalQty": 36.0, "orderCount": 35, "margin": 185.4976, "marginPct": 53.05667613213829}, {"YearMonth": "2016-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 277.9884, "totalRevenueExVAT": 232.974, "totalCost": 89.726, "totalQty": 29.0, "orderCount": 28, "margin": 143.248, "marginPct": 61.48668950183283}, {"YearMonth": "2016-12", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 813.138, "totalRevenueExVAT": 677.625, "totalCost": 225.093, "totalQty": 33.0, "orderCount": 29, "margin": 452.53200000000004, "marginPct": 66.78206972883233}, {"YearMonth": "2016-12", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1468.4098, "totalRevenueExVAT": 1234.7715, "totalCost": 438.946, "totalQty": 53.0, "orderCount": 46, "margin": 795.8255, "marginPct": 64.45123652432859}, {"YearMonth": "2016-12", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1254.794, "totalRevenueExVAT": 1045.7145, "totalCost": 375.09999999999997, "totalQty": 62.0, "orderCount": 47, "margin": 670.6145000000001, "marginPct": 64.12978877121816}, {"YearMonth": "2016-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 748.1668, "totalRevenueExVAT": 629.946, "totalCost": 265.216, "totalQty": 32.0, "orderCount": 32, "margin": 364.73, "marginPct": 57.898613531953536}, {"YearMonth": "2016-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 437.125, "totalRevenueExVAT": 366.195, "totalCost": 132.608, "totalQty": 32.0, "orderCount": 31, "margin": 233.587, "marginPct": 63.78759950299704}, {"YearMonth": "2016-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 173.8624, "totalRevenueExVAT": 144.87199999999999, "totalCost": 53.724000000000004, "totalQty": 11.0, "orderCount": 9, "margin": 91.14799999999998, "marginPct": 62.91622949914406}, {"YearMonth": "2016-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1625.7484, "totalRevenueExVAT": 1358.7899, "totalCost": 298.85699999999997, "totalQty": 97.0, "orderCount": 82, "margin": 1059.9329, "marginPct": 78.00565046884732}, {"YearMonth": "2016-12", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 214.0725, "totalRevenueExVAT": 178.3949, "totalCost": 50.37, "totalQty": 23.0, "orderCount": 17, "margin": 128.0249, "marginPct": 71.76488789758004}, {"YearMonth": "2016-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 892.6800000000001, "totalRevenueExVAT": 748.1850000000001, "totalCost": 313.73999999999995, "totalQty": 54.0, "orderCount": 45, "margin": 434.4450000000001, "marginPct": 58.06652098077348}, {"YearMonth": "2016-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1782.3296, "totalRevenueExVAT": 1492.3943, "totalCost": 787.2, "totalQty": 64.0, "orderCount": 45, "margin": 705.1942999999999, "marginPct": 47.25254579168521}, {"YearMonth": "2016-12", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 501.9608, "totalRevenueExVAT": 422.648, "totalCost": 158.532, "totalQty": 33.0, "orderCount": 29, "margin": 264.116, "marginPct": 62.49077246313717}, {"YearMonth": "2016-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 266.6444, "totalRevenueExVAT": 222.232, "totalCost": 74.462, "totalQty": 31.0, "orderCount": 30, "margin": 147.76999999999998, "marginPct": 66.49357428273154}, {"YearMonth": "2016-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 409.19719999999995, "totalRevenueExVAT": 341.026, "totalCost": 232.512, "totalQty": 24.0, "orderCount": 22, "margin": 108.51400000000001, "marginPct": 31.819861242251324}, {"YearMonth": "2016-12", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 287.1508, "totalRevenueExVAT": 239.2322, "totalCost": 72.0, "totalQty": 20.0, "orderCount": 20, "margin": 167.2322, "marginPct": 69.90371697455443}, {"YearMonth": "2016-12", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 964.1672000000001, "totalRevenueExVAT": 808.9680000000001, "totalCost": 591.5, "totalQty": 25.0, "orderCount": 18, "margin": 217.46800000000007, "marginPct": 26.88215108632233}, {"YearMonth": "2016-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 479.1964, "totalRevenueExVAT": 403.8356, "totalCost": 170.28, "totalQty": 30.0, "orderCount": 30, "margin": 233.5556, "marginPct": 57.83432664183148}, {"YearMonth": "2016-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 473.28900000000004, "totalRevenueExVAT": 395.4444, "totalCost": 150.41400000000002, "totalQty": 53.0, "orderCount": 51, "margin": 245.03039999999996, "marginPct": 61.96330002397302}, {"YearMonth": "2016-12", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5711.548, "totalRevenueExVAT": 4764.732, "totalCost": 2380.32, "totalQty": 270.0, "orderCount": 230, "margin": 2384.412, "marginPct": 50.042940505363156}, {"YearMonth": "2016-12", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1761.8064, "totalRevenueExVAT": 1469.744, "totalCost": 662.057, "totalQty": 139.0, "orderCount": 135, "margin": 807.6869999999999, "marginPct": 54.95426414395976}, {"YearMonth": "2016-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 453.0188, "totalRevenueExVAT": 377.474, "totalCost": 168.02599999999998, "totalQty": 29.0, "orderCount": 22, "margin": 209.448, "marginPct": 55.48673551026031}, {"YearMonth": "2016-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1415.9484000000002, "totalRevenueExVAT": 1185.237, "totalCost": 463.248, "totalQty": 72.0, "orderCount": 66, "margin": 721.989, "marginPct": 60.91515874040382}, {"YearMonth": "2016-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 853.9427999999999, "totalRevenueExVAT": 711.539, "totalCost": 321.7, "totalQty": 25.0, "orderCount": 25, "margin": 389.839, "marginPct": 54.78814232248689}, {"YearMonth": "2016-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 615.9464, "totalRevenueExVAT": 514.687, "totalCost": 189.316, "totalQty": 53.0, "orderCount": 50, "margin": 325.371, "marginPct": 63.21725631306017}, {"YearMonth": "2016-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 732.0999999999999, "totalRevenueExVAT": 611.38, "totalCost": 133.446, "totalQty": 69.0, "orderCount": 68, "margin": 477.93399999999997, "marginPct": 78.17298570447184}, {"YearMonth": "2016-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 282.7968, "totalRevenueExVAT": 235.67399999999998, "totalCost": 44.211999999999996, "totalQty": 14.0, "orderCount": 13, "margin": 191.462, "marginPct": 81.24018771693102}, {"YearMonth": "2016-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 434.9524, "totalRevenueExVAT": 364.97, "totalCost": 127.69999999999999, "totalQty": 25.0, "orderCount": 21, "margin": 237.27000000000004, "marginPct": 65.01082280735403}, {"YearMonth": "2016-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 266.7248, "totalRevenueExVAT": 222.184, "totalCost": 71.512, "totalQty": 28.0, "orderCount": 28, "margin": 150.672, "marginPct": 67.81406401901127}, {"YearMonth": "2017-01", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 839.76, "totalRevenueExVAT": 706.09, "totalCost": 405.24, "totalQty": 55.0, "orderCount": 52, "margin": 300.85, "marginPct": 42.60788284779561}, {"YearMonth": "2017-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 744.9, "totalRevenueExVAT": 626.5400000000001, "totalCost": 294.847, "totalQty": 73.0, "orderCount": 73, "margin": 331.6930000000001, "marginPct": 52.94043476872986}, {"YearMonth": "2017-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 766.13, "totalRevenueExVAT": 643.79, "totalCost": 309.875, "totalQty": 37.0, "orderCount": 37, "margin": 333.91499999999996, "marginPct": 51.867068453998975}, {"YearMonth": "2017-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 861.16, "totalRevenueExVAT": 720.73, "totalCost": 323.689, "totalQty": 71.0, "orderCount": 70, "margin": 397.041, "marginPct": 55.08872948260791}, {"YearMonth": "2017-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 502.6, "totalRevenueExVAT": 418.61999999999995, "totalCost": 163.982, "totalQty": 53.0, "orderCount": 52, "margin": 254.63799999999995, "marginPct": 60.82795853040943}, {"YearMonth": "2017-01", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2240.48, "totalRevenueExVAT": 1866.63, "totalCost": 600.2479999999999, "totalQty": 88.0, "orderCount": 81, "margin": 1266.382, "marginPct": 67.8432254919293}, {"YearMonth": "2017-01", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 3774.53, "totalRevenueExVAT": 3152.6800000000003, "totalCost": 1134.634, "totalQty": 137.0, "orderCount": 109, "margin": 2018.0460000000003, "marginPct": 64.0104926602129}, {"YearMonth": "2017-01", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 3308.0, "totalRevenueExVAT": 2763.79, "totalCost": 1191.85, "totalQty": 197.0, "orderCount": 134, "margin": 1571.94, "marginPct": 56.87624602448088}, {"YearMonth": "2017-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1021.79, "totalRevenueExVAT": 854.45, "totalCost": 356.384, "totalQty": 43.0, "orderCount": 42, "margin": 498.06600000000003, "marginPct": 58.29083035871028}, {"YearMonth": "2017-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 661.16, "totalRevenueExVAT": 554.5200000000001, "totalCost": 211.344, "totalQty": 51.0, "orderCount": 51, "margin": 343.1760000000001, "marginPct": 61.88703743778403}, {"YearMonth": "2017-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 613.3399999999999, "totalRevenueExVAT": 512.98, "totalCost": 195.36, "totalQty": 40.0, "orderCount": 33, "margin": 317.62, "marginPct": 61.91664392373971}, {"YearMonth": "2017-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 4625.37, "totalRevenueExVAT": 3867.76, "totalCost": 1260.129, "totalQty": 409.0, "orderCount": 301, "margin": 2607.6310000000003, "marginPct": 67.4196692659317}, {"YearMonth": "2017-01", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1581.9399999999998, "totalRevenueExVAT": 1333.41, "totalCost": 335.07, "totalQty": 153.0, "orderCount": 112, "margin": 998.3400000000001, "marginPct": 74.8711949062929}, {"YearMonth": "2017-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1618.5, "totalRevenueExVAT": 1353.16, "totalCost": 557.76, "totalQty": 96.0, "orderCount": 76, "margin": 795.4000000000001, "marginPct": 58.780927606491474}, {"YearMonth": "2017-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 3056.1099999999997, "totalRevenueExVAT": 2550.6800000000003, "totalCost": 1328.4, "totalQty": 108.0, "orderCount": 72, "margin": 1222.2800000000002, "marginPct": 47.91977041416407}, {"YearMonth": "2017-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 737.0, "totalRevenueExVAT": 617.96, "totalCost": 235.39600000000002, "totalQty": 49.0, "orderCount": 43, "margin": 382.564, "marginPct": 61.90756683280472}, {"YearMonth": "2017-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 496.6, "totalRevenueExVAT": 413.93, "totalCost": 139.316, "totalQty": 58.0, "orderCount": 58, "margin": 274.61400000000003, "marginPct": 66.3431014905902}, {"YearMonth": "2017-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Herbal Supplements", "totalRevenue": 1388.52, "totalRevenueExVAT": 1157.1000000000001, "totalCost": 378.624, "totalQty": 87.0, "orderCount": 69, "margin": 778.4760000000001, "marginPct": 67.2781954887218}, {"YearMonth": "2017-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 696.3499999999999, "totalRevenueExVAT": 580.36, "totalCost": 397.208, "totalQty": 41.0, "orderCount": 37, "margin": 183.152, "marginPct": 31.558343097387827}, {"YearMonth": "2017-01", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 775.4399999999999, "totalRevenueExVAT": 645.84, "totalCost": 194.4, "totalQty": 54.0, "orderCount": 52, "margin": 451.44000000000005, "marginPct": 69.89966555183948}, {"YearMonth": "2017-01", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1262.49, "totalRevenueExVAT": 1051.95, "totalCost": 780.78, "totalQty": 33.0, "orderCount": 26, "margin": 271.1700000000001, "marginPct": 25.77784115214602}, {"YearMonth": "2017-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 980.27, "totalRevenueExVAT": 816.5600000000001, "totalCost": 346.236, "totalQty": 61.0, "orderCount": 59, "margin": 470.32400000000007, "marginPct": 57.59821690996375}, {"YearMonth": "2017-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 951.9100000000001, "totalRevenueExVAT": 798.0, "totalCost": 306.504, "totalQty": 108.0, "orderCount": 104, "margin": 491.496, "marginPct": 61.59097744360902}, {"YearMonth": "2017-01", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 14473.26, "totalRevenueExVAT": 12092.58, "totalCost": 6294.624000000001, "totalQty": 714.0, "orderCount": 598, "margin": 5797.955999999999, "marginPct": 47.946393573579826}, {"YearMonth": "2017-01", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4721.64, "totalRevenueExVAT": 3940.15, "totalCost": 1867.096, "totalQty": 392.0, "orderCount": 363, "margin": 2073.054, "marginPct": 52.613580701242334}, {"YearMonth": "2017-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 660.56, "totalRevenueExVAT": 550.1600000000001, "totalCost": 266.524, "totalQty": 46.0, "orderCount": 38, "margin": 283.6360000000001, "marginPct": 51.555183946488306}, {"YearMonth": "2017-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1666.26, "totalRevenueExVAT": 1388.16, "totalCost": 521.154, "totalQty": 81.0, "orderCount": 81, "margin": 867.0060000000001, "marginPct": 62.45720954356847}, {"YearMonth": "2017-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2003.8700000000001, "totalRevenueExVAT": 1669.91, "totalCost": 707.74, "totalQty": 55.0, "orderCount": 51, "margin": 962.1700000000001, "marginPct": 57.618075225610966}, {"YearMonth": "2017-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1259.82, "totalRevenueExVAT": 1053.06, "totalCost": 364.344, "totalQty": 102.0, "orderCount": 99, "margin": 688.7159999999999, "marginPct": 65.40140162953676}, {"YearMonth": "2017-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1042.95, "totalRevenueExVAT": 870.05, "totalCost": 245.618, "totalQty": 127.0, "orderCount": 124, "margin": 624.432, "marginPct": 71.76966840986151}, {"YearMonth": "2017-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1354.72, "totalRevenueExVAT": 1130.98, "totalCost": 271.58799999999997, "totalQty": 86.0, "orderCount": 76, "margin": 859.392, "marginPct": 75.98648959309625}, {"YearMonth": "2017-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 881.1999999999999, "totalRevenueExVAT": 734.4200000000001, "totalCost": 265.616, "totalQty": 52.0, "orderCount": 44, "margin": 468.8040000000001, "marginPct": 63.83322894256693}, {"YearMonth": "2017-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 506.1, "totalRevenueExVAT": 422.76, "totalCost": 137.916, "totalQty": 54.0, "orderCount": 54, "margin": 284.844, "marginPct": 67.37723531081464}, {"YearMonth": "2017-02", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 488.32, "totalRevenueExVAT": 407.04, "totalCost": 235.776, "totalQty": 32.0, "orderCount": 32, "margin": 171.264, "marginPct": 42.07547169811321}, {"YearMonth": "2017-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 382.7, "totalRevenueExVAT": 321.86, "totalCost": 153.482, "totalQty": 38.0, "orderCount": 33, "margin": 168.37800000000001, "marginPct": 52.314049586776854}, {"YearMonth": "2017-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 545.09, "totalRevenueExVAT": 457.25, "totalCost": 209.375, "totalQty": 25.0, "orderCount": 22, "margin": 247.875, "marginPct": 54.20995079278295}, {"YearMonth": "2017-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 591.8299999999999, "totalRevenueExVAT": 493.09999999999997, "totalCost": 209.714, "totalQty": 46.0, "orderCount": 45, "margin": 283.38599999999997, "marginPct": 57.47029000202798}, {"YearMonth": "2017-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 262.71, "totalRevenueExVAT": 218.85, "totalCost": 83.538, "totalQty": 27.0, "orderCount": 27, "margin": 135.312, "marginPct": 61.82864976010967}, {"YearMonth": "2017-02", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 738.34, "totalRevenueExVAT": 615.38, "totalCost": 197.809, "totalQty": 29.0, "orderCount": 25, "margin": 417.571, "marginPct": 67.85579641847315}, {"YearMonth": "2017-02", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1450.28, "totalRevenueExVAT": 1223.04, "totalCost": 463.792, "totalQty": 56.0, "orderCount": 49, "margin": 759.248, "marginPct": 62.078754578754584}, {"YearMonth": "2017-02", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 2204.63, "totalRevenueExVAT": 1845.69, "totalCost": 853.05, "totalQty": 141.0, "orderCount": 86, "margin": 992.6400000000001, "marginPct": 53.781512605042025}, {"YearMonth": "2017-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 621.26, "totalRevenueExVAT": 517.67, "totalCost": 207.20000000000002, "totalQty": 25.0, "orderCount": 25, "margin": 310.4699999999999, "marginPct": 59.97450113006354}, {"YearMonth": "2017-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 386.43, "totalRevenueExVAT": 322.13, "totalCost": 116.03200000000001, "totalQty": 28.0, "orderCount": 27, "margin": 206.09799999999998, "marginPct": 63.9797597243349}, {"YearMonth": "2017-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 340.81, "totalRevenueExVAT": 288.39, "totalCost": 107.44800000000001, "totalQty": 22.0, "orderCount": 17, "margin": 180.94199999999998, "marginPct": 62.742120045771344}, {"YearMonth": "2017-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2007.24, "totalRevenueExVAT": 1671.8400000000001, "totalCost": 529.932, "totalQty": 172.0, "orderCount": 129, "margin": 1141.9080000000001, "marginPct": 68.30246913580247}, {"YearMonth": "2017-02", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1998.11, "totalRevenueExVAT": 1674.41, "totalCost": 431.43, "totalQty": 197.0, "orderCount": 147, "margin": 1242.98, "marginPct": 74.23390925758923}, {"YearMonth": "2017-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 698.1700000000001, "totalRevenueExVAT": 593.46, "totalCost": 244.01999999999998, "totalQty": 42.0, "orderCount": 35, "margin": 349.44000000000005, "marginPct": 58.88181174805379}, {"YearMonth": "2017-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1557.35, "totalRevenueExVAT": 1297.88, "totalCost": 651.9000000000001, "totalQty": 53.0, "orderCount": 43, "margin": 645.98, "marginPct": 49.771935772182324}, {"YearMonth": "2017-02", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 567.8399999999999, "totalRevenueExVAT": 473.12, "totalCost": 172.94400000000002, "totalQty": 36.0, "orderCount": 29, "margin": 300.176, "marginPct": 63.446060196144735}, {"YearMonth": "2017-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 494.30999999999995, "totalRevenueExVAT": 413.26, "totalCost": 134.512, "totalQty": 56.0, "orderCount": 55, "margin": 278.748, "marginPct": 67.45099937085612}, {"YearMonth": "2017-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Herbal Supplements", "totalRevenue": 1322.02, "totalRevenueExVAT": 1103.9, "totalCost": 361.216, "totalQty": 83.0, "orderCount": 68, "margin": 742.6840000000001, "marginPct": 67.2781954887218}, {"YearMonth": "2017-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 870.55, "totalRevenueExVAT": 725.5400000000001, "totalCost": 474.71200000000005, "totalQty": 49.0, "orderCount": 46, "margin": 250.82800000000003, "marginPct": 34.571215921934005}, {"YearMonth": "2017-02", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 311.57, "totalRevenueExVAT": 261.81, "totalCost": 72.0, "totalQty": 20.0, "orderCount": 20, "margin": 189.81, "marginPct": 72.4991405981437}, {"YearMonth": "2017-02", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 699.1500000000001, "totalRevenueExVAT": 582.5699999999999, "totalCost": 425.88, "totalQty": 18.0, "orderCount": 17, "margin": 156.68999999999994, "marginPct": 26.896338637416957}, {"YearMonth": "2017-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 607.85, "totalRevenueExVAT": 508.40000000000003, "totalCost": 227.04000000000002, "totalQty": 40.0, "orderCount": 40, "margin": 281.36, "marginPct": 55.34225019669552}, {"YearMonth": "2017-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 575.2800000000001, "totalRevenueExVAT": 479.4, "totalCost": 192.984, "totalQty": 68.0, "orderCount": 66, "margin": 286.41599999999994, "marginPct": 59.744680851063826}, {"YearMonth": "2017-02", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5557.72, "totalRevenueExVAT": 4636.8, "totalCost": 2539.0080000000003, "totalQty": 288.0, "orderCount": 242, "margin": 2097.792, "marginPct": 45.242236024844715}, {"YearMonth": "2017-02", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 2777.8, "totalRevenueExVAT": 2318.0, "totalCost": 1162.172, "totalQty": 244.0, "orderCount": 199, "margin": 1155.828, "marginPct": 49.863157894736844}, {"YearMonth": "2017-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 531.17, "totalRevenueExVAT": 442.54999999999995, "totalCost": 196.99599999999998, "totalQty": 34.0, "orderCount": 29, "margin": 245.55399999999997, "marginPct": 55.486159755959775}, {"YearMonth": "2017-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1458.28, "totalRevenueExVAT": 1218.1, "totalCost": 437.512, "totalQty": 68.0, "orderCount": 66, "margin": 780.588, "marginPct": 64.08242344635087}, {"YearMonth": "2017-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1161.29, "totalRevenueExVAT": 967.85, "totalCost": 398.908, "totalQty": 31.0, "orderCount": 29, "margin": 568.942, "marginPct": 58.7841091078163}, {"YearMonth": "2017-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 711.43, "totalRevenueExVAT": 594.52, "totalCost": 200.032, "totalQty": 56.0, "orderCount": 55, "margin": 394.48799999999994, "marginPct": 66.35403350602166}, {"YearMonth": "2017-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 529.5400000000001, "totalRevenueExVAT": 444.59999999999997, "totalCost": 125.71, "totalQty": 65.0, "orderCount": 62, "margin": 318.89, "marginPct": 71.72514619883042}, {"YearMonth": "2017-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 832.63, "totalRevenueExVAT": 693.77, "totalCost": 167.374, "totalQty": 53.0, "orderCount": 49, "margin": 526.396, "marginPct": 75.87471352177234}, {"YearMonth": "2017-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 269.25, "totalRevenueExVAT": 224.4, "totalCost": 76.61999999999999, "totalQty": 15.0, "orderCount": 14, "margin": 147.78000000000003, "marginPct": 65.85561497326205}, {"YearMonth": "2017-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 385.08, "totalRevenueExVAT": 320.82, "totalCost": 99.606, "totalQty": 39.0, "orderCount": 35, "margin": 221.214, "marginPct": 68.95268374789602}, {"YearMonth": "2017-03", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 742.66, "totalRevenueExVAT": 623.2800000000001, "totalCost": 361.03200000000004, "totalQty": 49.0, "orderCount": 48, "margin": 262.24800000000005, "marginPct": 42.07547169811321}, {"YearMonth": "2017-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 443.66, "totalRevenueExVAT": 372.68, "totalCost": 177.71599999999998, "totalQty": 44.0, "orderCount": 43, "margin": 194.96400000000003, "marginPct": 52.31404958677687}, {"YearMonth": "2017-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 570.6999999999999, "totalRevenueExVAT": 475.53999999999996, "totalCost": 217.75, "totalQty": 26.0, "orderCount": 24, "margin": 257.78999999999996, "marginPct": 54.209950792782934}, {"YearMonth": "2017-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 645.3399999999999, "totalRevenueExVAT": 539.5, "totalCost": 227.95000000000002, "totalQty": 50.0, "orderCount": 48, "margin": 311.54999999999995, "marginPct": 57.74791473586654}, {"YearMonth": "2017-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 407.95, "totalRevenueExVAT": 339.89, "totalCost": 126.854, "totalQty": 41.0, "orderCount": 38, "margin": 213.036, "marginPct": 62.67792521109771}, {"YearMonth": "2017-03", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 710.1800000000001, "totalRevenueExVAT": 595.26, "totalCost": 184.167, "totalQty": 27.0, "orderCount": 24, "margin": 411.09299999999996, "marginPct": 69.06108255216208}, {"YearMonth": "2017-03", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1647.97, "totalRevenueExVAT": 1373.16, "totalCost": 472.074, "totalQty": 57.0, "orderCount": 53, "margin": 901.086, "marginPct": 65.62134055754609}, {"YearMonth": "2017-03", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 2059.02, "totalRevenueExVAT": 1717.53, "totalCost": 719.9499999999999, "totalQty": 119.0, "orderCount": 89, "margin": 997.58, "marginPct": 58.08224601608124}, {"YearMonth": "2017-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 773.4499999999999, "totalRevenueExVAT": 644.49, "totalCost": 256.928, "totalQty": 31.0, "orderCount": 30, "margin": 387.562, "marginPct": 60.13468013468014}, {"YearMonth": "2017-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 627.75, "totalRevenueExVAT": 523.35, "totalCost": 186.48000000000002, "totalQty": 45.0, "orderCount": 42, "margin": 336.87, "marginPct": 64.36801375752364}, {"YearMonth": "2017-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 590.15, "totalRevenueExVAT": 491.72999999999996, "totalCost": 180.70800000000003, "totalQty": 37.0, "orderCount": 29, "margin": 311.02199999999993, "marginPct": 63.250564334085766}, {"YearMonth": "2017-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2116.98, "totalRevenueExVAT": 1769.48, "totalCost": 483.717, "totalQty": 157.0, "orderCount": 121, "margin": 1285.763, "marginPct": 72.66332481859077}, {"YearMonth": "2017-03", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1409.98, "totalRevenueExVAT": 1174.0300000000002, "totalCost": 313.17, "totalQty": 143.0, "orderCount": 117, "margin": 860.8600000000001, "marginPct": 73.32521315468941}, {"YearMonth": "2017-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1109.44, "totalRevenueExVAT": 931.71, "totalCost": 371.84, "totalQty": 64.0, "orderCount": 48, "margin": 559.8700000000001, "marginPct": 60.09058612658447}, {"YearMonth": "2017-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1839.37, "totalRevenueExVAT": 1541.23, "totalCost": 774.9000000000001, "totalQty": 63.0, "orderCount": 46, "margin": 766.3299999999999, "marginPct": 49.72197530543786}, {"YearMonth": "2017-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 810.79, "totalRevenueExVAT": 677.79, "totalCost": 245.00400000000002, "totalQty": 51.0, "orderCount": 45, "margin": 432.78599999999994, "marginPct": 63.852520692249804}, {"YearMonth": "2017-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 399.77, "totalRevenueExVAT": 335.7, "totalCost": 108.09, "totalQty": 45.0, "orderCount": 44, "margin": 227.60999999999999, "marginPct": 67.80160857908847}, {"YearMonth": "2017-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Herbal Supplements", "totalRevenue": 1548.4, "totalRevenueExVAT": 1289.96, "totalCost": 391.68, "totalQty": 90.0, "orderCount": 73, "margin": 898.28, "marginPct": 69.63626779124934}, {"YearMonth": "2017-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 750.91, "totalRevenueExVAT": 628.32, "totalCost": 406.896, "totalQty": 42.0, "orderCount": 39, "margin": 221.42400000000004, "marginPct": 35.24064171122995}, {"YearMonth": "2017-03", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 427.99, "totalRevenueExVAT": 358.83, "totalCost": 97.2, "totalQty": 27.0, "orderCount": 26, "margin": 261.63, "marginPct": 72.91196388261851}, {"YearMonth": "2017-03", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 519.35, "totalRevenueExVAT": 432.77, "totalCost": 307.58, "totalQty": 13.0, "orderCount": 12, "margin": 125.19, "marginPct": 28.92760588765395}, {"YearMonth": "2017-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 545.8, "totalRevenueExVAT": 454.6, "totalCost": 198.66, "totalQty": 35.0, "orderCount": 35, "margin": 255.94000000000003, "marginPct": 56.30004399472064}, {"YearMonth": "2017-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 680.34, "totalRevenueExVAT": 568.02, "totalCost": 224.202, "totalQty": 79.0, "orderCount": 79, "margin": 343.818, "marginPct": 60.529206718073304}, {"YearMonth": "2017-03", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 13607.630000000001, "totalRevenueExVAT": 11361.57, "totalCost": 6083.040000000001, "totalQty": 690.0, "orderCount": 576, "margin": 5278.529999999999, "marginPct": 46.459512197698025}, {"YearMonth": "2017-03", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 3705.72, "totalRevenueExVAT": 3086.9100000000003, "totalCost": 1500.345, "totalQty": 315.0, "orderCount": 293, "margin": 1586.5650000000003, "marginPct": 51.39654217324121}, {"YearMonth": "2017-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 685.85, "totalRevenueExVAT": 571.4699999999999, "totalCost": 249.142, "totalQty": 43.0, "orderCount": 35, "margin": 322.3279999999999, "marginPct": 56.40331075996989}, {"YearMonth": "2017-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1646.25, "totalRevenueExVAT": 1371.75, "totalCost": 482.55, "totalQty": 75.0, "orderCount": 61, "margin": 889.2, "marginPct": 64.8223072717332}, {"YearMonth": "2017-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1208.0800000000002, "totalRevenueExVAT": 1012.16, "totalCost": 411.776, "totalQty": 32.0, "orderCount": 30, "margin": 600.384, "marginPct": 59.317104015175474}, {"YearMonth": "2017-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 997.15, "totalRevenueExVAT": 830.8299999999999, "totalCost": 275.044, "totalQty": 77.0, "orderCount": 76, "margin": 555.786, "marginPct": 66.8952734012975}, {"YearMonth": "2017-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1035.18, "totalRevenueExVAT": 866.0600000000001, "totalCost": 222.41, "totalQty": 115.0, "orderCount": 107, "margin": 643.6500000000001, "marginPct": 74.31933122416461}, {"YearMonth": "2017-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 760.54, "totalRevenueExVAT": 633.6, "totalCost": 138.952, "totalQty": 44.0, "orderCount": 40, "margin": 494.648, "marginPct": 78.06944444444444}, {"YearMonth": "2017-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 771.8499999999999, "totalRevenueExVAT": 643.2800000000001, "totalCost": 219.64399999999998, "totalQty": 43.0, "orderCount": 25, "margin": 423.6360000000001, "marginPct": 65.85561497326204}, {"YearMonth": "2017-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 465.98999999999995, "totalRevenueExVAT": 389.62999999999994, "totalCost": 120.038, "totalQty": 47.0, "orderCount": 37, "margin": 269.5919999999999, "marginPct": 69.19179734620023}, {"YearMonth": "2017-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 569.24, "totalRevenueExVAT": 476.6, "totalCost": 272.616, "totalQty": 37.0, "orderCount": 35, "margin": 203.98400000000004, "marginPct": 42.79983214435586}, {"YearMonth": "2017-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 418.42, "totalRevenueExVAT": 356.18, "totalCost": 165.599, "totalQty": 41.0, "orderCount": 39, "margin": 190.58100000000002, "marginPct": 53.50693469594026}, {"YearMonth": "2017-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 519.48, "totalRevenueExVAT": 438.96, "totalCost": 201.0, "totalQty": 24.0, "orderCount": 24, "margin": 237.95999999999998, "marginPct": 54.209950792782934}, {"YearMonth": "2017-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 658.29, "totalRevenueExVAT": 550.29, "totalCost": 232.50900000000001, "totalQty": 51.0, "orderCount": 48, "margin": 317.78099999999995, "marginPct": 57.74791473586654}, {"YearMonth": "2017-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 338.29999999999995, "totalRevenueExVAT": 281.85999999999996, "totalCost": 105.196, "totalQty": 34.0, "orderCount": 33, "margin": 176.66399999999996, "marginPct": 62.67792521109771}, {"YearMonth": "2017-04", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 656.0, "totalRevenueExVAT": 546.5600000000001, "totalCost": 170.525, "totalQty": 25.0, "orderCount": 25, "margin": 376.0350000000001, "marginPct": 68.80031469555036}, {"YearMonth": "2017-04", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1673.1000000000001, "totalRevenueExVAT": 1397.92, "totalCost": 463.792, "totalQty": 56.0, "orderCount": 49, "margin": 934.1280000000002, "marginPct": 66.82270802334898}, {"YearMonth": "2017-04", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1810.56, "totalRevenueExVAT": 1508.16, "totalCost": 580.8, "totalQty": 96.0, "orderCount": 72, "margin": 927.3600000000001, "marginPct": 61.48949713558244}, {"YearMonth": "2017-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 819.1899999999999, "totalRevenueExVAT": 686.0699999999999, "totalCost": 273.504, "totalQty": 33.0, "orderCount": 31, "margin": 412.5659999999999, "marginPct": 60.13468013468013}, {"YearMonth": "2017-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 488.25, "totalRevenueExVAT": 407.05, "totalCost": 145.04, "totalQty": 35.0, "orderCount": 35, "margin": 262.01, "marginPct": 64.36801375752364}, {"YearMonth": "2017-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 590.15, "totalRevenueExVAT": 491.72999999999996, "totalCost": 180.70800000000003, "totalQty": 37.0, "orderCount": 29, "margin": 311.02199999999993, "marginPct": 63.250564334085766}, {"YearMonth": "2017-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1883.72, "totalRevenueExVAT": 1573.89, "totalCost": 415.935, "totalQty": 135.0, "orderCount": 110, "margin": 1157.9550000000002, "marginPct": 73.57280369021979}, {"YearMonth": "2017-04", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1163.48, "totalRevenueExVAT": 968.7800000000001, "totalCost": 258.42, "totalQty": 118.0, "orderCount": 101, "margin": 710.3600000000001, "marginPct": 73.32521315468941}, {"YearMonth": "2017-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 357.18, "totalRevenueExVAT": 302.54, "totalCost": 116.19999999999999, "totalQty": 20.0, "orderCount": 18, "margin": 186.34000000000003, "marginPct": 61.59185562239704}, {"YearMonth": "2017-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2588.95, "totalRevenueExVAT": 2157.61, "totalCost": 1119.3000000000002, "totalQty": 91.0, "orderCount": 67, "margin": 1038.31, "marginPct": 48.123154787009696}, {"YearMonth": "2017-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 720.4, "totalRevenueExVAT": 611.3399999999999, "totalCost": 220.984, "totalQty": 46.0, "orderCount": 39, "margin": 390.3559999999999, "marginPct": 63.852520692249804}, {"YearMonth": "2017-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 313.25, "totalRevenueExVAT": 261.1, "totalCost": 84.07000000000001, "totalQty": 35.0, "orderCount": 34, "margin": 177.03000000000003, "marginPct": 67.80160857908848}, {"YearMonth": "2017-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 81.36, "totalRevenueExVAT": 67.80000000000001, "totalCost": 10.974, "totalQty": 6.0, "orderCount": 6, "margin": 56.82600000000001, "marginPct": 83.8141592920354}, {"YearMonth": "2017-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 22.06, "totalRevenueExVAT": 18.38, "totalCost": 3.658, "totalQty": 1.0, "orderCount": 1, "margin": 14.722, "marginPct": 80.09793253536452}, {"YearMonth": "2017-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Herbal Supplements", "totalRevenue": 1275.16, "totalRevenueExVAT": 1062.16, "totalCost": 308.992, "totalQty": 71.0, "orderCount": 62, "margin": 753.1680000000001, "marginPct": 70.9090909090909}, {"YearMonth": "2017-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 574.4, "totalRevenueExVAT": 478.72, "totalCost": 310.016, "totalQty": 32.0, "orderCount": 30, "margin": 168.704, "marginPct": 35.24064171122995}, {"YearMonth": "2017-04", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 527.96, "totalRevenueExVAT": 439.91999999999996, "totalCost": 122.4, "totalQty": 34.0, "orderCount": 32, "margin": 317.52, "marginPct": 72.17675941080198}, {"YearMonth": "2017-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 559.3000000000001, "totalRevenueExVAT": 466.06, "totalCost": 331.24, "totalQty": 14.0, "orderCount": 14, "margin": 134.82, "marginPct": 28.92760588765395}, {"YearMonth": "2017-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 484.8, "totalRevenueExVAT": 403.8, "totalCost": 170.28, "totalQty": 30.0, "orderCount": 29, "margin": 233.52, "marginPct": 57.830609212481434}, {"YearMonth": "2017-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 573.44, "totalRevenueExVAT": 477.44, "totalCost": 181.632, "totalQty": 64.0, "orderCount": 63, "margin": 295.808, "marginPct": 61.957104557640754}, {"YearMonth": "2017-04", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 10878.61, "totalRevenueExVAT": 9078.97, "totalCost": 4540.240000000001, "totalQty": 515.0, "orderCount": 443, "margin": 4538.729999999999, "marginPct": 49.99168407870055}, {"YearMonth": "2017-04", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 3336.29, "totalRevenueExVAT": 2779.43, "totalCost": 1262.195, "totalQty": 265.0, "orderCount": 250, "margin": 1517.235, "marginPct": 54.587991062915776}, {"YearMonth": "2017-04", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 435.46999999999997, "totalRevenueExVAT": 362.81, "totalCost": 162.232, "totalQty": 28.0, "orderCount": 27, "margin": 200.578, "marginPct": 55.28458421763458}, {"YearMonth": "2017-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 614.6, "totalRevenueExVAT": 512.12, "totalCost": 180.15200000000002, "totalQty": 28.0, "orderCount": 26, "margin": 331.96799999999996, "marginPct": 64.82230727173318}, {"YearMonth": "2017-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 790.6300000000001, "totalRevenueExVAT": 664.23, "totalCost": 270.228, "totalQty": 21.0, "orderCount": 21, "margin": 394.002, "marginPct": 59.317104015175474}, {"YearMonth": "2017-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 969.0899999999999, "totalRevenueExVAT": 809.2499999999999, "totalCost": 267.9, "totalQty": 75.0, "orderCount": 63, "margin": 541.3499999999999, "marginPct": 66.8952734012975}, {"YearMonth": "2017-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 593.73, "totalRevenueExVAT": 494.51000000000005, "totalCost": 114.106, "totalQty": 59.0, "orderCount": 58, "margin": 380.40400000000005, "marginPct": 76.92544134597885}, {"YearMonth": "2017-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 537.47, "totalRevenueExVAT": 450.38, "totalCost": 88.42399999999999, "totalQty": 28.0, "orderCount": 26, "margin": 361.956, "marginPct": 80.36680136773391}, {"YearMonth": "2017-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 610.3, "totalRevenueExVAT": 508.64000000000004, "totalCost": 173.672, "totalQty": 34.0, "orderCount": 30, "margin": 334.9680000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2017-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 437.79999999999995, "totalRevenueExVAT": 364.76, "totalCost": 112.37599999999999, "totalQty": 44.0, "orderCount": 40, "margin": 252.38400000000001, "marginPct": 69.19179734620025}, {"YearMonth": "2017-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 375.1, "totalRevenueExVAT": 312.62, "totalCost": 162.096, "totalQty": 22.0, "orderCount": 22, "margin": 150.524, "marginPct": 48.149190710767066}, {"YearMonth": "2017-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 657.12, "totalRevenueExVAT": 557.1500000000001, "totalCost": 238.301, "totalQty": 59.0, "orderCount": 56, "margin": 318.8490000000001, "marginPct": 57.22857399264113}, {"YearMonth": "2017-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 852.39, "totalRevenueExVAT": 713.31, "totalCost": 326.625, "totalQty": 39.0, "orderCount": 38, "margin": 386.68499999999995, "marginPct": 54.209950792782934}, {"YearMonth": "2017-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1074.85, "totalRevenueExVAT": 895.5699999999999, "totalCost": 378.397, "totalQty": 83.0, "orderCount": 79, "margin": 517.173, "marginPct": 57.747914735866544}, {"YearMonth": "2017-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 368.15, "totalRevenueExVAT": 306.72999999999996, "totalCost": 114.478, "totalQty": 37.0, "orderCount": 36, "margin": 192.25199999999995, "marginPct": 62.677925211097694}, {"YearMonth": "2017-05", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 723.4200000000001, "totalRevenueExVAT": 606.4200000000001, "totalCost": 184.167, "totalQty": 27.0, "orderCount": 27, "margin": 422.25300000000004, "marginPct": 69.63045414069457}, {"YearMonth": "2017-05", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2629.23, "totalRevenueExVAT": 2198.73, "totalCost": 695.688, "totalQty": 84.0, "orderCount": 76, "margin": 1503.042, "marginPct": 68.35955301469484}, {"YearMonth": "2017-05", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 2251.24, "totalRevenueExVAT": 1878.5600000000002, "totalCost": 671.55, "totalQty": 111.0, "orderCount": 85, "margin": 1207.0100000000002, "marginPct": 64.25187377565796}, {"YearMonth": "2017-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1097.8, "totalRevenueExVAT": 914.76, "totalCost": 364.672, "totalQty": 44.0, "orderCount": 42, "margin": 550.088, "marginPct": 60.13468013468013}, {"YearMonth": "2017-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 876.53, "totalRevenueExVAT": 732.69, "totalCost": 261.072, "totalQty": 63.0, "orderCount": 57, "margin": 471.61800000000005, "marginPct": 64.36801375752364}, {"YearMonth": "2017-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 475.84, "totalRevenueExVAT": 398.7, "totalCost": 146.52, "totalQty": 30.0, "orderCount": 26, "margin": 252.17999999999998, "marginPct": 63.25056433408578}, {"YearMonth": "2017-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2113.96, "totalRevenueExVAT": 1769.3100000000002, "totalCost": 431.34, "totalQty": 140.0, "orderCount": 122, "margin": 1337.9700000000003, "marginPct": 75.62100479848077}, {"YearMonth": "2017-05", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1255.81, "totalRevenueExVAT": 1049.67, "totalCost": 260.61, "totalQty": 119.0, "orderCount": 101, "margin": 789.0600000000001, "marginPct": 75.17219697619252}, {"YearMonth": "2017-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1060.46, "totalRevenueExVAT": 894.54, "totalCost": 325.35999999999996, "totalQty": 56.0, "orderCount": 43, "margin": 569.1800000000001, "marginPct": 63.628233505488865}, {"YearMonth": "2017-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 2579.47, "totalRevenueExVAT": 2157.61, "totalCost": 1119.3000000000002, "totalQty": 91.0, "orderCount": 68, "margin": 1038.31, "marginPct": 48.123154787009696}, {"YearMonth": "2017-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 773.5699999999999, "totalRevenueExVAT": 651.2099999999999, "totalCost": 235.39600000000002, "totalQty": 49.0, "orderCount": 44, "margin": 415.8139999999999, "marginPct": 63.852520692249804}, {"YearMonth": "2017-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 437.05999999999995, "totalRevenueExVAT": 365.54, "totalCost": 117.69800000000001, "totalQty": 49.0, "orderCount": 49, "margin": 247.842, "marginPct": 67.80160857908847}, {"YearMonth": "2017-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 421.08, "totalRevenueExVAT": 350.79, "totalCost": 60.357, "totalQty": 33.0, "orderCount": 33, "margin": 290.433, "marginPct": 82.793979303857}, {"YearMonth": "2017-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 521.6, "totalRevenueExVAT": 434.66, "totalCost": 91.45, "totalQty": 25.0, "orderCount": 24, "margin": 343.21000000000004, "marginPct": 78.96056687986012}, {"YearMonth": "2017-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Herbal Supplements", "totalRevenue": 1775.04, "totalRevenueExVAT": 1481.0400000000002, "totalCost": 430.848, "totalQty": 99.0, "orderCount": 87, "margin": 1050.1920000000002, "marginPct": 70.9090909090909}, {"YearMonth": "2017-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 445.76, "totalRevenueExVAT": 374.0, "totalCost": 242.20000000000002, "totalQty": 25.0, "orderCount": 24, "margin": 131.79999999999998, "marginPct": 35.24064171122994}, {"YearMonth": "2017-05", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 575.4399999999999, "totalRevenueExVAT": 483.1, "totalCost": 147.6, "totalQty": 41.0, "orderCount": 40, "margin": 335.5, "marginPct": 69.44731939557028}, {"YearMonth": "2017-05", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1191.89, "totalRevenueExVAT": 998.6899999999999, "totalCost": 733.46, "totalQty": 31.0, "orderCount": 27, "margin": 265.2299999999999, "marginPct": 26.557790705824623}, {"YearMonth": "2017-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 918.42, "totalRevenueExVAT": 767.22, "totalCost": 323.532, "totalQty": 57.0, "orderCount": 54, "margin": 443.68800000000005, "marginPct": 57.830609212481434}, {"YearMonth": "2017-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 848.2, "totalRevenueExVAT": 708.7, "totalCost": 269.61, "totalQty": 95.0, "orderCount": 94, "margin": 439.09000000000003, "marginPct": 61.957104557640754}, {"YearMonth": "2017-05", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 12092.66, "totalRevenueExVAT": 10111.52, "totalCost": 4981.04, "totalQty": 565.0, "orderCount": 469, "margin": 5130.4800000000005, "marginPct": 50.7389591278067}, {"YearMonth": "2017-05", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5069.88, "totalRevenueExVAT": 4232.07, "totalCost": 1871.859, "totalQty": 393.0, "orderCount": 323, "margin": 2360.211, "marginPct": 55.76965881944297}, {"YearMonth": "2017-05", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 471.47999999999996, "totalRevenueExVAT": 394.68, "totalCost": 191.202, "totalQty": 33.0, "orderCount": 26, "margin": 203.478, "marginPct": 51.55518394648829}, {"YearMonth": "2017-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1375.53, "totalRevenueExVAT": 1152.27, "totalCost": 405.342, "totalQty": 63.0, "orderCount": 63, "margin": 746.928, "marginPct": 64.8223072717332}, {"YearMonth": "2017-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1397.8300000000002, "totalRevenueExVAT": 1170.31, "totalCost": 476.116, "totalQty": 37.0, "orderCount": 35, "margin": 694.194, "marginPct": 59.317104015175474}, {"YearMonth": "2017-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 567.64, "totalRevenueExVAT": 474.76, "totalCost": 157.168, "totalQty": 44.0, "orderCount": 44, "margin": 317.592, "marginPct": 66.8952734012975}, {"YearMonth": "2017-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1388.83, "totalRevenueExVAT": 1159.51, "totalCost": 245.618, "totalQty": 127.0, "orderCount": 116, "margin": 913.892, "marginPct": 78.8170865279299}, {"YearMonth": "2017-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 796.1, "totalRevenueExVAT": 663.48, "totalCost": 120.00399999999999, "totalQty": 38.0, "orderCount": 28, "margin": 543.476, "marginPct": 81.91294387170676}, {"YearMonth": "2017-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 481.65999999999997, "totalRevenueExVAT": 403.92, "totalCost": 137.916, "totalQty": 27.0, "orderCount": 24, "margin": 266.004, "marginPct": 65.85561497326204}, {"YearMonth": "2017-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 515.74, "totalRevenueExVAT": 431.0799999999999, "totalCost": 132.808, "totalQty": 52.0, "orderCount": 49, "margin": 298.27199999999993, "marginPct": 69.19179734620023}, {"YearMonth": "2017-06", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 491.61, "totalRevenueExVAT": 412.09000000000003, "totalCost": 213.672, "totalQty": 29.0, "orderCount": 29, "margin": 198.41800000000003, "marginPct": 48.14919071076707}, {"YearMonth": "2017-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 474.81, "totalRevenueExVAT": 397.32000000000005, "totalCost": 169.63799999999998, "totalQty": 42.0, "orderCount": 41, "margin": 227.68200000000007, "marginPct": 57.30443974630022}, {"YearMonth": "2017-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 742.64, "totalRevenueExVAT": 621.86, "totalCost": 284.75, "totalQty": 34.0, "orderCount": 32, "margin": 337.11, "marginPct": 54.20995079278295}, {"YearMonth": "2017-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 660.4499999999999, "totalRevenueExVAT": 550.29, "totalCost": 232.50900000000001, "totalQty": 51.0, "orderCount": 50, "margin": 317.78099999999995, "marginPct": 57.74791473586654}, {"YearMonth": "2017-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 258.7, "totalRevenueExVAT": 215.53999999999996, "totalCost": 80.444, "totalQty": 26.0, "orderCount": 24, "margin": 135.09599999999995, "marginPct": 62.677925211097694}, {"YearMonth": "2017-06", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 583.09, "totalRevenueExVAT": 489.19, "totalCost": 156.88299999999998, "totalQty": 23.0, "orderCount": 22, "margin": 332.307, "marginPct": 67.93004762975531}, {"YearMonth": "2017-06", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1316.07, "totalRevenueExVAT": 1100.82, "totalCost": 347.844, "totalQty": 42.0, "orderCount": 34, "margin": 752.9759999999999, "marginPct": 68.40137352155665}, {"YearMonth": "2017-06", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "Coenzyme Q10 300Mg", "totalRevenue": 1002.1099999999999, "totalRevenueExVAT": 838.08, "totalCost": 290.4, "totalQty": 48.0, "orderCount": 37, "margin": 547.6800000000001, "marginPct": 65.34936998854525}, {"YearMonth": "2017-06", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 1179.77, "totalRevenueExVAT": 982.7700000000001, "totalCost": 375.09999999999997, "totalQty": 62.0, "orderCount": 38, "margin": 607.6700000000001, "marginPct": 61.83237176551991}, {"YearMonth": "2017-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 744.34, "totalRevenueExVAT": 623.6999999999999, "totalCost": 248.64000000000001, "totalQty": 30.0, "orderCount": 30, "margin": 375.05999999999995, "marginPct": 60.13468013468013}, {"YearMonth": "2017-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 530.1, "totalRevenueExVAT": 441.94000000000005, "totalCost": 157.472, "totalQty": 38.0, "orderCount": 36, "margin": 284.4680000000001, "marginPct": 64.36801375752366}, {"YearMonth": "2017-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 303.05, "totalRevenueExVAT": 252.51, "totalCost": 92.796, "totalQty": 19.0, "orderCount": 19, "margin": 159.714, "marginPct": 63.25056433408578}, {"YearMonth": "2017-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1369.92, "totalRevenueExVAT": 1141.02, "totalCost": 268.04699999999997, "totalQty": 87.0, "orderCount": 79, "margin": 872.973, "marginPct": 76.50812430982803}, {"YearMonth": "2017-06", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1008.89, "totalRevenueExVAT": 840.32, "totalCost": 219.0, "totalQty": 100.0, "orderCount": 82, "margin": 621.32, "marginPct": 73.93849961919268}, {"YearMonth": "2017-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 610.64, "totalRevenueExVAT": 508.64000000000004, "totalCost": 197.54, "totalQty": 34.0, "orderCount": 30, "margin": 311.1, "marginPct": 61.16310160427807}, {"YearMonth": "2017-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Coq10 Supplements", "totalRevenue": 1043.17, "totalRevenueExVAT": 877.27, "totalCost": 455.1, "totalQty": 37.0, "orderCount": 32, "margin": 422.16999999999996, "marginPct": 48.123154787009696}, {"YearMonth": "2017-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 1251.8, "totalRevenueExVAT": 1043.24, "totalCost": 541.2, "totalQty": 44.0, "orderCount": 34, "margin": 502.03999999999996, "marginPct": 48.123154787009696}, {"YearMonth": "2017-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 422.66999999999996, "totalRevenueExVAT": 358.83, "totalCost": 129.708, "totalQty": 27.0, "orderCount": 27, "margin": 229.12199999999999, "marginPct": 63.85252069224981}, {"YearMonth": "2017-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 340.09999999999997, "totalRevenueExVAT": 283.48, "totalCost": 91.27600000000001, "totalQty": 38.0, "orderCount": 38, "margin": 192.204, "marginPct": 67.80160857908847}, {"YearMonth": "2017-06", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 189.5, "totalRevenueExVAT": 157.89999999999998, "totalCost": 57.58, "totalQty": 10.0, "orderCount": 10, "margin": 100.31999999999998, "marginPct": 63.53388220392653}, {"YearMonth": "2017-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 324.87, "totalRevenueExVAT": 272.45000000000005, "totalCost": 45.725, "totalQty": 25.0, "orderCount": 24, "margin": 226.72500000000005, "marginPct": 83.21710405579006}, {"YearMonth": "2017-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 270.32, "totalRevenueExVAT": 228.14000000000001, "totalCost": 47.554, "totalQty": 13.0, "orderCount": 11, "margin": 180.586, "marginPct": 79.15578153765232}, {"YearMonth": "2017-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Herbal Supplements", "totalRevenue": 604.64, "totalRevenueExVAT": 508.64000000000004, "totalCost": 147.96800000000002, "totalQty": 34.0, "orderCount": 28, "margin": 360.672, "marginPct": 70.9090909090909}, {"YearMonth": "2017-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 484.92, "totalRevenueExVAT": 403.92, "totalCost": 117.504, "totalQty": 27.0, "orderCount": 22, "margin": 286.416, "marginPct": 70.9090909090909}, {"YearMonth": "2017-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 463.71, "totalRevenueExVAT": 388.96000000000004, "totalCost": 251.888, "totalQty": 26.0, "orderCount": 26, "margin": 137.07200000000003, "marginPct": 35.240641711229955}, {"YearMonth": "2017-06", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 384.62, "totalRevenueExVAT": 322.34000000000003, "totalCost": 100.8, "totalQty": 28.0, "orderCount": 27, "margin": 221.54000000000002, "marginPct": 68.7286715890054}, {"YearMonth": "2017-06", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 611.32, "totalRevenueExVAT": 509.32, "totalCost": 402.22, "totalQty": 17.0, "orderCount": 17, "margin": 107.09999999999997, "marginPct": 21.028037383177566}, {"YearMonth": "2017-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 242.4, "totalRevenueExVAT": 201.9, "totalCost": 85.14, "totalQty": 15.0, "orderCount": 14, "margin": 116.76, "marginPct": 57.830609212481434}, {"YearMonth": "2017-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 303.14000000000004, "totalRevenueExVAT": 253.64, "totalCost": 96.492, "totalQty": 34.0, "orderCount": 33, "margin": 157.14799999999997, "marginPct": 61.95710455764074}, {"YearMonth": "2017-06", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 11599.18, "totalRevenueExVAT": 9691.78, "totalCost": 4566.688, "totalQty": 518.0, "orderCount": 463, "margin": 5125.092000000001, "marginPct": 52.880812399786215}, {"YearMonth": "2017-06", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 3539.98, "totalRevenueExVAT": 2948.23, "totalCost": 1252.6689999999999, "totalQty": 263.0, "orderCount": 250, "margin": 1695.5610000000001, "marginPct": 57.51115075825156}, {"YearMonth": "2017-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 313.52, "totalRevenueExVAT": 263.12, "totalCost": 127.46799999999999, "totalQty": 22.0, "orderCount": 20, "margin": 135.65200000000002, "marginPct": 51.555183946488306}, {"YearMonth": "2017-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1075.55, "totalRevenueExVAT": 896.2099999999999, "totalCost": 315.266, "totalQty": 49.0, "orderCount": 49, "margin": 580.944, "marginPct": 64.8223072717332}, {"YearMonth": "2017-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1138.5, "totalRevenueExVAT": 948.9, "totalCost": 386.04, "totalQty": 30.0, "orderCount": 28, "margin": 562.8599999999999, "marginPct": 59.31710401517546}, {"YearMonth": "2017-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 660.4499999999999, "totalRevenueExVAT": 550.29, "totalCost": 182.172, "totalQty": 51.0, "orderCount": 51, "margin": 368.11799999999994, "marginPct": 66.8952734012975}, {"YearMonth": "2017-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 784.76, "totalRevenueExVAT": 657.36, "totalCost": 139.248, "totalQty": 72.0, "orderCount": 68, "margin": 518.1120000000001, "marginPct": 78.81708652792992}, {"YearMonth": "2017-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 377.09999999999997, "totalRevenueExVAT": 314.28000000000003, "totalCost": 56.844, "totalQty": 18.0, "orderCount": 18, "margin": 257.43600000000004, "marginPct": 81.91294387170677}, {"YearMonth": "2017-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 532.52, "totalRevenueExVAT": 448.80000000000007, "totalCost": 153.23999999999998, "totalQty": 30.0, "orderCount": 19, "margin": 295.56000000000006, "marginPct": 65.85561497326204}, {"YearMonth": "2017-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 308.45, "totalRevenueExVAT": 256.98999999999995, "totalCost": 79.17399999999999, "totalQty": 31.0, "orderCount": 30, "margin": 177.81599999999997, "marginPct": 69.19179734620025}, {"YearMonth": "2017-07", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 767.25, "totalRevenueExVAT": 639.45, "totalCost": 331.56, "totalQty": 45.0, "orderCount": 45, "margin": 307.89000000000004, "marginPct": 48.14919071076707}, {"YearMonth": "2017-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1025.29, "totalRevenueExVAT": 860.8600000000001, "totalCost": 367.549, "totalQty": 91.0, "orderCount": 91, "margin": 493.31100000000015, "marginPct": 57.30443974630022}, {"YearMonth": "2017-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 834.1, "totalRevenueExVAT": 695.02, "totalCost": 318.25, "totalQty": 38.0, "orderCount": 37, "margin": 376.77, "marginPct": 54.209950792782934}, {"YearMonth": "2017-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1204.35, "totalRevenueExVAT": 1003.4699999999999, "totalCost": 423.987, "totalQty": 93.0, "orderCount": 88, "margin": 579.483, "marginPct": 57.747914735866544}, {"YearMonth": "2017-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 605.29, "totalRevenueExVAT": 505.68999999999994, "totalCost": 188.73399999999998, "totalQty": 61.0, "orderCount": 60, "margin": 316.95599999999996, "marginPct": 62.67792521109771}, {"YearMonth": "2017-07", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1747.9, "totalRevenueExVAT": 1459.9, "totalCost": 443.365, "totalQty": 65.0, "orderCount": 61, "margin": 1016.5350000000001, "marginPct": 69.63045414069457}, {"YearMonth": "2017-07", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 3429.14, "totalRevenueExVAT": 2856.89, "totalCost": 902.738, "totalQty": 109.0, "orderCount": 89, "margin": 1954.1519999999998, "marginPct": 68.40137352155665}, {"YearMonth": "2017-07", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3652.54, "totalRevenueExVAT": 3047.7400000000002, "totalCost": 1173.7, "totalQty": 194.0, "orderCount": 136, "margin": 1874.0400000000002, "marginPct": 61.48949713558244}, {"YearMonth": "2017-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 619.39, "totalRevenueExVAT": 518.31, "totalCost": 190.476, "totalQty": 39.0, "orderCount": 32, "margin": 327.83399999999995, "marginPct": 63.25056433408578}, {"YearMonth": "2017-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3433.46, "totalRevenueExVAT": 2872.46, "totalCost": 696.306, "totalQty": 226.0, "orderCount": 172, "margin": 2176.154, "marginPct": 75.75924468922108}, {"YearMonth": "2017-07", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1552.9299999999998, "totalRevenueExVAT": 1297.18, "totalCost": 346.02, "totalQty": 158.0, "orderCount": 132, "margin": 951.1600000000001, "marginPct": 73.32521315468941}, {"YearMonth": "2017-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1514.6000000000001, "totalRevenueExVAT": 1271.6000000000001, "totalCost": 493.84999999999997, "totalQty": 85.0, "orderCount": 71, "margin": 777.7500000000002, "marginPct": 61.16310160427809}, {"YearMonth": "2017-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3693.7599999999998, "totalRevenueExVAT": 3082.3, "totalCost": 1599.0, "totalQty": 130.0, "orderCount": 96, "margin": 1483.3000000000002, "marginPct": 48.1231547870097}, {"YearMonth": "2017-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 954.3399999999999, "totalRevenueExVAT": 797.4, "totalCost": 288.24, "totalQty": 60.0, "orderCount": 52, "margin": 509.15999999999997, "marginPct": 63.85252069224981}, {"YearMonth": "2017-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 578.77, "totalRevenueExVAT": 484.9, "totalCost": 156.13, "totalQty": 65.0, "orderCount": 64, "margin": 328.77, "marginPct": 67.80160857908847}, {"YearMonth": "2017-07", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 508.49, "totalRevenueExVAT": 426.33, "totalCost": 155.466, "totalQty": 27.0, "orderCount": 27, "margin": 270.864, "marginPct": 63.53388220392653}, {"YearMonth": "2017-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 555.96, "totalRevenueExVAT": 463.3, "totalCost": 74.989, "totalQty": 41.0, "orderCount": 41, "margin": 388.31100000000004, "marginPct": 83.81415929203541}, {"YearMonth": "2017-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 327.21999999999997, "totalRevenueExVAT": 275.7, "totalCost": 54.87, "totalQty": 15.0, "orderCount": 15, "margin": 220.82999999999998, "marginPct": 80.09793253536452}, {"YearMonth": "2017-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2397.6400000000003, "totalRevenueExVAT": 2004.64, "totalCost": 583.168, "totalQty": 134.0, "orderCount": 111, "margin": 1421.4720000000002, "marginPct": 70.9090909090909}, {"YearMonth": "2017-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 517.56, "totalRevenueExVAT": 433.84000000000003, "totalCost": 280.952, "totalQty": 29.0, "orderCount": 27, "margin": 152.88800000000003, "marginPct": 35.240641711229955}, {"YearMonth": "2017-07", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 786.48, "totalRevenueExVAT": 655.4000000000001, "totalCost": 208.8, "totalQty": 58.0, "orderCount": 52, "margin": 446.6000000000001, "marginPct": 68.14159292035399}, {"YearMonth": "2017-07", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1606.2, "totalRevenueExVAT": 1348.2, "totalCost": 1064.7, "totalQty": 45.0, "orderCount": 40, "margin": 283.5, "marginPct": 21.02803738317757}, {"YearMonth": "2017-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 985.76, "totalRevenueExVAT": 821.0600000000001, "totalCost": 346.236, "totalQty": 61.0, "orderCount": 60, "margin": 474.82400000000007, "marginPct": 57.830609212481434}, {"YearMonth": "2017-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 963.1800000000001, "totalRevenueExVAT": 805.68, "totalCost": 306.504, "totalQty": 108.0, "orderCount": 105, "margin": 499.17599999999993, "marginPct": 61.95710455764074}, {"YearMonth": "2017-07", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 22801.739999999998, "totalRevenueExVAT": 19046.780000000002, "totalCost": 8974.688, "totalQty": 1018.0, "orderCount": 811, "margin": 10072.092000000002, "marginPct": 52.880812399786215}, {"YearMonth": "2017-07", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5814.68, "totalRevenueExVAT": 4853.93, "totalCost": 2062.379, "totalQty": 433.0, "orderCount": 392, "margin": 2791.5510000000004, "marginPct": 57.51115075825156}, {"YearMonth": "2017-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 617.48, "totalRevenueExVAT": 514.2800000000001, "totalCost": 249.142, "totalQty": 43.0, "orderCount": 35, "margin": 265.1380000000001, "marginPct": 51.555183946488306}, {"YearMonth": "2017-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1902.33, "totalRevenueExVAT": 1591.23, "totalCost": 559.758, "totalQty": 87.0, "orderCount": 86, "margin": 1031.472, "marginPct": 64.82230727173318}, {"YearMonth": "2017-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2833.61, "totalRevenueExVAT": 2372.25, "totalCost": 965.1, "totalQty": 75.0, "orderCount": 67, "margin": 1407.15, "marginPct": 59.317104015175474}, {"YearMonth": "2017-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1152.55, "totalRevenueExVAT": 960.31, "totalCost": 317.908, "totalQty": 89.0, "orderCount": 85, "margin": 642.4019999999999, "marginPct": 66.8952734012975}, {"YearMonth": "2017-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1888.8899999999999, "totalRevenueExVAT": 1579.4900000000002, "totalCost": 334.582, "totalQty": 173.0, "orderCount": 151, "margin": 1244.9080000000004, "marginPct": 78.81708652792992}, {"YearMonth": "2017-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 855.4599999999999, "totalRevenueExVAT": 715.86, "totalCost": 129.478, "totalQty": 41.0, "orderCount": 41, "margin": 586.3820000000001, "marginPct": 81.91294387170677}, {"YearMonth": "2017-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 807.75, "totalRevenueExVAT": 673.2, "totalCost": 229.85999999999999, "totalQty": 45.0, "orderCount": 37, "margin": 443.34000000000003, "marginPct": 65.85561497326204}, {"YearMonth": "2017-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 472.61999999999995, "totalRevenueExVAT": 397.91999999999996, "totalCost": 122.59199999999998, "totalQty": 48.0, "orderCount": 45, "margin": 275.328, "marginPct": 69.19179734620025}, {"YearMonth": "2017-08", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 605.28, "totalRevenueExVAT": 511.56000000000006, "totalCost": 265.248, "totalQty": 36.0, "orderCount": 36, "margin": 246.31200000000007, "marginPct": 48.14919071076707}, {"YearMonth": "2017-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 960.97, "totalRevenueExVAT": 804.1, "totalCost": 343.315, "totalQty": 85.0, "orderCount": 84, "margin": 460.785, "marginPct": 57.30443974630022}, {"YearMonth": "2017-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 724.35, "totalRevenueExVAT": 603.5699999999999, "totalCost": 276.375, "totalQty": 33.0, "orderCount": 33, "margin": 327.19499999999994, "marginPct": 54.209950792782934}, {"YearMonth": "2017-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 684.1899999999999, "totalRevenueExVAT": 571.87, "totalCost": 241.627, "totalQty": 53.0, "orderCount": 53, "margin": 330.243, "marginPct": 57.747914735866544}, {"YearMonth": "2017-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 427.84999999999997, "totalRevenueExVAT": 356.46999999999997, "totalCost": 133.042, "totalQty": 43.0, "orderCount": 41, "margin": 223.42799999999997, "marginPct": 62.67792521109771}, {"YearMonth": "2017-08", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 579.62, "totalRevenueExVAT": 494.12, "totalCost": 150.06199999999998, "totalQty": 22.0, "orderCount": 21, "margin": 344.058, "marginPct": 69.63045414069457}, {"YearMonth": "2017-08", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1316.07, "totalRevenueExVAT": 1100.82, "totalCost": 347.844, "totalQty": 42.0, "orderCount": 38, "margin": 752.9759999999999, "marginPct": 68.40137352155665}, {"YearMonth": "2017-08", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 2011.72, "totalRevenueExVAT": 1680.97, "totalCost": 647.35, "totalQty": 107.0, "orderCount": 80, "margin": 1033.62, "marginPct": 61.489497135582425}, {"YearMonth": "2017-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1214.23, "totalRevenueExVAT": 1018.7099999999999, "totalCost": 406.112, "totalQty": 49.0, "orderCount": 48, "margin": 612.598, "marginPct": 60.13468013468013}, {"YearMonth": "2017-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 711.4499999999999, "totalRevenueExVAT": 593.13, "totalCost": 211.344, "totalQty": 51.0, "orderCount": 46, "margin": 381.786, "marginPct": 64.36801375752364}, {"YearMonth": "2017-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 382.79999999999995, "totalRevenueExVAT": 318.96, "totalCost": 117.21600000000001, "totalQty": 24.0, "orderCount": 21, "margin": 201.74399999999997, "marginPct": 63.25056433408578}, {"YearMonth": "2017-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1920.21, "totalRevenueExVAT": 1601.46, "totalCost": 388.206, "totalQty": 126.0, "orderCount": 109, "margin": 1213.254, "marginPct": 75.75924468922108}, {"YearMonth": "2017-08", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1189.76, "totalRevenueExVAT": 993.4100000000001, "totalCost": 264.99, "totalQty": 121.0, "orderCount": 97, "margin": 728.4200000000001, "marginPct": 73.32521315468941}, {"YearMonth": "2017-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 859.08, "totalRevenueExVAT": 718.08, "totalCost": 278.88, "totalQty": 48.0, "orderCount": 44, "margin": 439.20000000000005, "marginPct": 61.16310160427808}, {"YearMonth": "2017-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2105.2999999999997, "totalRevenueExVAT": 1754.54, "totalCost": 910.2, "totalQty": 74.0, "orderCount": 57, "margin": 844.3399999999999, "marginPct": 48.123154787009696}, {"YearMonth": "2017-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 882.56, "totalRevenueExVAT": 744.24, "totalCost": 269.024, "totalQty": 56.0, "orderCount": 50, "margin": 475.216, "marginPct": 63.85252069224981}, {"YearMonth": "2017-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 393.79999999999995, "totalRevenueExVAT": 328.24, "totalCost": 105.688, "totalQty": 44.0, "orderCount": 44, "margin": 222.55200000000002, "marginPct": 67.80160857908848}, {"YearMonth": "2017-08", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 300.03999999999996, "totalRevenueExVAT": 252.64, "totalCost": 92.128, "totalQty": 16.0, "orderCount": 16, "margin": 160.512, "marginPct": 63.53388220392654}, {"YearMonth": "2017-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 390.98, "totalRevenueExVAT": 327.70000000000005, "totalCost": 53.041, "totalQty": 29.0, "orderCount": 29, "margin": 274.65900000000005, "marginPct": 83.81415929203541}, {"YearMonth": "2017-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 393.4, "totalRevenueExVAT": 330.84, "totalCost": 65.844, "totalQty": 18.0, "orderCount": 15, "margin": 264.996, "marginPct": 80.09793253536452}, {"YearMonth": "2017-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1182.3600000000001, "totalRevenueExVAT": 987.36, "totalCost": 287.232, "totalQty": 66.0, "orderCount": 60, "margin": 700.1279999999999, "marginPct": 70.9090909090909}, {"YearMonth": "2017-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 700.05, "totalRevenueExVAT": 583.44, "totalCost": 377.83200000000005, "totalQty": 39.0, "orderCount": 37, "margin": 205.608, "marginPct": 35.24064171122994}, {"YearMonth": "2017-08", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 271.2, "totalRevenueExVAT": 226.0, "totalCost": 72.0, "totalQty": 20.0, "orderCount": 19, "margin": 154.0, "marginPct": 68.14159292035397}, {"YearMonth": "2017-08", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1144.72, "totalRevenueExVAT": 958.72, "totalCost": 757.12, "totalQty": 32.0, "orderCount": 30, "margin": 201.60000000000002, "marginPct": 21.028037383177573}, {"YearMonth": "2017-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 851.08, "totalRevenueExVAT": 713.38, "totalCost": 300.82800000000003, "totalQty": 53.0, "orderCount": 53, "margin": 412.55199999999996, "marginPct": 57.83060921248142}, {"YearMonth": "2017-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 821.32, "totalRevenueExVAT": 686.32, "totalCost": 261.096, "totalQty": 92.0, "orderCount": 90, "margin": 425.22400000000005, "marginPct": 61.957104557640754}, {"YearMonth": "2017-08", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 14802.05, "totalRevenueExVAT": 12367.310000000001, "totalCost": 5827.376, "totalQty": 661.0, "orderCount": 574, "margin": 6539.934000000001, "marginPct": 52.880812399786215}, {"YearMonth": "2017-08", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4352.04, "totalRevenueExVAT": 3632.0400000000004, "totalCost": 1543.212, "totalQty": 324.0, "orderCount": 305, "margin": 2088.8280000000004, "marginPct": 57.51115075825156}, {"YearMonth": "2017-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 557.64, "totalRevenueExVAT": 466.44000000000005, "totalCost": 225.96599999999998, "totalQty": 39.0, "orderCount": 33, "margin": 240.47400000000007, "marginPct": 51.555183946488306}, {"YearMonth": "2017-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1199.93, "totalRevenueExVAT": 1005.9499999999999, "totalCost": 353.87, "totalQty": 55.0, "orderCount": 53, "margin": 652.0799999999999, "marginPct": 64.82230727173318}, {"YearMonth": "2017-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1018.33, "totalRevenueExVAT": 854.01, "totalCost": 347.43600000000004, "totalQty": 27.0, "orderCount": 25, "margin": 506.57399999999996, "marginPct": 59.31710401517546}, {"YearMonth": "2017-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 906.5, "totalRevenueExVAT": 755.3, "totalCost": 250.04, "totalQty": 70.0, "orderCount": 65, "margin": 505.26, "marginPct": 66.8952734012975}, {"YearMonth": "2017-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 894.26, "totalRevenueExVAT": 748.6600000000001, "totalCost": 158.588, "totalQty": 82.0, "orderCount": 80, "margin": 590.0720000000001, "marginPct": 78.81708652792992}, {"YearMonth": "2017-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 621.52, "totalRevenueExVAT": 523.8000000000001, "totalCost": 94.74, "totalQty": 30.0, "orderCount": 28, "margin": 429.06000000000006, "marginPct": 81.91294387170676}, {"YearMonth": "2017-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 475.68, "totalRevenueExVAT": 403.92, "totalCost": 137.916, "totalQty": 27.0, "orderCount": 25, "margin": 266.004, "marginPct": 65.85561497326204}, {"YearMonth": "2017-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 398.0, "totalRevenueExVAT": 331.59999999999997, "totalCost": 102.16, "totalQty": 40.0, "orderCount": 39, "margin": 229.43999999999997, "marginPct": 69.19179734620023}, {"YearMonth": "2017-09", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 758.73, "totalRevenueExVAT": 639.45, "totalCost": 331.56, "totalQty": 45.0, "orderCount": 45, "margin": 307.89000000000004, "marginPct": 48.14919071076707}, {"YearMonth": "2017-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 777.48, "totalRevenueExVAT": 652.74, "totalCost": 278.691, "totalQty": 69.0, "orderCount": 67, "margin": 374.04900000000004, "marginPct": 57.30443974630022}, {"YearMonth": "2017-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 548.75, "totalRevenueExVAT": 457.25, "totalCost": 209.375, "totalQty": 25.0, "orderCount": 24, "margin": 247.875, "marginPct": 54.20995079278295}, {"YearMonth": "2017-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 751.0999999999999, "totalRevenueExVAT": 625.8199999999999, "totalCost": 264.422, "totalQty": 58.0, "orderCount": 57, "margin": 361.3979999999999, "marginPct": 57.74791473586654}, {"YearMonth": "2017-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 318.4, "totalRevenueExVAT": 265.28, "totalCost": 99.008, "totalQty": 32.0, "orderCount": 32, "margin": 166.272, "marginPct": 62.67792521109771}, {"YearMonth": "2017-09", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 512.24, "totalRevenueExVAT": 426.74, "totalCost": 129.599, "totalQty": 19.0, "orderCount": 17, "margin": 297.141, "marginPct": 69.63045414069458}, {"YearMonth": "2017-09", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1562.5, "totalRevenueExVAT": 1310.5, "totalCost": 414.1, "totalQty": 50.0, "orderCount": 44, "margin": 896.4, "marginPct": 68.40137352155665}, {"YearMonth": "2017-09", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 2241.19, "totalRevenueExVAT": 1869.49, "totalCost": 719.9499999999999, "totalQty": 119.0, "orderCount": 88, "margin": 1149.54, "marginPct": 61.489497135582425}, {"YearMonth": "2017-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 844.14, "totalRevenueExVAT": 706.86, "totalCost": 281.79200000000003, "totalQty": 34.0, "orderCount": 34, "margin": 425.068, "marginPct": 60.13468013468013}, {"YearMonth": "2017-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 583.5799999999999, "totalRevenueExVAT": 488.46000000000004, "totalCost": 174.048, "totalQty": 42.0, "orderCount": 41, "margin": 314.41200000000003, "marginPct": 64.36801375752364}, {"YearMonth": "2017-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 409.38, "totalRevenueExVAT": 345.53999999999996, "totalCost": 126.98400000000001, "totalQty": 26.0, "orderCount": 21, "margin": 218.55599999999995, "marginPct": 63.250564334085766}, {"YearMonth": "2017-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1963.44, "totalRevenueExVAT": 1639.5900000000001, "totalCost": 397.449, "totalQty": 129.0, "orderCount": 115, "margin": 1242.141, "marginPct": 75.75924468922108}, {"YearMonth": "2017-09", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1434.61, "totalRevenueExVAT": 1198.66, "totalCost": 319.74, "totalQty": 146.0, "orderCount": 126, "margin": 878.9200000000001, "marginPct": 73.32521315468941}, {"YearMonth": "2017-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 517.84, "totalRevenueExVAT": 433.84000000000003, "totalCost": 168.48999999999998, "totalQty": 29.0, "orderCount": 28, "margin": 265.35, "marginPct": 61.16310160427808}, {"YearMonth": "2017-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2105.2999999999997, "totalRevenueExVAT": 1754.54, "totalCost": 910.2, "totalQty": 74.0, "orderCount": 55, "margin": 844.3399999999999, "marginPct": 48.123154787009696}, {"YearMonth": "2017-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 653.9499999999999, "totalRevenueExVAT": 544.89, "totalCost": 196.964, "totalQty": 41.0, "orderCount": 38, "margin": 347.926, "marginPct": 63.85252069224981}, {"YearMonth": "2017-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 471.36999999999995, "totalRevenueExVAT": 395.38, "totalCost": 127.30600000000001, "totalQty": 53.0, "orderCount": 50, "margin": 268.07399999999996, "marginPct": 67.80160857908845}, {"YearMonth": "2017-09", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 265.3, "totalRevenueExVAT": 221.06, "totalCost": 80.612, "totalQty": 14.0, "orderCount": 14, "margin": 140.448, "marginPct": 63.53388220392654}, {"YearMonth": "2017-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 524.32, "totalRevenueExVAT": 440.70000000000005, "totalCost": 71.331, "totalQty": 39.0, "orderCount": 39, "margin": 369.369, "marginPct": 83.8141592920354}, {"YearMonth": "2017-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 569.88, "totalRevenueExVAT": 477.88, "totalCost": 95.108, "totalQty": 26.0, "orderCount": 23, "margin": 382.772, "marginPct": 80.09793253536452}, {"YearMonth": "2017-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1451.76, "totalRevenueExVAT": 1211.76, "totalCost": 352.512, "totalQty": 81.0, "orderCount": 63, "margin": 859.248, "marginPct": 70.9090909090909}, {"YearMonth": "2017-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 697.06, "totalRevenueExVAT": 583.44, "totalCost": 377.83200000000005, "totalQty": 39.0, "orderCount": 37, "margin": 205.608, "marginPct": 35.24064171122994}, {"YearMonth": "2017-09", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 363.86, "totalRevenueExVAT": 305.1, "totalCost": 97.2, "totalQty": 27.0, "orderCount": 26, "margin": 207.90000000000003, "marginPct": 68.14159292035399}, {"YearMonth": "2017-09", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 647.28, "totalRevenueExVAT": 539.28, "totalCost": 425.88, "totalQty": 18.0, "orderCount": 15, "margin": 113.39999999999998, "marginPct": 21.028037383177566}, {"YearMonth": "2017-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 630.24, "totalRevenueExVAT": 524.94, "totalCost": 221.364, "totalQty": 39.0, "orderCount": 39, "margin": 303.576, "marginPct": 57.83060921248142}, {"YearMonth": "2017-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 554.0200000000001, "totalRevenueExVAT": 462.52, "totalCost": 175.95600000000002, "totalQty": 62.0, "orderCount": 57, "margin": 286.56399999999996, "marginPct": 61.95710455764074}, {"YearMonth": "2017-09", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 16134.1, "totalRevenueExVAT": 13508.62, "totalCost": 6365.152, "totalQty": 722.0, "orderCount": 626, "margin": 7143.468000000001, "marginPct": 52.880812399786215}, {"YearMonth": "2017-09", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4706.5, "totalRevenueExVAT": 3923.5000000000005, "totalCost": 1667.05, "totalQty": 350.0, "orderCount": 333, "margin": 2256.4500000000007, "marginPct": 57.511150758251574}, {"YearMonth": "2017-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 674.92, "totalRevenueExVAT": 562.12, "totalCost": 272.318, "totalQty": 47.0, "orderCount": 37, "margin": 289.802, "marginPct": 51.55518394648829}, {"YearMonth": "2017-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1027.99, "totalRevenueExVAT": 859.63, "totalCost": 302.398, "totalQty": 47.0, "orderCount": 46, "margin": 557.232, "marginPct": 64.82230727173318}, {"YearMonth": "2017-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1442.1000000000001, "totalRevenueExVAT": 1201.94, "totalCost": 488.98400000000004, "totalQty": 38.0, "orderCount": 34, "margin": 712.956, "marginPct": 59.317104015175474}, {"YearMonth": "2017-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 800.74, "totalRevenueExVAT": 668.9799999999999, "totalCost": 221.464, "totalQty": 62.0, "orderCount": 60, "margin": 447.5159999999999, "marginPct": 66.8952734012975}, {"YearMonth": "2017-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 918.84, "totalRevenueExVAT": 765.98, "totalCost": 177.928, "totalQty": 92.0, "orderCount": 90, "margin": 588.052, "marginPct": 76.77119507036737}, {"YearMonth": "2017-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 449.41999999999996, "totalRevenueExVAT": 374.5, "totalCost": 75.792, "totalQty": 24.0, "orderCount": 21, "margin": 298.70799999999997, "marginPct": 79.76181575433911}, {"YearMonth": "2017-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 341.05, "totalRevenueExVAT": 284.24, "totalCost": 97.05199999999999, "totalQty": 19.0, "orderCount": 18, "margin": 187.18800000000002, "marginPct": 65.85561497326204}, {"YearMonth": "2017-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 386.39, "totalRevenueExVAT": 323.30999999999995, "totalCost": 99.606, "totalQty": 39.0, "orderCount": 34, "margin": 223.70399999999995, "marginPct": 69.19179734620023}, {"YearMonth": "2017-10", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1075.8700000000001, "totalRevenueExVAT": 901.1500000000001, "totalCost": 478.92, "totalQty": 65.0, "orderCount": 64, "margin": 422.2300000000001, "marginPct": 46.85457471009266}, {"YearMonth": "2017-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1071.09, "totalRevenueExVAT": 897.1200000000001, "totalCost": 391.78299999999996, "totalQty": 97.0, "orderCount": 95, "margin": 505.33700000000016, "marginPct": 56.328807740324606}, {"YearMonth": "2017-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 782.88, "totalRevenueExVAT": 658.4399999999999, "totalCost": 301.5, "totalQty": 36.0, "orderCount": 36, "margin": 356.93999999999994, "marginPct": 54.209950792782934}, {"YearMonth": "2017-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 956.14, "totalRevenueExVAT": 798.4599999999999, "totalCost": 337.366, "totalQty": 74.0, "orderCount": 73, "margin": 461.09399999999994, "marginPct": 57.747914735866544}, {"YearMonth": "2017-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 464.33, "totalRevenueExVAT": 389.62999999999994, "totalCost": 145.418, "totalQty": 47.0, "orderCount": 44, "margin": 244.21199999999993, "marginPct": 62.677925211097694}, {"YearMonth": "2017-10", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 894.14, "totalRevenueExVAT": 744.89, "totalCost": 231.914, "totalQty": 34.0, "orderCount": 32, "margin": 512.976, "marginPct": 68.86600706144532}, {"YearMonth": "2017-10", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1978.3600000000001, "totalRevenueExVAT": 1652.93, "totalCost": 546.612, "totalQty": 66.0, "orderCount": 59, "margin": 1106.3180000000002, "marginPct": 66.93072301912363}, {"YearMonth": "2017-10", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 2542.24, "totalRevenueExVAT": 2128.06, "totalCost": 847.0, "totalQty": 140.0, "orderCount": 106, "margin": 1281.06, "marginPct": 60.19849064406079}, {"YearMonth": "2017-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1211.48, "totalRevenueExVAT": 1012.44, "totalCost": 430.976, "totalQty": 52.0, "orderCount": 51, "margin": 581.464, "marginPct": 57.431946584488955}, {"YearMonth": "2017-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 886.21, "totalRevenueExVAT": 744.11, "totalCost": 277.648, "totalQty": 67.0, "orderCount": 64, "margin": 466.462, "marginPct": 62.68723710204136}, {"YearMonth": "2017-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 622.05, "totalRevenueExVAT": 518.31, "totalCost": 190.476, "totalQty": 39.0, "orderCount": 30, "margin": 327.83399999999995, "marginPct": 63.25056433408578}, {"YearMonth": "2017-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2852.9, "totalRevenueExVAT": 2381.38, "totalCost": 597.7139999999999, "totalQty": 194.0, "orderCount": 156, "margin": 1783.6660000000002, "marginPct": 74.90051986663195}, {"YearMonth": "2017-10", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2391.0299999999997, "totalRevenueExVAT": 1995.0300000000002, "totalCost": 532.17, "totalQty": 243.0, "orderCount": 189, "margin": 1462.8600000000001, "marginPct": 73.32521315468941}, {"YearMonth": "2017-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1212.28, "totalRevenueExVAT": 1017.2800000000001, "totalCost": 395.08, "totalQty": 68.0, "orderCount": 60, "margin": 622.2, "marginPct": 61.16310160427807}, {"YearMonth": "2017-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2863.97, "totalRevenueExVAT": 2394.71, "totalCost": 1242.3000000000002, "totalQty": 101.0, "orderCount": 77, "margin": 1152.4099999999999, "marginPct": 48.12315478700969}, {"YearMonth": "2017-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1034.72, "totalRevenueExVAT": 873.3, "totalCost": 345.88800000000003, "totalQty": 72.0, "orderCount": 68, "margin": 527.4119999999999, "marginPct": 60.392992098935075}, {"YearMonth": "2017-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 606.4499999999999, "totalRevenueExVAT": 505.38, "totalCost": 175.346, "totalQty": 73.0, "orderCount": 71, "margin": 330.034, "marginPct": 65.30412758716213}, {"YearMonth": "2017-10", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 199.0, "totalRevenueExVAT": 165.79, "totalCost": 63.338, "totalQty": 11.0, "orderCount": 11, "margin": 102.452, "marginPct": 61.79624826587853}, {"YearMonth": "2017-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 675.74, "totalRevenueExVAT": 565.0, "totalCost": 91.45, "totalQty": 50.0, "orderCount": 49, "margin": 473.55, "marginPct": 83.8141592920354}, {"YearMonth": "2017-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 503.7, "totalRevenueExVAT": 422.73999999999995, "totalCost": 84.134, "totalQty": 23.0, "orderCount": 23, "margin": 338.60599999999994, "marginPct": 80.09793253536452}, {"YearMonth": "2017-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2001.26, "totalRevenueExVAT": 1677.54, "totalCost": 465.66400000000004, "totalQty": 107.0, "orderCount": 92, "margin": 1211.876, "marginPct": 72.24125803259534}, {"YearMonth": "2017-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 850.65, "totalRevenueExVAT": 708.96, "totalCost": 494.088, "totalQty": 51.0, "orderCount": 45, "margin": 214.872, "marginPct": 30.308056872037913}, {"YearMonth": "2017-10", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 583.12, "totalRevenueExVAT": 485.82000000000005, "totalCost": 151.20000000000002, "totalQty": 42.0, "orderCount": 40, "margin": 334.62, "marginPct": 68.8773619859207}, {"YearMonth": "2017-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1760.25, "totalRevenueExVAT": 1469.93, "totalCost": 694.54, "totalQty": 77.0, "orderCount": 68, "margin": 775.3900000000001, "marginPct": 52.75013095861708}, {"YearMonth": "2017-10", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1030.84, "totalRevenueExVAT": 868.84, "totalCost": 686.14, "totalQty": 29.0, "orderCount": 27, "margin": 182.70000000000005, "marginPct": 21.028037383177576}, {"YearMonth": "2017-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 740.66, "totalRevenueExVAT": 619.1600000000001, "totalCost": 261.096, "totalQty": 46.0, "orderCount": 46, "margin": 358.0640000000001, "marginPct": 57.830609212481434}, {"YearMonth": "2017-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 713.8000000000001, "totalRevenueExVAT": 596.8, "totalCost": 227.04000000000002, "totalQty": 80.0, "orderCount": 80, "margin": 369.75999999999993, "marginPct": 61.95710455764074}, {"YearMonth": "2017-10", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 20242.44, "totalRevenueExVAT": 16913.84, "totalCost": 7969.664000000001, "totalQty": 904.0, "orderCount": 744, "margin": 8944.176, "marginPct": 52.8808123997862}, {"YearMonth": "2017-10", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5043.0, "totalRevenueExVAT": 4203.75, "totalCost": 1786.125, "totalQty": 375.0, "orderCount": 354, "margin": 2417.625, "marginPct": 57.51115075825156}, {"YearMonth": "2017-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 674.92, "totalRevenueExVAT": 562.12, "totalCost": 272.318, "totalQty": 47.0, "orderCount": 41, "margin": 289.802, "marginPct": 51.55518394648829}, {"YearMonth": "2017-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1400.57, "totalRevenueExVAT": 1166.87, "totalCost": 431.07800000000003, "totalQty": 67.0, "orderCount": 64, "margin": 735.7919999999999, "marginPct": 63.056895798160895}, {"YearMonth": "2017-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1652.8799999999999, "totalRevenueExVAT": 1382.0, "totalCost": 604.796, "totalQty": 47.0, "orderCount": 44, "margin": 777.204, "marginPct": 56.237626628075255}, {"YearMonth": "2017-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 917.02, "totalRevenueExVAT": 763.9, "totalCost": 264.32800000000003, "totalQty": 74.0, "orderCount": 72, "margin": 499.57199999999995, "marginPct": 65.39756512632543}, {"YearMonth": "2017-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1072.1399999999999, "totalRevenueExVAT": 893.8000000000001, "totalCost": 205.004, "totalQty": 106.0, "orderCount": 100, "margin": 688.796, "marginPct": 77.06377265607517}, {"YearMonth": "2017-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 694.54, "totalRevenueExVAT": 578.78, "totalCost": 113.688, "totalQty": 36.0, "orderCount": 33, "margin": 465.092, "marginPct": 80.35730329313382}, {"YearMonth": "2017-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 822.7099999999999, "totalRevenueExVAT": 688.1600000000001, "totalCost": 234.968, "totalQty": 46.0, "orderCount": 41, "margin": 453.1920000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2017-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 398.0, "totalRevenueExVAT": 331.59999999999997, "totalCost": 102.16, "totalQty": 40.0, "orderCount": 39, "margin": 229.43999999999997, "marginPct": 69.19179734620023}, {"YearMonth": "2017-11", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 850.5799999999999, "totalRevenueExVAT": 713.38, "totalCost": 390.504, "totalQty": 53.0, "orderCount": 51, "margin": 322.876, "marginPct": 45.260029717682016}, {"YearMonth": "2017-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 922.73, "totalRevenueExVAT": 770.5600000000001, "totalCost": 347.354, "totalQty": 86.0, "orderCount": 86, "margin": 423.2060000000001, "marginPct": 54.92187500000001}, {"YearMonth": "2017-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 984.0899999999999, "totalRevenueExVAT": 823.05, "totalCost": 376.875, "totalQty": 45.0, "orderCount": 43, "margin": 446.17499999999995, "marginPct": 54.209950792782934}, {"YearMonth": "2017-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1059.74, "totalRevenueExVAT": 884.78, "totalCost": 373.838, "totalQty": 82.0, "orderCount": 82, "margin": 510.94199999999995, "marginPct": 57.74791473586654}, {"YearMonth": "2017-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 507.45, "totalRevenueExVAT": 422.78999999999996, "totalCost": 157.79399999999998, "totalQty": 51.0, "orderCount": 48, "margin": 264.996, "marginPct": 62.67792521109771}, {"YearMonth": "2017-11", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 606.56, "totalRevenueExVAT": 509.04, "totalCost": 163.704, "totalQty": 24.0, "orderCount": 24, "margin": 345.336, "marginPct": 67.84064120697784}, {"YearMonth": "2017-11", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 3851.13, "totalRevenueExVAT": 3217.53, "totalCost": 1076.66, "totalQty": 130.0, "orderCount": 103, "margin": 2140.87, "marginPct": 66.53768574030389}, {"YearMonth": "2017-11", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3423.5800000000004, "totalRevenueExVAT": 2862.25, "totalCost": 1167.6499999999999, "totalQty": 193.0, "orderCount": 135, "margin": 1694.6000000000001, "marginPct": 59.20517075727139}, {"YearMonth": "2017-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1492.96, "totalRevenueExVAT": 1253.5700000000002, "totalCost": 555.296, "totalQty": 67.0, "orderCount": 62, "margin": 698.2740000000001, "marginPct": 55.70283270978087}, {"YearMonth": "2017-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 976.82, "totalRevenueExVAT": 815.8800000000001, "totalCost": 323.232, "totalQty": 78.0, "orderCount": 75, "margin": 492.6480000000001, "marginPct": 60.38240917782027}, {"YearMonth": "2017-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 762.9399999999999, "totalRevenueExVAT": 637.92, "totalCost": 234.43200000000002, "totalQty": 48.0, "orderCount": 40, "margin": 403.48799999999994, "marginPct": 63.25056433408578}, {"YearMonth": "2017-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3119.93, "totalRevenueExVAT": 2609.6400000000003, "totalCost": 850.356, "totalQty": 276.0, "orderCount": 202, "margin": 1759.2840000000003, "marginPct": 67.41481583666713}, {"YearMonth": "2017-11", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2464.19, "totalRevenueExVAT": 2060.71, "totalCost": 549.6899999999999, "totalQty": 251.0, "orderCount": 196, "margin": 1511.02, "marginPct": 73.32521315468941}, {"YearMonth": "2017-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1277.47, "totalRevenueExVAT": 1077.1200000000001, "totalCost": 418.32, "totalQty": 72.0, "orderCount": 63, "margin": 658.8000000000002, "marginPct": 61.16310160427808}, {"YearMonth": "2017-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 4096.8, "totalRevenueExVAT": 3414.2400000000002, "totalCost": 1771.2, "totalQty": 144.0, "orderCount": 93, "margin": 1643.0400000000002, "marginPct": 48.1231547870097}, {"YearMonth": "2017-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 481.38, "totalRevenueExVAT": 406.8, "totalCost": 172.94400000000002, "totalQty": 36.0, "orderCount": 32, "margin": 233.856, "marginPct": 57.48672566371681}, {"YearMonth": "2017-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 417.28000000000003, "totalRevenueExVAT": 348.7, "totalCost": 132.11, "totalQty": 55.0, "orderCount": 54, "margin": 216.58999999999997, "marginPct": 62.11356466876972}, {"YearMonth": "2017-11", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 477.40000000000003, "totalRevenueExVAT": 397.88, "totalCost": 161.224, "totalQty": 28.0, "orderCount": 27, "margin": 236.656, "marginPct": 59.47923997185082}, {"YearMonth": "2017-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 415.84000000000003, "totalRevenueExVAT": 350.3, "totalCost": 56.699, "totalQty": 31.0, "orderCount": 30, "margin": 293.601, "marginPct": 83.8141592920354}, {"YearMonth": "2017-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 522.0799999999999, "totalRevenueExVAT": 441.11999999999995, "totalCost": 87.792, "totalQty": 24.0, "orderCount": 22, "margin": 353.328, "marginPct": 80.09793253536454}, {"YearMonth": "2017-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1655.85, "totalRevenueExVAT": 1380.29, "totalCost": 361.216, "totalQty": 83.0, "orderCount": 72, "margin": 1019.074, "marginPct": 73.83042693926637}, {"YearMonth": "2017-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1192.4099999999999, "totalRevenueExVAT": 996.0400000000001, "totalCost": 716.912, "totalQty": 74.0, "orderCount": 66, "margin": 279.12800000000004, "marginPct": 28.023774145616642}, {"YearMonth": "2017-11", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 574.0, "totalRevenueExVAT": 478.40000000000003, "totalCost": 144.0, "totalQty": 40.0, "orderCount": 39, "margin": 334.40000000000003, "marginPct": 69.89966555183946}, {"YearMonth": "2017-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1389.87, "totalRevenueExVAT": 1164.49, "totalCost": 550.22, "totalQty": 61.0, "orderCount": 52, "margin": 614.27, "marginPct": 52.75013095861707}, {"YearMonth": "2017-11", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1132.45, "totalRevenueExVAT": 958.72, "totalCost": 757.12, "totalQty": 32.0, "orderCount": 27, "margin": 201.60000000000002, "marginPct": 21.028037383177573}, {"YearMonth": "2017-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 839.81, "totalRevenueExVAT": 699.9200000000001, "totalCost": 295.152, "totalQty": 52.0, "orderCount": 52, "margin": 404.7680000000001, "marginPct": 57.830609212481434}, {"YearMonth": "2017-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 711.53, "totalRevenueExVAT": 596.8, "totalCost": 227.04000000000002, "totalQty": 80.0, "orderCount": 76, "margin": 369.75999999999993, "marginPct": 61.95710455764074}, {"YearMonth": "2017-11", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 21529.579999999998, "totalRevenueExVAT": 17999.02, "totalCost": 8480.992, "totalQty": 962.0, "orderCount": 816, "margin": 9518.028, "marginPct": 52.880812399786215}, {"YearMonth": "2017-11", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5929.2699999999995, "totalRevenueExVAT": 4943.610000000001, "totalCost": 2100.483, "totalQty": 441.0, "orderCount": 418, "margin": 2843.1270000000004, "marginPct": 57.51115075825156}, {"YearMonth": "2017-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 727.08, "totalRevenueExVAT": 609.96, "totalCost": 295.49399999999997, "totalQty": 51.0, "orderCount": 46, "margin": 314.46600000000007, "marginPct": 51.555183946488306}, {"YearMonth": "2017-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1454.95, "totalRevenueExVAT": 1218.04, "totalCost": 476.116, "totalQty": 74.0, "orderCount": 72, "margin": 741.924, "marginPct": 60.911300121506684}, {"YearMonth": "2017-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2771.8599999999997, "totalRevenueExVAT": 2333.7200000000003, "totalCost": 1055.176, "totalQty": 82.0, "orderCount": 74, "margin": 1278.5440000000003, "marginPct": 54.785664089950814}, {"YearMonth": "2017-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 908.73, "totalRevenueExVAT": 757.3800000000001, "totalCost": 278.616, "totalQty": 78.0, "orderCount": 75, "margin": 478.7640000000001, "marginPct": 63.21318228630278}, {"YearMonth": "2017-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1182.6, "totalRevenueExVAT": 986.0400000000001, "totalCost": 208.87199999999999, "totalQty": 108.0, "orderCount": 104, "margin": 777.1680000000001, "marginPct": 78.8170865279299}, {"YearMonth": "2017-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 604.06, "totalRevenueExVAT": 506.34000000000003, "totalCost": 91.582, "totalQty": 29.0, "orderCount": 22, "margin": 414.75800000000004, "marginPct": 81.91294387170676}, {"YearMonth": "2017-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 876.56, "totalRevenueExVAT": 733.0400000000001, "totalCost": 250.29199999999997, "totalQty": 49.0, "orderCount": 42, "margin": 482.7480000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2017-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 630.16, "totalRevenueExVAT": 530.56, "totalCost": 163.456, "totalQty": 64.0, "orderCount": 62, "margin": 367.1039999999999, "marginPct": 69.19179734620023}, {"YearMonth": "2017-12", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1090.23, "totalRevenueExVAT": 915.3800000000001, "totalCost": 501.024, "totalQty": 68.0, "orderCount": 64, "margin": 414.3560000000001, "marginPct": 45.26600974458695}, {"YearMonth": "2017-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 790.32, "totalRevenueExVAT": 663.23, "totalCost": 298.88599999999997, "totalQty": 74.0, "orderCount": 71, "margin": 364.34400000000005, "marginPct": 54.93478883645192}, {"YearMonth": "2017-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 654.89, "totalRevenueExVAT": 548.6899999999999, "totalCost": 259.625, "totalQty": 31.0, "orderCount": 31, "margin": 289.06499999999994, "marginPct": 52.6827534673495}, {"YearMonth": "2017-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 661.18, "totalRevenueExVAT": 552.43, "totalCost": 241.627, "totalQty": 53.0, "orderCount": 53, "margin": 310.80299999999994, "marginPct": 56.261064750285094}, {"YearMonth": "2017-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 272.15999999999997, "totalRevenueExVAT": 226.76999999999998, "totalCost": 89.726, "totalQty": 29.0, "orderCount": 29, "margin": 137.04399999999998, "marginPct": 60.4330378797901}, {"YearMonth": "2017-12", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 632.06, "totalRevenueExVAT": 530.25, "totalCost": 170.525, "totalQty": 25.0, "orderCount": 24, "margin": 359.725, "marginPct": 67.84064120697785}, {"YearMonth": "2017-12", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1594.1, "totalRevenueExVAT": 1336.7, "totalCost": 447.228, "totalQty": 54.0, "orderCount": 42, "margin": 889.472, "marginPct": 66.5423804892646}, {"YearMonth": "2017-12", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 2649.8, "totalRevenueExVAT": 2210.24, "totalCost": 901.4499999999999, "totalQty": 149.0, "orderCount": 102, "margin": 1308.79, "marginPct": 59.214836397857255}, {"YearMonth": "2017-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 886.88, "totalRevenueExVAT": 748.5, "totalCost": 331.52, "totalQty": 40.0, "orderCount": 38, "margin": 416.98, "marginPct": 55.70875083500334}, {"YearMonth": "2017-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 464.47, "totalRevenueExVAT": 387.14000000000004, "totalCost": 153.328, "totalQty": 37.0, "orderCount": 36, "margin": 233.81200000000004, "marginPct": 60.39468925969934}, {"YearMonth": "2017-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 636.4599999999999, "totalRevenueExVAT": 530.26, "totalCost": 200.24400000000003, "totalQty": 41.0, "orderCount": 35, "margin": 330.01599999999996, "marginPct": 62.23663863010598}, {"YearMonth": "2017-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2202.35, "totalRevenueExVAT": 1840.64, "totalCost": 591.552, "totalQty": 192.0, "orderCount": 149, "margin": 1249.0880000000002, "marginPct": 67.86161335187761}, {"YearMonth": "2017-12", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2108.62, "totalRevenueExVAT": 1773.8000000000002, "totalCost": 481.8, "totalQty": 220.0, "orderCount": 171, "margin": 1292.0000000000002, "marginPct": 72.83797496899312}, {"YearMonth": "2017-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1211.24, "totalRevenueExVAT": 1014.0, "totalCost": 406.7, "totalQty": 70.0, "orderCount": 58, "margin": 607.3, "marginPct": 59.89151873767258}, {"YearMonth": "2017-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2290.48, "totalRevenueExVAT": 1924.18, "totalCost": 1020.9000000000001, "totalQty": 83.0, "orderCount": 51, "margin": 903.28, "marginPct": 46.94363313203546}, {"YearMonth": "2017-12", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 336.3, "totalRevenueExVAT": 280.25, "totalCost": 115.16, "totalQty": 20.0, "orderCount": 20, "margin": 165.09, "marginPct": 58.908117752007136}, {"YearMonth": "2017-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2027.7, "totalRevenueExVAT": 1701.04, "totalCost": 470.016, "totalQty": 108.0, "orderCount": 84, "margin": 1231.024, "marginPct": 72.36890372948314}, {"YearMonth": "2017-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 742.9699999999999, "totalRevenueExVAT": 619.23, "totalCost": 445.648, "totalQty": 46.0, "orderCount": 44, "margin": 173.582, "marginPct": 28.031910598646704}, {"YearMonth": "2017-12", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 301.43, "totalRevenueExVAT": 251.24, "totalCost": 75.60000000000001, "totalQty": 21.0, "orderCount": 21, "margin": 175.64, "marginPct": 69.90925011940773}, {"YearMonth": "2017-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 843.85, "totalRevenueExVAT": 706.33, "totalCost": 333.74, "totalQty": 37.0, "orderCount": 32, "margin": 372.59000000000003, "marginPct": 52.75013095861708}, {"YearMonth": "2017-12", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1036.68, "totalRevenueExVAT": 868.9599999999999, "totalCost": 686.14, "totalQty": 29.0, "orderCount": 21, "margin": 182.81999999999994, "marginPct": 21.038943104400655}, {"YearMonth": "2017-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 537.53, "totalRevenueExVAT": 447.89000000000004, "totalCost": 192.984, "totalQty": 34.0, "orderCount": 31, "margin": 254.90600000000003, "marginPct": 56.912634798722905}, {"YearMonth": "2017-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 525.75, "totalRevenueExVAT": 441.86, "totalCost": 170.28, "totalQty": 60.0, "orderCount": 58, "margin": 271.58000000000004, "marginPct": 61.4629068030598}, {"YearMonth": "2017-12", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 15841.18, "totalRevenueExVAT": 13211.960000000001, "totalCost": 6224.0960000000005, "totalQty": 706.0, "orderCount": 597, "margin": 6987.8640000000005, "marginPct": 52.890441690710546}, {"YearMonth": "2017-12", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4002.02, "totalRevenueExVAT": 3341.2200000000003, "totalCost": 1419.374, "totalQty": 298.0, "orderCount": 269, "margin": 1921.8460000000002, "marginPct": 57.519289361370994}, {"YearMonth": "2017-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 559.77, "totalRevenueExVAT": 466.56000000000006, "totalCost": 225.96599999999998, "totalQty": 39.0, "orderCount": 31, "margin": 240.59400000000008, "marginPct": 51.56764403292182}, {"YearMonth": "2017-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1083.15, "totalRevenueExVAT": 905.49, "totalCost": 353.87, "totalQty": 55.0, "orderCount": 54, "margin": 551.62, "marginPct": 60.91950214800826}, {"YearMonth": "2017-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1366.1599999999999, "totalRevenueExVAT": 1138.56, "totalCost": 514.72, "totalQty": 40.0, "orderCount": 39, "margin": 623.8399999999999, "marginPct": 54.7920179876335}, {"YearMonth": "2017-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 664.19, "totalRevenueExVAT": 553.61, "totalCost": 203.604, "totalQty": 57.0, "orderCount": 56, "margin": 350.006, "marginPct": 63.222485142970676}, {"YearMonth": "2017-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 794.3599999999999, "totalRevenueExVAT": 663.59, "totalCost": 145.04999999999998, "totalQty": 75.0, "orderCount": 72, "margin": 518.5400000000001, "marginPct": 78.14162359288116}, {"YearMonth": "2017-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 620.1899999999999, "totalRevenueExVAT": 516.9, "totalCost": 97.898, "totalQty": 31.0, "orderCount": 29, "margin": 419.00199999999995, "marginPct": 81.06055329851034}, {"YearMonth": "2017-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 532.24, "totalRevenueExVAT": 443.51000000000005, "totalCost": 158.34799999999998, "totalQty": 31.0, "orderCount": 28, "margin": 285.16200000000003, "marginPct": 64.296633672296}, {"YearMonth": "2017-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 324.89, "totalRevenueExVAT": 270.7, "totalCost": 86.836, "totalQty": 34.0, "orderCount": 34, "margin": 183.86399999999998, "marginPct": 67.92168452161064}, {"YearMonth": "2018-01", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 988.47, "totalRevenueExVAT": 835.14, "totalCost": 456.81600000000003, "totalQty": 62.0, "orderCount": 61, "margin": 378.32399999999996, "marginPct": 45.30066815144766}, {"YearMonth": "2018-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1126.22, "totalRevenueExVAT": 941.85, "totalCost": 424.09499999999997, "totalQty": 105.0, "orderCount": 104, "margin": 517.7550000000001, "marginPct": 54.97212931995542}, {"YearMonth": "2018-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1933.18, "totalRevenueExVAT": 1613.0800000000002, "totalCost": 820.75, "totalQty": 98.0, "orderCount": 92, "margin": 792.3300000000002, "marginPct": 49.11907654921021}, {"YearMonth": "2018-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1113.51, "totalRevenueExVAT": 932.1600000000001, "totalCost": 437.664, "totalQty": 96.0, "orderCount": 89, "margin": 494.4960000000001, "marginPct": 53.048403707518034}, {"YearMonth": "2018-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 791.0100000000001, "totalRevenueExVAT": 662.6999999999999, "totalCost": 290.836, "totalQty": 94.0, "orderCount": 93, "margin": 371.8639999999999, "marginPct": 56.11347517730496}, {"YearMonth": "2018-01", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1349.38, "totalRevenueExVAT": 1124.13, "totalCost": 361.513, "totalQty": 53.0, "orderCount": 45, "margin": 762.6170000000002, "marginPct": 67.84064120697785}, {"YearMonth": "2018-01", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 4709.04, "totalRevenueExVAT": 3936.84, "totalCost": 1316.838, "totalQty": 159.0, "orderCount": 137, "margin": 2620.0020000000004, "marginPct": 66.55088852988692}, {"YearMonth": "2018-01", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 5767.459999999999, "totalRevenueExVAT": 4823.0, "totalCost": 1966.25, "totalQty": 325.0, "orderCount": 230, "margin": 2856.75, "marginPct": 59.23180592991913}, {"YearMonth": "2018-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1811.78, "totalRevenueExVAT": 1516.32, "totalCost": 671.328, "totalQty": 81.0, "orderCount": 77, "margin": 844.992, "marginPct": 55.72649572649573}, {"YearMonth": "2018-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1096.92, "totalRevenueExVAT": 921.36, "totalCost": 364.672, "totalQty": 88.0, "orderCount": 78, "margin": 556.688, "marginPct": 60.42024832855778}, {"YearMonth": "2018-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1148.8, "totalRevenueExVAT": 956.8000000000001, "totalCost": 390.72, "totalQty": 80.0, "orderCount": 57, "margin": 566.08, "marginPct": 59.163879598662206}, {"YearMonth": "2018-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 5025.1, "totalRevenueExVAT": 4207.5, "totalCost": 1155.375, "totalQty": 375.0, "orderCount": 284, "margin": 3052.125, "marginPct": 72.54010695187165}, {"YearMonth": "2018-01", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4085.5600000000004, "totalRevenueExVAT": 3422.16, "totalCost": 965.79, "totalQty": 441.0, "orderCount": 330, "margin": 2456.37, "marginPct": 71.77835051546391}, {"YearMonth": "2018-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 2244.36, "totalRevenueExVAT": 1879.2900000000002, "totalCost": 772.7299999999999, "totalQty": 133.0, "orderCount": 111, "margin": 1106.5600000000004, "marginPct": 58.881811748053806}, {"YearMonth": "2018-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 4380.9800000000005, "totalRevenueExVAT": 3660.98, "totalCost": 2004.9, "totalQty": 163.0, "orderCount": 113, "margin": 1656.08, "marginPct": 45.23597506678539}, {"YearMonth": "2018-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1531.74, "totalRevenueExVAT": 1280.7900000000002, "totalCost": 514.028, "totalQty": 107.0, "orderCount": 87, "margin": 766.7620000000002, "marginPct": 59.86633249791144}, {"YearMonth": "2018-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 603.1600000000001, "totalRevenueExVAT": 504.0, "totalCost": 180.15, "totalQty": 75.0, "orderCount": 72, "margin": 323.85, "marginPct": 64.25595238095238}, {"YearMonth": "2018-01", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 588.0, "totalRevenueExVAT": 496.54, "totalCost": 213.046, "totalQty": 37.0, "orderCount": 37, "margin": 283.494, "marginPct": 57.09388971684054}, {"YearMonth": "2018-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 227.37, "totalRevenueExVAT": 191.52, "totalCost": 29.264, "totalQty": 16.0, "orderCount": 16, "margin": 162.256, "marginPct": 84.72013366750208}, {"YearMonth": "2018-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 233.6, "totalRevenueExVAT": 194.7, "totalCost": 36.58, "totalQty": 10.0, "orderCount": 10, "margin": 158.12, "marginPct": 81.21212121212122}, {"YearMonth": "2018-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 3408.96, "totalRevenueExVAT": 2840.13, "totalCost": 874.7520000000001, "totalQty": 201.0, "orderCount": 151, "margin": 1965.3780000000002, "marginPct": 69.2002830856334}, {"YearMonth": "2018-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1645.63, "totalRevenueExVAT": 1373.94, "totalCost": 988.176, "totalQty": 102.0, "orderCount": 92, "margin": 385.764, "marginPct": 28.07720861172977}, {"YearMonth": "2018-01", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 974.0899999999999, "totalRevenueExVAT": 813.96, "totalCost": 244.8, "totalQty": 68.0, "orderCount": 65, "margin": 569.1600000000001, "marginPct": 69.92481203007519}, {"YearMonth": "2018-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 2520.1, "totalRevenueExVAT": 2099.9, "totalCost": 992.1999999999999, "totalQty": 110.0, "orderCount": 86, "margin": 1107.7000000000003, "marginPct": 52.75013095861709}, {"YearMonth": "2018-01", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1941.8400000000001, "totalRevenueExVAT": 1618.3799999999999, "totalCost": 1277.64, "totalQty": 54.0, "orderCount": 49, "margin": 340.7399999999998, "marginPct": 21.054387721054376}, {"YearMonth": "2018-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1012.22, "totalRevenueExVAT": 851.57, "totalCost": 380.29200000000003, "totalQty": 67.0, "orderCount": 67, "margin": 471.278, "marginPct": 55.34225019669552}, {"YearMonth": "2018-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1089.93, "totalRevenueExVAT": 909.4499999999999, "totalCost": 366.10200000000003, "totalQty": 129.0, "orderCount": 125, "margin": 543.348, "marginPct": 59.744680851063826}, {"YearMonth": "2018-01", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 49617.94, "totalRevenueExVAT": 41408.64, "totalCost": 19500.992000000002, "totalQty": 2212.0, "orderCount": 1796, "margin": 21907.647999999997, "marginPct": 52.905982905982896}, {"YearMonth": "2018-01", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 10938.5, "totalRevenueExVAT": 9121.86, "totalCost": 3872.319, "totalQty": 813.0, "orderCount": 761, "margin": 5249.541000000001, "marginPct": 57.54901960784314}, {"YearMonth": "2018-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1120.08, "totalRevenueExVAT": 933.6600000000001, "totalCost": 451.93199999999996, "totalQty": 78.0, "orderCount": 67, "margin": 481.7280000000001, "marginPct": 51.59565580618213}, {"YearMonth": "2018-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1834.39, "totalRevenueExVAT": 1531.7099999999998, "totalCost": 598.362, "totalQty": 93.0, "orderCount": 93, "margin": 933.3479999999998, "marginPct": 60.93503339404979}, {"YearMonth": "2018-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 3541.2599999999998, "totalRevenueExVAT": 2960.88, "totalCost": 1338.272, "totalQty": 104.0, "orderCount": 99, "margin": 1622.6080000000002, "marginPct": 54.801545486476996}, {"YearMonth": "2018-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1269.0, "totalRevenueExVAT": 1059.48, "totalCost": 389.348, "totalQty": 109.0, "orderCount": 108, "margin": 670.1320000000001, "marginPct": 63.251028806584365}, {"YearMonth": "2018-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1544.7199999999998, "totalRevenueExVAT": 1288.97, "totalCost": 303.638, "totalQty": 157.0, "orderCount": 153, "margin": 985.3320000000001, "marginPct": 76.4433617539586}, {"YearMonth": "2018-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1373.6399999999999, "totalRevenueExVAT": 1147.56, "totalCost": 230.534, "totalQty": 73.0, "orderCount": 68, "margin": 917.026, "marginPct": 79.91094147582697}, {"YearMonth": "2018-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1576.84, "totalRevenueExVAT": 1321.8400000000001, "totalCost": 531.232, "totalQty": 104.0, "orderCount": 78, "margin": 790.6080000000002, "marginPct": 59.81117230527144}, {"YearMonth": "2018-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 726.1500000000001, "totalRevenueExVAT": 606.3, "totalCost": 219.64399999999998, "totalQty": 86.0, "orderCount": 82, "margin": 386.65599999999995, "marginPct": 63.77304964539007}, {"YearMonth": "2018-02", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 420.16, "totalRevenueExVAT": 350.22, "totalCost": 191.568, "totalQty": 26.0, "orderCount": 25, "margin": 158.65200000000002, "marginPct": 45.30066815144767}, {"YearMonth": "2018-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 697.61, "totalRevenueExVAT": 583.0500000000001, "totalCost": 262.53499999999997, "totalQty": 65.0, "orderCount": 65, "margin": 320.5150000000001, "marginPct": 54.97212931995542}, {"YearMonth": "2018-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 750.8800000000001, "totalRevenueExVAT": 625.48, "totalCost": 318.25, "totalQty": 38.0, "orderCount": 36, "margin": 307.23, "marginPct": 49.119076549210206}, {"YearMonth": "2018-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 825.91, "totalRevenueExVAT": 689.4100000000001, "totalCost": 323.689, "totalQty": 71.0, "orderCount": 70, "margin": 365.72100000000006, "marginPct": 53.04840370751802}, {"YearMonth": "2018-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 431.46000000000004, "totalRevenueExVAT": 359.55, "totalCost": 157.79399999999998, "totalQty": 51.0, "orderCount": 48, "margin": 201.75600000000003, "marginPct": 56.11347517730497}, {"YearMonth": "2018-02", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 432.82, "totalRevenueExVAT": 360.57, "totalCost": 115.957, "totalQty": 17.0, "orderCount": 17, "margin": 244.613, "marginPct": 67.84064120697784}, {"YearMonth": "2018-02", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2376.8, "totalRevenueExVAT": 1980.8000000000002, "totalCost": 662.56, "totalQty": 80.0, "orderCount": 63, "margin": 1318.2400000000002, "marginPct": 66.55088852988692}, {"YearMonth": "2018-02", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3223.6099999999997, "totalRevenueExVAT": 2686.04, "totalCost": 1095.05, "totalQty": 181.0, "orderCount": 133, "margin": 1590.99, "marginPct": 59.23180592991913}, {"YearMonth": "2018-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1182.9, "totalRevenueExVAT": 992.16, "totalCost": 439.264, "totalQty": 53.0, "orderCount": 51, "margin": 552.896, "marginPct": 55.72649572649573}, {"YearMonth": "2018-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 602.88, "totalRevenueExVAT": 502.56, "totalCost": 198.912, "totalQty": 48.0, "orderCount": 47, "margin": 303.648, "marginPct": 60.42024832855779}, {"YearMonth": "2018-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 485.84, "totalRevenueExVAT": 406.64000000000004, "totalCost": 166.056, "totalQty": 34.0, "orderCount": 25, "margin": 240.58400000000003, "marginPct": 59.163879598662206}, {"YearMonth": "2018-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1507.52, "totalRevenueExVAT": 1256.64, "totalCost": 345.072, "totalQty": 112.0, "orderCount": 95, "margin": 911.5680000000001, "marginPct": 72.54010695187166}, {"YearMonth": "2018-02", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1916.3200000000002, "totalRevenueExVAT": 1606.32, "totalCost": 453.33, "totalQty": 207.0, "orderCount": 169, "margin": 1152.99, "marginPct": 71.77835051546391}, {"YearMonth": "2018-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 828.21, "totalRevenueExVAT": 692.37, "totalCost": 284.69, "totalQty": 49.0, "orderCount": 46, "margin": 407.68, "marginPct": 58.88181174805379}, {"YearMonth": "2018-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2511.7400000000002, "totalRevenueExVAT": 2111.2400000000002, "totalCost": 1156.2, "totalQty": 94.0, "orderCount": 75, "margin": 955.0400000000002, "marginPct": 45.2359750667854}, {"YearMonth": "2018-02", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1077.02, "totalRevenueExVAT": 909.72, "totalCost": 365.10400000000004, "totalQty": 76.0, "orderCount": 59, "margin": 544.616, "marginPct": 59.86633249791144}, {"YearMonth": "2018-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 467.48, "totalRevenueExVAT": 389.76, "totalCost": 139.316, "totalQty": 58.0, "orderCount": 57, "margin": 250.444, "marginPct": 64.25595238095238}, {"YearMonth": "2018-02", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 241.64999999999998, "totalRevenueExVAT": 201.3, "totalCost": 86.37, "totalQty": 15.0, "orderCount": 14, "margin": 114.93, "marginPct": 57.09388971684054}, {"YearMonth": "2018-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 516.96, "totalRevenueExVAT": 430.92, "totalCost": 65.844, "totalQty": 36.0, "orderCount": 35, "margin": 365.076, "marginPct": 84.7201336675021}, {"YearMonth": "2018-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 397.12, "totalRevenueExVAT": 330.99, "totalCost": 62.186, "totalQty": 17.0, "orderCount": 16, "margin": 268.80400000000003, "marginPct": 81.21212121212122}, {"YearMonth": "2018-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1483.99, "totalRevenueExVAT": 1243.44, "totalCost": 382.976, "totalQty": 88.0, "orderCount": 68, "margin": 860.464, "marginPct": 69.2002830856334}, {"YearMonth": "2018-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 500.96, "totalRevenueExVAT": 417.57, "totalCost": 300.32800000000003, "totalQty": 31.0, "orderCount": 28, "margin": 117.24199999999996, "marginPct": 28.07720861172976}, {"YearMonth": "2018-02", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 428.40999999999997, "totalRevenueExVAT": 359.1, "totalCost": 108.0, "totalQty": 30.0, "orderCount": 30, "margin": 251.10000000000002, "marginPct": 69.92481203007519}, {"YearMonth": "2018-02", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 820.94, "totalRevenueExVAT": 687.24, "totalCost": 324.71999999999997, "totalQty": 36.0, "orderCount": 34, "margin": 362.52000000000004, "marginPct": 52.75013095861708}, {"YearMonth": "2018-02", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 893.01, "totalRevenueExVAT": 749.25, "totalCost": 591.5, "totalQty": 25.0, "orderCount": 25, "margin": 157.75, "marginPct": 21.054387721054386}, {"YearMonth": "2018-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 651.08, "totalRevenueExVAT": 546.5300000000001, "totalCost": 244.068, "totalQty": 43.0, "orderCount": 42, "margin": 302.4620000000001, "marginPct": 55.34225019669553}, {"YearMonth": "2018-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 590.7900000000001, "totalRevenueExVAT": 493.5, "totalCost": 198.66, "totalQty": 70.0, "orderCount": 67, "margin": 294.84000000000003, "marginPct": 59.74468085106383}, {"YearMonth": "2018-02", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 23807.620000000003, "totalRevenueExVAT": 19861.92, "totalCost": 9353.776, "totalQty": 1061.0, "orderCount": 902, "margin": 10508.143999999998, "marginPct": 52.90598290598291}, {"YearMonth": "2018-02", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5904.46, "totalRevenueExVAT": 4925.58, "totalCost": 2090.957, "totalQty": 439.0, "orderCount": 411, "margin": 2834.623, "marginPct": 57.54901960784314}, {"YearMonth": "2018-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 495.43, "totalRevenueExVAT": 418.95000000000005, "totalCost": 202.79, "totalQty": 35.0, "orderCount": 28, "margin": 216.16000000000005, "marginPct": 51.59565580618213}, {"YearMonth": "2018-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1047.28, "totalRevenueExVAT": 872.91, "totalCost": 341.002, "totalQty": 53.0, "orderCount": 48, "margin": 531.9079999999999, "marginPct": 60.935033394049775}, {"YearMonth": "2018-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1150.06, "totalRevenueExVAT": 967.98, "totalCost": 437.512, "totalQty": 34.0, "orderCount": 32, "margin": 530.4680000000001, "marginPct": 54.801545486476996}, {"YearMonth": "2018-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 639.36, "totalRevenueExVAT": 534.6, "totalCost": 196.46, "totalQty": 55.0, "orderCount": 54, "margin": 338.14, "marginPct": 63.25102880658435}, {"YearMonth": "2018-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 926.8399999999999, "totalRevenueExVAT": 771.7400000000001, "totalCost": 181.796, "totalQty": 94.0, "orderCount": 92, "margin": 589.9440000000002, "marginPct": 76.4433617539586}, {"YearMonth": "2018-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 678.96, "totalRevenueExVAT": 565.9200000000001, "totalCost": 113.688, "totalQty": 36.0, "orderCount": 28, "margin": 452.2320000000001, "marginPct": 79.91094147582697}, {"YearMonth": "2018-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 755.35, "totalRevenueExVAT": 635.5, "totalCost": 255.39999999999998, "totalQty": 50.0, "orderCount": 42, "margin": 380.1, "marginPct": 59.81117230527144}, {"YearMonth": "2018-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 413.13000000000005, "totalRevenueExVAT": 345.45, "totalCost": 125.14599999999999, "totalQty": 49.0, "orderCount": 47, "margin": 220.304, "marginPct": 63.77304964539008}, {"YearMonth": "2018-03", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 654.49, "totalRevenueExVAT": 552.27, "totalCost": 302.088, "totalQty": 41.0, "orderCount": 40, "margin": 250.18199999999996, "marginPct": 45.30066815144765}, {"YearMonth": "2018-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 726.31, "totalRevenueExVAT": 609.96, "totalCost": 274.652, "totalQty": 68.0, "orderCount": 66, "margin": 335.30800000000005, "marginPct": 54.97212931995541}, {"YearMonth": "2018-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 691.6, "totalRevenueExVAT": 576.1, "totalCost": 293.125, "totalQty": 35.0, "orderCount": 35, "margin": 282.975, "marginPct": 49.11907654921021}, {"YearMonth": "2018-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 711.26, "totalRevenueExVAT": 592.3100000000001, "totalCost": 278.099, "totalQty": 61.0, "orderCount": 59, "margin": 314.21100000000007, "marginPct": 53.048403707518034}, {"YearMonth": "2018-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 532.98, "totalRevenueExVAT": 444.15, "totalCost": 194.922, "totalQty": 63.0, "orderCount": 62, "margin": 249.22799999999998, "marginPct": 56.11347517730496}, {"YearMonth": "2018-03", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 789.26, "totalRevenueExVAT": 657.51, "totalCost": 211.451, "totalQty": 31.0, "orderCount": 30, "margin": 446.05899999999997, "marginPct": 67.84064120697784}, {"YearMonth": "2018-03", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2812.55, "totalRevenueExVAT": 2352.2000000000003, "totalCost": 786.79, "totalQty": 95.0, "orderCount": 82, "margin": 1565.4100000000003, "marginPct": 66.55088852988692}, {"YearMonth": "2018-03", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 5242.07, "totalRevenueExVAT": 4377.8, "totalCost": 1784.75, "totalQty": 295.0, "orderCount": 205, "margin": 2593.05, "marginPct": 59.23180592991913}, {"YearMonth": "2018-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1141.72, "totalRevenueExVAT": 954.7199999999999, "totalCost": 422.688, "totalQty": 51.0, "orderCount": 49, "margin": 532.0319999999999, "marginPct": 55.72649572649573}, {"YearMonth": "2018-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 816.4000000000001, "totalRevenueExVAT": 680.5500000000001, "totalCost": 269.36, "totalQty": 65.0, "orderCount": 62, "margin": 411.19000000000005, "marginPct": 60.42024832855779}, {"YearMonth": "2018-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 643.8, "totalRevenueExVAT": 538.2, "totalCost": 219.78000000000003, "totalQty": 45.0, "orderCount": 40, "margin": 318.42, "marginPct": 59.163879598662206}, {"YearMonth": "2018-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2526.0, "totalRevenueExVAT": 2109.36, "totalCost": 579.228, "totalQty": 188.0, "orderCount": 143, "margin": 1530.132, "marginPct": 72.54010695187165}, {"YearMonth": "2018-03", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2834.9, "totalRevenueExVAT": 2366.7999999999997, "totalCost": 667.95, "totalQty": 305.0, "orderCount": 243, "margin": 1698.8499999999997, "marginPct": 71.77835051546391}, {"YearMonth": "2018-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1387.89, "totalRevenueExVAT": 1158.66, "totalCost": 476.41999999999996, "totalQty": 82.0, "orderCount": 73, "margin": 682.2400000000001, "marginPct": 58.88181174805379}, {"YearMonth": "2018-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3873.2000000000003, "totalRevenueExVAT": 3256.7000000000003, "totalCost": 1783.5000000000002, "totalQty": 145.0, "orderCount": 103, "margin": 1473.2, "marginPct": 45.23597506678539}, {"YearMonth": "2018-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 971.6999999999999, "totalRevenueExVAT": 813.96, "totalCost": 326.672, "totalQty": 68.0, "orderCount": 61, "margin": 487.288, "marginPct": 59.86633249791144}, {"YearMonth": "2018-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 593.76, "totalRevenueExVAT": 497.28, "totalCost": 177.74800000000002, "totalQty": 74.0, "orderCount": 69, "margin": 319.5319999999999, "marginPct": 64.25595238095238}, {"YearMonth": "2018-03", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 434.96999999999997, "totalRevenueExVAT": 362.34, "totalCost": 155.466, "totalQty": 27.0, "orderCount": 27, "margin": 206.87399999999997, "marginPct": 57.09388971684053}, {"YearMonth": "2018-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 516.96, "totalRevenueExVAT": 430.92, "totalCost": 65.844, "totalQty": 36.0, "orderCount": 35, "margin": 365.076, "marginPct": 84.7201336675021}, {"YearMonth": "2018-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 439.95, "totalRevenueExVAT": 369.92999999999995, "totalCost": 69.502, "totalQty": 19.0, "orderCount": 19, "margin": 300.42799999999994, "marginPct": 81.2121212121212}, {"YearMonth": "2018-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1577.28, "totalRevenueExVAT": 1314.0900000000001, "totalCost": 404.73600000000005, "totalQty": 93.0, "orderCount": 77, "margin": 909.354, "marginPct": 69.2002830856334}, {"YearMonth": "2018-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1198.55, "totalRevenueExVAT": 1010.25, "totalCost": 726.6, "totalQty": 75.0, "orderCount": 65, "margin": 283.65, "marginPct": 28.07720861172977}, {"YearMonth": "2018-03", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 560.04, "totalRevenueExVAT": 466.83000000000004, "totalCost": 140.4, "totalQty": 39.0, "orderCount": 39, "margin": 326.43000000000006, "marginPct": 69.9248120300752}, {"YearMonth": "2018-03", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1557.88, "totalRevenueExVAT": 1298.12, "totalCost": 613.36, "totalQty": 68.0, "orderCount": 64, "margin": 684.7599999999999, "marginPct": 52.75013095861707}, {"YearMonth": "2018-03", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 863.04, "totalRevenueExVAT": 719.28, "totalCost": 567.84, "totalQty": 24.0, "orderCount": 22, "margin": 151.43999999999994, "marginPct": 21.05438772105438}, {"YearMonth": "2018-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 839.3, "totalRevenueExVAT": 699.0500000000001, "totalCost": 312.18, "totalQty": 55.0, "orderCount": 52, "margin": 386.87000000000006, "marginPct": 55.34225019669552}, {"YearMonth": "2018-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 676.8000000000001, "totalRevenueExVAT": 564.0, "totalCost": 227.04000000000002, "totalQty": 80.0, "orderCount": 78, "margin": 336.96, "marginPct": 59.744680851063826}, {"YearMonth": "2018-03", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 30122.64, "totalRevenueExVAT": 25140.96, "totalCost": 11839.888, "totalQty": 1343.0, "orderCount": 1124, "margin": 13301.071999999998, "marginPct": 52.905982905982896}, {"YearMonth": "2018-03", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 6460.820000000001, "totalRevenueExVAT": 5396.820000000001, "totalCost": 2291.003, "totalQty": 481.0, "orderCount": 453, "margin": 3105.8170000000005, "marginPct": 57.54901960784314}, {"YearMonth": "2018-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 732.36, "totalRevenueExVAT": 610.47, "totalCost": 295.49399999999997, "totalQty": 51.0, "orderCount": 42, "margin": 314.97600000000006, "marginPct": 51.59565580618213}, {"YearMonth": "2018-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1106.5600000000002, "totalRevenueExVAT": 922.3199999999999, "totalCost": 360.30400000000003, "totalQty": 56.0, "orderCount": 55, "margin": 562.0159999999998, "marginPct": 60.935033394049775}, {"YearMonth": "2018-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1155.75, "totalRevenueExVAT": 967.98, "totalCost": 437.512, "totalQty": 34.0, "orderCount": 34, "margin": 530.4680000000001, "marginPct": 54.801545486476996}, {"YearMonth": "2018-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 812.32, "totalRevenueExVAT": 680.4000000000001, "totalCost": 250.04, "totalQty": 70.0, "orderCount": 68, "margin": 430.3600000000001, "marginPct": 63.25102880658437}, {"YearMonth": "2018-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 903.8199999999999, "totalRevenueExVAT": 755.32, "totalCost": 177.928, "totalQty": 92.0, "orderCount": 89, "margin": 577.392, "marginPct": 76.4433617539586}, {"YearMonth": "2018-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 716.68, "totalRevenueExVAT": 597.36, "totalCost": 120.00399999999999, "totalQty": 38.0, "orderCount": 34, "margin": 477.356, "marginPct": 79.91094147582697}, {"YearMonth": "2018-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 696.86, "totalRevenueExVAT": 584.6600000000001, "totalCost": 234.968, "totalQty": 46.0, "orderCount": 43, "margin": 349.6920000000001, "marginPct": 59.811172305271455}, {"YearMonth": "2018-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 431.46000000000004, "totalRevenueExVAT": 359.55, "totalCost": 130.254, "totalQty": 51.0, "orderCount": 49, "margin": 229.29600000000002, "marginPct": 63.77304964539008}, {"YearMonth": "2018-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 693.37, "totalRevenueExVAT": 582.61, "totalCost": 302.088, "totalQty": 41.0, "orderCount": 40, "margin": 280.522, "marginPct": 48.149190710767066}, {"YearMonth": "2018-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 690.5799999999999, "totalRevenueExVAT": 575.59, "totalCost": 246.379, "totalQty": 61.0, "orderCount": 61, "margin": 329.211, "marginPct": 57.19539950311854}, {"YearMonth": "2018-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 672.41, "totalRevenueExVAT": 563.3299999999999, "totalCost": 259.625, "totalQty": 31.0, "orderCount": 31, "margin": 303.7049999999999, "marginPct": 53.91244918608985}, {"YearMonth": "2018-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 985.51, "totalRevenueExVAT": 826.51, "totalCost": 351.043, "totalQty": 77.0, "orderCount": 73, "margin": 475.467, "marginPct": 57.5270716627748}, {"YearMonth": "2018-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 606.9499999999999, "totalRevenueExVAT": 505.68999999999994, "totalCost": 188.73399999999998, "totalQty": 61.0, "orderCount": 53, "margin": 316.95599999999996, "marginPct": 62.67792521109771}, {"YearMonth": "2018-04", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 727.9200000000001, "totalRevenueExVAT": 606.4200000000001, "totalCost": 184.167, "totalQty": 27.0, "orderCount": 27, "margin": 422.25300000000004, "marginPct": 69.63045414069457}, {"YearMonth": "2018-04", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2404.92, "totalRevenueExVAT": 2012.3700000000001, "totalCost": 637.714, "totalQty": 77.0, "orderCount": 65, "margin": 1374.656, "marginPct": 68.31030078961622}, {"YearMonth": "2018-04", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3760.6000000000004, "totalRevenueExVAT": 3139.3900000000003, "totalCost": 1210.0, "totalQty": 200.0, "orderCount": 148, "margin": 1929.3900000000003, "marginPct": 61.45748059336368}, {"YearMonth": "2018-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1568.45, "totalRevenueExVAT": 1309.73, "totalCost": 580.16, "totalQty": 70.0, "orderCount": 66, "margin": 729.57, "marginPct": 55.70384735785239}, {"YearMonth": "2018-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 889.6600000000001, "totalRevenueExVAT": 742.69, "totalCost": 294.224, "totalQty": 71.0, "orderCount": 66, "margin": 448.46600000000007, "marginPct": 60.38400947905587}, {"YearMonth": "2018-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 778.37, "totalRevenueExVAT": 648.55, "totalCost": 239.31600000000003, "totalQty": 49.0, "orderCount": 39, "margin": 409.2339999999999, "marginPct": 63.09983810037776}, {"YearMonth": "2018-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1384.15, "totalRevenueExVAT": 1152.9, "totalCost": 280.371, "totalQty": 91.0, "orderCount": 76, "margin": 872.5290000000001, "marginPct": 75.68123861566485}, {"YearMonth": "2018-04", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2363.6099999999997, "totalRevenueExVAT": 1976.3600000000001, "totalCost": 527.79, "totalQty": 241.0, "orderCount": 198, "margin": 1448.5700000000002, "marginPct": 73.29484506871218}, {"YearMonth": "2018-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1404.52, "totalRevenueExVAT": 1187.36, "totalCost": 418.32, "totalQty": 72.0, "orderCount": 61, "margin": 769.04, "marginPct": 64.76889907020617}, {"YearMonth": "2018-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3033.18, "totalRevenueExVAT": 2535.7200000000003, "totalCost": 1316.1000000000001, "totalQty": 107.0, "orderCount": 77, "margin": 1219.6200000000001, "marginPct": 48.097581751928445}, {"YearMonth": "2018-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1155.96, "totalRevenueExVAT": 968.7700000000001, "totalCost": 389.124, "totalQty": 81.0, "orderCount": 71, "margin": 579.6460000000001, "marginPct": 59.83319054058239}, {"YearMonth": "2018-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 715.1200000000001, "totalRevenueExVAT": 597.2, "totalCost": 213.77800000000002, "totalQty": 89.0, "orderCount": 85, "margin": 383.422, "marginPct": 64.20328198258541}, {"YearMonth": "2018-04", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 246.35, "totalRevenueExVAT": 205.26999999999998, "totalCost": 74.854, "totalQty": 13.0, "orderCount": 13, "margin": 130.416, "marginPct": 63.53388220392654}, {"YearMonth": "2018-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 706.72, "totalRevenueExVAT": 588.94, "totalCost": 95.108, "totalQty": 52.0, "orderCount": 50, "margin": 493.83200000000005, "marginPct": 83.85098651815126}, {"YearMonth": "2018-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 654.4399999999999, "totalRevenueExVAT": 551.4, "totalCost": 109.74, "totalQty": 30.0, "orderCount": 28, "margin": 441.65999999999997, "marginPct": 80.09793253536452}, {"YearMonth": "2018-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1252.2, "totalRevenueExVAT": 1045.54, "totalCost": 304.64000000000004, "totalQty": 70.0, "orderCount": 57, "margin": 740.8999999999999, "marginPct": 70.86290338007153}, {"YearMonth": "2018-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 763.49, "totalRevenueExVAT": 638.8100000000001, "totalCost": 416.584, "totalQty": 43.0, "orderCount": 41, "margin": 222.22600000000006, "marginPct": 34.78749549944428}, {"YearMonth": "2018-04", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 603.4200000000001, "totalRevenueExVAT": 508.50000000000006, "totalCost": 162.0, "totalQty": 45.0, "orderCount": 43, "margin": 346.50000000000006, "marginPct": 68.14159292035399}, {"YearMonth": "2018-04", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1611.92, "totalRevenueExVAT": 1346.23, "totalCost": 604.3399999999999, "totalQty": 67.0, "orderCount": 57, "margin": 741.8900000000001, "marginPct": 55.10871099292098}, {"YearMonth": "2018-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1118.6000000000001, "totalRevenueExVAT": 932.12, "totalCost": 662.48, "totalQty": 28.0, "orderCount": 28, "margin": 269.64, "marginPct": 28.92760588765395}, {"YearMonth": "2018-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 775.6800000000001, "totalRevenueExVAT": 646.08, "totalCost": 272.448, "totalQty": 48.0, "orderCount": 48, "margin": 373.63200000000006, "marginPct": 57.830609212481434}, {"YearMonth": "2018-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 804.4000000000001, "totalRevenueExVAT": 670.99, "totalCost": 255.42000000000002, "totalQty": 90.0, "orderCount": 87, "margin": 415.57, "marginPct": 61.9338589248722}, {"YearMonth": "2018-04", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 24296.31, "totalRevenueExVAT": 20270.67, "totalCost": 10640.912, "totalQty": 1207.0, "orderCount": 994, "margin": 9629.757999999998, "marginPct": 47.50586931759038}, {"YearMonth": "2018-04", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5297.2300000000005, "totalRevenueExVAT": 4420.58, "totalCost": 2110.009, "totalQty": 443.0, "orderCount": 407, "margin": 2310.571, "marginPct": 52.2685032280832}, {"YearMonth": "2018-04", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 689.28, "totalRevenueExVAT": 574.1, "totalCost": 278.11199999999997, "totalQty": 48.0, "orderCount": 44, "margin": 295.98800000000006, "marginPct": 51.556871625152425}, {"YearMonth": "2018-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1794.05, "totalRevenueExVAT": 1497.96, "totalCost": 527.588, "totalQty": 82.0, "orderCount": 78, "margin": 970.3720000000001, "marginPct": 64.77956687762023}, {"YearMonth": "2018-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1655.9, "totalRevenueExVAT": 1385.3999999999999, "totalCost": 566.192, "totalQty": 44.0, "orderCount": 39, "margin": 819.2079999999999, "marginPct": 59.13151436408257}, {"YearMonth": "2018-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 850.38, "totalRevenueExVAT": 712.14, "totalCost": 235.752, "totalQty": 66.0, "orderCount": 66, "margin": 476.388, "marginPct": 66.8952734012975}, {"YearMonth": "2018-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1012.17, "totalRevenueExVAT": 845.4100000000001, "totalCost": 179.862, "totalQty": 93.0, "orderCount": 92, "margin": 665.5480000000001, "marginPct": 78.7248790527673}, {"YearMonth": "2018-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 664.8199999999999, "totalRevenueExVAT": 556.98, "totalCost": 101.056, "totalQty": 32.0, "orderCount": 27, "margin": 455.92400000000004, "marginPct": 81.85644008761535}, {"YearMonth": "2018-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1068.03, "totalRevenueExVAT": 897.6, "totalCost": 306.47999999999996, "totalQty": 60.0, "orderCount": 47, "margin": 591.1200000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2018-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 773.1199999999999, "totalRevenueExVAT": 644.14, "totalCost": 199.212, "totalQty": 78.0, "orderCount": 78, "margin": 444.928, "marginPct": 69.0731828484491}, {"YearMonth": "2018-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 642.22, "totalRevenueExVAT": 539.98, "totalCost": 279.98400000000004, "totalQty": 38.0, "orderCount": 38, "margin": 259.996, "marginPct": 48.14919071076706}, {"YearMonth": "2018-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 768.02, "totalRevenueExVAT": 643.2800000000001, "totalCost": 274.652, "totalQty": 68.0, "orderCount": 64, "margin": 368.6280000000001, "marginPct": 57.30443974630022}, {"YearMonth": "2018-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 834.1, "totalRevenueExVAT": 695.02, "totalCost": 318.25, "totalQty": 38.0, "orderCount": 38, "margin": 376.77, "marginPct": 54.209950792782934}, {"YearMonth": "2018-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 815.8499999999999, "totalRevenueExVAT": 679.77, "totalCost": 287.217, "totalQty": 63.0, "orderCount": 59, "margin": 392.553, "marginPct": 57.747914735866544}, {"YearMonth": "2018-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 427.84999999999997, "totalRevenueExVAT": 356.46999999999997, "totalCost": 133.042, "totalQty": 43.0, "orderCount": 43, "margin": 223.42799999999997, "marginPct": 62.67792521109771}, {"YearMonth": "2018-05", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 620.08, "totalRevenueExVAT": 516.58, "totalCost": 156.88299999999998, "totalQty": 23.0, "orderCount": 22, "margin": 359.69700000000006, "marginPct": 69.63045414069458}, {"YearMonth": "2018-05", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2448.63, "totalRevenueExVAT": 2044.38, "totalCost": 645.996, "totalQty": 78.0, "orderCount": 68, "margin": 1398.384, "marginPct": 68.40137352155665}, {"YearMonth": "2018-05", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 5215.17, "totalRevenueExVAT": 4351.67, "totalCost": 1675.85, "totalQty": 277.0, "orderCount": 192, "margin": 2675.82, "marginPct": 61.48949713558244}, {"YearMonth": "2018-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1414.98, "totalRevenueExVAT": 1178.73, "totalCost": 522.144, "totalQty": 63.0, "orderCount": 61, "margin": 656.586, "marginPct": 55.70283270978087}, {"YearMonth": "2018-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 879.2, "totalRevenueExVAT": 732.2, "totalCost": 290.08, "totalQty": 70.0, "orderCount": 68, "margin": 442.12000000000006, "marginPct": 60.38240917782027}, {"YearMonth": "2018-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 765.5999999999999, "totalRevenueExVAT": 637.92, "totalCost": 234.43200000000002, "totalQty": 48.0, "orderCount": 41, "margin": 403.48799999999994, "marginPct": 63.25056433408578}, {"YearMonth": "2018-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1518.35, "totalRevenueExVAT": 1271.0, "totalCost": 308.1, "totalQty": 100.0, "orderCount": 84, "margin": 962.9, "marginPct": 75.75924468922108}, {"YearMonth": "2018-05", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2119.9, "totalRevenueExVAT": 1765.15, "totalCost": 470.84999999999997, "totalQty": 215.0, "orderCount": 181, "margin": 1294.3000000000002, "marginPct": 73.32521315468941}, {"YearMonth": "2018-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1177.05, "totalRevenueExVAT": 981.17, "totalCost": 342.78999999999996, "totalQty": 59.0, "orderCount": 52, "margin": 638.38, "marginPct": 65.06313890559231}, {"YearMonth": "2018-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3300.2, "totalRevenueExVAT": 2750.36, "totalCost": 1426.8000000000002, "totalQty": 116.0, "orderCount": 75, "margin": 1323.56, "marginPct": 48.123154787009696}, {"YearMonth": "2018-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1246.9199999999998, "totalRevenueExVAT": 1040.52, "totalCost": 417.94800000000004, "totalQty": 87.0, "orderCount": 81, "margin": 622.5719999999999, "marginPct": 59.83277591973243}, {"YearMonth": "2018-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 699.0100000000001, "totalRevenueExVAT": 583.77, "totalCost": 208.97400000000002, "totalQty": 87.0, "orderCount": 83, "margin": 374.79599999999994, "marginPct": 64.20268256333829}, {"YearMonth": "2018-05", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 394.78999999999996, "totalRevenueExVAT": 331.59, "totalCost": 120.918, "totalQty": 21.0, "orderCount": 21, "margin": 210.67199999999997, "marginPct": 63.53388220392653}, {"YearMonth": "2018-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 488.16, "totalRevenueExVAT": 406.8, "totalCost": 65.844, "totalQty": 36.0, "orderCount": 35, "margin": 340.956, "marginPct": 83.8141592920354}, {"YearMonth": "2018-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 816.2199999999999, "totalRevenueExVAT": 680.06, "totalCost": 135.346, "totalQty": 37.0, "orderCount": 36, "margin": 544.7139999999999, "marginPct": 80.09793253536452}, {"YearMonth": "2018-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1831.92, "totalRevenueExVAT": 1525.92, "totalCost": 443.90400000000005, "totalQty": 102.0, "orderCount": 82, "margin": 1082.016, "marginPct": 70.9090909090909}, {"YearMonth": "2018-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 888.53, "totalRevenueExVAT": 748.0, "totalCost": 484.40000000000003, "totalQty": 50.0, "orderCount": 46, "margin": 263.59999999999997, "marginPct": 35.24064171122994}, {"YearMonth": "2018-05", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 583.08, "totalRevenueExVAT": 485.90000000000003, "totalCost": 154.8, "totalQty": 43.0, "orderCount": 42, "margin": 331.1, "marginPct": 68.14159292035397}, {"YearMonth": "2018-05", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1880.13, "totalRevenueExVAT": 1576.38, "totalCost": 703.56, "totalQty": 78.0, "orderCount": 67, "margin": 872.8200000000002, "marginPct": 55.368629391390414}, {"YearMonth": "2018-05", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1198.5, "totalRevenueExVAT": 998.6999999999999, "totalCost": 709.8, "totalQty": 30.0, "orderCount": 25, "margin": 288.9, "marginPct": 28.92760588765395}, {"YearMonth": "2018-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 323.2, "totalRevenueExVAT": 269.20000000000005, "totalCost": 113.52000000000001, "totalQty": 20.0, "orderCount": 20, "margin": 155.68000000000004, "marginPct": 57.830609212481434}, {"YearMonth": "2018-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 483.84000000000003, "totalRevenueExVAT": 402.84, "totalCost": 153.252, "totalQty": 54.0, "orderCount": 51, "margin": 249.58799999999997, "marginPct": 61.95710455764074}, {"YearMonth": "2018-05", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 26168.88, "totalRevenueExVAT": 21855.69, "totalCost": 11698.832, "totalQty": 1327.0, "orderCount": 1099, "margin": 10156.857999999998, "marginPct": 46.472374013357616}, {"YearMonth": "2018-05", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4912.76, "totalRevenueExVAT": 4101.84, "totalCost": 2009.9859999999999, "totalQty": 422.0, "orderCount": 382, "margin": 2091.8540000000003, "marginPct": 50.997942386831284}, {"YearMonth": "2018-05", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 761.0799999999999, "totalRevenueExVAT": 633.88, "totalCost": 307.082, "totalQty": 53.0, "orderCount": 45, "margin": 326.798, "marginPct": 51.55518394648829}, {"YearMonth": "2018-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1507.23, "totalRevenueExVAT": 1262.01, "totalCost": 443.946, "totalQty": 69.0, "orderCount": 69, "margin": 818.064, "marginPct": 64.82230727173318}, {"YearMonth": "2018-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1290.3000000000002, "totalRevenueExVAT": 1075.42, "totalCost": 437.512, "totalQty": 34.0, "orderCount": 29, "margin": 637.9080000000001, "marginPct": 59.317104015175474}, {"YearMonth": "2018-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 751.0999999999999, "totalRevenueExVAT": 625.8199999999999, "totalCost": 207.17600000000002, "totalQty": 58.0, "orderCount": 54, "margin": 418.6439999999999, "marginPct": 66.89527340129749}, {"YearMonth": "2018-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 678.9, "totalRevenueExVAT": 566.0600000000001, "totalCost": 119.908, "totalQty": 62.0, "orderCount": 61, "margin": 446.15200000000004, "marginPct": 78.8170865279299}, {"YearMonth": "2018-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 583.11, "totalRevenueExVAT": 488.88, "totalCost": 88.42399999999999, "totalQty": 28.0, "orderCount": 28, "margin": 400.456, "marginPct": 81.91294387170677}, {"YearMonth": "2018-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 610.3, "totalRevenueExVAT": 508.64000000000004, "totalCost": 173.672, "totalQty": 34.0, "orderCount": 30, "margin": 334.9680000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2018-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 417.9, "totalRevenueExVAT": 348.17999999999995, "totalCost": 107.26799999999999, "totalQty": 42.0, "orderCount": 39, "margin": 240.91199999999998, "marginPct": 69.19179734620025}, {"YearMonth": "2018-06", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 554.1600000000001, "totalRevenueExVAT": 466.72, "totalCost": 235.776, "totalQty": 32.0, "orderCount": 29, "margin": 230.94400000000002, "marginPct": 49.482344874871444}, {"YearMonth": "2018-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 722.77, "totalRevenueExVAT": 603.73, "totalCost": 254.457, "totalQty": 63.0, "orderCount": 61, "margin": 349.273, "marginPct": 57.85251685356037}, {"YearMonth": "2018-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 929.89, "totalRevenueExVAT": 778.31, "totalCost": 326.625, "totalQty": 39.0, "orderCount": 37, "margin": 451.68499999999995, "marginPct": 58.03407382662436}, {"YearMonth": "2018-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1008.8799999999999, "totalRevenueExVAT": 844.4, "totalCost": 346.48400000000004, "totalQty": 76.0, "orderCount": 71, "margin": 497.91599999999994, "marginPct": 58.96684036001895}, {"YearMonth": "2018-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 507.45, "totalRevenueExVAT": 422.78999999999996, "totalCost": 157.79399999999998, "totalQty": 51.0, "orderCount": 51, "margin": 264.996, "marginPct": 62.67792521109771}, {"YearMonth": "2018-06", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1310.58, "totalRevenueExVAT": 1107.33, "totalCost": 327.408, "totalQty": 48.0, "orderCount": 44, "margin": 779.9219999999999, "marginPct": 70.43266234997697}, {"YearMonth": "2018-06", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2161.61, "totalRevenueExVAT": 1801.19, "totalCost": 530.048, "totalQty": 64.0, "orderCount": 57, "margin": 1271.142, "marginPct": 70.57234383935065}, {"YearMonth": "2018-06", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3390.25, "totalRevenueExVAT": 2838.58, "totalCost": 1046.6499999999999, "totalQty": 173.0, "orderCount": 124, "margin": 1791.93, "marginPct": 63.12769060586631}, {"YearMonth": "2018-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1329.01, "totalRevenueExVAT": 1113.73, "totalCost": 455.84000000000003, "totalQty": 55.0, "orderCount": 52, "margin": 657.89, "marginPct": 59.070869959505444}, {"YearMonth": "2018-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 894.44, "totalRevenueExVAT": 745.0600000000001, "totalCost": 277.648, "totalQty": 67.0, "orderCount": 60, "margin": 467.41200000000003, "marginPct": 62.73481330362656}, {"YearMonth": "2018-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 765.5999999999999, "totalRevenueExVAT": 637.92, "totalCost": 234.43200000000002, "totalQty": 48.0, "orderCount": 40, "margin": 403.48799999999994, "marginPct": 63.25056433408578}, {"YearMonth": "2018-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2164.2, "totalRevenueExVAT": 1811.93, "totalCost": 409.77299999999997, "totalQty": 133.0, "orderCount": 111, "margin": 1402.1570000000002, "marginPct": 77.3847223678619}, {"YearMonth": "2018-06", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1704.7399999999998, "totalRevenueExVAT": 1421.33, "totalCost": 350.4, "totalQty": 160.0, "orderCount": 133, "margin": 1070.9299999999998, "marginPct": 75.34703411593367}, {"YearMonth": "2018-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1097.25, "totalRevenueExVAT": 914.65, "totalCost": 319.54999999999995, "totalQty": 55.0, "orderCount": 49, "margin": 595.1, "marginPct": 65.06313890559231}, {"YearMonth": "2018-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 4101.95, "totalRevenueExVAT": 3426.21, "totalCost": 1808.1000000000001, "totalQty": 147.0, "orderCount": 101, "margin": 1618.11, "marginPct": 47.22740287372928}, {"YearMonth": "2018-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1128.29, "totalRevenueExVAT": 944.2500000000001, "totalCost": 360.3, "totalQty": 75.0, "orderCount": 68, "margin": 583.95, "marginPct": 61.842732327243844}, {"YearMonth": "2018-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 737.2, "totalRevenueExVAT": 614.48, "totalCost": 211.376, "totalQty": 88.0, "orderCount": 85, "margin": 403.10400000000004, "marginPct": 65.60083322484051}, {"YearMonth": "2018-06", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 568.5, "totalRevenueExVAT": 473.7, "totalCost": 172.74, "totalQty": 30.0, "orderCount": 28, "margin": 300.96, "marginPct": 63.53388220392653}, {"YearMonth": "2018-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 359.98, "totalRevenueExVAT": 305.82, "totalCost": 43.896, "totalQty": 24.0, "orderCount": 24, "margin": 261.924, "marginPct": 85.64645870119678}, {"YearMonth": "2018-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 641.8199999999999, "totalRevenueExVAT": 541.06, "totalCost": 106.082, "totalQty": 29.0, "orderCount": 28, "margin": 434.97799999999995, "marginPct": 80.39367168151406}, {"YearMonth": "2018-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1548.34, "totalRevenueExVAT": 1290.18, "totalCost": 356.86400000000003, "totalQty": 82.0, "orderCount": 71, "margin": 933.316, "marginPct": 72.33998356818428}, {"YearMonth": "2018-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 621.88, "totalRevenueExVAT": 522.69, "totalCost": 377.83200000000005, "totalQty": 39.0, "orderCount": 33, "margin": 144.858, "marginPct": 27.713941341904373}, {"YearMonth": "2018-06", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 694.9300000000001, "totalRevenueExVAT": 580.9, "totalCost": 187.20000000000002, "totalQty": 52.0, "orderCount": 52, "margin": 393.69999999999993, "marginPct": 67.77414357032191}, {"YearMonth": "2018-06", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1786.91, "totalRevenueExVAT": 1502.45, "totalCost": 631.4, "totalQty": 70.0, "orderCount": 58, "margin": 871.0500000000001, "marginPct": 57.97530699856901}, {"YearMonth": "2018-06", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1005.48, "totalRevenueExVAT": 848.88, "totalCost": 638.82, "totalQty": 27.0, "orderCount": 25, "margin": 210.05999999999995, "marginPct": 24.745547073791343}, {"YearMonth": "2018-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 841.87, "totalRevenueExVAT": 703.63, "totalCost": 300.82800000000003, "totalQty": 53.0, "orderCount": 52, "margin": 402.80199999999996, "marginPct": 57.246280005116326}, {"YearMonth": "2018-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 757.0600000000001, "totalRevenueExVAT": 631.82, "totalCost": 241.23000000000002, "totalQty": 85.0, "orderCount": 82, "margin": 390.59000000000003, "marginPct": 61.81982210123136}, {"YearMonth": "2018-06", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 2113.04, "totalRevenueExVAT": 1763.24, "totalCost": 828.7040000000001, "totalQty": 94.0, "orderCount": 80, "margin": 934.536, "marginPct": 53.00106621900592}, {"YearMonth": "2018-06", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 470.23, "totalRevenueExVAT": 393.58, "totalCost": 176.231, "totalQty": 37.0, "orderCount": 33, "margin": 217.349, "marginPct": 55.22358859698156}, {"YearMonth": "2018-06", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 20035.670000000002, "totalRevenueExVAT": 16721.12, "totalCost": 8630.864000000001, "totalQty": 979.0, "orderCount": 825, "margin": 8090.255999999998, "marginPct": 48.38345756743566}, {"YearMonth": "2018-06", "Description": "Turmeric with Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4651.2, "totalRevenueExVAT": 3882.26, "totalCost": 1843.281, "totalQty": 387.0, "orderCount": 366, "margin": 2038.9790000000003, "marginPct": 52.520413367471534}, {"YearMonth": "2018-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 511.32, "totalRevenueExVAT": 428.0, "totalCost": 214.378, "totalQty": 37.0, "orderCount": 34, "margin": 213.622, "marginPct": 49.91168224299066}, {"YearMonth": "2018-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1458.09, "totalRevenueExVAT": 1218.25, "totalCost": 418.21000000000004, "totalQty": 65.0, "orderCount": 60, "margin": 800.04, "marginPct": 65.67124974348451}, {"YearMonth": "2018-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1438.3300000000002, "totalRevenueExVAT": 1204.06, "totalCost": 476.116, "totalQty": 37.0, "orderCount": 32, "margin": 727.944, "marginPct": 60.457452286430915}, {"YearMonth": "2018-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 799.79, "totalRevenueExVAT": 668.27, "totalCost": 217.892, "totalQty": 61.0, "orderCount": 59, "margin": 450.378, "marginPct": 67.3946159486435}, {"YearMonth": "2018-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 633.28, "totalRevenueExVAT": 529.5400000000001, "totalCost": 112.172, "totalQty": 58.0, "orderCount": 55, "margin": 417.36800000000005, "marginPct": 78.8170865279299}, {"YearMonth": "2018-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 858.9499999999999, "totalRevenueExVAT": 715.86, "totalCost": 129.478, "totalQty": 41.0, "orderCount": 36, "margin": 586.3820000000001, "marginPct": 81.91294387170677}, {"YearMonth": "2018-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 448.75, "totalRevenueExVAT": 374.0, "totalCost": 127.69999999999999, "totalQty": 25.0, "orderCount": 25, "margin": 246.3, "marginPct": 65.85561497326204}, {"YearMonth": "2018-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 368.15, "totalRevenueExVAT": 306.72999999999996, "totalCost": 94.49799999999999, "totalQty": 37.0, "orderCount": 35, "margin": 212.23199999999997, "marginPct": 69.19179734620025}, {"YearMonth": "2018-07", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 715.4000000000001, "totalRevenueExVAT": 598.4000000000001, "totalCost": 294.72, "totalQty": 40.0, "orderCount": 39, "margin": 303.68000000000006, "marginPct": 50.748663101604286}, {"YearMonth": "2018-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 785.08, "totalRevenueExVAT": 660.2800000000001, "totalCost": 274.652, "totalQty": 68.0, "orderCount": 68, "margin": 385.6280000000001, "marginPct": 58.403707518022664}, {"YearMonth": "2018-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1222.55, "totalRevenueExVAT": 1018.7099999999999, "totalCost": 410.375, "totalQty": 49.0, "orderCount": 44, "margin": 608.3349999999999, "marginPct": 59.71620971620971}, {"YearMonth": "2018-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 832.36, "totalRevenueExVAT": 697.8000000000001, "totalCost": 273.54, "totalQty": 60.0, "orderCount": 60, "margin": 424.26000000000005, "marginPct": 60.799656061908856}, {"YearMonth": "2018-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 485.89, "totalRevenueExVAT": 406.21, "totalCost": 151.606, "totalQty": 49.0, "orderCount": 49, "margin": 254.60399999999998, "marginPct": 62.67792521109771}, {"YearMonth": "2018-07", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2892.79, "totalRevenueExVAT": 2413.84, "totalCost": 709.384, "totalQty": 104.0, "orderCount": 74, "margin": 1704.4560000000001, "marginPct": 70.61180525635503}, {"YearMonth": "2018-07", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1863.41, "totalRevenueExVAT": 1557.92, "totalCost": 430.664, "totalQty": 52.0, "orderCount": 45, "margin": 1127.256, "marginPct": 72.35647530040053}, {"YearMonth": "2018-07", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 4137.639999999999, "totalRevenueExVAT": 3474.54, "totalCost": 1203.95, "totalQty": 199.0, "orderCount": 148, "margin": 2270.59, "marginPct": 65.34936998854525}, {"YearMonth": "2018-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1297.5, "totalRevenueExVAT": 1081.5, "totalCost": 414.40000000000003, "totalQty": 50.0, "orderCount": 46, "margin": 667.0999999999999, "marginPct": 61.682847896440116}, {"YearMonth": "2018-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 621.35, "totalRevenueExVAT": 517.7199999999999, "totalCost": 178.192, "totalQty": 43.0, "orderCount": 42, "margin": 339.5279999999999, "marginPct": 65.5813953488372}, {"YearMonth": "2018-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 653.9499999999999, "totalRevenueExVAT": 544.89, "totalCost": 200.24400000000003, "totalQty": 41.0, "orderCount": 37, "margin": 344.64599999999996, "marginPct": 63.250564334085766}, {"YearMonth": "2018-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2217.13, "totalRevenueExVAT": 1852.7900000000002, "totalCost": 382.044, "totalQty": 124.0, "orderCount": 104, "margin": 1470.746, "marginPct": 79.38007005650937}, {"YearMonth": "2018-07", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1597.27, "totalRevenueExVAT": 1335.6, "totalCost": 306.59999999999997, "totalQty": 140.0, "orderCount": 109, "margin": 1029.0, "marginPct": 77.04402515723271}, {"YearMonth": "2018-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1040.75, "totalRevenueExVAT": 881.39, "totalCost": 307.93, "totalQty": 53.0, "orderCount": 46, "margin": 573.46, "marginPct": 65.06313890559231}, {"YearMonth": "2018-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3590.71, "totalRevenueExVAT": 2992.04, "totalCost": 1611.3000000000002, "totalQty": 131.0, "orderCount": 91, "margin": 1380.7399999999998, "marginPct": 46.147110332749556}, {"YearMonth": "2018-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 997.9699999999999, "totalRevenueExVAT": 836.3100000000001, "totalCost": 293.04400000000004, "totalQty": 61.0, "orderCount": 52, "margin": 543.2660000000001, "marginPct": 64.95988329686361}, {"YearMonth": "2018-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 626.5, "totalRevenueExVAT": 522.2, "totalCost": 168.14000000000001, "totalQty": 70.0, "orderCount": 68, "margin": 354.06000000000006, "marginPct": 67.80160857908848}, {"YearMonth": "2018-07", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 862.2199999999999, "totalRevenueExVAT": 726.3399999999999, "totalCost": 264.868, "totalQty": 46.0, "orderCount": 35, "margin": 461.4719999999999, "marginPct": 63.53388220392653}, {"YearMonth": "2018-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 502.59999999999997, "totalRevenueExVAT": 418.6, "totalCost": 64.015, "totalQty": 35.0, "orderCount": 35, "margin": 354.58500000000004, "marginPct": 84.70735785953177}, {"YearMonth": "2018-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 729.11, "totalRevenueExVAT": 610.64, "totalCost": 124.372, "totalQty": 34.0, "orderCount": 30, "margin": 486.268, "marginPct": 79.6325167037862}, {"YearMonth": "2018-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 897.75, "totalRevenueExVAT": 748.3499999999999, "totalCost": 195.84, "totalQty": 45.0, "orderCount": 39, "margin": 552.5099999999999, "marginPct": 73.83042693926637}, {"YearMonth": "2018-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 778.26, "totalRevenueExVAT": 648.21, "totalCost": 494.088, "totalQty": 51.0, "orderCount": 47, "margin": 154.122, "marginPct": 23.776553894571204}, {"YearMonth": "2018-07", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 221.02, "totalRevenueExVAT": 185.98, "totalCost": 61.2, "totalQty": 17.0, "orderCount": 17, "margin": 124.77999999999999, "marginPct": 67.09323583180988}, {"YearMonth": "2018-07", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1747.26, "totalRevenueExVAT": 1459.9, "totalCost": 586.3, "totalQty": 65.0, "orderCount": 55, "margin": 873.6000000000001, "marginPct": 59.83971504897596}, {"YearMonth": "2018-07", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 928.96, "totalRevenueExVAT": 778.96, "totalCost": 615.16, "totalQty": 26.0, "orderCount": 23, "margin": 163.80000000000007, "marginPct": 21.028037383177576}, {"YearMonth": "2018-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 674.24, "totalRevenueExVAT": 562.01, "totalCost": 244.068, "totalQty": 43.0, "orderCount": 42, "margin": 317.942, "marginPct": 56.57230298393267}, {"YearMonth": "2018-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 700.0400000000001, "totalRevenueExVAT": 584.6, "totalCost": 224.202, "totalQty": 79.0, "orderCount": 75, "margin": 360.398, "marginPct": 61.64864864864865}, {"YearMonth": "2018-07", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 23176.94, "totalRevenueExVAT": 19343.24, "totalCost": 8763.104000000001, "totalQty": 994.0, "orderCount": 821, "margin": 10580.136, "marginPct": 54.69681397738951}, {"YearMonth": "2018-07", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5083.429999999999, "totalRevenueExVAT": 4239.299999999999, "totalCost": 1857.57, "totalQty": 390.0, "orderCount": 358, "margin": 2381.7299999999996, "marginPct": 56.18215271389144}, {"YearMonth": "2018-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 501.72, "totalRevenueExVAT": 418.1, "totalCost": 214.378, "totalQty": 37.0, "orderCount": 30, "margin": 203.72200000000004, "marginPct": 48.72566371681417}, {"YearMonth": "2018-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1350.23, "totalRevenueExVAT": 1128.6699999999998, "totalCost": 379.606, "totalQty": 59.0, "orderCount": 50, "margin": 749.0639999999999, "marginPct": 66.36696288552012}, {"YearMonth": "2018-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1301.8500000000001, "totalRevenueExVAT": 1085.0400000000002, "totalCost": 424.644, "totalQty": 33.0, "orderCount": 31, "margin": 660.3960000000002, "marginPct": 60.86374695863748}, {"YearMonth": "2018-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 804.76, "totalRevenueExVAT": 672.6, "totalCost": 214.32, "totalQty": 60.0, "orderCount": 59, "margin": 458.28000000000003, "marginPct": 68.13559322033899}, {"YearMonth": "2018-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 861.41, "totalRevenueExVAT": 721.2700000000001, "totalCost": 152.786, "totalQty": 79.0, "orderCount": 73, "margin": 568.4840000000002, "marginPct": 78.81708652792992}, {"YearMonth": "2018-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 789.12, "totalRevenueExVAT": 663.48, "totalCost": 120.00399999999999, "totalQty": 38.0, "orderCount": 38, "margin": 543.476, "marginPct": 81.91294387170676}, {"YearMonth": "2018-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 783.8199999999999, "totalRevenueExVAT": 658.24, "totalCost": 224.75199999999998, "totalQty": 44.0, "orderCount": 39, "margin": 433.48800000000006, "marginPct": 65.85561497326205}, {"YearMonth": "2018-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 439.45, "totalRevenueExVAT": 373.04999999999995, "totalCost": 114.92999999999999, "totalQty": 45.0, "orderCount": 37, "margin": 258.11999999999995, "marginPct": 69.19179734620023}, {"YearMonth": "2018-08", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 930.9200000000001, "totalRevenueExVAT": 777.9200000000001, "totalCost": 383.136, "totalQty": 52.0, "orderCount": 50, "margin": 394.78400000000005, "marginPct": 50.74866310160427}, {"YearMonth": "2018-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 907.53, "totalRevenueExVAT": 757.3800000000001, "totalCost": 315.042, "totalQty": 78.0, "orderCount": 77, "margin": 442.33800000000014, "marginPct": 58.403707518022664}, {"YearMonth": "2018-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1692.44, "totalRevenueExVAT": 1413.72, "totalCost": 569.5, "totalQty": 68.0, "orderCount": 66, "margin": 844.22, "marginPct": 59.71620971620971}, {"YearMonth": "2018-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 916.06, "totalRevenueExVAT": 767.58, "totalCost": 300.894, "totalQty": 66.0, "orderCount": 65, "margin": 466.68600000000004, "marginPct": 60.799656061908856}, {"YearMonth": "2018-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 567.15, "totalRevenueExVAT": 472.53, "totalCost": 176.358, "totalQty": 57.0, "orderCount": 56, "margin": 296.17199999999997, "marginPct": 62.67792521109771}, {"YearMonth": "2018-08", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2841.72, "totalRevenueExVAT": 2367.42, "totalCost": 695.742, "totalQty": 102.0, "orderCount": 86, "margin": 1671.678, "marginPct": 70.61180525635503}, {"YearMonth": "2018-08", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 3481.1600000000003, "totalRevenueExVAT": 2906.12, "totalCost": 803.354, "totalQty": 97.0, "orderCount": 81, "margin": 2102.7659999999996, "marginPct": 72.35647530040052}, {"YearMonth": "2018-08", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 4123.66, "totalRevenueExVAT": 3439.6200000000003, "totalCost": 1191.85, "totalQty": 197.0, "orderCount": 163, "margin": 2247.7700000000004, "marginPct": 65.34936998854525}, {"YearMonth": "2018-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1323.45, "totalRevenueExVAT": 1103.1299999999999, "totalCost": 422.688, "totalQty": 51.0, "orderCount": 50, "margin": 680.4419999999999, "marginPct": 61.68284789644013}, {"YearMonth": "2018-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1054.85, "totalRevenueExVAT": 878.92, "totalCost": 302.512, "totalQty": 73.0, "orderCount": 70, "margin": 576.4079999999999, "marginPct": 65.5813953488372}, {"YearMonth": "2018-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 988.9, "totalRevenueExVAT": 823.9799999999999, "totalCost": 302.808, "totalQty": 62.0, "orderCount": 51, "margin": 521.1719999999999, "marginPct": 63.25056433408578}, {"YearMonth": "2018-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2889.95, "totalRevenueExVAT": 2408.56, "totalCost": 496.041, "totalQty": 161.0, "orderCount": 132, "margin": 1912.519, "marginPct": 79.40508021390374}, {"YearMonth": "2018-08", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1889.2499999999998, "totalRevenueExVAT": 1574.1, "totalCost": 361.35, "totalQty": 165.0, "orderCount": 133, "margin": 1212.75, "marginPct": 77.04402515723271}, {"YearMonth": "2018-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1316.7, "totalRevenueExVAT": 1097.58, "totalCost": 383.46, "totalQty": 66.0, "orderCount": 61, "margin": 714.1199999999999, "marginPct": 65.0631389055923}, {"YearMonth": "2018-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 5294.69, "totalRevenueExVAT": 4430.96, "totalCost": 2386.2000000000003, "totalQty": 194.0, "orderCount": 138, "margin": 2044.7599999999998, "marginPct": 46.147110332749556}, {"YearMonth": "2018-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1628.55, "totalRevenueExVAT": 1357.2900000000002, "totalCost": 475.596, "totalQty": 99.0, "orderCount": 83, "margin": 881.6940000000002, "marginPct": 64.95988329686361}, {"YearMonth": "2018-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1074.0, "totalRevenueExVAT": 895.2, "totalCost": 288.24, "totalQty": 120.0, "orderCount": 116, "margin": 606.96, "marginPct": 67.80160857908847}, {"YearMonth": "2018-08", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1118.05, "totalRevenueExVAT": 931.6099999999999, "totalCost": 339.722, "totalQty": 59.0, "orderCount": 48, "margin": 591.8879999999999, "marginPct": 63.53388220392654}, {"YearMonth": "2018-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 686.88, "totalRevenueExVAT": 574.08, "totalCost": 87.792, "totalQty": 48.0, "orderCount": 44, "margin": 486.288, "marginPct": 84.70735785953177}, {"YearMonth": "2018-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 642.91, "totalRevenueExVAT": 538.8000000000001, "totalCost": 109.74, "totalQty": 30.0, "orderCount": 29, "margin": 429.06000000000006, "marginPct": 79.6325167037862}, {"YearMonth": "2018-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1775.55, "totalRevenueExVAT": 1480.07, "totalCost": 387.32800000000003, "totalQty": 89.0, "orderCount": 77, "margin": 1092.742, "marginPct": 73.83042693926639}, {"YearMonth": "2018-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1007.16, "totalRevenueExVAT": 838.86, "totalCost": 639.408, "totalQty": 66.0, "orderCount": 62, "margin": 199.452, "marginPct": 23.776553894571204}, {"YearMonth": "2018-08", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 525.2, "totalRevenueExVAT": 437.59999999999997, "totalCost": 144.0, "totalQty": 40.0, "orderCount": 40, "margin": 293.59999999999997, "marginPct": 67.09323583180988}, {"YearMonth": "2018-08", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1428.35, "totalRevenueExVAT": 1190.38, "totalCost": 478.06, "totalQty": 53.0, "orderCount": 50, "margin": 712.3200000000002, "marginPct": 59.83971504897596}, {"YearMonth": "2018-08", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1690.1200000000001, "totalRevenueExVAT": 1408.1200000000001, "totalCost": 1112.02, "totalQty": 47.0, "orderCount": 38, "margin": 296.10000000000014, "marginPct": 21.028037383177576}, {"YearMonth": "2018-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1097.6, "totalRevenueExVAT": 914.9, "totalCost": 397.32, "totalQty": 70.0, "orderCount": 69, "margin": 517.5799999999999, "marginPct": 56.572302983932666}, {"YearMonth": "2018-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 769.6, "totalRevenueExVAT": 643.8000000000001, "totalCost": 246.906, "totalQty": 87.0, "orderCount": 83, "margin": 396.89400000000006, "marginPct": 61.64864864864865}, {"YearMonth": "2018-08", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 28756.12, "totalRevenueExVAT": 23974.72, "totalCost": 10861.312000000002, "totalQty": 1232.0, "orderCount": 1022, "margin": 13113.408, "marginPct": 54.69681397738951}, {"YearMonth": "2018-08", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5229.04, "totalRevenueExVAT": 4358.87, "totalCost": 1909.963, "totalQty": 401.0, "orderCount": 385, "margin": 2448.907, "marginPct": 56.182152713891455}, {"YearMonth": "2018-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1125.48, "totalRevenueExVAT": 937.9000000000001, "totalCost": 480.902, "totalQty": 83.0, "orderCount": 69, "margin": 456.9980000000001, "marginPct": 48.72566371681417}, {"YearMonth": "2018-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1813.05, "totalRevenueExVAT": 1511.27, "totalCost": 508.286, "totalQty": 79.0, "orderCount": 79, "margin": 1002.9839999999999, "marginPct": 66.36696288552012}, {"YearMonth": "2018-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1972.5000000000002, "totalRevenueExVAT": 1644.0, "totalCost": 643.4, "totalQty": 50.0, "orderCount": 47, "margin": 1000.6, "marginPct": 60.86374695863746}, {"YearMonth": "2018-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1288.96, "totalRevenueExVAT": 1076.16, "totalCost": 342.91200000000003, "totalQty": 96.0, "orderCount": 94, "margin": 733.248, "marginPct": 68.13559322033899}, {"YearMonth": "2018-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1341.3899999999999, "totalRevenueExVAT": 1122.99, "totalCost": 237.882, "totalQty": 123.0, "orderCount": 119, "margin": 885.108, "marginPct": 78.81708652792989}, {"YearMonth": "2018-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 817.05, "totalRevenueExVAT": 680.94, "totalCost": 123.16199999999999, "totalQty": 39.0, "orderCount": 36, "margin": 557.778, "marginPct": 81.91294387170676}, {"YearMonth": "2018-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 933.4, "totalRevenueExVAT": 777.9200000000001, "totalCost": 265.616, "totalQty": 52.0, "orderCount": 49, "margin": 512.3040000000001, "marginPct": 65.85561497326204}, {"YearMonth": "2018-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 515.74, "totalRevenueExVAT": 431.0799999999999, "totalCost": 132.808, "totalQty": 52.0, "orderCount": 52, "margin": 298.27199999999993, "marginPct": 69.19179734620023}, {"YearMonth": "2018-09", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1140.44, "totalRevenueExVAT": 957.44, "totalCost": 471.552, "totalQty": 64.0, "orderCount": 55, "margin": 485.88800000000003, "marginPct": 50.74866310160427}, {"YearMonth": "2018-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 682.09, "totalRevenueExVAT": 572.8900000000001, "totalCost": 238.301, "totalQty": 59.0, "orderCount": 58, "margin": 334.5890000000001, "marginPct": 58.403707518022664}, {"YearMonth": "2018-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1168.49, "totalRevenueExVAT": 977.13, "totalCost": 393.625, "totalQty": 47.0, "orderCount": 41, "margin": 583.505, "marginPct": 59.71620971620971}, {"YearMonth": "2018-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 892.8, "totalRevenueExVAT": 744.32, "totalCost": 291.776, "totalQty": 64.0, "orderCount": 62, "margin": 452.54400000000004, "marginPct": 60.799656061908856}, {"YearMonth": "2018-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 388.04999999999995, "totalRevenueExVAT": 323.30999999999995, "totalCost": 120.666, "totalQty": 39.0, "orderCount": 38, "margin": 202.64399999999995, "marginPct": 62.67792521109771}, {"YearMonth": "2018-09", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1778.3899999999999, "totalRevenueExVAT": 1485.44, "totalCost": 436.544, "totalQty": 64.0, "orderCount": 57, "margin": 1048.8960000000002, "marginPct": 70.61180525635503}, {"YearMonth": "2018-09", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1869.4, "totalRevenueExVAT": 1557.92, "totalCost": 430.664, "totalQty": 52.0, "orderCount": 42, "margin": 1127.256, "marginPct": 72.35647530040053}, {"YearMonth": "2018-09", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3243.7599999999998, "totalRevenueExVAT": 2706.3, "totalCost": 937.75, "totalQty": 155.0, "orderCount": 125, "margin": 1768.5500000000002, "marginPct": 65.34936998854525}, {"YearMonth": "2018-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1557.0, "totalRevenueExVAT": 1297.8, "totalCost": 497.28000000000003, "totalQty": 60.0, "orderCount": 58, "margin": 800.52, "marginPct": 61.68284789644013}, {"YearMonth": "2018-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 691.1899999999999, "totalRevenueExVAT": 577.92, "totalCost": 198.912, "totalQty": 48.0, "orderCount": 46, "margin": 379.0079999999999, "marginPct": 65.5813953488372}, {"YearMonth": "2018-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 685.85, "totalRevenueExVAT": 571.4699999999999, "totalCost": 210.012, "totalQty": 43.0, "orderCount": 38, "margin": 361.4579999999999, "marginPct": 63.250564334085766}, {"YearMonth": "2018-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1965.53, "totalRevenueExVAT": 1645.6000000000001, "totalCost": 338.91, "totalQty": 110.0, "orderCount": 98, "margin": 1306.69, "marginPct": 79.40508021390374}, {"YearMonth": "2018-09", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2162.1299999999997, "totalRevenueExVAT": 1812.6, "totalCost": 416.09999999999997, "totalQty": 190.0, "orderCount": 160, "margin": 1396.5, "marginPct": 77.04402515723271}, {"YearMonth": "2018-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1030.76, "totalRevenueExVAT": 864.76, "totalCost": 302.12, "totalQty": 52.0, "orderCount": 46, "margin": 562.64, "marginPct": 65.0631389055923}, {"YearMonth": "2018-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 4321.64, "totalRevenueExVAT": 3608.72, "totalCost": 1943.4, "totalQty": 158.0, "orderCount": 113, "margin": 1665.3199999999997, "marginPct": 46.147110332749556}, {"YearMonth": "2018-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 945.88, "totalRevenueExVAT": 795.1800000000001, "totalCost": 278.632, "totalQty": 58.0, "orderCount": 55, "margin": 516.548, "marginPct": 64.9598832968636}, {"YearMonth": "2018-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 733.9, "totalRevenueExVAT": 611.72, "totalCost": 196.964, "totalQty": 82.0, "orderCount": 77, "margin": 414.75600000000003, "marginPct": 67.80160857908847}, {"YearMonth": "2018-09", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 732.73, "totalRevenueExVAT": 615.81, "totalCost": 224.562, "totalQty": 39.0, "orderCount": 34, "margin": 391.24799999999993, "marginPct": 63.53388220392653}, {"YearMonth": "2018-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 473.88, "totalRevenueExVAT": 394.68, "totalCost": 60.357, "totalQty": 33.0, "orderCount": 33, "margin": 334.323, "marginPct": 84.70735785953177}, {"YearMonth": "2018-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 707.5600000000001, "totalRevenueExVAT": 592.6800000000001, "totalCost": 120.714, "totalQty": 33.0, "orderCount": 32, "margin": 471.96600000000007, "marginPct": 79.6325167037862}, {"YearMonth": "2018-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1097.25, "totalRevenueExVAT": 914.65, "totalCost": 239.36, "totalQty": 55.0, "orderCount": 47, "margin": 675.29, "marginPct": 73.83042693926637}, {"YearMonth": "2018-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 925.76, "totalRevenueExVAT": 775.3100000000001, "totalCost": 590.9680000000001, "totalQty": 61.0, "orderCount": 52, "margin": 184.34199999999998, "marginPct": 23.7765538945712}, {"YearMonth": "2018-09", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 312.93, "totalRevenueExVAT": 262.56, "totalCost": 86.4, "totalQty": 24.0, "orderCount": 24, "margin": 176.16, "marginPct": 67.09323583180988}, {"YearMonth": "2018-09", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1100.46, "totalRevenueExVAT": 920.86, "totalCost": 369.82, "totalQty": 41.0, "orderCount": 37, "margin": 551.04, "marginPct": 59.83971504897595}, {"YearMonth": "2018-09", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 899.0, "totalRevenueExVAT": 749.0, "totalCost": 591.5, "totalQty": 25.0, "orderCount": 25, "margin": 157.5, "marginPct": 21.02803738317757}, {"YearMonth": "2018-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 893.76, "totalRevenueExVAT": 744.99, "totalCost": 323.532, "totalQty": 57.0, "orderCount": 57, "margin": 421.458, "marginPct": 56.57230298393267}, {"YearMonth": "2018-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 646.7600000000001, "totalRevenueExVAT": 540.2, "totalCost": 207.174, "totalQty": 73.0, "orderCount": 73, "margin": 333.02600000000007, "marginPct": 61.64864864864865}, {"YearMonth": "2018-09", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 20074.0, "totalRevenueExVAT": 16735.600000000002, "totalCost": 7581.76, "totalQty": 860.0, "orderCount": 734, "margin": 9153.840000000002, "marginPct": 54.696813977389525}, {"YearMonth": "2018-09", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4561.83, "totalRevenueExVAT": 3804.4999999999995, "totalCost": 1667.05, "totalQty": 350.0, "orderCount": 331, "margin": 2137.45, "marginPct": 56.18215271389144}, {"YearMonth": "2018-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 772.9200000000001, "totalRevenueExVAT": 644.1, "totalCost": 330.258, "totalQty": 57.0, "orderCount": 50, "margin": 313.84200000000004, "marginPct": 48.72566371681417}, {"YearMonth": "2018-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1377.0, "totalRevenueExVAT": 1147.8, "totalCost": 386.04, "totalQty": 60.0, "orderCount": 58, "margin": 761.76, "marginPct": 66.36696288552014}, {"YearMonth": "2018-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1531.98, "totalRevenueExVAT": 1282.3200000000002, "totalCost": 501.85200000000003, "totalQty": 39.0, "orderCount": 37, "margin": 780.4680000000001, "marginPct": 60.86374695863746}, {"YearMonth": "2018-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 562.66, "totalRevenueExVAT": 470.82000000000005, "totalCost": 150.024, "totalQty": 42.0, "orderCount": 42, "margin": 320.79600000000005, "marginPct": 68.13559322033899}, {"YearMonth": "2018-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 600.43, "totalRevenueExVAT": 502.15000000000003, "totalCost": 106.36999999999999, "totalQty": 55.0, "orderCount": 54, "margin": 395.78000000000003, "marginPct": 78.8170865279299}, {"YearMonth": "2018-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 478.35999999999996, "totalRevenueExVAT": 401.58000000000004, "totalCost": 72.634, "totalQty": 23.0, "orderCount": 22, "margin": 328.946, "marginPct": 81.91294387170676}, {"YearMonth": "2018-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 700.05, "totalRevenueExVAT": 583.44, "totalCost": 199.212, "totalQty": 39.0, "orderCount": 31, "margin": 384.22800000000007, "marginPct": 65.85561497326204}, {"YearMonth": "2018-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 326.69, "totalRevenueExVAT": 273.57, "totalCost": 84.282, "totalQty": 33.0, "orderCount": 32, "margin": 189.288, "marginPct": 69.19179734620025}, {"YearMonth": "2018-10", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1795.96, "totalRevenueExVAT": 1510.96, "totalCost": 744.168, "totalQty": 101.0, "orderCount": 85, "margin": 766.792, "marginPct": 50.74866310160427}, {"YearMonth": "2018-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 625.74, "totalRevenueExVAT": 524.34, "totalCost": 218.106, "totalQty": 54.0, "orderCount": 53, "margin": 306.23400000000004, "marginPct": 58.403707518022664}, {"YearMonth": "2018-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1397.2, "totalRevenueExVAT": 1164.24, "totalCost": 469.0, "totalQty": 56.0, "orderCount": 51, "margin": 695.24, "marginPct": 59.71620971620971}, {"YearMonth": "2018-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 878.8499999999999, "totalRevenueExVAT": 732.69, "totalCost": 287.217, "totalQty": 63.0, "orderCount": 61, "margin": 445.47300000000007, "marginPct": 60.799656061908856}, {"YearMonth": "2018-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 626.8499999999999, "totalRevenueExVAT": 522.27, "totalCost": 194.922, "totalQty": 63.0, "orderCount": 62, "margin": 327.34799999999996, "marginPct": 62.67792521109771}, {"YearMonth": "2018-10", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2590.98, "totalRevenueExVAT": 2158.53, "totalCost": 634.353, "totalQty": 93.0, "orderCount": 83, "margin": 1524.1770000000001, "marginPct": 70.61180525635503}, {"YearMonth": "2018-10", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2228.9, "totalRevenueExVAT": 1857.52, "totalCost": 513.484, "totalQty": 62.0, "orderCount": 56, "margin": 1344.036, "marginPct": 72.35647530040053}, {"YearMonth": "2018-10", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 4451.88, "totalRevenueExVAT": 3718.98, "totalCost": 1288.6499999999999, "totalQty": 213.0, "orderCount": 161, "margin": 2430.33, "marginPct": 65.34936998854525}, {"YearMonth": "2018-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1479.1499999999999, "totalRevenueExVAT": 1232.9099999999999, "totalCost": 472.416, "totalQty": 57.0, "orderCount": 55, "margin": 760.4939999999999, "marginPct": 61.68284789644013}, {"YearMonth": "2018-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 987.41, "totalRevenueExVAT": 830.76, "totalCost": 285.93600000000004, "totalQty": 69.0, "orderCount": 67, "margin": 544.824, "marginPct": 65.5813953488372}, {"YearMonth": "2018-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 797.5, "totalRevenueExVAT": 664.5, "totalCost": 244.20000000000002, "totalQty": 50.0, "orderCount": 42, "margin": 420.29999999999995, "marginPct": 63.250564334085766}, {"YearMonth": "2018-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2985.69, "totalRevenueExVAT": 2498.32, "totalCost": 514.527, "totalQty": 167.0, "orderCount": 136, "margin": 1983.7930000000001, "marginPct": 79.40508021390374}, {"YearMonth": "2018-10", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2265.19, "totalRevenueExVAT": 1888.9199999999998, "totalCost": 433.62, "totalQty": 198.0, "orderCount": 169, "margin": 1455.2999999999997, "marginPct": 77.0440251572327}, {"YearMonth": "2018-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1313.3799999999999, "totalRevenueExVAT": 1097.58, "totalCost": 383.46, "totalQty": 66.0, "orderCount": 55, "margin": 714.1199999999999, "marginPct": 65.0631389055923}, {"YearMonth": "2018-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3910.4900000000002, "totalRevenueExVAT": 3266.12, "totalCost": 1758.9, "totalQty": 143.0, "orderCount": 105, "margin": 1507.2199999999998, "marginPct": 46.147110332749556}, {"YearMonth": "2018-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 918.4599999999999, "totalRevenueExVAT": 767.76, "totalCost": 269.024, "totalQty": 56.0, "orderCount": 50, "margin": 498.736, "marginPct": 64.95988329686361}, {"YearMonth": "2018-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 671.25, "totalRevenueExVAT": 559.5, "totalCost": 180.15, "totalQty": 75.0, "orderCount": 71, "margin": 379.35, "marginPct": 67.80160857908848}, {"YearMonth": "2018-10", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 966.4499999999999, "totalRevenueExVAT": 805.29, "totalCost": 293.658, "totalQty": 51.0, "orderCount": 45, "margin": 511.63199999999995, "marginPct": 63.53388220392653}, {"YearMonth": "2018-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 516.96, "totalRevenueExVAT": 430.56000000000006, "totalCost": 65.844, "totalQty": 36.0, "orderCount": 36, "margin": 364.71600000000007, "marginPct": 84.70735785953177}, {"YearMonth": "2018-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 448.96000000000004, "totalRevenueExVAT": 377.16, "totalCost": 76.818, "totalQty": 21.0, "orderCount": 20, "margin": 300.34200000000004, "marginPct": 79.6325167037862}, {"YearMonth": "2018-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1715.6999999999998, "totalRevenueExVAT": 1430.1799999999998, "totalCost": 374.27200000000005, "totalQty": 86.0, "orderCount": 66, "margin": 1055.908, "marginPct": 73.83042693926639}, {"YearMonth": "2018-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1052.9, "totalRevenueExVAT": 889.7, "totalCost": 678.1600000000001, "totalQty": 70.0, "orderCount": 54, "margin": 211.53999999999996, "marginPct": 23.776553894571197}, {"YearMonth": "2018-10", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 470.49, "totalRevenueExVAT": 393.84, "totalCost": 129.6, "totalQty": 36.0, "orderCount": 36, "margin": 264.24, "marginPct": 67.09323583180988}, {"YearMonth": "2018-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1855.06, "totalRevenueExVAT": 1549.74, "totalCost": 622.38, "totalQty": 69.0, "orderCount": 62, "margin": 927.36, "marginPct": 59.83971504897596}, {"YearMonth": "2018-10", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1576.24, "totalRevenueExVAT": 1318.24, "totalCost": 1041.04, "totalQty": 44.0, "orderCount": 38, "margin": 277.20000000000005, "marginPct": 21.028037383177573}, {"YearMonth": "2018-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 953.87, "totalRevenueExVAT": 797.27, "totalCost": 346.236, "totalQty": 61.0, "orderCount": 61, "margin": 451.034, "marginPct": 56.572302983932666}, {"YearMonth": "2018-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 762.2, "totalRevenueExVAT": 636.4, "totalCost": 244.068, "totalQty": 86.0, "orderCount": 86, "margin": 392.332, "marginPct": 61.64864864864865}, {"YearMonth": "2018-10", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 25069.07, "totalRevenueExVAT": 20972.3, "totalCost": 9424.304, "totalQty": 1069.0, "orderCount": 897, "margin": 11547.996, "marginPct": 55.06308797795187}, {"YearMonth": "2018-10", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5174.349999999999, "totalRevenueExVAT": 4314.44, "totalCost": 1867.096, "totalQty": 392.0, "orderCount": 374, "margin": 2447.3439999999996, "marginPct": 56.72448799844244}, {"YearMonth": "2018-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 894.96, "totalRevenueExVAT": 745.8000000000001, "totalCost": 382.404, "totalQty": 66.0, "orderCount": 57, "margin": 363.3960000000001, "marginPct": 48.72566371681417}, {"YearMonth": "2018-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1809.23, "totalRevenueExVAT": 1511.27, "totalCost": 508.286, "totalQty": 79.0, "orderCount": 79, "margin": 1002.9839999999999, "marginPct": 66.36696288552012}, {"YearMonth": "2018-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1065.15, "totalRevenueExVAT": 887.7600000000001, "totalCost": 347.43600000000004, "totalQty": 27.0, "orderCount": 26, "margin": 540.3240000000001, "marginPct": 60.86374695863746}, {"YearMonth": "2018-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 966.16, "totalRevenueExVAT": 807.1200000000001, "totalCost": 257.184, "totalQty": 72.0, "orderCount": 72, "margin": 549.9360000000001, "marginPct": 68.13559322033899}, {"YearMonth": "2018-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 885.13, "totalRevenueExVAT": 739.5300000000001, "totalCost": 156.654, "totalQty": 81.0, "orderCount": 79, "margin": 582.8760000000001, "marginPct": 78.8170865279299}, {"YearMonth": "2018-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 478.36, "totalRevenueExVAT": 401.58000000000004, "totalCost": 72.634, "totalQty": 23.0, "orderCount": 23, "margin": 328.946, "marginPct": 81.91294387170676}, {"YearMonth": "2018-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 993.24, "totalRevenueExVAT": 837.76, "totalCost": 286.048, "totalQty": 56.0, "orderCount": 50, "margin": 551.712, "marginPct": 65.85561497326204}, {"YearMonth": "2018-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 626.8499999999999, "totalRevenueExVAT": 522.27, "totalCost": 160.902, "totalQty": 63.0, "orderCount": 62, "margin": 361.368, "marginPct": 69.19179734620025}, {"YearMonth": "2018-11", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1650.58, "totalRevenueExVAT": 1386.8999999999999, "totalCost": 618.912, "totalQty": 84.0, "orderCount": 71, "margin": 767.9879999999998, "marginPct": 55.37443218689162}, {"YearMonth": "2018-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 527.5, "totalRevenueExVAT": 441.30999999999995, "totalCost": 165.599, "totalQty": 41.0, "orderCount": 40, "margin": 275.71099999999996, "marginPct": 62.47558405655887}, {"YearMonth": "2018-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1613.3400000000001, "totalRevenueExVAT": 1353.3600000000001, "totalCost": 603.0, "totalQty": 72.0, "orderCount": 61, "margin": 750.3600000000001, "marginPct": 55.4442276999468}, {"YearMonth": "2018-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 839.39, "totalRevenueExVAT": 704.33, "totalCost": 305.45300000000003, "totalQty": 67.0, "orderCount": 63, "margin": 398.877, "marginPct": 56.63211846719577}, {"YearMonth": "2018-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 527.3499999999999, "totalRevenueExVAT": 439.36999999999995, "totalCost": 163.982, "totalQty": 53.0, "orderCount": 47, "margin": 275.3879999999999, "marginPct": 62.677925211097694}, {"YearMonth": "2018-11", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1572.27, "totalRevenueExVAT": 1310.1299999999999, "totalCost": 347.871, "totalQty": 51.0, "orderCount": 46, "margin": 962.2589999999999, "marginPct": 73.44759680337066}, {"YearMonth": "2018-11", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2482.7, "totalRevenueExVAT": 2081.92, "totalCost": 637.7139999999999, "totalQty": 77.0, "orderCount": 67, "margin": 1444.2060000000001, "marginPct": 69.36894789425146}, {"YearMonth": "2018-11", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 5471.8, "totalRevenueExVAT": 4573.400000000001, "totalCost": 1754.5, "totalQty": 290.0, "orderCount": 206, "margin": 2818.9000000000005, "marginPct": 61.63685660558884}, {"YearMonth": "2018-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1398.98, "totalRevenueExVAT": 1171.94, "totalCost": 497.28000000000003, "totalQty": 60.0, "orderCount": 60, "margin": 674.6600000000001, "marginPct": 57.56779357304982}, {"YearMonth": "2018-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1083.42, "totalRevenueExVAT": 904.52, "totalCost": 343.952, "totalQty": 83.0, "orderCount": 75, "margin": 560.568, "marginPct": 61.97408570291425}, {"YearMonth": "2018-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1148.3999999999999, "totalRevenueExVAT": 956.8799999999999, "totalCost": 351.648, "totalQty": 72.0, "orderCount": 61, "margin": 605.2319999999999, "marginPct": 63.250564334085766}, {"YearMonth": "2018-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2258.71, "totalRevenueExVAT": 1884.96, "totalCost": 388.206, "totalQty": 126.0, "orderCount": 107, "margin": 1496.754, "marginPct": 79.40508021390373}, {"YearMonth": "2018-11", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2501.8, "totalRevenueExVAT": 2093.0299999999997, "totalCost": 529.98, "totalQty": 242.0, "orderCount": 195, "margin": 1563.0499999999997, "marginPct": 74.67881492381856}, {"YearMonth": "2018-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1482.97, "totalRevenueExVAT": 1247.25, "totalCost": 435.75, "totalQty": 75.0, "orderCount": 57, "margin": 811.5, "marginPct": 65.0631389055923}, {"YearMonth": "2018-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3114.0499999999997, "totalRevenueExVAT": 2603.98, "totalCost": 1266.9, "totalQty": 103.0, "orderCount": 85, "margin": 1337.08, "marginPct": 51.34755259256983}, {"YearMonth": "2018-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1343.4199999999998, "totalRevenueExVAT": 1124.22, "totalCost": 393.928, "totalQty": 82.0, "orderCount": 71, "margin": 730.292, "marginPct": 64.95988329686361}, {"YearMonth": "2018-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 830.8599999999999, "totalRevenueExVAT": 693.78, "totalCost": 223.38600000000002, "totalQty": 93.0, "orderCount": 88, "margin": 470.39399999999995, "marginPct": 67.80160857908847}, {"YearMonth": "2018-11", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1377.03, "totalRevenueExVAT": 1152.6699999999998, "totalCost": 420.334, "totalQty": 73.0, "orderCount": 61, "margin": 732.3359999999998, "marginPct": 63.53388220392653}, {"YearMonth": "2018-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 494.45, "totalRevenueExVAT": 411.98999999999995, "totalCost": 56.699, "totalQty": 31.0, "orderCount": 31, "margin": 355.29099999999994, "marginPct": 86.23777276147479}, {"YearMonth": "2018-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 642.67, "totalRevenueExVAT": 558.88, "totalCost": 102.42399999999999, "totalQty": 28.0, "orderCount": 23, "margin": 456.456, "marginPct": 81.67334669338678}, {"YearMonth": "2018-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1892.72, "totalRevenueExVAT": 1584.16, "totalCost": 456.96000000000004, "totalQty": 105.0, "orderCount": 81, "margin": 1127.2, "marginPct": 71.15442884557115}, {"YearMonth": "2018-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 909.77, "totalRevenueExVAT": 760.71, "totalCost": 494.088, "totalQty": 51.0, "orderCount": 47, "margin": 266.622, "marginPct": 35.04909886816264}, {"YearMonth": "2018-11", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 708.63, "totalRevenueExVAT": 590.4399999999999, "totalCost": 183.6, "totalQty": 51.0, "orderCount": 50, "margin": 406.8399999999999, "marginPct": 68.9045457624822}, {"YearMonth": "2018-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1733.79, "totalRevenueExVAT": 1459.9, "totalCost": 586.3, "totalQty": 65.0, "orderCount": 50, "margin": 873.6000000000001, "marginPct": 59.83971504897596}, {"YearMonth": "2018-11", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 954.8100000000001, "totalRevenueExVAT": 795.63, "totalCost": 567.84, "totalQty": 24.0, "orderCount": 21, "margin": 227.78999999999996, "marginPct": 28.63014215150258}, {"YearMonth": "2018-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 735.23, "totalRevenueExVAT": 612.89, "totalCost": 227.04000000000002, "totalQty": 40.0, "orderCount": 40, "margin": 385.84999999999997, "marginPct": 62.9558322048002}, {"YearMonth": "2018-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 647.02, "totalRevenueExVAT": 542.1800000000001, "totalCost": 178.794, "totalQty": 63.0, "orderCount": 60, "margin": 363.3860000000001, "marginPct": 67.02312885019735}, {"YearMonth": "2018-11", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 22213.75, "totalRevenueExVAT": 18527.079999999998, "totalCost": 7952.032, "totalQty": 902.0, "orderCount": 751, "margin": 10575.047999999999, "marginPct": 57.07887049659202}, {"YearMonth": "2018-11", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 6113.88, "totalRevenueExVAT": 5092.68, "totalCost": 2114.772, "totalQty": 444.0, "orderCount": 417, "margin": 2977.9080000000004, "marginPct": 58.47428073234525}, {"YearMonth": "2018-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 890.81, "totalRevenueExVAT": 742.25, "totalCost": 324.464, "totalQty": 56.0, "orderCount": 47, "margin": 417.786, "marginPct": 56.28642640619738}, {"YearMonth": "2018-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1555.21, "totalRevenueExVAT": 1298.43, "totalCost": 482.55, "totalQty": 75.0, "orderCount": 75, "margin": 815.8800000000001, "marginPct": 62.83588641667245}, {"YearMonth": "2018-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1738.01, "totalRevenueExVAT": 1453.2, "totalCost": 630.532, "totalQty": 49.0, "orderCount": 49, "margin": 822.668, "marginPct": 56.61078998073218}, {"YearMonth": "2018-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 959.29, "totalRevenueExVAT": 801.59, "totalCost": 282.188, "totalQty": 79.0, "orderCount": 73, "margin": 519.402, "marginPct": 64.79646702179419}, {"YearMonth": "2018-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 835.8699999999999, "totalRevenueExVAT": 703.0100000000001, "totalCost": 148.918, "totalQty": 77.0, "orderCount": 75, "margin": 554.0920000000001, "marginPct": 78.8170865279299}, {"YearMonth": "2018-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 604.06, "totalRevenueExVAT": 506.34000000000003, "totalCost": 91.582, "totalQty": 29.0, "orderCount": 29, "margin": 414.75800000000004, "marginPct": 81.91294387170676}, {"YearMonth": "2018-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 394.9, "totalRevenueExVAT": 329.12, "totalCost": 112.37599999999999, "totalQty": 22.0, "orderCount": 21, "margin": 216.74400000000003, "marginPct": 65.85561497326205}, {"YearMonth": "2018-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 373.11999999999995, "totalRevenueExVAT": 315.02, "totalCost": 97.05199999999999, "totalQty": 38.0, "orderCount": 29, "margin": 217.968, "marginPct": 69.19179734620025}, {"YearMonth": "2018-12", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1707.8799999999999, "totalRevenueExVAT": 1431.6399999999999, "totalCost": 655.7520000000001, "totalQty": 89.0, "orderCount": 67, "margin": 775.8879999999998, "marginPct": 54.19574753429632}, {"YearMonth": "2018-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 594.88, "totalRevenueExVAT": 497.40999999999997, "totalCost": 189.833, "totalQty": 47.0, "orderCount": 46, "margin": 307.577, "marginPct": 61.835708972477434}, {"YearMonth": "2018-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1295.18, "totalRevenueExVAT": 1085.18, "totalCost": 485.75, "totalQty": 58.0, "orderCount": 52, "margin": 599.4300000000001, "marginPct": 55.23784072688402}, {"YearMonth": "2018-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 872.9000000000001, "totalRevenueExVAT": 732.2, "totalCost": 319.13, "totalQty": 70.0, "orderCount": 67, "margin": 413.07000000000005, "marginPct": 56.414913957935}, {"YearMonth": "2018-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 483.64, "totalRevenueExVAT": 402.88, "totalCost": 154.7, "totalQty": 50.0, "orderCount": 48, "margin": 248.18, "marginPct": 61.60146942017475}, {"YearMonth": "2018-12", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1520.76, "totalRevenueExVAT": 1271.43, "totalCost": 347.871, "totalQty": 51.0, "orderCount": 46, "margin": 923.5590000000001, "marginPct": 72.6393902928199}, {"YearMonth": "2018-12", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2551.04, "totalRevenueExVAT": 2129.84, "totalCost": 654.278, "totalQty": 79.0, "orderCount": 66, "margin": 1475.5620000000001, "marginPct": 69.28041543026706}, {"YearMonth": "2018-12", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 4436.52, "totalRevenueExVAT": 3707.5600000000004, "totalCost": 1427.8, "totalQty": 236.0, "orderCount": 183, "margin": 2279.76, "marginPct": 61.489497135582425}, {"YearMonth": "2018-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1654.6599999999999, "totalRevenueExVAT": 1381.66, "totalCost": 588.448, "totalQty": 71.0, "orderCount": 66, "margin": 793.2120000000001, "marginPct": 57.41007194244605}, {"YearMonth": "2018-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 800.11, "totalRevenueExVAT": 672.0799999999999, "totalCost": 256.928, "totalQty": 62.0, "orderCount": 59, "margin": 415.15199999999993, "marginPct": 61.77121771217712}, {"YearMonth": "2018-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 728.1, "totalRevenueExVAT": 606.72, "totalCost": 224.66400000000002, "totalQty": 46.0, "orderCount": 38, "margin": 382.05600000000004, "marginPct": 62.97072784810127}, {"YearMonth": "2018-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2131.69, "totalRevenueExVAT": 1786.1200000000001, "totalCost": 375.882, "totalQty": 122.0, "orderCount": 111, "margin": 1410.238, "marginPct": 78.95538933554296}, {"YearMonth": "2018-12", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2262.7200000000003, "totalRevenueExVAT": 1889.6, "totalCost": 490.56, "totalQty": 224.0, "orderCount": 178, "margin": 1399.04, "marginPct": 74.038950042337}, {"YearMonth": "2018-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1034.17, "totalRevenueExVAT": 872.97, "totalCost": 313.74, "totalQty": 54.0, "orderCount": 46, "margin": 559.23, "marginPct": 64.06062063988453}, {"YearMonth": "2018-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 4024.71, "totalRevenueExVAT": 3362.7599999999998, "totalCost": 1685.1000000000001, "totalQty": 137.0, "orderCount": 101, "margin": 1677.6599999999996, "marginPct": 49.88937658352067}, {"YearMonth": "2018-12", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1059.72, "totalRevenueExVAT": 887.61, "totalCost": 317.064, "totalQty": 66.0, "orderCount": 61, "margin": 570.546, "marginPct": 64.27890627640518}, {"YearMonth": "2018-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 812.0899999999999, "totalRevenueExVAT": 678.18, "totalCost": 220.984, "totalQty": 92.0, "orderCount": 90, "margin": 457.1959999999999, "marginPct": 67.41514052316492}, {"YearMonth": "2018-12", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 742.25, "totalRevenueExVAT": 631.59, "totalCost": 236.078, "totalQty": 41.0, "orderCount": 31, "margin": 395.51200000000006, "marginPct": 62.62163745467788}, {"YearMonth": "2018-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 417.93, "totalRevenueExVAT": 348.19, "totalCost": 49.382999999999996, "totalQty": 27.0, "orderCount": 27, "margin": 298.807, "marginPct": 85.81722622705993}, {"YearMonth": "2018-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 811.85, "totalRevenueExVAT": 676.6, "totalCost": 128.03, "totalQty": 35.0, "orderCount": 29, "margin": 548.57, "marginPct": 81.07744605379841}, {"YearMonth": "2018-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1688.24, "totalRevenueExVAT": 1406.24, "totalCost": 409.088, "totalQty": 94.0, "orderCount": 75, "margin": 997.152, "marginPct": 70.9090909090909}, {"YearMonth": "2018-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 604.0, "totalRevenueExVAT": 503.39000000000004, "totalCost": 329.392, "totalQty": 34.0, "orderCount": 32, "margin": 173.99800000000005, "marginPct": 34.565247621128755}, {"YearMonth": "2018-12", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 577.26, "totalRevenueExVAT": 486.78, "totalCost": 151.20000000000002, "totalQty": 42.0, "orderCount": 40, "margin": 335.5799999999999, "marginPct": 68.93874029335633}, {"YearMonth": "2018-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1148.05, "totalRevenueExVAT": 956.82, "totalCost": 387.85999999999996, "totalQty": 43.0, "orderCount": 38, "margin": 568.96, "marginPct": 59.463639974080806}, {"YearMonth": "2018-12", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1066.65, "totalRevenueExVAT": 888.87, "totalCost": 638.82, "totalQty": 27.0, "orderCount": 26, "margin": 250.04999999999995, "marginPct": 28.13122278848425}, {"YearMonth": "2018-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 696.24, "totalRevenueExVAT": 582.88, "totalCost": 221.364, "totalQty": 39.0, "orderCount": 38, "margin": 361.51599999999996, "marginPct": 62.02237167169914}, {"YearMonth": "2018-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 720.8, "totalRevenueExVAT": 603.62, "totalCost": 201.49800000000002, "totalQty": 71.0, "orderCount": 69, "margin": 402.12199999999996, "marginPct": 66.6184023060866}, {"YearMonth": "2018-12", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 20870.21, "totalRevenueExVAT": 17460.26, "totalCost": 7572.944, "totalQty": 859.0, "orderCount": 695, "margin": 9887.315999999999, "marginPct": 56.62754162881881}, {"YearMonth": "2018-12", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 6035.95, "totalRevenueExVAT": 5038.08, "totalCost": 2114.772, "totalQty": 444.0, "orderCount": 413, "margin": 2923.308, "marginPct": 58.02424733231707}, {"YearMonth": "2018-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 607.97, "totalRevenueExVAT": 517.67, "totalCost": 231.76, "totalQty": 40.0, "orderCount": 34, "margin": 285.90999999999997, "marginPct": 55.23016593582785}, {"YearMonth": "2018-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1422.09, "totalRevenueExVAT": 1187.49, "totalCost": 443.946, "totalQty": 69.0, "orderCount": 66, "margin": 743.544, "marginPct": 62.61475886112725}, {"YearMonth": "2018-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1444.07, "totalRevenueExVAT": 1213.19, "totalCost": 527.588, "totalQty": 41.0, "orderCount": 39, "margin": 685.6020000000001, "marginPct": 56.51233524839473}, {"YearMonth": "2018-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 663.59, "totalRevenueExVAT": 554.95, "totalCost": 196.46, "totalQty": 55.0, "orderCount": 55, "margin": 358.49, "marginPct": 64.59861248761149}, {"YearMonth": "2018-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 854.43, "totalRevenueExVAT": 713.9100000000001, "totalCost": 152.786, "totalQty": 79.0, "orderCount": 76, "margin": 561.124, "marginPct": 78.59870291773473}, {"YearMonth": "2018-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 413.75, "totalRevenueExVAT": 344.85, "totalCost": 63.16, "totalQty": 20.0, "orderCount": 20, "margin": 281.69000000000005, "marginPct": 81.68479048861825}, {"YearMonth": "2018-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 875.9, "totalRevenueExVAT": 730.0, "totalCost": 255.39999999999998, "totalQty": 50.0, "orderCount": 41, "margin": 474.6, "marginPct": 65.01369863013699}, {"YearMonth": "2018-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 466.25, "totalRevenueExVAT": 389.60999999999996, "totalCost": 125.14599999999999, "totalQty": 49.0, "orderCount": 49, "margin": 264.46399999999994, "marginPct": 67.87916121249454}, {"YearMonth": "2019-01", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 2322.76, "totalRevenueExVAT": 1959.7600000000002, "totalCost": 965.208, "totalQty": 131.0, "orderCount": 99, "margin": 994.5520000000002, "marginPct": 50.748663101604286}, {"YearMonth": "2019-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 959.98, "totalRevenueExVAT": 805.9300000000001, "totalCost": 335.23699999999997, "totalQty": 83.0, "orderCount": 80, "margin": 470.6930000000001, "marginPct": 58.403707518022664}, {"YearMonth": "2019-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1954.02, "totalRevenueExVAT": 1627.77, "totalCost": 728.625, "totalQty": 87.0, "orderCount": 76, "margin": 899.145, "marginPct": 55.237840726884016}, {"YearMonth": "2019-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1115.74, "totalRevenueExVAT": 930.94, "totalCost": 405.75100000000003, "totalQty": 89.0, "orderCount": 86, "margin": 525.1890000000001, "marginPct": 56.414913957935}, {"YearMonth": "2019-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 903.46, "totalRevenueExVAT": 753.46, "totalCost": 312.49399999999997, "totalQty": 101.0, "orderCount": 100, "margin": 440.96600000000007, "marginPct": 58.52546916890081}, {"YearMonth": "2019-01", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3371.02, "totalRevenueExVAT": 2831.62, "totalCost": 832.1619999999999, "totalQty": 122.0, "orderCount": 101, "margin": 1999.458, "marginPct": 70.61180525635503}, {"YearMonth": "2019-01", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 3591.96, "totalRevenueExVAT": 2992.56, "totalCost": 919.302, "totalQty": 111.0, "orderCount": 95, "margin": 2073.258, "marginPct": 69.28041543026706}, {"YearMonth": "2019-01", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 7716.849999999999, "totalRevenueExVAT": 6441.1, "totalCost": 2480.5, "totalQty": 410.0, "orderCount": 299, "margin": 3960.6000000000004, "marginPct": 61.48949713558244}, {"YearMonth": "2019-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2188.04, "totalRevenueExVAT": 1829.24, "totalCost": 779.072, "totalQty": 94.0, "orderCount": 91, "margin": 1050.1680000000001, "marginPct": 57.41007194244605}, {"YearMonth": "2019-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 980.0799999999999, "totalRevenueExVAT": 823.84, "totalCost": 314.944, "totalQty": 76.0, "orderCount": 73, "margin": 508.896, "marginPct": 61.77121771217712}, {"YearMonth": "2019-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1209.48, "totalRevenueExVAT": 1010.4000000000001, "totalCost": 390.72, "totalQty": 80.0, "orderCount": 59, "margin": 619.6800000000001, "marginPct": 61.33016627078385}, {"YearMonth": "2019-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3033.5699999999997, "totalRevenueExVAT": 2530.48, "totalCost": 579.228, "totalQty": 188.0, "orderCount": 161, "margin": 1951.252, "marginPct": 77.10995542347696}, {"YearMonth": "2019-01", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3614.7000000000003, "totalRevenueExVAT": 3016.9199999999996, "totalCost": 814.68, "totalQty": 372.0, "orderCount": 308, "margin": 2202.24, "marginPct": 72.99630086313194}, {"YearMonth": "2019-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1535.5600000000002, "totalRevenueExVAT": 1286.5600000000002, "totalCost": 499.65999999999997, "totalQty": 86.0, "orderCount": 75, "margin": 786.9000000000002, "marginPct": 61.16310160427808}, {"YearMonth": "2019-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 6921.02, "totalRevenueExVAT": 5778.5199999999995, "totalCost": 3111.9, "totalQty": 253.0, "orderCount": 165, "margin": 2666.6199999999994, "marginPct": 46.147110332749556}, {"YearMonth": "2019-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1568.19, "totalRevenueExVAT": 1315.02, "totalCost": 485.204, "totalQty": 101.0, "orderCount": 89, "margin": 829.816, "marginPct": 63.102918586789556}, {"YearMonth": "2019-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1086.59, "totalRevenueExVAT": 907.52, "totalCost": 307.456, "totalQty": 128.0, "orderCount": 123, "margin": 600.064, "marginPct": 66.1212976022567}, {"YearMonth": "2019-01", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1620.6999999999998, "totalRevenueExVAT": 1349.95, "totalCost": 547.01, "totalQty": 95.0, "orderCount": 74, "margin": 802.94, "marginPct": 59.4792399718508}, {"YearMonth": "2019-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 600.72, "totalRevenueExVAT": 502.32000000000005, "totalCost": 76.818, "totalQty": 42.0, "orderCount": 42, "margin": 425.50200000000007, "marginPct": 84.70735785953177}, {"YearMonth": "2019-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 660.87, "totalRevenueExVAT": 556.76, "totalCost": 113.398, "totalQty": 31.0, "orderCount": 30, "margin": 443.36199999999997, "marginPct": 79.63251670378618}, {"YearMonth": "2019-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2705.96, "totalRevenueExVAT": 2258.96, "totalCost": 657.152, "totalQty": 151.0, "orderCount": 127, "margin": 1601.808, "marginPct": 70.9090909090909}, {"YearMonth": "2019-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1000.2700000000001, "totalRevenueExVAT": 838.3900000000001, "totalCost": 571.592, "totalQty": 59.0, "orderCount": 54, "margin": 266.7980000000001, "marginPct": 31.822660098522178}, {"YearMonth": "2019-01", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 848.51, "totalRevenueExVAT": 706.99, "totalCost": 219.6, "totalQty": 61.0, "orderCount": 61, "margin": 487.39, "marginPct": 68.93874029335633}, {"YearMonth": "2019-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 2043.74, "totalRevenueExVAT": 1707.2, "totalCost": 721.6, "totalQty": 80.0, "orderCount": 65, "margin": 985.6, "marginPct": 57.73195876288659}, {"YearMonth": "2019-01", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1733.0600000000002, "totalRevenueExVAT": 1454.98, "totalCost": 1088.36, "totalQty": 46.0, "orderCount": 41, "margin": 366.6200000000001, "marginPct": 25.19759721783118}, {"YearMonth": "2019-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 811.12, "totalRevenueExVAT": 678.16, "totalCost": 278.124, "totalQty": 49.0, "orderCount": 49, "margin": 400.03599999999994, "marginPct": 58.98843930635837}, {"YearMonth": "2019-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 792.76, "totalRevenueExVAT": 666.4, "totalCost": 241.23000000000002, "totalQty": 85.0, "orderCount": 83, "margin": 425.16999999999996, "marginPct": 63.801020408163254}, {"YearMonth": "2019-01", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 32053.739999999998, "totalRevenueExVAT": 26738.04, "totalCost": 12113.184000000001, "totalQty": 1374.0, "orderCount": 1154, "margin": 14624.856, "marginPct": 54.69681397738951}, {"YearMonth": "2019-01", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 8273.89, "totalRevenueExVAT": 6902.45, "totalCost": 3024.505, "totalQty": 635.0, "orderCount": 600, "margin": 3877.9449999999997, "marginPct": 56.18215271389144}, {"YearMonth": "2019-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1328.88, "totalRevenueExVAT": 1107.4, "totalCost": 567.812, "totalQty": 98.0, "orderCount": 79, "margin": 539.5880000000001, "marginPct": 48.72566371681416}, {"YearMonth": "2019-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2224.38, "totalRevenueExVAT": 1858.68, "totalCost": 694.8720000000001, "totalQty": 108.0, "orderCount": 103, "margin": 1163.808, "marginPct": 62.61475886112725}, {"YearMonth": "2019-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 3332.02, "totalRevenueExVAT": 2781.46, "totalCost": 1209.592, "totalQty": 94.0, "orderCount": 92, "margin": 1571.868, "marginPct": 56.51233524839473}, {"YearMonth": "2019-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1200.8999999999999, "totalRevenueExVAT": 1009.0, "totalCost": 357.2, "totalQty": 100.0, "orderCount": 95, "margin": 651.8, "marginPct": 64.59861248761149}, {"YearMonth": "2019-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1246.27, "totalRevenueExVAT": 1040.4, "totalCost": 232.07999999999998, "totalQty": 120.0, "orderCount": 116, "margin": 808.3200000000002, "marginPct": 77.69319492502885}, {"YearMonth": "2019-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1084.57, "totalRevenueExVAT": 912.45, "totalCost": 173.69, "totalQty": 55.0, "orderCount": 49, "margin": 738.76, "marginPct": 80.96443640747437}, {"YearMonth": "2019-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1402.36, "totalRevenueExVAT": 1171.02, "totalCost": 444.39599999999996, "totalQty": 87.0, "orderCount": 78, "margin": 726.624, "marginPct": 62.050520059435364}, {"YearMonth": "2019-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 627.2, "totalRevenueExVAT": 522.2, "totalCost": 178.78, "totalQty": 70.0, "orderCount": 69, "margin": 343.4200000000001, "marginPct": 65.76407506702414}, {"YearMonth": "2019-02", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1364.96, "totalRevenueExVAT": 1136.96, "totalCost": 567.972, "totalQty": 76.0, "orderCount": 47, "margin": 568.988, "marginPct": 50.0446805516465}, {"YearMonth": "2019-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 604.37, "totalRevenueExVAT": 504.9200000000001, "totalCost": 210.028, "totalQty": 52.0, "orderCount": 49, "margin": 294.89200000000005, "marginPct": 58.403707518022664}, {"YearMonth": "2019-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 837.13, "totalRevenueExVAT": 700.61, "totalCost": 291.034666, "totalQty": 35.0, "orderCount": 32, "margin": 409.575334, "marginPct": 58.45981844392744}, {"YearMonth": "2019-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 895.68, "totalRevenueExVAT": 746.5200000000001, "totalCost": 297.784666, "totalQty": 66.0, "orderCount": 57, "margin": 448.7353340000001, "marginPct": 60.1102896104592}, {"YearMonth": "2019-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 522.5, "totalRevenueExVAT": 435.2, "totalCost": 176.07733199999998, "totalQty": 55.0, "orderCount": 52, "margin": 259.122668, "marginPct": 59.54105422794117}, {"YearMonth": "2019-02", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1586.77, "totalRevenueExVAT": 1330.75, "totalCost": 360.65999899999997, "totalQty": 53.0, "orderCount": 45, "margin": 970.090001, "marginPct": 72.89798993049033}, {"YearMonth": "2019-02", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2462.08, "totalRevenueExVAT": 2061.16, "totalCost": 588.378, "totalQty": 71.0, "orderCount": 42, "margin": 1472.7819999999997, "marginPct": 71.4540355916086}, {"YearMonth": "2019-02", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3769.2599999999998, "totalRevenueExVAT": 3140.77, "totalCost": 1158.931663, "totalQty": 187.0, "orderCount": 143, "margin": 1981.838337, "marginPct": 63.10039694087756}, {"YearMonth": "2019-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1505.2, "totalRevenueExVAT": 1254.4, "totalCost": 490.67233300000004, "totalQty": 60.0, "orderCount": 51, "margin": 763.7276670000001, "marginPct": 60.88390202487245}, {"YearMonth": "2019-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 632.97, "totalRevenueExVAT": 527.4, "totalCost": 196.64833000000002, "totalQty": 45.0, "orderCount": 43, "margin": 330.75167, "marginPct": 62.71362722791051}, {"YearMonth": "2019-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 749.65, "totalRevenueExVAT": 624.63, "totalCost": 228.12400000000002, "totalQty": 47.0, "orderCount": 38, "margin": 396.506, "marginPct": 63.47853929526279}, {"YearMonth": "2019-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2016.01, "totalRevenueExVAT": 1691.7800000000002, "totalCost": 382.256998, "totalQty": 118.0, "orderCount": 86, "margin": 1309.5230020000001, "marginPct": 77.40504096277293}, {"YearMonth": "2019-02", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1717.34, "totalRevenueExVAT": 1440.6, "totalCost": 358.838999, "totalQty": 160.0, "orderCount": 130, "margin": 1081.7610009999999, "marginPct": 75.09100381785366}, {"YearMonth": "2019-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 658.4, "totalRevenueExVAT": 548.72, "totalCost": 197.129333, "totalQty": 34.0, "orderCount": 24, "margin": 351.59066700000005, "marginPct": 64.07469510861642}, {"YearMonth": "2019-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2911.22, "totalRevenueExVAT": 2433.86, "totalCost": 1219.496666, "totalQty": 100.0, "orderCount": 73, "margin": 1214.3633340000001, "marginPct": 49.89454340019558}, {"YearMonth": "2019-02", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 821.61, "totalRevenueExVAT": 684.6, "totalCost": 270.327666, "totalQty": 57.0, "orderCount": 51, "margin": 414.272334, "marginPct": 60.5130490797546}, {"YearMonth": "2019-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 644.0, "totalRevenueExVAT": 536.79, "totalCost": 194.84733300000002, "totalQty": 81.0, "orderCount": 73, "margin": 341.9426669999999, "marginPct": 63.701385458000324}, {"YearMonth": "2019-02", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 888.81, "totalRevenueExVAT": 740.54, "totalCost": 276.983333, "totalQty": 48.0, "orderCount": 33, "margin": 463.55666699999995, "marginPct": 62.59711386285684}, {"YearMonth": "2019-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 364.5, "totalRevenueExVAT": 305.65999999999997, "totalCost": 43.896, "totalQty": 24.0, "orderCount": 20, "margin": 261.76399999999995, "marginPct": 85.63894523326572}, {"YearMonth": "2019-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 410.71, "totalRevenueExVAT": 345.28000000000003, "totalCost": 68.470666, "totalQty": 18.0, "orderCount": 16, "margin": 276.80933400000004, "marginPct": 80.16952444392956}, {"YearMonth": "2019-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1479.05, "totalRevenueExVAT": 1235.49, "totalCost": 330.752, "totalQty": 76.0, "orderCount": 54, "margin": 904.738, "marginPct": 73.22908319775959}, {"YearMonth": "2019-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 599.5, "totalRevenueExVAT": 499.64000000000004, "totalCost": 332.983333, "totalQty": 34.0, "orderCount": 31, "margin": 166.65666700000003, "marginPct": 33.35534925146105}, {"YearMonth": "2019-02", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 402.26, "totalRevenueExVAT": 337.44, "totalCost": 103.284, "totalQty": 27.0, "orderCount": 27, "margin": 234.156, "marginPct": 69.3918918918919}, {"YearMonth": "2019-02", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1281.45, "totalRevenueExVAT": 1068.0, "totalCost": 428.678, "totalQty": 48.0, "orderCount": 36, "margin": 639.322, "marginPct": 59.86161048689138}, {"YearMonth": "2019-02", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 893.87, "totalRevenueExVAT": 755.71, "totalCost": 544.18, "totalQty": 23.0, "orderCount": 17, "margin": 211.5300000000001, "marginPct": 27.990895978616148}, {"YearMonth": "2019-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 806.3299999999999, "totalRevenueExVAT": 672.08, "totalCost": 255.389666, "totalQty": 45.0, "orderCount": 41, "margin": 416.690334, "marginPct": 62.00010921318891}, {"YearMonth": "2019-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 790.8, "totalRevenueExVAT": 661.98, "totalCost": 221.560666, "totalQty": 78.0, "orderCount": 64, "margin": 440.41933400000005, "marginPct": 66.5306102903411}, {"YearMonth": "2019-02", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 20683.989999999998, "totalRevenueExVAT": 17247.37, "totalCost": 7327.623996, "totalQty": 834.0, "orderCount": 666, "margin": 9919.746003999999, "marginPct": 57.5145428201517}, {"YearMonth": "2019-02", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 7965.65, "totalRevenueExVAT": 6642.33, "totalCost": 2725.99966, "totalQty": 573.0, "orderCount": 498, "margin": 3916.33034, "marginPct": 58.96018927093354}, {"YearMonth": "2019-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 490.5, "totalRevenueExVAT": 408.71999999999997, "totalCost": 198.35866599999997, "totalQty": 33.0, "orderCount": 27, "margin": 210.361334, "marginPct": 51.46832403601488}, {"YearMonth": "2019-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 859.54, "totalRevenueExVAT": 719.1899999999999, "totalCost": 250.66666600000002, "totalQty": 39.0, "orderCount": 38, "margin": 468.5233339999999, "marginPct": 65.14597449908925}, {"YearMonth": "2019-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1077.02, "totalRevenueExVAT": 897.61, "totalCost": 360.30400000000003, "totalQty": 28.0, "orderCount": 23, "margin": 537.306, "marginPct": 59.85962723231694}, {"YearMonth": "2019-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 685.81, "totalRevenueExVAT": 575.09, "totalCost": 189.774333, "totalQty": 53.0, "orderCount": 48, "margin": 385.315667, "marginPct": 67.00093324523118}, {"YearMonth": "2019-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 997.1999999999999, "totalRevenueExVAT": 834.37, "totalCost": 188.383997, "totalQty": 93.0, "orderCount": 88, "margin": 645.986003, "marginPct": 77.42200738281578}, {"YearMonth": "2019-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 680.8499999999999, "totalRevenueExVAT": 567.48, "totalCost": 104.214, "totalQty": 33.0, "orderCount": 29, "margin": 463.266, "marginPct": 81.63565235779234}, {"YearMonth": "2019-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 478.30999999999995, "totalRevenueExVAT": 400.88, "totalCost": 153.691332, "totalQty": 28.0, "orderCount": 26, "margin": 247.188668, "marginPct": 61.66151167431651}, {"YearMonth": "2019-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 471.71, "totalRevenueExVAT": 392.92999999999995, "totalCost": 125.44599999999998, "totalQty": 49.0, "orderCount": 43, "margin": 267.484, "marginPct": 68.07421169164991}, {"YearMonth": "2019-03", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1655.28, "totalRevenueExVAT": 1391.28, "totalCost": 685.224, "totalQty": 93.0, "orderCount": 65, "margin": 706.0559999999999, "marginPct": 50.74866310160427}, {"YearMonth": "2019-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 645.16, "totalRevenueExVAT": 543.76, "totalCost": 226.18399999999997, "totalQty": 56.0, "orderCount": 47, "margin": 317.576, "marginPct": 58.403707518022664}, {"YearMonth": "2019-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1193.44, "totalRevenueExVAT": 997.92, "totalCost": 402.0, "totalQty": 48.0, "orderCount": 41, "margin": 595.92, "marginPct": 59.71620971620971}, {"YearMonth": "2019-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 988.1299999999999, "totalRevenueExVAT": 825.73, "totalCost": 323.689, "totalQty": 71.0, "orderCount": 61, "margin": 502.041, "marginPct": 60.799656061908856}, {"YearMonth": "2019-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 664.99, "totalRevenueExVAT": 555.43, "totalCost": 207.298, "totalQty": 67.0, "orderCount": 56, "margin": 348.13199999999995, "marginPct": 62.67792521109771}, {"YearMonth": "2019-03", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2058.17, "totalRevenueExVAT": 1727.93, "totalCost": 457.007, "totalQty": 67.0, "orderCount": 45, "margin": 1270.923, "marginPct": 73.55176424970918}, {"YearMonth": "2019-03", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2588.4, "totalRevenueExVAT": 2157.12, "totalCost": 596.304, "totalQty": 72.0, "orderCount": 44, "margin": 1560.8159999999998, "marginPct": 72.35647530040052}, {"YearMonth": "2019-03", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 4780.099999999999, "totalRevenueExVAT": 3998.34, "totalCost": 1385.45, "totalQty": 229.0, "orderCount": 166, "margin": 2612.8900000000003, "marginPct": 65.34936998854525}, {"YearMonth": "2019-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1790.55, "totalRevenueExVAT": 1492.47, "totalCost": 571.8720000000001, "totalQty": 69.0, "orderCount": 63, "margin": 920.598, "marginPct": 61.68284789644013}, {"YearMonth": "2019-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 982.5999999999999, "totalRevenueExVAT": 818.7199999999999, "totalCost": 281.79200000000003, "totalQty": 68.0, "orderCount": 58, "margin": 536.9279999999999, "marginPct": 65.5813953488372}, {"YearMonth": "2019-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1116.5, "totalRevenueExVAT": 930.3, "totalCost": 341.88, "totalQty": 70.0, "orderCount": 53, "margin": 588.42, "marginPct": 63.25056433408578}, {"YearMonth": "2019-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2145.0299999999997, "totalRevenueExVAT": 1795.2, "totalCost": 369.71999999999997, "totalQty": 120.0, "orderCount": 88, "margin": 1425.48, "marginPct": 79.40508021390374}, {"YearMonth": "2019-03", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2156.41, "totalRevenueExVAT": 1803.06, "totalCost": 413.90999999999997, "totalQty": 189.0, "orderCount": 152, "margin": 1389.15, "marginPct": 77.04402515723271}, {"YearMonth": "2019-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1270.1599999999999, "totalRevenueExVAT": 1064.32, "totalCost": 371.84, "totalQty": 64.0, "orderCount": 44, "margin": 692.48, "marginPct": 65.06313890559231}, {"YearMonth": "2019-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3420.5699999999997, "totalRevenueExVAT": 2867.94, "totalCost": 1389.9, "totalQty": 113.0, "orderCount": 78, "margin": 1478.04, "marginPct": 51.536643026004725}, {"YearMonth": "2019-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1449.26, "totalRevenueExVAT": 1211.6000000000001, "totalCost": 499.61600000000004, "totalQty": 104.0, "orderCount": 96, "margin": 711.9840000000002, "marginPct": 58.76394849785408}, {"YearMonth": "2019-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 744.51, "totalRevenueExVAT": 621.3199999999999, "totalCost": 235.39600000000002, "totalQty": 98.0, "orderCount": 86, "margin": 385.9239999999999, "marginPct": 62.113564668769705}, {"YearMonth": "2019-03", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1013.8199999999999, "totalRevenueExVAT": 852.66, "totalCost": 310.932, "totalQty": 54.0, "orderCount": 42, "margin": 541.728, "marginPct": 63.53388220392653}, {"YearMonth": "2019-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 446.59999999999997, "totalRevenueExVAT": 372.12, "totalCost": 51.211999999999996, "totalQty": 28.0, "orderCount": 25, "margin": 320.908, "marginPct": 86.2377727614748}, {"YearMonth": "2019-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 327.32, "totalRevenueExVAT": 279.44, "totalCost": 51.211999999999996, "totalQty": 14.0, "orderCount": 14, "margin": 228.228, "marginPct": 81.67334669338678}, {"YearMonth": "2019-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2094.75, "totalRevenueExVAT": 1746.1499999999999, "totalCost": 456.96000000000004, "totalQty": 105.0, "orderCount": 66, "margin": 1289.1899999999998, "marginPct": 73.83042693926637}, {"YearMonth": "2019-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 873.5699999999999, "totalRevenueExVAT": 733.0400000000001, "totalCost": 474.71200000000005, "totalQty": 49.0, "orderCount": 44, "margin": 258.32800000000003, "marginPct": 35.24064171122995}, {"YearMonth": "2019-03", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 587.1, "totalRevenueExVAT": 489.44000000000005, "totalCost": 136.8, "totalQty": 38.0, "orderCount": 35, "margin": 352.64000000000004, "marginPct": 72.04968944099379}, {"YearMonth": "2019-03", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 431.2, "totalRevenueExVAT": 359.36, "totalCost": 144.32, "totalQty": 16.0, "orderCount": 13, "margin": 215.04000000000002, "marginPct": 59.83971504897596}, {"YearMonth": "2019-03", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1278.4, "totalRevenueExVAT": 1065.28, "totalCost": 757.12, "totalQty": 32.0, "orderCount": 24, "margin": 308.15999999999997, "marginPct": 28.927605887653947}, {"YearMonth": "2019-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 492.01, "totalRevenueExVAT": 415.26000000000005, "totalCost": 153.252, "totalQty": 27.0, "orderCount": 26, "margin": 262.00800000000004, "marginPct": 63.094928478543565}, {"YearMonth": "2019-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 959.66, "totalRevenueExVAT": 801.32, "totalCost": 261.096, "totalQty": 92.0, "orderCount": 73, "margin": 540.224, "marginPct": 67.41676234213548}, {"YearMonth": "2019-03", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 23917.32, "totalRevenueExVAT": 19986.12, "totalCost": 8145.984, "totalQty": 924.0, "orderCount": 705, "margin": 11840.135999999999, "marginPct": 59.2417938049006}, {"YearMonth": "2019-03", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 8809.92, "totalRevenueExVAT": 7344.64, "totalCost": 2895.904, "totalQty": 608.0, "orderCount": 471, "margin": 4448.736000000001, "marginPct": 60.57119205298014}, {"YearMonth": "2019-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 526.35, "totalRevenueExVAT": 438.57, "totalCost": 191.202, "totalQty": 33.0, "orderCount": 30, "margin": 247.368, "marginPct": 56.403310759969905}, {"YearMonth": "2019-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1032.75, "totalRevenueExVAT": 860.85, "totalCost": 289.53000000000003, "totalQty": 45.0, "orderCount": 38, "margin": 571.3199999999999, "marginPct": 66.36696288552012}, {"YearMonth": "2019-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 815.3100000000001, "totalRevenueExVAT": 690.48, "totalCost": 270.228, "totalQty": 21.0, "orderCount": 17, "margin": 420.252, "marginPct": 60.86374695863746}, {"YearMonth": "2019-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 874.25, "totalRevenueExVAT": 728.6500000000001, "totalCost": 232.18, "totalQty": 65.0, "orderCount": 52, "margin": 496.4700000000001, "marginPct": 68.13559322033899}, {"YearMonth": "2019-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1200.86, "totalRevenueExVAT": 1004.3000000000001, "totalCost": 212.73999999999998, "totalQty": 110.0, "orderCount": 94, "margin": 791.5600000000001, "marginPct": 78.8170865279299}, {"YearMonth": "2019-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 645.96, "totalRevenueExVAT": 541.26, "totalCost": 97.898, "totalQty": 31.0, "orderCount": 27, "margin": 443.36199999999997, "marginPct": 81.91294387170676}, {"YearMonth": "2019-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 807.75, "totalRevenueExVAT": 673.2, "totalCost": 229.85999999999999, "totalQty": 45.0, "orderCount": 28, "margin": 443.34000000000003, "marginPct": 65.85561497326204}, {"YearMonth": "2019-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 553.88, "totalRevenueExVAT": 464.23999999999995, "totalCost": 143.024, "totalQty": 56.0, "orderCount": 47, "margin": 321.21599999999995, "marginPct": 69.19179734620023}, {"YearMonth": "2019-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1409.8400000000001, "totalRevenueExVAT": 1181.8400000000001, "totalCost": 582.072, "totalQty": 79.0, "orderCount": 59, "margin": 599.7680000000001, "marginPct": 50.748663101604286}, {"YearMonth": "2019-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 474.16, "totalRevenueExVAT": 398.11, "totalCost": 165.599, "totalQty": 41.0, "orderCount": 41, "margin": 232.51100000000002, "marginPct": 58.403707518022664}, {"YearMonth": "2019-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1168.49, "totalRevenueExVAT": 977.13, "totalCost": 393.625, "totalQty": 47.0, "orderCount": 44, "margin": 583.505, "marginPct": 59.71620971620971}, {"YearMonth": "2019-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 527.78, "totalRevenueExVAT": 441.94000000000005, "totalCost": 173.24200000000002, "totalQty": 38.0, "orderCount": 37, "margin": 268.69800000000004, "marginPct": 60.799656061908856}, {"YearMonth": "2019-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 368.15, "totalRevenueExVAT": 306.72999999999996, "totalCost": 114.478, "totalQty": 37.0, "orderCount": 36, "margin": 192.25199999999995, "marginPct": 62.677925211097694}, {"YearMonth": "2019-04", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1748.6699999999998, "totalRevenueExVAT": 1470.03, "totalCost": 388.79699999999997, "totalQty": 57.0, "orderCount": 43, "margin": 1081.233, "marginPct": 73.55176424970918}, {"YearMonth": "2019-04", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2145.02, "totalRevenueExVAT": 1797.6000000000001, "totalCost": 496.92, "totalQty": 60.0, "orderCount": 55, "margin": 1300.68, "marginPct": 72.35647530040053}, {"YearMonth": "2019-04", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 5164.179999999999, "totalRevenueExVAT": 4312.62, "totalCost": 1494.35, "totalQty": 247.0, "orderCount": 186, "margin": 2818.27, "marginPct": 65.34936998854525}, {"YearMonth": "2019-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1159.11, "totalRevenueExVAT": 973.3499999999999, "totalCost": 372.96000000000004, "totalQty": 45.0, "orderCount": 43, "margin": 600.3899999999999, "marginPct": 61.682847896440116}, {"YearMonth": "2019-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 751.4, "totalRevenueExVAT": 626.0799999999999, "totalCost": 215.488, "totalQty": 52.0, "orderCount": 50, "margin": 410.5919999999999, "marginPct": 65.5813953488372}, {"YearMonth": "2019-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 877.25, "totalRevenueExVAT": 730.9499999999999, "totalCost": 268.62, "totalQty": 55.0, "orderCount": 43, "margin": 462.3299999999999, "marginPct": 63.25056433408578}, {"YearMonth": "2019-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1633.45, "totalRevenueExVAT": 1361.3600000000001, "totalCost": 280.371, "totalQty": 91.0, "orderCount": 78, "margin": 1080.989, "marginPct": 79.40508021390373}, {"YearMonth": "2019-04", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2160.23, "totalRevenueExVAT": 1803.06, "totalCost": 413.90999999999997, "totalQty": 189.0, "orderCount": 143, "margin": 1389.15, "marginPct": 77.04402515723271}, {"YearMonth": "2019-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 708.24, "totalRevenueExVAT": 598.68, "totalCost": 209.16, "totalQty": 36.0, "orderCount": 34, "margin": 389.52, "marginPct": 65.06313890559231}, {"YearMonth": "2019-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3633.72, "totalRevenueExVAT": 3045.6, "totalCost": 1476.0, "totalQty": 120.0, "orderCount": 91, "margin": 1569.6, "marginPct": 51.536643026004725}, {"YearMonth": "2019-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1279.17, "totalRevenueExVAT": 1071.8, "totalCost": 441.968, "totalQty": 92.0, "orderCount": 77, "margin": 629.8319999999999, "marginPct": 58.76394849785407}, {"YearMonth": "2019-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 478.16, "totalRevenueExVAT": 399.42, "totalCost": 151.32600000000002, "totalQty": 63.0, "orderCount": 60, "margin": 248.094, "marginPct": 62.11356466876972}, {"YearMonth": "2019-04", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 754.8399999999999, "totalRevenueExVAT": 631.5999999999999, "totalCost": 230.32, "totalQty": 40.0, "orderCount": 35, "margin": 401.2799999999999, "marginPct": 63.53388220392653}, {"YearMonth": "2019-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 475.84, "totalRevenueExVAT": 398.7, "totalCost": 54.87, "totalQty": 30.0, "orderCount": 29, "margin": 343.83, "marginPct": 86.2377727614748}, {"YearMonth": "2019-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 475.01, "totalRevenueExVAT": 399.20000000000005, "totalCost": 73.16, "totalQty": 20.0, "orderCount": 20, "margin": 326.0400000000001, "marginPct": 81.67334669338679}, {"YearMonth": "2019-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1815.4499999999998, "totalRevenueExVAT": 1513.33, "totalCost": 396.03200000000004, "totalQty": 91.0, "orderCount": 74, "margin": 1117.2979999999998, "marginPct": 73.83042693926637}, {"YearMonth": "2019-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 637.23, "totalRevenueExVAT": 538.5600000000001, "totalCost": 348.76800000000003, "totalQty": 36.0, "orderCount": 34, "margin": 189.79200000000003, "marginPct": 35.24064171122995}, {"YearMonth": "2019-04", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 494.4, "totalRevenueExVAT": 412.16, "totalCost": 115.2, "totalQty": 32.0, "orderCount": 31, "margin": 296.96000000000004, "marginPct": 72.04968944099379}, {"YearMonth": "2019-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1032.04, "totalRevenueExVAT": 865.54, "totalCost": 615.16, "totalQty": 26.0, "orderCount": 24, "margin": 250.38, "marginPct": 28.92760588765395}, {"YearMonth": "2019-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 387.45, "totalRevenueExVAT": 322.98, "totalCost": 119.196, "totalQty": 21.0, "orderCount": 21, "margin": 203.78400000000002, "marginPct": 63.094928478543565}, {"YearMonth": "2019-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 602.62, "totalRevenueExVAT": 505.18000000000006, "totalCost": 164.604, "totalQty": 58.0, "orderCount": 57, "margin": 340.576, "marginPct": 67.41676234213547}, {"YearMonth": "2019-04", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 21469.32, "totalRevenueExVAT": 17909.64, "totalCost": 7299.648000000001, "totalQty": 828.0, "orderCount": 704, "margin": 10609.991999999998, "marginPct": 59.24179380490059}, {"YearMonth": "2019-04", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 4545.04, "totalRevenueExVAT": 3793.12, "totalCost": 1495.5819999999999, "totalQty": 314.0, "orderCount": 292, "margin": 2297.538, "marginPct": 60.57119205298014}, {"YearMonth": "2019-04", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 861.3, "totalRevenueExVAT": 717.66, "totalCost": 312.876, "totalQty": 54.0, "orderCount": 46, "margin": 404.784, "marginPct": 56.403310759969905}, {"YearMonth": "2019-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1212.53, "totalRevenueExVAT": 1013.89, "totalCost": 341.002, "totalQty": 53.0, "orderCount": 52, "margin": 672.8879999999999, "marginPct": 66.36696288552012}, {"YearMonth": "2019-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 861.33, "totalRevenueExVAT": 723.36, "totalCost": 283.096, "totalQty": 22.0, "orderCount": 21, "margin": 440.264, "marginPct": 60.86374695863746}, {"YearMonth": "2019-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 777.86, "totalRevenueExVAT": 650.1800000000001, "totalCost": 207.17600000000002, "totalQty": 58.0, "orderCount": 57, "margin": 443.004, "marginPct": 68.13559322033898}, {"YearMonth": "2019-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1005.5799999999999, "totalRevenueExVAT": 839.96, "totalCost": 177.928, "totalQty": 92.0, "orderCount": 86, "margin": 662.032, "marginPct": 78.8170865279299}, {"YearMonth": "2019-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 583.11, "totalRevenueExVAT": 488.88, "totalCost": 88.42399999999999, "totalQty": 28.0, "orderCount": 23, "margin": 400.456, "marginPct": 81.91294387170677}, {"YearMonth": "2019-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 712.02, "totalRevenueExVAT": 598.4000000000001, "totalCost": 204.32, "totalQty": 40.0, "orderCount": 37, "margin": 394.0800000000001, "marginPct": 65.85561497326204}, {"YearMonth": "2019-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 398.0, "totalRevenueExVAT": 331.59999999999997, "totalCost": 102.16, "totalQty": 40.0, "orderCount": 40, "margin": 229.43999999999997, "marginPct": 69.19179734620023}, {"YearMonth": "2019-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1475.68, "totalRevenueExVAT": 1241.68, "totalCost": 611.544, "totalQty": 83.0, "orderCount": 66, "margin": 630.1360000000001, "marginPct": 50.748663101604286}, {"YearMonth": "2019-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 534.41, "totalRevenueExVAT": 446.66, "totalCost": 185.79399999999998, "totalQty": 46.0, "orderCount": 45, "margin": 260.86600000000004, "marginPct": 58.403707518022664}, {"YearMonth": "2019-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1334.82, "totalRevenueExVAT": 1122.6599999999999, "totalCost": 452.25, "totalQty": 54.0, "orderCount": 52, "margin": 670.4099999999999, "marginPct": 59.71620971620971}, {"YearMonth": "2019-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 809.0999999999999, "totalRevenueExVAT": 674.5400000000001, "totalCost": 264.422, "totalQty": 58.0, "orderCount": 51, "margin": 410.11800000000005, "marginPct": 60.799656061908856}, {"YearMonth": "2019-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 306.78999999999996, "totalRevenueExVAT": 256.98999999999995, "totalCost": 95.914, "totalQty": 31.0, "orderCount": 30, "margin": 161.07599999999996, "marginPct": 62.67792521109771}, {"YearMonth": "2019-05", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1542.34, "totalRevenueExVAT": 1289.5, "totalCost": 341.05, "totalQty": 50.0, "orderCount": 42, "margin": 948.45, "marginPct": 73.5517642497092}, {"YearMonth": "2019-05", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1467.96, "totalRevenueExVAT": 1228.3600000000001, "totalCost": 339.562, "totalQty": 41.0, "orderCount": 39, "margin": 888.7980000000001, "marginPct": 72.35647530040053}, {"YearMonth": "2019-05", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3910.67, "totalRevenueExVAT": 3265.02, "totalCost": 1131.35, "totalQty": 187.0, "orderCount": 138, "margin": 2133.67, "marginPct": 65.34936998854525}, {"YearMonth": "2019-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1396.98, "totalRevenueExVAT": 1168.02, "totalCost": 447.552, "totalQty": 54.0, "orderCount": 52, "margin": 720.468, "marginPct": 61.68284789644013}, {"YearMonth": "2019-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 705.64, "totalRevenueExVAT": 589.9599999999999, "totalCost": 203.056, "totalQty": 49.0, "orderCount": 49, "margin": 386.9039999999999, "marginPct": 65.5813953488372}, {"YearMonth": "2019-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 972.9499999999999, "totalRevenueExVAT": 810.6899999999999, "totalCost": 297.92400000000004, "totalQty": 61.0, "orderCount": 49, "margin": 512.7659999999998, "marginPct": 63.250564334085766}, {"YearMonth": "2019-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2076.22, "totalRevenueExVAT": 1735.3600000000001, "totalCost": 357.396, "totalQty": 116.0, "orderCount": 99, "margin": 1377.9640000000002, "marginPct": 79.40508021390374}, {"YearMonth": "2019-05", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1738.4799999999998, "totalRevenueExVAT": 1459.62, "totalCost": 335.07, "totalQty": 153.0, "orderCount": 119, "margin": 1124.55, "marginPct": 77.04402515723271}, {"YearMonth": "2019-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 987.54, "totalRevenueExVAT": 831.5, "totalCost": 290.5, "totalQty": 50.0, "orderCount": 43, "margin": 541.0, "marginPct": 65.0631389055923}, {"YearMonth": "2019-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2796.33, "totalRevenueExVAT": 2334.96, "totalCost": 1131.6000000000001, "totalQty": 92.0, "orderCount": 68, "margin": 1203.36, "marginPct": 51.536643026004725}, {"YearMonth": "2019-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1302.47, "totalRevenueExVAT": 1095.1000000000001, "totalCost": 451.576, "totalQty": 94.0, "orderCount": 80, "margin": 643.5240000000001, "marginPct": 58.76394849785408}, {"YearMonth": "2019-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 700.12, "totalRevenueExVAT": 583.28, "totalCost": 220.984, "totalQty": 92.0, "orderCount": 88, "margin": 362.29599999999994, "marginPct": 62.113564668769705}, {"YearMonth": "2019-05", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 890.65, "totalRevenueExVAT": 742.13, "totalCost": 270.626, "totalQty": 47.0, "orderCount": 36, "margin": 471.504, "marginPct": 63.53388220392654}, {"YearMonth": "2019-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 526.35, "totalRevenueExVAT": 438.57, "totalCost": 60.357, "totalQty": 33.0, "orderCount": 33, "margin": 378.21299999999997, "marginPct": 86.23777276147479}, {"YearMonth": "2019-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 287.4, "totalRevenueExVAT": 239.52, "totalCost": 43.896, "totalQty": 12.0, "orderCount": 12, "margin": 195.62400000000002, "marginPct": 81.67334669338679}, {"YearMonth": "2019-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1316.7, "totalRevenueExVAT": 1097.58, "totalCost": 287.232, "totalQty": 66.0, "orderCount": 52, "margin": 810.348, "marginPct": 73.83042693926639}, {"YearMonth": "2019-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 768.86, "totalRevenueExVAT": 643.2800000000001, "totalCost": 416.584, "totalQty": 43.0, "orderCount": 39, "margin": 226.69600000000008, "marginPct": 35.240641711229955}, {"YearMonth": "2019-05", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 370.79999999999995, "totalRevenueExVAT": 309.12, "totalCost": 86.4, "totalQty": 24.0, "orderCount": 24, "margin": 222.72, "marginPct": 72.04968944099379}, {"YearMonth": "2019-05", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 585.9300000000001, "totalRevenueExVAT": 499.35, "totalCost": 354.9, "totalQty": 15.0, "orderCount": 14, "margin": 144.45000000000005, "marginPct": 28.927605887653957}, {"YearMonth": "2019-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 756.4499999999999, "totalRevenueExVAT": 630.58, "totalCost": 232.716, "totalQty": 41.0, "orderCount": 41, "margin": 397.86400000000003, "marginPct": 63.094928478543565}, {"YearMonth": "2019-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 585.1999999999999, "totalRevenueExVAT": 487.76000000000005, "totalCost": 158.928, "totalQty": 56.0, "orderCount": 55, "margin": 328.83200000000005, "marginPct": 67.41676234213548}, {"YearMonth": "2019-05", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 20068.05, "totalRevenueExVAT": 16763.25, "totalCost": 6832.400000000001, "totalQty": 775.0, "orderCount": 665, "margin": 9930.849999999999, "marginPct": 59.24179380490059}, {"YearMonth": "2019-05", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 6213.8, "totalRevenueExVAT": 5182.32, "totalCost": 2043.327, "totalQty": 429.0, "orderCount": 417, "margin": 3138.9929999999995, "marginPct": 60.57119205298013}, {"YearMonth": "2019-05", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 574.1999999999999, "totalRevenueExVAT": 478.43999999999994, "totalCost": 208.58399999999997, "totalQty": 36.0, "orderCount": 30, "margin": 269.856, "marginPct": 56.403310759969905}, {"YearMonth": "2019-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1308.1499999999999, "totalRevenueExVAT": 1090.4099999999999, "totalCost": 366.738, "totalQty": 57.0, "orderCount": 57, "margin": 723.6719999999998, "marginPct": 66.36696288552012}, {"YearMonth": "2019-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1183.5, "totalRevenueExVAT": 986.4000000000001, "totalCost": 386.04, "totalQty": 30.0, "orderCount": 27, "margin": 600.3600000000001, "marginPct": 60.86374695863748}, {"YearMonth": "2019-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 807.0, "totalRevenueExVAT": 672.6, "totalCost": 214.32, "totalQty": 60.0, "orderCount": 60, "margin": 458.28000000000003, "marginPct": 68.13559322033899}, {"YearMonth": "2019-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1073.1, "totalRevenueExVAT": 894.7400000000001, "totalCost": 189.53199999999998, "totalQty": 98.0, "orderCount": 97, "margin": 705.2080000000001, "marginPct": 78.8170865279299}, {"YearMonth": "2019-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 391.07, "totalRevenueExVAT": 331.74, "totalCost": 60.001999999999995, "totalQty": 19.0, "orderCount": 16, "margin": 271.738, "marginPct": 81.91294387170676}, {"YearMonth": "2019-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 879.55, "totalRevenueExVAT": 733.0400000000001, "totalCost": 250.29199999999997, "totalQty": 49.0, "orderCount": 41, "margin": 482.7480000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2019-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 446.09, "totalRevenueExVAT": 373.04999999999995, "totalCost": 114.92999999999999, "totalQty": 45.0, "orderCount": 44, "margin": 258.11999999999995, "marginPct": 69.19179734620023}, {"YearMonth": "2019-06", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1108.62, "totalRevenueExVAT": 929.54, "totalCost": 419.976, "totalQty": 57.0, "orderCount": 53, "margin": 509.56399999999996, "marginPct": 54.818942702842264}, {"YearMonth": "2019-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 418.28999999999996, "totalRevenueExVAT": 353.90999999999997, "totalCost": 133.28699999999998, "totalQty": 33.0, "orderCount": 33, "margin": 220.623, "marginPct": 62.33873018564042}, {"YearMonth": "2019-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1642.54, "totalRevenueExVAT": 1372.1399999999999, "totalCost": 552.75, "totalQty": 66.0, "orderCount": 47, "margin": 819.3899999999999, "marginPct": 59.71620971620971}, {"YearMonth": "2019-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 711.4499999999999, "totalRevenueExVAT": 593.13, "totalCost": 232.50900000000001, "totalQty": 51.0, "orderCount": 47, "margin": 360.621, "marginPct": 60.799656061908856}, {"YearMonth": "2019-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 427.84999999999997, "totalRevenueExVAT": 356.46999999999997, "totalCost": 133.042, "totalQty": 43.0, "orderCount": 42, "margin": 223.42799999999997, "marginPct": 62.67792521109771}, {"YearMonth": "2019-06", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1712.56, "totalRevenueExVAT": 1444.24, "totalCost": 381.976, "totalQty": 56.0, "orderCount": 37, "margin": 1062.2640000000001, "marginPct": 73.5517642497092}, {"YearMonth": "2019-06", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2834.0600000000004, "totalRevenueExVAT": 2366.84, "totalCost": 654.278, "totalQty": 79.0, "orderCount": 52, "margin": 1712.5620000000001, "marginPct": 72.35647530040053}, {"YearMonth": "2019-06", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3261.22, "totalRevenueExVAT": 2723.76, "totalCost": 943.8, "totalQty": 156.0, "orderCount": 120, "margin": 1779.9600000000003, "marginPct": 65.34936998854525}, {"YearMonth": "2019-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1241.28, "totalRevenueExVAT": 1038.24, "totalCost": 397.824, "totalQty": 48.0, "orderCount": 47, "margin": 640.4159999999999, "marginPct": 61.682847896440116}, {"YearMonth": "2019-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 606.9, "totalRevenueExVAT": 505.67999999999995, "totalCost": 174.048, "totalQty": 42.0, "orderCount": 39, "margin": 331.63199999999995, "marginPct": 65.5813953488372}, {"YearMonth": "2019-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 877.25, "totalRevenueExVAT": 730.9499999999999, "totalCost": 268.62, "totalQty": 55.0, "orderCount": 50, "margin": 462.3299999999999, "marginPct": 63.25056433408578}, {"YearMonth": "2019-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2028.35, "totalRevenueExVAT": 1690.48, "totalCost": 348.153, "totalQty": 113.0, "orderCount": 88, "margin": 1342.327, "marginPct": 79.40508021390374}, {"YearMonth": "2019-06", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2076.2599999999998, "totalRevenueExVAT": 1736.2799999999997, "totalCost": 398.58, "totalQty": 182.0, "orderCount": 142, "margin": 1337.6999999999998, "marginPct": 77.04402515723271}, {"YearMonth": "2019-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 917.6999999999999, "totalRevenueExVAT": 764.98, "totalCost": 267.26, "totalQty": 46.0, "orderCount": 38, "margin": 497.72, "marginPct": 65.06313890559231}, {"YearMonth": "2019-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3557.58, "totalRevenueExVAT": 2969.46, "totalCost": 1439.1000000000001, "totalQty": 117.0, "orderCount": 72, "margin": 1530.36, "marginPct": 51.536643026004725}, {"YearMonth": "2019-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1251.83, "totalRevenueExVAT": 1043.3100000000002, "totalCost": 369.908, "totalQty": 77.0, "orderCount": 68, "margin": 673.4020000000002, "marginPct": 64.54476617687936}, {"YearMonth": "2019-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 628.75, "totalRevenueExVAT": 524.06, "totalCost": 170.542, "totalQty": 71.0, "orderCount": 71, "margin": 353.5179999999999, "marginPct": 67.4575430294241}, {"YearMonth": "2019-06", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 871.6999999999999, "totalRevenueExVAT": 726.3399999999999, "totalCost": 264.868, "totalQty": 46.0, "orderCount": 38, "margin": 461.4719999999999, "marginPct": 63.53388220392653}, {"YearMonth": "2019-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 366.84999999999997, "totalRevenueExVAT": 305.66999999999996, "totalCost": 42.067, "totalQty": 23.0, "orderCount": 23, "margin": 263.60299999999995, "marginPct": 86.23777276147479}, {"YearMonth": "2019-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 618.71, "totalRevenueExVAT": 518.96, "totalCost": 95.108, "totalQty": 26.0, "orderCount": 25, "margin": 423.85200000000003, "marginPct": 81.67334669338678}, {"YearMonth": "2019-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1935.1499999999999, "totalRevenueExVAT": 1613.11, "totalCost": 422.144, "totalQty": 97.0, "orderCount": 59, "margin": 1190.966, "marginPct": 73.83042693926637}, {"YearMonth": "2019-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 646.1999999999999, "totalRevenueExVAT": 538.5600000000001, "totalCost": 348.76800000000003, "totalQty": 36.0, "orderCount": 31, "margin": 189.79200000000003, "marginPct": 35.24064171122995}, {"YearMonth": "2019-06", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 460.93, "totalRevenueExVAT": 386.40000000000003, "totalCost": 108.0, "totalQty": 30.0, "orderCount": 30, "margin": 278.40000000000003, "marginPct": 72.04968944099379}, {"YearMonth": "2019-06", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1742.77, "totalRevenueExVAT": 1459.9, "totalCost": 586.3, "totalQty": 65.0, "orderCount": 44, "margin": 873.6000000000001, "marginPct": 59.83971504897596}, {"YearMonth": "2019-06", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 752.3900000000001, "totalRevenueExVAT": 632.51, "totalCost": 449.54, "totalQty": 19.0, "orderCount": 16, "margin": 182.96999999999997, "marginPct": 28.927605887653947}, {"YearMonth": "2019-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 811.8, "totalRevenueExVAT": 676.72, "totalCost": 249.744, "totalQty": 44.0, "orderCount": 39, "margin": 426.976, "marginPct": 63.09492847854356}, {"YearMonth": "2019-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 804.65, "totalRevenueExVAT": 670.6700000000001, "totalCost": 218.526, "totalQty": 77.0, "orderCount": 70, "margin": 452.14400000000006, "marginPct": 67.41676234213548}, {"YearMonth": "2019-06", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 22546.26, "totalRevenueExVAT": 18818.1, "totalCost": 7669.920000000001, "totalQty": 870.0, "orderCount": 670, "margin": 11148.179999999997, "marginPct": 59.24179380490059}, {"YearMonth": "2019-06", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 5733.22, "totalRevenueExVAT": 4783.68, "totalCost": 1886.148, "totalQty": 396.0, "orderCount": 348, "margin": 2897.532, "marginPct": 60.57119205298013}, {"YearMonth": "2019-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 797.5, "totalRevenueExVAT": 664.5, "totalCost": 289.7, "totalQty": 50.0, "orderCount": 38, "margin": 374.8, "marginPct": 56.403310759969905}, {"YearMonth": "2019-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1262.25, "totalRevenueExVAT": 1052.1499999999999, "totalCost": 353.87, "totalQty": 55.0, "orderCount": 45, "margin": 698.2799999999999, "marginPct": 66.36696288552012}, {"YearMonth": "2019-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1505.7, "totalRevenueExVAT": 1282.3200000000002, "totalCost": 501.85200000000003, "totalQty": 39.0, "orderCount": 33, "margin": 780.4680000000001, "marginPct": 60.86374695863746}, {"YearMonth": "2019-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 858.56, "totalRevenueExVAT": 717.44, "totalCost": 228.608, "totalQty": 64.0, "orderCount": 54, "margin": 488.83200000000005, "marginPct": 68.13559322033899}, {"YearMonth": "2019-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1040.25, "totalRevenueExVAT": 867.35, "totalCost": 183.73, "totalQty": 95.0, "orderCount": 92, "margin": 683.62, "marginPct": 78.8170865279299}, {"YearMonth": "2019-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 645.96, "totalRevenueExVAT": 541.26, "totalCost": 97.898, "totalQty": 31.0, "orderCount": 29, "margin": 443.36199999999997, "marginPct": 81.91294387170676}, {"YearMonth": "2019-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 744.93, "totalRevenueExVAT": 628.32, "totalCost": 214.53599999999997, "totalQty": 42.0, "orderCount": 31, "margin": 413.7840000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2019-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 266.99, "totalRevenueExVAT": 223.82999999999998, "totalCost": 68.958, "totalQty": 27.0, "orderCount": 27, "margin": 154.87199999999999, "marginPct": 69.19179734620023}, {"YearMonth": "2019-07", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1675.8, "totalRevenueExVAT": 1396.9199999999998, "totalCost": 618.912, "totalQty": 84.0, "orderCount": 62, "margin": 778.0079999999998, "marginPct": 55.69452796151533}, {"YearMonth": "2019-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1100.75, "totalRevenueExVAT": 917.15, "totalCost": 343.315, "totalQty": 85.0, "orderCount": 68, "margin": 573.835, "marginPct": 62.56719184430028}, {"YearMonth": "2019-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2145.7, "totalRevenueExVAT": 1787.9399999999998, "totalCost": 720.25, "totalQty": 86.0, "orderCount": 65, "margin": 1067.6899999999998, "marginPct": 59.71620971620971}, {"YearMonth": "2019-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1860.02, "totalRevenueExVAT": 1558.42, "totalCost": 610.9060000000001, "totalQty": 134.0, "orderCount": 105, "margin": 947.514, "marginPct": 60.799656061908856}, {"YearMonth": "2019-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 895.4999999999999, "totalRevenueExVAT": 746.0999999999999, "totalCost": 278.46, "totalQty": 90.0, "orderCount": 78, "margin": 467.63999999999993, "marginPct": 62.67792521109771}, {"YearMonth": "2019-07", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3646.94, "totalRevenueExVAT": 3043.22, "totalCost": 804.878, "totalQty": 118.0, "orderCount": 49, "margin": 2238.3419999999996, "marginPct": 73.55176424970918}, {"YearMonth": "2019-07", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 3271.4500000000003, "totalRevenueExVAT": 2726.36, "totalCost": 753.662, "totalQty": 91.0, "orderCount": 54, "margin": 1972.698, "marginPct": 72.35647530040053}, {"YearMonth": "2019-07", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 5963.7699999999995, "totalRevenueExVAT": 4976.1, "totalCost": 1724.25, "totalQty": 285.0, "orderCount": 168, "margin": 3251.8500000000004, "marginPct": 65.34936998854525}, {"YearMonth": "2019-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2439.2999999999997, "totalRevenueExVAT": 2033.22, "totalCost": 779.072, "totalQty": 94.0, "orderCount": 63, "margin": 1254.1480000000001, "marginPct": 61.68284789644014}, {"YearMonth": "2019-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1343.85, "totalRevenueExVAT": 1119.72, "totalCost": 385.392, "totalQty": 93.0, "orderCount": 69, "margin": 734.328, "marginPct": 65.5813953488372}, {"YearMonth": "2019-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1602.9699999999998, "totalRevenueExVAT": 1342.29, "totalCost": 493.28400000000005, "totalQty": 101.0, "orderCount": 68, "margin": 849.0059999999999, "marginPct": 63.250564334085766}, {"YearMonth": "2019-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 3431.45, "totalRevenueExVAT": 2872.32, "totalCost": 591.552, "totalQty": 192.0, "orderCount": 127, "margin": 2280.768, "marginPct": 79.40508021390374}, {"YearMonth": "2019-07", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2125.8799999999997, "totalRevenueExVAT": 1774.4399999999998, "totalCost": 407.34, "totalQty": 186.0, "orderCount": 140, "margin": 1367.1, "marginPct": 77.04402515723271}, {"YearMonth": "2019-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1549.4599999999998, "totalRevenueExVAT": 1297.1399999999999, "totalCost": 453.17999999999995, "totalQty": 78.0, "orderCount": 58, "margin": 843.9599999999999, "marginPct": 65.0631389055923}, {"YearMonth": "2019-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 7439.969999999999, "totalRevenueExVAT": 6218.099999999999, "totalCost": 3013.5000000000005, "totalQty": 245.0, "orderCount": 122, "margin": 3204.599999999999, "marginPct": 51.53664302600471}, {"YearMonth": "2019-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1294.07, "totalRevenueExVAT": 1083.0900000000001, "totalCost": 379.516, "totalQty": 79.0, "orderCount": 63, "margin": 703.5740000000001, "marginPct": 64.9598832968636}, {"YearMonth": "2019-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 778.65, "totalRevenueExVAT": 649.02, "totalCost": 208.97400000000002, "totalQty": 87.0, "orderCount": 82, "margin": 440.04599999999994, "marginPct": 67.80160857908847}, {"YearMonth": "2019-07", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1607.59, "totalRevenueExVAT": 1342.1499999999999, "totalCost": 489.43, "totalQty": 85.0, "orderCount": 63, "margin": 852.7199999999998, "marginPct": 63.53388220392653}, {"YearMonth": "2019-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 855.9799999999999, "totalRevenueExVAT": 717.66, "totalCost": 98.766, "totalQty": 54.0, "orderCount": 43, "margin": 618.894, "marginPct": 86.2377727614748}, {"YearMonth": "2019-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 814.3, "totalRevenueExVAT": 678.64, "totalCost": 124.372, "totalQty": 34.0, "orderCount": 26, "margin": 554.268, "marginPct": 81.67334669338679}, {"YearMonth": "2019-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2630.08, "totalRevenueExVAT": 2195.16, "totalCost": 574.464, "totalQty": 132.0, "orderCount": 83, "margin": 1620.696, "marginPct": 73.83042693926639}, {"YearMonth": "2019-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1570.6299999999999, "totalRevenueExVAT": 1316.48, "totalCost": 852.544, "totalQty": 88.0, "orderCount": 65, "margin": 463.93600000000004, "marginPct": 35.24064171122995}, {"YearMonth": "2019-07", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 880.65, "totalRevenueExVAT": 734.1600000000001, "totalCost": 205.20000000000002, "totalQty": 57.0, "orderCount": 54, "margin": 528.96, "marginPct": 72.04968944099377}, {"YearMonth": "2019-07", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1724.8, "totalRevenueExVAT": 1437.44, "totalCost": 577.28, "totalQty": 64.0, "orderCount": 40, "margin": 860.1600000000001, "marginPct": 59.83971504897596}, {"YearMonth": "2019-07", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1478.15, "totalRevenueExVAT": 1231.73, "totalCost": 875.4200000000001, "totalQty": 37.0, "orderCount": 22, "margin": 356.30999999999995, "marginPct": 28.927605887653947}, {"YearMonth": "2019-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 645.75, "totalRevenueExVAT": 538.3000000000001, "totalCost": 198.66, "totalQty": 35.0, "orderCount": 29, "margin": 339.6400000000001, "marginPct": 63.09492847854358}, {"YearMonth": "2019-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1628.4599999999998, "totalRevenueExVAT": 1358.7600000000002, "totalCost": 442.728, "totalQty": 156.0, "orderCount": 92, "margin": 916.0320000000002, "marginPct": 67.41676234213547}, {"YearMonth": "2019-07", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 34846.56, "totalRevenueExVAT": 29070.72, "totalCost": 11848.704, "totalQty": 1344.0, "orderCount": 770, "margin": 17222.016000000003, "marginPct": 59.24179380490061}, {"YearMonth": "2019-07", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 13246.3, "totalRevenueExVAT": 11053.2, "totalCost": 4358.1449999999995, "totalQty": 915.0, "orderCount": 581, "margin": 6695.055000000001, "marginPct": 60.57119205298014}, {"YearMonth": "2019-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1052.6999999999998, "totalRevenueExVAT": 877.14, "totalCost": 382.404, "totalQty": 66.0, "orderCount": 46, "margin": 494.736, "marginPct": 56.403310759969905}, {"YearMonth": "2019-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2773.13, "totalRevenueExVAT": 2314.73, "totalCost": 778.514, "totalQty": 121.0, "orderCount": 101, "margin": 1536.216, "marginPct": 66.36696288552012}, {"YearMonth": "2019-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2005.38, "totalRevenueExVAT": 1676.88, "totalCost": 656.268, "totalQty": 51.0, "orderCount": 37, "margin": 1020.6120000000001, "marginPct": 60.86374695863746}, {"YearMonth": "2019-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1681.2499999999998, "totalRevenueExVAT": 1401.25, "totalCost": 446.5, "totalQty": 125.0, "orderCount": 89, "margin": 954.75, "marginPct": 68.13559322033899}, {"YearMonth": "2019-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1664.3999999999999, "totalRevenueExVAT": 1387.76, "totalCost": 293.96799999999996, "totalQty": 152.0, "orderCount": 131, "margin": 1093.792, "marginPct": 78.81708652792989}, {"YearMonth": "2019-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1106.86, "totalRevenueExVAT": 925.38, "totalCost": 167.374, "totalQty": 53.0, "orderCount": 47, "margin": 758.006, "marginPct": 81.91294387170676}, {"YearMonth": "2019-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1256.5, "totalRevenueExVAT": 1047.2, "totalCost": 357.55999999999995, "totalQty": 70.0, "orderCount": 47, "margin": 689.6400000000001, "marginPct": 65.85561497326204}, {"YearMonth": "2019-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 723.03, "totalRevenueExVAT": 605.17, "totalCost": 186.44199999999998, "totalQty": 73.0, "orderCount": 60, "margin": 418.72799999999995, "marginPct": 69.19179734620023}, {"YearMonth": "2019-08", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1037.3999999999999, "totalRevenueExVAT": 864.76, "totalCost": 383.136, "totalQty": 52.0, "orderCount": 42, "margin": 481.62399999999997, "marginPct": 55.69452796151533}, {"YearMonth": "2019-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 373.39, "totalRevenueExVAT": 312.90999999999997, "totalCost": 117.13099999999999, "totalQty": 29.0, "orderCount": 29, "margin": 195.779, "marginPct": 62.56719184430028}, {"YearMonth": "2019-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 998.0, "totalRevenueExVAT": 831.5999999999999, "totalCost": 335.0, "totalQty": 40.0, "orderCount": 34, "margin": 496.5999999999999, "marginPct": 59.71620971620971}, {"YearMonth": "2019-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 530.1, "totalRevenueExVAT": 441.94000000000005, "totalCost": 173.24200000000002, "totalQty": 38.0, "orderCount": 37, "margin": 268.69800000000004, "marginPct": 60.799656061908856}, {"YearMonth": "2019-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 288.54999999999995, "totalRevenueExVAT": 240.40999999999997, "totalCost": 89.726, "totalQty": 29.0, "orderCount": 28, "margin": 150.68399999999997, "marginPct": 62.67792521109771}, {"YearMonth": "2019-08", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1227.68, "totalRevenueExVAT": 1031.6, "totalCost": 272.84, "totalQty": 40.0, "orderCount": 34, "margin": 758.76, "marginPct": 73.5517642497092}, {"YearMonth": "2019-08", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1042.5500000000002, "totalRevenueExVAT": 868.84, "totalCost": 240.178, "totalQty": 29.0, "orderCount": 26, "margin": 628.662, "marginPct": 72.35647530040053}, {"YearMonth": "2019-08", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3142.5, "totalRevenueExVAT": 2619.0, "totalCost": 907.5, "totalQty": 150.0, "orderCount": 120, "margin": 1711.5, "marginPct": 65.34936998854525}, {"YearMonth": "2019-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1029.36, "totalRevenueExVAT": 865.1999999999999, "totalCost": 331.52000000000004, "totalQty": 40.0, "orderCount": 36, "margin": 533.6799999999998, "marginPct": 61.682847896440116}, {"YearMonth": "2019-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 578.0, "totalRevenueExVAT": 481.59999999999997, "totalCost": 165.76, "totalQty": 40.0, "orderCount": 35, "margin": 315.84, "marginPct": 65.58139534883722}, {"YearMonth": "2019-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 810.79, "totalRevenueExVAT": 677.79, "totalCost": 249.084, "totalQty": 51.0, "orderCount": 38, "margin": 428.70599999999996, "marginPct": 63.25056433408578}, {"YearMonth": "2019-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1142.82, "totalRevenueExVAT": 957.44, "totalCost": 197.184, "totalQty": 64.0, "orderCount": 51, "margin": 760.2560000000001, "marginPct": 79.40508021390374}, {"YearMonth": "2019-08", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1122.1, "totalRevenueExVAT": 934.92, "totalCost": 214.62, "totalQty": 98.0, "orderCount": 77, "margin": 720.3, "marginPct": 77.0440251572327}, {"YearMonth": "2019-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 555.28, "totalRevenueExVAT": 465.64, "totalCost": 162.67999999999998, "totalQty": 28.0, "orderCount": 26, "margin": 302.96000000000004, "marginPct": 65.06313890559231}, {"YearMonth": "2019-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 1547.8799999999999, "totalRevenueExVAT": 1294.3799999999999, "totalCost": 627.3000000000001, "totalQty": 51.0, "orderCount": 39, "margin": 667.0799999999998, "marginPct": 51.53664302600471}, {"YearMonth": "2019-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 882.8199999999999, "totalRevenueExVAT": 740.34, "totalCost": 259.416, "totalQty": 54.0, "orderCount": 50, "margin": 480.92400000000004, "marginPct": 64.95988329686361}, {"YearMonth": "2019-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 526.56, "totalRevenueExVAT": 440.14, "totalCost": 141.71800000000002, "totalQty": 59.0, "orderCount": 58, "margin": 298.42199999999997, "marginPct": 67.80160857908847}, {"YearMonth": "2019-08", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 489.53999999999996, "totalRevenueExVAT": 410.53999999999996, "totalCost": 149.708, "totalQty": 26.0, "orderCount": 21, "margin": 260.832, "marginPct": 63.53388220392654}, {"YearMonth": "2019-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 204.69, "totalRevenueExVAT": 172.76999999999998, "totalCost": 23.777, "totalQty": 13.0, "orderCount": 13, "margin": 148.993, "marginPct": 86.2377727614748}, {"YearMonth": "2019-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 335.3, "totalRevenueExVAT": 279.44, "totalCost": 51.211999999999996, "totalQty": 14.0, "orderCount": 14, "margin": 228.228, "marginPct": 81.67334669338678}, {"YearMonth": "2019-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1177.05, "totalRevenueExVAT": 981.17, "totalCost": 256.76800000000003, "totalQty": 59.0, "orderCount": 51, "margin": 724.4019999999999, "marginPct": 73.83042693926637}, {"YearMonth": "2019-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 287.2, "totalRevenueExVAT": 239.36, "totalCost": 155.008, "totalQty": 16.0, "orderCount": 16, "margin": 84.352, "marginPct": 35.24064171122995}, {"YearMonth": "2019-08", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 169.95, "totalRevenueExVAT": 141.68, "totalCost": 39.6, "totalQty": 11.0, "orderCount": 11, "margin": 102.08000000000001, "marginPct": 72.04968944099379}, {"YearMonth": "2019-08", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 485.09999999999997, "totalRevenueExVAT": 404.28000000000003, "totalCost": 162.35999999999999, "totalQty": 18.0, "orderCount": 15, "margin": 241.92000000000004, "marginPct": 59.83971504897596}, {"YearMonth": "2019-08", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 825.6300000000001, "totalRevenueExVAT": 699.0899999999999, "totalCost": 496.86, "totalQty": 21.0, "orderCount": 18, "margin": 202.2299999999999, "marginPct": 28.92760588765394}, {"YearMonth": "2019-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 369.0, "totalRevenueExVAT": 307.6, "totalCost": 113.52000000000001, "totalQty": 20.0, "orderCount": 20, "margin": 194.08, "marginPct": 63.094928478543565}, {"YearMonth": "2019-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 512.05, "totalRevenueExVAT": 426.79, "totalCost": 139.062, "totalQty": 49.0, "orderCount": 47, "margin": 287.728, "marginPct": 67.41676234213547}, {"YearMonth": "2019-08", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 13087.47, "totalRevenueExVAT": 10923.15, "totalCost": 4452.08, "totalQty": 505.0, "orderCount": 423, "margin": 6471.07, "marginPct": 59.2417938049006}, {"YearMonth": "2019-08", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 3376.17, "totalRevenueExVAT": 2814.64, "totalCost": 1109.779, "totalQty": 233.0, "orderCount": 219, "margin": 1704.8609999999999, "marginPct": 60.57119205298013}, {"YearMonth": "2019-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 398.75, "totalRevenueExVAT": 332.25, "totalCost": 144.85, "totalQty": 25.0, "orderCount": 23, "margin": 187.4, "marginPct": 56.403310759969905}, {"YearMonth": "2019-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 933.31, "totalRevenueExVAT": 784.3299999999999, "totalCost": 263.794, "totalQty": 41.0, "orderCount": 38, "margin": 520.536, "marginPct": 66.36696288552012}, {"YearMonth": "2019-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 933.6600000000001, "totalRevenueExVAT": 789.1200000000001, "totalCost": 308.832, "totalQty": 24.0, "orderCount": 23, "margin": 480.2880000000001, "marginPct": 60.86374695863748}, {"YearMonth": "2019-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 304.87, "totalRevenueExVAT": 257.83000000000004, "totalCost": 82.156, "totalQty": 23.0, "orderCount": 21, "margin": 175.67400000000004, "marginPct": 68.13559322033899}, {"YearMonth": "2019-08", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 382.81000000000006, "totalRevenueExVAT": 323.52, "totalCost": 94.08, "totalQty": 12.0, "orderCount": 9, "margin": 229.44, "marginPct": 70.91988130563799}, {"YearMonth": "2019-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 653.36, "totalRevenueExVAT": 547.8000000000001, "totalCost": 116.03999999999999, "totalQty": 60.0, "orderCount": 59, "margin": 431.7600000000001, "marginPct": 78.81708652792992}, {"YearMonth": "2019-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 419.0, "totalRevenueExVAT": 349.20000000000005, "totalCost": 63.16, "totalQty": 20.0, "orderCount": 18, "margin": 286.0400000000001, "marginPct": 81.91294387170677}, {"YearMonth": "2019-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 502.59999999999997, "totalRevenueExVAT": 418.88, "totalCost": 143.024, "totalQty": 28.0, "orderCount": 24, "margin": 275.856, "marginPct": 65.85561497326204}, {"YearMonth": "2019-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 268.65, "totalRevenueExVAT": 223.82999999999998, "totalCost": 68.958, "totalQty": 27.0, "orderCount": 26, "margin": 154.87199999999999, "marginPct": 69.19179734620023}, {"YearMonth": "2019-09", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1214.6399999999999, "totalRevenueExVAT": 1014.76, "totalCost": 471.552, "totalQty": 64.0, "orderCount": 58, "margin": 543.208, "marginPct": 53.53068705900902}, {"YearMonth": "2019-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 491.8, "totalRevenueExVAT": 413.24, "totalCost": 161.56, "totalQty": 40.0, "orderCount": 40, "margin": 251.68, "marginPct": 60.90407511373536}, {"YearMonth": "2019-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1822.2, "totalRevenueExVAT": 1521.79, "totalCost": 644.875, "totalQty": 77.0, "orderCount": 62, "margin": 876.915, "marginPct": 57.62391657193173}, {"YearMonth": "2019-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 678.55, "totalRevenueExVAT": 565.4, "totalCost": 232.50900000000001, "totalQty": 51.0, "orderCount": 51, "margin": 332.89099999999996, "marginPct": 58.87707817474354}, {"YearMonth": "2019-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 428.24999999999994, "totalRevenueExVAT": 357.06, "totalCost": 139.23, "totalQty": 45.0, "orderCount": 45, "margin": 217.83, "marginPct": 61.00655352041674}, {"YearMonth": "2019-09", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1618.3, "totalRevenueExVAT": 1352.66, "totalCost": 375.155, "totalQty": 55.0, "orderCount": 47, "margin": 977.5050000000001, "marginPct": 72.26538819806899}, {"YearMonth": "2019-09", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2219.46, "totalRevenueExVAT": 1854.4, "totalCost": 538.33, "totalQty": 65.0, "orderCount": 48, "margin": 1316.0700000000002, "marginPct": 70.9701251078516}, {"YearMonth": "2019-09", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 4485.9, "totalRevenueExVAT": 3739.71, "totalCost": 1361.25, "totalQty": 225.0, "orderCount": 161, "margin": 2378.46, "marginPct": 63.60011872578355}, {"YearMonth": "2019-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1189.7, "totalRevenueExVAT": 991.37, "totalCost": 397.824, "totalQty": 48.0, "orderCount": 48, "margin": 593.546, "marginPct": 59.871289226020565}, {"YearMonth": "2019-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 714.5500000000001, "totalRevenueExVAT": 597.28, "totalCost": 215.488, "totalQty": 52.0, "orderCount": 51, "margin": 381.792, "marginPct": 63.92177873024377}, {"YearMonth": "2019-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1078.85, "totalRevenueExVAT": 899.37, "totalCost": 346.764, "totalQty": 71.0, "orderCount": 59, "margin": 552.606, "marginPct": 61.443677240735184}, {"YearMonth": "2019-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1761.5500000000002, "totalRevenueExVAT": 1468.13, "totalCost": 317.343, "totalQty": 103.0, "orderCount": 90, "margin": 1150.787, "marginPct": 78.38454360308693}, {"YearMonth": "2019-09", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1840.67, "totalRevenueExVAT": 1537.38, "totalCost": 370.11, "totalQty": 169.0, "orderCount": 131, "margin": 1167.27, "marginPct": 75.92592592592592}, {"YearMonth": "2019-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1380.87, "totalRevenueExVAT": 1158.55, "totalCost": 424.13, "totalQty": 73.0, "orderCount": 50, "margin": 734.42, "marginPct": 63.39130810064304}, {"YearMonth": "2019-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3334.29, "totalRevenueExVAT": 2782.81, "totalCost": 1414.5, "totalQty": 115.0, "orderCount": 84, "margin": 1368.31, "marginPct": 49.17008347677347}, {"YearMonth": "2019-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1324.97, "totalRevenueExVAT": 1108.08, "totalCost": 408.34000000000003, "totalQty": 85.0, "orderCount": 75, "margin": 699.7399999999999, "marginPct": 63.148870117681035}, {"YearMonth": "2019-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 895.65, "totalRevenueExVAT": 747.04, "totalCost": 252.21, "totalQty": 105.0, "orderCount": 99, "margin": 494.8299999999999, "marginPct": 66.23875562218889}, {"YearMonth": "2019-09", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1060.75, "totalRevenueExVAT": 888.95, "totalCost": 339.722, "totalQty": 59.0, "orderCount": 51, "margin": 549.2280000000001, "marginPct": 61.783902356712986}, {"YearMonth": "2019-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 487.2, "totalRevenueExVAT": 406.14000000000004, "totalCost": 58.528, "totalQty": 32.0, "orderCount": 29, "margin": 347.612, "marginPct": 85.58920569261831}, {"YearMonth": "2019-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 768.32, "totalRevenueExVAT": 646.64, "totalCost": 124.372, "totalQty": 34.0, "orderCount": 31, "margin": 522.268, "marginPct": 80.76642335766424}, {"YearMonth": "2019-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1255.7, "totalRevenueExVAT": 1046.34, "totalCost": 287.232, "totalQty": 66.0, "orderCount": 58, "margin": 759.108, "marginPct": 72.5488846837548}, {"YearMonth": "2019-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 987.86, "totalRevenueExVAT": 825.6800000000001, "totalCost": 561.904, "totalQty": 58.0, "orderCount": 50, "margin": 263.77600000000007, "marginPct": 31.946516810386594}, {"YearMonth": "2019-09", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 618.87, "totalRevenueExVAT": 515.61, "totalCost": 151.20000000000002, "totalQty": 42.0, "orderCount": 39, "margin": 364.40999999999997, "marginPct": 70.6755105603072}, {"YearMonth": "2019-09", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1432.0400000000002, "totalRevenueExVAT": 1197.28, "totalCost": 505.12, "totalQty": 56.0, "orderCount": 48, "margin": 692.16, "marginPct": 57.8110383536015}, {"YearMonth": "2019-09", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1180.45, "totalRevenueExVAT": 983.85, "totalCost": 733.46, "totalQty": 31.0, "orderCount": 25, "margin": 250.39, "marginPct": 25.45001778726432}, {"YearMonth": "2019-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 667.98, "totalRevenueExVAT": 556.72, "totalCost": 215.68800000000002, "totalQty": 38.0, "orderCount": 38, "margin": 341.03200000000004, "marginPct": 61.25736456387413}, {"YearMonth": "2019-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 489.69, "totalRevenueExVAT": 407.87, "totalCost": 139.062, "totalQty": 49.0, "orderCount": 49, "margin": 268.808, "marginPct": 65.90531296736705}, {"YearMonth": "2019-09", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "120 Tablets", "Category": "Herbal Supplements", "totalRevenue": 2430.1, "totalRevenueExVAT": 2025.25, "totalCost": 846.336, "totalQty": 96.0, "orderCount": 82, "margin": 1178.914, "marginPct": 58.21078879150722}, {"YearMonth": "2019-09", "Description": "Turmeric + Bioperine® 10,000mg", "SKUDescription": "60 Tablets", "Category": "Herbal Supplements", "totalRevenue": 651.42, "totalRevenueExVAT": 542.87, "totalCost": 219.09799999999998, "totalQty": 46.0, "orderCount": 40, "margin": 323.77200000000005, "marginPct": 59.640797981100455}, {"YearMonth": "2019-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 793.4, "totalRevenueExVAT": 661.38, "totalCost": 301.28799999999995, "totalQty": 52.0, "orderCount": 43, "margin": 360.09200000000004, "marginPct": 54.44555323717077}, {"YearMonth": "2019-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1006.25, "totalRevenueExVAT": 838.7, "totalCost": 295.964, "totalQty": 46.0, "orderCount": 42, "margin": 542.7360000000001, "marginPct": 64.71157744127818}, {"YearMonth": "2019-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1203.3, "totalRevenueExVAT": 1002.66, "totalCost": 411.776, "totalQty": 32.0, "orderCount": 27, "margin": 590.884, "marginPct": 58.93164183272496}, {"YearMonth": "2019-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 675.0899999999999, "totalRevenueExVAT": 566.13, "totalCost": 189.316, "totalQty": 53.0, "orderCount": 52, "margin": 376.81399999999996, "marginPct": 66.55962411460264}, {"YearMonth": "2019-09", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 765.62, "totalRevenueExVAT": 647.04, "totalCost": 188.16, "totalQty": 24.0, "orderCount": 20, "margin": 458.88, "marginPct": 70.91988130563799}, {"YearMonth": "2019-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 940.4, "totalRevenueExVAT": 783.98, "totalCost": 174.06, "totalQty": 90.0, "orderCount": 87, "margin": 609.9200000000001, "marginPct": 77.7979030077298}, {"YearMonth": "2019-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 778.1999999999999, "totalRevenueExVAT": 648.75, "totalCost": 123.16199999999999, "totalQty": 39.0, "orderCount": 33, "margin": 525.588, "marginPct": 81.01549132947976}, {"YearMonth": "2019-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 832.47, "totalRevenueExVAT": 698.5400000000001, "totalCost": 250.29199999999997, "totalQty": 49.0, "orderCount": 41, "margin": 448.2480000000001, "marginPct": 64.16926732900049}, {"YearMonth": "2019-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 442.91999999999996, "totalRevenueExVAT": 372.0, "totalCost": 120.038, "totalQty": 47.0, "orderCount": 45, "margin": 251.962, "marginPct": 67.73172043010753}, {"YearMonth": "2019-10", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1788.5, "totalRevenueExVAT": 1490.82, "totalCost": 663.12, "totalQty": 90.0, "orderCount": 68, "margin": 827.6999999999999, "marginPct": 55.51978106008774}, {"YearMonth": "2019-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 736.1999999999999, "totalRevenueExVAT": 613.41, "totalCost": 230.22299999999998, "totalQty": 57.0, "orderCount": 42, "margin": 383.187, "marginPct": 62.46833276275249}, {"YearMonth": "2019-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1714.05, "totalRevenueExVAT": 1428.27, "totalCost": 577.875, "totalQty": 69.0, "orderCount": 51, "margin": 850.395, "marginPct": 59.54021298493982}, {"YearMonth": "2019-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1362.1999999999998, "totalRevenueExVAT": 1135.6100000000001, "totalCost": 446.78200000000004, "totalQty": 98.0, "orderCount": 86, "margin": 688.8280000000001, "marginPct": 60.657091783270666}, {"YearMonth": "2019-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 505.45, "totalRevenueExVAT": 421.15, "totalCost": 157.79399999999998, "totalQty": 51.0, "orderCount": 43, "margin": 263.356, "marginPct": 62.532589338715425}, {"YearMonth": "2019-10", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1929.72, "totalRevenueExVAT": 1620.9, "totalCost": 429.723, "totalQty": 63.0, "orderCount": 42, "margin": 1191.1770000000001, "marginPct": 73.48861743475848}, {"YearMonth": "2019-10", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1937.78, "totalRevenueExVAT": 1614.76, "totalCost": 463.79200000000003, "totalQty": 56.0, "orderCount": 44, "margin": 1150.9679999999998, "marginPct": 71.27796081151378}, {"YearMonth": "2019-10", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 4412.37, "totalRevenueExVAT": 3683.25, "totalCost": 1282.6, "totalQty": 212.0, "orderCount": 136, "margin": 2400.65, "marginPct": 65.17749270345483}, {"YearMonth": "2019-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1397.3999999999999, "totalRevenueExVAT": 1164.75, "totalCost": 447.552, "totalQty": 54.0, "orderCount": 42, "margin": 717.198, "marginPct": 61.57527366387636}, {"YearMonth": "2019-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1264.1499999999999, "totalRevenueExVAT": 1055.32, "totalCost": 364.672, "totalQty": 88.0, "orderCount": 67, "margin": 690.6479999999999, "marginPct": 65.44441496418148}, {"YearMonth": "2019-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1331.0, "totalRevenueExVAT": 1109.1, "totalCost": 410.25600000000003, "totalQty": 84.0, "orderCount": 57, "margin": 698.8439999999998, "marginPct": 63.01000811468758}, {"YearMonth": "2019-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2055.8599999999997, "totalRevenueExVAT": 1715.9, "totalCost": 354.315, "totalQty": 115.0, "orderCount": 76, "margin": 1361.585, "marginPct": 79.35106940963925}, {"YearMonth": "2019-10", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2257.66, "totalRevenueExVAT": 1880.9799999999998, "totalCost": 444.57, "totalQty": 203.0, "orderCount": 159, "margin": 1436.4099999999999, "marginPct": 76.36497995725632}, {"YearMonth": "2019-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1292.75, "totalRevenueExVAT": 1077.59, "totalCost": 377.65, "totalQty": 65.0, "orderCount": 53, "margin": 699.9399999999999, "marginPct": 64.95420336120416}, {"YearMonth": "2019-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 4269.12, "totalRevenueExVAT": 3570.96, "totalCost": 1734.3000000000002, "totalQty": 141.0, "orderCount": 70, "margin": 1836.6599999999999, "marginPct": 51.43322803951879}, {"YearMonth": "2019-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1433.1, "totalRevenueExVAT": 1198.89, "totalCost": 422.752, "totalQty": 88.0, "orderCount": 75, "margin": 776.1380000000001, "marginPct": 64.73804936232682}, {"YearMonth": "2019-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 881.55, "totalRevenueExVAT": 734.84, "totalCost": 237.798, "totalQty": 99.0, "orderCount": 83, "margin": 497.04200000000003, "marginPct": 67.63948614664417}, {"YearMonth": "2019-10", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1201.09, "totalRevenueExVAT": 1003.4499999999999, "totalCost": 368.512, "totalQty": 64.0, "orderCount": 46, "margin": 634.9379999999999, "marginPct": 63.275499526633105}, {"YearMonth": "2019-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 461.75, "totalRevenueExVAT": 384.75, "totalCost": 53.041, "totalQty": 29.0, "orderCount": 29, "margin": 331.709, "marginPct": 86.21416504223521}, {"YearMonth": "2019-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 1002.3, "totalRevenueExVAT": 835.32, "totalCost": 153.636, "totalQty": 42.0, "orderCount": 30, "margin": 681.6840000000001, "marginPct": 81.6075276540727}, {"YearMonth": "2019-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2028.8999999999999, "totalRevenueExVAT": 1691.22, "totalCost": 443.90400000000005, "totalQty": 102.0, "orderCount": 69, "margin": 1247.316, "marginPct": 73.7524390676553}, {"YearMonth": "2019-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 814.18, "totalRevenueExVAT": 685.9100000000001, "totalCost": 445.648, "totalQty": 46.0, "orderCount": 40, "margin": 240.26200000000006, "marginPct": 35.02821069819656}, {"YearMonth": "2019-10", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 673.12, "totalRevenueExVAT": 565.4200000000001, "totalCost": 158.4, "totalQty": 44.0, "orderCount": 36, "margin": 407.0200000000001, "marginPct": 71.98542676240672}, {"YearMonth": "2019-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 857.91, "totalRevenueExVAT": 718.72, "totalCost": 288.64, "totalQty": 32.0, "orderCount": 25, "margin": 430.08000000000004, "marginPct": 59.83971504897596}, {"YearMonth": "2019-10", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 975.4300000000001, "totalRevenueExVAT": 823.95, "totalCost": 591.5, "totalQty": 25.0, "orderCount": 18, "margin": 232.45000000000005, "marginPct": 28.211663329085507}, {"YearMonth": "2019-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 770.91, "totalRevenueExVAT": 645.19, "totalCost": 238.392, "totalQty": 42.0, "orderCount": 33, "margin": 406.79800000000006, "marginPct": 63.050884235651516}, {"YearMonth": "2019-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 968.7299999999999, "totalRevenueExVAT": 807.3900000000001, "totalCost": 263.934, "totalQty": 93.0, "orderCount": 71, "margin": 543.4560000000001, "marginPct": 67.3102218258834}, {"YearMonth": "2019-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 854.78, "totalRevenueExVAT": 714.36, "totalCost": 312.876, "totalQty": 54.0, "orderCount": 44, "margin": 401.48400000000004, "marginPct": 56.20191500083992}, {"YearMonth": "2019-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1426.71, "totalRevenueExVAT": 1195.59, "totalCost": 405.342, "totalQty": 63.0, "orderCount": 51, "margin": 790.2479999999999, "marginPct": 66.09690613002786}, {"YearMonth": "2019-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1135.51, "totalRevenueExVAT": 951.8700000000001, "totalCost": 373.172, "totalQty": 29.0, "orderCount": 17, "margin": 578.6980000000001, "marginPct": 60.795907004107704}, {"YearMonth": "2019-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 954.28, "totalRevenueExVAT": 795.35, "totalCost": 253.61200000000002, "totalQty": 71.0, "orderCount": 54, "margin": 541.738, "marginPct": 68.11315772930156}, {"YearMonth": "2019-10", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 528.46, "totalRevenueExVAT": 440.4, "totalCost": 117.6, "totalQty": 15.0, "orderCount": 10, "margin": 322.79999999999995, "marginPct": 73.29700272479563}, {"YearMonth": "2019-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1271.0, "totalRevenueExVAT": 1062.69, "totalCost": 226.278, "totalQty": 117.0, "orderCount": 106, "margin": 836.412, "marginPct": 78.70705473844677}, {"YearMonth": "2019-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 456.7, "totalRevenueExVAT": 380.64, "totalCost": 69.476, "totalQty": 22.0, "orderCount": 22, "margin": 311.164, "marginPct": 81.74758301807482}, {"YearMonth": "2019-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 821.1999999999999, "totalRevenueExVAT": 684.4100000000001, "totalCost": 234.968, "totalQty": 46.0, "orderCount": 35, "margin": 449.4420000000001, "marginPct": 65.66853202028025}, {"YearMonth": "2019-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 386.04999999999995, "totalRevenueExVAT": 321.66999999999996, "totalCost": 99.606, "totalQty": 39.0, "orderCount": 34, "margin": 222.06399999999996, "marginPct": 69.03472502875617}, {"YearMonth": "2019-11", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1562.77, "totalRevenueExVAT": 1313.77, "totalCost": 582.072, "totalQty": 79.0, "orderCount": 57, "margin": 731.698, "marginPct": 55.69452796151533}, {"YearMonth": "2019-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 375.54999999999995, "totalRevenueExVAT": 312.90999999999997, "totalCost": 117.13099999999999, "totalQty": 29.0, "orderCount": 29, "margin": 195.779, "marginPct": 62.56719184430028}, {"YearMonth": "2019-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1397.2, "totalRevenueExVAT": 1164.24, "totalCost": 469.0, "totalQty": 56.0, "orderCount": 49, "margin": 695.24, "marginPct": 59.71620971620971}, {"YearMonth": "2019-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 625.43, "totalRevenueExVAT": 523.35, "totalCost": 205.155, "totalQty": 45.0, "orderCount": 43, "margin": 318.19500000000005, "marginPct": 60.79965606190887}, {"YearMonth": "2019-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 557.1999999999999, "totalRevenueExVAT": 464.23999999999995, "totalCost": 173.26399999999998, "totalQty": 56.0, "orderCount": 52, "margin": 290.976, "marginPct": 62.677925211097715}, {"YearMonth": "2019-11", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1758.98, "totalRevenueExVAT": 1495.82, "totalCost": 395.618, "totalQty": 58.0, "orderCount": 46, "margin": 1100.202, "marginPct": 73.5517642497092}, {"YearMonth": "2019-11", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1653.7, "totalRevenueExVAT": 1378.16, "totalCost": 380.972, "totalQty": 46.0, "orderCount": 40, "margin": 997.1880000000001, "marginPct": 72.35647530040053}, {"YearMonth": "2019-11", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 4043.35, "totalRevenueExVAT": 3369.78, "totalCost": 1167.6499999999999, "totalQty": 193.0, "orderCount": 141, "margin": 2202.13, "marginPct": 65.34936998854525}, {"YearMonth": "2019-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1297.5, "totalRevenueExVAT": 1081.5, "totalCost": 414.40000000000003, "totalQty": 50.0, "orderCount": 49, "margin": 667.0999999999999, "marginPct": 61.682847896440116}, {"YearMonth": "2019-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 922.39, "totalRevenueExVAT": 770.56, "totalCost": 265.216, "totalQty": 64.0, "orderCount": 62, "margin": 505.34399999999994, "marginPct": 65.5813953488372}, {"YearMonth": "2019-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1111.1799999999998, "totalRevenueExVAT": 930.3, "totalCost": 341.88, "totalQty": 70.0, "orderCount": 60, "margin": 588.42, "marginPct": 63.25056433408578}, {"YearMonth": "2019-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1941.6, "totalRevenueExVAT": 1630.64, "totalCost": 335.829, "totalQty": 109.0, "orderCount": 85, "margin": 1294.8110000000001, "marginPct": 79.40508021390374}, {"YearMonth": "2019-11", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2459.83, "totalRevenueExVAT": 2060.64, "totalCost": 473.03999999999996, "totalQty": 216.0, "orderCount": 166, "margin": 1587.6, "marginPct": 77.04402515723271}, {"YearMonth": "2019-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 891.11, "totalRevenueExVAT": 748.3499999999999, "totalCost": 261.45, "totalQty": 45.0, "orderCount": 41, "margin": 486.8999999999999, "marginPct": 65.0631389055923}, {"YearMonth": "2019-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3227.73, "totalRevenueExVAT": 2715.66, "totalCost": 1316.1000000000001, "totalQty": 107.0, "orderCount": 80, "margin": 1399.5599999999997, "marginPct": 51.536643026004725}, {"YearMonth": "2019-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 995.23, "totalRevenueExVAT": 836.3100000000001, "totalCost": 293.04400000000004, "totalQty": 61.0, "orderCount": 57, "margin": 543.2660000000001, "marginPct": 64.95988329686361}, {"YearMonth": "2019-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 793.5699999999999, "totalRevenueExVAT": 663.9399999999999, "totalCost": 213.77800000000002, "totalQty": 89.0, "orderCount": 82, "margin": 450.1619999999999, "marginPct": 67.80160857908847}, {"YearMonth": "2019-11", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 773.79, "totalRevenueExVAT": 647.39, "totalCost": 236.078, "totalQty": 41.0, "orderCount": 36, "margin": 411.312, "marginPct": 63.53388220392654}, {"YearMonth": "2019-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 571.54, "totalRevenueExVAT": 478.43999999999994, "totalCost": 65.844, "totalQty": 36.0, "orderCount": 35, "margin": 412.59599999999995, "marginPct": 86.2377727614748}, {"YearMonth": "2019-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 598.75, "totalRevenueExVAT": 499.0, "totalCost": 91.45, "totalQty": 25.0, "orderCount": 25, "margin": 407.55, "marginPct": 81.67334669338678}, {"YearMonth": "2019-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2071.48, "totalRevenueExVAT": 1729.52, "totalCost": 452.60800000000006, "totalQty": 104.0, "orderCount": 81, "margin": 1276.9119999999998, "marginPct": 73.83042693926637}, {"YearMonth": "2019-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 912.4599999999999, "totalRevenueExVAT": 762.96, "totalCost": 494.088, "totalQty": 51.0, "orderCount": 48, "margin": 268.872, "marginPct": 35.24064171122995}, {"YearMonth": "2019-11", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 365.65999999999997, "totalRevenueExVAT": 309.12, "totalCost": 86.4, "totalQty": 24.0, "orderCount": 23, "margin": 222.72, "marginPct": 72.04968944099379}, {"YearMonth": "2019-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1266.6499999999999, "totalRevenueExVAT": 1055.6200000000001, "totalCost": 423.94, "totalQty": 47.0, "orderCount": 41, "margin": 631.6800000000001, "marginPct": 59.83971504897596}, {"YearMonth": "2019-11", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1158.5500000000002, "totalRevenueExVAT": 965.41, "totalCost": 686.14, "totalQty": 29.0, "orderCount": 22, "margin": 279.27, "marginPct": 28.92760588765395}, {"YearMonth": "2019-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 535.05, "totalRevenueExVAT": 446.02000000000004, "totalCost": 164.604, "totalQty": 29.0, "orderCount": 29, "margin": 281.41600000000005, "marginPct": 63.094928478543565}, {"YearMonth": "2019-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 595.65, "totalRevenueExVAT": 496.47, "totalCost": 161.766, "totalQty": 57.0, "orderCount": 53, "margin": 334.70400000000006, "marginPct": 67.41676234213548}, {"YearMonth": "2019-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 749.65, "totalRevenueExVAT": 624.63, "totalCost": 272.318, "totalQty": 47.0, "orderCount": 38, "margin": 352.312, "marginPct": 56.403310759969905}, {"YearMonth": "2019-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1285.2, "totalRevenueExVAT": 1071.28, "totalCost": 360.30400000000003, "totalQty": 56.0, "orderCount": 50, "margin": 710.9759999999999, "marginPct": 66.36696288552012}, {"YearMonth": "2019-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1183.5, "totalRevenueExVAT": 986.4000000000001, "totalCost": 386.04, "totalQty": 30.0, "orderCount": 30, "margin": 600.3600000000001, "marginPct": 60.86374695863748}, {"YearMonth": "2019-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 508.85999999999996, "totalRevenueExVAT": 425.98, "totalCost": 135.736, "totalQty": 38.0, "orderCount": 38, "margin": 290.244, "marginPct": 68.13559322033899}, {"YearMonth": "2019-11", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 826.85, "totalRevenueExVAT": 689.08, "totalCost": 180.32, "totalQty": 23.0, "orderCount": 18, "margin": 508.76000000000005, "marginPct": 73.83177570093457}, {"YearMonth": "2019-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1385.1899999999998, "totalRevenueExVAT": 1159.51, "totalCost": 245.618, "totalQty": 127.0, "orderCount": 118, "margin": 913.892, "marginPct": 78.8170865279299}, {"YearMonth": "2019-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 712.3, "totalRevenueExVAT": 593.64, "totalCost": 107.372, "totalQty": 34.0, "orderCount": 30, "margin": 486.268, "marginPct": 81.91294387170676}, {"YearMonth": "2019-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1077.0, "totalRevenueExVAT": 897.6, "totalCost": 306.47999999999996, "totalQty": 60.0, "orderCount": 50, "margin": 591.1200000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2019-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 436.14, "totalRevenueExVAT": 364.76, "totalCost": 112.37599999999999, "totalQty": 44.0, "orderCount": 42, "margin": 252.38400000000001, "marginPct": 69.19179734620025}, {"YearMonth": "2019-12", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1110.56, "totalRevenueExVAT": 931.28, "totalCost": 412.608, "totalQty": 56.0, "orderCount": 40, "margin": 518.672, "marginPct": 55.69452796151534}, {"YearMonth": "2019-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 407.91999999999996, "totalRevenueExVAT": 345.28, "totalCost": 129.248, "totalQty": 32.0, "orderCount": 32, "margin": 216.03199999999998, "marginPct": 62.567191844300275}, {"YearMonth": "2019-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 923.15, "totalRevenueExVAT": 769.23, "totalCost": 309.875, "totalQty": 37.0, "orderCount": 32, "margin": 459.355, "marginPct": 59.71620971620971}, {"YearMonth": "2019-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 613.8, "totalRevenueExVAT": 511.72, "totalCost": 200.596, "totalQty": 44.0, "orderCount": 37, "margin": 311.124, "marginPct": 60.799656061908856}, {"YearMonth": "2019-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 368.15, "totalRevenueExVAT": 306.72999999999996, "totalCost": 114.478, "totalQty": 37.0, "orderCount": 33, "margin": 192.25199999999995, "marginPct": 62.677925211097694}, {"YearMonth": "2019-12", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1666.1399999999999, "totalRevenueExVAT": 1392.6599999999999, "totalCost": 368.334, "totalQty": 54.0, "orderCount": 44, "margin": 1024.3259999999998, "marginPct": 73.55176424970918}, {"YearMonth": "2019-12", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1539.8600000000001, "totalRevenueExVAT": 1288.28, "totalCost": 356.126, "totalQty": 43.0, "orderCount": 27, "margin": 932.154, "marginPct": 72.35647530040053}, {"YearMonth": "2019-12", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3306.6099999999997, "totalRevenueExVAT": 2758.6800000000003, "totalCost": 955.9, "totalQty": 158.0, "orderCount": 109, "margin": 1802.7800000000002, "marginPct": 65.34936998854525}, {"YearMonth": "2019-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1241.28, "totalRevenueExVAT": 1038.24, "totalCost": 397.824, "totalQty": 48.0, "orderCount": 39, "margin": 640.4159999999999, "marginPct": 61.682847896440116}, {"YearMonth": "2019-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 951.29, "totalRevenueExVAT": 794.64, "totalCost": 273.504, "totalQty": 66.0, "orderCount": 52, "margin": 521.136, "marginPct": 65.5813953488372}, {"YearMonth": "2019-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 938.39, "totalRevenueExVAT": 784.1099999999999, "totalCost": 288.156, "totalQty": 59.0, "orderCount": 44, "margin": 495.9539999999999, "marginPct": 63.250564334085766}, {"YearMonth": "2019-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1881.76, "totalRevenueExVAT": 1570.8000000000002, "totalCost": 323.505, "totalQty": 105.0, "orderCount": 83, "margin": 1247.295, "marginPct": 79.40508021390373}, {"YearMonth": "2019-12", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1957.9499999999998, "totalRevenueExVAT": 1631.34, "totalCost": 374.49, "totalQty": 171.0, "orderCount": 130, "margin": 1256.85, "marginPct": 77.0440251572327}, {"YearMonth": "2019-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1077.3, "totalRevenueExVAT": 898.02, "totalCost": 313.74, "totalQty": 54.0, "orderCount": 41, "margin": 584.28, "marginPct": 65.0631389055923}, {"YearMonth": "2019-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3684.45, "totalRevenueExVAT": 3070.98, "totalCost": 1488.3000000000002, "totalQty": 121.0, "orderCount": 63, "margin": 1582.6799999999998, "marginPct": 51.536643026004725}, {"YearMonth": "2019-12", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 918.4599999999999, "totalRevenueExVAT": 767.76, "totalCost": 269.024, "totalQty": 56.0, "orderCount": 49, "margin": 498.736, "marginPct": 64.95988329686361}, {"YearMonth": "2019-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 635.4499999999999, "totalRevenueExVAT": 529.66, "totalCost": 170.542, "totalQty": 71.0, "orderCount": 65, "margin": 359.11799999999994, "marginPct": 67.80160857908847}, {"YearMonth": "2019-12", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1193.85, "totalRevenueExVAT": 994.77, "totalCost": 362.754, "totalQty": 63.0, "orderCount": 41, "margin": 632.016, "marginPct": 63.53388220392653}, {"YearMonth": "2019-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 653.9499999999999, "totalRevenueExVAT": 544.89, "totalCost": 74.989, "totalQty": 41.0, "orderCount": 38, "margin": 469.90099999999995, "marginPct": 86.23777276147479}, {"YearMonth": "2019-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 447.07, "totalRevenueExVAT": 379.24, "totalCost": 69.502, "totalQty": 19.0, "orderCount": 18, "margin": 309.738, "marginPct": 81.67334669338678}, {"YearMonth": "2019-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1552.78, "totalRevenueExVAT": 1297.1399999999999, "totalCost": 339.456, "totalQty": 78.0, "orderCount": 56, "margin": 957.6839999999999, "marginPct": 73.83042693926637}, {"YearMonth": "2019-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 951.3499999999999, "totalRevenueExVAT": 792.88, "totalCost": 513.464, "totalQty": 53.0, "orderCount": 46, "margin": 279.41599999999994, "marginPct": 35.240641711229934}, {"YearMonth": "2019-12", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 757.05, "totalRevenueExVAT": 631.12, "totalCost": 176.4, "totalQty": 49.0, "orderCount": 42, "margin": 454.72, "marginPct": 72.04968944099379}, {"YearMonth": "2019-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 997.15, "totalRevenueExVAT": 831.02, "totalCost": 333.74, "totalQty": 37.0, "orderCount": 31, "margin": 497.28, "marginPct": 59.83971504897595}, {"YearMonth": "2019-12", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 599.25, "totalRevenueExVAT": 499.34999999999997, "totalCost": 354.9, "totalQty": 15.0, "orderCount": 13, "margin": 144.45, "marginPct": 28.92760588765395}, {"YearMonth": "2019-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 553.5, "totalRevenueExVAT": 461.40000000000003, "totalCost": 170.28, "totalQty": 30.0, "orderCount": 26, "margin": 291.12, "marginPct": 63.09492847854356}, {"YearMonth": "2019-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 604.36, "totalRevenueExVAT": 505.18000000000006, "totalCost": 164.604, "totalQty": 58.0, "orderCount": 49, "margin": 340.576, "marginPct": 67.41676234213547}, {"YearMonth": "2019-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9770.189999999999, "totalRevenueExVAT": 8154.51, "totalCost": 3323.632, "totalQty": 377.0, "orderCount": 245, "margin": 4830.878000000001, "marginPct": 59.24179380490061}, {"YearMonth": "2019-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3098.45, "totalRevenueExVAT": 2585.12, "totalCost": 1019.2819999999999, "totalQty": 214.0, "orderCount": 155, "margin": 1565.838, "marginPct": 60.57119205298014}, {"YearMonth": "2019-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 818.76, "totalRevenueExVAT": 691.0799999999999, "totalCost": 301.28799999999995, "totalQty": 52.0, "orderCount": 35, "margin": 389.792, "marginPct": 56.403310759969905}, {"YearMonth": "2019-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1005.9799999999999, "totalRevenueExVAT": 841.72, "totalCost": 283.096, "totalQty": 44.0, "orderCount": 38, "margin": 558.624, "marginPct": 66.36696288552014}, {"YearMonth": "2019-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 907.35, "totalRevenueExVAT": 756.2400000000001, "totalCost": 295.964, "totalQty": 23.0, "orderCount": 20, "margin": 460.2760000000001, "marginPct": 60.86374695863748}, {"YearMonth": "2019-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 643.36, "totalRevenueExVAT": 538.08, "totalCost": 171.45600000000002, "totalQty": 48.0, "orderCount": 44, "margin": 366.624, "marginPct": 68.13559322033899}, {"YearMonth": "2019-12", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 323.55, "totalRevenueExVAT": 269.64, "totalCost": 70.56, "totalQty": 9.0, "orderCount": 9, "margin": 199.07999999999998, "marginPct": 73.83177570093457}, {"YearMonth": "2019-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1093.1799999999998, "totalRevenueExVAT": 913.0000000000001, "totalCost": 193.4, "totalQty": 100.0, "orderCount": 98, "margin": 719.6000000000001, "marginPct": 78.8170865279299}, {"YearMonth": "2019-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 541.21, "totalRevenueExVAT": 453.96000000000004, "totalCost": 82.108, "totalQty": 26.0, "orderCount": 24, "margin": 371.85200000000003, "marginPct": 81.91294387170676}, {"YearMonth": "2019-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 972.3, "totalRevenueExVAT": 822.8000000000001, "totalCost": 280.94, "totalQty": 55.0, "orderCount": 42, "margin": 541.8600000000001, "marginPct": 65.85561497326205}, {"YearMonth": "2019-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 475.93999999999994, "totalRevenueExVAT": 397.91999999999996, "totalCost": 122.59199999999998, "totalQty": 48.0, "orderCount": 45, "margin": 275.328, "marginPct": 69.19179734620025}, {"YearMonth": "2020-01", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 2227.7599999999998, "totalRevenueExVAT": 1862.56, "totalCost": 825.216, "totalQty": 112.0, "orderCount": 75, "margin": 1037.344, "marginPct": 55.69452796151534}, {"YearMonth": "2020-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 725.1999999999999, "totalRevenueExVAT": 604.24, "totalCost": 226.18399999999997, "totalQty": 56.0, "orderCount": 51, "margin": 378.05600000000004, "marginPct": 62.56719184430028}, {"YearMonth": "2020-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2470.0499999999997, "totalRevenueExVAT": 2058.21, "totalCost": 829.125, "totalQty": 99.0, "orderCount": 67, "margin": 1229.085, "marginPct": 59.71620971620971}, {"YearMonth": "2020-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1769.33, "totalRevenueExVAT": 1477.01, "totalCost": 578.993, "totalQty": 127.0, "orderCount": 109, "margin": 898.0169999999999, "marginPct": 60.799656061908856}, {"YearMonth": "2020-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 812.5799999999999, "totalRevenueExVAT": 679.78, "totalCost": 253.708, "totalQty": 82.0, "orderCount": 68, "margin": 426.072, "marginPct": 62.67792521109771}, {"YearMonth": "2020-01", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 3404.5, "totalRevenueExVAT": 2836.9, "totalCost": 750.31, "totalQty": 110.0, "orderCount": 72, "margin": 2086.59, "marginPct": 73.5517642497092}, {"YearMonth": "2020-01", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 3091.7000000000003, "totalRevenueExVAT": 2576.56, "totalCost": 712.252, "totalQty": 86.0, "orderCount": 47, "margin": 1864.308, "marginPct": 72.35647530040053}, {"YearMonth": "2020-01", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 5960.28, "totalRevenueExVAT": 4976.1, "totalCost": 1724.25, "totalQty": 285.0, "orderCount": 179, "margin": 3251.8500000000004, "marginPct": 65.34936998854525}, {"YearMonth": "2020-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1440.24, "totalRevenueExVAT": 1211.28, "totalCost": 464.12800000000004, "totalQty": 56.0, "orderCount": 45, "margin": 747.1519999999999, "marginPct": 61.68284789644013}, {"YearMonth": "2020-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1387.1999999999998, "totalRevenueExVAT": 1155.84, "totalCost": 397.824, "totalQty": 96.0, "orderCount": 61, "margin": 758.0159999999998, "marginPct": 65.5813953488372}, {"YearMonth": "2020-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 925.0999999999999, "totalRevenueExVAT": 770.8199999999999, "totalCost": 283.27200000000005, "totalQty": 58.0, "orderCount": 50, "margin": 487.5479999999999, "marginPct": 63.250564334085766}, {"YearMonth": "2020-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2632.67, "totalRevenueExVAT": 2199.1200000000003, "totalCost": 452.907, "totalQty": 147.0, "orderCount": 94, "margin": 1746.2130000000004, "marginPct": 79.40508021390374}, {"YearMonth": "2020-01", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3921.62, "totalRevenueExVAT": 3272.22, "totalCost": 751.17, "totalQty": 343.0, "orderCount": 235, "margin": 2521.0499999999997, "marginPct": 77.0440251572327}, {"YearMonth": "2020-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1881.97, "totalRevenueExVAT": 1579.85, "totalCost": 551.9499999999999, "totalQty": 95.0, "orderCount": 64, "margin": 1027.9, "marginPct": 65.06313890559231}, {"YearMonth": "2020-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 7983.0, "totalRevenueExVAT": 6674.94, "totalCost": 3234.9000000000005, "totalQty": 263.0, "orderCount": 113, "margin": 3440.039999999999, "marginPct": 51.53664302600471}, {"YearMonth": "2020-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2031.58, "totalRevenueExVAT": 1700.0400000000002, "totalCost": 595.696, "totalQty": 124.0, "orderCount": 100, "margin": 1104.344, "marginPct": 64.9598832968636}, {"YearMonth": "2020-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1117.26, "totalRevenueExVAT": 932.5, "totalCost": 300.25, "totalQty": 125.0, "orderCount": 109, "margin": 632.25, "marginPct": 67.80160857908847}, {"YearMonth": "2020-01", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1733.9199999999998, "totalRevenueExVAT": 1452.6799999999998, "totalCost": 529.736, "totalQty": 92.0, "orderCount": 61, "margin": 922.9439999999998, "marginPct": 63.53388220392653}, {"YearMonth": "2020-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 1068.6499999999999, "totalRevenueExVAT": 890.43, "totalCost": 122.54299999999999, "totalQty": 67.0, "orderCount": 56, "margin": 767.887, "marginPct": 86.2377727614748}, {"YearMonth": "2020-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 1245.3999999999999, "totalRevenueExVAT": 1037.92, "totalCost": 190.216, "totalQty": 52.0, "orderCount": 39, "margin": 847.7040000000001, "marginPct": 81.67334669338678}, {"YearMonth": "2020-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2134.65, "totalRevenueExVAT": 1779.4099999999999, "totalCost": 465.66400000000004, "totalQty": 107.0, "orderCount": 69, "margin": 1313.7459999999999, "marginPct": 73.83042693926637}, {"YearMonth": "2020-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1561.6699999999998, "totalRevenueExVAT": 1331.44, "totalCost": 862.2320000000001, "totalQty": 89.0, "orderCount": 72, "margin": 469.20799999999997, "marginPct": 35.24064171122994}, {"YearMonth": "2020-01", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 787.9499999999999, "totalRevenueExVAT": 656.88, "totalCost": 183.6, "totalQty": 51.0, "orderCount": 43, "margin": 473.28, "marginPct": 72.04968944099377}, {"YearMonth": "2020-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1320.55, "totalRevenueExVAT": 1100.54, "totalCost": 441.97999999999996, "totalQty": 49.0, "orderCount": 34, "margin": 658.56, "marginPct": 59.83971504897595}, {"YearMonth": "2020-01", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 2317.1000000000004, "totalRevenueExVAT": 1930.8200000000002, "totalCost": 1372.28, "totalQty": 58.0, "orderCount": 27, "margin": 558.5400000000002, "marginPct": 28.927605887653957}, {"YearMonth": "2020-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 793.3499999999999, "totalRevenueExVAT": 661.34, "totalCost": 244.068, "totalQty": 43.0, "orderCount": 40, "margin": 417.27200000000005, "marginPct": 63.094928478543565}, {"YearMonth": "2020-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1043.26, "totalRevenueExVAT": 871.0000000000001, "totalCost": 283.8, "totalQty": 100.0, "orderCount": 79, "margin": 587.2, "marginPct": 67.41676234213547}, {"YearMonth": "2020-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 28947.27, "totalRevenueExVAT": 24160.71, "totalCost": 9847.472, "totalQty": 1117.0, "orderCount": 689, "margin": 14313.238, "marginPct": 59.2417938049006}, {"YearMonth": "2020-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 14197.82, "totalRevenueExVAT": 11850.48, "totalCost": 4672.503, "totalQty": 981.0, "orderCount": 642, "margin": 7177.977, "marginPct": 60.57119205298014}, {"YearMonth": "2020-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1084.6, "totalRevenueExVAT": 903.7199999999999, "totalCost": 393.99199999999996, "totalQty": 68.0, "orderCount": 54, "margin": 509.72799999999995, "marginPct": 56.403310759969905}, {"YearMonth": "2020-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2249.1, "totalRevenueExVAT": 1874.74, "totalCost": 630.532, "totalQty": 98.0, "orderCount": 81, "margin": 1244.208, "marginPct": 66.36696288552014}, {"YearMonth": "2020-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1985.67, "totalRevenueExVAT": 1676.88, "totalCost": 656.268, "totalQty": 51.0, "orderCount": 39, "margin": 1020.6120000000001, "marginPct": 60.86374695863746}, {"YearMonth": "2020-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1394.32, "totalRevenueExVAT": 1165.8400000000001, "totalCost": 371.488, "totalQty": 104.0, "orderCount": 81, "margin": 794.3520000000001, "marginPct": 68.13559322033899}, {"YearMonth": "2020-01", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 1324.16, "totalRevenueExVAT": 1108.52, "totalCost": 290.08, "totalQty": 37.0, "orderCount": 25, "margin": 818.44, "marginPct": 73.83177570093459}, {"YearMonth": "2020-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1784.85, "totalRevenueExVAT": 1488.19, "totalCost": 315.24199999999996, "totalQty": 163.0, "orderCount": 142, "margin": 1172.948, "marginPct": 78.8170865279299}, {"YearMonth": "2020-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 984.65, "totalRevenueExVAT": 820.62, "totalCost": 148.426, "totalQty": 47.0, "orderCount": 38, "margin": 672.194, "marginPct": 81.91294387170676}, {"YearMonth": "2020-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1681.32, "totalRevenueExVAT": 1406.24, "totalCost": 480.152, "totalQty": 94.0, "orderCount": 62, "margin": 926.088, "marginPct": 65.85561497326204}, {"YearMonth": "2020-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 905.4499999999999, "totalRevenueExVAT": 754.3899999999999, "totalCost": 232.414, "totalQty": 91.0, "orderCount": 71, "margin": 521.9759999999999, "marginPct": 69.19179734620023}, {"YearMonth": "2020-02", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 814.63, "totalRevenueExVAT": 681.8299999999999, "totalCost": 308.04, "totalQty": 41.0, "orderCount": 32, "margin": 373.7899999999999, "marginPct": 54.82158309255972}, {"YearMonth": "2020-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 233.1, "totalRevenueExVAT": 194.21999999999997, "totalCost": 76.157, "totalQty": 18.0, "orderCount": 18, "margin": 118.06299999999997, "marginPct": 60.78828133045}, {"YearMonth": "2020-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 644.54, "totalRevenueExVAT": 540.54, "totalCost": 205.23, "totalQty": 26.0, "orderCount": 24, "margin": 335.30999999999995, "marginPct": 62.03241203241202}, {"YearMonth": "2020-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 390.59999999999997, "totalRevenueExVAT": 325.64000000000004, "totalCost": 123.10900000000001, "totalQty": 28.0, "orderCount": 24, "margin": 202.53100000000003, "marginPct": 62.194754944110066}, {"YearMonth": "2020-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 238.79999999999998, "totalRevenueExVAT": 198.95999999999998, "totalCost": 78.44, "totalQty": 24.0, "orderCount": 21, "margin": 120.51999999999998, "marginPct": 60.574989947728184}, {"YearMonth": "2020-02", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 665.42, "totalRevenueExVAT": 567.38, "totalCost": 153.835, "totalQty": 22.0, "orderCount": 18, "margin": 413.54499999999996, "marginPct": 72.8867778208608}, {"YearMonth": "2020-02", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 862.8000000000001, "totalRevenueExVAT": 719.04, "totalCost": 206.512, "totalQty": 24.0, "orderCount": 21, "margin": 512.528, "marginPct": 71.27948375611928}, {"YearMonth": "2020-02", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 1634.1, "totalRevenueExVAT": 1361.88, "totalCost": 489.65999999999997, "totalQty": 78.0, "orderCount": 60, "margin": 872.2200000000001, "marginPct": 64.04529033395013}, {"YearMonth": "2020-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 700.65, "totalRevenueExVAT": 584.01, "totalCost": 249.984, "totalQty": 27.0, "orderCount": 26, "margin": 334.02599999999995, "marginPct": 57.19525350593311}, {"YearMonth": "2020-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 390.15, "totalRevenueExVAT": 325.08, "totalCost": 119.168, "totalQty": 27.0, "orderCount": 25, "margin": 205.91199999999998, "marginPct": 63.34194659776055}, {"YearMonth": "2020-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 765.5999999999999, "totalRevenueExVAT": 637.92, "totalCost": 245.73600000000002, "totalQty": 48.0, "orderCount": 38, "margin": 392.18399999999997, "marginPct": 61.478555304740404}, {"YearMonth": "2020-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 861.5999999999999, "totalRevenueExVAT": 718.08, "totalCost": 154.578, "totalQty": 48.0, "orderCount": 36, "margin": 563.5020000000001, "marginPct": 78.47342914438504}, {"YearMonth": "2020-02", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1385.4499999999998, "totalRevenueExVAT": 1154.34, "totalCost": 269.61, "totalQty": 121.0, "orderCount": 102, "margin": 884.7299999999999, "marginPct": 76.64379645511721}, {"YearMonth": "2020-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 558.6, "totalRevenueExVAT": 465.64, "totalCost": 145.65, "totalQty": 28.0, "orderCount": 23, "margin": 319.99, "marginPct": 68.72047074993559}, {"YearMonth": "2020-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 1329.6599999999999, "totalRevenueExVAT": 1116.72, "totalCost": 557.0, "totalQty": 44.0, "orderCount": 34, "margin": 559.72, "marginPct": 50.1217852281682}, {"YearMonth": "2020-02", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 739.05, "totalRevenueExVAT": 615.81, "totalCost": 240.186, "totalQty": 39.0, "orderCount": 31, "margin": 375.6239999999999, "marginPct": 60.996736006235686}, {"YearMonth": "2020-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 430.65, "totalRevenueExVAT": 358.83, "totalCost": 54.64, "totalQty": 27.0, "orderCount": 26, "margin": 304.19, "marginPct": 84.77273360644317}, {"YearMonth": "2020-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 455.05, "totalRevenueExVAT": 379.24, "totalCost": 74.008, "totalQty": 19.0, "orderCount": 16, "margin": 305.232, "marginPct": 80.48518088809197}, {"YearMonth": "2020-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 758.1, "totalRevenueExVAT": 631.9399999999999, "totalCost": 172.37800000000001, "totalQty": 38.0, "orderCount": 34, "margin": 459.5619999999999, "marginPct": 72.72241035541349}, {"YearMonth": "2020-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 694.9499999999999, "totalRevenueExVAT": 579.33, "totalCost": 271.94, "totalQty": 41.0, "orderCount": 35, "margin": 307.39000000000004, "marginPct": 53.059568812248635}, {"YearMonth": "2020-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 283.5, "totalRevenueExVAT": 236.4, "totalCost": 97.84, "totalQty": 30.0, "orderCount": 29, "margin": 138.56, "marginPct": 58.612521150592215}, {"YearMonth": "2020-02", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 438.9, "totalRevenueExVAT": 365.85999999999996, "totalCost": 158.256, "totalQty": 22.0, "orderCount": 18, "margin": 207.60399999999996, "marginPct": 56.744109768764005}, {"YearMonth": "2020-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 323.09999999999997, "totalRevenueExVAT": 269.28000000000003, "totalCost": 169.056, "totalQty": 18.0, "orderCount": 18, "margin": 100.22400000000002, "marginPct": 37.219251336898395}, {"YearMonth": "2020-02", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 309.0, "totalRevenueExVAT": 257.6, "totalCost": 72.72, "totalQty": 20.0, "orderCount": 18, "margin": 184.88000000000002, "marginPct": 71.77018633540374}, {"YearMonth": "2020-02", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 377.3, "totalRevenueExVAT": 314.44, "totalCost": 132.44, "totalQty": 14.0, "orderCount": 12, "margin": 182.0, "marginPct": 57.88067675868211}, {"YearMonth": "2020-02", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 319.6, "totalRevenueExVAT": 266.32, "totalCost": 189.28, "totalQty": 8.0, "orderCount": 8, "margin": 77.03999999999999, "marginPct": 28.927605887653947}, {"YearMonth": "2020-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 310.58, "totalRevenueExVAT": 261.46000000000004, "totalCost": 104.508, "totalQty": 17.0, "orderCount": 17, "margin": 156.95200000000006, "marginPct": 60.02906754379256}, {"YearMonth": "2020-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 480.7, "totalRevenueExVAT": 400.66, "totalCost": 136.56, "totalQty": 46.0, "orderCount": 46, "margin": 264.1, "marginPct": 65.91623820695852}, {"YearMonth": "2020-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10713.029999999999, "totalRevenueExVAT": 8933.189999999999, "totalCost": 3774.128, "totalQty": 413.0, "orderCount": 350, "margin": 5159.061999999998, "marginPct": 57.751620641674464}, {"YearMonth": "2020-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3139.54, "totalRevenueExVAT": 2633.44, "totalCost": 1086.365, "totalQty": 218.0, "orderCount": 206, "margin": 1547.075, "marginPct": 58.747303906677196}, {"YearMonth": "2020-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 239.25, "totalRevenueExVAT": 199.35, "totalCost": 87.122, "totalQty": 15.0, "orderCount": 15, "margin": 112.228, "marginPct": 56.296965136694254}, {"YearMonth": "2020-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 550.8, "totalRevenueExVAT": 459.12, "totalCost": 154.108, "totalQty": 24.0, "orderCount": 24, "margin": 305.012, "marginPct": 66.43404774350931}, {"YearMonth": "2020-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 624.63, "totalRevenueExVAT": 526.08, "totalCost": 205.888, "totalQty": 16.0, "orderCount": 14, "margin": 320.192, "marginPct": 60.86374695863746}, {"YearMonth": "2020-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 255.54999999999998, "totalRevenueExVAT": 212.99, "totalCost": 69.1, "totalQty": 19.0, "orderCount": 19, "margin": 143.89000000000001, "marginPct": 67.55716230808959}, {"YearMonth": "2020-02", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 215.70000000000002, "totalRevenueExVAT": 179.76, "totalCost": 48.44, "totalQty": 6.0, "orderCount": 5, "margin": 131.32, "marginPct": 73.05295950155764}, {"YearMonth": "2020-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 863.2299999999999, "totalRevenueExVAT": 721.2700000000001, "totalCost": 171.75799999999998, "totalQty": 79.0, "orderCount": 75, "margin": 549.5120000000002, "marginPct": 76.18672619130147}, {"YearMonth": "2020-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 356.15, "totalRevenueExVAT": 296.82, "totalCost": 60.614, "totalQty": 17.0, "orderCount": 17, "margin": 236.206, "marginPct": 79.57886934842665}, {"YearMonth": "2020-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 502.59999999999997, "totalRevenueExVAT": 418.88, "totalCost": 154.672, "totalQty": 28.0, "orderCount": 21, "margin": 264.20799999999997, "marginPct": 63.074866310160424}, {"YearMonth": "2020-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 308.45, "totalRevenueExVAT": 256.98999999999995, "totalCost": 82.91799999999999, "totalQty": 31.0, "orderCount": 29, "margin": 174.07199999999995, "marginPct": 67.73493132028483}, {"YearMonth": "2020-03", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1436.3999999999999, "totalRevenueExVAT": 1197.36, "totalCost": 601.92, "totalQty": 72.0, "orderCount": 56, "margin": 595.4399999999999, "marginPct": 49.7294046903187}, {"YearMonth": "2020-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 528.79, "totalRevenueExVAT": 442.39, "totalCost": 193.93, "totalQty": 41.0, "orderCount": 41, "margin": 248.45999999999998, "marginPct": 56.16311399443929}, {"YearMonth": "2020-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1817.19, "totalRevenueExVAT": 1517.6699999999998, "totalCost": 497.13, "totalQty": 73.0, "orderCount": 64, "margin": 1020.5399999999998, "marginPct": 67.24386724386724}, {"YearMonth": "2020-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1141.58, "totalRevenueExVAT": 953.6600000000001, "totalCost": 320.62, "totalQty": 82.0, "orderCount": 80, "margin": 633.0400000000001, "marginPct": 66.38005159071368}, {"YearMonth": "2020-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 447.74999999999994, "totalRevenueExVAT": 373.04999999999995, "totalCost": 186.29999999999998, "totalQty": 45.0, "orderCount": 43, "margin": 186.74999999999997, "marginPct": 50.06031363088058}, {"YearMonth": "2020-03", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1392.75, "totalRevenueExVAT": 1160.55, "totalCost": 331.2, "totalQty": 45.0, "orderCount": 41, "margin": 829.3499999999999, "marginPct": 71.46180690189996}, {"YearMonth": "2020-03", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 2013.2000000000003, "totalRevenueExVAT": 1677.76, "totalCost": 518.0, "totalQty": 56.0, "orderCount": 47, "margin": 1159.76, "marginPct": 69.12550066755674}, {"YearMonth": "2020-03", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 3051.72, "totalRevenueExVAT": 2549.1600000000003, "totalCost": 1099.38, "totalQty": 146.0, "orderCount": 116, "margin": 1449.7800000000002, "marginPct": 56.87285223367697}, {"YearMonth": "2020-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 960.15, "totalRevenueExVAT": 800.31, "totalCost": 414.4, "totalQty": 37.0, "orderCount": 36, "margin": 385.90999999999997, "marginPct": 48.22006472491909}, {"YearMonth": "2020-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1546.1499999999999, "totalRevenueExVAT": 1288.28, "totalCost": 599.1999999999999, "totalQty": 107.0, "orderCount": 86, "margin": 689.08, "marginPct": 53.48837209302326}, {"YearMonth": "2020-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 813.4499999999999, "totalRevenueExVAT": 677.79, "totalCost": 313.14, "totalQty": 51.0, "orderCount": 43, "margin": 364.65, "marginPct": 53.799849510910455}, {"YearMonth": "2020-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1651.3999999999999, "totalRevenueExVAT": 1376.3200000000002, "totalCost": 345.0, "totalQty": 92.0, "orderCount": 83, "margin": 1031.3200000000002, "marginPct": 74.93315508021391}, {"YearMonth": "2020-03", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2671.66, "totalRevenueExVAT": 2232.3599999999997, "totalCost": 561.6, "totalQty": 234.0, "orderCount": 167, "margin": 1670.7599999999998, "marginPct": 74.8427672955975}, {"YearMonth": "2020-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 977.55, "totalRevenueExVAT": 814.8699999999999, "totalCost": 220.5, "totalQty": 49.0, "orderCount": 44, "margin": 594.3699999999999, "marginPct": 72.94046903187011}, {"YearMonth": "2020-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2704.98, "totalRevenueExVAT": 2258.82, "totalCost": 1235.3200000000002, "totalQty": 89.0, "orderCount": 62, "margin": 1023.5, "marginPct": 45.31126871552404}, {"YearMonth": "2020-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 523.66, "totalRevenueExVAT": 438.72, "totalCost": 181.76, "totalQty": 32.0, "orderCount": 28, "margin": 256.96000000000004, "marginPct": 58.570386579139324}, {"YearMonth": "2020-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 912.9, "totalRevenueExVAT": 760.92, "totalCost": 289.68, "totalQty": 102.0, "orderCount": 79, "margin": 471.23999999999995, "marginPct": 61.93029490616622}, {"YearMonth": "2020-03", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 622.1899999999999, "totalRevenueExVAT": 521.0699999999999, "totalCost": 232.98, "totalQty": 33.0, "orderCount": 25, "margin": 288.0899999999999, "marginPct": 55.28815706143128}, {"YearMonth": "2020-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 749.65, "totalRevenueExVAT": 624.63, "totalCost": 121.26, "totalQty": 47.0, "orderCount": 42, "margin": 503.37, "marginPct": 80.58690744920993}, {"YearMonth": "2020-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 287.4, "totalRevenueExVAT": 239.52, "totalCost": 61.92, "totalQty": 12.0, "orderCount": 12, "margin": 177.60000000000002, "marginPct": 74.14829659318639}, {"YearMonth": "2020-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1077.3, "totalRevenueExVAT": 898.02, "totalCost": 277.02, "totalQty": 54.0, "orderCount": 51, "margin": 621.0, "marginPct": 69.15213469633194}, {"YearMonth": "2020-03", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 432.26, "totalRevenueExVAT": 365.85999999999996, "totalCost": 179.08, "totalQty": 22.0, "orderCount": 14, "margin": 186.77999999999994, "marginPct": 51.052315093205046}, {"YearMonth": "2020-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 628.25, "totalRevenueExVAT": 523.6, "totalCost": 308.0, "totalQty": 35.0, "orderCount": 31, "margin": 215.60000000000002, "marginPct": 41.1764705882353}, {"YearMonth": "2020-03", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 478.95, "totalRevenueExVAT": 399.28000000000003, "totalCost": 122.76, "totalQty": 31.0, "orderCount": 29, "margin": 276.52000000000004, "marginPct": 69.25465838509317}, {"YearMonth": "2020-03", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 700.6999999999999, "totalRevenueExVAT": 583.96, "totalCost": 274.56, "totalQty": 26.0, "orderCount": 24, "margin": 309.40000000000003, "marginPct": 52.98308103294747}, {"YearMonth": "2020-03", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 512.69, "totalRevenueExVAT": 432.77, "totalCost": 307.58, "totalQty": 13.0, "orderCount": 13, "margin": 125.19, "marginPct": 28.92760588765395}, {"YearMonth": "2020-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 424.34999999999997, "totalRevenueExVAT": 353.74, "totalCost": 176.64, "totalQty": 23.0, "orderCount": 22, "margin": 177.10000000000002, "marginPct": 50.06501950585176}, {"YearMonth": "2020-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 771.56, "totalRevenueExVAT": 644.5400000000001, "totalCost": 284.15999999999997, "totalQty": 74.0, "orderCount": 67, "margin": 360.3800000000001, "marginPct": 55.912743972445476}, {"YearMonth": "2020-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15582.99, "totalRevenueExVAT": 12999.63, "totalCost": 6298.4800000000005, "totalQty": 601.0, "orderCount": 518, "margin": 6701.149999999999, "marginPct": 51.54877484974571}, {"YearMonth": "2020-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6208.9800000000005, "totalRevenueExVAT": 5182.32, "totalCost": 2522.52, "totalQty": 429.0, "orderCount": 341, "margin": 2659.7999999999997, "marginPct": 51.324503311258276}, {"YearMonth": "2020-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 638.0, "totalRevenueExVAT": 531.5999999999999, "totalCost": 236.00000000000003, "totalQty": 40.0, "orderCount": 34, "margin": 295.5999999999999, "marginPct": 55.605718585402556}, {"YearMonth": "2020-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1216.35, "totalRevenueExVAT": 1013.89, "totalCost": 332.84000000000003, "totalQty": 53.0, "orderCount": 52, "margin": 681.05, "marginPct": 67.17198118139048}, {"YearMonth": "2020-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "360 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 867.9000000000001, "totalRevenueExVAT": 723.36, "totalCost": 276.32, "totalQty": 22.0, "orderCount": 22, "margin": 447.04, "marginPct": 61.80048661800487}, {"YearMonth": "2020-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 497.65, "totalRevenueExVAT": 414.77000000000004, "totalCost": 143.56, "totalQty": 37.0, "orderCount": 35, "margin": 271.21000000000004, "marginPct": 65.38804638715433}, {"YearMonth": "2020-03", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 425.41, "totalRevenueExVAT": 359.52, "totalCost": 110.88, "totalQty": 12.0, "orderCount": 12, "margin": 248.64, "marginPct": 69.1588785046729}, {"YearMonth": "2020-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1927.1999999999998, "totalRevenueExVAT": 1606.88, "totalCost": 536.8, "totalQty": 176.0, "orderCount": 170, "margin": 1070.0800000000002, "marginPct": 66.59364731653888}, {"YearMonth": "2020-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1438.57, "totalRevenueExVAT": 1204.74, "totalCost": 337.40999999999997, "totalQty": 69.0, "orderCount": 63, "margin": 867.33, "marginPct": 71.99312714776632}, {"YearMonth": "2020-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 3234.0, "totalRevenueExVAT": 2707.76, "totalCost": 1075.14, "totalQty": 181.0, "orderCount": 145, "margin": 1632.6200000000001, "marginPct": 60.29411764705882}, {"YearMonth": "2020-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1567.12, "totalRevenueExVAT": 1309.82, "totalCost": 469.26000000000005, "totalQty": 158.0, "orderCount": 130, "margin": 840.56, "marginPct": 64.17370325693607}, {"YearMonth": "2020-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 997.5, "totalRevenueExVAT": 831.5, "totalCost": 418.0, "totalQty": 50.0, "orderCount": 47, "margin": 413.5, "marginPct": 49.7294046903187}, {"YearMonth": "2020-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 673.4, "totalRevenueExVAT": 561.0799999999999, "totalCost": 245.96000000000004, "totalQty": 52.0, "orderCount": 51, "margin": 315.1199999999999, "marginPct": 56.163113994439286}, {"YearMonth": "2020-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 99.8, "totalRevenueExVAT": 83.16, "totalCost": 27.24, "totalQty": 4.0, "orderCount": 4, "margin": 55.92, "marginPct": 67.24386724386726}, {"YearMonth": "2020-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 2157.6099999999997, "totalRevenueExVAT": 1802.65, "totalCost": 606.0500000000001, "totalQty": 155.0, "orderCount": 130, "margin": 1196.6, "marginPct": 66.38005159071366}, {"YearMonth": "2020-04", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1052.3, "totalRevenueExVAT": 876.86, "totalCost": 250.24, "totalQty": 34.0, "orderCount": 31, "margin": 626.62, "marginPct": 71.46180690189996}, {"YearMonth": "2020-04", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1797.5000000000002, "totalRevenueExVAT": 1498.0, "totalCost": 462.5, "totalQty": 50.0, "orderCount": 44, "margin": 1035.5, "marginPct": 69.12550066755674}, {"YearMonth": "2020-04", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 2383.75, "totalRevenueExVAT": 1986.6000000000001, "totalCost": 901.5600000000001, "totalQty": 85.0, "orderCount": 69, "margin": 1085.04, "marginPct": 54.61794019933555}, {"YearMonth": "2020-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 2586.54, "totalRevenueExVAT": 2167.2, "totalCost": 1007.9999999999999, "totalQty": 180.0, "orderCount": 126, "margin": 1159.1999999999998, "marginPct": 53.48837209302325}, {"YearMonth": "2020-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1184.7, "totalRevenueExVAT": 987.36, "totalCost": 247.5, "totalQty": 66.0, "orderCount": 61, "margin": 739.86, "marginPct": 74.93315508021391}, {"YearMonth": "2020-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 791.36, "totalRevenueExVAT": 665.1999999999999, "totalCost": 180.0, "totalQty": 40.0, "orderCount": 33, "margin": 485.19999999999993, "marginPct": 72.94046903187011}, {"YearMonth": "2020-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2222.85, "totalRevenueExVAT": 1852.74, "totalCost": 1013.24, "totalQty": 73.0, "orderCount": 59, "margin": 839.5, "marginPct": 45.31126871552404}, {"YearMonth": "2020-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2274.7999999999997, "totalRevenueExVAT": 1902.3, "totalCost": 724.1999999999999, "totalQty": 255.0, "orderCount": 202, "margin": 1178.1, "marginPct": 61.93029490616622}, {"YearMonth": "2020-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 1579.05, "totalRevenueExVAT": 1315.7099999999998, "totalCost": 255.42000000000002, "totalQty": 99.0, "orderCount": 89, "margin": 1060.2899999999997, "marginPct": 80.58690744920992}, {"YearMonth": "2020-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1137.1499999999999, "totalRevenueExVAT": 947.91, "totalCost": 292.40999999999997, "totalQty": 57.0, "orderCount": 50, "margin": 655.5, "marginPct": 69.15213469633194}, {"YearMonth": "2020-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2976.75, "totalRevenueExVAT": 2482.2, "totalCost": 1130.85, "totalQty": 315.0, "orderCount": 236, "margin": 1351.35, "marginPct": 54.441624365482234}, {"YearMonth": "2020-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 799.0, "totalRevenueExVAT": 665.8, "totalCost": 473.2, "totalQty": 20.0, "orderCount": 17, "margin": 192.59999999999997, "marginPct": 28.927605887653947}, {"YearMonth": "2020-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1961.12, "totalRevenueExVAT": 1637.4800000000002, "totalCost": 721.92, "totalQty": 188.0, "orderCount": 149, "margin": 915.5600000000003, "marginPct": 55.912743972445476}, {"YearMonth": "2020-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 22304.07, "totalRevenueExVAT": 18623.43, "totalCost": 9023.28, "totalQty": 861.0, "orderCount": 766, "margin": 9600.15, "marginPct": 51.54877484974571}, {"YearMonth": "2020-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1858.95, "totalRevenueExVAT": 1549.53, "totalCost": 508.68, "totalQty": 81.0, "orderCount": 71, "margin": 1040.85, "marginPct": 67.17198118139048}, {"YearMonth": "2020-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 654.5699999999999, "totalRevenueExVAT": 549.2900000000001, "totalCost": 190.12, "totalQty": 49.0, "orderCount": 47, "margin": 359.1700000000001, "marginPct": 65.38804638715433}, {"YearMonth": "2020-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 3075.1299999999997, "totalRevenueExVAT": 2565.53, "totalCost": 857.05, "totalQty": 281.0, "orderCount": 266, "margin": 1708.4800000000002, "marginPct": 66.59364731653888}, {"YearMonth": "2020-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1131.3, "totalRevenueExVAT": 942.84, "totalCost": 264.06, "totalQty": 54.0, "orderCount": 53, "margin": 678.78, "marginPct": 71.99312714776632}, {"YearMonth": "2020-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 857.85, "totalRevenueExVAT": 715.0899999999999, "totalCost": 359.47999999999996, "totalQty": 43.0, "orderCount": 36, "margin": 355.60999999999996, "marginPct": 49.7294046903187}, {"YearMonth": "2020-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 811.53, "totalRevenueExVAT": 679.77, "totalCost": 297.99, "totalQty": 63.0, "orderCount": 55, "margin": 381.78, "marginPct": 56.16311399443929}, {"YearMonth": "2020-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 2092.5, "totalRevenueExVAT": 1744.5, "totalCost": 586.5, "totalQty": 150.0, "orderCount": 134, "margin": 1158.0, "marginPct": 66.38005159071368}, {"YearMonth": "2020-05", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 1753.83, "totalRevenueExVAT": 1470.03, "totalCost": 419.52000000000004, "totalQty": 57.0, "orderCount": 48, "margin": 1050.51, "marginPct": 71.46180690189996}, {"YearMonth": "2020-05", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1869.4, "totalRevenueExVAT": 1557.92, "totalCost": 481.0, "totalQty": 52.0, "orderCount": 47, "margin": 1076.92, "marginPct": 69.12550066755674}, {"YearMonth": "2020-05", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 2156.4, "totalRevenueExVAT": 1797.1200000000001, "totalCost": 815.04, "totalQty": 72.0, "orderCount": 59, "margin": 982.0800000000002, "marginPct": 54.647435897435905}, {"YearMonth": "2020-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 2991.14, "totalRevenueExVAT": 2504.3199999999997, "totalCost": 1164.8, "totalQty": 208.0, "orderCount": 138, "margin": 1339.5199999999998, "marginPct": 53.48837209302325}, {"YearMonth": "2020-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2671.56, "totalRevenueExVAT": 2229.04, "totalCost": 558.75, "totalQty": 149.0, "orderCount": 136, "margin": 1670.29, "marginPct": 74.9331550802139}, {"YearMonth": "2020-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 758.1, "totalRevenueExVAT": 631.9399999999999, "totalCost": 171.0, "totalQty": 38.0, "orderCount": 36, "margin": 460.93999999999994, "marginPct": 72.94046903187011}, {"YearMonth": "2020-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 2857.23, "totalRevenueExVAT": 2385.72, "totalCost": 1304.72, "totalQty": 94.0, "orderCount": 68, "margin": 1080.9999999999998, "marginPct": 45.31126871552403}, {"YearMonth": "2020-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2465.73, "totalRevenueExVAT": 2058.96, "totalCost": 783.8399999999999, "totalQty": 276.0, "orderCount": 215, "margin": 1275.1200000000001, "marginPct": 61.930294906166225}, {"YearMonth": "2020-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 1682.72, "totalRevenueExVAT": 1408.74, "totalCost": 273.48, "totalQty": 106.0, "orderCount": 93, "margin": 1135.26, "marginPct": 80.58690744920993}, {"YearMonth": "2020-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1273.48, "totalRevenueExVAT": 1064.32, "totalCost": 328.32, "totalQty": 64.0, "orderCount": 54, "margin": 736.0, "marginPct": 69.15213469633194}, {"YearMonth": "2020-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 3126.3799999999997, "totalRevenueExVAT": 2608.28, "totalCost": 1188.29, "totalQty": 331.0, "orderCount": 259, "margin": 1419.9900000000002, "marginPct": 54.441624365482234}, {"YearMonth": "2020-05", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 559.3000000000001, "totalRevenueExVAT": 466.06, "totalCost": 331.24, "totalQty": 14.0, "orderCount": 12, "margin": 134.82, "marginPct": 28.92760588765395}, {"YearMonth": "2020-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1847.9099999999999, "totalRevenueExVAT": 1541.67, "totalCost": 679.68, "totalQty": 177.0, "orderCount": 139, "margin": 861.9900000000001, "marginPct": 55.91274397244547}, {"YearMonth": "2020-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 17793.09, "totalRevenueExVAT": 14859.81, "totalCost": 7199.76, "totalQty": 687.0, "orderCount": 610, "margin": 7660.049999999999, "marginPct": 51.54877484974571}, {"YearMonth": "2020-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4083.77, "totalRevenueExVAT": 3406.56, "totalCost": 1658.16, "totalQty": 282.0, "orderCount": 214, "margin": 1748.3999999999999, "marginPct": 51.324503311258276}, {"YearMonth": "2020-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 799.43, "totalRevenueExVAT": 669.55, "totalCost": 219.8, "totalQty": 35.0, "orderCount": 31, "margin": 449.74999999999994, "marginPct": 67.17198118139048}, {"YearMonth": "2020-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1033.4099999999999, "totalRevenueExVAT": 863.1700000000001, "totalCost": 298.76, "totalQty": 77.0, "orderCount": 61, "margin": 564.4100000000001, "marginPct": 65.38804638715433}, {"YearMonth": "2020-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1828.6499999999999, "totalRevenueExVAT": 1524.71, "totalCost": 509.34999999999997, "totalQty": 167.0, "orderCount": 154, "margin": 1015.3600000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2020-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1935.2699999999998, "totalRevenueExVAT": 1616.5499999999997, "totalCost": 579.15, "totalQty": 195.0, "orderCount": 138, "margin": 1037.3999999999996, "marginPct": 64.17370325693605}, {"YearMonth": "2020-06", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 614.6, "totalRevenueExVAT": 512.12, "totalCost": 264.88, "totalQty": 28.0, "orderCount": 26, "margin": 247.24, "marginPct": 48.277747402952436}, {"YearMonth": "2020-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1085.6399999999999, "totalRevenueExVAT": 906.3599999999999, "totalCost": 397.32000000000005, "totalQty": 84.0, "orderCount": 76, "margin": 509.03999999999985, "marginPct": 56.163113994439286}, {"YearMonth": "2020-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 748.5, "totalRevenueExVAT": 623.6999999999999, "totalCost": 234.60000000000002, "totalQty": 30.0, "orderCount": 28, "margin": 389.0999999999999, "marginPct": 62.385762385762376}, {"YearMonth": "2020-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 2050.65, "totalRevenueExVAT": 1709.6100000000001, "totalCost": 574.77, "totalQty": 147.0, "orderCount": 119, "margin": 1134.8400000000001, "marginPct": 66.38005159071368}, {"YearMonth": "2020-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 603.63, "totalRevenueExVAT": 505.68999999999994, "totalCost": 252.54, "totalQty": 61.0, "orderCount": 52, "margin": 253.14999999999995, "marginPct": 50.06031363088057}, {"YearMonth": "2020-06", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 2476.0, "totalRevenueExVAT": 2063.2, "totalCost": 588.8000000000001, "totalQty": 80.0, "orderCount": 68, "margin": 1474.3999999999996, "marginPct": 71.46180690189995}, {"YearMonth": "2020-06", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 1258.25, "totalRevenueExVAT": 1048.6000000000001, "totalCost": 323.75, "totalQty": 35.0, "orderCount": 32, "margin": 724.8500000000001, "marginPct": 69.12550066755675}, {"YearMonth": "2020-06", "Description": "Coenzyme Q10 300mg", "SKUDescription": "60 Capsules", "Category": "High Strength Coenzyme Q10 300Mg", "totalRevenue": 1996.67, "totalRevenueExVAT": 1672.32, "totalCost": 758.44, "totalQty": 67.0, "orderCount": 50, "margin": 913.8799999999999, "marginPct": 54.64743589743589}, {"YearMonth": "2020-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1012.05, "totalRevenueExVAT": 843.5699999999999, "totalCost": 436.79999999999995, "totalQty": 39.0, "orderCount": 32, "margin": 406.77, "marginPct": 48.22006472491909}, {"YearMonth": "2020-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 2177.1299999999997, "totalRevenueExVAT": 1818.04, "totalCost": 845.5999999999999, "totalQty": 151.0, "orderCount": 115, "margin": 972.44, "marginPct": 53.48837209302326}, {"YearMonth": "2020-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 494.45, "totalRevenueExVAT": 411.98999999999995, "totalCost": 190.33999999999997, "totalQty": 31.0, "orderCount": 30, "margin": 221.64999999999998, "marginPct": 53.799849510910455}, {"YearMonth": "2020-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2330.5099999999998, "totalRevenueExVAT": 1944.8000000000002, "totalCost": 487.5, "totalQty": 130.0, "orderCount": 112, "margin": 1457.3000000000002, "marginPct": 74.93315508021391}, {"YearMonth": "2020-06", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3076.2299999999996, "totalRevenueExVAT": 2566.2599999999998, "totalCost": 645.6, "totalQty": 269.0, "orderCount": 218, "margin": 1920.6599999999999, "marginPct": 74.8427672955975}, {"YearMonth": "2020-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 498.75, "totalRevenueExVAT": 415.75, "totalCost": 141.5, "totalQty": 25.0, "orderCount": 23, "margin": 274.25, "marginPct": 65.96512327119663}, {"YearMonth": "2020-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 3562.6499999999996, "totalRevenueExVAT": 2969.46, "totalCost": 1623.96, "totalQty": 117.0, "orderCount": 80, "margin": 1345.5, "marginPct": 45.31126871552404}, {"YearMonth": "2020-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1879.4999999999998, "totalRevenueExVAT": 1566.6, "totalCost": 596.4, "totalQty": 210.0, "orderCount": 148, "margin": 970.1999999999999, "marginPct": 61.93029490616622}, {"YearMonth": "2020-06", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 435.58, "totalRevenueExVAT": 365.85999999999996, "totalCost": 155.32, "totalQty": 22.0, "orderCount": 21, "margin": 210.53999999999996, "marginPct": 57.546602525556224}, {"YearMonth": "2020-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 1257.3899999999999, "totalRevenueExVAT": 1049.9099999999999, "totalCost": 203.82, "totalQty": 79.0, "orderCount": 67, "margin": 846.0899999999999, "marginPct": 80.58690744920993}, {"YearMonth": "2020-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 207.6, "totalRevenueExVAT": 173.04, "totalCost": 0.0, "totalQty": 8.0, "orderCount": 8, "margin": 173.04, "marginPct": 100.0}, {"YearMonth": "2020-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1276.8, "totalRevenueExVAT": 1064.32, "totalCost": 328.32, "totalQty": 64.0, "orderCount": 49, "margin": 736.0, "marginPct": 69.15213469633194}, {"YearMonth": "2020-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 3161.0699999999997, "totalRevenueExVAT": 2647.68, "totalCost": 1206.24, "totalQty": 336.0, "orderCount": 256, "margin": 1441.4399999999998, "marginPct": 54.441624365482234}, {"YearMonth": "2020-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 189.5, "totalRevenueExVAT": 157.89999999999998, "totalCost": 88.0, "totalQty": 10.0, "orderCount": 10, "margin": 69.89999999999998, "marginPct": 44.268524382520575}, {"YearMonth": "2020-06", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1058.34, "totalRevenueExVAT": 888.72, "totalCost": 273.24, "totalQty": 69.0, "orderCount": 58, "margin": 615.48, "marginPct": 69.25465838509317}, {"YearMonth": "2020-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 409.28999999999996, "totalRevenueExVAT": 341.03999999999996, "totalCost": 161.28, "totalQty": 21.0, "orderCount": 20, "margin": 179.75999999999996, "marginPct": 52.709359605911324}, {"YearMonth": "2020-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1696.82, "totalRevenueExVAT": 1415.8100000000002, "totalCost": 618.24, "totalQty": 161.0, "orderCount": 117, "margin": 797.5700000000002, "marginPct": 56.33312379485949}, {"YearMonth": "2020-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 18857.01, "totalRevenueExVAT": 15725.01, "totalCost": 7618.96, "totalQty": 727.0, "orderCount": 614, "margin": 8106.05, "marginPct": 51.548774849745726}, {"YearMonth": "2020-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7935.7300000000005, "totalRevenueExVAT": 6631.92, "totalCost": 3228.12, "totalQty": 549.0, "orderCount": 465, "margin": 3403.8, "marginPct": 51.32450331125828}, {"YearMonth": "2020-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 244.85999999999999, "totalRevenueExVAT": 204.12, "totalCost": 82.60000000000001, "totalQty": 14.0, "orderCount": 12, "margin": 121.52, "marginPct": 59.53360768175583}, {"YearMonth": "2020-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1078.6499999999999, "totalRevenueExVAT": 899.1099999999999, "totalCost": 352.88, "totalQty": 47.0, "orderCount": 39, "margin": 546.2299999999999, "marginPct": 60.752299496168426}, {"YearMonth": "2020-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1156.7, "totalRevenueExVAT": 964.0600000000001, "totalCost": 333.68, "totalQty": 86.0, "orderCount": 70, "margin": 630.3800000000001, "marginPct": 65.38804638715433}, {"YearMonth": "2020-06", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 107.85000000000001, "totalRevenueExVAT": 89.88, "totalCost": 27.72, "totalQty": 3.0, "orderCount": 3, "margin": 62.16, "marginPct": 69.1588785046729}, {"YearMonth": "2020-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2737.5, "totalRevenueExVAT": 2282.5, "totalCost": 762.5, "totalQty": 250.0, "orderCount": 231, "margin": 1520.0, "marginPct": 66.59364731653888}, {"YearMonth": "2020-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 314.25, "totalRevenueExVAT": 261.90000000000003, "totalCost": 91.5, "totalQty": 15.0, "orderCount": 15, "margin": 170.40000000000003, "marginPct": 65.06300114547537}, {"YearMonth": "2020-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 3237.06, "totalRevenueExVAT": 2702.5399999999995, "totalCost": 968.22, "totalQty": 326.0, "orderCount": 233, "margin": 1734.3199999999995, "marginPct": 64.17370325693607}, {"YearMonth": "2020-07", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 936.53, "totalRevenueExVAT": 786.47, "totalCost": 406.78000000000003, "totalQty": 43.0, "orderCount": 34, "margin": 379.69, "marginPct": 48.27774740295243}, {"YearMonth": "2020-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 699.3, "totalRevenueExVAT": 582.66, "totalCost": 255.42000000000002, "totalQty": 54.0, "orderCount": 52, "margin": 327.23999999999995, "marginPct": 56.16311399443929}, {"YearMonth": "2020-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2041.74, "totalRevenueExVAT": 1704.78, "totalCost": 641.24, "totalQty": 82.0, "orderCount": 68, "margin": 1063.54, "marginPct": 62.38576238576239}, {"YearMonth": "2020-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1283.3999999999999, "totalRevenueExVAT": 1069.96, "totalCost": 359.72, "totalQty": 92.0, "orderCount": 90, "margin": 710.24, "marginPct": 66.38005159071368}, {"YearMonth": "2020-07", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1083.25, "totalRevenueExVAT": 902.65, "totalCost": 257.6, "totalQty": 35.0, "orderCount": 31, "margin": 645.05, "marginPct": 71.46180690189996}, {"YearMonth": "2020-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1313.3999999999999, "totalRevenueExVAT": 1094.28, "totalCost": 546.4799999999999, "totalQty": 132.0, "orderCount": 113, "margin": 547.8000000000001, "marginPct": 50.06031363088058}, {"YearMonth": "2020-07", "Description": "Coenzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Coenzyme Q10 100Mg Capsules", "totalRevenue": 185.7, "totalRevenueExVAT": 154.74, "totalCost": 44.160000000000004, "totalQty": 6.0, "orderCount": 5, "margin": 110.58000000000001, "marginPct": 71.46180690189996}, {"YearMonth": "2020-07", "Description": "Coenzyme Q10 200mg", "SKUDescription": "120 Capsules", "Category": "Coenzyme Q10 200Mg Capsules", "totalRevenue": 311.57000000000005, "totalRevenueExVAT": 269.64, "totalCost": 83.25, "totalQty": 9.0, "orderCount": 8, "margin": 186.39, "marginPct": 69.12550066755674}, {"YearMonth": "2020-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2716.11, "totalRevenueExVAT": 2271.15, "totalCost": 1176.0, "totalQty": 105.0, "orderCount": 90, "margin": 1095.15, "marginPct": 48.2200647249191}, {"YearMonth": "2020-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1384.79, "totalRevenueExVAT": 1155.84, "totalCost": 537.5999999999999, "totalQty": 96.0, "orderCount": 91, "margin": 618.24, "marginPct": 53.48837209302326}, {"YearMonth": "2020-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1563.1, "totalRevenueExVAT": 1302.4199999999998, "totalCost": 601.7199999999999, "totalQty": 98.0, "orderCount": 82, "margin": 700.6999999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2020-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1364.2, "totalRevenueExVAT": 1136.96, "totalCost": 297.41, "totalQty": 76.0, "orderCount": 67, "margin": 839.55, "marginPct": 73.8416479031804}, {"YearMonth": "2020-07", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4557.099999999999, "totalRevenueExVAT": 3796.9199999999996, "totalCost": 955.1999999999999, "totalQty": 398.0, "orderCount": 306, "margin": 2841.72, "marginPct": 74.8427672955975}, {"YearMonth": "2020-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1276.8, "totalRevenueExVAT": 1064.32, "totalCost": 362.24, "totalQty": 64.0, "orderCount": 57, "margin": 702.0799999999999, "marginPct": 65.96512327119663}, {"YearMonth": "2020-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3009.48, "totalRevenueExVAT": 2512.62, "totalCost": 1374.1200000000001, "totalQty": 99.0, "orderCount": 76, "margin": 1138.4999999999998, "marginPct": 45.31126871552403}, {"YearMonth": "2020-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Ubiquinol Coq10 100Mg", "totalRevenue": 669.9, "totalRevenueExVAT": 558.36, "totalCost": 305.36, "totalQty": 22.0, "orderCount": 19, "margin": 253.0, "marginPct": 45.31126871552404}, {"YearMonth": "2020-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 357.99999999999994, "totalRevenueExVAT": 298.4, "totalCost": 113.6, "totalQty": 40.0, "orderCount": 30, "margin": 184.79999999999998, "marginPct": 61.93029490616622}, {"YearMonth": "2020-07", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1014.13, "totalRevenueExVAT": 848.13, "totalCost": 360.06, "totalQty": 51.0, "orderCount": 44, "margin": 488.07, "marginPct": 57.546602525556224}, {"YearMonth": "2020-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 111.64999999999999, "totalRevenueExVAT": 93.03, "totalCost": 18.060000000000002, "totalQty": 7.0, "orderCount": 7, "margin": 74.97, "marginPct": 80.58690744920993}, {"YearMonth": "2020-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 651.29, "totalRevenueExVAT": 544.89, "totalCost": 105.78, "totalQty": 41.0, "orderCount": 38, "margin": 439.11, "marginPct": 80.58690744920993}, {"YearMonth": "2020-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Methylcobalamin Vitamin B12", "totalRevenue": 181.64999999999998, "totalRevenueExVAT": 151.41, "totalCost": 0.0, "totalQty": 7.0, "orderCount": 5, "margin": 151.41, "marginPct": 100.0}, {"YearMonth": "2020-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 648.75, "totalRevenueExVAT": 540.75, "totalCost": 0.0, "totalQty": 25.0, "orderCount": 24, "margin": 540.75, "marginPct": 100.0}, {"YearMonth": "2020-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1472.98, "totalRevenueExVAT": 1230.62, "totalCost": 379.62, "totalQty": 74.0, "orderCount": 65, "margin": 850.9999999999999, "marginPct": 69.15213469633193}, {"YearMonth": "2020-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 658.35, "totalRevenueExVAT": 548.79, "totalCost": 236.94, "totalQty": 33.0, "orderCount": 28, "margin": 311.84999999999997, "marginPct": 56.82501503307276}, {"YearMonth": "2020-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2495.0299999999997, "totalRevenueExVAT": 2081.79, "totalCost": 926.2199999999999, "totalQty": 258.0, "orderCount": 193, "margin": 1155.5700000000002, "marginPct": 55.508480682489605}, {"YearMonth": "2020-07", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 249.39, "totalRevenueExVAT": 216.19, "totalCost": 105.82000000000001, "totalQty": 13.0, "orderCount": 11, "margin": 110.36999999999999, "marginPct": 51.052315093205046}, {"YearMonth": "2020-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 549.55, "totalRevenueExVAT": 457.90999999999997, "totalCost": 255.20000000000002, "totalQty": 29.0, "orderCount": 29, "margin": 202.70999999999995, "marginPct": 44.268524382520575}, {"YearMonth": "2020-07", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1854.0, "totalRevenueExVAT": 1545.6000000000001, "totalCost": 475.2, "totalQty": 120.0, "orderCount": 94, "margin": 1070.4, "marginPct": 69.25465838509317}, {"YearMonth": "2020-07", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 188.65, "totalRevenueExVAT": 157.22, "totalCost": 73.92, "totalQty": 7.0, "orderCount": 7, "margin": 83.3, "marginPct": 52.98308103294747}, {"YearMonth": "2020-07", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 439.45000000000005, "totalRevenueExVAT": 366.19, "totalCost": 311.3, "totalQty": 11.0, "orderCount": 7, "margin": 54.889999999999986, "marginPct": 14.989486332231897}, {"YearMonth": "2020-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1188.8899999999999, "totalRevenueExVAT": 990.6399999999999, "totalCost": 468.47999999999996, "totalQty": 61.0, "orderCount": 54, "margin": 522.1599999999999, "marginPct": 52.709359605911324}, {"YearMonth": "2020-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1073.3600000000001, "totalRevenueExVAT": 897.6800000000001, "totalCost": 376.32, "totalQty": 98.0, "orderCount": 93, "margin": 521.3600000000001, "marginPct": 58.07860262008735}, {"YearMonth": "2020-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 20612.97, "totalRevenueExVAT": 17195.85, "totalCost": 8331.6, "totalQty": 795.0, "orderCount": 721, "margin": 8864.249999999998, "marginPct": 51.54877484974571}, {"YearMonth": "2020-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6230.7, "totalRevenueExVAT": 5194.4, "totalCost": 2528.4, "totalQty": 430.0, "orderCount": 405, "margin": 2665.9999999999995, "marginPct": 51.324503311258276}, {"YearMonth": "2020-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 926.9699999999999, "totalRevenueExVAT": 772.74, "totalCost": 312.70000000000005, "totalQty": 53.0, "orderCount": 49, "margin": 460.03999999999996, "marginPct": 59.53360768175583}, {"YearMonth": "2020-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1813.05, "totalRevenueExVAT": 1511.27, "totalCost": 613.04, "totalQty": 79.0, "orderCount": 65, "margin": 898.23, "marginPct": 59.43544171458443}, {"YearMonth": "2020-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 549.2099999999999, "totalRevenueExVAT": 459.61, "totalCost": 159.07999999999998, "totalQty": 41.0, "orderCount": 40, "margin": 300.53000000000003, "marginPct": 65.38804638715433}, {"YearMonth": "2020-07", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Visisoft Ultrabright Lutein", "totalRevenue": 215.70000000000002, "totalRevenueExVAT": 179.76, "totalCost": 55.440000000000005, "totalQty": 6.0, "orderCount": 5, "margin": 124.32, "marginPct": 69.1588785046729}, {"YearMonth": "2020-07", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 539.25, "totalRevenueExVAT": 449.40000000000003, "totalCost": 138.6, "totalQty": 15.0, "orderCount": 14, "margin": 310.80000000000007, "marginPct": 69.1588785046729}, {"YearMonth": "2020-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2440.0299999999997, "totalRevenueExVAT": 2035.9900000000002, "totalCost": 680.15, "totalQty": 223.0, "orderCount": 216, "margin": 1355.8400000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2020-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 855.4599999999999, "totalRevenueExVAT": 715.86, "totalCost": 250.1, "totalQty": 41.0, "orderCount": 41, "margin": 465.76, "marginPct": 65.06300114547537}, {"YearMonth": "2020-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 571.41, "totalRevenueExVAT": 478.72, "totalCost": 190.08, "totalQty": 32.0, "orderCount": 25, "margin": 288.64, "marginPct": 60.29411764705882}, {"YearMonth": "2020-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1737.9299999999998, "totalRevenueExVAT": 1450.7499999999998, "totalCost": 519.75, "totalQty": 175.0, "orderCount": 137, "margin": 930.9999999999998, "marginPct": 64.17370325693607}, {"YearMonth": "2020-08", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 921.9, "totalRevenueExVAT": 768.18, "totalCost": 397.32000000000005, "totalQty": 42.0, "orderCount": 37, "margin": 370.8599999999999, "marginPct": 48.27774740295243}, {"YearMonth": "2020-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 606.49, "totalRevenueExVAT": 507.12999999999994, "totalCost": 222.31000000000003, "totalQty": 47.0, "orderCount": 46, "margin": 284.81999999999994, "marginPct": 56.16311399443929}, {"YearMonth": "2020-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1497.0, "totalRevenueExVAT": 1247.3999999999999, "totalCost": 469.20000000000005, "totalQty": 60.0, "orderCount": 54, "margin": 778.1999999999998, "marginPct": 62.385762385762376}, {"YearMonth": "2020-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1185.75, "totalRevenueExVAT": 988.5500000000001, "totalCost": 332.35, "totalQty": 85.0, "orderCount": 82, "margin": 656.2, "marginPct": 66.38005159071368}, {"YearMonth": "2020-08", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2125.23, "totalRevenueExVAT": 1779.51, "totalCost": 507.84000000000003, "totalQty": 69.0, "orderCount": 63, "margin": 1271.67, "marginPct": 71.46180690189996}, {"YearMonth": "2020-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1134.3, "totalRevenueExVAT": 945.06, "totalCost": 471.96, "totalQty": 114.0, "orderCount": 97, "margin": 473.09999999999997, "marginPct": 50.06031363088058}, {"YearMonth": "2020-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2409.0299999999997, "totalRevenueExVAT": 2011.59, "totalCost": 1041.6, "totalQty": 93.0, "orderCount": 83, "margin": 969.99, "marginPct": 48.2200647249191}, {"YearMonth": "2020-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1122.28, "totalRevenueExVAT": 939.1199999999999, "totalCost": 436.79999999999995, "totalQty": 78.0, "orderCount": 75, "margin": 502.31999999999994, "marginPct": 53.48837209302325}, {"YearMonth": "2020-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1196.25, "totalRevenueExVAT": 996.7499999999999, "totalCost": 460.5, "totalQty": 75.0, "orderCount": 63, "margin": 536.2499999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2020-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1666.36, "totalRevenueExVAT": 1391.28, "totalCost": 416.64000000000004, "totalQty": 93.0, "orderCount": 77, "margin": 974.6399999999999, "marginPct": 70.05347593582887}, {"YearMonth": "2020-08", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3628.71, "totalRevenueExVAT": 3023.85, "totalCost": 813.5999999999999, "totalQty": 339.0, "orderCount": 263, "margin": 2210.25, "marginPct": 73.0939034674339}, {"YearMonth": "2020-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1137.1499999999999, "totalRevenueExVAT": 947.91, "totalCost": 322.62, "totalQty": 57.0, "orderCount": 52, "margin": 625.29, "marginPct": 65.96512327119663}, {"YearMonth": "2020-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2943.5099999999998, "totalRevenueExVAT": 2461.86, "totalCost": 1346.3600000000001, "totalQty": 97.0, "orderCount": 67, "margin": 1115.5, "marginPct": 45.31126871552404}, {"YearMonth": "2020-08", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 897.75, "totalRevenueExVAT": 748.3499999999999, "totalCost": 317.7, "totalQty": 45.0, "orderCount": 41, "margin": 430.6499999999999, "marginPct": 57.546602525556224}, {"YearMonth": "2020-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 813.4499999999999, "totalRevenueExVAT": 677.79, "totalCost": 131.58, "totalQty": 51.0, "orderCount": 51, "margin": 546.2099999999999, "marginPct": 80.58690744920992}, {"YearMonth": "2020-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 800.13, "totalRevenueExVAT": 670.53, "totalCost": 0.0, "totalQty": 31.0, "orderCount": 30, "margin": 670.53, "marginPct": 100.0}, {"YearMonth": "2020-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2054.85, "totalRevenueExVAT": 1712.8899999999999, "totalCost": 528.39, "totalQty": 103.0, "orderCount": 80, "margin": 1184.5, "marginPct": 69.15213469633194}, {"YearMonth": "2020-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2227.7599999999998, "totalRevenueExVAT": 1862.56, "totalCost": 804.16, "totalQty": 112.0, "orderCount": 94, "margin": 1058.4, "marginPct": 56.825015033072766}, {"YearMonth": "2020-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1574.98, "totalRevenueExVAT": 1314.72, "totalCost": 516.96, "totalQty": 144.0, "orderCount": 127, "margin": 797.76, "marginPct": 60.67907995618839}, {"YearMonth": "2020-08", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1236.8999999999999, "totalRevenueExVAT": 1031.06, "totalCost": 504.68000000000006, "totalQty": 62.0, "orderCount": 52, "margin": 526.3799999999999, "marginPct": 51.052315093205046}, {"YearMonth": "2020-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 682.1999999999999, "totalRevenueExVAT": 568.4399999999999, "totalCost": 316.8, "totalQty": 36.0, "orderCount": 35, "margin": 251.63999999999993, "marginPct": 44.268524382520575}, {"YearMonth": "2020-08", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2431.0, "totalRevenueExVAT": 2034.4, "totalCost": 673.1999999999999, "totalQty": 170.0, "orderCount": 137, "margin": 1361.2000000000003, "marginPct": 66.90916240660638}, {"YearMonth": "2020-08", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1131.8999999999999, "totalRevenueExVAT": 943.32, "totalCost": 443.52000000000004, "totalQty": 42.0, "orderCount": 35, "margin": 499.8, "marginPct": 52.98308103294747}, {"YearMonth": "2020-08", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 799.0, "totalRevenueExVAT": 665.8, "totalCost": 566.0, "totalQty": 20.0, "orderCount": 18, "margin": 99.79999999999995, "marginPct": 14.989486332231897}, {"YearMonth": "2020-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1564.85, "totalRevenueExVAT": 1306.73, "totalCost": 660.48, "totalQty": 86.0, "orderCount": 79, "margin": 646.25, "marginPct": 49.4555110849219}, {"YearMonth": "2020-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 909.9300000000001, "totalRevenueExVAT": 758.28, "totalCost": 334.08, "totalQty": 87.0, "orderCount": 82, "margin": 424.2, "marginPct": 55.942395948726066}, {"YearMonth": "2020-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 23319.6, "totalRevenueExVAT": 19444.399999999998, "totalCost": 10008.4, "totalQty": 955.0, "orderCount": 789, "margin": 9435.999999999998, "marginPct": 48.52811092139639}, {"YearMonth": "2020-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 5523.02, "totalRevenueExVAT": 4610.62, "totalCost": 2346.12, "totalQty": 399.0, "orderCount": 361, "margin": 2264.5, "marginPct": 49.11486958370024}, {"YearMonth": "2020-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 626.7299999999999, "totalRevenueExVAT": 524.88, "totalCost": 212.4, "totalQty": 36.0, "orderCount": 35, "margin": 312.48, "marginPct": 59.53360768175583}, {"YearMonth": "2020-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2990.96, "totalRevenueExVAT": 2498.34, "totalCost": 1101.92, "totalQty": 142.0, "orderCount": 121, "margin": 1396.42, "marginPct": 55.89391355860292}, {"YearMonth": "2020-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1132.6, "totalRevenueExVAT": 947.32, "totalCost": 356.96, "totalQty": 92.0, "orderCount": 88, "margin": 590.3600000000001, "marginPct": 62.31896296921844}, {"YearMonth": "2020-08", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 467.35, "totalRevenueExVAT": 389.48, "totalCost": 120.12, "totalQty": 13.0, "orderCount": 13, "margin": 269.36, "marginPct": 69.1588785046729}, {"YearMonth": "2020-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2221.0299999999997, "totalRevenueExVAT": 1853.39, "totalCost": 619.15, "totalQty": 203.0, "orderCount": 190, "margin": 1234.2400000000002, "marginPct": 66.59364731653889}, {"YearMonth": "2020-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1023.06, "totalRevenueExVAT": 855.5400000000001, "totalCost": 298.9, "totalQty": 49.0, "orderCount": 47, "margin": 556.6400000000001, "marginPct": 65.06300114547537}, {"YearMonth": "2020-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1130.85, "totalRevenueExVAT": 942.48, "totalCost": 374.22, "totalQty": 63.0, "orderCount": 58, "margin": 568.26, "marginPct": 60.29411764705882}, {"YearMonth": "2020-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 945.2499999999999, "totalRevenueExVAT": 787.55, "totalCost": 282.15000000000003, "totalQty": 95.0, "orderCount": 88, "margin": 505.3999999999999, "marginPct": 64.17370325693607}, {"YearMonth": "2020-09", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 878.0, "totalRevenueExVAT": 731.5999999999999, "totalCost": 378.40000000000003, "totalQty": 40.0, "orderCount": 35, "margin": 353.1999999999999, "marginPct": 48.27774740295242}, {"YearMonth": "2020-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 645.3399999999999, "totalRevenueExVAT": 539.5, "totalCost": 236.50000000000003, "totalQty": 50.0, "orderCount": 49, "margin": 303.0, "marginPct": 56.16311399443929}, {"YearMonth": "2020-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 894.04, "totalRevenueExVAT": 748.4399999999999, "totalCost": 281.52, "totalQty": 36.0, "orderCount": 31, "margin": 466.91999999999996, "marginPct": 62.38576238576239}, {"YearMonth": "2020-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 948.5999999999999, "totalRevenueExVAT": 790.84, "totalCost": 265.88, "totalQty": 68.0, "orderCount": 65, "margin": 524.96, "marginPct": 66.38005159071368}, {"YearMonth": "2020-09", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3048.5699999999997, "totalRevenueExVAT": 2553.21, "totalCost": 728.64, "totalQty": 99.0, "orderCount": 91, "margin": 1824.5700000000002, "marginPct": 71.46180690189998}, {"YearMonth": "2020-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1202.29, "totalRevenueExVAT": 1003.0899999999999, "totalCost": 500.93999999999994, "totalQty": 121.0, "orderCount": 96, "margin": 502.15, "marginPct": 50.06031363088058}, {"YearMonth": "2020-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1708.3799999999999, "totalRevenueExVAT": 1427.58, "totalCost": 739.1999999999999, "totalQty": 66.0, "orderCount": 57, "margin": 688.38, "marginPct": 48.2200647249191}, {"YearMonth": "2020-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 953.6999999999999, "totalRevenueExVAT": 794.64, "totalCost": 369.59999999999997, "totalQty": 66.0, "orderCount": 64, "margin": 425.04, "marginPct": 53.48837209302326}, {"YearMonth": "2020-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1084.6, "totalRevenueExVAT": 903.7199999999999, "totalCost": 417.52, "totalQty": 68.0, "orderCount": 59, "margin": 486.19999999999993, "marginPct": 53.799849510910455}, {"YearMonth": "2020-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1436.0, "totalRevenueExVAT": 1196.8000000000002, "totalCost": 358.40000000000003, "totalQty": 80.0, "orderCount": 69, "margin": 838.4000000000001, "marginPct": 70.05347593582889}, {"YearMonth": "2020-09", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 5333.79, "totalRevenueExVAT": 4445.639999999999, "totalCost": 1118.3999999999999, "totalQty": 466.0, "orderCount": 349, "margin": 3327.24, "marginPct": 74.8427672955975}, {"YearMonth": "2020-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1017.4499999999999, "totalRevenueExVAT": 848.1299999999999, "totalCost": 288.66, "totalQty": 51.0, "orderCount": 44, "margin": 559.4699999999998, "marginPct": 65.96512327119662}, {"YearMonth": "2020-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3014.5499999999997, "totalRevenueExVAT": 2512.62, "totalCost": 1374.1200000000001, "totalQty": 99.0, "orderCount": 75, "margin": 1138.4999999999998, "marginPct": 45.31126871552403}, {"YearMonth": "2020-09", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 691.61, "totalRevenueExVAT": 582.05, "totalCost": 247.1, "totalQty": 35.0, "orderCount": 30, "margin": 334.94999999999993, "marginPct": 57.54660252555621}, {"YearMonth": "2020-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 542.3, "totalRevenueExVAT": 451.85999999999996, "totalCost": 87.72, "totalQty": 34.0, "orderCount": 34, "margin": 364.14, "marginPct": 80.58690744920993}, {"YearMonth": "2020-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 544.9499999999999, "totalRevenueExVAT": 454.22999999999996, "totalCost": 0.0, "totalQty": 21.0, "orderCount": 19, "margin": 454.22999999999996, "marginPct": 100.0}, {"YearMonth": "2020-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1270.1599999999999, "totalRevenueExVAT": 1064.32, "totalCost": 328.32, "totalQty": 64.0, "orderCount": 46, "margin": 736.0, "marginPct": 69.15213469633194}, {"YearMonth": "2020-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2350.7799999999997, "totalRevenueExVAT": 1962.34, "totalCost": 847.24, "totalQty": 118.0, "orderCount": 101, "margin": 1115.1, "marginPct": 56.82501503307276}, {"YearMonth": "2020-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1533.0, "totalRevenueExVAT": 1278.2, "totalCost": 502.59999999999997, "totalQty": 140.0, "orderCount": 134, "margin": 775.6000000000001, "marginPct": 60.679079956188396}, {"YearMonth": "2020-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 603.24, "totalRevenueExVAT": 505.28, "totalCost": 281.6, "totalQty": 32.0, "orderCount": 28, "margin": 223.67999999999995, "marginPct": 44.268524382520575}, {"YearMonth": "2020-09", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1666.03, "totalRevenueExVAT": 1391.04, "totalCost": 427.68, "totalQty": 108.0, "orderCount": 78, "margin": 963.3599999999999, "marginPct": 69.25465838509317}, {"YearMonth": "2020-09", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 512.05, "totalRevenueExVAT": 426.74, "totalCost": 200.64000000000001, "totalQty": 19.0, "orderCount": 17, "margin": 226.1, "marginPct": 52.98308103294745}, {"YearMonth": "2020-09", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 719.1, "totalRevenueExVAT": 599.22, "totalCost": 509.40000000000003, "totalQty": 18.0, "orderCount": 18, "margin": 89.82, "marginPct": 14.9894863322319}, {"YearMonth": "2020-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1227.87, "totalRevenueExVAT": 1023.1199999999999, "totalCost": 483.84, "totalQty": 63.0, "orderCount": 56, "margin": 539.28, "marginPct": 52.70935960591133}, {"YearMonth": "2020-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 659.4, "totalRevenueExVAT": 549.6, "totalCost": 230.39999999999998, "totalQty": 60.0, "orderCount": 56, "margin": 319.20000000000005, "marginPct": 58.07860262008734}, {"YearMonth": "2020-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 14553.66, "totalRevenueExVAT": 12156.06, "totalCost": 5889.76, "totalQty": 562.0, "orderCount": 485, "margin": 6266.299999999999, "marginPct": 51.54877484974571}, {"YearMonth": "2020-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4909.7, "totalRevenueExVAT": 4095.12, "totalCost": 1993.32, "totalQty": 339.0, "orderCount": 317, "margin": 2101.8, "marginPct": 51.32450331125828}, {"YearMonth": "2020-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 524.6999999999999, "totalRevenueExVAT": 437.4, "totalCost": 177.0, "totalQty": 30.0, "orderCount": 27, "margin": 260.4, "marginPct": 59.53360768175583}, {"YearMonth": "2020-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1442.03, "totalRevenueExVAT": 1205.1899999999998, "totalCost": 488.88, "totalQty": 63.0, "orderCount": 56, "margin": 716.3099999999998, "marginPct": 59.435441714584414}, {"YearMonth": "2020-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 668.24, "totalRevenueExVAT": 558.82, "totalCost": 194.0, "totalQty": 50.0, "orderCount": 42, "margin": 364.82000000000005, "marginPct": 65.28399126731327}, {"YearMonth": "2020-09", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 323.55, "totalRevenueExVAT": 269.64, "totalCost": 83.16, "totalQty": 9.0, "orderCount": 8, "margin": 186.48, "marginPct": 69.1588785046729}, {"YearMonth": "2020-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2228.3399999999997, "totalRevenueExVAT": 1862.5200000000002, "totalCost": 622.1999999999999, "totalQty": 204.0, "orderCount": 190, "margin": 1240.3200000000002, "marginPct": 66.59364731653888}, {"YearMonth": "2020-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 858.9499999999999, "totalRevenueExVAT": 715.86, "totalCost": 250.1, "totalQty": 41.0, "orderCount": 39, "margin": 465.76, "marginPct": 65.06300114547537}, {"YearMonth": "2020-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1382.1499999999999, "totalRevenueExVAT": 1151.92, "totalCost": 457.38000000000005, "totalQty": 77.0, "orderCount": 67, "margin": 694.54, "marginPct": 60.29411764705882}, {"YearMonth": "2020-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1137.61, "totalRevenueExVAT": 953.3499999999999, "totalCost": 341.55, "totalQty": 115.0, "orderCount": 105, "margin": 611.8, "marginPct": 64.17370325693607}, {"YearMonth": "2020-10", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1053.6, "totalRevenueExVAT": 877.92, "totalCost": 454.08000000000004, "totalQty": 48.0, "orderCount": 40, "margin": 423.8399999999999, "marginPct": 48.27774740295243}, {"YearMonth": "2020-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 787.79, "totalRevenueExVAT": 658.1899999999999, "totalCost": 288.53000000000003, "totalQty": 61.0, "orderCount": 61, "margin": 369.6599999999999, "marginPct": 56.163113994439286}, {"YearMonth": "2020-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1771.45, "totalRevenueExVAT": 1476.09, "totalCost": 555.22, "totalQty": 71.0, "orderCount": 67, "margin": 920.8699999999999, "marginPct": 62.385762385762376}, {"YearMonth": "2020-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1460.11, "totalRevenueExVAT": 1221.15, "totalCost": 410.55, "totalQty": 105.0, "orderCount": 100, "margin": 810.6000000000001, "marginPct": 66.38005159071368}, {"YearMonth": "2020-10", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 4362.55, "totalRevenueExVAT": 3635.4900000000002, "totalCost": 1332.76, "totalQty": 129.0, "orderCount": 118, "margin": 2302.7300000000005, "marginPct": 63.3402925052744}, {"YearMonth": "2020-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1661.6399999999999, "totalRevenueExVAT": 1392.7199999999998, "totalCost": 695.52, "totalQty": 168.0, "orderCount": 142, "margin": 697.1999999999998, "marginPct": 50.06031363088057}, {"YearMonth": "2020-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2127.9, "totalRevenueExVAT": 1773.6599999999999, "totalCost": 918.4, "totalQty": 82.0, "orderCount": 75, "margin": 855.2599999999999, "marginPct": 48.22006472491909}, {"YearMonth": "2020-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1623.2099999999998, "totalRevenueExVAT": 1360.52, "totalCost": 632.8, "totalQty": 113.0, "orderCount": 98, "margin": 727.72, "marginPct": 53.48837209302326}, {"YearMonth": "2020-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 941.05, "totalRevenueExVAT": 784.1099999999999, "totalCost": 362.26, "totalQty": 59.0, "orderCount": 45, "margin": 421.8499999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2020-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2058.27, "totalRevenueExVAT": 1720.4, "totalCost": 515.2, "totalQty": 115.0, "orderCount": 102, "margin": 1205.2, "marginPct": 70.05347593582889}, {"YearMonth": "2020-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 2631.64, "totalRevenueExVAT": 2194.31, "totalCost": 548.5899999999999, "totalQty": 461.0, "orderCount": 365, "margin": 1645.72, "marginPct": 74.99943034484644}, {"YearMonth": "2020-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 4878.55, "totalRevenueExVAT": 4067.31, "totalCost": 1161.44, "totalQty": 488.0, "orderCount": 407, "margin": 2905.87, "marginPct": 71.44451738372535}, {"YearMonth": "2020-10", "Description": "High Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2496.1, "totalRevenueExVAT": 2079.72, "totalCost": 523.1999999999999, "totalQty": 218.0, "orderCount": 177, "margin": 1556.52, "marginPct": 74.8427672955975}, {"YearMonth": "2020-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1216.95, "totalRevenueExVAT": 1014.43, "totalCost": 345.26, "totalQty": 61.0, "orderCount": 56, "margin": 669.17, "marginPct": 65.96512327119663}, {"YearMonth": "2020-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 6105.24, "totalRevenueExVAT": 5101.38, "totalCost": 2789.88, "totalQty": 201.0, "orderCount": 148, "margin": 2311.5, "marginPct": 45.31126871552404}, {"YearMonth": "2020-10", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1014.13, "totalRevenueExVAT": 848.13, "totalCost": 360.06, "totalQty": 51.0, "orderCount": 41, "margin": 488.07, "marginPct": 57.546602525556224}, {"YearMonth": "2020-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 925.0999999999999, "totalRevenueExVAT": 770.8199999999999, "totalCost": 149.64000000000001, "totalQty": 58.0, "orderCount": 56, "margin": 621.18, "marginPct": 80.58690744920993}, {"YearMonth": "2020-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 804.4499999999999, "totalRevenueExVAT": 670.53, "totalCost": 0.0, "totalQty": 31.0, "orderCount": 30, "margin": 670.53, "marginPct": 100.0}, {"YearMonth": "2020-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 997.5, "totalRevenueExVAT": 831.5, "totalCost": 256.5, "totalQty": 50.0, "orderCount": 42, "margin": 575.0, "marginPct": 69.15213469633194}, {"YearMonth": "2020-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3128.83, "totalRevenueExVAT": 2610.91, "totalCost": 1127.26, "totalQty": 157.0, "orderCount": 130, "margin": 1483.6499999999999, "marginPct": 56.82501503307276}, {"YearMonth": "2020-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1825.0099999999998, "totalRevenueExVAT": 1524.71, "totalCost": 599.53, "totalQty": 167.0, "orderCount": 151, "margin": 925.1800000000001, "marginPct": 60.679079956188396}, {"YearMonth": "2020-10", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 638.4, "totalRevenueExVAT": 532.16, "totalCost": 260.48, "totalQty": 32.0, "orderCount": 29, "margin": 271.67999999999995, "marginPct": 51.052315093205046}, {"YearMonth": "2020-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 679.04, "totalRevenueExVAT": 568.4399999999999, "totalCost": 316.8, "totalQty": 36.0, "orderCount": 36, "margin": 251.63999999999993, "marginPct": 44.268524382520575}, {"YearMonth": "2020-10", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2294.3399999999997, "totalRevenueExVAT": 1919.1200000000001, "totalCost": 590.04, "totalQty": 149.0, "orderCount": 122, "margin": 1329.0800000000002, "marginPct": 69.25465838509317}, {"YearMonth": "2020-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 943.25, "totalRevenueExVAT": 786.1, "totalCost": 369.6, "totalQty": 35.0, "orderCount": 34, "margin": 416.5, "marginPct": 52.98308103294747}, {"YearMonth": "2020-10", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 799.0, "totalRevenueExVAT": 665.8, "totalCost": 566.0, "totalQty": 20.0, "orderCount": 19, "margin": 99.79999999999995, "marginPct": 14.989486332231897}, {"YearMonth": "2020-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1442.2599999999998, "totalRevenueExVAT": 1201.76, "totalCost": 568.3199999999999, "totalQty": 74.0, "orderCount": 65, "margin": 633.44, "marginPct": 52.70935960591133}, {"YearMonth": "2020-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1340.78, "totalRevenueExVAT": 1117.52, "totalCost": 468.47999999999996, "totalQty": 122.0, "orderCount": 111, "margin": 649.04, "marginPct": 58.07860262008734}, {"YearMonth": "2020-10", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 8674.84, "totalRevenueExVAT": 7237.849999999999, "totalCost": 1939.1999999999998, "totalQty": 808.0, "orderCount": 601, "margin": 5298.65, "marginPct": 73.2075132808776}, {"YearMonth": "2020-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 21477.96, "totalRevenueExVAT": 17909.64, "totalCost": 8677.44, "totalQty": 828.0, "orderCount": 736, "margin": 9232.199999999999, "marginPct": 51.54877484974571}, {"YearMonth": "2020-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7329.53, "totalRevenueExVAT": 6112.4800000000005, "totalCost": 2975.2799999999997, "totalQty": 506.0, "orderCount": 470, "margin": 3137.2000000000007, "marginPct": 51.32450331125828}, {"YearMonth": "2020-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 699.5999999999999, "totalRevenueExVAT": 583.2, "totalCost": 236.0, "totalQty": 40.0, "orderCount": 36, "margin": 347.20000000000005, "marginPct": 59.53360768175583}, {"YearMonth": "2020-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1996.6499999999999, "totalRevenueExVAT": 1664.31, "totalCost": 675.12, "totalQty": 87.0, "orderCount": 71, "margin": 989.1899999999999, "marginPct": 59.43544171458443}, {"YearMonth": "2020-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1031.1699999999998, "totalRevenueExVAT": 863.1700000000001, "totalCost": 298.76, "totalQty": 77.0, "orderCount": 68, "margin": 564.4100000000001, "marginPct": 65.38804638715433}, {"YearMonth": "2020-10", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1042.5500000000002, "totalRevenueExVAT": 868.84, "totalCost": 267.96, "totalQty": 29.0, "orderCount": 24, "margin": 600.8800000000001, "marginPct": 69.1588785046729}, {"YearMonth": "2020-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2352.43, "totalRevenueExVAT": 1962.9500000000003, "totalCost": 655.75, "totalQty": 215.0, "orderCount": 207, "margin": 1307.2000000000003, "marginPct": 66.59364731653888}, {"YearMonth": "2020-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1110.35, "totalRevenueExVAT": 925.38, "totalCost": 323.29999999999995, "totalQty": 53.0, "orderCount": 49, "margin": 602.08, "marginPct": 65.06300114547537}, {"YearMonth": "2020-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 2079.21, "totalRevenueExVAT": 1735.3600000000001, "totalCost": 689.0400000000001, "totalQty": 116.0, "orderCount": 101, "margin": 1046.3200000000002, "marginPct": 60.29411764705883}, {"YearMonth": "2020-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1699.79, "totalRevenueExVAT": 1417.59, "totalCost": 507.87, "totalQty": 171.0, "orderCount": 162, "margin": 909.7199999999999, "marginPct": 64.17370325693607}, {"YearMonth": "2020-11", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1075.55, "totalRevenueExVAT": 896.2099999999999, "totalCost": 463.54, "totalQty": 49.0, "orderCount": 42, "margin": 432.6699999999999, "marginPct": 48.27774740295243}, {"YearMonth": "2020-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 932.4, "totalRevenueExVAT": 776.8799999999999, "totalCost": 340.56000000000006, "totalQty": 72.0, "orderCount": 71, "margin": 436.3199999999998, "marginPct": 56.163113994439286}, {"YearMonth": "2020-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1542.74, "totalRevenueExVAT": 1288.98, "totalCost": 484.84000000000003, "totalQty": 62.0, "orderCount": 57, "margin": 804.14, "marginPct": 62.38576238576239}, {"YearMonth": "2020-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1318.29, "totalRevenueExVAT": 1104.8500000000001, "totalCost": 371.45, "totalQty": 95.0, "orderCount": 90, "margin": 733.4000000000001, "marginPct": 66.38005159071368}, {"YearMonth": "2020-11", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3163.6000000000004, "totalRevenueExVAT": 2636.48, "totalCost": 1166.0, "totalQty": 88.0, "orderCount": 79, "margin": 1470.48, "marginPct": 55.7743658210948}, {"YearMonth": "2020-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1759.4899999999998, "totalRevenueExVAT": 1467.33, "totalCost": 732.78, "totalQty": 177.0, "orderCount": 145, "margin": 734.55, "marginPct": 50.06031363088058}, {"YearMonth": "2020-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2166.84, "totalRevenueExVAT": 1816.9199999999998, "totalCost": 940.8, "totalQty": 84.0, "orderCount": 68, "margin": 876.1199999999999, "marginPct": 48.22006472491909}, {"YearMonth": "2020-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1286.05, "totalRevenueExVAT": 1071.56, "totalCost": 498.4, "totalQty": 89.0, "orderCount": 75, "margin": 573.16, "marginPct": 53.48837209302325}, {"YearMonth": "2020-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1706.6499999999999, "totalRevenueExVAT": 1422.03, "totalCost": 656.98, "totalQty": 107.0, "orderCount": 80, "margin": 765.05, "marginPct": 53.799849510910455}, {"YearMonth": "2020-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1507.8, "totalRevenueExVAT": 1256.64, "totalCost": 376.32000000000005, "totalQty": 84.0, "orderCount": 70, "margin": 880.32, "marginPct": 70.05347593582889}, {"YearMonth": "2020-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 3333.0, "totalRevenueExVAT": 2782.56, "totalCost": 667.5899999999999, "totalQty": 561.0, "orderCount": 485, "margin": 2114.9700000000003, "marginPct": 76.00806451612905}, {"YearMonth": "2020-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 5148.84, "totalRevenueExVAT": 4291.34, "totalCost": 1168.58, "totalQty": 491.0, "orderCount": 422, "margin": 3122.76, "marginPct": 72.76887871853546}, {"YearMonth": "2020-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 874.48, "totalRevenueExVAT": 731.7199999999999, "totalCost": 249.04000000000002, "totalQty": 44.0, "orderCount": 40, "margin": 482.6799999999999, "marginPct": 65.96512327119662}, {"YearMonth": "2020-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 4090.47, "totalRevenueExVAT": 3426.2999999999997, "totalCost": 1873.8000000000002, "totalQty": 135.0, "orderCount": 102, "margin": 1552.4999999999995, "marginPct": 45.31126871552402}, {"YearMonth": "2020-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2116.68, "totalRevenueExVAT": 1768.02, "totalCost": 673.0799999999999, "totalQty": 237.0, "orderCount": 189, "margin": 1094.94, "marginPct": 61.930294906166225}, {"YearMonth": "2020-11", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 758.1, "totalRevenueExVAT": 631.9399999999999, "totalCost": 268.28, "totalQty": 38.0, "orderCount": 37, "margin": 363.65999999999997, "marginPct": 57.546602525556224}, {"YearMonth": "2020-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1052.7, "totalRevenueExVAT": 877.14, "totalCost": 170.28, "totalQty": 66.0, "orderCount": 65, "margin": 706.86, "marginPct": 80.58690744920993}, {"YearMonth": "2020-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 951.51, "totalRevenueExVAT": 800.31, "totalCost": 0.0, "totalQty": 37.0, "orderCount": 32, "margin": 800.31, "marginPct": 100.0}, {"YearMonth": "2020-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1017.4499999999999, "totalRevenueExVAT": 848.13, "totalCost": 298.98, "totalQty": 51.0, "orderCount": 41, "margin": 549.15, "marginPct": 64.74832867602844}, {"YearMonth": "2020-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3344.96, "totalRevenueExVAT": 2793.8399999999997, "totalCost": 1206.24, "totalQty": 168.0, "orderCount": 143, "margin": 1587.5999999999997, "marginPct": 56.82501503307276}, {"YearMonth": "2020-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2593.33, "totalRevenueExVAT": 2163.8100000000004, "totalCost": 850.8299999999999, "totalQty": 237.0, "orderCount": 212, "margin": 1312.9800000000005, "marginPct": 60.679079956188396}, {"YearMonth": "2020-11", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1097.25, "totalRevenueExVAT": 914.65, "totalCost": 447.70000000000005, "totalQty": 55.0, "orderCount": 50, "margin": 466.94999999999993, "marginPct": 51.052315093205046}, {"YearMonth": "2020-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 833.8, "totalRevenueExVAT": 694.76, "totalCost": 387.20000000000005, "totalQty": 44.0, "orderCount": 41, "margin": 307.55999999999995, "marginPct": 44.268524382520575}, {"YearMonth": "2020-11", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2129.5299999999997, "totalRevenueExVAT": 1777.44, "totalCost": 546.48, "totalQty": 138.0, "orderCount": 116, "margin": 1230.96, "marginPct": 69.25465838509317}, {"YearMonth": "2020-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 700.6999999999999, "totalRevenueExVAT": 583.96, "totalCost": 274.56, "totalQty": 26.0, "orderCount": 24, "margin": 309.40000000000003, "marginPct": 52.98308103294747}, {"YearMonth": "2020-11", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 759.0500000000001, "totalRevenueExVAT": 632.51, "totalCost": 537.7, "totalQty": 19.0, "orderCount": 18, "margin": 94.80999999999995, "marginPct": 14.989486332231895}, {"YearMonth": "2020-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1227.87, "totalRevenueExVAT": 1023.1199999999999, "totalCost": 483.84, "totalQty": 63.0, "orderCount": 58, "margin": 539.28, "marginPct": 52.70935960591133}, {"YearMonth": "2020-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1395.73, "totalRevenueExVAT": 1163.32, "totalCost": 487.68, "totalQty": 127.0, "orderCount": 115, "margin": 675.6399999999999, "marginPct": 58.078602620087324}, {"YearMonth": "2020-11", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 9497.769999999999, "totalRevenueExVAT": 7918.199999999999, "totalCost": 1992.0, "totalQty": 830.0, "orderCount": 669, "margin": 5926.199999999999, "marginPct": 74.84276729559748}, {"YearMonth": "2020-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16720.47, "totalRevenueExVAT": 13951.349999999999, "totalCost": 6759.6, "totalQty": 645.0, "orderCount": 551, "margin": 7191.749999999998, "marginPct": 51.54877484974571}, {"YearMonth": "2020-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 5141.54, "totalRevenueExVAT": 4288.4, "totalCost": 2087.4, "totalQty": 355.0, "orderCount": 326, "margin": 2200.9999999999995, "marginPct": 51.324503311258276}, {"YearMonth": "2020-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 682.1099999999999, "totalRevenueExVAT": 568.62, "totalCost": 230.10000000000002, "totalQty": 39.0, "orderCount": 35, "margin": 338.52, "marginPct": 59.53360768175583}, {"YearMonth": "2020-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1514.7, "totalRevenueExVAT": 1262.58, "totalCost": 512.16, "totalQty": 66.0, "orderCount": 59, "margin": 750.42, "marginPct": 59.43544171458443}, {"YearMonth": "2020-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 753.1999999999999, "totalRevenueExVAT": 627.76, "totalCost": 217.28, "totalQty": 56.0, "orderCount": 51, "margin": 410.48, "marginPct": 65.38804638715433}, {"YearMonth": "2020-11", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1222.3000000000002, "totalRevenueExVAT": 1018.64, "totalCost": 314.16, "totalQty": 34.0, "orderCount": 30, "margin": 704.48, "marginPct": 69.1588785046729}, {"YearMonth": "2020-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2555.02, "totalRevenueExVAT": 2136.42, "totalCost": 713.6999999999999, "totalQty": 234.0, "orderCount": 220, "margin": 1422.7200000000003, "marginPct": 66.59364731653889}, {"YearMonth": "2020-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1316.36, "totalRevenueExVAT": 1099.98, "totalCost": 384.29999999999995, "totalQty": 63.0, "orderCount": 60, "margin": 715.6800000000001, "marginPct": 65.06300114547537}, {"YearMonth": "2020-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 2055.2799999999997, "totalRevenueExVAT": 1720.4, "totalCost": 683.1, "totalQty": 115.0, "orderCount": 106, "margin": 1037.3000000000002, "marginPct": 60.29411764705883}, {"YearMonth": "2020-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1671.6, "totalRevenueExVAT": 1392.7199999999998, "totalCost": 498.96000000000004, "totalQty": 168.0, "orderCount": 159, "margin": 893.7599999999998, "marginPct": 64.17370325693605}, {"YearMonth": "2020-12", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1580.45, "totalRevenueExVAT": 1316.87, "totalCost": 690.58, "totalQty": 73.0, "orderCount": 50, "margin": 626.2899999999998, "marginPct": 47.55898456187778}, {"YearMonth": "2020-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 729.5899999999999, "totalRevenueExVAT": 609.62, "totalCost": 274.34000000000003, "totalQty": 58.0, "orderCount": 54, "margin": 335.28, "marginPct": 54.99819559725731}, {"YearMonth": "2020-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1692.44, "totalRevenueExVAT": 1413.72, "totalCost": 531.76, "totalQty": 68.0, "orderCount": 62, "margin": 881.96, "marginPct": 62.38576238576239}, {"YearMonth": "2020-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1295.03, "totalRevenueExVAT": 1081.5900000000001, "totalCost": 363.63, "totalQty": 93.0, "orderCount": 90, "margin": 717.9600000000002, "marginPct": 66.38005159071368}, {"YearMonth": "2020-12", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 4433.84, "totalRevenueExVAT": 3715.04, "totalCost": 1731.0400000000002, "totalQty": 124.0, "orderCount": 103, "margin": 1983.9999999999998, "marginPct": 53.40453938584779}, {"YearMonth": "2020-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1684.86, "totalRevenueExVAT": 1409.3, "totalCost": 703.8, "totalQty": 170.0, "orderCount": 129, "margin": 705.5, "marginPct": 50.06031363088058}, {"YearMonth": "2020-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2491.2, "totalRevenueExVAT": 2076.48, "totalCost": 1075.1999999999998, "totalQty": 96.0, "orderCount": 82, "margin": 1001.2800000000002, "marginPct": 48.220064724919105}, {"YearMonth": "2020-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1112.6499999999999, "totalRevenueExVAT": 927.0799999999999, "totalCost": 431.2, "totalQty": 77.0, "orderCount": 72, "margin": 495.87999999999994, "marginPct": 53.48837209302325}, {"YearMonth": "2020-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1355.75, "totalRevenueExVAT": 1129.6499999999999, "totalCost": 521.9, "totalQty": 85.0, "orderCount": 72, "margin": 607.7499999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2020-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2017.3999999999999, "totalRevenueExVAT": 1681.3600000000001, "totalCost": 519.6800000000001, "totalQty": 116.0, "orderCount": 89, "margin": 1161.68, "marginPct": 69.09168768140077}, {"YearMonth": "2020-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 2564.4500000000003, "totalRevenueExVAT": 2137.7599999999998, "totalCost": 512.89, "totalQty": 431.0, "orderCount": 369, "margin": 1624.87, "marginPct": 76.00806451612904}, {"YearMonth": "2020-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 3596.32, "totalRevenueExVAT": 2997.82, "totalCost": 816.3399999999999, "totalQty": 343.0, "orderCount": 293, "margin": 2181.4800000000005, "marginPct": 72.76887871853548}, {"YearMonth": "2020-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1276.8, "totalRevenueExVAT": 1064.32, "totalCost": 362.24, "totalQty": 64.0, "orderCount": 55, "margin": 702.0799999999999, "marginPct": 65.96512327119663}, {"YearMonth": "2020-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 4075.23, "totalRevenueExVAT": 3400.92, "totalCost": 1859.92, "totalQty": 134.0, "orderCount": 109, "margin": 1541.0, "marginPct": 45.31126871552404}, {"YearMonth": "2020-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2805.83, "totalRevenueExVAT": 2342.44, "totalCost": 891.76, "totalQty": 314.0, "orderCount": 224, "margin": 1450.68, "marginPct": 61.93029490616622}, {"YearMonth": "2020-12", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 944.3199999999999, "totalRevenueExVAT": 798.2399999999999, "totalCost": 338.88, "totalQty": 48.0, "orderCount": 41, "margin": 459.3599999999999, "marginPct": 57.546602525556224}, {"YearMonth": "2020-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 574.1999999999999, "totalRevenueExVAT": 478.43999999999994, "totalCost": 92.88, "totalQty": 36.0, "orderCount": 36, "margin": 385.55999999999995, "marginPct": 80.58690744920993}, {"YearMonth": "2020-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 726.6, "totalRevenueExVAT": 605.64, "totalCost": 0.0, "totalQty": 28.0, "orderCount": 26, "margin": 605.64, "marginPct": 100.0}, {"YearMonth": "2020-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1755.6, "totalRevenueExVAT": 1463.4399999999998, "totalCost": 524.48, "totalQty": 88.0, "orderCount": 70, "margin": 938.9599999999998, "marginPct": 64.16115453998796}, {"YearMonth": "2020-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2999.17, "totalRevenueExVAT": 2511.1299999999997, "totalCost": 1084.18, "totalQty": 151.0, "orderCount": 131, "margin": 1426.9499999999996, "marginPct": 56.82501503307276}, {"YearMonth": "2020-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2372.5099999999998, "totalRevenueExVAT": 1981.2100000000003, "totalCost": 779.03, "totalQty": 217.0, "orderCount": 196, "margin": 1202.1800000000003, "marginPct": 60.679079956188396}, {"YearMonth": "2020-12", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1117.2, "totalRevenueExVAT": 931.28, "totalCost": 455.84000000000003, "totalQty": 56.0, "orderCount": 53, "margin": 475.43999999999994, "marginPct": 51.052315093205046}, {"YearMonth": "2020-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 830.64, "totalRevenueExVAT": 694.76, "totalCost": 387.20000000000005, "totalQty": 44.0, "orderCount": 37, "margin": 307.55999999999995, "marginPct": 44.268524382520575}, {"YearMonth": "2020-12", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1844.02, "totalRevenueExVAT": 1545.48, "totalCost": 498.96, "totalQty": 126.0, "orderCount": 96, "margin": 1046.52, "marginPct": 67.71488469601678}, {"YearMonth": "2020-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 835.4499999999999, "totalRevenueExVAT": 696.26, "totalCost": 327.36, "totalQty": 31.0, "orderCount": 30, "margin": 368.9, "marginPct": 52.98308103294745}, {"YearMonth": "2020-12", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1198.5, "totalRevenueExVAT": 998.6999999999999, "totalCost": 849.0, "totalQty": 30.0, "orderCount": 27, "margin": 149.69999999999993, "marginPct": 14.989486332231897}, {"YearMonth": "2020-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1286.34, "totalRevenueExVAT": 1071.84, "totalCost": 506.88, "totalQty": 66.0, "orderCount": 58, "margin": 564.9599999999999, "marginPct": 52.70935960591133}, {"YearMonth": "2020-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1119.15, "totalRevenueExVAT": 934.32, "totalCost": 391.68, "totalQty": 102.0, "orderCount": 87, "margin": 542.6400000000001, "marginPct": 58.07860262008734}, {"YearMonth": "2020-12", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 8070.339999999999, "totalRevenueExVAT": 6725.7, "totalCost": 1692.0, "totalQty": 705.0, "orderCount": 558, "margin": 5033.7, "marginPct": 74.84276729559748}, {"YearMonth": "2020-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 19068.93, "totalRevenueExVAT": 15898.05, "totalCost": 7702.8, "totalQty": 735.0, "orderCount": 631, "margin": 8195.25, "marginPct": 51.548774849745726}, {"YearMonth": "2020-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4586.1, "totalRevenueExVAT": 3829.36, "totalCost": 1863.96, "totalQty": 317.0, "orderCount": 298, "margin": 1965.4, "marginPct": 51.324503311258276}, {"YearMonth": "2020-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 874.4999999999999, "totalRevenueExVAT": 729.0, "totalCost": 295.0, "totalQty": 50.0, "orderCount": 42, "margin": 434.0, "marginPct": 59.53360768175583}, {"YearMonth": "2020-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2534.62, "totalRevenueExVAT": 2115.54, "totalCost": 884.64, "totalQty": 114.0, "orderCount": 91, "margin": 1230.9, "marginPct": 58.183726140843476}, {"YearMonth": "2020-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 735.17, "totalRevenueExVAT": 616.57, "totalCost": 221.16, "totalQty": 57.0, "orderCount": 53, "margin": 395.4100000000001, "marginPct": 64.13059344437777}, {"YearMonth": "2020-12", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 934.7, "totalRevenueExVAT": 778.96, "totalCost": 240.24, "totalQty": 26.0, "orderCount": 26, "margin": 538.72, "marginPct": 69.1588785046729}, {"YearMonth": "2020-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2157.15, "totalRevenueExVAT": 1798.6100000000001, "totalCost": 600.85, "totalQty": 197.0, "orderCount": 182, "margin": 1197.7600000000002, "marginPct": 66.59364731653889}, {"YearMonth": "2020-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1295.4099999999999, "totalRevenueExVAT": 1082.52, "totalCost": 378.2, "totalQty": 62.0, "orderCount": 55, "margin": 704.3199999999999, "marginPct": 65.06300114547537}, {"YearMonth": "2020-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 2261.7, "totalRevenueExVAT": 1884.96, "totalCost": 748.44, "totalQty": 126.0, "orderCount": 104, "margin": 1136.52, "marginPct": 60.29411764705882}, {"YearMonth": "2020-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1432.8, "totalRevenueExVAT": 1193.7599999999998, "totalCost": 427.68, "totalQty": 144.0, "orderCount": 132, "margin": 766.0799999999997, "marginPct": 64.17370325693605}, {"YearMonth": "2021-01", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1266.53, "totalRevenueExVAT": 1055.33, "totalCost": 548.6800000000001, "totalQty": 58.0, "orderCount": 43, "margin": 506.64999999999986, "marginPct": 48.008679749462246}, {"YearMonth": "2021-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 849.54, "totalRevenueExVAT": 707.8199999999999, "totalCost": 312.18, "totalQty": 66.0, "orderCount": 64, "margin": 395.63999999999993, "marginPct": 55.89556666949223}, {"YearMonth": "2021-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2517.96, "totalRevenueExVAT": 2097.61, "totalCost": 868.02, "totalQty": 111.0, "orderCount": 104, "margin": 1229.5900000000001, "marginPct": 58.61861833229247}, {"YearMonth": "2021-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1956.43, "totalRevenueExVAT": 1629.63, "totalCost": 598.23, "totalQty": 153.0, "orderCount": 143, "margin": 1031.4, "marginPct": 63.290440161263604}, {"YearMonth": "2021-01", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 5298.650000000001, "totalRevenueExVAT": 4415.8, "totalCost": 2163.8, "totalQty": 155.0, "orderCount": 135, "margin": 2252.0, "marginPct": 50.99868653471624}, {"YearMonth": "2021-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 2401.92, "totalRevenueExVAT": 2000.1799999999998, "totalCost": 1080.54, "totalQty": 261.0, "orderCount": 223, "margin": 919.6399999999999, "marginPct": 45.977861992420685}, {"YearMonth": "2021-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 3139.95, "totalRevenueExVAT": 2617.23, "totalCost": 1355.1999999999998, "totalQty": 121.0, "orderCount": 111, "margin": 1262.0300000000002, "marginPct": 48.220064724919105}, {"YearMonth": "2021-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1459.4499999999998, "totalRevenueExVAT": 1216.04, "totalCost": 565.5999999999999, "totalQty": 101.0, "orderCount": 95, "margin": 650.44, "marginPct": 53.48837209302326}, {"YearMonth": "2021-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1738.55, "totalRevenueExVAT": 1448.61, "totalCost": 669.26, "totalQty": 109.0, "orderCount": 88, "margin": 779.3499999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2021-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2035.35, "totalRevenueExVAT": 1696.3200000000002, "totalCost": 524.1600000000001, "totalQty": 117.0, "orderCount": 103, "margin": 1172.16, "marginPct": 69.10016977928693}, {"YearMonth": "2021-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 3920.4500000000003, "totalRevenueExVAT": 3268.16, "totalCost": 798.49, "totalQty": 671.0, "orderCount": 576, "margin": 2469.67, "marginPct": 75.56759766963674}, {"YearMonth": "2021-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 6861.35, "totalRevenueExVAT": 5717.47, "totalCost": 1594.6, "totalQty": 670.0, "orderCount": 570, "margin": 4122.870000000001, "marginPct": 72.11004167927425}, {"YearMonth": "2021-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1137.1499999999999, "totalRevenueExVAT": 947.91, "totalCost": 322.62, "totalQty": 57.0, "orderCount": 48, "margin": 625.29, "marginPct": 65.96512327119663}, {"YearMonth": "2021-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 7209.99, "totalRevenueExVAT": 6012.14, "totalCost": 3553.28, "totalQty": 256.0, "orderCount": 167, "margin": 2458.86, "marginPct": 40.89824920910025}, {"YearMonth": "2021-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 3517.35, "totalRevenueExVAT": 2931.78, "totalCost": 1116.12, "totalQty": 393.0, "orderCount": 310, "margin": 1815.6600000000003, "marginPct": 61.930294906166225}, {"YearMonth": "2021-01", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1436.3999999999999, "totalRevenueExVAT": 1197.36, "totalCost": 508.32, "totalQty": 72.0, "orderCount": 64, "margin": 689.04, "marginPct": 57.546602525556224}, {"YearMonth": "2021-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1512.12, "totalRevenueExVAT": 1259.8799999999999, "totalCost": 247.68, "totalQty": 96.0, "orderCount": 93, "margin": 1012.1999999999998, "marginPct": 80.34098485570054}, {"YearMonth": "2021-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1445.48, "totalRevenueExVAT": 1204.7, "totalCost": 0.0, "totalQty": 57.0, "orderCount": 52, "margin": 1204.7, "marginPct": 100.0}, {"YearMonth": "2021-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2114.7, "totalRevenueExVAT": 1762.78, "totalCost": 631.76, "totalQty": 106.0, "orderCount": 85, "margin": 1131.02, "marginPct": 64.16115453998798}, {"YearMonth": "2021-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3826.77, "totalRevenueExVAT": 3189.13, "totalCost": 1428.82, "totalQty": 199.0, "orderCount": 182, "margin": 1760.3100000000002, "marginPct": 55.197185439289086}, {"YearMonth": "2021-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 3359.97, "totalRevenueExVAT": 2800.3700000000003, "totalCost": 1138.03, "totalQty": 317.0, "orderCount": 283, "margin": 1662.3400000000004, "marginPct": 59.36144152379864}, {"YearMonth": "2021-01", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 458.84999999999997, "totalRevenueExVAT": 382.48999999999995, "totalCost": 187.22000000000003, "totalQty": 23.0, "orderCount": 21, "margin": 195.26999999999992, "marginPct": 51.05231509320504}, {"YearMonth": "2021-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1155.95, "totalRevenueExVAT": 963.1899999999999, "totalCost": 536.8000000000001, "totalQty": 61.0, "orderCount": 58, "margin": 426.3899999999999, "marginPct": 44.268524382520575}, {"YearMonth": "2021-01", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 3057.91, "totalRevenueExVAT": 2548.81, "totalCost": 811.8, "totalQty": 205.0, "orderCount": 174, "margin": 1737.01, "marginPct": 68.14984247550818}, {"YearMonth": "2021-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 997.15, "totalRevenueExVAT": 831.02, "totalCost": 390.72, "totalQty": 37.0, "orderCount": 33, "margin": 440.29999999999995, "marginPct": 52.98308103294745}, {"YearMonth": "2021-01", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 958.8000000000001, "totalRevenueExVAT": 798.9599999999999, "totalCost": 679.2, "totalQty": 24.0, "orderCount": 23, "margin": 119.75999999999988, "marginPct": 14.989486332231888}, {"YearMonth": "2021-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1910.0199999999998, "totalRevenueExVAT": 1591.5199999999998, "totalCost": 752.64, "totalQty": 98.0, "orderCount": 82, "margin": 838.8799999999998, "marginPct": 52.709359605911324}, {"YearMonth": "2021-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1604.54, "totalRevenueExVAT": 1337.3600000000001, "totalCost": 560.64, "totalQty": 146.0, "orderCount": 133, "margin": 776.7200000000001, "marginPct": 58.07860262008734}, {"YearMonth": "2021-01", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 14637.18, "totalRevenueExVAT": 12195.46, "totalCost": 3153.6, "totalQty": 1314.0, "orderCount": 992, "margin": 9041.859999999999, "marginPct": 74.14119680602454}, {"YearMonth": "2021-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 30104.75, "totalRevenueExVAT": 25086.95, "totalCost": 12733.2, "totalQty": 1215.0, "orderCount": 1038, "margin": 12353.75, "marginPct": 49.24373030599575}, {"YearMonth": "2021-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6656.55, "totalRevenueExVAT": 5549.24, "totalCost": 2793.0, "totalQty": 475.0, "orderCount": 432, "margin": 2756.24, "marginPct": 49.668783473052166}, {"YearMonth": "2021-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1346.7299999999998, "totalRevenueExVAT": 1122.66, "totalCost": 454.3, "totalQty": 77.0, "orderCount": 70, "margin": 668.3600000000001, "marginPct": 59.53360768175584}, {"YearMonth": "2021-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2102.24, "totalRevenueExVAT": 1752.28, "totalCost": 713.92, "totalQty": 92.0, "orderCount": 81, "margin": 1038.3600000000001, "marginPct": 59.257652886524994}, {"YearMonth": "2021-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1000.65, "totalRevenueExVAT": 834.0300000000001, "totalCost": 291.0, "totalQty": 75.0, "orderCount": 65, "margin": 543.0300000000001, "marginPct": 65.1091687349376}, {"YearMonth": "2021-01", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2430.05, "totalRevenueExVAT": 2025.16, "totalCost": 656.04, "totalQty": 71.0, "orderCount": 60, "margin": 1369.1200000000001, "marginPct": 67.60552252661518}, {"YearMonth": "2021-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2792.25, "totalRevenueExVAT": 2328.15, "totalCost": 777.75, "totalQty": 255.0, "orderCount": 246, "margin": 1550.4, "marginPct": 66.59364731653888}, {"YearMonth": "2021-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1487.45, "totalRevenueExVAT": 1239.66, "totalCost": 433.09999999999997, "totalQty": 71.0, "orderCount": 68, "margin": 806.5600000000002, "marginPct": 65.06300114547538}, {"YearMonth": "2021-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 2620.7, "totalRevenueExVAT": 2184.1600000000003, "totalCost": 867.24, "totalQty": 146.0, "orderCount": 130, "margin": 1316.9200000000003, "marginPct": 60.29411764705883}, {"YearMonth": "2021-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 2258.6499999999996, "totalRevenueExVAT": 1881.8299999999997, "totalCost": 674.19, "totalQty": 227.0, "orderCount": 211, "margin": 1207.6399999999996, "marginPct": 64.17370325693605}, {"YearMonth": "2021-02", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 632.88, "totalRevenueExVAT": 548.6999999999999, "totalCost": 283.8, "totalQty": 30.0, "orderCount": 27, "margin": 264.8999999999999, "marginPct": 48.27774740295243}, {"YearMonth": "2021-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 628.0699999999999, "totalRevenueExVAT": 528.7099999999999, "totalCost": 231.77, "totalQty": 49.0, "orderCount": 49, "margin": 296.93999999999994, "marginPct": 56.16311399443929}, {"YearMonth": "2021-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1175.38, "totalRevenueExVAT": 991.63, "totalCost": 414.46000000000004, "totalQty": 53.0, "orderCount": 50, "margin": 577.17, "marginPct": 58.20416889363976}, {"YearMonth": "2021-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1191.1000000000001, "totalRevenueExVAT": 993.7, "totalCost": 371.45, "totalQty": 95.0, "orderCount": 91, "margin": 622.25, "marginPct": 62.619502868068835}, {"YearMonth": "2021-02", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1653.7, "totalRevenueExVAT": 1378.16, "totalCost": 642.1600000000001, "totalQty": 46.0, "orderCount": 42, "margin": 736.0, "marginPct": 53.40453938584779}, {"YearMonth": "2021-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1343.4900000000002, "totalRevenueExVAT": 1119.83, "totalCost": 621.0, "totalQty": 150.0, "orderCount": 125, "margin": 498.8299999999999, "marginPct": 44.5451541751873}, {"YearMonth": "2021-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1781.9099999999999, "totalRevenueExVAT": 1492.47, "totalCost": 772.8, "totalQty": 69.0, "orderCount": 65, "margin": 719.6700000000001, "marginPct": 48.2200647249191}, {"YearMonth": "2021-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 869.4, "totalRevenueExVAT": 734.4399999999999, "totalCost": 341.59999999999997, "totalQty": 61.0, "orderCount": 55, "margin": 392.84, "marginPct": 53.48837209302326}, {"YearMonth": "2021-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1188.27, "totalRevenueExVAT": 996.7499999999999, "totalCost": 460.5, "totalQty": 75.0, "orderCount": 61, "margin": 536.2499999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2021-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1130.85, "totalRevenueExVAT": 942.48, "totalCost": 282.24, "totalQty": 63.0, "orderCount": 55, "margin": 660.24, "marginPct": 70.05347593582889}, {"YearMonth": "2021-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1736.42, "totalRevenueExVAT": 1453.28, "totalCost": 348.66999999999996, "totalQty": 293.0, "orderCount": 263, "margin": 1104.6100000000001, "marginPct": 76.00806451612904}, {"YearMonth": "2021-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 2566.55, "totalRevenueExVAT": 2141.3, "totalCost": 583.1, "totalQty": 245.0, "orderCount": 213, "margin": 1558.2000000000003, "marginPct": 72.76887871853548}, {"YearMonth": "2021-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 798.0, "totalRevenueExVAT": 665.1999999999999, "totalCost": 226.4, "totalQty": 40.0, "orderCount": 35, "margin": 438.79999999999995, "marginPct": 65.96512327119663}, {"YearMonth": "2021-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2608.51, "totalRevenueExVAT": 2192.64, "totalCost": 1332.48, "totalQty": 96.0, "orderCount": 73, "margin": 860.1599999999999, "marginPct": 39.22942206654991}, {"YearMonth": "2021-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2285.25, "totalRevenueExVAT": 1917.22, "totalCost": 729.88, "totalQty": 257.0, "orderCount": 203, "margin": 1187.3400000000001, "marginPct": 61.930294906166225}, {"YearMonth": "2021-02", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 551.96, "totalRevenueExVAT": 465.64, "totalCost": 197.67999999999998, "totalQty": 28.0, "orderCount": 25, "margin": 267.96000000000004, "marginPct": 57.54660252555623}, {"YearMonth": "2021-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 725.7199999999999, "totalRevenueExVAT": 611.3399999999999, "totalCost": 118.68, "totalQty": 46.0, "orderCount": 44, "margin": 492.6599999999999, "marginPct": 80.58690744920993}, {"YearMonth": "2021-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 462.78, "totalRevenueExVAT": 389.34, "totalCost": 0.0, "totalQty": 18.0, "orderCount": 17, "margin": 389.34, "marginPct": 100.0}, {"YearMonth": "2021-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 811.31, "totalRevenueExVAT": 681.8299999999999, "totalCost": 244.36, "totalQty": 41.0, "orderCount": 37, "margin": 437.4699999999999, "marginPct": 64.16115453998796}, {"YearMonth": "2021-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 997.5, "totalRevenueExVAT": 831.5, "totalCost": 359.0, "totalQty": 50.0, "orderCount": 45, "margin": 472.5, "marginPct": 56.82501503307276}, {"YearMonth": "2021-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 832.1999999999999, "totalRevenueExVAT": 693.8800000000001, "totalCost": 272.84, "totalQty": 76.0, "orderCount": 74, "margin": 421.04000000000013, "marginPct": 60.679079956188396}, {"YearMonth": "2021-02", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1419.8, "totalRevenueExVAT": 1197.36, "totalCost": 586.08, "totalQty": 72.0, "orderCount": 69, "margin": 611.2799999999999, "marginPct": 51.052315093205046}, {"YearMonth": "2021-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 653.77, "totalRevenueExVAT": 552.65, "totalCost": 308.0, "totalQty": 35.0, "orderCount": 34, "margin": 244.64999999999998, "marginPct": 44.26852438252058}, {"YearMonth": "2021-02", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1259.19, "totalRevenueExVAT": 1056.16, "totalCost": 324.71999999999997, "totalQty": 82.0, "orderCount": 74, "margin": 731.44, "marginPct": 69.25465838509317}, {"YearMonth": "2021-02", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 449.17, "totalRevenueExVAT": 381.82, "totalCost": 179.52, "totalQty": 17.0, "orderCount": 14, "margin": 202.29999999999998, "marginPct": 52.98308103294745}, {"YearMonth": "2021-02", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 559.3000000000001, "totalRevenueExVAT": 466.05999999999995, "totalCost": 396.2, "totalQty": 14.0, "orderCount": 12, "margin": 69.85999999999996, "marginPct": 14.989486332231895}, {"YearMonth": "2021-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1143.4099999999999, "totalRevenueExVAT": 958.1599999999999, "totalCost": 453.12, "totalQty": 59.0, "orderCount": 52, "margin": 505.03999999999985, "marginPct": 52.709359605911324}, {"YearMonth": "2021-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1148.46, "totalRevenueExVAT": 961.8000000000001, "totalCost": 403.2, "totalQty": 105.0, "orderCount": 95, "margin": 558.6000000000001, "marginPct": 58.07860262008735}, {"YearMonth": "2021-02", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4688.759999999999, "totalRevenueExVAT": 3920.9399999999996, "totalCost": 986.4, "totalQty": 411.0, "orderCount": 337, "margin": 2934.5399999999995, "marginPct": 74.84276729559748}, {"YearMonth": "2021-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12479.52, "totalRevenueExVAT": 10527.3, "totalCost": 5103.76, "totalQty": 487.0, "orderCount": 414, "margin": 5423.539999999999, "marginPct": 51.51881299098534}, {"YearMonth": "2021-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4086.21, "totalRevenueExVAT": 3418.64, "totalCost": 1664.04, "totalQty": 283.0, "orderCount": 271, "margin": 1754.6, "marginPct": 51.324503311258276}, {"YearMonth": "2021-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 501.39, "totalRevenueExVAT": 422.82, "totalCost": 171.10000000000002, "totalQty": 29.0, "orderCount": 26, "margin": 251.71999999999997, "marginPct": 59.53360768175583}, {"YearMonth": "2021-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1246.97, "totalRevenueExVAT": 1052.1499999999999, "totalCost": 426.8, "totalQty": 55.0, "orderCount": 49, "margin": 625.3499999999999, "marginPct": 59.43544171458443}, {"YearMonth": "2021-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 596.29, "totalRevenueExVAT": 504.45000000000005, "totalCost": 174.6, "totalQty": 45.0, "orderCount": 41, "margin": 329.85, "marginPct": 65.38804638715433}, {"YearMonth": "2021-02", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 826.85, "totalRevenueExVAT": 689.08, "totalCost": 212.52, "totalQty": 23.0, "orderCount": 20, "margin": 476.56000000000006, "marginPct": 69.1588785046729}, {"YearMonth": "2021-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2044.0099999999998, "totalRevenueExVAT": 1707.3100000000002, "totalCost": 570.35, "totalQty": 187.0, "orderCount": 179, "margin": 1136.96, "marginPct": 66.59364731653888}, {"YearMonth": "2021-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 757.6999999999999, "totalRevenueExVAT": 646.02, "totalCost": 225.7, "totalQty": 37.0, "orderCount": 36, "margin": 420.32, "marginPct": 65.06300114547537}, {"YearMonth": "2021-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1106.92, "totalRevenueExVAT": 927.5200000000001, "totalCost": 368.28000000000003, "totalQty": 62.0, "orderCount": 56, "margin": 559.24, "marginPct": 60.29411764705882}, {"YearMonth": "2021-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 983.3899999999999, "totalRevenueExVAT": 820.7099999999999, "totalCost": 294.03000000000003, "totalQty": 99.0, "orderCount": 93, "margin": 526.6799999999998, "marginPct": 64.17370325693605}, {"YearMonth": "2021-03", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1105.2, "totalRevenueExVAT": 960.48, "totalCost": 586.5200000000001, "totalQty": 62.0, "orderCount": 50, "margin": 373.9599999999999, "marginPct": 38.93469931700815}, {"YearMonth": "2021-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 778.79, "totalRevenueExVAT": 671.25, "totalCost": 331.1, "totalQty": 70.0, "orderCount": 60, "margin": 340.15, "marginPct": 50.674115456238354}, {"YearMonth": "2021-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1924.02, "totalRevenueExVAT": 1627.77, "totalCost": 680.34, "totalQty": 87.0, "orderCount": 78, "margin": 947.43, "marginPct": 58.20416889363976}, {"YearMonth": "2021-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1178.5, "totalRevenueExVAT": 993.7, "totalCost": 371.45, "totalQty": 95.0, "orderCount": 95, "margin": 622.25, "marginPct": 62.619502868068835}, {"YearMonth": "2021-03", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2528.5, "totalRevenueExVAT": 2157.12, "totalCost": 1005.1200000000001, "totalQty": 72.0, "orderCount": 68, "margin": 1151.9999999999998, "marginPct": 53.40453938584779}, {"YearMonth": "2021-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1691.9, "totalRevenueExVAT": 1417.4, "totalCost": 786.5999999999999, "totalQty": 190.0, "orderCount": 159, "margin": 630.8000000000002, "marginPct": 44.504021447721186}, {"YearMonth": "2021-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2504.44, "totalRevenueExVAT": 2132.2, "totalCost": 1187.1999999999998, "totalQty": 106.0, "orderCount": 89, "margin": 945.0, "marginPct": 44.3204202232436}, {"YearMonth": "2021-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1286.51, "totalRevenueExVAT": 1087.3999999999999, "totalCost": 532.0, "totalQty": 95.0, "orderCount": 80, "margin": 555.3999999999999, "marginPct": 51.07596100790877}, {"YearMonth": "2021-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1751.84, "totalRevenueExVAT": 1461.8999999999999, "totalCost": 675.4, "totalQty": 110.0, "orderCount": 95, "margin": 786.4999999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2021-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1532.06, "totalRevenueExVAT": 1290.8200000000002, "totalCost": 412.16, "totalQty": 92.0, "orderCount": 78, "margin": 878.6600000000001, "marginPct": 68.0699090500612}, {"YearMonth": "2021-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1930.8, "totalRevenueExVAT": 1621.92, "totalCost": 389.13, "totalQty": 327.0, "orderCount": 283, "margin": 1232.79, "marginPct": 76.00806451612902}, {"YearMonth": "2021-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 2445.9, "totalRevenueExVAT": 2053.9, "totalCost": 559.3, "totalQty": 235.0, "orderCount": 199, "margin": 1494.6000000000001, "marginPct": 72.76887871853546}, {"YearMonth": "2021-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 887.79, "totalRevenueExVAT": 748.3499999999999, "totalCost": 254.70000000000002, "totalQty": 45.0, "orderCount": 41, "margin": 493.64999999999986, "marginPct": 65.96512327119662}, {"YearMonth": "2021-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 4015.21, "totalRevenueExVAT": 3423.6, "totalCost": 1984.8400000000001, "totalQty": 143.0, "orderCount": 91, "margin": 1438.7599999999998, "marginPct": 42.024769248744}, {"YearMonth": "2021-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2899.8599999999997, "totalRevenueExVAT": 2461.8, "totalCost": 937.1999999999999, "totalQty": 330.0, "orderCount": 262, "margin": 1524.6000000000004, "marginPct": 61.930294906166225}, {"YearMonth": "2021-03", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 967.62, "totalRevenueExVAT": 831.5, "totalCost": 353.0, "totalQty": 50.0, "orderCount": 46, "margin": 478.5, "marginPct": 57.546602525556224}, {"YearMonth": "2021-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 999.53, "totalRevenueExVAT": 837.27, "totalCost": 162.54, "totalQty": 63.0, "orderCount": 62, "margin": 674.73, "marginPct": 80.58690744920993}, {"YearMonth": "2021-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 804.4499999999999, "totalRevenueExVAT": 670.53, "totalCost": 0.0, "totalQty": 31.0, "orderCount": 28, "margin": 670.53, "marginPct": 100.0}, {"YearMonth": "2021-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 974.2299999999999, "totalRevenueExVAT": 814.87, "totalCost": 292.04, "totalQty": 49.0, "orderCount": 44, "margin": 522.8299999999999, "marginPct": 64.16115453998796}, {"YearMonth": "2021-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3451.44, "totalRevenueExVAT": 2926.8799999999997, "totalCost": 1263.6799999999998, "totalQty": 176.0, "orderCount": 144, "margin": 1663.1999999999998, "marginPct": 56.82501503307276}, {"YearMonth": "2021-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1918.1299999999999, "totalRevenueExVAT": 1616.0100000000002, "totalCost": 635.43, "totalQty": 177.0, "orderCount": 156, "margin": 980.5800000000003, "marginPct": 60.679079956188396}, {"YearMonth": "2021-03", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1436.4299999999998, "totalRevenueExVAT": 1213.99, "totalCost": 594.22, "totalQty": 73.0, "orderCount": 66, "margin": 619.77, "marginPct": 51.052315093205046}, {"YearMonth": "2021-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 679.04, "totalRevenueExVAT": 568.4399999999999, "totalCost": 316.8, "totalQty": 36.0, "orderCount": 35, "margin": 251.63999999999993, "marginPct": 44.268524382520575}, {"YearMonth": "2021-03", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2191.42, "totalRevenueExVAT": 1867.6000000000001, "totalCost": 574.2, "totalQty": 145.0, "orderCount": 121, "margin": 1293.4, "marginPct": 69.25465838509317}, {"YearMonth": "2021-03", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 619.86, "totalRevenueExVAT": 539.04, "totalCost": 253.44, "totalQty": 24.0, "orderCount": 22, "margin": 285.59999999999997, "marginPct": 52.98308103294745}, {"YearMonth": "2021-03", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1085.3000000000002, "totalRevenueExVAT": 932.12, "totalCost": 792.4, "totalQty": 28.0, "orderCount": 24, "margin": 139.72000000000003, "marginPct": 14.989486332231905}, {"YearMonth": "2021-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 987.4899999999999, "totalRevenueExVAT": 828.2399999999999, "totalCost": 391.68, "totalQty": 51.0, "orderCount": 49, "margin": 436.5599999999999, "marginPct": 52.709359605911324}, {"YearMonth": "2021-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1370.09, "totalRevenueExVAT": 1145.0, "totalCost": 480.0, "totalQty": 125.0, "orderCount": 113, "margin": 665.0, "marginPct": 58.07860262008734}, {"YearMonth": "2021-03", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 5347.08, "totalRevenueExVAT": 4521.96, "totalCost": 1137.6, "totalQty": 474.0, "orderCount": 367, "margin": 3384.36, "marginPct": 74.8427672955975}, {"YearMonth": "2021-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 18277.77, "totalRevenueExVAT": 15465.449999999999, "totalCost": 7493.200000000001, "totalQty": 715.0, "orderCount": 597, "margin": 7972.249999999998, "marginPct": 51.54877484974571}, {"YearMonth": "2021-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4530.58, "totalRevenueExVAT": 3793.12, "totalCost": 1846.32, "totalQty": 314.0, "orderCount": 302, "margin": 1946.8, "marginPct": 51.324503311258276}, {"YearMonth": "2021-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 950.31, "totalRevenueExVAT": 801.9, "totalCost": 324.5, "totalQty": 55.0, "orderCount": 48, "margin": 477.4, "marginPct": 59.53360768175583}, {"YearMonth": "2021-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1717.46, "totalRevenueExVAT": 1453.8799999999999, "totalCost": 589.76, "totalQty": 76.0, "orderCount": 72, "margin": 864.1199999999999, "marginPct": 59.43544171458443}, {"YearMonth": "2021-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 553.6999999999999, "totalRevenueExVAT": 470.82000000000005, "totalCost": 162.96, "totalQty": 42.0, "orderCount": 38, "margin": 307.86, "marginPct": 65.38804638715432}, {"YearMonth": "2021-03", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 952.6800000000001, "totalRevenueExVAT": 808.9200000000001, "totalCost": 249.48000000000002, "totalQty": 27.0, "orderCount": 25, "margin": 559.44, "marginPct": 69.1588785046729}, {"YearMonth": "2021-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2604.31, "totalRevenueExVAT": 2182.07, "totalCost": 728.9499999999999, "totalQty": 239.0, "orderCount": 228, "margin": 1453.1200000000003, "marginPct": 66.59364731653889}, {"YearMonth": "2021-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1284.94, "totalRevenueExVAT": 1082.52, "totalCost": 378.2, "totalQty": 62.0, "orderCount": 60, "margin": 704.3199999999999, "marginPct": 65.06300114547537}, {"YearMonth": "2021-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1226.6, "totalRevenueExVAT": 1047.2, "totalCost": 415.8, "totalQty": 70.0, "orderCount": 63, "margin": 631.4000000000001, "marginPct": 60.29411764705883}, {"YearMonth": "2021-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1532.28, "totalRevenueExVAT": 1293.2399999999998, "totalCost": 463.32000000000005, "totalQty": 156.0, "orderCount": 144, "margin": 829.9199999999997, "marginPct": 64.17370325693605}, {"YearMonth": "2021-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 963.12, "totalRevenueExVAT": 829.9200000000001, "totalCost": 529.76, "totalQty": 56.0, "orderCount": 45, "margin": 300.1600000000001, "marginPct": 36.167341430499334}, {"YearMonth": "2021-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 314.69, "totalRevenueExVAT": 270.94, "totalCost": 146.63000000000002, "totalQty": 31.0, "orderCount": 30, "margin": 124.30999999999997, "marginPct": 45.88100686498855}, {"YearMonth": "2021-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1635.8300000000002, "totalRevenueExVAT": 1365.8300000000002, "totalCost": 570.86, "totalQty": 73.0, "orderCount": 66, "margin": 794.9700000000001, "marginPct": 58.204168893639775}, {"YearMonth": "2021-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1207.82, "totalRevenueExVAT": 1014.6200000000001, "totalCost": 379.27000000000004, "totalQty": 97.0, "orderCount": 92, "margin": 635.3500000000001, "marginPct": 62.61950286806884}, {"YearMonth": "2021-04", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1977.2600000000002, "totalRevenueExVAT": 1677.76, "totalCost": 781.76, "totalQty": 56.0, "orderCount": 53, "margin": 896.0, "marginPct": 53.40453938584779}, {"YearMonth": "2021-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1545.5400000000002, "totalRevenueExVAT": 1298.04, "totalCost": 720.3599999999999, "totalQty": 174.0, "orderCount": 134, "margin": 577.6800000000001, "marginPct": 44.504021447721186}, {"YearMonth": "2021-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2919.92, "totalRevenueExVAT": 2471.42, "totalCost": 1422.3999999999999, "totalQty": 127.0, "orderCount": 105, "margin": 1049.0200000000002, "marginPct": 42.446043165467636}, {"YearMonth": "2021-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1164.3899999999999, "totalRevenueExVAT": 975.6, "totalCost": 503.99999999999994, "totalQty": 90.0, "orderCount": 82, "margin": 471.6000000000001, "marginPct": 48.339483394833955}, {"YearMonth": "2021-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1539.1699999999998, "totalRevenueExVAT": 1289.1299999999999, "totalCost": 595.5799999999999, "totalQty": 97.0, "orderCount": 84, "margin": 693.55, "marginPct": 53.799849510910455}, {"YearMonth": "2021-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1569.2499999999998, "totalRevenueExVAT": 1319.0800000000002, "totalCost": 439.04, "totalQty": 98.0, "orderCount": 80, "margin": 880.0400000000002, "marginPct": 66.71619613670134}, {"YearMonth": "2021-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1348.68, "totalRevenueExVAT": 1130.8799999999999, "totalCost": 271.32, "totalQty": 228.0, "orderCount": 209, "margin": 859.56, "marginPct": 76.00806451612904}, {"YearMonth": "2021-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 2022.81, "totalRevenueExVAT": 1695.56, "totalCost": 461.71999999999997, "totalQty": 194.0, "orderCount": 163, "margin": 1233.84, "marginPct": 72.76887871853546}, {"YearMonth": "2021-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1034.11, "totalRevenueExVAT": 881.39, "totalCost": 299.98, "totalQty": 53.0, "orderCount": 48, "margin": 581.41, "marginPct": 65.96512327119663}, {"YearMonth": "2021-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3298.83, "totalRevenueExVAT": 2817.18, "totalCost": 1540.68, "totalQty": 111.0, "orderCount": 84, "margin": 1276.4999999999998, "marginPct": 45.31126871552403}, {"YearMonth": "2021-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2504.5299999999997, "totalRevenueExVAT": 2103.72, "totalCost": 800.88, "totalQty": 282.0, "orderCount": 218, "margin": 1302.8399999999997, "marginPct": 61.9302949061662}, {"YearMonth": "2021-04", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1173.76, "totalRevenueExVAT": 997.8, "totalCost": 423.59999999999997, "totalQty": 60.0, "orderCount": 51, "margin": 574.2, "marginPct": 57.54660252555623}, {"YearMonth": "2021-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 959.65, "totalRevenueExVAT": 810.6899999999999, "totalCost": 157.38, "totalQty": 61.0, "orderCount": 56, "margin": 653.31, "marginPct": 80.58690744920993}, {"YearMonth": "2021-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 778.5, "totalRevenueExVAT": 648.9, "totalCost": 0.0, "totalQty": 30.0, "orderCount": 28, "margin": 648.9, "marginPct": 100.0}, {"YearMonth": "2021-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1486.29, "totalRevenueExVAT": 1247.25, "totalCost": 447.0, "totalQty": 75.0, "orderCount": 65, "margin": 800.25, "marginPct": 64.16115453998798}, {"YearMonth": "2021-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2576.96, "totalRevenueExVAT": 2195.16, "totalCost": 947.76, "totalQty": 132.0, "orderCount": 120, "margin": 1247.3999999999999, "marginPct": 56.82501503307276}, {"YearMonth": "2021-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2075.0699999999997, "totalRevenueExVAT": 1743.8300000000002, "totalCost": 685.6899999999999, "totalQty": 191.0, "orderCount": 185, "margin": 1058.1400000000003, "marginPct": 60.67907995618841}, {"YearMonth": "2021-04", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 266.02, "totalRevenueExVAT": 232.82, "totalCost": 113.96000000000001, "totalQty": 14.0, "orderCount": 12, "margin": 118.85999999999999, "marginPct": 51.052315093205046}, {"YearMonth": "2021-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 581.12, "totalRevenueExVAT": 505.28, "totalCost": 281.6, "totalQty": 32.0, "orderCount": 31, "margin": 223.67999999999995, "marginPct": 44.268524382520575}, {"YearMonth": "2021-04", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1766.5, "totalRevenueExVAT": 1494.0800000000002, "totalCost": 459.36, "totalQty": 116.0, "orderCount": 100, "margin": 1034.7200000000003, "marginPct": 69.25465838509318}, {"YearMonth": "2021-04", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 844.4399999999999, "totalRevenueExVAT": 718.72, "totalCost": 337.92, "totalQty": 32.0, "orderCount": 31, "margin": 380.8, "marginPct": 52.98308103294747}, {"YearMonth": "2021-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 892.21, "totalRevenueExVAT": 765.67, "totalCost": 650.9, "totalQty": 23.0, "orderCount": 20, "margin": 114.76999999999998, "marginPct": 14.9894863322319}, {"YearMonth": "2021-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1130.4199999999998, "totalRevenueExVAT": 941.92, "totalCost": 445.44, "totalQty": 58.0, "orderCount": 53, "margin": 496.47999999999996, "marginPct": 52.70935960591133}, {"YearMonth": "2021-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 888.36, "totalRevenueExVAT": 741.96, "totalCost": 311.03999999999996, "totalQty": 81.0, "orderCount": 78, "margin": 430.9200000000001, "marginPct": 58.07860262008734}, {"YearMonth": "2021-04", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3965.47, "totalRevenueExVAT": 3348.5399999999995, "totalCost": 842.4, "totalQty": 351.0, "orderCount": 288, "margin": 2506.1399999999994, "marginPct": 74.84276729559748}, {"YearMonth": "2021-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16244.85, "totalRevenueExVAT": 13648.529999999999, "totalCost": 6612.88, "totalQty": 631.0, "orderCount": 566, "margin": 7035.649999999999, "marginPct": 51.54877484974571}, {"YearMonth": "2021-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4578.9, "totalRevenueExVAT": 3841.44, "totalCost": 1869.84, "totalQty": 318.0, "orderCount": 301, "margin": 1971.6000000000001, "marginPct": 51.32450331125828}, {"YearMonth": "2021-04", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 926.9699999999999, "totalRevenueExVAT": 772.74, "totalCost": 312.70000000000005, "totalQty": 53.0, "orderCount": 49, "margin": 460.03999999999996, "marginPct": 59.53360768175583}, {"YearMonth": "2021-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 983.03, "totalRevenueExVAT": 822.5899999999999, "totalCost": 333.68, "totalQty": 43.0, "orderCount": 41, "margin": 488.9099999999999, "marginPct": 59.435441714584414}, {"YearMonth": "2021-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 562.66, "totalRevenueExVAT": 470.82000000000005, "totalCost": 162.96, "totalQty": 42.0, "orderCount": 37, "margin": 307.86, "marginPct": 65.38804638715432}, {"YearMonth": "2021-04", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 635.12, "totalRevenueExVAT": 539.28, "totalCost": 166.32, "totalQty": 18.0, "orderCount": 16, "margin": 372.96, "marginPct": 69.1588785046729}, {"YearMonth": "2021-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1980.1599999999999, "totalRevenueExVAT": 1661.66, "totalCost": 555.1, "totalQty": 182.0, "orderCount": 174, "margin": 1106.56, "marginPct": 66.59364731653888}, {"YearMonth": "2021-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 593.59, "totalRevenueExVAT": 506.34000000000003, "totalCost": 176.89999999999998, "totalQty": 29.0, "orderCount": 28, "margin": 329.44000000000005, "marginPct": 65.06300114547537}, {"YearMonth": "2021-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1097.95, "totalRevenueExVAT": 927.5200000000001, "totalCost": 368.28000000000003, "totalQty": 62.0, "orderCount": 57, "margin": 559.24, "marginPct": 60.29411764705882}, {"YearMonth": "2021-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1009.91, "totalRevenueExVAT": 853.8699999999999, "totalCost": 305.91, "totalQty": 103.0, "orderCount": 93, "margin": 547.9599999999998, "marginPct": 64.17370325693605}, {"YearMonth": "2021-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 927.5600000000001, "totalRevenueExVAT": 800.28, "totalCost": 510.84000000000003, "totalQty": 54.0, "orderCount": 44, "margin": 289.43999999999994, "marginPct": 36.16734143049932}, {"YearMonth": "2021-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 603.16, "totalRevenueExVAT": 515.66, "totalCost": 279.07000000000005, "totalQty": 59.0, "orderCount": 55, "margin": 236.58999999999992, "marginPct": 45.88100686498854}, {"YearMonth": "2021-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1736.8400000000001, "totalRevenueExVAT": 1478.0900000000001, "totalCost": 617.78, "totalQty": 79.0, "orderCount": 70, "margin": 860.3100000000002, "marginPct": 58.204168893639775}, {"YearMonth": "2021-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1425.5, "totalRevenueExVAT": 1202.9, "totalCost": 449.65000000000003, "totalQty": 115.0, "orderCount": 109, "margin": 753.25, "marginPct": 62.619502868068835}, {"YearMonth": "2021-05", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2624.36, "totalRevenueExVAT": 2217.04, "totalCost": 1033.04, "totalQty": 74.0, "orderCount": 68, "margin": 1184.0, "marginPct": 53.40453938584779}, {"YearMonth": "2021-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1396.95, "totalRevenueExVAT": 1181.29, "totalCost": 604.4399999999999, "totalQty": 146.0, "orderCount": 113, "margin": 576.85, "marginPct": 48.832208856419676}, {"YearMonth": "2021-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2908.29, "totalRevenueExVAT": 2465.61, "totalCost": 1310.3999999999999, "totalQty": 117.0, "orderCount": 101, "margin": 1155.2100000000003, "marginPct": 46.852908610850875}, {"YearMonth": "2021-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1307.53, "totalRevenueExVAT": 1105.32, "totalCost": 520.8, "totalQty": 93.0, "orderCount": 84, "margin": 584.52, "marginPct": 52.88242318966453}, {"YearMonth": "2021-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1321.1899999999998, "totalRevenueExVAT": 1103.07, "totalCost": 509.61999999999995, "totalQty": 83.0, "orderCount": 68, "margin": 593.45, "marginPct": 53.79984951091047}, {"YearMonth": "2021-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1792.4499999999998, "totalRevenueExVAT": 1506.3400000000001, "totalCost": 465.9200000000001, "totalQty": 104.0, "orderCount": 88, "margin": 1040.42, "marginPct": 69.06940000265544}, {"YearMonth": "2021-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1230.67, "totalRevenueExVAT": 1031.68, "totalCost": 247.51999999999998, "totalQty": 208.0, "orderCount": 188, "margin": 784.1600000000001, "marginPct": 76.00806451612904}, {"YearMonth": "2021-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1785.04, "totalRevenueExVAT": 1494.54, "totalCost": 406.97999999999996, "totalQty": 171.0, "orderCount": 155, "margin": 1087.56, "marginPct": 72.76887871853546}, {"YearMonth": "2021-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1360.55, "totalRevenueExVAT": 1143.71, "totalCost": 424.5, "totalQty": 75.0, "orderCount": 65, "margin": 719.21, "marginPct": 62.883947853914016}, {"YearMonth": "2021-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3537.33, "totalRevenueExVAT": 2994.8399999999997, "totalCost": 1637.8400000000001, "totalQty": 118.0, "orderCount": 74, "margin": 1356.9999999999995, "marginPct": 45.31126871552402}, {"YearMonth": "2021-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2344.9399999999996, "totalRevenueExVAT": 1984.36, "totalCost": 755.4399999999999, "totalQty": 266.0, "orderCount": 212, "margin": 1228.92, "marginPct": 61.930294906166225}, {"YearMonth": "2021-05", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1263.52, "totalRevenueExVAT": 1064.32, "totalCost": 451.84, "totalQty": 64.0, "orderCount": 63, "margin": 612.48, "marginPct": 57.54660252555623}, {"YearMonth": "2021-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1135.1399999999999, "totalRevenueExVAT": 951.5, "totalCost": 201.24, "totalQty": 78.0, "orderCount": 75, "margin": 750.26, "marginPct": 78.85023646873358}, {"YearMonth": "2021-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1215.97, "totalRevenueExVAT": 1022.77, "totalCost": 242.52, "totalQty": 52.0, "orderCount": 45, "margin": 780.25, "marginPct": 76.28792397117633}, {"YearMonth": "2021-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1283.5, "totalRevenueExVAT": 1097.58, "totalCost": 393.36, "totalQty": 66.0, "orderCount": 50, "margin": 704.2199999999999, "marginPct": 64.16115453998798}, {"YearMonth": "2021-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2177.93, "totalRevenueExVAT": 1845.9299999999998, "totalCost": 796.98, "totalQty": 111.0, "orderCount": 95, "margin": 1048.9499999999998, "marginPct": 56.82501503307276}, {"YearMonth": "2021-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1425.35, "totalRevenueExVAT": 1196.0300000000002, "totalCost": 470.28999999999996, "totalQty": 131.0, "orderCount": 125, "margin": 725.7400000000002, "marginPct": 60.679079956188396}, {"YearMonth": "2021-05", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1250.21, "totalRevenueExVAT": 1047.69, "totalCost": 512.82, "totalQty": 63.0, "orderCount": 56, "margin": 534.87, "marginPct": 51.052315093205046}, {"YearMonth": "2021-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 884.3299999999999, "totalRevenueExVAT": 742.13, "totalCost": 413.6, "totalQty": 47.0, "orderCount": 41, "margin": 328.53, "marginPct": 44.26852438252058}, {"YearMonth": "2021-05", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1905.55, "totalRevenueExVAT": 1610.0, "totalCost": 495.0, "totalQty": 125.0, "orderCount": 103, "margin": 1115.0, "marginPct": 69.25465838509317}, {"YearMonth": "2021-05", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1131.91, "totalRevenueExVAT": 965.7800000000001, "totalCost": 454.08000000000004, "totalQty": 43.0, "orderCount": 38, "margin": 511.70000000000005, "marginPct": 52.98308103294747}, {"YearMonth": "2021-05", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1071.99, "totalRevenueExVAT": 898.8299999999999, "totalCost": 764.1, "totalQty": 27.0, "orderCount": 21, "margin": 134.7299999999999, "marginPct": 14.989486332231891}, {"YearMonth": "2021-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1136.9099999999999, "totalRevenueExVAT": 958.1599999999999, "totalCost": 453.12, "totalQty": 59.0, "orderCount": 56, "margin": 505.03999999999985, "marginPct": 52.709359605911324}, {"YearMonth": "2021-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1009.26, "totalRevenueExVAT": 851.88, "totalCost": 357.12, "totalQty": 93.0, "orderCount": 84, "margin": 494.76, "marginPct": 58.07860262008734}, {"YearMonth": "2021-05", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3881.5399999999995, "totalRevenueExVAT": 3243.6, "totalCost": 816.0, "totalQty": 340.0, "orderCount": 279, "margin": 2427.6, "marginPct": 74.84276729559748}, {"YearMonth": "2021-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 18818.28, "totalRevenueExVAT": 15833.16, "totalCost": 7671.360000000001, "totalQty": 732.0, "orderCount": 642, "margin": 8161.799999999999, "marginPct": 51.54877484974571}, {"YearMonth": "2021-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4520.91, "totalRevenueExVAT": 3781.04, "totalCost": 1840.44, "totalQty": 313.0, "orderCount": 299, "margin": 1940.6, "marginPct": 51.324503311258276}, {"YearMonth": "2021-05", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1034.85, "totalRevenueExVAT": 874.8, "totalCost": 354.0, "totalQty": 60.0, "orderCount": 54, "margin": 520.8, "marginPct": 59.53360768175583}, {"YearMonth": "2021-05", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1551.8500000000001, "totalRevenueExVAT": 1318.24, "totalCost": 406.56, "totalQty": 44.0, "orderCount": 41, "margin": 911.6800000000001, "marginPct": 69.1588785046729}, {"YearMonth": "2021-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1938.2099999999998, "totalRevenueExVAT": 1634.2700000000002, "totalCost": 545.9499999999999, "totalQty": 179.0, "orderCount": 173, "margin": 1088.3200000000002, "marginPct": 66.59364731653888}, {"YearMonth": "2021-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 670.41, "totalRevenueExVAT": 576.1800000000001, "totalCost": 201.29999999999998, "totalQty": 33.0, "orderCount": 33, "margin": 374.8800000000001, "marginPct": 65.06300114547538}, {"YearMonth": "2021-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1178.73, "totalRevenueExVAT": 1002.32, "totalCost": 397.98, "totalQty": 67.0, "orderCount": 58, "margin": 604.34, "marginPct": 60.29411764705882}, {"YearMonth": "2021-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1036.4499999999998, "totalRevenueExVAT": 870.4499999999999, "totalCost": 311.85, "totalQty": 105.0, "orderCount": 102, "margin": 558.5999999999999, "marginPct": 64.17370325693607}, {"YearMonth": "2021-06", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 963.5400000000001, "totalRevenueExVAT": 836.3000000000001, "totalCost": 501.38000000000005, "totalQty": 53.0, "orderCount": 38, "margin": 334.92, "marginPct": 40.04782972617482}, {"YearMonth": "2021-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 529.42, "totalRevenueExVAT": 455.42, "totalCost": 231.77, "totalQty": 49.0, "orderCount": 46, "margin": 223.65, "marginPct": 49.10851521672303}, {"YearMonth": "2021-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1729.38, "totalRevenueExVAT": 1459.38, "totalCost": 609.96, "totalQty": 78.0, "orderCount": 71, "margin": 849.4200000000001, "marginPct": 58.20416889363976}, {"YearMonth": "2021-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1145.02, "totalRevenueExVAT": 962.32, "totalCost": 359.72, "totalQty": 92.0, "orderCount": 87, "margin": 602.6, "marginPct": 62.619502868068835}, {"YearMonth": "2021-06", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2019.2, "totalRevenueExVAT": 1707.72, "totalCost": 795.72, "totalQty": 57.0, "orderCount": 54, "margin": 912.0, "marginPct": 53.40453938584779}, {"YearMonth": "2021-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1193.99, "totalRevenueExVAT": 1003.0899999999999, "totalCost": 500.93999999999994, "totalQty": 121.0, "orderCount": 106, "margin": 502.15, "marginPct": 50.06031363088058}, {"YearMonth": "2021-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2274.99, "totalRevenueExVAT": 1925.07, "totalCost": 996.8, "totalQty": 89.0, "orderCount": 87, "margin": 928.27, "marginPct": 48.22006472491909}, {"YearMonth": "2021-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1259.55, "totalRevenueExVAT": 1059.52, "totalCost": 492.79999999999995, "totalQty": 88.0, "orderCount": 80, "margin": 566.72, "marginPct": 53.48837209302326}, {"YearMonth": "2021-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2198.43, "totalRevenueExVAT": 1847.31, "totalCost": 853.4599999999999, "totalQty": 139.0, "orderCount": 107, "margin": 993.85, "marginPct": 53.799849510910455}, {"YearMonth": "2021-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1824.9299999999998, "totalRevenueExVAT": 1540.88, "totalCost": 461.44000000000005, "totalQty": 103.0, "orderCount": 92, "margin": 1079.44, "marginPct": 70.05347593582889}, {"YearMonth": "2021-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1327.8500000000001, "totalRevenueExVAT": 1111.04, "totalCost": 266.56, "totalQty": 224.0, "orderCount": 200, "margin": 844.48, "marginPct": 76.00806451612904}, {"YearMonth": "2021-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1977.3400000000001, "totalRevenueExVAT": 1669.3400000000001, "totalCost": 454.58, "totalQty": 191.0, "orderCount": 159, "margin": 1214.7600000000002, "marginPct": 72.76887871853548}, {"YearMonth": "2021-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1783.96, "totalRevenueExVAT": 1510.96, "totalCost": 571.66, "totalQty": 101.0, "orderCount": 92, "margin": 939.3000000000001, "marginPct": 62.165775401069524}, {"YearMonth": "2021-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 4085.43, "totalRevenueExVAT": 3451.68, "totalCost": 1887.68, "totalQty": 136.0, "orderCount": 93, "margin": 1563.9999999999998, "marginPct": 45.31126871552403}, {"YearMonth": "2021-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2832.73, "totalRevenueExVAT": 2402.12, "totalCost": 914.4799999999999, "totalQty": 322.0, "orderCount": 242, "margin": 1487.6399999999999, "marginPct": 61.93029490616622}, {"YearMonth": "2021-06", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 954.28, "totalRevenueExVAT": 798.24, "totalCost": 338.88, "totalQty": 48.0, "orderCount": 43, "margin": 459.36, "marginPct": 57.546602525556224}, {"YearMonth": "2021-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1768.6399999999999, "totalRevenueExVAT": 1483.0400000000002, "totalCost": 319.92, "totalQty": 124.0, "orderCount": 115, "margin": 1163.1200000000001, "marginPct": 78.42809364548495}, {"YearMonth": "2021-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 2550.1, "totalRevenueExVAT": 2140.6, "totalCost": 567.6, "totalQty": 110.0, "orderCount": 107, "margin": 1573.0, "marginPct": 73.4840698869476}, {"YearMonth": "2021-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1369.9099999999999, "totalRevenueExVAT": 1147.47, "totalCost": 411.24, "totalQty": 69.0, "orderCount": 62, "margin": 736.23, "marginPct": 64.16115453998798}, {"YearMonth": "2021-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2606.87, "totalRevenueExVAT": 2211.79, "totalCost": 954.9399999999999, "totalQty": 133.0, "orderCount": 125, "margin": 1256.85, "marginPct": 56.82501503307276}, {"YearMonth": "2021-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1861.59, "totalRevenueExVAT": 1579.4900000000002, "totalCost": 621.0699999999999, "totalQty": 173.0, "orderCount": 157, "margin": 958.4200000000003, "marginPct": 60.679079956188396}, {"YearMonth": "2021-06", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1263.55, "totalRevenueExVAT": 1080.95, "totalCost": 529.1, "totalQty": 65.0, "orderCount": 57, "margin": 551.85, "marginPct": 51.052315093205046}, {"YearMonth": "2021-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 568.49, "totalRevenueExVAT": 489.48999999999995, "totalCost": 272.8, "totalQty": 31.0, "orderCount": 29, "margin": 216.68999999999994, "marginPct": 44.268524382520575}, {"YearMonth": "2021-06", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2211.98, "totalRevenueExVAT": 1867.6000000000001, "totalCost": 574.2, "totalQty": 145.0, "orderCount": 120, "margin": 1293.4, "marginPct": 69.25465838509317}, {"YearMonth": "2021-06", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 821.98, "totalRevenueExVAT": 696.26, "totalCost": 327.36, "totalQty": 31.0, "orderCount": 31, "margin": 368.9, "marginPct": 52.98308103294745}, {"YearMonth": "2021-06", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 659.1700000000001, "totalRevenueExVAT": 565.93, "totalCost": 481.1, "totalQty": 17.0, "orderCount": 15, "margin": 84.82999999999993, "marginPct": 14.989486332231891}, {"YearMonth": "2021-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1663.1399999999999, "totalRevenueExVAT": 1396.6399999999999, "totalCost": 660.48, "totalQty": 86.0, "orderCount": 76, "margin": 736.1599999999999, "marginPct": 52.709359605911324}, {"YearMonth": "2021-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 983.61, "totalRevenueExVAT": 824.4, "totalCost": 345.59999999999997, "totalQty": 90.0, "orderCount": 83, "margin": 478.8, "marginPct": 58.07860262008734}, {"YearMonth": "2021-06", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3555.2, "totalRevenueExVAT": 2986.0199999999995, "totalCost": 751.1999999999999, "totalQty": 313.0, "orderCount": 266, "margin": 2234.8199999999997, "marginPct": 74.8427672955975}, {"YearMonth": "2021-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 18554.46, "totalRevenueExVAT": 15616.859999999999, "totalCost": 7566.56, "totalQty": 722.0, "orderCount": 643, "margin": 8050.299999999998, "marginPct": 51.54877484974571}, {"YearMonth": "2021-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4598.24, "totalRevenueExVAT": 3865.6, "totalCost": 1881.6, "totalQty": 320.0, "orderCount": 302, "margin": 1984.0, "marginPct": 51.324503311258276}, {"YearMonth": "2021-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 976.5299999999999, "totalRevenueExVAT": 816.48, "totalCost": 330.40000000000003, "totalQty": 56.0, "orderCount": 52, "margin": 486.08, "marginPct": 59.53360768175583}, {"YearMonth": "2021-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 3068.42, "totalRevenueExVAT": 2574.31, "totalCost": 1109.68, "totalQty": 143.0, "orderCount": 124, "margin": 1464.6299999999999, "marginPct": 56.894080355512735}, {"YearMonth": "2021-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 836.62, "totalRevenueExVAT": 709.64, "totalCost": 263.84, "totalQty": 68.0, "orderCount": 66, "margin": 445.8, "marginPct": 62.82058508539542}, {"YearMonth": "2021-06", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2147.7400000000002, "totalRevenueExVAT": 1830.32, "totalCost": 619.08, "totalQty": 67.0, "orderCount": 56, "margin": 1211.2399999999998, "marginPct": 66.17640631146465}, {"YearMonth": "2021-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1837.84, "totalRevenueExVAT": 1552.1000000000001, "totalCost": 518.5, "totalQty": 170.0, "orderCount": 161, "margin": 1033.6000000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2021-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 638.98, "totalRevenueExVAT": 541.26, "totalCost": 189.1, "totalQty": 31.0, "orderCount": 30, "margin": 352.15999999999997, "marginPct": 65.06300114547537}, {"YearMonth": "2021-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1397.1299999999999, "totalRevenueExVAT": 1196.8000000000002, "totalCost": 475.20000000000005, "totalQty": 80.0, "orderCount": 75, "margin": 721.6000000000001, "marginPct": 60.29411764705882}, {"YearMonth": "2021-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1185.6999999999998, "totalRevenueExVAT": 994.8, "totalCost": 356.40000000000003, "totalQty": 120.0, "orderCount": 114, "margin": 638.3999999999999, "marginPct": 64.17370325693605}, {"YearMonth": "2021-07", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 638.88, "totalRevenueExVAT": 543.1800000000001, "totalCost": 312.18, "totalQty": 33.0, "orderCount": 27, "margin": 231.00000000000006, "marginPct": 42.5273390036452}, {"YearMonth": "2021-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 310.92, "totalRevenueExVAT": 262.17, "totalCost": 127.71000000000001, "totalQty": 27.0, "orderCount": 25, "margin": 134.46, "marginPct": 51.28733264675592}, {"YearMonth": "2021-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2156.08, "totalRevenueExVAT": 1833.5800000000002, "totalCost": 766.36, "totalQty": 98.0, "orderCount": 85, "margin": 1067.2200000000003, "marginPct": 58.204168893639775}, {"YearMonth": "2021-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1463.22, "totalRevenueExVAT": 1223.8200000000002, "totalCost": 457.47, "totalQty": 117.0, "orderCount": 115, "margin": 766.3500000000001, "marginPct": 62.619502868068835}, {"YearMonth": "2021-07", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2869.7200000000003, "totalRevenueExVAT": 2423.52, "totalCost": 1214.52, "totalQty": 87.0, "orderCount": 75, "margin": 1209.0, "marginPct": 49.88611606258665}, {"YearMonth": "2021-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1722.22, "totalRevenueExVAT": 1444.12, "totalCost": 794.8799999999999, "totalQty": 192.0, "orderCount": 161, "margin": 649.24, "marginPct": 44.957482757665574}, {"YearMonth": "2021-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 3351.5499999999997, "totalRevenueExVAT": 2796.01, "totalCost": 1568.0, "totalQty": 140.0, "orderCount": 128, "margin": 1228.0100000000002, "marginPct": 43.92008612272489}, {"YearMonth": "2021-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1641.94, "totalRevenueExVAT": 1386.1599999999999, "totalCost": 694.4, "totalQty": 124.0, "orderCount": 111, "margin": 691.7599999999999, "marginPct": 49.90477289778957}, {"YearMonth": "2021-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1888.9099999999999, "totalRevenueExVAT": 1573.45, "totalCost": 779.78, "totalQty": 127.0, "orderCount": 109, "margin": 793.6700000000001, "marginPct": 50.44138676157489}, {"YearMonth": "2021-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1987.2599999999998, "totalRevenueExVAT": 1670.7, "totalCost": 537.6, "totalQty": 120.0, "orderCount": 100, "margin": 1133.1, "marginPct": 67.82187107200573}, {"YearMonth": "2021-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1321.03, "totalRevenueExVAT": 1107.44, "totalCost": 284.40999999999997, "totalQty": 239.0, "orderCount": 223, "margin": 823.0300000000001, "marginPct": 74.318247489706}, {"YearMonth": "2021-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 2115.0, "totalRevenueExVAT": 1772.21, "totalCost": 518.84, "totalQty": 218.0, "orderCount": 184, "margin": 1253.37, "marginPct": 70.72355984900209}, {"YearMonth": "2021-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1781.0, "totalRevenueExVAT": 1496.0, "totalCost": 566.0, "totalQty": 100.0, "orderCount": 88, "margin": 930.0, "marginPct": 62.165775401069524}, {"YearMonth": "2021-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 4820.79, "totalRevenueExVAT": 4103.72, "totalCost": 2401.2400000000002, "totalQty": 173.0, "orderCount": 119, "margin": 1702.48, "marginPct": 41.48626124589397}, {"YearMonth": "2021-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2988.31, "totalRevenueExVAT": 2532.44, "totalCost": 1033.76, "totalQty": 364.0, "orderCount": 273, "margin": 1498.68, "marginPct": 59.17928953894268}, {"YearMonth": "2021-07", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1536.38, "totalRevenueExVAT": 1323.3, "totalCost": 607.16, "totalQty": 86.0, "orderCount": 72, "margin": 716.14, "marginPct": 54.11773596312249}, {"YearMonth": "2021-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1342.6399999999999, "totalRevenueExVAT": 1124.24, "totalCost": 242.52, "totalQty": 94.0, "orderCount": 88, "margin": 881.72, "marginPct": 78.42809364548495}, {"YearMonth": "2021-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1253.6399999999999, "totalRevenueExVAT": 1050.8400000000001, "totalCost": 278.64, "totalQty": 54.0, "orderCount": 48, "margin": 772.2000000000002, "marginPct": 73.4840698869476}, {"YearMonth": "2021-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1764.89, "totalRevenueExVAT": 1472.97, "totalCost": 566.2, "totalQty": 95.0, "orderCount": 75, "margin": 906.77, "marginPct": 61.560656360957786}, {"YearMonth": "2021-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3753.62, "totalRevenueExVAT": 3160.56, "totalCost": 1522.1599999999999, "totalQty": 212.0, "orderCount": 176, "margin": 1638.4, "marginPct": 51.838914622725085}, {"YearMonth": "2021-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2011.47, "totalRevenueExVAT": 1687.6200000000001, "totalCost": 728.77, "totalQty": 203.0, "orderCount": 190, "margin": 958.8500000000001, "marginPct": 56.816700442042645}, {"YearMonth": "2021-07", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1415.01, "totalRevenueExVAT": 1218.65, "totalCost": 634.9200000000001, "totalQty": 78.0, "orderCount": 64, "margin": 583.73, "marginPct": 47.89972510564969}, {"YearMonth": "2021-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 664.73, "totalRevenueExVAT": 560.5, "totalCost": 352.0, "totalQty": 40.0, "orderCount": 36, "margin": 208.5, "marginPct": 37.19892952720785}, {"YearMonth": "2021-07", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2630.94, "totalRevenueExVAT": 2205.94, "totalCost": 756.36, "totalQty": 191.0, "orderCount": 157, "margin": 1449.58, "marginPct": 65.71257604467937}, {"YearMonth": "2021-07", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1126.34, "totalRevenueExVAT": 952.1600000000001, "totalCost": 485.76000000000005, "totalQty": 46.0, "orderCount": 43, "margin": 466.40000000000003, "marginPct": 48.98336414048059}, {"YearMonth": "2021-07", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 819.0500000000001, "totalRevenueExVAT": 682.4300000000001, "totalCost": 622.6, "totalQty": 22.0, "orderCount": 22, "margin": 59.83000000000004, "marginPct": 8.767199566255885}, {"YearMonth": "2021-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1760.55, "totalRevenueExVAT": 1479.6999999999998, "totalCost": 744.9599999999999, "totalQty": 97.0, "orderCount": 82, "margin": 734.7399999999999, "marginPct": 49.65465972832331}, {"YearMonth": "2021-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1265.8, "totalRevenueExVAT": 1066.84, "totalCost": 476.15999999999997, "totalQty": 124.0, "orderCount": 116, "margin": 590.68, "marginPct": 55.36725282141652}, {"YearMonth": "2021-07", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4294.48, "totalRevenueExVAT": 3600.5099999999998, "totalCost": 969.5999999999999, "totalQty": 404.0, "orderCount": 328, "margin": 2630.91, "marginPct": 73.07048168176176}, {"YearMonth": "2021-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 20252.95, "totalRevenueExVAT": 16938.670000000002, "totalCost": 8824.16, "totalQty": 842.0, "orderCount": 714, "margin": 8114.510000000002, "marginPct": 47.90523695189764}, {"YearMonth": "2021-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 5387.16, "totalRevenueExVAT": 4504.13, "totalCost": 2340.24, "totalQty": 398.0, "orderCount": 361, "margin": 2163.8900000000003, "marginPct": 48.04235224116534}, {"YearMonth": "2021-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1313.72, "totalRevenueExVAT": 1101.33, "totalCost": 501.50000000000006, "totalQty": 85.0, "orderCount": 76, "margin": 599.8299999999999, "marginPct": 54.46414789391009}, {"YearMonth": "2021-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2315.27, "totalRevenueExVAT": 1934.7200000000003, "totalCost": 907.92, "totalQty": 117.0, "orderCount": 92, "margin": 1026.8000000000002, "marginPct": 53.072279192854786}, {"YearMonth": "2021-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 924.0699999999999, "totalRevenueExVAT": 776.9499999999999, "totalCost": 306.52, "totalQty": 79.0, "orderCount": 73, "margin": 470.42999999999995, "marginPct": 60.54829783126328}, {"YearMonth": "2021-07", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2073.39, "totalRevenueExVAT": 1740.32, "totalCost": 619.08, "totalQty": 67.0, "orderCount": 60, "margin": 1121.2399999999998, "marginPct": 64.42723177346694}, {"YearMonth": "2021-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2324.72, "totalRevenueExVAT": 1948.17, "totalCost": 698.4499999999999, "totalQty": 229.0, "orderCount": 220, "margin": 1249.7200000000003, "marginPct": 64.14840593993338}, {"YearMonth": "2021-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1246.98, "totalRevenueExVAT": 1047.4, "totalCost": 396.5, "totalQty": 65.0, "orderCount": 61, "margin": 650.9000000000001, "marginPct": 62.144357456559106}, {"YearMonth": "2021-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1962.7099999999998, "totalRevenueExVAT": 1661.7, "totalCost": 712.8000000000001, "totalQty": 120.0, "orderCount": 92, "margin": 948.9, "marginPct": 57.10417042787507}, {"YearMonth": "2021-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1182.6200000000001, "totalRevenueExVAT": 991.4, "totalCost": 380.16, "totalQty": 128.0, "orderCount": 120, "margin": 611.24, "marginPct": 61.6542263465806}, {"YearMonth": "2021-08", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1098.24, "totalRevenueExVAT": 927.3, "totalCost": 482.46000000000004, "totalQty": 51.0, "orderCount": 39, "margin": 444.8399999999999, "marginPct": 47.97153024911031}, {"YearMonth": "2021-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 535.7099999999999, "totalRevenueExVAT": 449.93999999999994, "totalCost": 198.66000000000003, "totalQty": 42.0, "orderCount": 41, "margin": 251.27999999999992, "marginPct": 55.84744632617681}, {"YearMonth": "2021-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1460.42, "totalRevenueExVAT": 1220.37, "totalCost": 461.38, "totalQty": 59.0, "orderCount": 56, "margin": 758.9899999999999, "marginPct": 62.19343313912993}, {"YearMonth": "2021-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1039.29, "totalRevenueExVAT": 872.2500000000001, "totalCost": 293.25, "totalQty": 75.0, "orderCount": 73, "margin": 579.0000000000001, "marginPct": 66.38005159071368}, {"YearMonth": "2021-08", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1802.2900000000002, "totalRevenueExVAT": 1521.96, "totalCost": 711.96, "totalQty": 51.0, "orderCount": 46, "margin": 810.0, "marginPct": 53.22084680280691}, {"YearMonth": "2021-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1088.03, "totalRevenueExVAT": 910.6599999999999, "totalCost": 455.4, "totalQty": 110.0, "orderCount": 94, "margin": 455.2599999999999, "marginPct": 49.99231326730063}, {"YearMonth": "2021-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1831.26, "totalRevenueExVAT": 1544.34, "totalCost": 806.4, "totalQty": 72.0, "orderCount": 58, "margin": 737.9399999999999, "marginPct": 47.78351917323905}, {"YearMonth": "2021-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1089.3, "totalRevenueExVAT": 911.4399999999999, "totalCost": 425.59999999999997, "totalQty": 76.0, "orderCount": 67, "margin": 485.84, "marginPct": 53.30466075660494}, {"YearMonth": "2021-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1561.5, "totalRevenueExVAT": 1314.3799999999999, "totalCost": 607.86, "totalQty": 99.0, "orderCount": 78, "margin": 706.5199999999999, "marginPct": 53.75310032106392}, {"YearMonth": "2021-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 925.01, "totalRevenueExVAT": 773.4200000000001, "totalCost": 232.96000000000004, "totalQty": 52.0, "orderCount": 49, "margin": 540.46, "marginPct": 69.87923767164025}, {"YearMonth": "2021-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 875.91, "totalRevenueExVAT": 735.04, "totalCost": 177.31, "totalQty": 149.0, "orderCount": 143, "margin": 557.73, "marginPct": 75.87750326512844}, {"YearMonth": "2021-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1580.13, "totalRevenueExVAT": 1322.39, "totalCost": 361.76, "totalQty": 152.0, "orderCount": 133, "margin": 960.6300000000001, "marginPct": 72.64347129061774}, {"YearMonth": "2021-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 720.89, "totalRevenueExVAT": 611.97, "totalCost": 209.42000000000002, "totalQty": 37.0, "orderCount": 34, "margin": 402.55, "marginPct": 65.77936826968642}, {"YearMonth": "2021-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3072.44, "totalRevenueExVAT": 2586.22, "totalCost": 1415.76, "totalQty": 102.0, "orderCount": 71, "margin": 1170.4599999999998, "marginPct": 45.25755736170936}, {"YearMonth": "2021-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 16.45, "totalRevenueExVAT": 13.71, "totalCost": 5.68, "totalQty": 1.0, "orderCount": 1, "margin": 8.030000000000001, "marginPct": 58.570386579139324}, {"YearMonth": "2021-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 2080.83, "totalRevenueExVAT": 1756.77, "totalCost": 673.0799999999999, "totalQty": 237.0, "orderCount": 184, "margin": 1083.69, "marginPct": 61.686504209429806}, {"YearMonth": "2021-08", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 611.15, "totalRevenueExVAT": 512.1899999999999, "totalCost": 218.85999999999999, "totalQty": 31.0, "orderCount": 27, "margin": 293.3299999999999, "marginPct": 57.269763173822206}, {"YearMonth": "2021-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1600.31, "totalRevenueExVAT": 1342.29, "totalCost": 260.58, "totalQty": 101.0, "orderCount": 101, "margin": 1081.71, "marginPct": 80.58690744920993}, {"YearMonth": "2021-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1505.1, "totalRevenueExVAT": 1254.54, "totalCost": 299.28000000000003, "totalQty": 58.0, "orderCount": 55, "margin": 955.26, "marginPct": 76.14424410540916}, {"YearMonth": "2021-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1521.55, "totalRevenueExVAT": 1273.83, "totalCost": 458.92, "totalQty": 77.0, "orderCount": 64, "margin": 814.9099999999999, "marginPct": 63.97321463617593}, {"YearMonth": "2021-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2329.5499999999997, "totalRevenueExVAT": 1963.9699999999998, "totalCost": 854.42, "totalQty": 119.0, "orderCount": 110, "margin": 1109.5499999999997, "marginPct": 56.49526214758881}, {"YearMonth": "2021-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1670.02, "totalRevenueExVAT": 1402.8200000000002, "totalCost": 556.4499999999999, "totalQty": 155.0, "orderCount": 147, "margin": 846.3700000000002, "marginPct": 60.33347115096734}, {"YearMonth": "2021-08", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1049.3899999999999, "totalRevenueExVAT": 874.7099999999999, "totalCost": 431.42, "totalQty": 53.0, "orderCount": 46, "margin": 443.2899999999999, "marginPct": 50.678510592081935}, {"YearMonth": "2021-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 395.41999999999996, "totalRevenueExVAT": 342.64, "totalCost": 193.60000000000002, "totalQty": 22.0, "orderCount": 21, "margin": 149.03999999999996, "marginPct": 43.497548447349985}, {"YearMonth": "2021-08", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1891.1299999999999, "totalRevenueExVAT": 1602.24, "totalCost": 495.0, "totalQty": 125.0, "orderCount": 101, "margin": 1107.24, "marginPct": 69.10575194727382}, {"YearMonth": "2021-08", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 902.8299999999999, "totalRevenueExVAT": 763.64, "totalCost": 359.04, "totalQty": 34.0, "orderCount": 29, "margin": 404.59999999999997, "marginPct": 52.98308103294745}, {"YearMonth": "2021-08", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 632.5400000000001, "totalRevenueExVAT": 532.64, "totalCost": 452.8, "totalQty": 16.0, "orderCount": 16, "margin": 79.83999999999997, "marginPct": 14.989486332231897}, {"YearMonth": "2021-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1008.56, "totalRevenueExVAT": 847.9599999999999, "totalCost": 445.44, "totalQty": 58.0, "orderCount": 51, "margin": 402.5199999999999, "marginPct": 47.469220246238024}, {"YearMonth": "2021-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 687.35, "totalRevenueExVAT": 576.8000000000001, "totalCost": 268.8, "totalQty": 70.0, "orderCount": 65, "margin": 308.00000000000006, "marginPct": 53.398058252427184}, {"YearMonth": "2021-08", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3535.25, "totalRevenueExVAT": 2968.9199999999996, "totalCost": 751.1999999999999, "totalQty": 313.0, "orderCount": 245, "margin": 2217.72, "marginPct": 74.69786993250071}, {"YearMonth": "2021-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 13703.07, "totalRevenueExVAT": 11489.73, "totalCost": 5585.84, "totalQty": 533.0, "orderCount": 456, "margin": 5903.889999999999, "marginPct": 51.38406211460147}, {"YearMonth": "2021-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4162.78, "totalRevenueExVAT": 3492.31, "totalCost": 1705.2, "totalQty": 290.0, "orderCount": 280, "margin": 1787.11, "marginPct": 51.172719489392406}, {"YearMonth": "2021-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 801.6299999999999, "totalRevenueExVAT": 670.68, "totalCost": 271.40000000000003, "totalQty": 46.0, "orderCount": 43, "margin": 399.2799999999999, "marginPct": 59.53360768175582}, {"YearMonth": "2021-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1373.8700000000001, "totalRevenueExVAT": 1150.22, "totalCost": 519.92, "totalQty": 67.0, "orderCount": 60, "margin": 630.3000000000001, "marginPct": 54.79821251586653}, {"YearMonth": "2021-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 549.23, "totalRevenueExVAT": 463.02, "totalCost": 178.48, "totalQty": 46.0, "orderCount": 41, "margin": 284.53999999999996, "marginPct": 61.453068981901424}, {"YearMonth": "2021-08", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1389.27, "totalRevenueExVAT": 1184.74, "totalCost": 406.56, "totalQty": 44.0, "orderCount": 32, "margin": 778.1800000000001, "marginPct": 65.68360990597093}, {"YearMonth": "2021-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1930.56, "totalRevenueExVAT": 1614.1000000000001, "totalCost": 542.9, "totalQty": 178.0, "orderCount": 175, "margin": 1071.2000000000003, "marginPct": 66.36515705346633}, {"YearMonth": "2021-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 914.8199999999999, "totalRevenueExVAT": 768.24, "totalCost": 268.4, "totalQty": 44.0, "orderCount": 41, "margin": 499.84000000000003, "marginPct": 65.06300114547537}, {"YearMonth": "2021-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1295.98, "totalRevenueExVAT": 1087.5800000000002, "totalCost": 433.62, "totalQty": 73.0, "orderCount": 63, "margin": 653.9600000000002, "marginPct": 60.129829529781716}, {"YearMonth": "2021-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 937.3, "totalRevenueExVAT": 785.06, "totalCost": 282.15000000000003, "totalQty": 95.0, "orderCount": 81, "margin": 502.9099999999999, "marginPct": 64.06007184164267}, {"YearMonth": "2021-09", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 865.5799999999999, "totalRevenueExVAT": 724.28, "totalCost": 378.40000000000003, "totalQty": 40.0, "orderCount": 38, "margin": 345.87999999999994, "marginPct": 47.75501187386093}, {"YearMonth": "2021-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 543.9, "totalRevenueExVAT": 453.17999999999995, "totalCost": 198.66000000000003, "totalQty": 42.0, "orderCount": 41, "margin": 254.51999999999992, "marginPct": 56.163113994439286}, {"YearMonth": "2021-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1625.8999999999999, "totalRevenueExVAT": 1372.1399999999999, "totalCost": 516.12, "totalQty": 66.0, "orderCount": 61, "margin": 856.0199999999999, "marginPct": 62.385762385762376}, {"YearMonth": "2021-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1250.86, "totalRevenueExVAT": 1046.7, "totalCost": 351.90000000000003, "totalQty": 90.0, "orderCount": 86, "margin": 694.8, "marginPct": 66.38005159071366}, {"YearMonth": "2021-09", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2840.0600000000004, "totalRevenueExVAT": 2396.8, "totalCost": 1116.8000000000002, "totalQty": 80.0, "orderCount": 69, "margin": 1280.0, "marginPct": 53.40453938584779}, {"YearMonth": "2021-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1344.8999999999999, "totalRevenueExVAT": 1127.4399999999998, "totalCost": 563.04, "totalQty": 136.0, "orderCount": 116, "margin": 564.3999999999999, "marginPct": 50.06031363088057}, {"YearMonth": "2021-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2197.17, "totalRevenueExVAT": 1881.81, "totalCost": 974.4, "totalQty": 87.0, "orderCount": 75, "margin": 907.41, "marginPct": 48.22006472491909}, {"YearMonth": "2021-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1249.9199999999998, "totalRevenueExVAT": 1047.48, "totalCost": 487.2, "totalQty": 87.0, "orderCount": 77, "margin": 560.28, "marginPct": 53.48837209302325}, {"YearMonth": "2021-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1438.1499999999999, "totalRevenueExVAT": 1209.3899999999999, "totalCost": 558.74, "totalQty": 91.0, "orderCount": 72, "margin": 650.6499999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2021-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1691.4399999999998, "totalRevenueExVAT": 1419.66, "totalCost": 430.08000000000004, "totalQty": 96.0, "orderCount": 81, "margin": 989.58, "marginPct": 69.70542242508769}, {"YearMonth": "2021-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1281.24, "totalRevenueExVAT": 1071.36, "totalCost": 257.03999999999996, "totalQty": 216.0, "orderCount": 198, "margin": 814.3199999999999, "marginPct": 76.00806451612904}, {"YearMonth": "2021-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1797.28, "totalRevenueExVAT": 1503.28, "totalCost": 409.35999999999996, "totalQty": 172.0, "orderCount": 150, "margin": 1093.92, "marginPct": 72.76887871853548}, {"YearMonth": "2021-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1070.6599999999999, "totalRevenueExVAT": 898.02, "totalCost": 305.64, "totalQty": 54.0, "orderCount": 46, "margin": 592.38, "marginPct": 65.96512327119663}, {"YearMonth": "2021-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3151.62, "totalRevenueExVAT": 2664.9, "totalCost": 1457.4, "totalQty": 105.0, "orderCount": 74, "margin": 1207.5, "marginPct": 45.31126871552404}, {"YearMonth": "2021-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 164.5, "totalRevenueExVAT": 137.10000000000002, "totalCost": 56.8, "totalQty": 10.0, "orderCount": 10, "margin": 80.30000000000003, "marginPct": 58.570386579139324}, {"YearMonth": "2021-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1689.1699999999998, "totalRevenueExVAT": 1416.65, "totalCost": 539.6, "totalQty": 190.0, "orderCount": 153, "margin": 877.0500000000001, "marginPct": 61.91014011929552}, {"YearMonth": "2021-09", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1359.95, "totalRevenueExVAT": 1147.47, "totalCost": 487.14, "totalQty": 69.0, "orderCount": 58, "margin": 660.33, "marginPct": 57.546602525556224}, {"YearMonth": "2021-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1496.6399999999999, "totalRevenueExVAT": 1249.26, "totalCost": 242.52, "totalQty": 94.0, "orderCount": 91, "margin": 1006.74, "marginPct": 80.58690744920993}, {"YearMonth": "2021-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 955.8299999999999, "totalRevenueExVAT": 800.31, "totalCost": 190.92000000000002, "totalQty": 37.0, "orderCount": 36, "margin": 609.3899999999999, "marginPct": 76.14424410540914}, {"YearMonth": "2021-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1496.3, "totalRevenueExVAT": 1247.1799999999998, "totalCost": 452.96, "totalQty": 76.0, "orderCount": 59, "margin": 794.2199999999998, "marginPct": 63.68126493369039}, {"YearMonth": "2021-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2693.2799999999997, "totalRevenueExVAT": 2261.68, "totalCost": 976.48, "totalQty": 136.0, "orderCount": 122, "margin": 1285.1999999999998, "marginPct": 56.82501503307276}, {"YearMonth": "2021-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1896.1999999999998, "totalRevenueExVAT": 1588.6200000000001, "totalCost": 624.66, "totalQty": 174.0, "orderCount": 157, "margin": 963.9600000000002, "marginPct": 60.679079956188396}, {"YearMonth": "2021-09", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 970.91, "totalRevenueExVAT": 814.87, "totalCost": 398.86, "totalQty": 49.0, "orderCount": 43, "margin": 416.01, "marginPct": 51.052315093205046}, {"YearMonth": "2021-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 637.98, "totalRevenueExVAT": 536.86, "totalCost": 299.20000000000005, "totalQty": 34.0, "orderCount": 32, "margin": 237.65999999999997, "marginPct": 44.268524382520575}, {"YearMonth": "2021-09", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2039.4299999999998, "totalRevenueExVAT": 1713.0400000000002, "totalCost": 526.68, "totalQty": 133.0, "orderCount": 111, "margin": 1186.3600000000001, "marginPct": 69.25465838509317}, {"YearMonth": "2021-09", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 696.21, "totalRevenueExVAT": 583.96, "totalCost": 274.56, "totalQty": 26.0, "orderCount": 25, "margin": 309.40000000000003, "marginPct": 52.98308103294747}, {"YearMonth": "2021-09", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 872.24, "totalRevenueExVAT": 732.38, "totalCost": 622.6, "totalQty": 22.0, "orderCount": 14, "margin": 109.77999999999997, "marginPct": 14.989486332231897}, {"YearMonth": "2021-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1432.4399999999998, "totalRevenueExVAT": 1198.84, "totalCost": 629.76, "totalQty": 82.0, "orderCount": 68, "margin": 569.0799999999999, "marginPct": 47.469220246238024}, {"YearMonth": "2021-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 781.3100000000001, "totalRevenueExVAT": 650.96, "totalCost": 303.36, "totalQty": 79.0, "orderCount": 77, "margin": 347.6, "marginPct": 53.398058252427184}, {"YearMonth": "2021-09", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4316.62, "totalRevenueExVAT": 3625.2, "totalCost": 912.0, "totalQty": 380.0, "orderCount": 292, "margin": 2713.2, "marginPct": 74.84276729559748}, {"YearMonth": "2021-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 13347.0, "totalRevenueExVAT": 11161.08, "totalCost": 5407.68, "totalQty": 516.0, "orderCount": 430, "margin": 5753.4, "marginPct": 51.54877484974571}, {"YearMonth": "2021-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7682.14, "totalRevenueExVAT": 6414.4800000000005, "totalCost": 3122.2799999999997, "totalQty": 531.0, "orderCount": 418, "margin": 3292.2000000000007, "marginPct": 51.32450331125828}, {"YearMonth": "2021-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 839.5199999999999, "totalRevenueExVAT": 699.84, "totalCost": 283.20000000000005, "totalQty": 48.0, "orderCount": 41, "margin": 416.64, "marginPct": 59.53360768175583}, {"YearMonth": "2021-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2410.12, "totalRevenueExVAT": 2013.8500000000001, "totalCost": 876.88, "totalQty": 113.0, "orderCount": 92, "margin": 1136.9700000000003, "marginPct": 56.45753159371354}, {"YearMonth": "2021-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 916.14, "totalRevenueExVAT": 769.0600000000001, "totalCost": 287.12, "totalQty": 74.0, "orderCount": 65, "margin": 481.94000000000005, "marginPct": 62.66611187683666}, {"YearMonth": "2021-09", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2730.78, "totalRevenueExVAT": 2312.7200000000003, "totalCost": 757.6800000000001, "totalQty": 82.0, "orderCount": 70, "margin": 1555.0400000000002, "marginPct": 67.2385762219378}, {"YearMonth": "2021-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1841.4499999999998, "totalRevenueExVAT": 1542.97, "totalCost": 515.4499999999999, "totalQty": 169.0, "orderCount": 163, "margin": 1027.52, "marginPct": 66.59364731653888}, {"YearMonth": "2021-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1012.59, "totalRevenueExVAT": 855.5400000000001, "totalCost": 298.9, "totalQty": 49.0, "orderCount": 44, "margin": 556.6400000000001, "marginPct": 65.06300114547537}, {"YearMonth": "2021-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1376.1699999999998, "totalRevenueExVAT": 1151.92, "totalCost": 457.38000000000005, "totalQty": 77.0, "orderCount": 73, "margin": 694.54, "marginPct": 60.29411764705882}, {"YearMonth": "2021-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1359.83, "totalRevenueExVAT": 1135.7299999999998, "totalCost": 406.89000000000004, "totalQty": 137.0, "orderCount": 125, "margin": 728.8399999999997, "marginPct": 64.17370325693605}, {"YearMonth": "2021-10", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 803.5600000000001, "totalRevenueExVAT": 674.86, "totalCost": 387.86, "totalQty": 41.0, "orderCount": 39, "margin": 287.0, "marginPct": 42.527339003645196}, {"YearMonth": "2021-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 606.32, "totalRevenueExVAT": 504.9200000000001, "totalCost": 245.96000000000004, "totalQty": 52.0, "orderCount": 46, "margin": 258.96000000000004, "marginPct": 51.28733264675592}, {"YearMonth": "2021-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1542.74, "totalRevenueExVAT": 1288.98, "totalCost": 484.84000000000003, "totalQty": 62.0, "orderCount": 56, "margin": 804.14, "marginPct": 62.38576238576239}, {"YearMonth": "2021-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1239.23, "totalRevenueExVAT": 1035.0700000000002, "totalCost": 347.99, "totalQty": 89.0, "orderCount": 86, "margin": 687.0800000000002, "marginPct": 66.38005159071368}, {"YearMonth": "2021-10", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1833.46, "totalRevenueExVAT": 1557.92, "totalCost": 725.9200000000001, "totalQty": 52.0, "orderCount": 49, "margin": 832.0, "marginPct": 53.40453938584779}, {"YearMonth": "2021-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1187.36, "totalRevenueExVAT": 994.8, "totalCost": 496.79999999999995, "totalQty": 120.0, "orderCount": 100, "margin": 498.0, "marginPct": 50.06031363088058}, {"YearMonth": "2021-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2348.52, "totalRevenueExVAT": 1989.96, "totalCost": 1030.3999999999999, "totalQty": 92.0, "orderCount": 83, "margin": 959.5600000000002, "marginPct": 48.220064724919105}, {"YearMonth": "2021-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1459.4499999999998, "totalRevenueExVAT": 1216.04, "totalCost": 565.5999999999999, "totalQty": 101.0, "orderCount": 92, "margin": 650.44, "marginPct": 53.48837209302326}, {"YearMonth": "2021-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2294.14, "totalRevenueExVAT": 1913.7599999999998, "totalCost": 884.16, "totalQty": 144.0, "orderCount": 134, "margin": 1029.6, "marginPct": 53.799849510910455}, {"YearMonth": "2021-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1830.34, "totalRevenueExVAT": 1534.44, "totalCost": 510.72, "totalQty": 114.0, "orderCount": 98, "margin": 1023.72, "marginPct": 66.71619613670133}, {"YearMonth": "2021-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1452.01, "totalRevenueExVAT": 1215.3, "totalCost": 303.45, "totalQty": 255.0, "orderCount": 232, "margin": 911.8499999999999, "marginPct": 75.03085657862256}, {"YearMonth": "2021-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 2624.32, "totalRevenueExVAT": 2194.14, "totalCost": 621.18, "totalQty": 261.0, "orderCount": 217, "margin": 1572.96, "marginPct": 71.68913560666138}, {"YearMonth": "2021-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1203.6699999999998, "totalRevenueExVAT": 1014.43, "totalCost": 345.26, "totalQty": 61.0, "orderCount": 57, "margin": 669.17, "marginPct": 65.96512327119663}, {"YearMonth": "2021-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2699.91, "totalRevenueExVAT": 2258.8199999999997, "totalCost": 1235.3200000000002, "totalQty": 89.0, "orderCount": 65, "margin": 1023.4999999999995, "marginPct": 45.31126871552402}, {"YearMonth": "2021-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 65.8, "totalRevenueExVAT": 54.84, "totalCost": 22.72, "totalQty": 4.0, "orderCount": 3, "margin": 32.120000000000005, "marginPct": 58.570386579139324}, {"YearMonth": "2021-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 71.6, "totalRevenueExVAT": 59.68, "totalCost": 22.72, "totalQty": 8.0, "orderCount": 8, "margin": 36.96, "marginPct": 61.93029490616622}, {"YearMonth": "2021-10", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 912.39, "totalRevenueExVAT": 763.31, "totalCost": 324.76, "totalQty": 46.0, "orderCount": 43, "margin": 438.54999999999995, "marginPct": 57.453721292790604}, {"YearMonth": "2021-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1592.34, "totalRevenueExVAT": 1329.0, "totalCost": 258.0, "totalQty": 100.0, "orderCount": 98, "margin": 1071.0, "marginPct": 80.58690744920993}, {"YearMonth": "2021-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1396.98, "totalRevenueExVAT": 1168.02, "totalCost": 278.64, "totalQty": 54.0, "orderCount": 52, "margin": 889.38, "marginPct": 76.14424410540916}, {"YearMonth": "2021-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1661.2800000000002, "totalRevenueExVAT": 1391.28, "totalCost": 554.28, "totalQty": 93.0, "orderCount": 76, "margin": 837.0, "marginPct": 60.16042780748663}, {"YearMonth": "2021-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2955.95, "totalRevenueExVAT": 2477.87, "totalCost": 1069.82, "totalQty": 149.0, "orderCount": 130, "margin": 1408.05, "marginPct": 56.82501503307276}, {"YearMonth": "2021-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1746.54, "totalRevenueExVAT": 1460.8000000000002, "totalCost": 574.4, "totalQty": 160.0, "orderCount": 148, "margin": 886.4000000000002, "marginPct": 60.679079956188396}, {"YearMonth": "2021-10", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1213.6299999999999, "totalRevenueExVAT": 1014.43, "totalCost": 496.54, "totalQty": 61.0, "orderCount": 58, "margin": 517.8899999999999, "marginPct": 51.05231509320504}, {"YearMonth": "2021-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 473.75, "totalRevenueExVAT": 394.75, "totalCost": 220.00000000000003, "totalQty": 25.0, "orderCount": 23, "margin": 174.74999999999997, "marginPct": 44.268524382520575}, {"YearMonth": "2021-10", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1993.11, "totalRevenueExVAT": 1687.2800000000002, "totalCost": 518.76, "totalQty": 131.0, "orderCount": 122, "margin": 1168.5200000000002, "marginPct": 69.25465838509317}, {"YearMonth": "2021-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 902.8299999999999, "totalRevenueExVAT": 763.64, "totalCost": 359.04, "totalQty": 34.0, "orderCount": 33, "margin": 404.59999999999997, "marginPct": 52.98308103294745}, {"YearMonth": "2021-10", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 552.64, "totalRevenueExVAT": 466.06, "totalCost": 396.2, "totalQty": 14.0, "orderCount": 14, "margin": 69.86000000000001, "marginPct": 14.989486332231905}, {"YearMonth": "2021-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1622.46, "totalRevenueExVAT": 1359.6599999999999, "totalCost": 714.24, "totalQty": 93.0, "orderCount": 85, "margin": 645.4199999999998, "marginPct": 47.469220246238024}, {"YearMonth": "2021-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 845.59, "totalRevenueExVAT": 708.64, "totalCost": 330.24, "totalQty": 86.0, "orderCount": 83, "margin": 378.4, "marginPct": 53.398058252427184}, {"YearMonth": "2021-10", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 5263.89, "totalRevenueExVAT": 4397.87, "totalCost": 1159.2, "totalQty": 483.0, "orderCount": 390, "margin": 3238.67, "marginPct": 73.64178568261454}, {"YearMonth": "2021-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15492.24, "totalRevenueExVAT": 12978.0, "totalCost": 6288.0, "totalQty": 600.0, "orderCount": 526, "margin": 6690.0, "marginPct": 51.548774849745726}, {"YearMonth": "2021-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3927.81, "totalRevenueExVAT": 3296.63, "totalCost": 1605.24, "totalQty": 273.0, "orderCount": 257, "margin": 1691.39, "marginPct": 51.30663738423784}, {"YearMonth": "2021-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 924.06, "totalRevenueExVAT": 772.74, "totalCost": 312.70000000000005, "totalQty": 53.0, "orderCount": 49, "margin": 460.03999999999996, "marginPct": 59.53360768175583}, {"YearMonth": "2021-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1312.0, "totalRevenueExVAT": 1109.54, "totalCost": 450.08, "totalQty": 58.0, "orderCount": 54, "margin": 659.46, "marginPct": 59.43544171458443}, {"YearMonth": "2021-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 721.8199999999999, "totalRevenueExVAT": 605.34, "totalCost": 209.51999999999998, "totalQty": 54.0, "orderCount": 49, "margin": 395.82000000000005, "marginPct": 65.38804638715433}, {"YearMonth": "2021-10", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 838.84, "totalRevenueExVAT": 719.04, "totalCost": 221.76, "totalQty": 24.0, "orderCount": 23, "margin": 497.28, "marginPct": 69.1588785046729}, {"YearMonth": "2021-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1158.8799999999999, "totalRevenueExVAT": 967.7800000000001, "totalCost": 323.29999999999995, "totalQty": 106.0, "orderCount": 103, "margin": 644.4800000000001, "marginPct": 66.59364731653889}, {"YearMonth": "2021-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 733.25, "totalRevenueExVAT": 611.1, "totalCost": 213.5, "totalQty": 35.0, "orderCount": 34, "margin": 397.6, "marginPct": 65.06300114547537}, {"YearMonth": "2021-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1238.55, "totalRevenueExVAT": 1032.24, "totalCost": 409.86, "totalQty": 69.0, "orderCount": 66, "margin": 622.38, "marginPct": 60.29411764705882}, {"YearMonth": "2021-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1198.9699999999998, "totalRevenueExVAT": 1003.0899999999999, "totalCost": 359.37, "totalQty": 121.0, "orderCount": 108, "margin": 643.7199999999999, "marginPct": 64.17370325693607}, {"YearMonth": "2021-11", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1296.42, "totalRevenueExVAT": 1093.68, "totalCost": 624.36, "totalQty": 66.0, "orderCount": 46, "margin": 469.32000000000005, "marginPct": 42.912003511081856}, {"YearMonth": "2021-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 858.89, "totalRevenueExVAT": 718.5500000000001, "totalCost": 345.29, "totalQty": 73.0, "orderCount": 72, "margin": 373.26000000000005, "marginPct": 51.946280704195956}, {"YearMonth": "2021-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1750.82, "totalRevenueExVAT": 1482.29, "totalCost": 586.5, "totalQty": 75.0, "orderCount": 67, "margin": 895.79, "marginPct": 60.43284377550952}, {"YearMonth": "2021-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1252.09, "totalRevenueExVAT": 1045.1100000000001, "totalCost": 375.36, "totalQty": 96.0, "orderCount": 92, "margin": 669.7500000000001, "marginPct": 64.08416338949966}, {"YearMonth": "2021-11", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2810.3700000000003, "totalRevenueExVAT": 2351.6, "totalCost": 1186.6000000000001, "totalQty": 85.0, "orderCount": 77, "margin": 1164.9999999999998, "marginPct": 49.54073822078584}, {"YearMonth": "2021-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1665.5900000000001, "totalRevenueExVAT": 1388.45, "totalCost": 745.1999999999999, "totalQty": 180.0, "orderCount": 149, "margin": 643.2500000000001, "marginPct": 46.328639850192666}, {"YearMonth": "2021-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 3559.5099999999998, "totalRevenueExVAT": 3008.11, "totalCost": 1657.6, "totalQty": 148.0, "orderCount": 117, "margin": 1350.5100000000002, "marginPct": 44.89563214111187}, {"YearMonth": "2021-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1662.12, "totalRevenueExVAT": 1390.9199999999998, "totalCost": 688.8, "totalQty": 123.0, "orderCount": 106, "margin": 702.1199999999999, "marginPct": 50.478819773962556}, {"YearMonth": "2021-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2282.8399999999997, "totalRevenueExVAT": 1901.72, "totalCost": 927.14, "totalQty": 151.0, "orderCount": 116, "margin": 974.58, "marginPct": 51.24729192520455}, {"YearMonth": "2021-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2223.3999999999996, "totalRevenueExVAT": 1853.0600000000002, "totalCost": 609.2800000000001, "totalQty": 136.0, "orderCount": 122, "margin": 1243.7800000000002, "marginPct": 67.12033069625377}, {"YearMonth": "2021-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1558.6299999999999, "totalRevenueExVAT": 1305.76, "totalCost": 334.39, "totalQty": 281.0, "orderCount": 245, "margin": 971.37, "marginPct": 74.39115917167014}, {"YearMonth": "2021-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 2515.33, "totalRevenueExVAT": 2100.89, "totalCost": 611.66, "totalQty": 257.0, "orderCount": 228, "margin": 1489.23, "marginPct": 70.88567226270771}, {"YearMonth": "2021-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1423.38, "totalRevenueExVAT": 1188.66, "totalCost": 435.82, "totalQty": 77.0, "orderCount": 71, "margin": 752.8400000000001, "marginPct": 63.33518415694985}, {"YearMonth": "2021-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 4018.36, "totalRevenueExVAT": 3365.2, "totalCost": 1970.96, "totalQty": 142.0, "orderCount": 98, "margin": 1394.2399999999998, "marginPct": 41.431118507072384}, {"YearMonth": "2021-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2235.72, "totalRevenueExVAT": 1876.98, "totalCost": 823.5999999999999, "totalQty": 145.0, "orderCount": 120, "margin": 1053.38, "marginPct": 56.121002887617344}, {"YearMonth": "2021-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1626.58, "totalRevenueExVAT": 1359.53, "totalCost": 548.12, "totalQty": 193.0, "orderCount": 176, "margin": 811.41, "marginPct": 59.683125786117266}, {"YearMonth": "2021-11", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1305.98, "totalRevenueExVAT": 1098.9, "totalCost": 501.26, "totalQty": 71.0, "orderCount": 63, "margin": 597.6400000000001, "marginPct": 54.385294385294394}, {"YearMonth": "2021-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1696.34, "totalRevenueExVAT": 1415.32, "totalCost": 291.54, "totalQty": 113.0, "orderCount": 108, "margin": 1123.78, "marginPct": 79.40112483395981}, {"YearMonth": "2021-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1466.35, "totalRevenueExVAT": 1221.85, "totalCost": 309.6, "totalQty": 60.0, "orderCount": 56, "margin": 912.2499999999999, "marginPct": 74.66137414576257}, {"YearMonth": "2021-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1762.02, "totalRevenueExVAT": 1467.8200000000002, "totalCost": 578.12, "totalQty": 97.0, "orderCount": 76, "margin": 889.7000000000002, "marginPct": 60.61369922742571}, {"YearMonth": "2021-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3083.65, "totalRevenueExVAT": 2581.61, "totalCost": 1220.6, "totalQty": 170.0, "orderCount": 137, "margin": 1361.0100000000002, "marginPct": 52.71942702422132}, {"YearMonth": "2021-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1721.99, "totalRevenueExVAT": 1442.4800000000002, "totalCost": 617.48, "totalQty": 172.0, "orderCount": 157, "margin": 825.0000000000002, "marginPct": 57.19316732294383}, {"YearMonth": "2021-11", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 786.11, "totalRevenueExVAT": 655.11, "totalCost": 333.74, "totalQty": 41.0, "orderCount": 36, "margin": 321.37, "marginPct": 49.05588374471463}, {"YearMonth": "2021-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 797.9399999999999, "totalRevenueExVAT": 664.73, "totalCost": 396.00000000000006, "totalQty": 45.0, "orderCount": 38, "margin": 268.72999999999996, "marginPct": 40.426940261459535}, {"YearMonth": "2021-11", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 3022.49, "totalRevenueExVAT": 2533.21, "totalCost": 835.56, "totalQty": 211.0, "orderCount": 159, "margin": 1697.65, "marginPct": 67.01576260949547}, {"YearMonth": "2021-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1346.42, "totalRevenueExVAT": 1129.5900000000001, "totalCost": 570.24, "totalQty": 54.0, "orderCount": 50, "margin": 559.3500000000001, "marginPct": 49.51796669588081}, {"YearMonth": "2021-11", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1096.74, "totalRevenueExVAT": 918.78, "totalCost": 849.0, "totalQty": 30.0, "orderCount": 28, "margin": 69.77999999999997, "marginPct": 7.594854045582182}, {"YearMonth": "2021-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1547.4299999999998, "totalRevenueExVAT": 1289.76, "totalCost": 668.16, "totalQty": 87.0, "orderCount": 72, "margin": 621.6, "marginPct": 48.1950130256792}, {"YearMonth": "2021-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1066.13, "totalRevenueExVAT": 892.76, "totalCost": 407.03999999999996, "totalQty": 106.0, "orderCount": 102, "margin": 485.72, "marginPct": 54.40655943366639}, {"YearMonth": "2021-11", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 6033.62, "totalRevenueExVAT": 5042.36, "totalCost": 1353.6, "totalQty": 564.0, "orderCount": 408, "margin": 3688.7599999999998, "marginPct": 73.15542722058719}, {"YearMonth": "2021-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 18380.0, "totalRevenueExVAT": 15412.04, "totalCost": 8017.200000000001, "totalQty": 765.0, "orderCount": 633, "margin": 7394.84, "marginPct": 47.98092919561589}, {"YearMonth": "2021-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 5303.13, "totalRevenueExVAT": 4430.48, "totalCost": 2293.2, "totalQty": 390.0, "orderCount": 373, "margin": 2137.2799999999997, "marginPct": 48.24037124645636}, {"YearMonth": "2021-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1086.67, "totalRevenueExVAT": 908.24, "totalCost": 395.3, "totalQty": 67.0, "orderCount": 60, "margin": 512.94, "marginPct": 56.47626178102705}, {"YearMonth": "2021-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1944.18, "totalRevenueExVAT": 1619.8700000000001, "totalCost": 706.16, "totalQty": 91.0, "orderCount": 82, "margin": 913.7100000000002, "marginPct": 56.406378289615844}, {"YearMonth": "2021-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 795.8499999999999, "totalRevenueExVAT": 667.03, "totalCost": 244.44, "totalQty": 63.0, "orderCount": 57, "margin": 422.59, "marginPct": 63.35397208521356}, {"YearMonth": "2021-11", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1593.6100000000001, "totalRevenueExVAT": 1333.08, "totalCost": 443.52, "totalQty": 48.0, "orderCount": 43, "margin": 889.56, "marginPct": 66.72967863894141}, {"YearMonth": "2021-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2266.15, "totalRevenueExVAT": 1892.7500000000002, "totalCost": 667.9499999999999, "totalQty": 219.0, "orderCount": 211, "margin": 1224.8000000000002, "marginPct": 64.71007792893938}, {"YearMonth": "2021-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1124.47, "totalRevenueExVAT": 942.6800000000001, "totalCost": 353.79999999999995, "totalQty": 58.0, "orderCount": 55, "margin": 588.8800000000001, "marginPct": 62.46870624177877}, {"YearMonth": "2021-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1756.6499999999999, "totalRevenueExVAT": 1476.26, "totalCost": 629.64, "totalQty": 106.0, "orderCount": 89, "margin": 846.62, "marginPct": 57.34897646755992}, {"YearMonth": "2021-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1280.95, "totalRevenueExVAT": 1069.33, "totalCost": 406.89000000000004, "totalQty": 137.0, "orderCount": 129, "margin": 662.4399999999998, "marginPct": 61.949070913562686}, {"YearMonth": "2021-12", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 810.73, "totalRevenueExVAT": 678.55, "totalCost": 359.48, "totalQty": 38.0, "orderCount": 34, "margin": 319.06999999999994, "marginPct": 47.02232702085328}, {"YearMonth": "2021-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 529.71, "totalRevenueExVAT": 441.29999999999995, "totalCost": 198.66000000000003, "totalQty": 42.0, "orderCount": 41, "margin": 242.63999999999993, "marginPct": 54.98300475866756}, {"YearMonth": "2021-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1289.18, "totalRevenueExVAT": 1081.06, "totalCost": 422.28000000000003, "totalQty": 54.0, "orderCount": 52, "margin": 658.78, "marginPct": 60.93833829759681}, {"YearMonth": "2021-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 874.26, "totalRevenueExVAT": 732.62, "totalCost": 250.24, "totalQty": 64.0, "orderCount": 60, "margin": 482.38, "marginPct": 65.84313832546204}, {"YearMonth": "2021-12", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1840.5800000000002, "totalRevenueExVAT": 1548.88, "totalCost": 739.8800000000001, "totalQty": 53.0, "orderCount": 41, "margin": 809.0, "marginPct": 52.23128970611022}, {"YearMonth": "2021-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1200.65, "totalRevenueExVAT": 1004.3799999999999, "totalCost": 525.78, "totalQty": 127.0, "orderCount": 103, "margin": 478.5999999999999, "marginPct": 47.651287361357255}, {"YearMonth": "2021-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2054.58, "totalRevenueExVAT": 1751.82, "totalCost": 940.8, "totalQty": 84.0, "orderCount": 73, "margin": 811.02, "marginPct": 46.29585231359386}, {"YearMonth": "2021-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 945.63, "totalRevenueExVAT": 789.92, "totalCost": 380.79999999999995, "totalQty": 68.0, "orderCount": 59, "margin": 409.12, "marginPct": 51.7925865910472}, {"YearMonth": "2021-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 31.9, "totalRevenueExVAT": 26.58, "totalCost": 12.28, "totalQty": 2.0, "orderCount": 1, "margin": 14.299999999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2021-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 881.81, "totalRevenueExVAT": 737.4200000000001, "totalCost": 232.96000000000004, "totalQty": 52.0, "orderCount": 43, "margin": 504.46000000000004, "marginPct": 68.40877654525237}, {"YearMonth": "2021-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1007.73, "totalRevenueExVAT": 842.54, "totalCost": 207.06, "totalQty": 174.0, "orderCount": 160, "margin": 635.48, "marginPct": 75.42431219882737}, {"YearMonth": "2021-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1550.38, "totalRevenueExVAT": 1296.29, "totalCost": 361.76, "totalQty": 152.0, "orderCount": 119, "margin": 934.53, "marginPct": 72.09266445008447}, {"YearMonth": "2021-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1010.91, "totalRevenueExVAT": 847.99, "totalCost": 299.98, "totalQty": 53.0, "orderCount": 50, "margin": 548.01, "marginPct": 64.62458283706177}, {"YearMonth": "2021-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2522.37, "totalRevenueExVAT": 2119.2, "totalCost": 1179.8, "totalQty": 85.0, "orderCount": 64, "margin": 939.3999999999999, "marginPct": 44.3280483201208}, {"YearMonth": "2021-12", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1018.18, "totalRevenueExVAT": 855.52, "totalCost": 363.52, "totalQty": 64.0, "orderCount": 57, "margin": 492.0, "marginPct": 57.50888348606695}, {"YearMonth": "2021-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 930.43, "totalRevenueExVAT": 785.47, "totalCost": 303.88, "totalQty": 107.0, "orderCount": 94, "margin": 481.59000000000003, "marginPct": 61.31233528969916}, {"YearMonth": "2021-12", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 964.99, "totalRevenueExVAT": 809.79, "totalCost": 353.0, "totalQty": 50.0, "orderCount": 39, "margin": 456.78999999999996, "marginPct": 56.408451573864824}, {"YearMonth": "2021-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1188.9199999999998, "totalRevenueExVAT": 992.74, "totalCost": 198.66, "totalQty": 77.0, "orderCount": 74, "margin": 794.08, "marginPct": 79.98871809335778}, {"YearMonth": "2021-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1053.59, "totalRevenueExVAT": 878.15, "totalCost": 211.56, "totalQty": 41.0, "orderCount": 38, "margin": 666.5899999999999, "marginPct": 75.90844388771849}, {"YearMonth": "2021-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1340.11, "totalRevenueExVAT": 1122.35, "totalCost": 417.2, "totalQty": 70.0, "orderCount": 58, "margin": 705.1499999999999, "marginPct": 62.827994832271564}, {"YearMonth": "2021-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2371.64, "totalRevenueExVAT": 1981.96, "totalCost": 890.3199999999999, "totalQty": 124.0, "orderCount": 112, "margin": 1091.64, "marginPct": 55.07881087408424}, {"YearMonth": "2021-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1596.74, "totalRevenueExVAT": 1344.5900000000001, "totalCost": 542.09, "totalQty": 151.0, "orderCount": 140, "margin": 802.5000000000001, "marginPct": 59.6836210294588}, {"YearMonth": "2021-12", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 897.8, "totalRevenueExVAT": 748.28, "totalCost": 374.44000000000005, "totalQty": 46.0, "orderCount": 40, "margin": 373.8399999999999, "marginPct": 49.95990805580798}, {"YearMonth": "2021-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 340.5, "totalRevenueExVAT": 288.95, "totalCost": 167.20000000000002, "totalQty": 19.0, "orderCount": 19, "margin": 121.74999999999997, "marginPct": 42.135317528984245}, {"YearMonth": "2021-12", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1558.01, "totalRevenueExVAT": 1313.72, "totalCost": 411.84, "totalQty": 104.0, "orderCount": 77, "margin": 901.8800000000001, "marginPct": 68.65085406327071}, {"YearMonth": "2021-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 851.58, "totalRevenueExVAT": 720.9300000000001, "totalCost": 348.48, "totalQty": 33.0, "orderCount": 30, "margin": 372.45000000000005, "marginPct": 51.66243602014065}, {"YearMonth": "2021-12", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 543.34, "totalRevenueExVAT": 452.74, "totalCost": 396.2, "totalQty": 14.0, "orderCount": 12, "margin": 56.54000000000002, "marginPct": 12.488403940451477}, {"YearMonth": "2021-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 753.3, "totalRevenueExVAT": 627.77, "totalCost": 314.88, "totalQty": 41.0, "orderCount": 39, "margin": 312.89, "marginPct": 49.84150246109243}, {"YearMonth": "2021-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 662.5, "totalRevenueExVAT": 553.66, "totalCost": 238.07999999999998, "totalQty": 62.0, "orderCount": 56, "margin": 315.58, "marginPct": 56.99888017917133}, {"YearMonth": "2021-12", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4080.5299999999997, "totalRevenueExVAT": 3410.97, "totalCost": 883.1999999999999, "totalQty": 368.0, "orderCount": 299, "margin": 2527.77, "marginPct": 74.1070721818134}, {"YearMonth": "2021-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15168.63, "totalRevenueExVAT": 12646.83, "totalCost": 6487.12, "totalQty": 619.0, "orderCount": 483, "margin": 6159.71, "marginPct": 48.705564951849595}, {"YearMonth": "2021-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3770.2599999999998, "totalRevenueExVAT": 3161.17, "totalCost": 1587.6, "totalQty": 270.0, "orderCount": 246, "margin": 1573.5700000000002, "marginPct": 49.77808849255182}, {"YearMonth": "2021-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 661.11, "totalRevenueExVAT": 551.1, "totalCost": 230.10000000000002, "totalQty": 39.0, "orderCount": 33, "margin": 321.0, "marginPct": 58.24714207947741}, {"YearMonth": "2021-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1485.74, "totalRevenueExVAT": 1241.3899999999999, "totalCost": 519.92, "totalQty": 67.0, "orderCount": 47, "margin": 721.4699999999999, "marginPct": 58.11791620683267}, {"YearMonth": "2021-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 533.45, "totalRevenueExVAT": 454.02000000000004, "totalCost": 162.96, "totalQty": 42.0, "orderCount": 38, "margin": 291.06000000000006, "marginPct": 64.10730804810362}, {"YearMonth": "2021-12", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 877.1500000000001, "totalRevenueExVAT": 731.0, "totalCost": 231.0, "totalQty": 25.0, "orderCount": 21, "margin": 500.0, "marginPct": 68.39945280437757}, {"YearMonth": "2021-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1639.09, "totalRevenueExVAT": 1378.3500000000001, "totalCost": 472.75, "totalQty": 155.0, "orderCount": 142, "margin": 905.6000000000001, "marginPct": 65.70174483984475}, {"YearMonth": "2021-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 782.0600000000001, "totalRevenueExVAT": 654.69, "totalCost": 237.89999999999998, "totalQty": 39.0, "orderCount": 37, "margin": 416.7900000000001, "marginPct": 63.66219126609541}, {"YearMonth": "2021-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1212.72, "totalRevenueExVAT": 1015.7, "totalCost": 415.8, "totalQty": 70.0, "orderCount": 65, "margin": 599.9000000000001, "marginPct": 59.06271536871124}, {"YearMonth": "2021-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1043.91, "totalRevenueExVAT": 869.5899999999999, "totalCost": 320.76000000000005, "totalQty": 108.0, "orderCount": 105, "margin": 548.8299999999999, "marginPct": 63.113651260939065}, {"YearMonth": "2022-01", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1289.8600000000001, "totalRevenueExVAT": 1074.53, "totalCost": 624.36, "totalQty": 66.0, "orderCount": 52, "margin": 450.16999999999996, "marginPct": 41.89459577675821}, {"YearMonth": "2022-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1163.97, "totalRevenueExVAT": 969.36, "totalCost": 482.46000000000004, "totalQty": 102.0, "orderCount": 99, "margin": 486.9, "marginPct": 50.22901708343649}, {"YearMonth": "2022-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2008.8600000000001, "totalRevenueExVAT": 1673.49, "totalCost": 711.62, "totalQty": 91.0, "orderCount": 81, "margin": 961.87, "marginPct": 57.47688961392061}, {"YearMonth": "2022-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1617.3600000000001, "totalRevenueExVAT": 1347.0600000000002, "totalCost": 512.21, "totalQty": 131.0, "orderCount": 131, "margin": 834.8500000000001, "marginPct": 61.97571006488204}, {"YearMonth": "2022-01", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3939.67, "totalRevenueExVAT": 3283.08, "totalCost": 1717.0800000000002, "totalQty": 123.0, "orderCount": 108, "margin": 1565.9999999999998, "marginPct": 47.69911180964216}, {"YearMonth": "2022-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 2016.1800000000003, "totalRevenueExVAT": 1679.55, "totalCost": 964.6199999999999, "totalQty": 233.0, "orderCount": 186, "margin": 714.9300000000001, "marginPct": 42.566758953291064}, {"YearMonth": "2022-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 3457.2799999999997, "totalRevenueExVAT": 2880.08, "totalCost": 1657.6, "totalQty": 148.0, "orderCount": 124, "margin": 1222.48, "marginPct": 42.44604316546763}, {"YearMonth": "2022-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1209.93, "totalRevenueExVAT": 1008.12, "totalCost": 520.8, "totalQty": 93.0, "orderCount": 84, "margin": 487.32000000000005, "marginPct": 48.339483394833955}, {"YearMonth": "2022-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3231.0, "totalRevenueExVAT": 2691.0, "totalCost": 1381.5, "totalQty": 225.0, "orderCount": 165, "margin": 1309.5, "marginPct": 48.66220735785953}, {"YearMonth": "2022-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2033.33, "totalRevenueExVAT": 1694.5200000000002, "totalCost": 622.72, "totalQty": 139.0, "orderCount": 110, "margin": 1071.8000000000002, "marginPct": 63.25095012156835}, {"YearMonth": "2022-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1818.9999999999998, "totalRevenueExVAT": 1516.4, "totalCost": 404.59999999999997, "totalQty": 340.0, "orderCount": 304, "margin": 1111.8000000000002, "marginPct": 73.31838565022423}, {"YearMonth": "2022-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 3302.43, "totalRevenueExVAT": 2754.5, "totalCost": 833.0, "totalQty": 350.0, "orderCount": 295, "margin": 1921.5, "marginPct": 69.75857687420584}, {"YearMonth": "2022-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 2457.52, "totalRevenueExVAT": 2049.52, "totalCost": 775.4200000000001, "totalQty": 137.0, "orderCount": 115, "margin": 1274.1, "marginPct": 62.16577540106951}, {"YearMonth": "2022-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 6021.06, "totalRevenueExVAT": 5024.8, "totalCost": 3053.6000000000004, "totalQty": 220.0, "orderCount": 127, "margin": 1971.1999999999998, "marginPct": 39.22942206654991}, {"YearMonth": "2022-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1935.6000000000001, "totalRevenueExVAT": 1613.6200000000001, "totalCost": 755.4399999999999, "totalQty": 133.0, "orderCount": 117, "margin": 858.1800000000002, "marginPct": 53.18352524138273}, {"YearMonth": "2022-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1355.45, "totalRevenueExVAT": 1129.66, "totalCost": 485.64, "totalQty": 171.0, "orderCount": 163, "margin": 644.0200000000001, "marginPct": 57.010073827523335}, {"YearMonth": "2022-01", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1778.0400000000002, "totalRevenueExVAT": 1481.0400000000002, "totalCost": 698.9399999999999, "totalQty": 99.0, "orderCount": 89, "margin": 782.1000000000003, "marginPct": 52.807486631016054}, {"YearMonth": "2022-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 2349.36, "totalRevenueExVAT": 1956.9800000000002, "totalCost": 428.28000000000003, "totalQty": 166.0, "orderCount": 156, "margin": 1528.7000000000003, "marginPct": 78.1152592259502}, {"YearMonth": "2022-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 2159.44, "totalRevenueExVAT": 1799.0, "totalCost": 485.04, "totalQty": 94.0, "orderCount": 90, "margin": 1313.96, "marginPct": 73.03835464146748}, {"YearMonth": "2022-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2558.1600000000003, "totalRevenueExVAT": 2131.04, "totalCost": 870.16, "totalQty": 146.0, "orderCount": 117, "margin": 1260.88, "marginPct": 59.167354906524515}, {"YearMonth": "2022-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 4507.96, "totalRevenueExVAT": 3754.96, "totalCost": 1802.1799999999998, "totalQty": 251.0, "orderCount": 227, "margin": 1952.7800000000002, "marginPct": 52.0053475935829}, {"YearMonth": "2022-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2415.7, "totalRevenueExVAT": 2011.4500000000003, "totalCost": 879.55, "totalQty": 245.0, "orderCount": 230, "margin": 1131.9000000000003, "marginPct": 56.27283800243607}, {"YearMonth": "2022-01", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1454.76, "totalRevenueExVAT": 1211.76, "totalCost": 659.34, "totalQty": 81.0, "orderCount": 64, "margin": 552.42, "marginPct": 45.588235294117645}, {"YearMonth": "2022-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1384.59, "totalRevenueExVAT": 1153.3500000000001, "totalCost": 739.2, "totalQty": 84.0, "orderCount": 79, "margin": 414.1500000000001, "marginPct": 35.908440629470675}, {"YearMonth": "2022-01", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1780.48, "totalRevenueExVAT": 1483.52, "totalCost": 506.88, "totalQty": 128.0, "orderCount": 90, "margin": 976.64, "marginPct": 65.83261432269197}, {"YearMonth": "2022-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1964.25, "totalRevenueExVAT": 1637.01, "totalCost": 855.36, "totalQty": 81.0, "orderCount": 69, "margin": 781.65, "marginPct": 47.748639287481446}, {"YearMonth": "2022-01", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 970.9200000000001, "totalRevenueExVAT": 808.9200000000001, "totalCost": 764.1, "totalQty": 27.0, "orderCount": 20, "margin": 44.82000000000005, "marginPct": 5.540720961281714}, {"YearMonth": "2022-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1922.1200000000001, "totalRevenueExVAT": 1601.96, "totalCost": 890.88, "totalQty": 116.0, "orderCount": 108, "margin": 711.08, "marginPct": 44.388124547429406}, {"YearMonth": "2022-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1204.86, "totalRevenueExVAT": 1003.62, "totalCost": 495.35999999999996, "totalQty": 129.0, "orderCount": 118, "margin": 508.26000000000005, "marginPct": 50.6426735218509}, {"YearMonth": "2022-01", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 7155.14, "totalRevenueExVAT": 5961.46, "totalCost": 1665.6, "totalQty": 694.0, "orderCount": 540, "margin": 4295.860000000001, "marginPct": 72.0605355064028}, {"YearMonth": "2022-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 21487.3, "totalRevenueExVAT": 17903.2, "totalCost": 9641.6, "totalQty": 920.0, "orderCount": 744, "margin": 8261.6, "marginPct": 46.14594039054471}, {"YearMonth": "2022-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 5394.219999999999, "totalRevenueExVAT": 4500.179999999999, "totalCost": 2434.32, "totalQty": 414.0, "orderCount": 388, "margin": 2065.859999999999, "marginPct": 45.90616375344985}, {"YearMonth": "2022-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1495.28, "totalRevenueExVAT": 1246.4199999999998, "totalCost": 572.3000000000001, "totalQty": 97.0, "orderCount": 75, "margin": 674.1199999999998, "marginPct": 54.084498002278515}, {"YearMonth": "2022-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2355.24, "totalRevenueExVAT": 1961.94, "totalCost": 884.64, "totalQty": 114.0, "orderCount": 92, "margin": 1077.3000000000002, "marginPct": 54.90993608367229}, {"YearMonth": "2022-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 907.5, "totalRevenueExVAT": 756.75, "totalCost": 291.0, "totalQty": 75.0, "orderCount": 68, "margin": 465.75, "marginPct": 61.54608523290387}, {"YearMonth": "2022-01", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2296.85, "totalRevenueExVAT": 1914.16, "totalCost": 656.04, "totalQty": 71.0, "orderCount": 64, "margin": 1258.1200000000001, "marginPct": 65.72700296735906}, {"YearMonth": "2022-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2897.19, "totalRevenueExVAT": 2413.7400000000002, "totalCost": 896.6999999999999, "totalQty": 294.0, "orderCount": 288, "margin": 1517.0400000000004, "marginPct": 62.850182704019495}, {"YearMonth": "2022-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1658.8000000000002, "totalRevenueExVAT": 1382.48, "totalCost": 536.8, "totalQty": 88.0, "orderCount": 82, "margin": 845.6800000000001, "marginPct": 61.17122851686824}, {"YearMonth": "2022-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 2018.7499999999998, "totalRevenueExVAT": 1682.5, "totalCost": 742.5, "totalQty": 125.0, "orderCount": 108, "margin": 940.0, "marginPct": 55.86924219910847}, {"YearMonth": "2022-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1254.4, "totalRevenueExVAT": 1044.4, "totalCost": 415.8, "totalQty": 140.0, "orderCount": 128, "margin": 628.6000000000001, "marginPct": 60.18766756032172}, {"YearMonth": "2022-02", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 439.0, "totalRevenueExVAT": 365.79999999999995, "totalCost": 189.20000000000002, "totalQty": 20.0, "orderCount": 20, "margin": 176.59999999999994, "marginPct": 48.27774740295242}, {"YearMonth": "2022-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 543.9, "totalRevenueExVAT": 453.17999999999995, "totalCost": 203.39000000000001, "totalQty": 43.0, "orderCount": 42, "margin": 249.78999999999994, "marginPct": 55.119378613354506}, {"YearMonth": "2022-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1320.14, "totalRevenueExVAT": 1102.8500000000001, "totalCost": 461.38, "totalQty": 59.0, "orderCount": 53, "margin": 641.4700000000001, "marginPct": 58.16475495307613}, {"YearMonth": "2022-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 928.0400000000001, "totalRevenueExVAT": 772.8800000000001, "totalCost": 293.25, "totalQty": 75.0, "orderCount": 70, "margin": 479.6300000000001, "marginPct": 62.05749922368285}, {"YearMonth": "2022-02", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1114.45, "totalRevenueExVAT": 928.76, "totalCost": 432.76000000000005, "totalQty": 31.0, "orderCount": 30, "margin": 495.99999999999994, "marginPct": 53.40453938584779}, {"YearMonth": "2022-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 893.52, "totalRevenueExVAT": 744.4399999999999, "totalCost": 372.59999999999997, "totalQty": 90.0, "orderCount": 71, "margin": 371.84, "marginPct": 49.94895491913385}, {"YearMonth": "2022-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1115.85, "totalRevenueExVAT": 930.0899999999999, "totalCost": 481.59999999999997, "totalQty": 43.0, "orderCount": 38, "margin": 448.48999999999995, "marginPct": 48.22006472491909}, {"YearMonth": "2022-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 693.5999999999999, "totalRevenueExVAT": 577.92, "totalCost": 268.79999999999995, "totalQty": 48.0, "orderCount": 44, "margin": 309.12, "marginPct": 53.48837209302326}, {"YearMonth": "2022-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1547.1499999999999, "totalRevenueExVAT": 1289.1299999999999, "totalCost": 595.5799999999999, "totalQty": 97.0, "orderCount": 88, "margin": 693.55, "marginPct": 53.799849510910455}, {"YearMonth": "2022-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 890.3199999999999, "totalRevenueExVAT": 742.01, "totalCost": 224.00000000000003, "totalQty": 50.0, "orderCount": 44, "margin": 518.01, "marginPct": 69.81172760474927}, {"YearMonth": "2022-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 796.1, "totalRevenueExVAT": 663.64, "totalCost": 160.65, "totalQty": 135.0, "orderCount": 126, "margin": 502.99, "marginPct": 75.79259839672112}, {"YearMonth": "2022-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1110.89, "totalRevenueExVAT": 925.57, "totalCost": 254.66, "totalQty": 107.0, "orderCount": 100, "margin": 670.9100000000001, "marginPct": 72.48614367362815}, {"YearMonth": "2022-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 997.5, "totalRevenueExVAT": 831.5, "totalCost": 283.0, "totalQty": 50.0, "orderCount": 44, "margin": 548.5, "marginPct": 65.96512327119663}, {"YearMonth": "2022-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1702.1599999999999, "totalRevenueExVAT": 1418.74, "totalCost": 860.5600000000001, "totalQty": 62.0, "orderCount": 46, "margin": 558.18, "marginPct": 39.343361010474084}, {"YearMonth": "2022-02", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 951.63, "totalRevenueExVAT": 793.12, "totalCost": 335.12, "totalQty": 59.0, "orderCount": 54, "margin": 458.0, "marginPct": 57.746620940084725}, {"YearMonth": "2022-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 829.67, "totalRevenueExVAT": 691.54, "totalCost": 264.12, "totalQty": 93.0, "orderCount": 89, "margin": 427.41999999999996, "marginPct": 61.80698151950719}, {"YearMonth": "2022-02", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1037.3999999999999, "totalRevenueExVAT": 864.76, "totalCost": 367.12, "totalQty": 52.0, "orderCount": 49, "margin": 497.64, "marginPct": 57.546602525556224}, {"YearMonth": "2022-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1062.6399999999999, "totalRevenueExVAT": 885.0400000000001, "totalCost": 190.92000000000002, "totalQty": 74.0, "orderCount": 73, "margin": 694.1200000000001, "marginPct": 78.42809364548495}, {"YearMonth": "2022-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 838.36, "totalRevenueExVAT": 698.4, "totalCost": 185.76, "totalQty": 36.0, "orderCount": 35, "margin": 512.64, "marginPct": 73.40206185567011}, {"YearMonth": "2022-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1057.35, "totalRevenueExVAT": 881.39, "totalCost": 315.88, "totalQty": 53.0, "orderCount": 51, "margin": 565.51, "marginPct": 64.16115453998798}, {"YearMonth": "2022-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 877.8, "totalRevenueExVAT": 731.7199999999999, "totalCost": 315.91999999999996, "totalQty": 44.0, "orderCount": 43, "margin": 415.79999999999995, "marginPct": 56.82501503307276}, {"YearMonth": "2022-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 852.28, "totalRevenueExVAT": 712.1400000000001, "totalCost": 280.02, "totalQty": 78.0, "orderCount": 74, "margin": 432.1200000000001, "marginPct": 60.679079956188396}, {"YearMonth": "2022-02", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 698.25, "totalRevenueExVAT": 582.05, "totalCost": 284.90000000000003, "totalQty": 35.0, "orderCount": 34, "margin": 297.1499999999999, "marginPct": 51.05231509320504}, {"YearMonth": "2022-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 451.64, "totalRevenueExVAT": 378.96, "totalCost": 211.20000000000002, "totalQty": 24.0, "orderCount": 24, "margin": 167.75999999999996, "marginPct": 44.268524382520575}, {"YearMonth": "2022-02", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1296.26, "totalRevenueExVAT": 1080.63, "totalCost": 332.64, "totalQty": 84.0, "orderCount": 69, "margin": 747.9900000000001, "marginPct": 69.21795619222121}, {"YearMonth": "2022-02", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1051.05, "totalRevenueExVAT": 875.94, "totalCost": 411.84000000000003, "totalQty": 39.0, "orderCount": 35, "margin": 464.1, "marginPct": 52.98308103294747}, {"YearMonth": "2022-02", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 399.5, "totalRevenueExVAT": 332.9, "totalCost": 283.0, "totalQty": 10.0, "orderCount": 9, "margin": 49.89999999999998, "marginPct": 14.989486332231897}, {"YearMonth": "2022-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 736.68, "totalRevenueExVAT": 614.04, "totalCost": 322.56, "totalQty": 42.0, "orderCount": 39, "margin": 291.47999999999996, "marginPct": 47.469220246238024}, {"YearMonth": "2022-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 523.07, "totalRevenueExVAT": 435.8, "totalCost": 203.51999999999998, "totalQty": 53.0, "orderCount": 53, "margin": 232.28000000000003, "marginPct": 53.29967875172098}, {"YearMonth": "2022-02", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2422.8399999999997, "totalRevenueExVAT": 2018.6799999999998, "totalCost": 508.8, "totalQty": 212.0, "orderCount": 177, "margin": 1509.8799999999999, "marginPct": 74.79541086254385}, {"YearMonth": "2022-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7881.03, "totalRevenueExVAT": 6569.009999999999, "totalCost": 3185.92, "totalQty": 304.0, "orderCount": 263, "margin": 3383.0899999999992, "marginPct": 51.5007588662523}, {"YearMonth": "2022-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 2670.5, "totalRevenueExVAT": 2226.33, "totalCost": 1087.8, "totalQty": 185.0, "orderCount": 176, "margin": 1138.53, "marginPct": 51.139318968886016}, {"YearMonth": "2022-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 769.45, "totalRevenueExVAT": 641.3, "totalCost": 324.5, "totalQty": 55.0, "orderCount": 45, "margin": 316.79999999999995, "marginPct": 49.39965694682675}, {"YearMonth": "2022-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 849.15, "totalRevenueExVAT": 707.81, "totalCost": 287.12, "totalQty": 37.0, "orderCount": 32, "margin": 420.68999999999994, "marginPct": 59.435441714584414}, {"YearMonth": "2022-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 255.54999999999998, "totalRevenueExVAT": 212.99, "totalCost": 73.72, "totalQty": 19.0, "orderCount": 17, "margin": 139.27, "marginPct": 65.38804638715433}, {"YearMonth": "2022-02", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 970.5, "totalRevenueExVAT": 808.8000000000001, "totalCost": 277.2, "totalQty": 30.0, "orderCount": 25, "margin": 531.6000000000001, "marginPct": 65.72700296735906}, {"YearMonth": "2022-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 509.2, "totalRevenueExVAT": 424.51000000000005, "totalCost": 143.35, "totalQty": 47.0, "orderCount": 46, "margin": 281.1600000000001, "marginPct": 66.23165532025159}, {"YearMonth": "2022-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 188.54999999999998, "totalRevenueExVAT": 157.14000000000001, "totalCost": 54.9, "totalQty": 9.0, "orderCount": 9, "margin": 102.24000000000001, "marginPct": 65.06300114547537}, {"YearMonth": "2022-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 644.4, "totalRevenueExVAT": 537.0600000000001, "totalCost": 213.84, "totalQty": 36.0, "orderCount": 34, "margin": 323.22, "marginPct": 60.18321975198302}, {"YearMonth": "2022-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 726.3499999999999, "totalRevenueExVAT": 605.17, "totalCost": 216.81, "totalQty": 73.0, "orderCount": 69, "margin": 388.35999999999996, "marginPct": 64.17370325693607}, {"YearMonth": "2022-03", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 856.05, "totalRevenueExVAT": 713.31, "totalCost": 368.94000000000005, "totalQty": 39.0, "orderCount": 34, "margin": 344.3699999999999, "marginPct": 48.27774740295242}, {"YearMonth": "2022-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 789.9499999999999, "totalRevenueExVAT": 658.1899999999999, "totalCost": 288.53000000000003, "totalQty": 61.0, "orderCount": 59, "margin": 369.6599999999999, "marginPct": 56.163113994439286}, {"YearMonth": "2022-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1662.04, "totalRevenueExVAT": 1384.54, "totalCost": 578.6800000000001, "totalQty": 74.0, "orderCount": 68, "margin": 805.8599999999999, "marginPct": 58.20416889363976}, {"YearMonth": "2022-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1193.2, "totalRevenueExVAT": 993.7, "totalCost": 371.45, "totalQty": 95.0, "orderCount": 91, "margin": 622.25, "marginPct": 62.619502868068835}, {"YearMonth": "2022-03", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2834.0600000000004, "totalRevenueExVAT": 2366.84, "totalCost": 1102.8400000000001, "totalQty": 79.0, "orderCount": 64, "margin": 1264.0, "marginPct": 53.40453938584779}, {"YearMonth": "2022-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1628.4799999999998, "totalRevenueExVAT": 1359.56, "totalCost": 678.9599999999999, "totalQty": 164.0, "orderCount": 132, "margin": 680.6, "marginPct": 50.06031363088058}, {"YearMonth": "2022-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2906.4, "totalRevenueExVAT": 2422.56, "totalCost": 1254.3999999999999, "totalQty": 112.0, "orderCount": 102, "margin": 1168.16, "marginPct": 48.2200647249191}, {"YearMonth": "2022-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1127.1, "totalRevenueExVAT": 939.1199999999999, "totalCost": 442.4, "totalQty": 79.0, "orderCount": 72, "margin": 496.7199999999999, "marginPct": 52.892069171138935}, {"YearMonth": "2022-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1722.6, "totalRevenueExVAT": 1435.32, "totalCost": 663.12, "totalQty": 108.0, "orderCount": 85, "margin": 772.1999999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2022-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 2339.49, "totalRevenueExVAT": 1959.7600000000002, "totalCost": 586.8800000000001, "totalQty": 131.0, "orderCount": 106, "margin": 1372.88, "marginPct": 70.05347593582889}, {"YearMonth": "2022-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1201.9, "totalRevenueExVAT": 1001.92, "totalCost": 243.95, "totalQty": 205.0, "orderCount": 177, "margin": 757.97, "marginPct": 75.6517486426062}, {"YearMonth": "2022-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1646.93, "totalRevenueExVAT": 1372.18, "totalCost": 373.65999999999997, "totalQty": 157.0, "orderCount": 143, "margin": 998.5200000000001, "marginPct": 72.76887871853546}, {"YearMonth": "2022-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1256.85, "totalRevenueExVAT": 1047.69, "totalCost": 356.58, "totalQty": 63.0, "orderCount": 57, "margin": 691.1100000000001, "marginPct": 65.96512327119665}, {"YearMonth": "2022-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3527.13, "totalRevenueExVAT": 2944.08, "totalCost": 1610.0800000000002, "totalQty": 116.0, "orderCount": 87, "margin": 1333.9999999999998, "marginPct": 45.31126871552403}, {"YearMonth": "2022-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1546.3, "totalRevenueExVAT": 1288.74, "totalCost": 533.92, "totalQty": 94.0, "orderCount": 80, "margin": 754.82, "marginPct": 58.570386579139324}, {"YearMonth": "2022-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1485.6999999999998, "totalRevenueExVAT": 1238.36, "totalCost": 471.44, "totalQty": 166.0, "orderCount": 155, "margin": 766.9199999999998, "marginPct": 61.93029490616622}, {"YearMonth": "2022-03", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1454.36, "totalRevenueExVAT": 1212.32, "totalCost": 515.38, "totalQty": 73.0, "orderCount": 67, "margin": 696.9399999999999, "marginPct": 57.488121948000526}, {"YearMonth": "2022-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1479.08, "totalRevenueExVAT": 1231.88, "totalCost": 265.74, "totalQty": 103.0, "orderCount": 101, "margin": 966.1400000000001, "marginPct": 78.42809364548495}, {"YearMonth": "2022-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1681.92, "totalRevenueExVAT": 1401.1200000000001, "totalCost": 376.68, "totalQty": 73.0, "orderCount": 60, "margin": 1024.44, "marginPct": 73.11579307982186}, {"YearMonth": "2022-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1456.35, "totalRevenueExVAT": 1213.99, "totalCost": 435.08, "totalQty": 73.0, "orderCount": 62, "margin": 778.9100000000001, "marginPct": 64.16115453998798}, {"YearMonth": "2022-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2990.5099999999998, "totalRevenueExVAT": 2492.83, "totalCost": 1077.0, "totalQty": 150.0, "orderCount": 132, "margin": 1415.83, "marginPct": 56.79609118953157}, {"YearMonth": "2022-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1828.6499999999999, "totalRevenueExVAT": 1524.71, "totalCost": 599.53, "totalQty": 167.0, "orderCount": 157, "margin": 925.1800000000001, "marginPct": 60.679079956188396}, {"YearMonth": "2022-03", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 5719.01, "totalRevenueExVAT": 4772.8099999999995, "totalCost": 2336.1800000000003, "totalQty": 287.0, "orderCount": 269, "margin": 2436.629999999999, "marginPct": 51.05231509320504}, {"YearMonth": "2022-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 758.0, "totalRevenueExVAT": 631.5999999999999, "totalCost": 352.0, "totalQty": 40.0, "orderCount": 38, "margin": 279.5999999999999, "marginPct": 44.268524382520575}, {"YearMonth": "2022-03", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2438.5299999999997, "totalRevenueExVAT": 2035.0400000000002, "totalCost": 625.68, "totalQty": 158.0, "orderCount": 125, "margin": 1409.3600000000001, "marginPct": 69.25465838509317}, {"YearMonth": "2022-03", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1509.2, "totalRevenueExVAT": 1257.76, "totalCost": 591.36, "totalQty": 56.0, "orderCount": 53, "margin": 666.4, "marginPct": 52.98308103294747}, {"YearMonth": "2022-03", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 878.9000000000001, "totalRevenueExVAT": 732.38, "totalCost": 622.6, "totalQty": 22.0, "orderCount": 17, "margin": 109.77999999999997, "marginPct": 14.989486332231897}, {"YearMonth": "2022-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1718.9199999999998, "totalRevenueExVAT": 1432.76, "totalCost": 752.64, "totalQty": 98.0, "orderCount": 81, "margin": 680.12, "marginPct": 47.46922024623803}, {"YearMonth": "2022-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 819.22, "totalRevenueExVAT": 683.9200000000001, "totalCost": 318.71999999999997, "totalQty": 83.0, "orderCount": 77, "margin": 365.2000000000001, "marginPct": 53.39805825242719}, {"YearMonth": "2022-03", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4179.25, "totalRevenueExVAT": 3482.1, "totalCost": 876.0, "totalQty": 365.0, "orderCount": 297, "margin": 2606.1, "marginPct": 74.84276729559748}, {"YearMonth": "2022-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16743.829999999998, "totalRevenueExVAT": 13970.81, "totalCost": 6770.08, "totalQty": 646.0, "orderCount": 541, "margin": 7200.73, "marginPct": 51.54124921890714}, {"YearMonth": "2022-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3950.9500000000003, "totalRevenueExVAT": 3297.84, "totalCost": 1611.12, "totalQty": 274.0, "orderCount": 255, "margin": 1686.7200000000003, "marginPct": 51.1462047885889}, {"YearMonth": "2022-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 741.47, "totalRevenueExVAT": 617.98, "totalCost": 312.70000000000005, "totalQty": 53.0, "orderCount": 42, "margin": 305.28, "marginPct": 49.39965694682675}, {"YearMonth": "2022-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1767.1499999999999, "totalRevenueExVAT": 1473.01, "totalCost": 597.52, "totalQty": 77.0, "orderCount": 66, "margin": 875.49, "marginPct": 59.43544171458443}, {"YearMonth": "2022-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 831.66, "totalRevenueExVAT": 695.0200000000001, "totalCost": 240.56, "totalQty": 62.0, "orderCount": 54, "margin": 454.4600000000001, "marginPct": 65.38804638715433}, {"YearMonth": "2022-03", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1617.5, "totalRevenueExVAT": 1348.0, "totalCost": 462.0, "totalQty": 50.0, "orderCount": 44, "margin": 886.0, "marginPct": 65.72700296735906}, {"YearMonth": "2022-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1686.3, "totalRevenueExVAT": 1406.0200000000002, "totalCost": 469.7, "totalQty": 154.0, "orderCount": 146, "margin": 936.3200000000002, "marginPct": 66.59364731653888}, {"YearMonth": "2022-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 879.9, "totalRevenueExVAT": 733.32, "totalCost": 256.2, "totalQty": 42.0, "orderCount": 41, "margin": 477.12000000000006, "marginPct": 65.06300114547537}, {"YearMonth": "2022-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1310.35, "totalRevenueExVAT": 1092.0800000000002, "totalCost": 433.62, "totalQty": 73.0, "orderCount": 58, "margin": 658.4600000000002, "marginPct": 60.29411764705883}, {"YearMonth": "2022-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 1094.5, "totalRevenueExVAT": 911.8999999999999, "totalCost": 326.70000000000005, "totalQty": 110.0, "orderCount": 105, "margin": 585.1999999999998, "marginPct": 64.17370325693605}, {"YearMonth": "2022-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 834.0999999999999, "totalRevenueExVAT": 695.02, "totalCost": 359.48, "totalQty": 38.0, "orderCount": 34, "margin": 335.53999999999996, "marginPct": 48.27774740295243}, {"YearMonth": "2022-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 539.5799999999999, "totalRevenueExVAT": 453.17999999999995, "totalCost": 198.66000000000003, "totalQty": 42.0, "orderCount": 42, "margin": 254.51999999999992, "marginPct": 56.163113994439286}, {"YearMonth": "2022-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2066.32, "totalRevenueExVAT": 1721.3200000000002, "totalCost": 719.44, "totalQty": 92.0, "orderCount": 84, "margin": 1001.8800000000001, "marginPct": 58.20416889363976}, {"YearMonth": "2022-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1205.76, "totalRevenueExVAT": 1004.1600000000001, "totalCost": 379.27000000000004, "totalQty": 97.0, "orderCount": 94, "margin": 624.8900000000001, "marginPct": 62.23012268961122}, {"YearMonth": "2022-04", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1647.71, "totalRevenueExVAT": 1378.16, "totalCost": 642.1600000000001, "totalQty": 46.0, "orderCount": 42, "margin": 736.0, "marginPct": 53.40453938584779}, {"YearMonth": "2022-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1552.1999999999998, "totalRevenueExVAT": 1293.2399999999998, "totalCost": 649.9799999999999, "totalQty": 157.0, "orderCount": 123, "margin": 643.2599999999999, "marginPct": 49.74018743620673}, {"YearMonth": "2022-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2361.45, "totalRevenueExVAT": 1968.33, "totalCost": 1019.1999999999999, "totalQty": 91.0, "orderCount": 85, "margin": 949.13, "marginPct": 48.22006472491909}, {"YearMonth": "2022-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 953.6999999999999, "totalRevenueExVAT": 794.64, "totalCost": 369.59999999999997, "totalQty": 66.0, "orderCount": 63, "margin": 425.04, "marginPct": 53.48837209302326}, {"YearMonth": "2022-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2328.7, "totalRevenueExVAT": 1940.34, "totalCost": 896.4399999999999, "totalQty": 146.0, "orderCount": 124, "margin": 1043.9, "marginPct": 53.79984951091047}, {"YearMonth": "2022-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1163.76, "totalRevenueExVAT": 972.4000000000001, "totalCost": 291.20000000000005, "totalQty": 65.0, "orderCount": 59, "margin": 681.2, "marginPct": 70.05347593582889}, {"YearMonth": "2022-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1075.96, "totalRevenueExVAT": 897.76, "totalCost": 215.39, "totalQty": 181.0, "orderCount": 163, "margin": 682.37, "marginPct": 76.00806451612904}, {"YearMonth": "2022-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1772.81, "totalRevenueExVAT": 1477.06, "totalCost": 402.21999999999997, "totalQty": 169.0, "orderCount": 137, "margin": 1074.84, "marginPct": 72.76887871853546}, {"YearMonth": "2022-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1157.1, "totalRevenueExVAT": 964.54, "totalCost": 328.28000000000003, "totalQty": 58.0, "orderCount": 56, "margin": 636.26, "marginPct": 65.96512327119663}, {"YearMonth": "2022-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2009.6999999999998, "totalRevenueExVAT": 1675.08, "totalCost": 916.08, "totalQty": 66.0, "orderCount": 56, "margin": 758.9999999999999, "marginPct": 45.31126871552403}, {"YearMonth": "2022-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1019.9, "totalRevenueExVAT": 850.0200000000001, "totalCost": 352.15999999999997, "totalQty": 62.0, "orderCount": 57, "margin": 497.8600000000001, "marginPct": 58.570386579139324}, {"YearMonth": "2022-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1226.1499999999999, "totalRevenueExVAT": 1022.02, "totalCost": 391.91999999999996, "totalQty": 138.0, "orderCount": 131, "margin": 630.1, "marginPct": 61.65241384708714}, {"YearMonth": "2022-04", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1296.75, "totalRevenueExVAT": 1080.95, "totalCost": 458.9, "totalQty": 65.0, "orderCount": 60, "margin": 622.0500000000001, "marginPct": 57.546602525556224}, {"YearMonth": "2022-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1411.75, "totalRevenueExVAT": 1176.1299999999999, "totalCost": 239.94, "totalQty": 93.0, "orderCount": 89, "margin": 936.1899999999998, "marginPct": 79.59919396665333}, {"YearMonth": "2022-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 713.6999999999999, "totalRevenueExVAT": 594.72, "totalCost": 149.64000000000001, "totalQty": 29.0, "orderCount": 28, "margin": 445.08000000000004, "marginPct": 74.83857949959645}, {"YearMonth": "2022-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1775.55, "totalRevenueExVAT": 1480.07, "totalCost": 530.4399999999999, "totalQty": 89.0, "orderCount": 82, "margin": 949.63, "marginPct": 64.16115453998798}, {"YearMonth": "2022-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2620.65, "totalRevenueExVAT": 2184.2200000000003, "totalCost": 911.86, "totalQty": 127.0, "orderCount": 113, "margin": 1272.3600000000001, "marginPct": 58.25237384512549}, {"YearMonth": "2022-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1995.06, "totalRevenueExVAT": 1668.21, "totalCost": 639.02, "totalQty": 178.0, "orderCount": 155, "margin": 1029.19, "marginPct": 61.69427110495681}, {"YearMonth": "2022-04", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 2493.0499999999997, "totalRevenueExVAT": 2077.7400000000002, "totalCost": 968.6600000000001, "totalQty": 119.0, "orderCount": 116, "margin": 1109.0800000000002, "marginPct": 53.379152348224515}, {"YearMonth": "2022-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 720.1, "totalRevenueExVAT": 600.02, "totalCost": 343.20000000000005, "totalQty": 39.0, "orderCount": 37, "margin": 256.81999999999994, "marginPct": 42.801906603113224}, {"YearMonth": "2022-04", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1684.05, "totalRevenueExVAT": 1403.92, "totalCost": 431.64, "totalQty": 109.0, "orderCount": 95, "margin": 972.2800000000001, "marginPct": 69.25465838509317}, {"YearMonth": "2022-04", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1142.55, "totalRevenueExVAT": 952.2, "totalCost": 475.20000000000005, "totalQty": 45.0, "orderCount": 41, "margin": 477.0, "marginPct": 50.0945179584121}, {"YearMonth": "2022-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 599.25, "totalRevenueExVAT": 499.34999999999997, "totalCost": 424.5, "totalQty": 15.0, "orderCount": 14, "margin": 74.84999999999997, "marginPct": 14.989486332231897}, {"YearMonth": "2022-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1561.06, "totalRevenueExVAT": 1301.1799999999998, "totalCost": 698.88, "totalQty": 91.0, "orderCount": 80, "margin": 602.2999999999998, "marginPct": 46.28875328547933}, {"YearMonth": "2022-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 751.6400000000001, "totalRevenueExVAT": 626.24, "totalCost": 291.84, "totalQty": 76.0, "orderCount": 73, "margin": 334.40000000000003, "marginPct": 53.39805825242719}, {"YearMonth": "2022-04", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3247.9799999999996, "totalRevenueExVAT": 2709.3599999999997, "totalCost": 681.6, "totalQty": 284.0, "orderCount": 227, "margin": 2027.7599999999998, "marginPct": 74.8427672955975}, {"YearMonth": "2022-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12951.22, "totalRevenueExVAT": 10800.52, "totalCost": 5009.4400000000005, "totalQty": 478.0, "orderCount": 424, "margin": 5791.08, "marginPct": 53.618529478210306}, {"YearMonth": "2022-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4090.33, "totalRevenueExVAT": 3413.42, "totalCost": 1628.76, "totalQty": 277.0, "orderCount": 262, "margin": 1784.66, "marginPct": 52.28363342337011}, {"YearMonth": "2022-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2203.2, "totalRevenueExVAT": 1836.48, "totalCost": 744.96, "totalQty": 96.0, "orderCount": 81, "margin": 1091.52, "marginPct": 59.43544171458443}, {"YearMonth": "2022-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 484.2, "totalRevenueExVAT": 403.56000000000006, "totalCost": 139.68, "totalQty": 36.0, "orderCount": 30, "margin": 263.88000000000005, "marginPct": 65.38804638715433}, {"YearMonth": "2022-04", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1110.75, "totalRevenueExVAT": 925.6800000000001, "totalCost": 304.92, "totalQty": 33.0, "orderCount": 30, "margin": 620.76, "marginPct": 67.05989110707803}, {"YearMonth": "2022-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1620.6, "totalRevenueExVAT": 1351.24, "totalCost": 451.4, "totalQty": 148.0, "orderCount": 146, "margin": 899.84, "marginPct": 66.59364731653888}, {"YearMonth": "2022-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 921.8, "totalRevenueExVAT": 768.24, "totalCost": 268.4, "totalQty": 44.0, "orderCount": 41, "margin": 499.84000000000003, "marginPct": 65.06300114547537}, {"YearMonth": "2022-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1130.85, "totalRevenueExVAT": 942.48, "totalCost": 374.22, "totalQty": 63.0, "orderCount": 59, "margin": 568.26, "marginPct": 60.29411764705882}, {"YearMonth": "2022-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 726.3499999999999, "totalRevenueExVAT": 605.17, "totalCost": 216.81, "totalQty": 73.0, "orderCount": 71, "margin": 388.35999999999996, "marginPct": 64.17370325693607}, {"YearMonth": "2022-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1126.07, "totalRevenueExVAT": 938.2699999999999, "totalCost": 491.9200000000001, "totalQty": 52.0, "orderCount": 33, "margin": 446.3499999999998, "marginPct": 47.57159453035905}, {"YearMonth": "2022-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 568.61, "totalRevenueExVAT": 473.65999999999997, "totalCost": 217.58, "totalQty": 46.0, "orderCount": 44, "margin": 256.0799999999999, "marginPct": 54.06409660938225}, {"YearMonth": "2022-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1370.06, "totalRevenueExVAT": 1141.31, "totalCost": 477.02000000000004, "totalQty": 61.0, "orderCount": 58, "margin": 664.29, "marginPct": 58.20416889363976}, {"YearMonth": "2022-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 965.02, "totalRevenueExVAT": 805.4200000000001, "totalCost": 301.07, "totalQty": 77.0, "orderCount": 76, "margin": 504.3500000000001, "marginPct": 62.619502868068835}, {"YearMonth": "2022-05", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1473.95, "totalRevenueExVAT": 1228.3600000000001, "totalCost": 572.36, "totalQty": 41.0, "orderCount": 37, "margin": 656.0000000000001, "marginPct": 53.404539385847805}, {"YearMonth": "2022-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1243.75, "totalRevenueExVAT": 1036.25, "totalCost": 517.5, "totalQty": 125.0, "orderCount": 108, "margin": 518.75, "marginPct": 50.06031363088058}, {"YearMonth": "2022-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2283.6, "totalRevenueExVAT": 1903.4399999999998, "totalCost": 985.5999999999999, "totalQty": 88.0, "orderCount": 82, "margin": 917.8399999999999, "marginPct": 48.22006472491909}, {"YearMonth": "2022-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1098.2, "totalRevenueExVAT": 915.04, "totalCost": 425.59999999999997, "totalQty": 76.0, "orderCount": 70, "margin": 489.44, "marginPct": 53.48837209302326}, {"YearMonth": "2022-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1592.34, "totalRevenueExVAT": 1329.0, "totalCost": 614.0, "totalQty": 100.0, "orderCount": 80, "margin": 715.0, "marginPct": 53.799849510910455}, {"YearMonth": "2022-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1292.3999999999999, "totalRevenueExVAT": 1077.1200000000001, "totalCost": 322.56000000000006, "totalQty": 72.0, "orderCount": 63, "margin": 754.5600000000001, "marginPct": 70.05347593582889}, {"YearMonth": "2022-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 915.3100000000001, "totalRevenueExVAT": 763.84, "totalCost": 184.45, "totalQty": 155.0, "orderCount": 141, "margin": 579.3900000000001, "marginPct": 75.85227272727273}, {"YearMonth": "2022-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1225.58, "totalRevenueExVAT": 1022.58, "totalCost": 280.84, "totalQty": 118.0, "orderCount": 104, "margin": 741.74, "marginPct": 72.53613409219817}, {"YearMonth": "2022-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 957.5999999999999, "totalRevenueExVAT": 798.24, "totalCost": 271.68, "totalQty": 48.0, "orderCount": 43, "margin": 526.56, "marginPct": 65.96512327119662}, {"YearMonth": "2022-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2314.2, "totalRevenueExVAT": 1928.8799999999999, "totalCost": 1054.88, "totalQty": 76.0, "orderCount": 57, "margin": 873.9999999999998, "marginPct": 45.31126871552403}, {"YearMonth": "2022-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1118.6, "totalRevenueExVAT": 932.2800000000001, "totalCost": 386.24, "totalQty": 68.0, "orderCount": 61, "margin": 546.0400000000001, "marginPct": 58.570386579139324}, {"YearMonth": "2022-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1118.75, "totalRevenueExVAT": 932.5, "totalCost": 357.84, "totalQty": 126.0, "orderCount": 120, "margin": 574.6600000000001, "marginPct": 61.62573726541556}, {"YearMonth": "2022-05", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1273.48, "totalRevenueExVAT": 1064.32, "totalCost": 451.84, "totalQty": 64.0, "orderCount": 59, "margin": 612.48, "marginPct": 57.54660252555623}, {"YearMonth": "2022-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1212.2, "totalRevenueExVAT": 1010.04, "totalCost": 196.08, "totalQty": 76.0, "orderCount": 68, "margin": 813.9599999999999, "marginPct": 80.58690744920993}, {"YearMonth": "2022-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 986.1, "totalRevenueExVAT": 821.9399999999999, "totalCost": 196.08, "totalQty": 38.0, "orderCount": 37, "margin": 625.8599999999999, "marginPct": 76.14424410540914}, {"YearMonth": "2022-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1197.0, "totalRevenueExVAT": 997.8, "totalCost": 357.6, "totalQty": 60.0, "orderCount": 53, "margin": 640.1999999999999, "marginPct": 64.16115453998798}, {"YearMonth": "2022-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2115.95, "totalRevenueExVAT": 1763.46, "totalCost": 739.54, "totalQty": 103.0, "orderCount": 89, "margin": 1023.9200000000001, "marginPct": 58.06312590021889}, {"YearMonth": "2022-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1505.19, "totalRevenueExVAT": 1254.98, "totalCost": 470.28999999999996, "totalQty": 131.0, "orderCount": 124, "margin": 784.69, "marginPct": 62.52609603340292}, {"YearMonth": "2022-05", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 2995.85, "totalRevenueExVAT": 2496.78, "totalCost": 1172.16, "totalQty": 144.0, "orderCount": 138, "margin": 1324.6200000000001, "marginPct": 53.05313243457574}, {"YearMonth": "2022-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 773.79, "totalRevenueExVAT": 647.39, "totalCost": 387.20000000000005, "totalQty": 44.0, "orderCount": 38, "margin": 260.18999999999994, "marginPct": 40.190611532461105}, {"YearMonth": "2022-05", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1467.75, "totalRevenueExVAT": 1223.6000000000001, "totalCost": 376.2, "totalQty": 95.0, "orderCount": 77, "margin": 847.4000000000001, "marginPct": 69.25465838509317}, {"YearMonth": "2022-05", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1355.4, "totalRevenueExVAT": 1129.5900000000001, "totalCost": 570.24, "totalQty": 54.0, "orderCount": 51, "margin": 559.3500000000001, "marginPct": 49.51796669588081}, {"YearMonth": "2022-05", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 519.35, "totalRevenueExVAT": 432.77, "totalCost": 367.90000000000003, "totalQty": 13.0, "orderCount": 10, "margin": 64.86999999999995, "marginPct": 14.989486332231891}, {"YearMonth": "2022-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1013.4399999999999, "totalRevenueExVAT": 844.64, "totalCost": 430.08, "totalQty": 56.0, "orderCount": 54, "margin": 414.56, "marginPct": 49.08126539117257}, {"YearMonth": "2022-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 914.84, "totalRevenueExVAT": 763.64, "totalCost": 349.44, "totalQty": 91.0, "orderCount": 83, "margin": 414.2, "marginPct": 54.240217903724265}, {"YearMonth": "2022-05", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2574.3399999999997, "totalRevenueExVAT": 2146.5, "totalCost": 540.0, "totalQty": 225.0, "orderCount": 180, "margin": 1606.5, "marginPct": 74.84276729559748}, {"YearMonth": "2022-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10728.14, "totalRevenueExVAT": 8943.36, "totalCost": 4024.32, "totalQty": 384.0, "orderCount": 322, "margin": 4919.040000000001, "marginPct": 55.00214684413912}, {"YearMonth": "2022-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4470.05, "totalRevenueExVAT": 3725.5400000000004, "totalCost": 1764.0, "totalQty": 300.0, "orderCount": 287, "margin": 1961.5400000000004, "marginPct": 52.651159295028386}, {"YearMonth": "2022-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1193.3999999999999, "totalRevenueExVAT": 994.76, "totalCost": 403.52, "totalQty": 52.0, "orderCount": 45, "margin": 591.24, "marginPct": 59.43544171458443}, {"YearMonth": "2022-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 457.29999999999995, "totalRevenueExVAT": 381.14000000000004, "totalCost": 131.92, "totalQty": 34.0, "orderCount": 33, "margin": 249.22000000000006, "marginPct": 65.38804638715433}, {"YearMonth": "2022-05", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1839.45, "totalRevenueExVAT": 1557.92, "totalCost": 480.48, "totalQty": 52.0, "orderCount": 37, "margin": 1077.44, "marginPct": 69.1588785046729}, {"YearMonth": "2022-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1421.6799999999998, "totalRevenueExVAT": 1186.9, "totalCost": 396.5, "totalQty": 130.0, "orderCount": 124, "margin": 790.4000000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2022-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 670.4, "totalRevenueExVAT": 558.72, "totalCost": 195.2, "totalQty": 32.0, "orderCount": 31, "margin": 363.52000000000004, "marginPct": 65.06300114547537}, {"YearMonth": "2022-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 951.3499999999999, "totalRevenueExVAT": 792.88, "totalCost": 314.82, "totalQty": 53.0, "orderCount": 48, "margin": 478.06, "marginPct": 60.29411764705882}, {"YearMonth": "2022-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 646.75, "totalRevenueExVAT": 538.8499999999999, "totalCost": 193.05, "totalQty": 65.0, "orderCount": 65, "margin": 345.7999999999999, "marginPct": 64.17370325693605}, {"YearMonth": "2022-06", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 869.44, "totalRevenueExVAT": 724.24, "totalCost": 416.24, "totalQty": 44.0, "orderCount": 37, "margin": 308.0, "marginPct": 42.527339003645196}, {"YearMonth": "2022-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 406.15, "totalRevenueExVAT": 339.85, "totalCost": 165.55, "totalQty": 35.0, "orderCount": 35, "margin": 174.3, "marginPct": 51.28733264675592}, {"YearMonth": "2022-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1639.5800000000002, "totalRevenueExVAT": 1365.8300000000002, "totalCost": 570.86, "totalQty": 73.0, "orderCount": 64, "margin": 794.9700000000001, "marginPct": 58.204168893639775}, {"YearMonth": "2022-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 942.0, "totalRevenueExVAT": 784.5000000000001, "totalCost": 293.25, "totalQty": 75.0, "orderCount": 70, "margin": 491.2500000000001, "marginPct": 62.61950286806884}, {"YearMonth": "2022-06", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1977.2500000000002, "totalRevenueExVAT": 1647.8, "totalCost": 767.8000000000001, "totalQty": 55.0, "orderCount": 53, "margin": 879.9999999999999, "marginPct": 53.40453938584779}, {"YearMonth": "2022-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1054.6999999999998, "totalRevenueExVAT": 878.7399999999999, "totalCost": 438.84, "totalQty": 106.0, "orderCount": 83, "margin": 439.8999999999999, "marginPct": 50.06031363088057}, {"YearMonth": "2022-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2223.0, "totalRevenueExVAT": 1852.8999999999999, "totalCost": 895.9999999999999, "totalQty": 80.0, "orderCount": 70, "margin": 956.9, "marginPct": 51.64336985266339}, {"YearMonth": "2022-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1001.6999999999999, "totalRevenueExVAT": 834.96, "totalCost": 369.59999999999997, "totalQty": 66.0, "orderCount": 62, "margin": 465.36000000000007, "marginPct": 55.7344064386318}, {"YearMonth": "2022-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1770.4499999999998, "totalRevenueExVAT": 1475.1899999999998, "totalCost": 681.54, "totalQty": 111.0, "orderCount": 82, "margin": 793.6499999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2022-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1238.55, "totalRevenueExVAT": 1032.24, "totalCost": 309.12, "totalQty": 69.0, "orderCount": 61, "margin": 723.12, "marginPct": 70.05347593582889}, {"YearMonth": "2022-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 987.7, "totalRevenueExVAT": 823.36, "totalCost": 198.73, "totalQty": 167.0, "orderCount": 156, "margin": 624.63, "marginPct": 75.86353478429848}, {"YearMonth": "2022-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1321.74, "totalRevenueExVAT": 1101.24, "totalCost": 299.88, "totalQty": 126.0, "orderCount": 112, "margin": 801.36, "marginPct": 72.76887871853546}, {"YearMonth": "2022-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 997.5, "totalRevenueExVAT": 831.5, "totalCost": 283.0, "totalQty": 50.0, "orderCount": 48, "margin": 548.5, "marginPct": 65.96512327119663}, {"YearMonth": "2022-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2436.0, "totalRevenueExVAT": 2030.3999999999999, "totalCost": 1110.4, "totalQty": 80.0, "orderCount": 62, "margin": 919.9999999999998, "marginPct": 45.31126871552403}, {"YearMonth": "2022-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1102.1499999999999, "totalRevenueExVAT": 918.57, "totalCost": 380.56, "totalQty": 67.0, "orderCount": 62, "margin": 538.01, "marginPct": 58.57038657913931}, {"YearMonth": "2022-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 984.4999999999999, "totalRevenueExVAT": 820.6, "totalCost": 312.4, "totalQty": 110.0, "orderCount": 105, "margin": 508.20000000000005, "marginPct": 61.930294906166225}, {"YearMonth": "2022-06", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1416.45, "totalRevenueExVAT": 1180.73, "totalCost": 501.26, "totalQty": 71.0, "orderCount": 62, "margin": 679.47, "marginPct": 57.546602525556224}, {"YearMonth": "2022-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1164.35, "totalRevenueExVAT": 970.17, "totalCost": 188.34, "totalQty": 73.0, "orderCount": 70, "margin": 781.8299999999999, "marginPct": 80.58690744920993}, {"YearMonth": "2022-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 960.15, "totalRevenueExVAT": 800.31, "totalCost": 190.92000000000002, "totalQty": 37.0, "orderCount": 33, "margin": 609.3899999999999, "marginPct": 76.14424410540914}, {"YearMonth": "2022-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1456.35, "totalRevenueExVAT": 1213.99, "totalCost": 435.08, "totalQty": 73.0, "orderCount": 65, "margin": 778.9100000000001, "marginPct": 64.16115453998798}, {"YearMonth": "2022-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2199.75, "totalRevenueExVAT": 1833.3000000000002, "totalCost": 753.9, "totalQty": 105.0, "orderCount": 93, "margin": 1079.4, "marginPct": 58.8774341351661}, {"YearMonth": "2022-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1459.23, "totalRevenueExVAT": 1216.66, "totalCost": 455.93, "totalQty": 127.0, "orderCount": 121, "margin": 760.73, "marginPct": 62.52609603340292}, {"YearMonth": "2022-06", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 2723.5, "totalRevenueExVAT": 2269.8, "totalCost": 1058.2, "totalQty": 130.0, "orderCount": 124, "margin": 1211.6000000000001, "marginPct": 53.379152348224515}, {"YearMonth": "2022-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 416.9, "totalRevenueExVAT": 347.38, "totalCost": 193.60000000000002, "totalQty": 22.0, "orderCount": 22, "margin": 153.77999999999997, "marginPct": 44.268524382520575}, {"YearMonth": "2022-06", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1668.6, "totalRevenueExVAT": 1391.04, "totalCost": 431.64, "totalQty": 109.0, "orderCount": 93, "margin": 959.4, "marginPct": 68.96997929606626}, {"YearMonth": "2022-06", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1293.6, "totalRevenueExVAT": 1078.08, "totalCost": 506.88000000000005, "totalQty": 48.0, "orderCount": 41, "margin": 571.1999999999998, "marginPct": 52.983081032947446}, {"YearMonth": "2022-06", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 639.2, "totalRevenueExVAT": 532.64, "totalCost": 452.8, "totalQty": 16.0, "orderCount": 16, "margin": 79.83999999999997, "marginPct": 14.989486332231897}, {"YearMonth": "2022-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1056.95, "totalRevenueExVAT": 883.52, "totalCost": 399.36, "totalQty": 52.0, "orderCount": 44, "margin": 484.15999999999997, "marginPct": 54.79898587468308}, {"YearMonth": "2022-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 568.27, "totalRevenueExVAT": 473.64000000000004, "totalCost": 188.16, "totalQty": 49.0, "orderCount": 49, "margin": 285.48, "marginPct": 60.27362553838358}, {"YearMonth": "2022-06", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2209.85, "totalRevenueExVAT": 1841.2199999999998, "totalCost": 463.2, "totalQty": 193.0, "orderCount": 157, "margin": 1378.0199999999998, "marginPct": 74.84276729559748}, {"YearMonth": "2022-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11429.55, "totalRevenueExVAT": 9523.949999999999, "totalCost": 4286.320000000001, "totalQty": 409.0, "orderCount": 363, "margin": 5237.629999999998, "marginPct": 54.99430383401843}, {"YearMonth": "2022-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3737.5, "totalRevenueExVAT": 3115.0, "totalCost": 1470.0, "totalQty": 250.0, "orderCount": 237, "margin": 1645.0, "marginPct": 52.80898876404494}, {"YearMonth": "2022-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 349.79999999999995, "totalRevenueExVAT": 291.6, "totalCost": 118.0, "totalQty": 20.0, "orderCount": 19, "margin": 173.60000000000002, "marginPct": 59.53360768175583}, {"YearMonth": "2022-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1331.1, "totalRevenueExVAT": 1109.54, "totalCost": 450.08, "totalQty": 58.0, "orderCount": 53, "margin": 659.46, "marginPct": 59.43544171458443}, {"YearMonth": "2022-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 470.75, "totalRevenueExVAT": 392.35, "totalCost": 135.79999999999998, "totalQty": 35.0, "orderCount": 33, "margin": 256.55000000000007, "marginPct": 65.38804638715435}, {"YearMonth": "2022-06", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 862.8000000000001, "totalRevenueExVAT": 719.04, "totalCost": 221.76, "totalQty": 24.0, "orderCount": 22, "margin": 497.28, "marginPct": 69.1588785046729}, {"YearMonth": "2022-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1259.25, "totalRevenueExVAT": 1049.95, "totalCost": 356.84999999999997, "totalQty": 117.0, "orderCount": 115, "margin": 693.1000000000001, "marginPct": 66.01266726987001}, {"YearMonth": "2022-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 544.6999999999999, "totalRevenueExVAT": 453.96000000000004, "totalCost": 158.6, "totalQty": 26.0, "orderCount": 25, "margin": 295.36, "marginPct": 65.06300114547537}, {"YearMonth": "2022-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 843.65, "totalRevenueExVAT": 703.12, "totalCost": 279.18, "totalQty": 47.0, "orderCount": 41, "margin": 423.94, "marginPct": 60.29411764705882}, {"YearMonth": "2022-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 716.4, "totalRevenueExVAT": 596.8799999999999, "totalCost": 213.84, "totalQty": 72.0, "orderCount": 71, "margin": 383.03999999999985, "marginPct": 64.17370325693605}, {"YearMonth": "2022-07", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 652.08, "totalRevenueExVAT": 543.1800000000001, "totalCost": 312.18, "totalQty": 33.0, "orderCount": 30, "margin": 231.00000000000006, "marginPct": 42.5273390036452}, {"YearMonth": "2022-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 536.36, "totalRevenueExVAT": 446.66, "totalCost": 217.58, "totalQty": 46.0, "orderCount": 45, "margin": 229.08, "marginPct": 51.28733264675592}, {"YearMonth": "2022-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1998.94, "totalRevenueExVAT": 1665.19, "totalCost": 695.98, "totalQty": 89.0, "orderCount": 73, "margin": 969.21, "marginPct": 58.20416889363976}, {"YearMonth": "2022-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1256.0, "totalRevenueExVAT": 1046.0, "totalCost": 391.0, "totalQty": 100.0, "orderCount": 94, "margin": 655.0, "marginPct": 62.619502868068835}, {"YearMonth": "2022-07", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1863.8999999999999, "totalRevenueExVAT": 1553.3400000000001, "totalCost": 753.84, "totalQty": 54.0, "orderCount": 52, "margin": 799.5000000000001, "marginPct": 51.46973618138978}, {"YearMonth": "2022-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1659.02, "totalRevenueExVAT": 1382.4399999999998, "totalCost": 782.4599999999999, "totalQty": 189.0, "orderCount": 157, "margin": 599.9799999999999, "marginPct": 43.400075229304704}, {"YearMonth": "2022-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1980.05, "totalRevenueExVAT": 1650.3100000000002, "totalCost": 795.1999999999999, "totalQty": 71.0, "orderCount": 65, "margin": 855.1100000000002, "marginPct": 51.81511352412578}, {"YearMonth": "2022-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1066.97, "totalRevenueExVAT": 889.01, "totalCost": 403.2, "totalQty": 72.0, "orderCount": 67, "margin": 485.81, "marginPct": 54.646179458048834}, {"YearMonth": "2022-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1853.95, "totalRevenueExVAT": 1545.39, "totalCost": 742.9399999999999, "totalQty": 121.0, "orderCount": 103, "margin": 802.4500000000002, "marginPct": 51.92540394334117}, {"YearMonth": "2022-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1607.1100000000001, "totalRevenueExVAT": 1341.78, "totalCost": 416.64000000000004, "totalQty": 93.0, "orderCount": 81, "margin": 925.1399999999999, "marginPct": 68.94870992264008}, {"YearMonth": "2022-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1015.35, "totalRevenueExVAT": 846.42, "totalCost": 210.63, "totalQty": 177.0, "orderCount": 156, "margin": 635.79, "marginPct": 75.11519103990926}, {"YearMonth": "2022-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1757.14, "totalRevenueExVAT": 1463.1200000000001, "totalCost": 416.5, "totalQty": 175.0, "orderCount": 154, "margin": 1046.6200000000001, "marginPct": 71.53343539832686}, {"YearMonth": "2022-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 981.4499999999999, "totalRevenueExVAT": 817.89, "totalCost": 288.66, "totalQty": 51.0, "orderCount": 46, "margin": 529.23, "marginPct": 64.70674540586143}, {"YearMonth": "2022-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3048.24, "totalRevenueExVAT": 2540.46, "totalCost": 1443.52, "totalQty": 104.0, "orderCount": 77, "margin": 1096.94, "marginPct": 43.17879439156688}, {"YearMonth": "2022-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1624.65, "totalRevenueExVAT": 1353.48, "totalCost": 585.04, "totalQty": 103.0, "orderCount": 92, "margin": 768.44, "marginPct": 56.77512781866005}, {"YearMonth": "2022-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1392.3, "totalRevenueExVAT": 1161.16, "totalCost": 460.08, "totalQty": 162.0, "orderCount": 150, "margin": 701.0800000000002, "marginPct": 60.37755348100177}, {"YearMonth": "2022-07", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1167.95, "totalRevenueExVAT": 973.27, "totalCost": 430.65999999999997, "totalQty": 61.0, "orderCount": 57, "margin": 542.61, "marginPct": 55.75123038827869}, {"YearMonth": "2022-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 888.3, "totalRevenueExVAT": 740.46, "totalCost": 149.64000000000001, "totalQty": 58.0, "orderCount": 56, "margin": 590.82, "marginPct": 79.79094076655052}, {"YearMonth": "2022-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1070.35, "totalRevenueExVAT": 891.9399999999999, "totalCost": 221.88, "totalQty": 43.0, "orderCount": 39, "margin": 670.06, "marginPct": 75.12388725699039}, {"YearMonth": "2022-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1478.1499999999999, "totalRevenueExVAT": 1231.79, "totalCost": 458.92, "totalQty": 77.0, "orderCount": 70, "margin": 772.8699999999999, "marginPct": 62.743649485707785}, {"YearMonth": "2022-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3084.1699999999996, "totalRevenueExVAT": 2569.98, "totalCost": 1199.06, "totalQty": 167.0, "orderCount": 151, "margin": 1370.92, "marginPct": 53.34360578681546}, {"YearMonth": "2022-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1699.74, "totalRevenueExVAT": 1419.3600000000001, "totalCost": 603.12, "totalQty": 168.0, "orderCount": 152, "margin": 816.2400000000001, "marginPct": 57.50760906323977}, {"YearMonth": "2022-07", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 3006.73, "totalRevenueExVAT": 2511.99, "totalCost": 1221.0, "totalQty": 150.0, "orderCount": 132, "margin": 1290.9899999999998, "marginPct": 51.39311860317915}, {"YearMonth": "2022-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 880.3199999999999, "totalRevenueExVAT": 733.39, "totalCost": 457.6, "totalQty": 52.0, "orderCount": 49, "margin": 275.78999999999996, "marginPct": 37.60482144561556}, {"YearMonth": "2022-07", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2602.1600000000003, "totalRevenueExVAT": 2168.38, "totalCost": 760.3199999999999, "totalQty": 192.0, "orderCount": 141, "margin": 1408.0600000000002, "marginPct": 64.93603519678285}, {"YearMonth": "2022-07", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1426.9, "totalRevenueExVAT": 1189.38, "totalCost": 580.8000000000001, "totalQty": 55.0, "orderCount": 50, "margin": 608.58, "marginPct": 51.16783534278363}, {"YearMonth": "2022-07", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 655.1500000000001, "totalRevenueExVAT": 546.01, "totalCost": 481.1, "totalQty": 17.0, "orderCount": 17, "margin": 64.90999999999997, "marginPct": 11.888060658229698}, {"YearMonth": "2022-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1272.6, "totalRevenueExVAT": 1060.83, "totalCost": 483.84, "totalQty": 63.0, "orderCount": 62, "margin": 576.99, "marginPct": 54.39043013489439}, {"YearMonth": "2022-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 848.7099999999999, "totalRevenueExVAT": 709.0400000000001, "totalCost": 284.15999999999997, "totalQty": 74.0, "orderCount": 73, "margin": 424.8800000000001, "marginPct": 59.92327654293129}, {"YearMonth": "2022-07", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3211.1600000000003, "totalRevenueExVAT": 2674.32, "totalCost": 700.8, "totalQty": 292.0, "orderCount": 226, "margin": 1973.5200000000002, "marginPct": 73.79520775374675}, {"YearMonth": "2022-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12860.97, "totalRevenueExVAT": 10726.71, "totalCost": 5030.400000000001, "totalQty": 480.0, "orderCount": 408, "margin": 5696.309999999999, "marginPct": 53.10398062406833}, {"YearMonth": "2022-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3776.6499999999996, "totalRevenueExVAT": 3148.58, "totalCost": 1546.44, "totalQty": 263.0, "orderCount": 249, "margin": 1602.1399999999999, "marginPct": 50.88452572270674}, {"YearMonth": "2022-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1565.05, "totalRevenueExVAT": 1304.47, "totalCost": 550.96, "totalQty": 71.0, "orderCount": 61, "margin": 753.51, "marginPct": 57.76368946775319}, {"YearMonth": "2022-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 557.5799999999999, "totalRevenueExVAT": 464.67, "totalCost": 166.84, "totalQty": 43.0, "orderCount": 39, "margin": 297.83000000000004, "marginPct": 64.09494910366497}, {"YearMonth": "2022-07", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1732.7, "totalRevenueExVAT": 1444.0, "totalCost": 462.0, "totalQty": 50.0, "orderCount": 42, "margin": 982.0, "marginPct": 68.00554016620498}, {"YearMonth": "2022-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1999.65, "totalRevenueExVAT": 1667.08, "totalCost": 579.5, "totalQty": 190.0, "orderCount": 186, "margin": 1087.58, "marginPct": 65.23862082203613}, {"YearMonth": "2022-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1393.05, "totalRevenueExVAT": 1161.24, "totalCost": 420.9, "totalQty": 69.0, "orderCount": 64, "margin": 740.34, "marginPct": 63.754262684716345}, {"YearMonth": "2022-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 932.4, "totalRevenueExVAT": 777.09, "totalCost": 320.76, "totalQty": 54.0, "orderCount": 49, "margin": 456.33000000000004, "marginPct": 58.722927846195425}, {"YearMonth": "2022-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 821.6999999999999, "totalRevenueExVAT": 685.06, "totalCost": 258.39000000000004, "totalQty": 87.0, "orderCount": 82, "margin": 426.6699999999999, "marginPct": 62.28213587131053}, {"YearMonth": "2022-08", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 538.85, "totalRevenueExVAT": 449.05999999999995, "totalCost": 236.50000000000003, "totalQty": 25.0, "orderCount": 24, "margin": 212.55999999999992, "marginPct": 47.334431924464425}, {"YearMonth": "2022-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 535.45, "totalRevenueExVAT": 446.15999999999997, "totalCost": 198.66000000000003, "totalQty": 42.0, "orderCount": 41, "margin": 247.49999999999994, "marginPct": 55.47337278106508}, {"YearMonth": "2022-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1422.1499999999999, "totalRevenueExVAT": 1185.03, "totalCost": 445.74, "totalQty": 57.0, "orderCount": 53, "margin": 739.29, "marginPct": 62.38576238576239}, {"YearMonth": "2022-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 891.41, "totalRevenueExVAT": 743.1500000000001, "totalCost": 250.24, "totalQty": 64.0, "orderCount": 63, "margin": 492.9100000000001, "marginPct": 66.32712103882123}, {"YearMonth": "2022-08", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1653.7, "totalRevenueExVAT": 1378.16, "totalCost": 642.1600000000001, "totalQty": 46.0, "orderCount": 40, "margin": 736.0, "marginPct": 53.40453938584779}, {"YearMonth": "2022-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1104.4499999999998, "totalRevenueExVAT": 920.1899999999999, "totalCost": 459.53999999999996, "totalQty": 111.0, "orderCount": 89, "margin": 460.65, "marginPct": 50.06031363088058}, {"YearMonth": "2022-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2344.95, "totalRevenueExVAT": 1954.53, "totalCost": 907.1999999999999, "totalQty": 81.0, "orderCount": 70, "margin": 1047.33, "marginPct": 53.5847492747617}, {"YearMonth": "2022-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 834.3, "totalRevenueExVAT": 695.5200000000001, "totalCost": 302.4, "totalQty": 54.0, "orderCount": 51, "margin": 393.1200000000001, "marginPct": 56.52173913043479}, {"YearMonth": "2022-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1738.55, "totalRevenueExVAT": 1448.61, "totalCost": 669.26, "totalQty": 109.0, "orderCount": 93, "margin": 779.3499999999999, "marginPct": 53.799849510910455}, {"YearMonth": "2022-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1310.35, "totalRevenueExVAT": 1092.0800000000002, "totalCost": 327.04, "totalQty": 73.0, "orderCount": 61, "margin": 765.0400000000002, "marginPct": 70.05347593582889}, {"YearMonth": "2022-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 883.5, "totalRevenueExVAT": 736.51, "totalCost": 185.64, "totalQty": 156.0, "orderCount": 143, "margin": 550.87, "marginPct": 74.79463958398392}, {"YearMonth": "2022-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1399.3, "totalRevenueExVAT": 1166.21, "totalCost": 335.58, "totalQty": 141.0, "orderCount": 120, "margin": 830.6300000000001, "marginPct": 71.22473653973127}, {"YearMonth": "2022-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 897.75, "totalRevenueExVAT": 748.3499999999999, "totalCost": 254.70000000000002, "totalQty": 45.0, "orderCount": 42, "margin": 493.64999999999986, "marginPct": 65.96512327119662}, {"YearMonth": "2022-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3134.83, "totalRevenueExVAT": 2612.87, "totalCost": 1429.64, "totalQty": 103.0, "orderCount": 53, "margin": 1183.2299999999998, "marginPct": 45.284686953426686}, {"YearMonth": "2022-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1035.53, "totalRevenueExVAT": 863.0400000000001, "totalCost": 357.84, "totalQty": 63.0, "orderCount": 59, "margin": 505.2000000000001, "marginPct": 58.5372636262514}, {"YearMonth": "2022-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1145.6, "totalRevenueExVAT": 954.88, "totalCost": 363.52, "totalQty": 128.0, "orderCount": 117, "margin": 591.36, "marginPct": 61.93029490616622}, {"YearMonth": "2022-08", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1236.8999999999999, "totalRevenueExVAT": 1031.06, "totalCost": 437.71999999999997, "totalQty": 62.0, "orderCount": 54, "margin": 593.3399999999999, "marginPct": 57.546602525556224}, {"YearMonth": "2022-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 829.4, "totalRevenueExVAT": 691.0799999999999, "totalCost": 134.16, "totalQty": 52.0, "orderCount": 52, "margin": 556.92, "marginPct": 80.58690744920993}, {"YearMonth": "2022-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1374.05, "totalRevenueExVAT": 1145.3, "totalCost": 273.48, "totalQty": 53.0, "orderCount": 51, "margin": 871.8199999999999, "marginPct": 76.12154020780582}, {"YearMonth": "2022-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1276.8, "totalRevenueExVAT": 1064.32, "totalCost": 381.44, "totalQty": 64.0, "orderCount": 55, "margin": 682.8799999999999, "marginPct": 64.16115453998796}, {"YearMonth": "2022-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2448.0099999999998, "totalRevenueExVAT": 2040.2, "totalCost": 840.06, "totalQty": 117.0, "orderCount": 101, "margin": 1200.14, "marginPct": 58.824625036761105}, {"YearMonth": "2022-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1629.67, "totalRevenueExVAT": 1360.36, "totalCost": 509.78, "totalQty": 142.0, "orderCount": 138, "margin": 850.5799999999999, "marginPct": 62.52609603340292}, {"YearMonth": "2022-08", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 2514.0, "totalRevenueExVAT": 2095.2000000000003, "totalCost": 976.8000000000001, "totalQty": 120.0, "orderCount": 118, "margin": 1118.4, "marginPct": 53.379152348224515}, {"YearMonth": "2022-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 565.66, "totalRevenueExVAT": 471.33, "totalCost": 264.0, "totalQty": 30.0, "orderCount": 29, "margin": 207.32999999999998, "marginPct": 43.98828846031443}, {"YearMonth": "2022-08", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1483.1999999999998, "totalRevenueExVAT": 1236.48, "totalCost": 380.15999999999997, "totalQty": 96.0, "orderCount": 85, "margin": 856.32, "marginPct": 69.25465838509317}, {"YearMonth": "2022-08", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1347.5, "totalRevenueExVAT": 1123.0, "totalCost": 528.0, "totalQty": 50.0, "orderCount": 40, "margin": 595.0, "marginPct": 52.98308103294747}, {"YearMonth": "2022-08", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 319.6, "totalRevenueExVAT": 266.32, "totalCost": 226.4, "totalQty": 8.0, "orderCount": 8, "margin": 39.91999999999999, "marginPct": 14.989486332231897}, {"YearMonth": "2022-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1067.3999999999999, "totalRevenueExVAT": 889.59, "totalCost": 391.68, "totalQty": 51.0, "orderCount": 49, "margin": 497.91, "marginPct": 55.97072808822041}, {"YearMonth": "2022-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 822.56, "totalRevenueExVAT": 687.24, "totalCost": 264.96, "totalQty": 69.0, "orderCount": 68, "margin": 422.28000000000003, "marginPct": 61.44578313253012}, {"YearMonth": "2022-08", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1934.4799999999998, "totalRevenueExVAT": 1611.7799999999997, "totalCost": 410.4, "totalQty": 171.0, "orderCount": 144, "margin": 1201.3799999999997, "marginPct": 74.53746789264044}, {"YearMonth": "2022-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11453.44, "totalRevenueExVAT": 9547.74, "totalCost": 4296.8, "totalQty": 410.0, "orderCount": 357, "margin": 5250.94, "marginPct": 54.996679842559594}, {"YearMonth": "2022-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 2900.2999999999997, "totalRevenueExVAT": 2417.2400000000002, "totalCost": 1140.72, "totalQty": 194.0, "orderCount": 191, "margin": 1276.5200000000002, "marginPct": 52.80898876404495}, {"YearMonth": "2022-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1858.95, "totalRevenueExVAT": 1549.53, "totalCost": 628.56, "totalQty": 81.0, "orderCount": 69, "margin": 920.97, "marginPct": 59.43544171458443}, {"YearMonth": "2022-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 510.42999999999995, "totalRevenueExVAT": 425.42, "totalCost": 147.44, "totalQty": 38.0, "orderCount": 36, "margin": 277.98, "marginPct": 65.34248507357435}, {"YearMonth": "2022-08", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1186.3500000000001, "totalRevenueExVAT": 988.6800000000001, "totalCost": 304.92, "totalQty": 33.0, "orderCount": 32, "margin": 683.76, "marginPct": 69.1588785046729}, {"YearMonth": "2022-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1390.6499999999999, "totalRevenueExVAT": 1159.51, "totalCost": 387.34999999999997, "totalQty": 127.0, "orderCount": 124, "margin": 772.1600000000001, "marginPct": 66.59364731653889}, {"YearMonth": "2022-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 733.25, "totalRevenueExVAT": 611.1, "totalCost": 213.5, "totalQty": 35.0, "orderCount": 32, "margin": 397.6, "marginPct": 65.06300114547537}, {"YearMonth": "2022-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 861.5999999999999, "totalRevenueExVAT": 718.08, "totalCost": 285.12, "totalQty": 48.0, "orderCount": 45, "margin": 432.96000000000004, "marginPct": 60.29411764705882}, {"YearMonth": "2022-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 676.0999999999999, "totalRevenueExVAT": 563.31, "totalCost": 201.96, "totalQty": 68.0, "orderCount": 65, "margin": 361.3499999999999, "marginPct": 64.14762741652021}, {"YearMonth": "2022-09", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 723.3000000000001, "totalRevenueExVAT": 602.91, "totalCost": 311.92, "totalQty": 32.0, "orderCount": 24, "margin": 290.98999999999995, "marginPct": 48.26425171252757}, {"YearMonth": "2022-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 552.0, "totalRevenueExVAT": 460.07, "totalCost": 211.98999999999998, "totalQty": 43.0, "orderCount": 42, "margin": 248.08, "marginPct": 53.92222922598735}, {"YearMonth": "2022-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1383.3, "totalRevenueExVAT": 1152.6599999999999, "totalCost": 434.88, "totalQty": 54.0, "orderCount": 51, "margin": 717.7799999999999, "marginPct": 62.27161522044662}, {"YearMonth": "2022-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1145.0, "totalRevenueExVAT": 954.47, "totalCost": 329.6, "totalQty": 80.0, "orderCount": 77, "margin": 624.87, "marginPct": 65.46774649805651}, {"YearMonth": "2022-09", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1653.7, "totalRevenueExVAT": 1378.16, "totalCost": 659.6600000000001, "totalQty": 46.0, "orderCount": 38, "margin": 718.5, "marginPct": 52.13473036512452}, {"YearMonth": "2022-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1313.3999999999999, "totalRevenueExVAT": 1094.28, "totalCost": 584.6999999999999, "totalQty": 132.0, "orderCount": 95, "margin": 509.58000000000004, "marginPct": 46.56760609715978}, {"YearMonth": "2022-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1910.7, "totalRevenueExVAT": 1592.58, "totalCost": 756.1999999999999, "totalQty": 66.0, "orderCount": 61, "margin": 836.38, "marginPct": 52.517298973991885}, {"YearMonth": "2022-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1158.75, "totalRevenueExVAT": 966.0000000000001, "totalCost": 438.75, "totalQty": 75.0, "orderCount": 70, "margin": 527.2500000000001, "marginPct": 54.580745341614914}, {"YearMonth": "2022-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1480.6899999999998, "totalRevenueExVAT": 1235.97, "totalCost": 532.14, "totalQty": 93.0, "orderCount": 81, "margin": 703.83, "marginPct": 56.94555693099347}, {"YearMonth": "2022-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1346.25, "totalRevenueExVAT": 1122.0, "totalCost": 351.3, "totalQty": 75.0, "orderCount": 65, "margin": 770.7, "marginPct": 68.68983957219251}, {"YearMonth": "2022-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 314.76, "totalRevenueExVAT": 263.14, "totalCost": 73.75, "totalQty": 59.0, "orderCount": 55, "margin": 189.39, "marginPct": 71.97309417040358}, {"YearMonth": "2022-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 574.27, "totalRevenueExVAT": 480.07, "totalCost": 148.04, "totalQty": 62.0, "orderCount": 57, "margin": 332.03, "marginPct": 69.16283042056367}, {"YearMonth": "2022-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1017.4499999999999, "totalRevenueExVAT": 848.13, "totalCost": 297.96, "totalQty": 51.0, "orderCount": 46, "margin": 550.1700000000001, "marginPct": 64.86859325810903}, {"YearMonth": "2022-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2532.33, "totalRevenueExVAT": 2114.91, "totalCost": 1218.52, "totalQty": 82.0, "orderCount": 56, "margin": 896.3899999999999, "marginPct": 42.384309497803685}, {"YearMonth": "2022-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1167.95, "totalRevenueExVAT": 973.4100000000001, "totalCost": 401.35999999999996, "totalQty": 71.0, "orderCount": 68, "margin": 572.0500000000002, "marginPct": 58.767631316711366}, {"YearMonth": "2022-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 805.4999999999999, "totalRevenueExVAT": 671.4, "totalCost": 253.79999999999998, "totalQty": 90.0, "orderCount": 85, "margin": 417.6, "marginPct": 62.198391420911534}, {"YearMonth": "2022-09", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1113.8799999999999, "totalRevenueExVAT": 931.28, "totalCost": 393.88, "totalQty": 56.0, "orderCount": 53, "margin": 537.4, "marginPct": 57.705523580448414}, {"YearMonth": "2022-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1020.8, "totalRevenueExVAT": 850.56, "totalCost": 182.4, "totalQty": 64.0, "orderCount": 62, "margin": 668.16, "marginPct": 78.55530474040631}, {"YearMonth": "2022-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 882.3, "totalRevenueExVAT": 735.42, "totalCost": 186.24, "totalQty": 34.0, "orderCount": 33, "margin": 549.18, "marginPct": 74.67569552092681}, {"YearMonth": "2022-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1173.73, "totalRevenueExVAT": 981.17, "totalCost": 342.76, "totalQty": 59.0, "orderCount": 54, "margin": 638.41, "marginPct": 65.06619647971299}, {"YearMonth": "2022-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2409.25, "totalRevenueExVAT": 2007.9, "totalCost": 850.02, "totalQty": 115.0, "orderCount": 107, "margin": 1157.88, "marginPct": 57.666218437173164}, {"YearMonth": "2022-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1399.8700000000001, "totalRevenueExVAT": 1168.76, "totalCost": 457.5, "totalQty": 122.0, "orderCount": 114, "margin": 711.26, "marginPct": 60.855949895615865}, {"YearMonth": "2022-09", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 586.6, "totalRevenueExVAT": 488.88, "totalCost": 227.92000000000002, "totalQty": 28.0, "orderCount": 23, "margin": 260.96, "marginPct": 53.379152348224515}, {"YearMonth": "2022-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 852.75, "totalRevenueExVAT": 710.55, "totalCost": 425.40000000000003, "totalQty": 45.0, "orderCount": 43, "margin": 285.1499999999999, "marginPct": 40.13088452607134}, {"YearMonth": "2022-09", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1663.98, "totalRevenueExVAT": 1387.17, "totalCost": 481.64, "totalQty": 108.0, "orderCount": 88, "margin": 905.5300000000001, "marginPct": 65.27894922756403}, {"YearMonth": "2022-09", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 869.9, "totalRevenueExVAT": 724.97, "totalCost": 345.72, "totalQty": 32.0, "orderCount": 31, "margin": 379.25, "marginPct": 52.312509483151025}, {"YearMonth": "2022-09", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 918.85, "totalRevenueExVAT": 765.67, "totalCost": 668.84, "totalQty": 23.0, "orderCount": 16, "margin": 96.82999999999993, "marginPct": 12.646440372484221}, {"YearMonth": "2022-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1215.94, "totalRevenueExVAT": 1016.0600000000001, "totalCost": 483.68, "totalQty": 61.0, "orderCount": 58, "margin": 532.3800000000001, "marginPct": 52.39651201700688}, {"YearMonth": "2022-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 708.16, "totalRevenueExVAT": 591.5200000000001, "totalCost": 250.48, "totalQty": 62.0, "orderCount": 58, "margin": 341.0400000000001, "marginPct": 57.65485528807142}, {"YearMonth": "2022-09", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3034.25, "totalRevenueExVAT": 2528.1, "totalCost": 657.72, "totalQty": 265.0, "orderCount": 202, "margin": 1870.3799999999999, "marginPct": 73.98362406550373}, {"YearMonth": "2022-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10732.789999999999, "totalRevenueExVAT": 8966.65, "totalCost": 4415.95, "totalQty": 385.0, "orderCount": 333, "margin": 4550.7, "marginPct": 50.75139544869043}, {"YearMonth": "2022-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3513.25, "totalRevenueExVAT": 2928.1000000000004, "totalCost": 1452.3, "totalQty": 235.0, "orderCount": 222, "margin": 1475.8000000000004, "marginPct": 50.40128410914928}, {"YearMonth": "2022-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1962.85, "totalRevenueExVAT": 1635.9299999999998, "totalCost": 674.24, "totalQty": 83.0, "orderCount": 72, "margin": 961.6899999999998, "marginPct": 58.78552260793555}, {"YearMonth": "2022-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 603.35, "totalRevenueExVAT": 502.78, "totalCost": 178.01999999999998, "totalQty": 43.0, "orderCount": 35, "margin": 324.76, "marginPct": 64.59286367795059}, {"YearMonth": "2022-09", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1366.1000000000001, "totalRevenueExVAT": 1138.48, "totalCost": 365.82, "totalQty": 38.0, "orderCount": 33, "margin": 772.6600000000001, "marginPct": 67.86768322675849}, {"YearMonth": "2022-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1421.6799999999998, "totalRevenueExVAT": 1186.9, "totalCost": 396.5, "totalQty": 130.0, "orderCount": 120, "margin": 790.4000000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2022-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1068.45, "totalRevenueExVAT": 890.46, "totalCost": 311.09999999999997, "totalQty": 51.0, "orderCount": 48, "margin": 579.3600000000001, "marginPct": 65.06300114547538}, {"YearMonth": "2022-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1112.8999999999999, "totalRevenueExVAT": 927.5200000000001, "totalCost": 380.86, "totalQty": 62.0, "orderCount": 54, "margin": 546.6600000000001, "marginPct": 58.93781266172158}, {"YearMonth": "2022-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 726.3499999999999, "totalRevenueExVAT": 605.17, "totalCost": 229.22, "totalQty": 73.0, "orderCount": 72, "margin": 375.94999999999993, "marginPct": 62.123039806996374}, {"YearMonth": "2022-10", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 596.85, "totalRevenueExVAT": 497.48999999999995, "totalCost": 231.42, "totalQty": 23.0, "orderCount": 22, "margin": 266.06999999999994, "marginPct": 53.48248205994089}, {"YearMonth": "2022-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 418.5, "totalRevenueExVAT": 348.90000000000003, "totalCost": 150.51, "totalQty": 30.0, "orderCount": 29, "margin": 198.39000000000004, "marginPct": 56.86156491831471}, {"YearMonth": "2022-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1397.5, "totalRevenueExVAT": 1164.5, "totalCost": 412.0, "totalQty": 50.0, "orderCount": 43, "margin": 752.5, "marginPct": 64.62000858737656}, {"YearMonth": "2022-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1106.3, "totalRevenueExVAT": 922.0400000000001, "totalCost": 304.88, "totalQty": 74.0, "orderCount": 68, "margin": 617.1600000000001, "marginPct": 66.93418940609952}, {"YearMonth": "2022-10", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1653.7, "totalRevenueExVAT": 1378.16, "totalCost": 688.56, "totalQty": 46.0, "orderCount": 43, "margin": 689.6000000000001, "marginPct": 50.037731468044356}, {"YearMonth": "2022-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 965.15, "totalRevenueExVAT": 804.1299999999999, "totalCost": 442.31999999999994, "totalQty": 97.0, "orderCount": 82, "margin": 361.80999999999995, "marginPct": 44.993968636911944}, {"YearMonth": "2022-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1765.95, "totalRevenueExVAT": 1471.9299999999998, "totalCost": 742.54, "totalQty": 61.0, "orderCount": 52, "margin": 729.3899999999999, "marginPct": 49.553307562180265}, {"YearMonth": "2022-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1127.85, "totalRevenueExVAT": 940.24, "totalCost": 450.40999999999997, "totalQty": 74.0, "orderCount": 74, "margin": 489.83000000000004, "marginPct": 52.09627329192546}, {"YearMonth": "2022-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1961.85, "totalRevenueExVAT": 1634.6699999999998, "totalCost": 672.08, "totalQty": 124.0, "orderCount": 102, "margin": 962.5899999999998, "marginPct": 58.88589134198339}, {"YearMonth": "2022-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1328.3, "totalRevenueExVAT": 1107.04, "totalCost": 356.68, "totalQty": 74.0, "orderCount": 61, "margin": 750.3599999999999, "marginPct": 67.7807486631016}, {"YearMonth": "2022-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 571.2, "totalRevenueExVAT": 476.16, "totalCost": 120.0, "totalQty": 96.0, "orderCount": 83, "margin": 356.16, "marginPct": 74.7983870967742}, {"YearMonth": "2022-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 818.22, "totalRevenueExVAT": 681.72, "totalCost": 195.0, "totalQty": 78.0, "orderCount": 65, "margin": 486.72, "marginPct": 71.395881006865}, {"YearMonth": "2022-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1037.3999999999999, "totalRevenueExVAT": 864.76, "totalCost": 319.6, "totalQty": 52.0, "orderCount": 47, "margin": 545.16, "marginPct": 63.041768814468746}, {"YearMonth": "2022-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2460.15, "totalRevenueExVAT": 2050.5099999999998, "totalCost": 1179.6599999999999, "totalQty": 78.0, "orderCount": 50, "margin": 870.8499999999999, "marginPct": 42.469922116936765}, {"YearMonth": "2022-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1085.7, "totalRevenueExVAT": 904.86, "totalCost": 372.23999999999995, "totalQty": 66.0, "orderCount": 62, "margin": 532.6200000000001, "marginPct": 58.8621444201313}, {"YearMonth": "2022-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1396.1999999999998, "totalRevenueExVAT": 1163.76, "totalCost": 439.91999999999996, "totalQty": 156.0, "orderCount": 142, "margin": 723.84, "marginPct": 62.198391420911534}, {"YearMonth": "2022-10", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1137.1499999999999, "totalRevenueExVAT": 947.91, "totalCost": 400.14, "totalQty": 57.0, "orderCount": 49, "margin": 547.77, "marginPct": 57.78713168971738}, {"YearMonth": "2022-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1100.55, "totalRevenueExVAT": 917.01, "totalCost": 196.65, "totalQty": 69.0, "orderCount": 64, "margin": 720.36, "marginPct": 78.55530474040631}, {"YearMonth": "2022-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 752.55, "totalRevenueExVAT": 627.27, "totalCost": 165.3, "totalQty": 29.0, "orderCount": 27, "margin": 461.96999999999997, "marginPct": 73.64771151178918}, {"YearMonth": "2022-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1057.35, "totalRevenueExVAT": 881.39, "totalCost": 303.15999999999997, "totalQty": 53.0, "orderCount": 49, "margin": 578.23, "marginPct": 65.6043295249549}, {"YearMonth": "2022-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2241.65, "totalRevenueExVAT": 1868.22, "totalCost": 829.38, "totalQty": 109.0, "orderCount": 98, "margin": 1038.8400000000001, "marginPct": 55.60587082891737}, {"YearMonth": "2022-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1390.29, "totalRevenueExVAT": 1159.18, "totalCost": 467.73, "totalQty": 122.0, "orderCount": 116, "margin": 691.45, "marginPct": 59.649924946945255}, {"YearMonth": "2022-10", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 2074.0499999999997, "totalRevenueExVAT": 1728.5400000000002, "totalCost": 702.28, "totalQty": 99.0, "orderCount": 90, "margin": 1026.2600000000002, "marginPct": 59.371492704826046}, {"YearMonth": "2022-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 568.5, "totalRevenueExVAT": 473.7, "totalCost": 289.20000000000005, "totalQty": 30.0, "orderCount": 27, "margin": 184.49999999999994, "marginPct": 38.94870170994299}, {"YearMonth": "2022-10", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 2225.6, "totalRevenueExVAT": 1854.3999999999999, "totalCost": 759.92, "totalQty": 161.0, "orderCount": 131, "margin": 1094.48, "marginPct": 59.020707506471105}, {"YearMonth": "2022-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1138.0, "totalRevenueExVAT": 948.4, "totalCost": 445.6, "totalQty": 40.0, "orderCount": 35, "margin": 502.79999999999995, "marginPct": 53.01560522986082}, {"YearMonth": "2022-10", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 279.65000000000003, "totalRevenueExVAT": 233.03, "totalCost": 207.76, "totalQty": 7.0, "orderCount": 7, "margin": 25.27000000000001, "marginPct": 10.844097326524487}, {"YearMonth": "2022-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1282.14, "totalRevenueExVAT": 1068.28, "totalCost": 557.52, "totalQty": 69.0, "orderCount": 62, "margin": 510.76, "marginPct": 47.81143520425356}, {"YearMonth": "2022-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 989.45, "totalRevenueExVAT": 824.32, "totalCost": 371.68, "totalQty": 92.0, "orderCount": 85, "margin": 452.64000000000004, "marginPct": 54.91071428571429}, {"YearMonth": "2022-10", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2186.95, "totalRevenueExVAT": 1822.1399999999999, "totalCost": 483.84000000000003, "totalQty": 192.0, "orderCount": 161, "margin": 1338.2999999999997, "marginPct": 73.44660673713325}, {"YearMonth": "2022-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8830.8, "totalRevenueExVAT": 7358.48, "totalCost": 3667.0800000000004, "totalQty": 316.0, "orderCount": 280, "margin": 3691.399999999999, "marginPct": 50.165251519335506}, {"YearMonth": "2022-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3244.1499999999996, "totalRevenueExVAT": 2703.82, "totalCost": 1372.76, "totalQty": 218.0, "orderCount": 212, "margin": 1331.0600000000002, "marginPct": 49.22886878564402}, {"YearMonth": "2022-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 566.64, "totalRevenueExVAT": 472.32, "totalCost": 175.68, "totalQty": 36.0, "orderCount": 26, "margin": 296.64, "marginPct": 62.80487804878049}, {"YearMonth": "2022-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1322.35, "totalRevenueExVAT": 1101.87, "totalCost": 438.84, "totalQty": 53.0, "orderCount": 45, "margin": 663.03, "marginPct": 60.17316017316018}, {"YearMonth": "2022-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 621.35, "totalRevenueExVAT": 517.7199999999999, "totalCost": 178.01999999999998, "totalQty": 43.0, "orderCount": 42, "margin": 339.69999999999993, "marginPct": 65.61461794019934}, {"YearMonth": "2022-10", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1099.9, "totalRevenueExVAT": 916.64, "totalCost": 352.59999999999997, "totalQty": 35.0, "orderCount": 28, "margin": 564.04, "marginPct": 61.5334264269506}, {"YearMonth": "2022-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1653.4499999999998, "totalRevenueExVAT": 1378.63, "totalCost": 463.59999999999997, "totalQty": 152.0, "orderCount": 141, "margin": 915.0300000000002, "marginPct": 66.37241319280737}, {"YearMonth": "2022-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 984.65, "totalRevenueExVAT": 820.62, "totalCost": 292.79999999999995, "totalQty": 48.0, "orderCount": 47, "margin": 527.82, "marginPct": 64.31966074431527}, {"YearMonth": "2022-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 682.1, "totalRevenueExVAT": 568.48, "totalCost": 238.64000000000001, "totalQty": 38.0, "orderCount": 36, "margin": 329.84000000000003, "marginPct": 58.02139037433155}, {"YearMonth": "2022-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 676.5999999999999, "totalRevenueExVAT": 563.7199999999999, "totalCost": 213.52, "totalQty": 68.0, "orderCount": 60, "margin": 350.19999999999993, "marginPct": 62.12303980699638}, {"YearMonth": "2022-11", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 155.7, "totalRevenueExVAT": 129.78, "totalCost": 62.64, "totalQty": 6.0, "orderCount": 6, "margin": 67.14, "marginPct": 51.73370319001387}, {"YearMonth": "2022-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 83.69999999999999, "totalRevenueExVAT": 69.78, "totalCost": 31.32, "totalQty": 6.0, "orderCount": 6, "margin": 38.46, "marginPct": 55.11607910576096}, {"YearMonth": "2022-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1872.6499999999999, "totalRevenueExVAT": 1560.4299999999998, "totalCost": 552.08, "totalQty": 67.0, "orderCount": 57, "margin": 1008.3499999999998, "marginPct": 64.62000858737656}, {"YearMonth": "2022-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1315.6, "totalRevenueExVAT": 1096.48, "totalCost": 362.56, "totalQty": 88.0, "orderCount": 87, "margin": 733.9200000000001, "marginPct": 66.93418940609952}, {"YearMonth": "2022-11", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2582.4100000000003, "totalRevenueExVAT": 2157.12, "totalCost": 1157.7599999999998, "totalQty": 72.0, "orderCount": 67, "margin": 999.3600000000001, "marginPct": 46.32843791722297}, {"YearMonth": "2022-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1333.3, "totalRevenueExVAT": 1110.86, "totalCost": 611.04, "totalQty": 134.0, "orderCount": 110, "margin": 499.81999999999994, "marginPct": 44.993968636911944}, {"YearMonth": "2022-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2895.0, "totalRevenueExVAT": 2413.0, "totalCost": 1376.0, "totalQty": 100.0, "orderCount": 80, "margin": 1037.0, "marginPct": 42.97554910899296}, {"YearMonth": "2022-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1266.8999999999999, "totalRevenueExVAT": 1056.16, "totalCost": 571.04, "totalQty": 83.0, "orderCount": 75, "margin": 485.1200000000001, "marginPct": 45.932434479624305}, {"YearMonth": "2022-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2487.4, "totalRevenueExVAT": 2072.58, "totalCost": 850.9399999999999, "totalQty": 157.0, "orderCount": 131, "margin": 1221.6399999999999, "marginPct": 58.942959982244346}, {"YearMonth": "2022-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1930.8999999999999, "totalRevenueExVAT": 1609.2800000000002, "totalCost": 568.76, "totalQty": 118.0, "orderCount": 94, "margin": 1040.5200000000002, "marginPct": 64.65748657784849}, {"YearMonth": "2022-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1356.6000000000001, "totalRevenueExVAT": 1130.8799999999999, "totalCost": 285.0, "totalQty": 228.0, "orderCount": 190, "margin": 845.8799999999999, "marginPct": 74.79838709677419}, {"YearMonth": "2022-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 2096.25, "totalRevenueExVAT": 1748.0, "totalCost": 502.5, "totalQty": 201.0, "orderCount": 170, "margin": 1245.5, "marginPct": 71.2528604118993}, {"YearMonth": "2022-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1037.3999999999999, "totalRevenueExVAT": 864.76, "totalCost": 355.68, "totalQty": 52.0, "orderCount": 47, "margin": 509.08, "marginPct": 58.86951292844257}, {"YearMonth": "2022-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3892.58, "totalRevenueExVAT": 3248.8599999999997, "totalCost": 1992.2599999999998, "totalQty": 122.0, "orderCount": 81, "margin": 1256.6, "marginPct": 38.67818250093879}, {"YearMonth": "2022-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1529.85, "totalRevenueExVAT": 1275.03, "totalCost": 524.52, "totalQty": 93.0, "orderCount": 78, "margin": 750.51, "marginPct": 58.86214442013129}, {"YearMonth": "2022-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1396.1999999999998, "totalRevenueExVAT": 1163.76, "totalCost": 439.91999999999996, "totalQty": 156.0, "orderCount": 143, "margin": 723.84, "marginPct": 62.198391420911534}, {"YearMonth": "2022-11", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1393.1799999999998, "totalRevenueExVAT": 1164.1, "totalCost": 498.41999999999996, "totalQty": 71.0, "orderCount": 64, "margin": 665.68, "marginPct": 57.18409071385619}, {"YearMonth": "2022-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1164.35, "totalRevenueExVAT": 970.17, "totalCost": 208.05, "totalQty": 73.0, "orderCount": 63, "margin": 762.1199999999999, "marginPct": 78.55530474040631}, {"YearMonth": "2022-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1012.05, "totalRevenueExVAT": 843.5699999999999, "totalCost": 222.3, "totalQty": 39.0, "orderCount": 36, "margin": 621.27, "marginPct": 73.64771151178918}, {"YearMonth": "2022-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1476.3, "totalRevenueExVAT": 1230.62, "totalCost": 429.0, "totalQty": 75.0, "orderCount": 59, "margin": 801.6199999999999, "marginPct": 65.13952316718402}, {"YearMonth": "2022-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3331.0499999999997, "totalRevenueExVAT": 2776.1400000000003, "totalCost": 1297.44, "totalQty": 159.0, "orderCount": 135, "margin": 1478.7000000000003, "marginPct": 53.264604810996566}, {"YearMonth": "2022-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1825.0, "totalRevenueExVAT": 1523.22, "totalCost": 648.72, "totalQty": 159.0, "orderCount": 147, "margin": 874.5, "marginPct": 57.41127348643006}, {"YearMonth": "2022-11", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1424.6, "totalRevenueExVAT": 1187.28, "totalCost": 616.08, "totalQty": 68.0, "orderCount": 61, "margin": 571.1999999999999, "marginPct": 48.109965635738824}, {"YearMonth": "2022-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 852.75, "totalRevenueExVAT": 710.55, "totalCost": 433.8, "totalQty": 45.0, "orderCount": 39, "margin": 276.74999999999994, "marginPct": 38.948701709942995}, {"YearMonth": "2022-11", "Description": "Omega-3 High EPA/DHA 1000mg", "SKUDescription": "120 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1585.34, "totalRevenueExVAT": 1321.42, "totalCost": 500.32, "totalQty": 106.0, "orderCount": 81, "margin": 821.1000000000001, "marginPct": 62.13770035265094}, {"YearMonth": "2022-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1280.25, "totalRevenueExVAT": 1066.95, "totalCost": 520.2, "totalQty": 45.0, "orderCount": 38, "margin": 546.75, "marginPct": 51.24420075917334}, {"YearMonth": "2022-11", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 74.85, "totalRevenueExVAT": 62.37, "totalCost": 99.47999999999999, "totalQty": 3.0, "orderCount": 1, "margin": -37.10999999999999, "marginPct": -59.499759499759485}, {"YearMonth": "2022-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1265.3, "totalRevenueExVAT": 1054.52, "totalCost": 517.12, "totalQty": 64.0, "orderCount": 60, "margin": 537.4, "marginPct": 50.96157493456739}, {"YearMonth": "2022-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1113.06, "totalRevenueExVAT": 929.2, "totalCost": 383.8, "totalQty": 95.0, "orderCount": 84, "margin": 545.4000000000001, "marginPct": 58.69565217391305}, {"YearMonth": "2022-11", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4051.39, "totalRevenueExVAT": 3377.16, "totalCost": 894.6, "totalQty": 355.0, "orderCount": 265, "margin": 2482.56, "marginPct": 73.51028674981346}, {"YearMonth": "2022-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 13408.83, "totalRevenueExVAT": 11181.57, "totalCost": 5908.53, "totalQty": 477.0, "orderCount": 403, "margin": 5273.04, "marginPct": 47.15831497723486}, {"YearMonth": "2022-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3842.1499999999996, "totalRevenueExVAT": 3202.2200000000003, "totalCost": 1737.32, "totalQty": 257.0, "orderCount": 239, "margin": 1464.9000000000003, "marginPct": 45.74638844301766}, {"YearMonth": "2022-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 912.92, "totalRevenueExVAT": 760.9599999999999, "totalCost": 283.04, "totalQty": 58.0, "orderCount": 50, "margin": 477.9199999999999, "marginPct": 62.80487804878048}, {"YearMonth": "2022-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2045.8999999999999, "totalRevenueExVAT": 1704.78, "totalCost": 678.9599999999999, "totalQty": 82.0, "orderCount": 68, "margin": 1025.8200000000002, "marginPct": 60.17316017316018}, {"YearMonth": "2022-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 549.1, "totalRevenueExVAT": 457.52, "totalCost": 157.32, "totalQty": 38.0, "orderCount": 33, "margin": 300.2, "marginPct": 65.61461794019934}, {"YearMonth": "2022-11", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2135.1, "totalRevenueExVAT": 1779.3600000000001, "totalCost": 718.08, "totalQty": 66.0, "orderCount": 59, "margin": 1061.2800000000002, "marginPct": 59.64391691394659}, {"YearMonth": "2022-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1757.4899999999998, "totalRevenueExVAT": 1469.93, "totalCost": 491.04999999999995, "totalQty": 161.0, "orderCount": 156, "margin": 978.8800000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2022-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1026.55, "totalRevenueExVAT": 855.5400000000001, "totalCost": 298.9, "totalQty": 49.0, "orderCount": 47, "margin": 556.6400000000001, "marginPct": 65.06300114547537}, {"YearMonth": "2022-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1525.75, "totalRevenueExVAT": 1271.6000000000001, "totalCost": 533.8000000000001, "totalQty": 85.0, "orderCount": 75, "margin": 737.8000000000001, "marginPct": 58.02139037433155}, {"YearMonth": "2022-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 815.9, "totalRevenueExVAT": 679.78, "totalCost": 257.48, "totalQty": 82.0, "orderCount": 79, "margin": 422.29999999999995, "marginPct": 62.123039806996374}, {"YearMonth": "2022-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1364.07, "totalRevenueExVAT": 1136.53, "totalCost": 420.24, "totalQty": 51.0, "orderCount": 46, "margin": 716.29, "marginPct": 63.02429324346915}, {"YearMonth": "2022-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1061.35, "totalRevenueExVAT": 884.58, "totalCost": 300.76, "totalQty": 73.0, "orderCount": 70, "margin": 583.82, "marginPct": 65.9996834655995}, {"YearMonth": "2022-12", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1265.4, "totalRevenueExVAT": 1054.56, "totalCost": 578.8799999999999, "totalQty": 36.0, "orderCount": 31, "margin": 475.68000000000006, "marginPct": 45.106964041875294}, {"YearMonth": "2022-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 915.55, "totalRevenueExVAT": 762.65, "totalCost": 437.75999999999993, "totalQty": 96.0, "orderCount": 80, "margin": 324.89000000000004, "marginPct": 42.600144233921206}, {"YearMonth": "2022-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1262.29, "totalRevenueExVAT": 1051.97, "totalCost": 619.2, "totalQty": 45.0, "orderCount": 44, "margin": 432.77, "marginPct": 41.13900586518627}, {"YearMonth": "2022-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 948.7099999999999, "totalRevenueExVAT": 790.8000000000001, "totalCost": 440.32, "totalQty": 64.0, "orderCount": 55, "margin": 350.4800000000001, "marginPct": 44.31967627718766}, {"YearMonth": "2022-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1157.4599999999998, "totalRevenueExVAT": 964.6200000000001, "totalCost": 347.04, "totalQty": 72.0, "orderCount": 62, "margin": 617.5800000000002, "marginPct": 64.02313864526965}, {"YearMonth": "2022-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 954.2, "totalRevenueExVAT": 795.4399999999999, "totalCost": 206.25, "totalQty": 165.0, "orderCount": 147, "margin": 589.1899999999999, "marginPct": 74.07095444030976}, {"YearMonth": "2022-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1206.66, "totalRevenueExVAT": 1011.35, "totalCost": 297.5, "totalQty": 119.0, "orderCount": 102, "margin": 713.85, "marginPct": 70.58387304098483}, {"YearMonth": "2022-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 624.47, "totalRevenueExVAT": 520.47, "totalCost": 218.88, "totalQty": 32.0, "orderCount": 28, "margin": 301.59000000000003, "marginPct": 57.94570292235864}, {"YearMonth": "2022-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2147.13, "totalRevenueExVAT": 1789.4099999999999, "totalCost": 1126.77, "totalQty": 69.0, "orderCount": 51, "margin": 662.6399999999999, "marginPct": 37.03120022800811}, {"YearMonth": "2022-12", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 838.85, "totalRevenueExVAT": 699.23, "totalCost": 298.91999999999996, "totalQty": 53.0, "orderCount": 46, "margin": 400.31000000000006, "marginPct": 57.25011798692849}, {"YearMonth": "2022-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1014.75, "totalRevenueExVAT": 845.8199999999999, "totalCost": 329.94, "totalQty": 117.0, "orderCount": 109, "margin": 515.8799999999999, "marginPct": 60.99170036177909}, {"YearMonth": "2022-12", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 768.15, "totalRevenueExVAT": 640.15, "totalCost": 280.79999999999995, "totalQty": 40.0, "orderCount": 36, "margin": 359.35, "marginPct": 56.135280793564014}, {"YearMonth": "2022-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 690.67, "totalRevenueExVAT": 575.4499999999999, "totalCost": 125.4, "totalQty": 44.0, "orderCount": 41, "margin": 450.04999999999995, "marginPct": 78.20835867581893}, {"YearMonth": "2022-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 576.13, "totalRevenueExVAT": 480.13, "totalCost": 131.1, "totalQty": 23.0, "orderCount": 23, "margin": 349.03, "marginPct": 72.69489513256826}, {"YearMonth": "2022-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 913.14, "totalRevenueExVAT": 766.52, "totalCost": 274.56, "totalQty": 48.0, "orderCount": 41, "margin": 491.96, "marginPct": 64.18097375150028}, {"YearMonth": "2022-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2251.9, "totalRevenueExVAT": 1876.77, "totalCost": 913.92, "totalQty": 112.0, "orderCount": 100, "margin": 962.85, "marginPct": 51.30356943045765}, {"YearMonth": "2022-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1509.75, "totalRevenueExVAT": 1258.74, "totalCost": 554.88, "totalQty": 136.0, "orderCount": 122, "margin": 703.86, "marginPct": 55.91782258448925}, {"YearMonth": "2022-12", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1068.35, "totalRevenueExVAT": 890.38, "totalCost": 480.18, "totalQty": 53.0, "orderCount": 50, "margin": 410.2, "marginPct": 46.07021721062917}, {"YearMonth": "2022-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 411.22999999999996, "totalRevenueExVAT": 342.64, "totalCost": 212.08, "totalQty": 22.0, "orderCount": 21, "margin": 130.55999999999997, "marginPct": 38.1041326173243}, {"YearMonth": "2022-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1029.85, "totalRevenueExVAT": 858.3100000000001, "totalCost": 427.72, "totalQty": 37.0, "orderCount": 35, "margin": 430.59000000000003, "marginPct": 50.16718901096341}, {"YearMonth": "2022-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1079.0, "totalRevenueExVAT": 899.13, "totalCost": 428.24, "totalQty": 53.0, "orderCount": 47, "margin": 470.89, "marginPct": 52.37173712366398}, {"YearMonth": "2022-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 485.23999999999995, "totalRevenueExVAT": 404.32000000000005, "totalCost": 173.72, "totalQty": 43.0, "orderCount": 38, "margin": 230.60000000000005, "marginPct": 57.034032449544924}, {"YearMonth": "2022-12", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2975.17, "totalRevenueExVAT": 2478.8599999999997, "totalCost": 677.88, "totalQty": 269.0, "orderCount": 215, "margin": 1800.9799999999996, "marginPct": 72.65355849059647}, {"YearMonth": "2022-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 15724.49, "totalRevenueExVAT": 13102.56, "totalCost": 7584.9, "totalQty": 579.0, "orderCount": 464, "margin": 5517.66, "marginPct": 42.11131259845404}, {"YearMonth": "2022-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3958.25, "totalRevenueExVAT": 3299.0000000000005, "totalCost": 1859.0, "totalQty": 275.0, "orderCount": 253, "margin": 1440.0000000000005, "marginPct": 43.649590785086396}, {"YearMonth": "2022-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 409.24, "totalRevenueExVAT": 341.12, "totalCost": 126.88, "totalQty": 26.0, "orderCount": 19, "margin": 214.24, "marginPct": 62.80487804878049}, {"YearMonth": "2022-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1025.49, "totalRevenueExVAT": 854.46, "totalCost": 347.76, "totalQty": 42.0, "orderCount": 40, "margin": 506.70000000000005, "marginPct": 59.30061091215505}, {"YearMonth": "2022-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 579.49, "totalRevenueExVAT": 482.84, "totalCost": 169.73999999999998, "totalQty": 41.0, "orderCount": 38, "margin": 313.1, "marginPct": 64.84549747328309}, {"YearMonth": "2022-12", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1195.23, "totalRevenueExVAT": 996.02, "totalCost": 402.56, "totalQty": 37.0, "orderCount": 31, "margin": 593.46, "marginPct": 59.583140900785125}, {"YearMonth": "2022-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1707.31, "totalRevenueExVAT": 1423.0800000000002, "totalCost": 491.04999999999995, "totalQty": 161.0, "orderCount": 152, "margin": 932.0300000000002, "marginPct": 65.49385839165754}, {"YearMonth": "2022-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 674.55, "totalRevenueExVAT": 562.1800000000001, "totalCost": 201.29999999999998, "totalQty": 33.0, "orderCount": 33, "margin": 360.8800000000001, "marginPct": 64.19296310790139}, {"YearMonth": "2022-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 936.9, "totalRevenueExVAT": 780.84, "totalCost": 339.12, "totalQty": 54.0, "orderCount": 48, "margin": 441.72, "marginPct": 56.56984785615491}, {"YearMonth": "2022-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 777.1899999999999, "totalRevenueExVAT": 647.43, "totalCost": 254.34, "totalQty": 81.0, "orderCount": 75, "margin": 393.0899999999999, "marginPct": 60.715444140679296}, {"YearMonth": "2023-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1962.48, "totalRevenueExVAT": 1634.88, "totalCost": 642.72, "totalQty": 78.0, "orderCount": 67, "margin": 992.1600000000001, "marginPct": 60.68702290076335}, {"YearMonth": "2023-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 2152.0, "totalRevenueExVAT": 1793.6000000000001, "totalCost": 659.2, "totalQty": 160.0, "orderCount": 150, "margin": 1134.4, "marginPct": 63.2471008028546}, {"YearMonth": "2023-01", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3062.6000000000004, "totalRevenueExVAT": 2552.32, "totalCost": 1479.36, "totalQty": 92.0, "orderCount": 79, "margin": 1072.9600000000003, "marginPct": 42.03861584754264}, {"YearMonth": "2023-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1989.1200000000001, "totalRevenueExVAT": 1656.12, "totalCost": 1012.3199999999999, "totalQty": 222.0, "orderCount": 173, "margin": 643.8, "marginPct": 38.8739946380697}, {"YearMonth": "2023-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2866.6, "totalRevenueExVAT": 2388.1, "totalCost": 1513.6, "totalQty": 110.0, "orderCount": 88, "margin": 874.5, "marginPct": 36.619069553201285}, {"YearMonth": "2023-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1569.51, "totalRevenueExVAT": 1309.67, "totalCost": 777.4399999999999, "totalQty": 113.0, "orderCount": 98, "margin": 532.2300000000001, "marginPct": 40.63848144952546}, {"YearMonth": "2023-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3300.3999999999996, "totalRevenueExVAT": 2750.8, "totalCost": 1246.6, "totalQty": 230.0, "orderCount": 167, "margin": 1504.2000000000003, "marginPct": 54.68227424749165}, {"YearMonth": "2023-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1922.76, "totalRevenueExVAT": 1601.46, "totalCost": 612.14, "totalQty": 127.0, "orderCount": 96, "margin": 989.32, "marginPct": 61.77612928203015}, {"YearMonth": "2023-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1498.0, "totalRevenueExVAT": 1248.8, "totalCost": 350.0, "totalQty": 280.0, "orderCount": 249, "margin": 898.8, "marginPct": 71.97309417040358}, {"YearMonth": "2023-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 2094.1099999999997, "totalRevenueExVAT": 1747.14, "totalCost": 555.0, "totalQty": 222.0, "orderCount": 192, "margin": 1192.14, "marginPct": 68.23379923761118}, {"YearMonth": "2023-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1544.5600000000002, "totalRevenueExVAT": 1286.5600000000002, "totalCost": 588.24, "totalQty": 86.0, "orderCount": 70, "margin": 698.3200000000002, "marginPct": 54.27807486631016}, {"YearMonth": "2023-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 5139.76, "totalRevenueExVAT": 4285.96, "totalCost": 2890.41, "totalQty": 177.0, "orderCount": 107, "margin": 1395.5500000000002, "marginPct": 32.56096650458707}, {"YearMonth": "2023-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2418.31, "totalRevenueExVAT": 2015.92, "totalCost": 947.52, "totalQty": 168.0, "orderCount": 152, "margin": 1068.4, "marginPct": 52.9981348466209}, {"YearMonth": "2023-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1581.5300000000002, "totalRevenueExVAT": 1318.0, "totalCost": 569.64, "totalQty": 202.0, "orderCount": 186, "margin": 748.36, "marginPct": 56.77996965098634}, {"YearMonth": "2023-01", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1526.6000000000001, "totalRevenueExVAT": 1271.6000000000001, "totalCost": 596.6999999999999, "totalQty": 85.0, "orderCount": 75, "margin": 674.9000000000002, "marginPct": 53.07486631016044}, {"YearMonth": "2023-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1350.56, "totalRevenueExVAT": 1125.0600000000002, "totalCost": 276.45, "totalQty": 97.0, "orderCount": 91, "margin": 848.6100000000001, "marginPct": 75.42797717455069}, {"YearMonth": "2023-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1531.32, "totalRevenueExVAT": 1275.74, "totalCost": 381.90000000000003, "totalQty": 67.0, "orderCount": 57, "margin": 893.8399999999999, "marginPct": 70.06443319171616}, {"YearMonth": "2023-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 2221.76, "totalRevenueExVAT": 1851.03, "totalCost": 749.3199999999999, "totalQty": 131.0, "orderCount": 93, "margin": 1101.71, "marginPct": 59.518754423213025}, {"YearMonth": "2023-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 4731.35, "totalRevenueExVAT": 3943.21, "totalCost": 2048.16, "totalQty": 251.0, "orderCount": 207, "margin": 1895.0500000000002, "marginPct": 48.058561425843415}, {"YearMonth": "2023-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2376.48, "totalRevenueExVAT": 1982.6, "totalCost": 938.4, "totalQty": 230.0, "orderCount": 201, "margin": 1044.1999999999998, "marginPct": 52.66821345707656}, {"YearMonth": "2023-01", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 3449.55, "totalRevenueExVAT": 2874.9300000000003, "totalCost": 1657.98, "totalQty": 183.0, "orderCount": 167, "margin": 1216.9500000000003, "marginPct": 42.329726288987914}, {"YearMonth": "2023-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 759.72, "totalRevenueExVAT": 632.82, "totalCost": 417.04, "totalQty": 42.0, "orderCount": 39, "margin": 215.78000000000003, "marginPct": 34.09816377484909}, {"YearMonth": "2023-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 2124.8, "totalRevenueExVAT": 1771.22, "totalCost": 971.0400000000001, "totalQty": 84.0, "orderCount": 76, "margin": 800.18, "marginPct": 45.1767708133377}, {"YearMonth": "2023-01", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 44.92, "totalRevenueExVAT": 37.42, "totalCost": 66.32, "totalQty": 2.0, "orderCount": 1, "margin": -28.89999999999999, "marginPct": -77.23142704436128}, {"YearMonth": "2023-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1925.18, "totalRevenueExVAT": 1604.01, "totalCost": 867.16, "totalQty": 102.0, "orderCount": 88, "margin": 736.85, "marginPct": 45.93799290528114}, {"YearMonth": "2023-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1009.25, "totalRevenueExVAT": 842.2400000000001, "totalCost": 399.76, "totalQty": 94.0, "orderCount": 85, "margin": 442.48000000000013, "marginPct": 52.53609422492402}, {"YearMonth": "2023-01", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 4506.610000000001, "totalRevenueExVAT": 3754.7799999999997, "totalCost": 1101.24, "totalQty": 437.0, "orderCount": 348, "margin": 2653.54, "marginPct": 70.67098471814593}, {"YearMonth": "2023-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12630.4, "totalRevenueExVAT": 10529.35, "totalCost": 6366.599999999999, "totalQty": 486.0, "orderCount": 423, "margin": 4162.750000000001, "marginPct": 39.5347291143328}, {"YearMonth": "2023-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4398.15, "totalRevenueExVAT": 3665.67, "totalCost": 2210.52, "totalQty": 327.0, "orderCount": 291, "margin": 1455.15, "marginPct": 39.696699375557536}, {"YearMonth": "2023-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 755.52, "totalRevenueExVAT": 629.76, "totalCost": 234.24, "totalQty": 48.0, "orderCount": 41, "margin": 395.52, "marginPct": 62.80487804878049}, {"YearMonth": "2023-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2470.6, "totalRevenueExVAT": 2058.1, "totalCost": 910.8, "totalQty": 110.0, "orderCount": 92, "margin": 1147.3, "marginPct": 55.74559059326564}, {"YearMonth": "2023-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 795.05, "totalRevenueExVAT": 662.4399999999999, "totalCost": 252.54, "totalQty": 61.0, "orderCount": 51, "margin": 409.9, "marginPct": 61.8773020952841}, {"YearMonth": "2023-01", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2829.5899999999997, "totalRevenueExVAT": 2357.4, "totalCost": 979.2, "totalQty": 90.0, "orderCount": 79, "margin": 1378.2, "marginPct": 58.46271315856452}, {"YearMonth": "2023-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2583.3199999999997, "totalRevenueExVAT": 2151.0200000000004, "totalCost": 799.0999999999999, "totalQty": 262.0, "orderCount": 244, "margin": 1351.9200000000005, "marginPct": 62.850182704019495}, {"YearMonth": "2023-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1489.15, "totalRevenueExVAT": 1241.0900000000001, "totalCost": 481.9, "totalQty": 79.0, "orderCount": 78, "margin": 759.1900000000002, "marginPct": 61.17122851686825}, {"YearMonth": "2023-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1356.6, "totalRevenueExVAT": 1130.64, "totalCost": 527.52, "totalQty": 84.0, "orderCount": 77, "margin": 603.1200000000001, "marginPct": 53.34323922734028}, {"YearMonth": "2023-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 833.2800000000001, "totalRevenueExVAT": 693.78, "totalCost": 298.3, "totalQty": 95.0, "orderCount": 85, "margin": 395.47999999999996, "marginPct": 57.00366110294329}, {"YearMonth": "2023-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1085.3899999999999, "totalRevenueExVAT": 908.31, "totalCost": 321.36, "totalQty": 39.0, "orderCount": 38, "margin": 586.9499999999999, "marginPct": 64.62000858737656}, {"YearMonth": "2023-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 852.15, "totalRevenueExVAT": 710.22, "totalCost": 234.84, "totalQty": 57.0, "orderCount": 52, "margin": 475.38, "marginPct": 66.93418940609952}, {"YearMonth": "2023-02", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 719.1, "totalRevenueExVAT": 599.22, "totalCost": 289.43999999999994, "totalQty": 18.0, "orderCount": 18, "margin": 309.7800000000001, "marginPct": 51.69720636827877}, {"YearMonth": "2023-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1282.56, "totalRevenueExVAT": 1068.58, "totalCost": 588.2399999999999, "totalQty": 129.0, "orderCount": 99, "margin": 480.34000000000003, "marginPct": 44.95124370660129}, {"YearMonth": "2023-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1505.3999999999999, "totalRevenueExVAT": 1254.76, "totalCost": 715.52, "totalQty": 52.0, "orderCount": 47, "margin": 539.24, "marginPct": 42.97554910899296}, {"YearMonth": "2023-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 801.86, "totalRevenueExVAT": 668.47, "totalCost": 357.76, "totalQty": 52.0, "orderCount": 48, "margin": 310.71000000000004, "marginPct": 46.48076951845259}, {"YearMonth": "2023-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2328.7, "totalRevenueExVAT": 1940.34, "totalCost": 791.3199999999999, "totalQty": 146.0, "orderCount": 114, "margin": 1149.02, "marginPct": 59.21745673438675}, {"YearMonth": "2023-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 999.5199999999999, "totalRevenueExVAT": 833.0200000000001, "totalCost": 298.84000000000003, "totalQty": 62.0, "orderCount": 56, "margin": 534.1800000000001, "marginPct": 64.12571126743656}, {"YearMonth": "2023-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 974.0, "totalRevenueExVAT": 811.9399999999999, "totalCost": 205.0, "totalQty": 164.0, "orderCount": 133, "margin": 606.9399999999999, "marginPct": 74.75182895287828}, {"YearMonth": "2023-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1089.91, "totalRevenueExVAT": 908.09, "totalCost": 260.0, "totalQty": 104.0, "orderCount": 86, "margin": 648.09, "marginPct": 71.36847669283881}, {"YearMonth": "2023-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 598.5, "totalRevenueExVAT": 498.9, "totalCost": 205.2, "totalQty": 30.0, "orderCount": 28, "margin": 293.7, "marginPct": 58.86951292844257}, {"YearMonth": "2023-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1759.7400000000002, "totalRevenueExVAT": 1471.08, "totalCost": 898.1499999999999, "totalQty": 55.0, "orderCount": 45, "margin": 572.9300000000001, "marginPct": 38.94621638524078}, {"YearMonth": "2023-02", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1310.79, "totalRevenueExVAT": 1094.74, "totalCost": 451.2, "totalQty": 80.0, "orderCount": 68, "margin": 643.54, "marginPct": 58.784734274804975}, {"YearMonth": "2023-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 908.8799999999999, "totalRevenueExVAT": 757.56, "totalCost": 287.64, "totalQty": 102.0, "orderCount": 97, "margin": 469.91999999999996, "marginPct": 62.03073023918897}, {"YearMonth": "2023-02", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1153.12, "totalRevenueExVAT": 961.1999999999999, "totalCost": 414.17999999999995, "totalQty": 59.0, "orderCount": 51, "margin": 547.02, "marginPct": 56.91011235955057}, {"YearMonth": "2023-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 909.15, "totalRevenueExVAT": 757.53, "totalCost": 162.45000000000002, "totalQty": 57.0, "orderCount": 56, "margin": 595.0799999999999, "marginPct": 78.55530474040631}, {"YearMonth": "2023-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 493.05, "totalRevenueExVAT": 410.96999999999997, "totalCost": 108.3, "totalQty": 19.0, "orderCount": 19, "margin": 302.66999999999996, "marginPct": 73.64771151178918}, {"YearMonth": "2023-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 877.8, "totalRevenueExVAT": 731.7199999999999, "totalCost": 251.67999999999998, "totalQty": 44.0, "orderCount": 36, "margin": 480.03999999999996, "marginPct": 65.6043295249549}, {"YearMonth": "2023-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1879.9099999999999, "totalRevenueExVAT": 1569.65, "totalCost": 742.5600000000001, "totalQty": 91.0, "orderCount": 83, "margin": 827.09, "marginPct": 52.69263848628675}, {"YearMonth": "2023-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1285.73, "totalRevenueExVAT": 1072.0, "totalCost": 456.96000000000004, "totalQty": 112.0, "orderCount": 103, "margin": 615.04, "marginPct": 57.37313432835821}, {"YearMonth": "2023-02", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1317.75, "totalRevenueExVAT": 1098.23, "totalCost": 579.84, "totalQty": 64.0, "orderCount": 60, "margin": 518.39, "marginPct": 47.20231645465886}, {"YearMonth": "2023-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 439.0, "totalRevenueExVAT": 365.79999999999995, "totalCost": 208.0, "totalQty": 20.0, "orderCount": 20, "margin": 157.79999999999995, "marginPct": 43.138326954620005}, {"YearMonth": "2023-02", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1564.75, "totalRevenueExVAT": 1304.05, "totalCost": 635.8000000000001, "totalQty": 55.0, "orderCount": 48, "margin": 668.2499999999999, "marginPct": 51.24420075917334}, {"YearMonth": "2023-02", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 191.8, "totalRevenueExVAT": 159.84, "totalCost": 132.64, "totalQty": 4.0, "orderCount": 3, "margin": 27.200000000000017, "marginPct": 17.01701701701703}, {"YearMonth": "2023-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1003.5, "totalRevenueExVAT": 836.33, "totalCost": 435.84000000000003, "totalQty": 48.0, "orderCount": 46, "margin": 400.49, "marginPct": 47.88659978716535}, {"YearMonth": "2023-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 681.15, "totalRevenueExVAT": 567.72, "totalCost": 258.78000000000003, "totalQty": 57.0, "orderCount": 57, "margin": 308.94, "marginPct": 54.41767068273092}, {"YearMonth": "2023-02", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2323.21, "totalRevenueExVAT": 1935.6699999999998, "totalCost": 511.56, "totalQty": 203.0, "orderCount": 170, "margin": 1424.11, "marginPct": 73.57194149829257}, {"YearMonth": "2023-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7434.37, "totalRevenueExVAT": 6196.57, "totalCost": 3366.7, "totalQty": 257.0, "orderCount": 235, "margin": 2829.87, "marginPct": 45.668329414498665}, {"YearMonth": "2023-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 2958.6, "totalRevenueExVAT": 2465.8300000000004, "totalCost": 1345.24, "totalQty": 199.0, "orderCount": 183, "margin": 1120.5900000000004, "marginPct": 45.44473868839296}, {"YearMonth": "2023-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 507.21, "totalRevenueExVAT": 422.82, "totalCost": 141.52, "totalQty": 29.0, "orderCount": 27, "margin": 281.29999999999995, "marginPct": 66.52949245541836}, {"YearMonth": "2023-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1319.86, "totalRevenueExVAT": 1099.79, "totalCost": 438.84, "totalQty": 53.0, "orderCount": 49, "margin": 660.95, "marginPct": 60.09783685976414}, {"YearMonth": "2023-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 390.15, "totalRevenueExVAT": 325.08, "totalCost": 111.77999999999999, "totalQty": 27.0, "orderCount": 27, "margin": 213.3, "marginPct": 65.61461794019934}, {"YearMonth": "2023-02", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1150.4, "totalRevenueExVAT": 958.72, "totalCost": 348.16, "totalQty": 32.0, "orderCount": 31, "margin": 610.56, "marginPct": 63.684913217623496}, {"YearMonth": "2023-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1543.9499999999998, "totalRevenueExVAT": 1287.3300000000002, "totalCost": 430.04999999999995, "totalQty": 141.0, "orderCount": 130, "margin": 857.2800000000002, "marginPct": 66.59364731653889}, {"YearMonth": "2023-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 921.8, "totalRevenueExVAT": 768.24, "totalCost": 268.4, "totalQty": 44.0, "orderCount": 43, "margin": 499.84000000000003, "marginPct": 65.06300114547537}, {"YearMonth": "2023-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 951.3499999999999, "totalRevenueExVAT": 792.88, "totalCost": 332.84000000000003, "totalQty": 53.0, "orderCount": 46, "margin": 460.03999999999996, "marginPct": 58.02139037433155}, {"YearMonth": "2023-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 526.36, "totalRevenueExVAT": 438.53999999999996, "totalCost": 166.42000000000002, "totalQty": 53.0, "orderCount": 46, "margin": 272.11999999999995, "marginPct": 62.05135221416518}, {"YearMonth": "2023-03", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 25.95, "totalRevenueExVAT": 21.63, "totalCost": 10.44, "totalQty": 1.0, "orderCount": 1, "margin": 11.19, "marginPct": 51.73370319001387}, {"YearMonth": "2023-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 717.75, "totalRevenueExVAT": 598.05, "totalCost": 294.75, "totalQty": 45.0, "orderCount": 31, "margin": 303.29999999999995, "marginPct": 50.71482317531979}, {"YearMonth": "2023-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1229.8, "totalRevenueExVAT": 1024.76, "totalCost": 362.56, "totalQty": 44.0, "orderCount": 41, "margin": 662.2, "marginPct": 64.62000858737656}, {"YearMonth": "2023-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1435.1999999999998, "totalRevenueExVAT": 1196.16, "totalCost": 395.52, "totalQty": 96.0, "orderCount": 88, "margin": 800.6400000000001, "marginPct": 66.93418940609952}, {"YearMonth": "2023-03", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1637.95, "totalRevenueExVAT": 1364.8899999999999, "totalCost": 659.28, "totalQty": 41.0, "orderCount": 39, "margin": 705.6099999999999, "marginPct": 51.697206368278756}, {"YearMonth": "2023-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1420.61, "totalRevenueExVAT": 1184.22, "totalCost": 588.24, "totalQty": 129.0, "orderCount": 100, "margin": 595.98, "marginPct": 50.326797385620914}, {"YearMonth": "2023-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2049.55, "totalRevenueExVAT": 1708.26, "totalCost": 949.4399999999999, "totalQty": 69.0, "orderCount": 64, "margin": 758.82, "marginPct": 44.420638544483865}, {"YearMonth": "2023-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1485.52, "totalRevenueExVAT": 1238.22, "totalCost": 646.72, "totalQty": 94.0, "orderCount": 86, "margin": 591.5, "marginPct": 47.770186235079386}, {"YearMonth": "2023-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2025.6499999999999, "totalRevenueExVAT": 1687.83, "totalCost": 693.76, "totalQty": 128.0, "orderCount": 109, "margin": 994.0699999999999, "marginPct": 58.896334346468535}, {"YearMonth": "2023-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1211.25, "totalRevenueExVAT": 1009.5000000000001, "totalCost": 361.5, "totalQty": 75.0, "orderCount": 61, "margin": 648.0000000000001, "marginPct": 64.19019316493313}, {"YearMonth": "2023-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1064.06, "totalRevenueExVAT": 887.84, "totalCost": 223.75, "totalQty": 179.0, "orderCount": 162, "margin": 664.09, "marginPct": 74.7983870967742}, {"YearMonth": "2023-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1269.29, "totalRevenueExVAT": 1057.54, "totalCost": 305.0, "totalQty": 122.0, "orderCount": 109, "margin": 752.54, "marginPct": 71.15948332923577}, {"YearMonth": "2023-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1017.4499999999999, "totalRevenueExVAT": 848.13, "totalCost": 369.36, "totalQty": 54.0, "orderCount": 46, "margin": 478.77, "marginPct": 56.45007251246861}, {"YearMonth": "2023-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3151.6800000000003, "totalRevenueExVAT": 2626.2, "totalCost": 1502.36, "totalQty": 92.0, "orderCount": 63, "margin": 1123.84, "marginPct": 42.79338968852334}, {"YearMonth": "2023-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1677.8999999999999, "totalRevenueExVAT": 1398.42, "totalCost": 575.28, "totalQty": 102.0, "orderCount": 84, "margin": 823.1400000000001, "marginPct": 58.86214442013129}, {"YearMonth": "2023-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1440.9499999999998, "totalRevenueExVAT": 1201.06, "totalCost": 454.02, "totalQty": 161.0, "orderCount": 149, "margin": 747.04, "marginPct": 62.19839142091153}, {"YearMonth": "2023-03", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1356.6, "totalRevenueExVAT": 1130.84, "totalCost": 477.35999999999996, "totalQty": 68.0, "orderCount": 63, "margin": 653.48, "marginPct": 57.787131689717384}, {"YearMonth": "2023-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1084.6, "totalRevenueExVAT": 903.7199999999999, "totalCost": 193.8, "totalQty": 68.0, "orderCount": 64, "margin": 709.9199999999998, "marginPct": 78.55530474040631}, {"YearMonth": "2023-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1505.1, "totalRevenueExVAT": 1254.54, "totalCost": 330.6, "totalQty": 58.0, "orderCount": 53, "margin": 923.9399999999999, "marginPct": 73.64771151178918}, {"YearMonth": "2023-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1396.5, "totalRevenueExVAT": 1164.1, "totalCost": 400.4, "totalQty": 70.0, "orderCount": 57, "margin": 763.6999999999999, "marginPct": 65.60432952495489}, {"YearMonth": "2023-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2700.45, "totalRevenueExVAT": 2250.59, "totalCost": 1052.64, "totalQty": 129.0, "orderCount": 117, "margin": 1197.95, "marginPct": 53.228264588396826}, {"YearMonth": "2023-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1562.64, "totalRevenueExVAT": 1302.88, "totalCost": 554.88, "totalQty": 136.0, "orderCount": 122, "margin": 748.0000000000001, "marginPct": 57.41127348643007}, {"YearMonth": "2023-03", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1176.35, "totalRevenueExVAT": 980.49, "totalCost": 489.24, "totalQty": 54.0, "orderCount": 44, "margin": 491.25, "marginPct": 50.102499770522904}, {"YearMonth": "2023-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 416.09999999999997, "totalRevenueExVAT": 346.71999999999997, "totalCost": 187.20000000000002, "totalQty": 18.0, "orderCount": 17, "margin": 159.51999999999995, "marginPct": 46.00830641439778}, {"YearMonth": "2023-03", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1507.85, "totalRevenueExVAT": 1256.63, "totalCost": 612.6800000000001, "totalQty": 53.0, "orderCount": 47, "margin": 643.95, "marginPct": 51.24420075917334}, {"YearMonth": "2023-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1096.45, "totalRevenueExVAT": 913.84, "totalCost": 463.08, "totalQty": 51.0, "orderCount": 45, "margin": 450.76000000000005, "marginPct": 49.32592138667601}, {"YearMonth": "2023-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 932.0999999999999, "totalRevenueExVAT": 776.8800000000001, "totalCost": 358.66, "totalQty": 79.0, "orderCount": 68, "margin": 418.2200000000001, "marginPct": 53.83328184533004}, {"YearMonth": "2023-03", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 3114.3999999999996, "totalRevenueExVAT": 2594.8799999999997, "totalCost": 690.48, "totalQty": 274.0, "orderCount": 230, "margin": 1904.3999999999996, "marginPct": 73.39067702552718}, {"YearMonth": "2023-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11488.15, "totalRevenueExVAT": 9573.43, "totalCost": 4951.8, "totalQty": 378.0, "orderCount": 328, "margin": 4621.63, "marginPct": 48.275591924733355}, {"YearMonth": "2023-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4063.0499999999997, "totalRevenueExVAT": 3385.67, "totalCost": 1757.6, "totalQty": 260.0, "orderCount": 244, "margin": 1628.0700000000002, "marginPct": 48.08708468338615}, {"YearMonth": "2023-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 647.13, "totalRevenueExVAT": 539.46, "totalCost": 180.56, "totalQty": 37.0, "orderCount": 35, "margin": 358.90000000000003, "marginPct": 66.52949245541838}, {"YearMonth": "2023-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1596.8, "totalRevenueExVAT": 1330.56, "totalCost": 529.92, "totalQty": 64.0, "orderCount": 53, "margin": 800.64, "marginPct": 60.17316017316018}, {"YearMonth": "2023-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 447.95, "totalRevenueExVAT": 373.23999999999995, "totalCost": 128.34, "totalQty": 31.0, "orderCount": 26, "margin": 244.89999999999995, "marginPct": 65.61461794019932}, {"YearMonth": "2023-03", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1689.65, "totalRevenueExVAT": 1408.1200000000001, "totalCost": 511.36, "totalQty": 47.0, "orderCount": 43, "margin": 896.7600000000001, "marginPct": 63.684913217623496}, {"YearMonth": "2023-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1838.51, "totalRevenueExVAT": 1532.92, "totalCost": 515.4499999999999, "totalQty": 169.0, "orderCount": 158, "margin": 1017.4700000000001, "marginPct": 66.37463142238343}, {"YearMonth": "2023-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1068.45, "totalRevenueExVAT": 890.46, "totalCost": 311.09999999999997, "totalQty": 51.0, "orderCount": 48, "margin": 579.3600000000001, "marginPct": 65.06300114547538}, {"YearMonth": "2023-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1127.86, "totalRevenueExVAT": 942.48, "totalCost": 395.64000000000004, "totalQty": 63.0, "orderCount": 54, "margin": 546.8399999999999, "marginPct": 58.02139037433154}, {"YearMonth": "2023-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 774.4399999999999, "totalRevenueExVAT": 646.6199999999999, "totalCost": 244.92000000000002, "totalQty": 78.0, "orderCount": 76, "margin": 401.6999999999999, "marginPct": 62.123039806996374}, {"YearMonth": "2023-04", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 25.95, "totalRevenueExVAT": 21.63, "totalCost": 10.44, "totalQty": 1.0, "orderCount": 1, "margin": 11.19, "marginPct": 51.73370319001387}, {"YearMonth": "2023-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 653.9499999999999, "totalRevenueExVAT": 544.89, "totalCost": 268.55, "totalQty": 41.0, "orderCount": 32, "margin": 276.34, "marginPct": 50.71482317531979}, {"YearMonth": "2023-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 978.25, "totalRevenueExVAT": 815.15, "totalCost": 288.40000000000003, "totalQty": 35.0, "orderCount": 35, "margin": 526.75, "marginPct": 64.62000858737656}, {"YearMonth": "2023-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 852.15, "totalRevenueExVAT": 710.22, "totalCost": 234.84, "totalQty": 57.0, "orderCount": 56, "margin": 475.38, "marginPct": 66.93418940609952}, {"YearMonth": "2023-04", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1358.3000000000002, "totalRevenueExVAT": 1131.86, "totalCost": 546.7199999999999, "totalQty": 34.0, "orderCount": 30, "margin": 585.14, "marginPct": 51.69720636827877}, {"YearMonth": "2023-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 848.35, "totalRevenueExVAT": 708.92, "totalCost": 337.44, "totalQty": 74.0, "orderCount": 67, "margin": 371.47999999999996, "marginPct": 52.4008350730689}, {"YearMonth": "2023-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 823.7500000000001, "totalRevenueExVAT": 686.5, "totalCost": 344.0, "totalQty": 25.0, "orderCount": 21, "margin": 342.5, "marginPct": 49.89075018208303}, {"YearMonth": "2023-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1051.52, "totalRevenueExVAT": 876.0600000000001, "totalCost": 426.56, "totalQty": 62.0, "orderCount": 54, "margin": 449.50000000000006, "marginPct": 51.30927105449399}, {"YearMonth": "2023-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1595.0, "totalRevenueExVAT": 1329.0, "totalCost": 542.0, "totalQty": 100.0, "orderCount": 85, "margin": 787.0, "marginPct": 59.21745673438675}, {"YearMonth": "2023-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1033.6, "totalRevenueExVAT": 861.44, "totalCost": 308.48, "totalQty": 64.0, "orderCount": 49, "margin": 552.96, "marginPct": 64.19019316493313}, {"YearMonth": "2023-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 771.52, "totalRevenueExVAT": 644.8, "totalCost": 162.5, "totalQty": 130.0, "orderCount": 119, "margin": 482.29999999999995, "marginPct": 74.79838709677419}, {"YearMonth": "2023-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 860.1800000000001, "totalRevenueExVAT": 716.6800000000001, "totalCost": 205.0, "totalQty": 82.0, "orderCount": 72, "margin": 511.68000000000006, "marginPct": 71.395881006865}, {"YearMonth": "2023-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 598.5, "totalRevenueExVAT": 498.9, "totalCost": 205.2, "totalQty": 30.0, "orderCount": 29, "margin": 293.7, "marginPct": 58.86951292844257}, {"YearMonth": "2023-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2930.81, "totalRevenueExVAT": 2446.92, "totalCost": 1371.7199999999998, "totalQty": 84.0, "orderCount": 61, "margin": 1075.2000000000003, "marginPct": 43.94095434260214}, {"YearMonth": "2023-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 836.2099999999999, "totalRevenueExVAT": 699.21, "totalCost": 287.64, "totalQty": 51.0, "orderCount": 46, "margin": 411.57000000000005, "marginPct": 58.86214442013129}, {"YearMonth": "2023-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 939.7499999999999, "totalRevenueExVAT": 783.3, "totalCost": 296.09999999999997, "totalQty": 105.0, "orderCount": 98, "margin": 487.2, "marginPct": 62.19839142091153}, {"YearMonth": "2023-04", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 319.2, "totalRevenueExVAT": 266.08, "totalCost": 112.32, "totalQty": 16.0, "orderCount": 5, "margin": 153.76, "marginPct": 57.78713168971738}, {"YearMonth": "2023-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 957.0, "totalRevenueExVAT": 797.4, "totalCost": 171.0, "totalQty": 60.0, "orderCount": 55, "margin": 626.4, "marginPct": 78.55530474040631}, {"YearMonth": "2023-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 622.8, "totalRevenueExVAT": 519.12, "totalCost": 136.8, "totalQty": 24.0, "orderCount": 22, "margin": 382.32, "marginPct": 73.64771151178918}, {"YearMonth": "2023-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 837.9, "totalRevenueExVAT": 698.4599999999999, "totalCost": 240.23999999999998, "totalQty": 42.0, "orderCount": 33, "margin": 458.2199999999999, "marginPct": 65.60432952495489}, {"YearMonth": "2023-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 460.9, "totalRevenueExVAT": 384.12, "totalCost": 179.52, "totalQty": 22.0, "orderCount": 16, "margin": 204.6, "marginPct": 53.264604810996566}, {"YearMonth": "2023-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 172.35, "totalRevenueExVAT": 143.7, "totalCost": 61.2, "totalQty": 15.0, "orderCount": 14, "margin": 82.49999999999999, "marginPct": 57.41127348643006}, {"YearMonth": "2023-04", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1468.8, "totalRevenueExVAT": 1224.32, "totalCost": 579.84, "totalQty": 64.0, "orderCount": 62, "margin": 644.4799999999999, "marginPct": 52.63983272347098}, {"YearMonth": "2023-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 499.0, "totalRevenueExVAT": 415.79999999999995, "totalCost": 208.0, "totalQty": 20.0, "orderCount": 19, "margin": 207.79999999999995, "marginPct": 49.975949975949966}, {"YearMonth": "2023-04", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 853.5, "totalRevenueExVAT": 711.3, "totalCost": 346.8, "totalQty": 30.0, "orderCount": 26, "margin": 364.49999999999994, "marginPct": 51.24420075917334}, {"YearMonth": "2023-04", "Description": "Pycnogenol\u00ae 40mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 47.95, "totalRevenueExVAT": 39.96, "totalCost": 33.16, "totalQty": 1.0, "orderCount": 1, "margin": 6.800000000000004, "marginPct": 17.01701701701703}, {"YearMonth": "2023-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 849.15, "totalRevenueExVAT": 707.81, "totalCost": 335.96, "totalQty": 37.0, "orderCount": 33, "margin": 371.84999999999997, "marginPct": 52.535284892838476}, {"YearMonth": "2023-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 728.9499999999999, "totalRevenueExVAT": 607.5600000000001, "totalCost": 276.94, "totalQty": 61.0, "orderCount": 59, "margin": 330.62000000000006, "marginPct": 54.41767068273092}, {"YearMonth": "2023-04", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 1647.6599999999999, "totalRevenueExVAT": 1372.81, "totalCost": 362.88, "totalQty": 144.0, "orderCount": 115, "margin": 1009.93, "marginPct": 73.566626117234}, {"YearMonth": "2023-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7056.599999999999, "totalRevenueExVAT": 5880.12, "totalCost": 2986.7999999999997, "totalQty": 228.0, "orderCount": 203, "margin": 2893.32, "marginPct": 49.2051182628926}, {"YearMonth": "2023-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3190.0, "totalRevenueExVAT": 2658.0, "totalCost": 1358.76, "totalQty": 201.0, "orderCount": 184, "margin": 1299.24, "marginPct": 48.880361173814904}, {"YearMonth": "2023-04", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 332.30999999999995, "totalRevenueExVAT": 277.02, "totalCost": 92.72, "totalQty": 19.0, "orderCount": 17, "margin": 184.29999999999998, "marginPct": 66.52949245541838}, {"YearMonth": "2023-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 798.4, "totalRevenueExVAT": 665.28, "totalCost": 264.96, "totalQty": 32.0, "orderCount": 30, "margin": 400.32, "marginPct": 60.17316017316018}, {"YearMonth": "2023-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 476.84999999999997, "totalRevenueExVAT": 397.32, "totalCost": 136.62, "totalQty": 33.0, "orderCount": 29, "margin": 260.7, "marginPct": 65.61461794019934}, {"YearMonth": "2023-04", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 826.8500000000001, "totalRevenueExVAT": 689.08, "totalCost": 261.12, "totalQty": 24.0, "orderCount": 18, "margin": 427.96000000000004, "marginPct": 62.10599640099843}, {"YearMonth": "2023-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1149.75, "totalRevenueExVAT": 958.6500000000001, "totalCost": 320.25, "totalQty": 105.0, "orderCount": 98, "margin": 638.4000000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2023-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 705.3199999999999, "totalRevenueExVAT": 593.64, "totalCost": 213.5, "totalQty": 35.0, "orderCount": 31, "margin": 380.14, "marginPct": 64.0354423556364}, {"YearMonth": "2023-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 718.0, "totalRevenueExVAT": 598.4000000000001, "totalCost": 251.20000000000002, "totalQty": 40.0, "orderCount": 33, "margin": 347.20000000000005, "marginPct": 58.02139037433155}, {"YearMonth": "2023-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 587.05, "totalRevenueExVAT": 489.10999999999996, "totalCost": 185.26000000000002, "totalQty": 59.0, "orderCount": 56, "margin": 303.8499999999999, "marginPct": 62.123039806996374}, {"YearMonth": "2023-05", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 57.849999999999994, "totalRevenueExVAT": 48.209999999999994, "totalCost": 31.32, "totalQty": 3.0, "orderCount": 2, "margin": 16.889999999999993, "marginPct": 35.03422526446794}, {"YearMonth": "2023-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 797.5, "totalRevenueExVAT": 664.5, "totalCost": 327.5, "totalQty": 50.0, "orderCount": 35, "margin": 337.0, "marginPct": 50.71482317531979}, {"YearMonth": "2023-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1732.8999999999999, "totalRevenueExVAT": 1443.98, "totalCost": 510.88, "totalQty": 62.0, "orderCount": 58, "margin": 933.1, "marginPct": 64.62000858737656}, {"YearMonth": "2023-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1345.5, "totalRevenueExVAT": 1121.4, "totalCost": 370.8, "totalQty": 90.0, "orderCount": 87, "margin": 750.6000000000001, "marginPct": 66.93418940609952}, {"YearMonth": "2023-05", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1757.8000000000002, "totalRevenueExVAT": 1464.76, "totalCost": 723.5999999999999, "totalQty": 45.0, "orderCount": 39, "margin": 741.1600000000001, "marginPct": 50.59941560392147}, {"YearMonth": "2023-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1217.94, "totalRevenueExVAT": 1015.48, "totalCost": 483.35999999999996, "totalQty": 106.0, "orderCount": 86, "margin": 532.1200000000001, "marginPct": 52.400835073068905}, {"YearMonth": "2023-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2339.4500000000003, "totalRevenueExVAT": 1949.66, "totalCost": 1018.24, "totalQty": 74.0, "orderCount": 67, "margin": 931.4200000000001, "marginPct": 47.773457936255554}, {"YearMonth": "2023-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1322.88, "totalRevenueExVAT": 1102.14, "totalCost": 536.64, "totalQty": 78.0, "orderCount": 73, "margin": 565.5000000000001, "marginPct": 51.30927105449399}, {"YearMonth": "2023-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2153.25, "totalRevenueExVAT": 1794.1499999999999, "totalCost": 731.7, "totalQty": 135.0, "orderCount": 100, "margin": 1062.4499999999998, "marginPct": 59.21745673438675}, {"YearMonth": "2023-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1243.55, "totalRevenueExVAT": 1036.42, "totalCost": 371.14000000000004, "totalQty": 77.0, "orderCount": 57, "margin": 665.28, "marginPct": 64.19019316493313}, {"YearMonth": "2023-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 702.1, "totalRevenueExVAT": 585.28, "totalCost": 147.5, "totalQty": 118.0, "orderCount": 109, "margin": 437.78, "marginPct": 74.79838709677419}, {"YearMonth": "2023-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 923.12, "totalRevenueExVAT": 769.12, "totalCost": 220.0, "totalQty": 88.0, "orderCount": 72, "margin": 549.12, "marginPct": 71.395881006865}, {"YearMonth": "2023-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 714.88, "totalRevenueExVAT": 598.68, "totalCost": 246.24, "totalQty": 36.0, "orderCount": 31, "margin": 352.43999999999994, "marginPct": 58.86951292844257}, {"YearMonth": "2023-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3530.96, "totalRevenueExVAT": 2942.13, "totalCost": 1649.33, "totalQty": 101.0, "orderCount": 62, "margin": 1292.8000000000002, "marginPct": 43.94095434260213}, {"YearMonth": "2023-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1579.2, "totalRevenueExVAT": 1316.16, "totalCost": 541.4399999999999, "totalQty": 96.0, "orderCount": 84, "margin": 774.7200000000001, "marginPct": 58.8621444201313}, {"YearMonth": "2023-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 902.4599999999999, "totalRevenueExVAT": 753.46, "totalCost": 284.82, "totalQty": 101.0, "orderCount": 92, "margin": 468.64000000000004, "marginPct": 62.198391420911534}, {"YearMonth": "2023-05", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1376.55, "totalRevenueExVAT": 1147.47, "totalCost": 484.38, "totalQty": 69.0, "orderCount": 62, "margin": 663.09, "marginPct": 57.78713168971738}, {"YearMonth": "2023-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 733.6999999999999, "totalRevenueExVAT": 611.3399999999999, "totalCost": 131.1, "totalQty": 46.0, "orderCount": 44, "margin": 480.2399999999999, "marginPct": 78.55530474040631}, {"YearMonth": "2023-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 908.25, "totalRevenueExVAT": 757.05, "totalCost": 199.5, "totalQty": 35.0, "orderCount": 33, "margin": 557.55, "marginPct": 73.64771151178918}, {"YearMonth": "2023-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1273.48, "totalRevenueExVAT": 1064.32, "totalCost": 366.08, "totalQty": 64.0, "orderCount": 54, "margin": 698.24, "marginPct": 65.6043295249549}, {"YearMonth": "2023-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3058.7, "totalRevenueExVAT": 2549.1600000000003, "totalCost": 1191.3600000000001, "totalQty": 146.0, "orderCount": 117, "margin": 1357.8000000000002, "marginPct": 53.264604810996566}, {"YearMonth": "2023-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1434.34, "totalRevenueExVAT": 1197.5, "totalCost": 510.0, "totalQty": 125.0, "orderCount": 116, "margin": 687.5, "marginPct": 57.41127348643006}, {"YearMonth": "2023-05", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 2134.35, "totalRevenueExVAT": 1779.09, "totalCost": 860.7, "totalQty": 95.0, "orderCount": 87, "margin": 918.3899999999999, "marginPct": 51.62133450247036}, {"YearMonth": "2023-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 573.85, "totalRevenueExVAT": 478.16999999999996, "totalCost": 239.20000000000002, "totalQty": 23.0, "orderCount": 18, "margin": 238.96999999999994, "marginPct": 49.975949975949966}, {"YearMonth": "2023-05", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1735.4499999999998, "totalRevenueExVAT": 1446.31, "totalCost": 705.16, "totalQty": 61.0, "orderCount": 51, "margin": 741.15, "marginPct": 51.24420075917334}, {"YearMonth": "2023-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1239.3, "totalRevenueExVAT": 1033.02, "totalCost": 490.32, "totalQty": 54.0, "orderCount": 48, "margin": 542.7, "marginPct": 52.535284892838476}, {"YearMonth": "2023-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 918.16, "totalRevenueExVAT": 766.9200000000001, "totalCost": 349.58, "totalQty": 77.0, "orderCount": 68, "margin": 417.3400000000001, "marginPct": 54.417670682730936}, {"YearMonth": "2023-05", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2976.9999999999995, "totalRevenueExVAT": 2480.3999999999996, "totalCost": 660.24, "totalQty": 262.0, "orderCount": 202, "margin": 1820.1599999999996, "marginPct": 73.38171262699564}, {"YearMonth": "2023-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12285.15, "totalRevenueExVAT": 10236.97, "totalCost": 5213.8, "totalQty": 398.0, "orderCount": 342, "margin": 5023.169999999999, "marginPct": 49.068913946216504}, {"YearMonth": "2023-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3809.39, "totalRevenueExVAT": 3176.31, "totalCost": 1615.6399999999999, "totalQty": 239.0, "orderCount": 224, "margin": 1560.67, "marginPct": 49.1346877351392}, {"YearMonth": "2023-05", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 629.64, "totalRevenueExVAT": 524.88, "totalCost": 175.68, "totalQty": 36.0, "orderCount": 31, "margin": 349.2, "marginPct": 66.52949245541838}, {"YearMonth": "2023-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1621.75, "totalRevenueExVAT": 1351.35, "totalCost": 538.1999999999999, "totalQty": 65.0, "orderCount": 46, "margin": 813.15, "marginPct": 60.17316017316018}, {"YearMonth": "2023-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 635.8, "totalRevenueExVAT": 529.76, "totalCost": 182.16, "totalQty": 44.0, "orderCount": 37, "margin": 347.6, "marginPct": 65.61461794019934}, {"YearMonth": "2023-05", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1114.45, "totalRevenueExVAT": 928.76, "totalCost": 337.28000000000003, "totalQty": 31.0, "orderCount": 30, "margin": 591.48, "marginPct": 63.684913217623496}, {"YearMonth": "2023-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1507.4599999999998, "totalRevenueExVAT": 1259.94, "totalCost": 420.9, "totalQty": 138.0, "orderCount": 133, "margin": 839.0400000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2023-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 586.6, "totalRevenueExVAT": 488.88, "totalCost": 170.79999999999998, "totalQty": 28.0, "orderCount": 27, "margin": 318.08000000000004, "marginPct": 65.06300114547538}, {"YearMonth": "2023-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 879.55, "totalRevenueExVAT": 733.0400000000001, "totalCost": 307.72, "totalQty": 49.0, "orderCount": 44, "margin": 425.32000000000005, "marginPct": 58.02139037433155}, {"YearMonth": "2023-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 577.0999999999999, "totalRevenueExVAT": 480.81999999999994, "totalCost": 182.12, "totalQty": 58.0, "orderCount": 53, "margin": 298.69999999999993, "marginPct": 62.123039806996374}, {"YearMonth": "2023-06", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 25.95, "totalRevenueExVAT": 21.63, "totalCost": 10.44, "totalQty": 1.0, "orderCount": 1, "margin": 11.19, "marginPct": 51.73370319001387}, {"YearMonth": "2023-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 590.15, "totalRevenueExVAT": 491.72999999999996, "totalCost": 242.35, "totalQty": 37.0, "orderCount": 26, "margin": 249.37999999999997, "marginPct": 50.71482317531979}, {"YearMonth": "2023-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1509.3, "totalRevenueExVAT": 1257.6599999999999, "totalCost": 444.96, "totalQty": 54.0, "orderCount": 48, "margin": 812.6999999999998, "marginPct": 64.62000858737656}, {"YearMonth": "2023-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1151.1499999999999, "totalRevenueExVAT": 959.4200000000001, "totalCost": 317.24, "totalQty": 77.0, "orderCount": 74, "margin": 642.1800000000001, "marginPct": 66.93418940609952}, {"YearMonth": "2023-06", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2470.2400000000002, "totalRevenueExVAT": 2063.98, "totalCost": 996.9599999999999, "totalQty": 62.0, "orderCount": 50, "margin": 1067.02, "marginPct": 51.697206368278756}, {"YearMonth": "2023-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1149.0, "totalRevenueExVAT": 958.0, "totalCost": 455.99999999999994, "totalQty": 100.0, "orderCount": 79, "margin": 502.00000000000006, "marginPct": 52.4008350730689}, {"YearMonth": "2023-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1746.3500000000001, "totalRevenueExVAT": 1455.38, "totalCost": 729.28, "totalQty": 53.0, "orderCount": 49, "margin": 726.1000000000001, "marginPct": 49.89075018208304}, {"YearMonth": "2023-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1051.52, "totalRevenueExVAT": 876.0600000000001, "totalCost": 426.56, "totalQty": 62.0, "orderCount": 56, "margin": 449.50000000000006, "marginPct": 51.30927105449399}, {"YearMonth": "2023-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1020.8, "totalRevenueExVAT": 850.56, "totalCost": 346.88, "totalQty": 64.0, "orderCount": 48, "margin": 503.67999999999995, "marginPct": 59.21745673438675}, {"YearMonth": "2023-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1082.05, "totalRevenueExVAT": 901.82, "totalCost": 322.94, "totalQty": 67.0, "orderCount": 50, "margin": 578.8800000000001, "marginPct": 64.19019316493313}, {"YearMonth": "2023-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 749.7, "totalRevenueExVAT": 624.96, "totalCost": 157.5, "totalQty": 126.0, "orderCount": 105, "margin": 467.46000000000004, "marginPct": 74.7983870967742}, {"YearMonth": "2023-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1122.43, "totalRevenueExVAT": 935.1800000000001, "totalCost": 267.5, "totalQty": 107.0, "orderCount": 88, "margin": 667.6800000000001, "marginPct": 71.395881006865}, {"YearMonth": "2023-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 954.28, "totalRevenueExVAT": 798.24, "totalCost": 328.32, "totalQty": 48.0, "orderCount": 41, "margin": 469.92, "marginPct": 58.86951292844258}, {"YearMonth": "2023-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2685.65, "totalRevenueExVAT": 2243.0099999999998, "totalCost": 1257.4099999999999, "totalQty": 77.0, "orderCount": 56, "margin": 985.5999999999999, "marginPct": 43.940954342602126}, {"YearMonth": "2023-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1102.1499999999999, "totalRevenueExVAT": 918.57, "totalCost": 377.88, "totalQty": 67.0, "orderCount": 60, "margin": 540.69, "marginPct": 58.86214442013129}, {"YearMonth": "2023-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1011.3499999999999, "totalRevenueExVAT": 842.98, "totalCost": 318.65999999999997, "totalQty": 113.0, "orderCount": 106, "margin": 524.32, "marginPct": 62.198391420911534}, {"YearMonth": "2023-06", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1079.23, "totalRevenueExVAT": 902.2299999999999, "totalCost": 372.54, "totalQty": 49.0, "orderCount": 41, "margin": 529.6899999999998, "marginPct": 58.70897664675303}, {"YearMonth": "2023-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1004.8499999999999, "totalRevenueExVAT": 837.27, "totalCost": 179.55, "totalQty": 63.0, "orderCount": 57, "margin": 657.72, "marginPct": 78.55530474040633}, {"YearMonth": "2023-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 752.55, "totalRevenueExVAT": 627.27, "totalCost": 165.3, "totalQty": 29.0, "orderCount": 28, "margin": 461.96999999999997, "marginPct": 73.64771151178918}, {"YearMonth": "2023-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1157.1, "totalRevenueExVAT": 964.54, "totalCost": 331.76, "totalQty": 58.0, "orderCount": 45, "margin": 632.78, "marginPct": 65.60432952495489}, {"YearMonth": "2023-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2430.2, "totalRevenueExVAT": 2025.3600000000001, "totalCost": 962.88, "totalQty": 118.0, "orderCount": 101, "margin": 1062.48, "marginPct": 52.45882213532409}, {"YearMonth": "2023-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1424.76, "totalRevenueExVAT": 1187.92, "totalCost": 505.92, "totalQty": 124.0, "orderCount": 112, "margin": 682.0, "marginPct": 57.41127348643006}, {"YearMonth": "2023-06", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1583.55, "totalRevenueExVAT": 1319.97, "totalCost": 625.14, "totalQty": 69.0, "orderCount": 61, "margin": 694.83, "marginPct": 52.63983272347099}, {"YearMonth": "2023-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 399.2, "totalRevenueExVAT": 332.64, "totalCost": 166.4, "totalQty": 16.0, "orderCount": 14, "margin": 166.23999999999998, "marginPct": 49.97594997594997}, {"YearMonth": "2023-06", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1650.1, "totalRevenueExVAT": 1375.18, "totalCost": 670.48, "totalQty": 58.0, "orderCount": 53, "margin": 704.7, "marginPct": 51.24420075917334}, {"YearMonth": "2023-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 963.9, "totalRevenueExVAT": 803.4599999999999, "totalCost": 381.36, "totalQty": 42.0, "orderCount": 36, "margin": 422.0999999999999, "marginPct": 52.53528489283846}, {"YearMonth": "2023-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 812.5999999999999, "totalRevenueExVAT": 677.2800000000001, "totalCost": 308.72, "totalQty": 68.0, "orderCount": 62, "margin": 368.56000000000006, "marginPct": 54.41767068273092}, {"YearMonth": "2023-06", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2290.0, "totalRevenueExVAT": 1907.9999999999998, "totalCost": 504.0, "totalQty": 200.0, "orderCount": 163, "margin": 1403.9999999999998, "marginPct": 73.58490566037736}, {"YearMonth": "2023-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10483.75, "totalRevenueExVAT": 8736.67, "totalCost": 4527.099999999999, "totalQty": 335.0, "orderCount": 286, "margin": 4209.570000000001, "marginPct": 48.18277444380983}, {"YearMonth": "2023-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3742.5499999999997, "totalRevenueExVAT": 3119.01, "totalCost": 1600.53, "totalQty": 229.0, "orderCount": 219, "margin": 1518.4800000000002, "marginPct": 48.68467879230911}, {"YearMonth": "2023-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 524.6999999999999, "totalRevenueExVAT": 437.4, "totalCost": 146.4, "totalQty": 30.0, "orderCount": 26, "margin": 291.0, "marginPct": 66.52949245541838}, {"YearMonth": "2023-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1472.05, "totalRevenueExVAT": 1226.61, "totalCost": 488.52, "totalQty": 59.0, "orderCount": 50, "margin": 738.0899999999999, "marginPct": 60.17316017316017}, {"YearMonth": "2023-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 447.95, "totalRevenueExVAT": 373.23999999999995, "totalCost": 128.33999999999997, "totalQty": 31.0, "orderCount": 28, "margin": 244.89999999999998, "marginPct": 65.61461794019934}, {"YearMonth": "2023-06", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1258.25, "totalRevenueExVAT": 1048.6000000000001, "totalCost": 380.8, "totalQty": 35.0, "orderCount": 32, "margin": 667.8000000000002, "marginPct": 63.6849132176235}, {"YearMonth": "2023-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1476.4299999999998, "totalRevenueExVAT": 1232.5500000000002, "totalCost": 414.79999999999995, "totalQty": 136.0, "orderCount": 127, "margin": 817.7500000000002, "marginPct": 66.34619285221696}, {"YearMonth": "2023-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 502.79999999999995, "totalRevenueExVAT": 419.04, "totalCost": 146.39999999999998, "totalQty": 24.0, "orderCount": 23, "margin": 272.64000000000004, "marginPct": 65.06300114547537}, {"YearMonth": "2023-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 718.0, "totalRevenueExVAT": 598.4000000000001, "totalCost": 251.20000000000002, "totalQty": 40.0, "orderCount": 37, "margin": 347.20000000000005, "marginPct": 58.02139037433155}, {"YearMonth": "2023-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 674.9399999999999, "totalRevenueExVAT": 563.7199999999999, "totalCost": 213.52, "totalQty": 68.0, "orderCount": 64, "margin": 350.19999999999993, "marginPct": 62.12303980699638}, {"YearMonth": "2023-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 867.86, "totalRevenueExVAT": 722.94, "totalCost": 379.9, "totalQty": 58.0, "orderCount": 45, "margin": 343.0400000000001, "marginPct": 47.45068747060615}, {"YearMonth": "2023-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1752.68, "totalRevenueExVAT": 1460.24, "totalCost": 560.32, "totalQty": 68.0, "orderCount": 56, "margin": 899.92, "marginPct": 61.62822549717855}, {"YearMonth": "2023-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1496.1999999999998, "totalRevenueExVAT": 1247.01, "totalCost": 436.72, "totalQty": 106.0, "orderCount": 96, "margin": 810.29, "marginPct": 64.97862888028163}, {"YearMonth": "2023-07", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1849.5000000000002, "totalRevenueExVAT": 1541.29, "totalCost": 803.9999999999999, "totalQty": 50.0, "orderCount": 46, "margin": 737.2900000000001, "marginPct": 47.83590369106398}, {"YearMonth": "2023-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1212.53, "totalRevenueExVAT": 1011.9200000000001, "totalCost": 528.9599999999999, "totalQty": 116.0, "orderCount": 97, "margin": 482.96000000000015, "marginPct": 47.72709305083407}, {"YearMonth": "2023-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2511.08, "totalRevenueExVAT": 2092.2200000000003, "totalCost": 1128.32, "totalQty": 82.0, "orderCount": 68, "margin": 963.9000000000003, "marginPct": 46.070680903537884}, {"YearMonth": "2023-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1309.1200000000001, "totalRevenueExVAT": 1090.98, "totalCost": 564.16, "totalQty": 82.0, "orderCount": 72, "margin": 526.82, "marginPct": 48.28869456818641}, {"YearMonth": "2023-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2286.0699999999997, "totalRevenueExVAT": 1904.3700000000001, "totalCost": 823.84, "totalQty": 152.0, "orderCount": 122, "margin": 1080.5300000000002, "marginPct": 56.739499151950525}, {"YearMonth": "2023-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1421.1999999999998, "totalRevenueExVAT": 1184.48, "totalCost": 424.16, "totalQty": 88.0, "orderCount": 71, "margin": 760.3199999999999, "marginPct": 64.19019316493313}, {"YearMonth": "2023-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 493.59999999999997, "totalRevenueExVAT": 411.48, "totalCost": 111.25, "totalQty": 89.0, "orderCount": 84, "margin": 300.23, "marginPct": 72.96344901331778}, {"YearMonth": "2023-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 989.14, "totalRevenueExVAT": 827.1, "totalCost": 257.5, "totalQty": 103.0, "orderCount": 85, "margin": 569.6, "marginPct": 68.86712610325233}, {"YearMonth": "2023-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1105.41, "totalRevenueExVAT": 921.05, "totalCost": 403.56, "totalQty": 59.0, "orderCount": 51, "margin": 517.49, "marginPct": 56.18478909939743}, {"YearMonth": "2023-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3607.1800000000003, "totalRevenueExVAT": 3005.74, "totalCost": 1796.2999999999997, "totalQty": 110.0, "orderCount": 63, "margin": 1209.44, "marginPct": 40.23767857499318}, {"YearMonth": "2023-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1598.6, "totalRevenueExVAT": 1332.68, "totalCost": 597.8399999999999, "totalQty": 106.0, "orderCount": 95, "margin": 734.8400000000001, "marginPct": 55.14001860911848}, {"YearMonth": "2023-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1169.71, "totalRevenueExVAT": 976.23, "totalCost": 391.97999999999996, "totalQty": 139.0, "orderCount": 130, "margin": 584.25, "marginPct": 59.847576902983924}, {"YearMonth": "2023-07", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1587.04, "totalRevenueExVAT": 1322.2, "totalCost": 569.84, "totalQty": 68.0, "orderCount": 60, "margin": 752.36, "marginPct": 56.902132808954775}, {"YearMonth": "2023-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1301.74, "totalRevenueExVAT": 1084.42, "totalCost": 245.1, "totalQty": 86.0, "orderCount": 80, "margin": 839.32, "marginPct": 77.39805610372365}, {"YearMonth": "2023-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 890.22, "totalRevenueExVAT": 741.72, "totalCost": 210.9, "totalQty": 37.0, "orderCount": 35, "margin": 530.82, "marginPct": 71.56608962950979}, {"YearMonth": "2023-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1245.1100000000001, "totalRevenueExVAT": 1037.39, "totalCost": 383.24, "totalQty": 67.0, "orderCount": 55, "margin": 654.1500000000001, "marginPct": 63.05728800161945}, {"YearMonth": "2023-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3068.37, "totalRevenueExVAT": 2556.92, "totalCost": 1313.76, "totalQty": 161.0, "orderCount": 138, "margin": 1243.16, "marginPct": 48.6194327550334}, {"YearMonth": "2023-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1350.32, "totalRevenueExVAT": 1125.44, "totalCost": 522.24, "totalQty": 128.0, "orderCount": 115, "margin": 603.2, "marginPct": 53.59681546772818}, {"YearMonth": "2023-07", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 2040.56, "totalRevenueExVAT": 1700.23, "totalCost": 860.7, "totalQty": 95.0, "orderCount": 85, "margin": 839.53, "marginPct": 49.377437170265196}, {"YearMonth": "2023-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1108.28, "totalRevenueExVAT": 923.5400000000001, "totalCost": 561.6, "totalQty": 54.0, "orderCount": 47, "margin": 361.94000000000005, "marginPct": 39.19050609610846}, {"YearMonth": "2023-07", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1615.8, "totalRevenueExVAT": 1346.76, "totalCost": 693.6, "totalQty": 60.0, "orderCount": 55, "margin": 653.16, "marginPct": 48.49861890760046}, {"YearMonth": "2023-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1416.23, "totalRevenueExVAT": 1180.02, "totalCost": 599.28, "totalQty": 66.0, "orderCount": 60, "margin": 580.74, "marginPct": 49.21442009457467}, {"YearMonth": "2023-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1164.8, "totalRevenueExVAT": 970.8400000000001, "totalCost": 472.16, "totalQty": 104.0, "orderCount": 97, "margin": 498.6800000000001, "marginPct": 51.36582753079808}, {"YearMonth": "2023-07", "Description": "Super Strength Vitamin D3 4000iu", "SKUDescription": "120 tablets", "Category": "Vitamin D", "totalRevenue": 2632.02, "totalRevenueExVAT": 2192.94, "totalCost": 619.92, "totalQty": 246.0, "orderCount": 195, "margin": 1573.02, "marginPct": 71.73110071410981}, {"YearMonth": "2023-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11273.6, "totalRevenueExVAT": 9394.08, "totalCost": 5247.099999999999, "totalQty": 383.0, "orderCount": 317, "margin": 4146.9800000000005, "marginPct": 44.144610222608286}, {"YearMonth": "2023-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3902.85, "totalRevenueExVAT": 3252.06, "totalCost": 1790.7, "totalQty": 254.0, "orderCount": 241, "margin": 1461.36, "marginPct": 44.93644028707957}, {"YearMonth": "2023-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 690.9599999999999, "totalRevenueExVAT": 575.82, "totalCost": 214.72, "totalQty": 44.0, "orderCount": 36, "margin": 361.1, "marginPct": 62.7105692751207}, {"YearMonth": "2023-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1869.06, "totalRevenueExVAT": 1557.1100000000001, "totalCost": 670.68, "totalQty": 81.0, "orderCount": 68, "margin": 886.4300000000002, "marginPct": 56.92789847859176}, {"YearMonth": "2023-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 612.81, "totalRevenueExVAT": 510.59999999999997, "totalCost": 186.29999999999998, "totalQty": 45.0, "orderCount": 36, "margin": 324.29999999999995, "marginPct": 63.51351351351351}, {"YearMonth": "2023-07", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1937.91, "totalRevenueExVAT": 1614.68, "totalCost": 631.0400000000001, "totalQty": 58.0, "orderCount": 49, "margin": 983.64, "marginPct": 60.91857210097357}, {"YearMonth": "2023-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 2434.87, "totalRevenueExVAT": 2028.64, "totalCost": 722.8499999999999, "totalQty": 237.0, "orderCount": 215, "margin": 1305.7900000000002, "marginPct": 64.3677537660699}, {"YearMonth": "2023-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1424.3500000000001, "totalRevenueExVAT": 1187.0800000000002, "totalCost": 445.29999999999995, "totalQty": 73.0, "orderCount": 64, "margin": 741.7800000000002, "marginPct": 62.48778515348587}, {"YearMonth": "2023-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 594.05, "totalRevenueExVAT": 495.1, "totalCost": 219.8, "totalQty": 35.0, "orderCount": 34, "margin": 275.3, "marginPct": 55.60492829731367}, {"YearMonth": "2023-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 688.73, "totalRevenueExVAT": 573.63, "totalCost": 229.22, "totalQty": 73.0, "orderCount": 72, "margin": 344.40999999999997, "marginPct": 60.040444188762784}, {"YearMonth": "2023-08", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 25.95, "totalRevenueExVAT": 21.63, "totalCost": 10.44, "totalQty": 1.0, "orderCount": 1, "margin": 11.19, "marginPct": 51.73370319001387}, {"YearMonth": "2023-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 622.05, "totalRevenueExVAT": 518.31, "totalCost": 255.45, "totalQty": 39.0, "orderCount": 32, "margin": 262.85999999999996, "marginPct": 50.71482317531979}, {"YearMonth": "2023-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1243.8, "totalRevenueExVAT": 1036.3999999999999, "totalCost": 370.8, "totalQty": 45.0, "orderCount": 41, "margin": 665.5999999999999, "marginPct": 64.22230798919337}, {"YearMonth": "2023-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 876.05, "totalRevenueExVAT": 730.1400000000001, "totalCost": 243.08, "totalQty": 59.0, "orderCount": 58, "margin": 487.06000000000006, "marginPct": 66.70775467718519}, {"YearMonth": "2023-08", "Description": "Co-Enzyme Q10 100mg", "SKUDescription": "180 Capsules", "Category": "Natural Co Q10", "totalRevenue": 119.85000000000001, "totalRevenueExVAT": 99.87, "totalCost": 48.239999999999995, "totalQty": 3.0, "orderCount": 3, "margin": 51.63000000000001, "marginPct": 51.69720636827877}, {"YearMonth": "2023-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 622.11, "totalRevenueExVAT": 518.63, "totalCost": 247.44, "totalQty": 53.0, "orderCount": 41, "margin": 271.19, "marginPct": 52.28968628887646}, {"YearMonth": "2023-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1347.8300000000002, "totalRevenueExVAT": 1123.11, "totalCost": 550.4, "totalQty": 40.0, "orderCount": 38, "margin": 572.7099999999999, "marginPct": 50.99322417216479}, {"YearMonth": "2023-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 924.4499999999999, "totalRevenueExVAT": 770.4200000000001, "totalCost": 357.76, "totalQty": 52.0, "orderCount": 50, "margin": 412.6600000000001, "marginPct": 53.56299161496327}, {"YearMonth": "2023-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2022.4699999999998, "totalRevenueExVAT": 1685.1699999999998, "totalCost": 688.34, "totalQty": 127.0, "orderCount": 101, "margin": 996.8299999999998, "marginPct": 59.15308247832562}, {"YearMonth": "2023-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1021.3499999999999, "totalRevenueExVAT": 851.22, "totalCost": 274.74, "totalQty": 57.0, "orderCount": 48, "margin": 576.48, "marginPct": 67.72397265101854}, {"YearMonth": "2023-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 553.35, "totalRevenueExVAT": 461.28, "totalCost": 116.25, "totalQty": 93.0, "orderCount": 85, "margin": 345.03, "marginPct": 74.79838709677419}, {"YearMonth": "2023-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 870.67, "totalRevenueExVAT": 725.42, "totalCost": 207.5, "totalQty": 83.0, "orderCount": 72, "margin": 517.92, "marginPct": 71.395881006865}, {"YearMonth": "2023-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 436.90999999999997, "totalRevenueExVAT": 364.19, "totalCost": 150.48, "totalQty": 22.0, "orderCount": 22, "margin": 213.71, "marginPct": 58.68090831708723}, {"YearMonth": "2023-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2386.75, "totalRevenueExVAT": 1988.96, "totalCost": 1110.4399999999998, "totalQty": 68.0, "orderCount": 54, "margin": 878.5200000000002, "marginPct": 44.16981739200387}, {"YearMonth": "2023-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1294.6, "totalRevenueExVAT": 1078.98, "totalCost": 445.55999999999995, "totalQty": 79.0, "orderCount": 73, "margin": 633.4200000000001, "marginPct": 58.70544403047323}, {"YearMonth": "2023-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1019.3999999999999, "totalRevenueExVAT": 849.6899999999999, "totalCost": 321.47999999999996, "totalQty": 114.0, "orderCount": 101, "margin": 528.21, "marginPct": 62.165024891430996}, {"YearMonth": "2023-08", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 640.0799999999999, "totalRevenueExVAT": 533.49, "totalCost": 209.50000000000003, "totalQty": 25.0, "orderCount": 25, "margin": 323.99, "marginPct": 60.73028547864065}, {"YearMonth": "2023-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1062.29, "totalRevenueExVAT": 885.1099999999999, "totalCost": 190.95000000000002, "totalQty": 67.0, "orderCount": 64, "margin": 694.1599999999999, "marginPct": 78.42641027668876}, {"YearMonth": "2023-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 799.27, "totalRevenueExVAT": 666.1899999999999, "totalCost": 176.70000000000002, "totalQty": 31.0, "orderCount": 29, "margin": 489.4899999999999, "marginPct": 73.47603536528618}, {"YearMonth": "2023-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1061.3799999999999, "totalRevenueExVAT": 884.66, "totalCost": 320.32, "totalQty": 56.0, "orderCount": 46, "margin": 564.3399999999999, "marginPct": 63.79173919924038}, {"YearMonth": "2023-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2040.54, "totalRevenueExVAT": 1700.6000000000001, "totalCost": 816.0, "totalQty": 100.0, "orderCount": 90, "margin": 884.6000000000001, "marginPct": 52.016935199341404}, {"YearMonth": "2023-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1212.6100000000001, "totalRevenueExVAT": 1012.6, "totalCost": 432.48, "totalQty": 106.0, "orderCount": 100, "margin": 580.12, "marginPct": 57.290144183290536}, {"YearMonth": "2023-08", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1536.32, "totalRevenueExVAT": 1280.3200000000002, "totalCost": 588.9, "totalQty": 65.0, "orderCount": 61, "margin": 691.4200000000002, "marginPct": 54.00368657835541}, {"YearMonth": "2023-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 672.55, "totalRevenueExVAT": 560.47, "totalCost": 301.6, "totalQty": 29.0, "orderCount": 28, "margin": 258.87, "marginPct": 46.188020768283764}, {"YearMonth": "2023-08", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 904.51, "totalRevenueExVAT": 753.76, "totalCost": 375.46, "totalQty": 31.0, "orderCount": 30, "margin": 378.3, "marginPct": 50.18838887709616}, {"YearMonth": "2023-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 780.3, "totalRevenueExVAT": 650.42, "totalCost": 308.72, "totalQty": 34.0, "orderCount": 32, "margin": 341.69999999999993, "marginPct": 52.53528489283846}, {"YearMonth": "2023-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 963.56, "totalRevenueExVAT": 804.7600000000001, "totalCost": 367.74, "totalQty": 81.0, "orderCount": 73, "margin": 437.0200000000001, "marginPct": 54.30438888612754}, {"YearMonth": "2023-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8041.150000000001, "totalRevenueExVAT": 6704.33, "totalCost": 3301.7, "totalQty": 241.0, "orderCount": 211, "margin": 3402.63, "marginPct": 50.75272249426863}, {"YearMonth": "2023-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3257.56, "totalRevenueExVAT": 2714.76, "totalCost": 1304.25, "totalQty": 185.0, "orderCount": 172, "margin": 1410.5100000000002, "marginPct": 51.95707907881361}, {"YearMonth": "2023-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 262.34999999999997, "totalRevenueExVAT": 218.7, "totalCost": 89.4, "totalQty": 15.0, "orderCount": 11, "margin": 129.29999999999998, "marginPct": 59.122085048010966}, {"YearMonth": "2023-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 963.09, "totalRevenueExVAT": 802.49, "totalCost": 322.91999999999996, "totalQty": 39.0, "orderCount": 38, "margin": 479.57000000000005, "marginPct": 59.76024623359793}, {"YearMonth": "2023-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 413.28999999999996, "totalRevenueExVAT": 344.35999999999996, "totalCost": 120.05999999999999, "totalQty": 29.0, "orderCount": 26, "margin": 224.29999999999995, "marginPct": 65.13532349866419}, {"YearMonth": "2023-08", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1211.5300000000002, "totalRevenueExVAT": 1009.64, "totalCost": 369.92, "totalQty": 34.0, "orderCount": 29, "margin": 639.72, "marginPct": 63.36119805079038}, {"YearMonth": "2023-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 657.0, "totalRevenueExVAT": 547.8000000000001, "totalCost": 183.0, "totalQty": 60.0, "orderCount": 58, "margin": 364.80000000000007, "marginPct": 66.59364731653888}, {"YearMonth": "2023-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 439.95, "totalRevenueExVAT": 366.66, "totalCost": 128.1, "totalQty": 21.0, "orderCount": 21, "margin": 238.56000000000003, "marginPct": 65.06300114547537}, {"YearMonth": "2023-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 664.15, "totalRevenueExVAT": 553.52, "totalCost": 232.36, "totalQty": 37.0, "orderCount": 35, "margin": 321.15999999999997, "marginPct": 58.02139037433155}, {"YearMonth": "2023-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 555.2199999999999, "totalRevenueExVAT": 462.5799999999999, "totalCost": 175.84, "totalQty": 56.0, "orderCount": 52, "margin": 286.7399999999999, "marginPct": 61.98711574214188}, {"YearMonth": "2023-09", "Description": "5-HTP 100mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 51.9, "totalRevenueExVAT": 43.26, "totalCost": 20.88, "totalQty": 2.0, "orderCount": 2, "margin": 22.38, "marginPct": 51.73370319001387}, {"YearMonth": "2023-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1242.36, "totalRevenueExVAT": 1036.62, "totalCost": 510.9, "totalQty": 78.0, "orderCount": 46, "margin": 525.7199999999999, "marginPct": 50.71482317531979}, {"YearMonth": "2023-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1640.68, "totalRevenueExVAT": 1367.12, "totalCost": 486.16, "totalQty": 59.0, "orderCount": 52, "margin": 880.9599999999998, "marginPct": 64.43911287963017}, {"YearMonth": "2023-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1003.0999999999999, "totalRevenueExVAT": 836.0300000000001, "totalCost": 280.16, "totalQty": 68.0, "orderCount": 66, "margin": 555.8700000000001, "marginPct": 66.48924081671711}, {"YearMonth": "2023-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 997.15, "totalRevenueExVAT": 830.8299999999999, "totalCost": 410.8, "totalQty": 79.0, "orderCount": 64, "margin": 420.0299999999999, "marginPct": 50.55546862775778}, {"YearMonth": "2023-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1840.1200000000001, "totalRevenueExVAT": 1533.31, "totalCost": 784.3199999999999, "totalQty": 57.0, "orderCount": 54, "margin": 748.99, "marginPct": 48.84791725091469}, {"YearMonth": "2023-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1064.47, "totalRevenueExVAT": 887.1, "totalCost": 412.8, "totalQty": 60.0, "orderCount": 56, "margin": 474.3, "marginPct": 53.4663510314508}, {"YearMonth": "2023-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2641.44, "totalRevenueExVAT": 2201.7400000000002, "totalCost": 856.36, "totalQty": 158.0, "orderCount": 134, "margin": 1345.38, "marginPct": 61.105307620336646}, {"YearMonth": "2023-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1148.8, "totalRevenueExVAT": 957.44, "totalCost": 308.48, "totalQty": 64.0, "orderCount": 49, "margin": 648.96, "marginPct": 67.7807486631016}, {"YearMonth": "2023-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 874.65, "totalRevenueExVAT": 729.12, "totalCost": 183.75, "totalQty": 147.0, "orderCount": 133, "margin": 545.37, "marginPct": 74.79838709677419}, {"YearMonth": "2023-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1205.78, "totalRevenueExVAT": 1005.1, "totalCost": 287.5, "totalQty": 115.0, "orderCount": 105, "margin": 717.6, "marginPct": 71.395881006865}, {"YearMonth": "2023-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 831.29, "totalRevenueExVAT": 698.4599999999999, "totalCost": 287.28, "totalQty": 42.0, "orderCount": 38, "margin": 411.17999999999995, "marginPct": 58.86951292844257}, {"YearMonth": "2023-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2457.25, "totalRevenueExVAT": 2049.2400000000002, "totalCost": 1126.77, "totalQty": 69.0, "orderCount": 45, "margin": 922.4700000000003, "marginPct": 45.015225156643446}, {"YearMonth": "2023-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1381.8, "totalRevenueExVAT": 1151.64, "totalCost": 485.03999999999996, "totalQty": 86.0, "orderCount": 74, "margin": 666.6000000000001, "marginPct": 57.882671668229655}, {"YearMonth": "2023-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1045.6599999999999, "totalRevenueExVAT": 872.8199999999999, "totalCost": 329.94, "totalQty": 117.0, "orderCount": 108, "margin": 542.8799999999999, "marginPct": 62.19839142091151}, {"YearMonth": "2023-09", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1066.7, "totalRevenueExVAT": 895.4399999999999, "totalCost": 360.34000000000003, "totalQty": 43.0, "orderCount": 41, "margin": 535.0999999999999, "marginPct": 59.7583310997945}, {"YearMonth": "2023-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 888.43, "totalRevenueExVAT": 740.25, "totalCost": 159.6, "totalQty": 56.0, "orderCount": 55, "margin": 580.65, "marginPct": 78.43971631205675}, {"YearMonth": "2023-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1139.21, "totalRevenueExVAT": 949.55, "totalCost": 250.8, "totalQty": 44.0, "orderCount": 40, "margin": 698.75, "marginPct": 73.58748881048919}, {"YearMonth": "2023-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 963.88, "totalRevenueExVAT": 808.1899999999999, "totalCost": 286.0, "totalQty": 50.0, "orderCount": 40, "margin": 522.1899999999999, "marginPct": 64.61228176542645}, {"YearMonth": "2023-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 651.35, "totalRevenueExVAT": 542.83, "totalCost": 277.44, "totalQty": 34.0, "orderCount": 29, "margin": 265.39000000000004, "marginPct": 48.89007608275151}, {"YearMonth": "2023-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2895.0499999999997, "totalRevenueExVAT": 2413.89, "totalCost": 938.4, "totalQty": 230.0, "orderCount": 173, "margin": 1475.4899999999998, "marginPct": 61.124989125436535}, {"YearMonth": "2023-09", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1573.53, "totalRevenueExVAT": 1311.3600000000001, "totalCost": 597.96, "totalQty": 66.0, "orderCount": 60, "margin": 713.4000000000001, "marginPct": 54.40153733528551}, {"YearMonth": "2023-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 463.96999999999997, "totalRevenueExVAT": 389.34, "totalCost": 187.20000000000002, "totalQty": 18.0, "orderCount": 16, "margin": 202.13999999999996, "marginPct": 51.91863153028201}, {"YearMonth": "2023-09", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1560.84, "totalRevenueExVAT": 1300.69, "totalCost": 622.3, "totalQty": 49.0, "orderCount": 45, "margin": 678.3900000000001, "marginPct": 52.15616326718896}, {"YearMonth": "2023-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 893.8299999999999, "totalRevenueExVAT": 746.0699999999999, "totalCost": 354.12, "totalQty": 39.0, "orderCount": 34, "margin": 391.94999999999993, "marginPct": 52.535284892838476}, {"YearMonth": "2023-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 836.5, "totalRevenueExVAT": 697.2, "totalCost": 322.34000000000003, "totalQty": 71.0, "orderCount": 65, "margin": 374.86, "marginPct": 53.766494549627076}, {"YearMonth": "2023-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10519.45, "totalRevenueExVAT": 8767.03, "totalCost": 4301.8, "totalQty": 314.0, "orderCount": 267, "margin": 4465.2300000000005, "marginPct": 50.93207163657476}, {"YearMonth": "2023-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3924.5, "totalRevenueExVAT": 3273.1600000000003, "totalCost": 1572.1499999999999, "totalQty": 223.0, "orderCount": 217, "margin": 1701.0100000000004, "marginPct": 51.968434173703706}, {"YearMonth": "2023-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 419.77, "totalRevenueExVAT": 349.92, "totalCost": 143.04, "totalQty": 24.0, "orderCount": 23, "margin": 206.88000000000002, "marginPct": 59.12208504801097}, {"YearMonth": "2023-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1791.4199999999998, "totalRevenueExVAT": 1492.72, "totalCost": 596.16, "totalQty": 72.0, "orderCount": 60, "margin": 896.5600000000001, "marginPct": 60.062168390589}, {"YearMonth": "2023-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 684.65, "totalRevenueExVAT": 571.92, "totalCost": 198.72, "totalQty": 48.0, "orderCount": 43, "margin": 373.19999999999993, "marginPct": 65.25388166177088}, {"YearMonth": "2023-09", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2671.1200000000003, "totalRevenueExVAT": 2226.0, "totalCost": 816.0000000000001, "totalQty": 75.0, "orderCount": 70, "margin": 1410.0, "marginPct": 63.342318059299195}, {"YearMonth": "2023-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1533.04, "totalRevenueExVAT": 1278.2, "totalCost": 427.0, "totalQty": 140.0, "orderCount": 128, "margin": 851.2, "marginPct": 66.59364731653888}, {"YearMonth": "2023-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 775.15, "totalRevenueExVAT": 646.02, "totalCost": 225.7, "totalQty": 37.0, "orderCount": 36, "margin": 420.32, "marginPct": 65.06300114547537}, {"YearMonth": "2023-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1112.8999999999999, "totalRevenueExVAT": 927.5200000000001, "totalCost": 395.64, "totalQty": 63.0, "orderCount": 55, "margin": 531.8800000000001, "marginPct": 57.34431602553045}, {"YearMonth": "2023-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 437.79999999999995, "totalRevenueExVAT": 364.76, "totalCost": 141.3, "totalQty": 45.0, "orderCount": 44, "margin": 223.45999999999998, "marginPct": 61.26219980260993}, {"YearMonth": "2023-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1224.6299999999999, "totalRevenueExVAT": 1021.9999999999999, "totalCost": 504.34999999999997, "totalQty": 77.0, "orderCount": 58, "margin": 517.6499999999999, "marginPct": 50.65068493150684}, {"YearMonth": "2023-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1473.36, "totalRevenueExVAT": 1227.68, "totalCost": 494.40000000000003, "totalQty": 60.0, "orderCount": 55, "margin": 733.28, "marginPct": 59.7289195881663}, {"YearMonth": "2023-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1240.54, "totalRevenueExVAT": 1034.02, "totalCost": 370.8, "totalQty": 90.0, "orderCount": 84, "margin": 663.22, "marginPct": 64.13995860815072}, {"YearMonth": "2023-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1112.95, "totalRevenueExVAT": 927.43, "totalCost": 424.4, "totalQty": 81.0, "orderCount": 70, "margin": 503.03, "marginPct": 54.239133950810306}, {"YearMonth": "2023-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2020.0500000000002, "totalRevenueExVAT": 1683.25, "totalCost": 825.6, "totalQty": 60.0, "orderCount": 56, "margin": 857.65, "marginPct": 50.95202732808555}, {"YearMonth": "2023-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1279.95, "totalRevenueExVAT": 1066.6200000000001, "totalCost": 495.36, "totalQty": 72.0, "orderCount": 69, "margin": 571.2600000000001, "marginPct": 53.55796816110705}, {"YearMonth": "2023-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3724.4199999999996, "totalRevenueExVAT": 3104.27, "totalCost": 1197.82, "totalQty": 221.0, "orderCount": 172, "margin": 1906.45, "marginPct": 61.41379454751037}, {"YearMonth": "2023-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 947.4699999999999, "totalRevenueExVAT": 789.6800000000001, "totalCost": 245.82000000000002, "totalQty": 51.0, "orderCount": 41, "margin": 543.86, "marginPct": 68.87093506230372}, {"YearMonth": "2023-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 862.65, "totalRevenueExVAT": 719.2, "totalCost": 181.25, "totalQty": 145.0, "orderCount": 122, "margin": 537.95, "marginPct": 74.7983870967742}, {"YearMonth": "2023-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1521.05, "totalRevenueExVAT": 1267.3, "totalCost": 362.5, "totalQty": 145.0, "orderCount": 122, "margin": 904.8, "marginPct": 71.395881006865}, {"YearMonth": "2023-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 729.83, "totalRevenueExVAT": 608.18, "totalCost": 246.24, "totalQty": 36.0, "orderCount": 35, "margin": 361.93999999999994, "marginPct": 59.511986582919526}, {"YearMonth": "2023-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2883.33, "totalRevenueExVAT": 2402.6800000000003, "totalCost": 1355.3899999999999, "totalQty": 83.0, "orderCount": 63, "margin": 1047.2900000000004, "marginPct": 43.58840960926966}, {"YearMonth": "2023-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1430.75, "totalRevenueExVAT": 1192.77, "totalCost": 490.67999999999995, "totalQty": 87.0, "orderCount": 73, "margin": 702.09, "marginPct": 58.86214442013129}, {"YearMonth": "2023-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1188.7099999999998, "totalRevenueExVAT": 992.18, "totalCost": 375.06, "totalQty": 133.0, "orderCount": 121, "margin": 617.1199999999999, "marginPct": 62.19839142091153}, {"YearMonth": "2023-10", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1561.06, "totalRevenueExVAT": 1308.58, "totalCost": 511.18000000000006, "totalQty": 61.0, "orderCount": 52, "margin": 797.3999999999999, "marginPct": 60.93628207675494}, {"YearMonth": "2023-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1042.29, "totalRevenueExVAT": 869.16, "totalCost": 190.95000000000002, "totalQty": 67.0, "orderCount": 65, "margin": 678.2099999999999, "marginPct": 78.0305122186939}, {"YearMonth": "2023-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1074.37, "totalRevenueExVAT": 895.4399999999999, "totalCost": 245.1, "totalQty": 43.0, "orderCount": 37, "margin": 650.3399999999999, "marginPct": 72.62798177432323}, {"YearMonth": "2023-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1849.31, "totalRevenueExVAT": 1543.1799999999998, "totalCost": 537.68, "totalQty": 94.0, "orderCount": 65, "margin": 1005.4999999999999, "marginPct": 65.15766145232573}, {"YearMonth": "2023-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 224.35, "totalRevenueExVAT": 186.96, "totalCost": 106.08, "totalQty": 13.0, "orderCount": 10, "margin": 80.88000000000001, "marginPct": 43.260590500641854}, {"YearMonth": "2023-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 3450.1, "totalRevenueExVAT": 2875.52, "totalCost": 1097.52, "totalQty": 269.0, "orderCount": 196, "margin": 1778.0, "marginPct": 61.83229468061428}, {"YearMonth": "2023-10", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1120.9199999999998, "totalRevenueExVAT": 934.08, "totalCost": 434.88, "totalQty": 48.0, "orderCount": 43, "margin": 499.20000000000005, "marginPct": 53.442959917780065}, {"YearMonth": "2023-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 674.6999999999999, "totalRevenueExVAT": 562.38, "totalCost": 270.40000000000003, "totalQty": 26.0, "orderCount": 24, "margin": 291.97999999999996, "marginPct": 51.91863153028201}, {"YearMonth": "2023-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1355.47, "totalRevenueExVAT": 1126.91, "totalCost": 469.9, "totalQty": 37.0, "orderCount": 32, "margin": 657.0100000000001, "marginPct": 58.30190520982155}, {"YearMonth": "2023-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 947.02, "totalRevenueExVAT": 789.26, "totalCost": 363.2, "totalQty": 40.0, "orderCount": 36, "margin": 426.06, "marginPct": 53.982211185160786}, {"YearMonth": "2023-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 907.8499999999999, "totalRevenueExVAT": 756.54, "totalCost": 340.5, "totalQty": 75.0, "orderCount": 72, "margin": 416.03999999999996, "marginPct": 54.99246569910381}, {"YearMonth": "2023-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12203.35, "totalRevenueExVAT": 10167.36, "totalCost": 5041.599999999999, "totalQty": 368.0, "orderCount": 327, "margin": 5125.760000000001, "marginPct": 50.41387341453436}, {"YearMonth": "2023-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3948.0899999999997, "totalRevenueExVAT": 3291.04, "totalCost": 1586.25, "totalQty": 225.0, "orderCount": 213, "margin": 1704.79, "marginPct": 51.80095045942924}, {"YearMonth": "2023-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 541.91, "totalRevenueExVAT": 451.98, "totalCost": 184.76, "totalQty": 31.0, "orderCount": 29, "margin": 267.22, "marginPct": 59.12208504801097}, {"YearMonth": "2023-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1116.42, "totalRevenueExVAT": 931.39, "totalCost": 380.88, "totalQty": 46.0, "orderCount": 39, "margin": 550.51, "marginPct": 59.10628200861079}, {"YearMonth": "2023-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 473.19, "totalRevenueExVAT": 394.91999999999996, "totalCost": 140.76, "totalQty": 34.0, "orderCount": 34, "margin": 254.15999999999997, "marginPct": 64.35733819507749}, {"YearMonth": "2023-10", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1158.8200000000002, "totalRevenueExVAT": 970.6800000000001, "totalCost": 359.04, "totalQty": 33.0, "orderCount": 33, "margin": 611.6400000000001, "marginPct": 63.011497094820136}, {"YearMonth": "2023-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1575.28, "totalRevenueExVAT": 1314.72, "totalCost": 442.25, "totalQty": 145.0, "orderCount": 136, "margin": 872.47, "marginPct": 66.36165875623708}, {"YearMonth": "2023-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 794.97, "totalRevenueExVAT": 663.48, "totalCost": 231.79999999999998, "totalQty": 38.0, "orderCount": 36, "margin": 431.68000000000006, "marginPct": 65.06300114547538}, {"YearMonth": "2023-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 817.4799999999999, "totalRevenueExVAT": 682.12, "totalCost": 301.44, "totalQty": 48.0, "orderCount": 43, "margin": 380.68, "marginPct": 55.808362165014955}, {"YearMonth": "2023-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 812.2099999999999, "totalRevenueExVAT": 677.27, "totalCost": 263.76, "totalQty": 84.0, "orderCount": 78, "margin": 413.51, "marginPct": 61.05541364596099}, {"YearMonth": "2023-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 724.42, "totalRevenueExVAT": 607.3499999999999, "totalCost": 301.3, "totalQty": 46.0, "orderCount": 38, "margin": 306.0499999999999, "marginPct": 50.391043055898564}, {"YearMonth": "2023-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1320.85, "totalRevenueExVAT": 1100.43, "totalCost": 436.72, "totalQty": 53.0, "orderCount": 48, "margin": 663.71, "marginPct": 60.313695555373805}, {"YearMonth": "2023-11", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1065.8899999999999, "totalRevenueExVAT": 888.96, "totalCost": 329.6, "totalQty": 80.0, "orderCount": 78, "margin": 559.36, "marginPct": 62.922966162706985}, {"YearMonth": "2023-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1196.0, "totalRevenueExVAT": 996.8000000000001, "totalCost": 424.0, "totalQty": 80.0, "orderCount": 68, "margin": 572.8000000000001, "marginPct": 57.46388443017657}, {"YearMonth": "2023-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 702.7800000000001, "totalRevenueExVAT": 585.6, "totalCost": 288.96, "totalQty": 21.0, "orderCount": 19, "margin": 296.64000000000004, "marginPct": 50.65573770491804}, {"YearMonth": "2023-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 579.8199999999999, "totalRevenueExVAT": 483.18, "totalCost": 233.92, "totalQty": 34.0, "orderCount": 33, "margin": 249.26000000000002, "marginPct": 51.58740014073431}, {"YearMonth": "2023-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3035.97, "totalRevenueExVAT": 2530.48, "totalCost": 986.4399999999999, "totalQty": 182.0, "orderCount": 147, "margin": 1544.04, "marginPct": 61.017672536435775}, {"YearMonth": "2023-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 892.63, "totalRevenueExVAT": 743.3399999999999, "totalCost": 221.72000000000003, "totalQty": 46.0, "orderCount": 43, "margin": 521.6199999999999, "marginPct": 70.1724648209433}, {"YearMonth": "2023-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 961.87, "totalRevenueExVAT": 803.52, "totalCost": 205.0, "totalQty": 164.0, "orderCount": 150, "margin": 598.52, "marginPct": 74.48725607327758}, {"YearMonth": "2023-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1856.73, "totalRevenueExVAT": 1546.98, "totalCost": 442.5, "totalQty": 177.0, "orderCount": 143, "margin": 1104.48, "marginPct": 71.395881006865}, {"YearMonth": "2023-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 654.89, "totalRevenueExVAT": 545.57, "totalCost": 218.88, "totalQty": 32.0, "orderCount": 26, "margin": 326.69000000000005, "marginPct": 59.8804919625346}, {"YearMonth": "2023-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2537.38, "totalRevenueExVAT": 2118.12, "totalCost": 1192.09, "totalQty": 73.0, "orderCount": 51, "margin": 926.03, "marginPct": 43.719430438313225}, {"YearMonth": "2023-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 410.36, "totalRevenueExVAT": 342.75, "totalCost": 141.0, "totalQty": 25.0, "orderCount": 23, "margin": 201.75, "marginPct": 58.86214442013129}, {"YearMonth": "2023-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 250.29999999999998, "totalRevenueExVAT": 208.88, "totalCost": 81.78, "totalQty": 29.0, "orderCount": 27, "margin": 127.1, "marginPct": 60.84833397165836}, {"YearMonth": "2023-11", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 939.4399999999999, "totalRevenueExVAT": 782.9499999999999, "totalCost": 310.06000000000006, "totalQty": 37.0, "orderCount": 35, "margin": 472.8899999999999, "marginPct": 60.39849287949421}, {"YearMonth": "2023-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1064.28, "totalRevenueExVAT": 886.4399999999999, "totalCost": 190.95000000000002, "totalQty": 67.0, "orderCount": 65, "margin": 695.4899999999999, "marginPct": 78.45877893596858}, {"YearMonth": "2023-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1284.55, "totalRevenueExVAT": 1070.6499999999999, "totalCost": 285.0, "totalQty": 50.0, "orderCount": 40, "margin": 785.6499999999999, "marginPct": 73.38065661047027}, {"YearMonth": "2023-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1298.81, "totalRevenueExVAT": 1082.55, "totalCost": 377.52, "totalQty": 66.0, "orderCount": 51, "margin": 705.03, "marginPct": 65.1267839822641}, {"YearMonth": "2023-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 345.09999999999997, "totalRevenueExVAT": 287.6, "totalCost": 146.88, "totalQty": 18.0, "orderCount": 15, "margin": 140.72000000000003, "marginPct": 48.92906815020863}, {"YearMonth": "2023-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 3962.33, "totalRevenueExVAT": 3310.3399999999997, "totalCost": 1268.88, "totalQty": 311.0, "orderCount": 212, "margin": 2041.4599999999996, "marginPct": 61.66919410090805}, {"YearMonth": "2023-11", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1570.69, "totalRevenueExVAT": 1311.3200000000002, "totalCost": 607.02, "totalQty": 67.0, "orderCount": 61, "margin": 704.3000000000002, "marginPct": 53.70923954488608}, {"YearMonth": "2023-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 337.36, "totalRevenueExVAT": 281.19, "totalCost": 135.20000000000002, "totalQty": 13.0, "orderCount": 13, "margin": 145.98999999999998, "marginPct": 51.91863153028201}, {"YearMonth": "2023-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1703.44, "totalRevenueExVAT": 1419.41, "totalCost": 609.5999999999999, "totalQty": 48.0, "orderCount": 47, "margin": 809.8100000000002, "marginPct": 57.052578183893324}, {"YearMonth": "2023-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 985.55, "totalRevenueExVAT": 821.1999999999999, "totalCost": 363.2, "totalQty": 40.0, "orderCount": 36, "margin": 457.99999999999994, "marginPct": 55.772040915733065}, {"YearMonth": "2023-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 819.77, "totalRevenueExVAT": 683.0, "totalCost": 290.56, "totalQty": 64.0, "orderCount": 62, "margin": 392.44, "marginPct": 57.45827232796486}, {"YearMonth": "2023-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11497.34, "totalRevenueExVAT": 9581.76, "totalCost": 4740.2, "totalQty": 346.0, "orderCount": 301, "margin": 4841.56, "marginPct": 50.52892161774037}, {"YearMonth": "2023-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3791.87, "totalRevenueExVAT": 3160.9, "totalCost": 1522.8, "totalQty": 216.0, "orderCount": 208, "margin": 1638.1000000000001, "marginPct": 51.823847638330854}, {"YearMonth": "2023-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 664.63, "totalRevenueExVAT": 554.04, "totalCost": 232.44, "totalQty": 39.0, "orderCount": 36, "margin": 321.59999999999997, "marginPct": 58.04635044401126}, {"YearMonth": "2023-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1686.32, "totalRevenueExVAT": 1405.3999999999999, "totalCost": 563.04, "totalQty": 68.0, "orderCount": 54, "margin": 842.3599999999999, "marginPct": 59.93738437455528}, {"YearMonth": "2023-11", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 525.7004, "totalRevenueExVAT": 439.48199999999997, "totalCost": 153.17999999999998, "totalQty": 37.0, "orderCount": 30, "margin": 286.302, "marginPct": 65.14533018417139}, {"YearMonth": "2023-11", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1151.63, "totalRevenueExVAT": 959.72, "totalCost": 359.04, "totalQty": 33.0, "orderCount": 30, "margin": 600.6800000000001, "marginPct": 62.58908848414121}, {"YearMonth": "2023-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1281.05, "totalRevenueExVAT": 1068.21, "totalCost": 356.84999999999997, "totalQty": 117.0, "orderCount": 107, "margin": 711.3600000000001, "marginPct": 66.59364731653889}, {"YearMonth": "2023-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 859.8199999999999, "totalRevenueExVAT": 715.86, "totalCost": 250.1, "totalQty": 41.0, "orderCount": 33, "margin": 465.76, "marginPct": 65.06300114547537}, {"YearMonth": "2023-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1017.4499999999999, "totalRevenueExVAT": 847.98, "totalCost": 395.64, "totalQty": 63.0, "orderCount": 53, "margin": 452.34000000000003, "marginPct": 53.34323922734027}, {"YearMonth": "2023-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 572.35, "totalRevenueExVAT": 477.44, "totalCost": 200.96, "totalQty": 64.0, "orderCount": 61, "margin": 276.48, "marginPct": 57.9088471849866}, {"YearMonth": "2023-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 606.9, "totalRevenueExVAT": 506.4, "totalCost": 268.55, "totalQty": 41.0, "orderCount": 31, "margin": 237.84999999999997, "marginPct": 46.96879936808847}, {"YearMonth": "2023-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1336.34, "totalRevenueExVAT": 1116.08, "totalCost": 444.96000000000004, "totalQty": 54.0, "orderCount": 43, "margin": 671.1199999999999, "marginPct": 60.13189018708336}, {"YearMonth": "2023-12", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 999.15, "totalRevenueExVAT": 833.24, "totalCost": 313.12, "totalQty": 76.0, "orderCount": 71, "margin": 520.12, "marginPct": 62.42139119581394}, {"YearMonth": "2023-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1168.3899999999999, "totalRevenueExVAT": 973.73, "totalCost": 429.29999999999995, "totalQty": 81.0, "orderCount": 64, "margin": 544.4300000000001, "marginPct": 55.9118030665585}, {"YearMonth": "2023-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2473.27, "totalRevenueExVAT": 2061.4, "totalCost": 1114.56, "totalQty": 81.0, "orderCount": 71, "margin": 946.8400000000001, "marginPct": 45.93189094789949}, {"YearMonth": "2023-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1103.48, "totalRevenueExVAT": 921.1600000000001, "totalCost": 440.32, "totalQty": 64.0, "orderCount": 58, "margin": 480.8400000000001, "marginPct": 52.19940075556907}, {"YearMonth": "2023-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2167.36, "totalRevenueExVAT": 1807.27, "totalCost": 731.7, "totalQty": 135.0, "orderCount": 109, "margin": 1075.57, "marginPct": 59.51352039263641}, {"YearMonth": "2023-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1340.54, "totalRevenueExVAT": 1116.59, "totalCost": 342.22, "totalQty": 71.0, "orderCount": 58, "margin": 774.3699999999999, "marginPct": 69.35132859867991}, {"YearMonth": "2023-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 891.97, "totalRevenueExVAT": 743.3, "totalCost": 197.5, "totalQty": 158.0, "orderCount": 133, "margin": 545.8, "marginPct": 73.42930176241087}, {"YearMonth": "2023-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 898.07, "totalRevenueExVAT": 748.18, "totalCost": 227.5, "totalQty": 91.0, "orderCount": 80, "margin": 520.68, "marginPct": 69.59287871902482}, {"YearMonth": "2023-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 607.38, "totalRevenueExVAT": 508.88000000000005, "totalCost": 205.2, "totalQty": 30.0, "orderCount": 29, "margin": 303.68000000000006, "marginPct": 59.676151548498666}, {"YearMonth": "2023-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2732.09, "totalRevenueExVAT": 2288.8, "totalCost": 1306.3999999999999, "totalQty": 80.0, "orderCount": 61, "margin": 982.4000000000003, "marginPct": 42.92205522544566}, {"YearMonth": "2023-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 17.9, "totalRevenueExVAT": 14.92, "totalCost": 5.64, "totalQty": 2.0, "orderCount": 2, "margin": 9.280000000000001, "marginPct": 62.198391420911534}, {"YearMonth": "2023-12", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1194.6299999999999, "totalRevenueExVAT": 999.25, "totalCost": 393.86, "totalQty": 47.0, "orderCount": 46, "margin": 605.39, "marginPct": 60.58443832874656}, {"YearMonth": "2023-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 952.1999999999999, "totalRevenueExVAT": 793.39, "totalCost": 179.55, "totalQty": 63.0, "orderCount": 60, "margin": 613.8399999999999, "marginPct": 77.36926353999924}, {"YearMonth": "2023-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 868.04, "totalRevenueExVAT": 723.5, "totalCost": 193.8, "totalQty": 34.0, "orderCount": 26, "margin": 529.7, "marginPct": 73.21354526606774}, {"YearMonth": "2023-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1181.11, "totalRevenueExVAT": 984.39, "totalCost": 348.91999999999996, "totalQty": 61.0, "orderCount": 45, "margin": 635.47, "marginPct": 64.55469884903341}, {"YearMonth": "2023-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2064.67, "totalRevenueExVAT": 1720.33, "totalCost": 734.4, "totalQty": 90.0, "orderCount": 73, "margin": 985.93, "marginPct": 57.31051600565008}, {"YearMonth": "2023-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1797.1, "totalRevenueExVAT": 1497.1399999999999, "totalCost": 607.92, "totalQty": 149.0, "orderCount": 126, "margin": 889.2199999999999, "marginPct": 59.394578997288164}, {"YearMonth": "2023-12", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 935.99, "totalRevenueExVAT": 783.21, "totalCost": 389.58000000000004, "totalQty": 43.0, "orderCount": 35, "margin": 393.63, "marginPct": 50.2585513463822}, {"YearMonth": "2023-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 285.46, "totalRevenueExVAT": 237.92999999999998, "totalCost": 114.4, "totalQty": 11.0, "orderCount": 10, "margin": 123.52999999999997, "marginPct": 51.91863153028201}, {"YearMonth": "2023-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1062.92, "totalRevenueExVAT": 885.66, "totalCost": 431.4, "totalQty": 31.0, "orderCount": 29, "margin": 454.26, "marginPct": 51.290562969988486}, {"YearMonth": "2023-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 913.22, "totalRevenueExVAT": 760.89, "totalCost": 363.2, "totalQty": 40.0, "orderCount": 35, "margin": 397.69, "marginPct": 52.266424844589885}, {"YearMonth": "2023-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 461.90999999999997, "totalRevenueExVAT": 384.81, "totalCost": 172.52, "totalQty": 38.0, "orderCount": 37, "margin": 212.29, "marginPct": 55.16748525246226}, {"YearMonth": "2023-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 10020.710000000001, "totalRevenueExVAT": 8363.09, "totalCost": 4315.5, "totalQty": 315.0, "orderCount": 265, "margin": 4047.59, "marginPct": 48.39825949499527}, {"YearMonth": "2023-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3671.0699999999997, "totalRevenueExVAT": 3059.48, "totalCost": 1515.75, "totalQty": 215.0, "orderCount": 207, "margin": 1543.73, "marginPct": 50.45726724802908}, {"YearMonth": "2023-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 662.92, "totalRevenueExVAT": 552.54, "totalCost": 238.4, "totalQty": 40.0, "orderCount": 34, "margin": 314.14, "marginPct": 56.85380243964238}, {"YearMonth": "2023-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1079.97, "totalRevenueExVAT": 912.65, "totalCost": 389.15999999999997, "totalQty": 47.0, "orderCount": 39, "margin": 523.49, "marginPct": 57.359338190982314}, {"YearMonth": "2023-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 424.12, "totalRevenueExVAT": 353.44, "totalCost": 132.48, "totalQty": 32.0, "orderCount": 30, "margin": 220.96, "marginPct": 62.516976007243095}, {"YearMonth": "2023-12", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1846.6000000000001, "totalRevenueExVAT": 1538.8400000000001, "totalCost": 576.64, "totalQty": 53.0, "orderCount": 46, "margin": 962.2000000000002, "marginPct": 62.52761820592134}, {"YearMonth": "2023-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1251.95, "totalRevenueExVAT": 1043.5500000000002, "totalCost": 356.84999999999997, "totalQty": 117.0, "orderCount": 109, "margin": 686.7000000000003, "marginPct": 65.8042259594653}, {"YearMonth": "2023-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 816.91, "totalRevenueExVAT": 681.8000000000001, "totalCost": 250.1, "totalQty": 41.0, "orderCount": 38, "margin": 431.70000000000005, "marginPct": 63.31768847169258}, {"YearMonth": "2023-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 744.53, "totalRevenueExVAT": 620.4, "totalCost": 294.68, "totalQty": 44.0, "orderCount": 36, "margin": 325.71999999999997, "marginPct": 52.50161186331399}, {"YearMonth": "2023-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 762.74, "totalRevenueExVAT": 635.4799999999999, "totalCost": 275.68, "totalQty": 80.0, "orderCount": 71, "margin": 359.7999999999999, "marginPct": 56.618618996663926}, {"YearMonth": "2024-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1274.64, "totalRevenueExVAT": 1062.2, "totalCost": 615.6999999999999, "totalQty": 94.0, "orderCount": 63, "margin": 446.5000000000001, "marginPct": 42.035398230088504}, {"YearMonth": "2024-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2067.1200000000003, "totalRevenueExVAT": 1722.6000000000001, "totalCost": 716.88, "totalQty": 87.0, "orderCount": 79, "margin": 1005.7200000000001, "marginPct": 58.38383838383838}, {"YearMonth": "2024-01", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1391.95, "totalRevenueExVAT": 1163.84, "totalCost": 453.2, "totalQty": 110.0, "orderCount": 104, "margin": 710.6399999999999, "marginPct": 61.059939510585636}, {"YearMonth": "2024-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1970.0500000000002, "totalRevenueExVAT": 1641.45, "totalCost": 821.5, "totalQty": 155.0, "orderCount": 129, "margin": 819.95, "marginPct": 49.95278564683664}, {"YearMonth": "2024-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 3232.3199999999997, "totalRevenueExVAT": 2693.6, "totalCost": 1554.8799999999999, "totalQty": 113.0, "orderCount": 91, "margin": 1138.72, "marginPct": 42.27502227502228}, {"YearMonth": "2024-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1449.65, "totalRevenueExVAT": 1207.5, "totalCost": 653.6, "totalQty": 95.0, "orderCount": 87, "margin": 553.9, "marginPct": 45.87163561076604}, {"YearMonth": "2024-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3755.98, "totalRevenueExVAT": 3146.62, "totalCost": 1420.04, "totalQty": 262.0, "orderCount": 178, "margin": 1726.58, "marginPct": 54.87094088259783}, {"YearMonth": "2024-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1712.96, "totalRevenueExVAT": 1427.13, "totalCost": 491.64000000000004, "totalQty": 102.0, "orderCount": 82, "margin": 935.49, "marginPct": 65.5504403943579}, {"YearMonth": "2024-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1057.3999999999999, "totalRevenueExVAT": 879.89, "totalCost": 261.25, "totalQty": 209.0, "orderCount": 175, "margin": 618.64, "marginPct": 70.30878859857482}, {"YearMonth": "2024-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1774.0, "totalRevenueExVAT": 1478.57, "totalCost": 497.5, "totalQty": 199.0, "orderCount": 168, "margin": 981.0699999999999, "marginPct": 66.35262449528938}, {"YearMonth": "2024-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1110.1200000000001, "totalRevenueExVAT": 925.19, "totalCost": 389.88, "totalQty": 57.0, "orderCount": 51, "margin": 535.3100000000001, "marginPct": 57.85946670413645}, {"YearMonth": "2024-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3749.85, "totalRevenueExVAT": 3124.2200000000003, "totalCost": 2057.58, "totalQty": 126.0, "orderCount": 82, "margin": 1066.6400000000003, "marginPct": 34.14100159399787}, {"YearMonth": "2024-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2180.88, "totalRevenueExVAT": 1817.4, "totalCost": 879.8399999999999, "totalQty": 156.0, "orderCount": 112, "margin": 937.5600000000002, "marginPct": 51.58798283261803}, {"YearMonth": "2024-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 821.88, "totalRevenueExVAT": 684.72, "totalCost": 304.56, "totalQty": 108.0, "orderCount": 91, "margin": 380.16, "marginPct": 55.520504731861195}, {"YearMonth": "2024-01", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 2120.3399999999997, "totalRevenueExVAT": 1766.6799999999998, "totalCost": 804.4800000000001, "totalQty": 96.0, "orderCount": 84, "margin": 962.1999999999997, "marginPct": 54.463739896302656}, {"YearMonth": "2024-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 1139.04, "totalRevenueExVAT": 949.2, "totalCost": 239.4, "totalQty": 84.0, "orderCount": 79, "margin": 709.8000000000001, "marginPct": 74.77876106194691}, {"YearMonth": "2024-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1433.8999999999999, "totalRevenueExVAT": 1194.7, "totalCost": 370.5, "totalQty": 65.0, "orderCount": 50, "margin": 824.2, "marginPct": 68.9880304678999}, {"YearMonth": "2024-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1763.8400000000001, "totalRevenueExVAT": 1469.52, "totalCost": 594.88, "totalQty": 104.0, "orderCount": 77, "margin": 874.64, "marginPct": 59.518754423213025}, {"YearMonth": "2024-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 3861.04, "totalRevenueExVAT": 3215.9400000000005, "totalCost": 1493.28, "totalQty": 183.0, "orderCount": 164, "margin": 1722.6600000000005, "marginPct": 53.56629787869177}, {"YearMonth": "2024-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2451.0499999999997, "totalRevenueExVAT": 2043.24, "totalCost": 913.92, "totalQty": 224.0, "orderCount": 187, "margin": 1129.3200000000002, "marginPct": 55.271040112762094}, {"YearMonth": "2024-01", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1669.51, "totalRevenueExVAT": 1390.78, "totalCost": 742.9200000000001, "totalQty": 82.0, "orderCount": 74, "margin": 647.8599999999999, "marginPct": 46.582493277153816}, {"YearMonth": "2024-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 519.0, "totalRevenueExVAT": 432.59999999999997, "totalCost": 208.0, "totalQty": 20.0, "orderCount": 14, "margin": 224.59999999999997, "marginPct": 51.91863153028201}, {"YearMonth": "2024-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 2128.26, "totalRevenueExVAT": 1779.5900000000001, "totalCost": 952.0, "totalQty": 68.0, "orderCount": 56, "margin": 827.5900000000001, "marginPct": 46.504531942750866}, {"YearMonth": "2024-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1546.19, "totalRevenueExVAT": 1288.19, "totalCost": 681.0, "totalQty": 75.0, "orderCount": 69, "margin": 607.19, "marginPct": 47.13512758211134}, {"YearMonth": "2024-01", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 901.88, "totalRevenueExVAT": 751.98, "totalCost": 372.28000000000003, "totalQty": 82.0, "orderCount": 79, "margin": 379.7, "marginPct": 50.49336418521769}, {"YearMonth": "2024-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 16918.44, "totalRevenueExVAT": 14112.54, "totalCost": 8055.599999999999, "totalQty": 588.0, "orderCount": 452, "margin": 6056.940000000001, "marginPct": 42.91885089431102}, {"YearMonth": "2024-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4389.94, "totalRevenueExVAT": 3656.9300000000003, "totalCost": 2044.5, "totalQty": 290.0, "orderCount": 276, "margin": 1612.4300000000003, "marginPct": 44.09244913082832}, {"YearMonth": "2024-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 936.81, "totalRevenueExVAT": 780.57, "totalCost": 375.48, "totalQty": 63.0, "orderCount": 49, "margin": 405.09000000000003, "marginPct": 51.896690879741726}, {"YearMonth": "2024-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2309.77, "totalRevenueExVAT": 1924.3000000000002, "totalCost": 910.8, "totalQty": 110.0, "orderCount": 90, "margin": 1013.5000000000002, "marginPct": 52.668502832198726}, {"YearMonth": "2024-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 392.96, "totalRevenueExVAT": 327.66, "totalCost": 132.48, "totalQty": 32.0, "orderCount": 29, "margin": 195.18000000000004, "marginPct": 59.567844717084796}, {"YearMonth": "2024-01", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1968.81, "totalRevenueExVAT": 1654.95, "totalCost": 707.2, "totalQty": 65.0, "orderCount": 58, "margin": 947.75, "marginPct": 57.26759116589625}, {"YearMonth": "2024-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1889.7700000000002, "totalRevenueExVAT": 1575.28, "totalCost": 619.15, "totalQty": 203.0, "orderCount": 190, "margin": 956.13, "marginPct": 60.69587628865979}, {"YearMonth": "2024-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1101.25, "totalRevenueExVAT": 920.08, "totalCost": 384.29999999999995, "totalQty": 63.0, "orderCount": 60, "margin": 535.7800000000001, "marginPct": 58.23189287888011}, {"YearMonth": "2024-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1031.01, "totalRevenueExVAT": 858.88, "totalCost": 445.44, "totalQty": 64.0, "orderCount": 55, "margin": 413.44, "marginPct": 48.1371087928465}, {"YearMonth": "2024-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 702.1800000000001, "totalRevenueExVAT": 585.15, "totalCost": 292.32, "totalQty": 84.0, "orderCount": 76, "margin": 292.83, "marginPct": 50.043578569597535}, {"YearMonth": "2024-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 448.09, "totalRevenueExVAT": 372.8, "totalCost": 189.95, "totalQty": 29.0, "orderCount": 21, "margin": 182.85000000000002, "marginPct": 49.04774678111588}, {"YearMonth": "2024-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 888.23, "totalRevenueExVAT": 742.9499999999999, "totalCost": 263.68, "totalQty": 32.0, "orderCount": 28, "margin": 479.2699999999999, "marginPct": 64.50905175314624}, {"YearMonth": "2024-02", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 888.54, "totalRevenueExVAT": 742.5600000000001, "totalCost": 255.44, "totalQty": 62.0, "orderCount": 60, "margin": 487.12000000000006, "marginPct": 65.60008618832148}, {"YearMonth": "2024-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 642.85, "totalRevenueExVAT": 535.7800000000001, "totalCost": 227.9, "totalQty": 43.0, "orderCount": 36, "margin": 307.8800000000001, "marginPct": 57.463884430176584}, {"YearMonth": "2024-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1123.78, "totalRevenueExVAT": 936.4, "totalCost": 467.84, "totalQty": 34.0, "orderCount": 33, "margin": 468.56, "marginPct": 50.03844510892781}, {"YearMonth": "2024-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 836.97, "totalRevenueExVAT": 697.11, "totalCost": 330.24, "totalQty": 48.0, "orderCount": 47, "margin": 366.87, "marginPct": 52.62727546585187}, {"YearMonth": "2024-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2501.7, "totalRevenueExVAT": 2088.23, "totalCost": 840.1, "totalQty": 155.0, "orderCount": 119, "margin": 1248.13, "marginPct": 59.76975716276465}, {"YearMonth": "2024-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 814.08, "totalRevenueExVAT": 678.24, "totalCost": 231.36, "totalQty": 48.0, "orderCount": 34, "margin": 446.88, "marginPct": 65.88818117480538}, {"YearMonth": "2024-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 606.01, "totalRevenueExVAT": 505.17, "totalCost": 127.5, "totalQty": 102.0, "orderCount": 92, "margin": 377.67, "marginPct": 74.7609715541303}, {"YearMonth": "2024-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 573.8100000000001, "totalRevenueExVAT": 478.08000000000004, "totalCost": 137.5, "totalQty": 55.0, "orderCount": 51, "margin": 340.58000000000004, "marginPct": 71.23912315930389}, {"YearMonth": "2024-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 506.84999999999997, "totalRevenueExVAT": 425.59999999999997, "totalCost": 157.32, "totalQty": 23.0, "orderCount": 19, "margin": 268.28, "marginPct": 63.035714285714285}, {"YearMonth": "2024-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2109.78, "totalRevenueExVAT": 1758.56, "totalCost": 996.1299999999999, "totalQty": 61.0, "orderCount": 49, "margin": 762.4300000000001, "marginPct": 43.35535893003367}, {"YearMonth": "2024-02", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1085.7, "totalRevenueExVAT": 904.86, "totalCost": 372.23999999999995, "totalQty": 66.0, "orderCount": 59, "margin": 532.6200000000001, "marginPct": 58.8621444201313}, {"YearMonth": "2024-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 865.17, "totalRevenueExVAT": 722.5, "totalCost": 273.53999999999996, "totalQty": 97.0, "orderCount": 90, "margin": 448.96000000000004, "marginPct": 62.13979238754326}, {"YearMonth": "2024-02", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 596.9, "totalRevenueExVAT": 497.42, "totalCost": 201.12, "totalQty": 24.0, "orderCount": 24, "margin": 296.3, "marginPct": 59.56736761690322}, {"YearMonth": "2024-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 670.74, "totalRevenueExVAT": 558.84, "totalCost": 122.55, "totalQty": 43.0, "orderCount": 43, "margin": 436.29, "marginPct": 78.07064633884475}, {"YearMonth": "2024-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 879.72, "totalRevenueExVAT": 733.25, "totalCost": 193.8, "totalQty": 34.0, "orderCount": 27, "margin": 539.45, "marginPct": 73.56972383225367}, {"YearMonth": "2024-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 698.3, "totalRevenueExVAT": 581.98, "totalCost": 205.92, "totalQty": 36.0, "orderCount": 29, "margin": 376.06000000000006, "marginPct": 64.61734080208943}, {"YearMonth": "2024-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1697.6799999999998, "totalRevenueExVAT": 1413.71, "totalCost": 563.04, "totalQty": 69.0, "orderCount": 52, "margin": 850.6700000000001, "marginPct": 60.17287845456282}, {"YearMonth": "2024-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1507.62, "totalRevenueExVAT": 1257.59, "totalCost": 489.6, "totalQty": 120.0, "orderCount": 109, "margin": 767.9899999999999, "marginPct": 61.06839271940775}, {"YearMonth": "2024-02", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1126.9199999999998, "totalRevenueExVAT": 939.0500000000001, "totalCost": 453.0, "totalQty": 50.0, "orderCount": 46, "margin": 486.05000000000007, "marginPct": 51.75975720142698}, {"YearMonth": "2024-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 311.4, "totalRevenueExVAT": 259.56, "totalCost": 124.80000000000001, "totalQty": 12.0, "orderCount": 10, "margin": 134.76, "marginPct": 51.91863153028201}, {"YearMonth": "2024-02", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 955.21, "totalRevenueExVAT": 795.91, "totalCost": 378.0, "totalQty": 27.0, "orderCount": 25, "margin": 417.90999999999997, "marginPct": 52.50719302433692}, {"YearMonth": "2024-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 436.65, "totalRevenueExVAT": 363.82, "totalCost": 163.44, "totalQty": 18.0, "orderCount": 18, "margin": 200.38, "marginPct": 55.07668627343192}, {"YearMonth": "2024-02", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 659.8399999999999, "totalRevenueExVAT": 549.76, "totalCost": 236.08, "totalQty": 52.0, "orderCount": 51, "margin": 313.67999999999995, "marginPct": 57.05762514551803}, {"YearMonth": "2024-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7089.110000000001, "totalRevenueExVAT": 5906.89, "totalCost": 2959.2, "totalQty": 216.0, "orderCount": 199, "margin": 2947.6900000000005, "marginPct": 49.902571403902904}, {"YearMonth": "2024-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 2721.37, "totalRevenueExVAT": 2267.77, "totalCost": 1099.8, "totalQty": 156.0, "orderCount": 149, "margin": 1167.97, "marginPct": 51.50301838369853}, {"YearMonth": "2024-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 627.92, "totalRevenueExVAT": 523.42, "totalCost": 214.56, "totalQty": 36.0, "orderCount": 31, "margin": 308.85999999999996, "marginPct": 59.00806235909977}, {"YearMonth": "2024-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 814.63, "totalRevenueExVAT": 678.8, "totalCost": 273.24, "totalQty": 33.0, "orderCount": 29, "margin": 405.55999999999995, "marginPct": 59.746611667648786}, {"YearMonth": "2024-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 395.96, "totalRevenueExVAT": 329.91999999999996, "totalCost": 115.91999999999999, "totalQty": 28.0, "orderCount": 23, "margin": 213.99999999999997, "marginPct": 64.86420950533463}, {"YearMonth": "2024-02", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1346.3500000000001, "totalRevenueExVAT": 1121.98, "totalCost": 413.44000000000005, "totalQty": 38.0, "orderCount": 34, "margin": 708.54, "marginPct": 63.15085830406959}, {"YearMonth": "2024-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 722.9799999999999, "totalRevenueExVAT": 602.58, "totalCost": 204.35, "totalQty": 67.0, "orderCount": 65, "margin": 398.23, "marginPct": 66.08749045769856}, {"YearMonth": "2024-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 439.95, "totalRevenueExVAT": 366.66, "totalCost": 128.1, "totalQty": 21.0, "orderCount": 21, "margin": 238.56000000000003, "marginPct": 65.06300114547537}, {"YearMonth": "2024-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 397.63, "totalRevenueExVAT": 331.59, "totalCost": 146.16, "totalQty": 21.0, "orderCount": 19, "margin": 185.42999999999998, "marginPct": 55.92146928435719}, {"YearMonth": "2024-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 477.59999999999997, "totalRevenueExVAT": 397.91999999999996, "totalCost": 167.04, "totalQty": 48.0, "orderCount": 45, "margin": 230.87999999999997, "marginPct": 58.021712907117006}, {"YearMonth": "2024-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 586.04, "totalRevenueExVAT": 487.73999999999995, "totalCost": 242.35, "totalQty": 37.0, "orderCount": 32, "margin": 245.38999999999996, "marginPct": 50.31164144831263}, {"YearMonth": "2024-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1099.27, "totalRevenueExVAT": 915.29, "totalCost": 329.6, "totalQty": 40.0, "orderCount": 36, "margin": 585.6899999999999, "marginPct": 63.989555222934804}, {"YearMonth": "2024-03", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1214.09, "totalRevenueExVAT": 1011.6800000000001, "totalCost": 341.96000000000004, "totalQty": 83.0, "orderCount": 80, "margin": 669.72, "marginPct": 66.19879803890558}, {"YearMonth": "2024-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1303.1299999999999, "totalRevenueExVAT": 1085.79, "totalCost": 434.59999999999997, "totalQty": 82.0, "orderCount": 66, "margin": 651.19, "marginPct": 59.973843929304934}, {"YearMonth": "2024-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2196.63, "totalRevenueExVAT": 1830.35, "totalCost": 921.92, "totalQty": 67.0, "orderCount": 61, "margin": 908.43, "marginPct": 49.631491244843886}, {"YearMonth": "2024-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 873.93, "totalRevenueExVAT": 728.5, "totalCost": 344.0, "totalQty": 50.0, "orderCount": 48, "margin": 384.5, "marginPct": 52.77968428277282}, {"YearMonth": "2024-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3712.27, "totalRevenueExVAT": 3094.26, "totalCost": 1203.24, "totalQty": 222.0, "orderCount": 165, "margin": 1891.0200000000002, "marginPct": 61.11380426984157}, {"YearMonth": "2024-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1000.6400000000001, "totalRevenueExVAT": 833.6700000000001, "totalCost": 284.38, "totalQty": 59.0, "orderCount": 47, "margin": 549.2900000000001, "marginPct": 65.88818117480538}, {"YearMonth": "2024-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 725.48, "totalRevenueExVAT": 605.12, "totalCost": 153.75, "totalQty": 123.0, "orderCount": 110, "margin": 451.37, "marginPct": 74.59181649920677}, {"YearMonth": "2024-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1059.49, "totalRevenueExVAT": 882.74, "totalCost": 252.5, "totalQty": 101.0, "orderCount": 83, "margin": 630.24, "marginPct": 71.395881006865}, {"YearMonth": "2024-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 710.25, "totalRevenueExVAT": 592.96, "totalCost": 218.88, "totalQty": 32.0, "orderCount": 31, "margin": 374.08000000000004, "marginPct": 63.08688613059903}, {"YearMonth": "2024-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2332.21, "totalRevenueExVAT": 1943.41, "totalCost": 1169.59, "totalQty": 63.0, "orderCount": 50, "margin": 773.8200000000002, "marginPct": 39.81764012740493}, {"YearMonth": "2024-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1069.25, "totalRevenueExVAT": 891.1500000000001, "totalCost": 366.59999999999997, "totalQty": 65.0, "orderCount": 55, "margin": 524.5500000000002, "marginPct": 58.8621444201313}, {"YearMonth": "2024-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 992.9599999999999, "totalRevenueExVAT": 828.06, "totalCost": 315.84, "totalQty": 112.0, "orderCount": 108, "margin": 512.22, "marginPct": 61.8578363886675}, {"YearMonth": "2024-03", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 1130.09, "totalRevenueExVAT": 942.97, "totalCost": 377.1, "totalQty": 45.0, "orderCount": 41, "margin": 565.87, "marginPct": 60.00933221629532}, {"YearMonth": "2024-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 918.87, "totalRevenueExVAT": 765.5, "totalCost": 165.3, "totalQty": 58.0, "orderCount": 53, "margin": 600.2, "marginPct": 78.40627041149575}, {"YearMonth": "2024-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 983.55, "totalRevenueExVAT": 819.77, "totalCost": 216.60000000000002, "totalQty": 38.0, "orderCount": 32, "margin": 603.17, "marginPct": 73.57795479219781}, {"YearMonth": "2024-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1155.19, "totalRevenueExVAT": 962.8, "totalCost": 337.47999999999996, "totalQty": 59.0, "orderCount": 44, "margin": 625.3199999999999, "marginPct": 64.9480681346074}, {"YearMonth": "2024-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1689.1299999999999, "totalRevenueExVAT": 1407.48, "totalCost": 554.88, "totalQty": 68.0, "orderCount": 62, "margin": 852.6, "marginPct": 60.57634921988234}, {"YearMonth": "2024-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2029.4299999999998, "totalRevenueExVAT": 1690.76, "totalCost": 652.8, "totalQty": 160.0, "orderCount": 141, "margin": 1037.96, "marginPct": 61.39014407721971}, {"YearMonth": "2024-03", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1099.36, "totalRevenueExVAT": 916.12, "totalCost": 425.82000000000005, "totalQty": 47.0, "orderCount": 44, "margin": 490.29999999999995, "marginPct": 53.519189625813205}, {"YearMonth": "2024-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 596.86, "totalRevenueExVAT": 497.49, "totalCost": 239.20000000000002, "totalQty": 23.0, "orderCount": 21, "margin": 258.28999999999996, "marginPct": 51.91863153028201}, {"YearMonth": "2024-03", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1289.6100000000001, "totalRevenueExVAT": 1074.56, "totalCost": 504.0, "totalQty": 36.0, "orderCount": 34, "margin": 570.56, "marginPct": 53.097081596188204}, {"YearMonth": "2024-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 840.8299999999999, "totalRevenueExVAT": 700.62, "totalCost": 308.72, "totalQty": 34.0, "orderCount": 29, "margin": 391.9, "marginPct": 55.93617082013074}, {"YearMonth": "2024-03", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 802.0799999999999, "totalRevenueExVAT": 670.05, "totalCost": 286.02, "totalQty": 63.0, "orderCount": 63, "margin": 384.03, "marginPct": 57.31363331094694}, {"YearMonth": "2024-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 9288.970000000001, "totalRevenueExVAT": 7740.09, "totalCost": 3822.2999999999997, "totalQty": 279.0, "orderCount": 245, "margin": 3917.7900000000004, "marginPct": 50.61685329240358}, {"YearMonth": "2024-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3831.17, "totalRevenueExVAT": 3192.32, "totalCost": 1536.8999999999999, "totalQty": 218.0, "orderCount": 210, "margin": 1655.4200000000003, "marginPct": 51.85633019246192}, {"YearMonth": "2024-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 381.28, "totalRevenueExVAT": 317.84, "totalCost": 131.12, "totalQty": 22.0, "orderCount": 19, "margin": 186.71999999999997, "marginPct": 58.74653913918952}, {"YearMonth": "2024-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1327.3799999999999, "totalRevenueExVAT": 1106.02, "totalCost": 447.11999999999995, "totalQty": 54.0, "orderCount": 44, "margin": 658.9000000000001, "marginPct": 59.573967921014095}, {"YearMonth": "2024-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 540.4599999999999, "totalRevenueExVAT": 450.32, "totalCost": 157.32, "totalQty": 38.0, "orderCount": 33, "margin": 293.0, "marginPct": 65.06484277846864}, {"YearMonth": "2024-03", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 909.57, "totalRevenueExVAT": 757.96, "totalCost": 293.76000000000005, "totalQty": 27.0, "orderCount": 24, "margin": 464.2, "marginPct": 61.24333737928123}, {"YearMonth": "2024-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1256.6699999999998, "totalRevenueExVAT": 1049.95, "totalCost": 350.75, "totalQty": 115.0, "orderCount": 112, "margin": 699.2, "marginPct": 66.59364731653888}, {"YearMonth": "2024-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 941.61, "totalRevenueExVAT": 785.7, "totalCost": 274.5, "totalQty": 45.0, "orderCount": 39, "margin": 511.20000000000005, "marginPct": 65.06300114547537}, {"YearMonth": "2024-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 606.4, "totalRevenueExVAT": 505.28, "totalCost": 222.72, "totalQty": 32.0, "orderCount": 28, "margin": 282.55999999999995, "marginPct": 55.92146928435719}, {"YearMonth": "2024-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 586.0999999999999, "totalRevenueExVAT": 489.10999999999996, "totalCost": 208.8, "totalQty": 60.0, "orderCount": 59, "margin": 280.30999999999995, "marginPct": 57.310216515712206}, {"YearMonth": "2024-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 850.74, "totalRevenueExVAT": 711.01, "totalCost": 353.7, "totalQty": 54.0, "orderCount": 42, "margin": 357.31, "marginPct": 50.25386422131896}, {"YearMonth": "2024-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1313.23, "totalRevenueExVAT": 1094.62, "totalCost": 395.52000000000004, "totalQty": 48.0, "orderCount": 45, "margin": 699.0999999999999, "marginPct": 63.866912718569004}, {"YearMonth": "2024-04", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1205.04, "totalRevenueExVAT": 1004.22, "totalCost": 337.84000000000003, "totalQty": 82.0, "orderCount": 80, "margin": 666.38, "marginPct": 66.35796936926171}, {"YearMonth": "2024-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 902.79, "totalRevenueExVAT": 752.2099999999999, "totalCost": 302.09999999999997, "totalQty": 57.0, "orderCount": 51, "margin": 450.10999999999996, "marginPct": 59.83834301591311}, {"YearMonth": "2024-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1334.26, "totalRevenueExVAT": 1111.79, "totalCost": 550.4, "totalQty": 40.0, "orderCount": 39, "margin": 561.39, "marginPct": 50.49424801446316}, {"YearMonth": "2024-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1484.98, "totalRevenueExVAT": 1237.14, "totalCost": 577.92, "totalQty": 84.0, "orderCount": 79, "margin": 659.2200000000001, "marginPct": 53.285804355206366}, {"YearMonth": "2024-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2202.68, "totalRevenueExVAT": 1836.76, "totalCost": 715.4399999999999, "totalQty": 132.0, "orderCount": 99, "margin": 1121.3200000000002, "marginPct": 61.04880332759861}, {"YearMonth": "2024-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1085.44, "totalRevenueExVAT": 904.32, "totalCost": 308.48, "totalQty": 64.0, "orderCount": 53, "margin": 595.84, "marginPct": 65.88818117480538}, {"YearMonth": "2024-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 825.96, "totalRevenueExVAT": 689.4399999999999, "totalCost": 173.75, "totalQty": 139.0, "orderCount": 130, "margin": 515.6899999999999, "marginPct": 74.79838709677419}, {"YearMonth": "2024-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1049.0, "totalRevenueExVAT": 874.0, "totalCost": 250.0, "totalQty": 100.0, "orderCount": 86, "margin": 624.0, "marginPct": 71.395881006865}, {"YearMonth": "2024-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 876.72, "totalRevenueExVAT": 730.7099999999999, "totalCost": 266.76, "totalQty": 39.0, "orderCount": 37, "margin": 463.94999999999993, "marginPct": 63.493041014903305}, {"YearMonth": "2024-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2385.1000000000004, "totalRevenueExVAT": 1987.39, "totalCost": 1290.25, "totalQty": 65.0, "orderCount": 53, "margin": 697.1400000000001, "marginPct": 35.07816784828343}, {"YearMonth": "2024-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1363.09, "totalRevenueExVAT": 1137.93, "totalCost": 468.11999999999995, "totalQty": 83.0, "orderCount": 73, "margin": 669.8100000000002, "marginPct": 58.8621444201313}, {"YearMonth": "2024-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1063.56, "totalRevenueExVAT": 887.74, "totalCost": 335.58, "totalQty": 119.0, "orderCount": 109, "margin": 552.1600000000001, "marginPct": 62.198391420911534}, {"YearMonth": "2024-04", "Description": "Marine Collagen 400mg", "SKUDescription": "180 Capsules", "Category": "Amino Acids", "totalRevenue": 996.54, "totalRevenueExVAT": 830.55, "totalCost": 326.82000000000005, "totalQty": 39.0, "orderCount": 33, "margin": 503.7299999999999, "marginPct": 60.65017157305399}, {"YearMonth": "2024-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 800.73, "totalRevenueExVAT": 667.15, "totalCost": 145.35, "totalQty": 51.0, "orderCount": 49, "margin": 521.8, "marginPct": 78.21329536086337}, {"YearMonth": "2024-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 721.42, "totalRevenueExVAT": 601.3, "totalCost": 159.6, "totalQty": 28.0, "orderCount": 21, "margin": 441.69999999999993, "marginPct": 73.45750873108264}, {"YearMonth": "2024-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1308.76, "totalRevenueExVAT": 1090.8999999999999, "totalCost": 394.68, "totalQty": 69.0, "orderCount": 52, "margin": 696.2199999999998, "marginPct": 63.82069850582087}, {"YearMonth": "2024-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2432.7, "totalRevenueExVAT": 2027.01, "totalCost": 807.84, "totalQty": 99.0, "orderCount": 77, "margin": 1219.17, "marginPct": 60.14622522829192}, {"YearMonth": "2024-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1829.0, "totalRevenueExVAT": 1523.52, "totalCost": 591.6, "totalQty": 145.0, "orderCount": 134, "margin": 931.92, "marginPct": 61.16887208569628}, {"YearMonth": "2024-04", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1392.54, "totalRevenueExVAT": 1159.64, "totalCost": 534.5400000000001, "totalQty": 59.0, "orderCount": 53, "margin": 625.1, "marginPct": 53.90466006691732}, {"YearMonth": "2024-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 467.11, "totalRevenueExVAT": 389.335, "totalCost": 197.6, "totalQty": 19.0, "orderCount": 19, "margin": 191.73499999999999, "marginPct": 49.246792607908354}, {"YearMonth": "2024-04", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1345.01, "totalRevenueExVAT": 1120.75, "totalCost": 518.0, "totalQty": 37.0, "orderCount": 34, "margin": 602.75, "marginPct": 53.78095025652465}, {"YearMonth": "2024-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 927.65, "totalRevenueExVAT": 775.46, "totalCost": 345.04, "totalQty": 38.0, "orderCount": 35, "margin": 430.42, "marginPct": 55.5051195419493}, {"YearMonth": "2024-04", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 951.8904, "totalRevenueExVAT": 793.0519999999999, "totalCost": 340.5, "totalQty": 75.0, "orderCount": 72, "margin": 452.5519999999999, "marginPct": 57.06460610401335}, {"YearMonth": "2024-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8732.28, "totalRevenueExVAT": 7276.12, "totalCost": 3630.5, "totalQty": 265.0, "orderCount": 243, "margin": 3645.62, "marginPct": 50.10390152993628}, {"YearMonth": "2024-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3998.41, "totalRevenueExVAT": 3332.92, "totalCost": 1600.35, "totalQty": 227.0, "orderCount": 224, "margin": 1732.5700000000002, "marginPct": 51.98354595969901}, {"YearMonth": "2024-04", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 608.67, "totalRevenueExVAT": 507.38, "totalCost": 208.6, "totalQty": 35.0, "orderCount": 31, "margin": 298.78, "marginPct": 58.88683038353896}, {"YearMonth": "2024-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1459.6, "totalRevenueExVAT": 1216.21, "totalCost": 488.52, "totalQty": 59.0, "orderCount": 48, "margin": 727.69, "marginPct": 59.832594699928464}, {"YearMonth": "2024-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 497.10999999999996, "totalRevenueExVAT": 414.2, "totalCost": 144.89999999999998, "totalQty": 35.0, "orderCount": 35, "margin": 269.3, "marginPct": 65.01690004828585}, {"YearMonth": "2024-04", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1563.8500000000001, "totalRevenueExVAT": 1303.24, "totalCost": 478.72, "totalQty": 44.0, "orderCount": 39, "margin": 824.52, "marginPct": 63.26693471655259}, {"YearMonth": "2024-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1126.08, "totalRevenueExVAT": 940.3900000000001, "totalCost": 314.15, "totalQty": 103.0, "orderCount": 97, "margin": 626.2400000000001, "marginPct": 66.59364731653888}, {"YearMonth": "2024-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 754.1999999999999, "totalRevenueExVAT": 628.5600000000001, "totalCost": 219.6, "totalQty": 36.0, "orderCount": 33, "margin": 408.96000000000004, "marginPct": 65.06300114547537}, {"YearMonth": "2024-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 701.15, "totalRevenueExVAT": 584.23, "totalCost": 264.48, "totalQty": 38.0, "orderCount": 34, "margin": 319.75, "marginPct": 54.73015764339386}, {"YearMonth": "2024-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 676.5999999999999, "totalRevenueExVAT": 563.7199999999999, "totalCost": 236.64, "totalQty": 68.0, "orderCount": 63, "margin": 327.0799999999999, "marginPct": 58.021712907117006}, {"YearMonth": "2024-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 645.7303999999999, "totalRevenueExVAT": 538.242, "totalCost": 268.55, "totalQty": 41.0, "orderCount": 32, "margin": 269.69199999999995, "marginPct": 50.106086109965396}, {"YearMonth": "2024-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1377.97, "totalRevenueExVAT": 1148.19, "totalCost": 412.0, "totalQty": 50.0, "orderCount": 44, "margin": 736.19, "marginPct": 64.11743700955417}, {"YearMonth": "2024-05", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1091.43, "totalRevenueExVAT": 909.5000000000001, "totalCost": 317.24, "totalQty": 77.0, "orderCount": 74, "margin": 592.2600000000001, "marginPct": 65.11929631665751}, {"YearMonth": "2024-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 807.0899999999999, "totalRevenueExVAT": 672.4699999999999, "totalCost": 270.3, "totalQty": 51.0, "orderCount": 43, "margin": 402.1699999999999, "marginPct": 59.80489835977812}, {"YearMonth": "2024-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1456.51, "totalRevenueExVAT": 1213.6299999999999, "totalCost": 605.4399999999999, "totalQty": 44.0, "orderCount": 41, "margin": 608.1899999999999, "marginPct": 50.11329647421372}, {"YearMonth": "2024-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 786.27, "totalRevenueExVAT": 655.2, "totalCost": 309.6, "totalQty": 45.0, "orderCount": 42, "margin": 345.6, "marginPct": 52.74725274725275}, {"YearMonth": "2024-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3068.6099999999997, "totalRevenueExVAT": 2557.25, "totalCost": 1049.7, "totalQty": 186.0, "orderCount": 145, "margin": 1507.55, "marginPct": 58.951999217909865}, {"YearMonth": "2024-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 983.6800000000001, "totalRevenueExVAT": 819.5400000000001, "totalCost": 279.56, "totalQty": 58.0, "orderCount": 48, "margin": 539.98, "marginPct": 65.88818117480537}, {"YearMonth": "2024-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 815.2, "totalRevenueExVAT": 679.52, "totalCost": 171.25, "totalQty": 137.0, "orderCount": 118, "margin": 508.27, "marginPct": 74.79838709677419}, {"YearMonth": "2024-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 933.61, "totalRevenueExVAT": 777.86, "totalCost": 222.5, "totalQty": 89.0, "orderCount": 79, "margin": 555.36, "marginPct": 71.395881006865}, {"YearMonth": "2024-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 690.8299999999999, "totalRevenueExVAT": 575.75, "totalCost": 212.04, "totalQty": 31.0, "orderCount": 28, "margin": 363.71000000000004, "marginPct": 63.17151541467651}, {"YearMonth": "2024-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2700.69, "totalRevenueExVAT": 2250.38, "totalCost": 1389.5, "totalQty": 70.0, "orderCount": 56, "margin": 860.8800000000001, "marginPct": 38.25487251042047}, {"YearMonth": "2024-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1019.01, "totalRevenueExVAT": 850.0200000000001, "totalCost": 349.68, "totalQty": 62.0, "orderCount": 55, "margin": 500.3400000000001, "marginPct": 58.86214442013129}, {"YearMonth": "2024-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1038.1999999999998, "totalRevenueExVAT": 865.36, "totalCost": 329.94, "totalQty": 117.0, "orderCount": 105, "margin": 535.4200000000001, "marginPct": 61.872515484884914}, {"YearMonth": "2024-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 709.3299999999999, "totalRevenueExVAT": 591.4, "totalCost": 128.25, "totalQty": 45.0, "orderCount": 43, "margin": 463.15, "marginPct": 78.3141697666554}, {"YearMonth": "2024-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 848.5799999999999, "totalRevenueExVAT": 707.28, "totalCost": 188.10000000000002, "totalQty": 33.0, "orderCount": 27, "margin": 519.18, "marginPct": 73.40515778758059}, {"YearMonth": "2024-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 907.79, "totalRevenueExVAT": 756.56, "totalCost": 268.84, "totalQty": 47.0, "orderCount": 43, "margin": 487.71999999999997, "marginPct": 64.4654753092947}, {"YearMonth": "2024-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1266.47, "totalRevenueExVAT": 1060.28, "totalCost": 424.32, "totalQty": 52.0, "orderCount": 47, "margin": 635.96, "marginPct": 59.98038254046102}, {"YearMonth": "2024-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1564.02, "totalRevenueExVAT": 1304.47, "totalCost": 510.0, "totalQty": 125.0, "orderCount": 115, "margin": 794.47, "marginPct": 60.90366202365713}, {"YearMonth": "2024-05", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1608.23, "totalRevenueExVAT": 1341.24, "totalCost": 634.2, "totalQty": 70.0, "orderCount": 67, "margin": 707.04, "marginPct": 52.71539769168828}, {"YearMonth": "2024-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 467.09999999999997, "totalRevenueExVAT": 389.34, "totalCost": 187.20000000000002, "totalQty": 18.0, "orderCount": 17, "margin": 202.13999999999996, "marginPct": 51.91863153028201}, {"YearMonth": "2024-05", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 785.53, "totalRevenueExVAT": 661.98, "totalCost": 308.0, "totalQty": 22.0, "orderCount": 21, "margin": 353.98, "marginPct": 53.47291458956464}, {"YearMonth": "2024-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 854.05, "totalRevenueExVAT": 713.09, "totalCost": 317.8, "totalQty": 35.0, "orderCount": 34, "margin": 395.29, "marginPct": 55.43339550407382}, {"YearMonth": "2024-05", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 659.1999999999999, "totalRevenueExVAT": 549.1999999999999, "totalCost": 240.62, "totalQty": 53.0, "orderCount": 52, "margin": 308.5799999999999, "marginPct": 56.187181354697735}, {"YearMonth": "2024-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7289.830000000001, "totalRevenueExVAT": 6082.3099999999995, "totalCost": 3041.3999999999996, "totalQty": 222.0, "orderCount": 199, "margin": 3040.91, "marginPct": 49.99597192514029}, {"YearMonth": "2024-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3159.99, "totalRevenueExVAT": 2634.26, "totalCost": 1276.05, "totalQty": 181.0, "orderCount": 175, "margin": 1358.2100000000003, "marginPct": 51.559451231085774}, {"YearMonth": "2024-05", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 570.18, "totalRevenueExVAT": 475.3, "totalCost": 196.68, "totalQty": 33.0, "orderCount": 29, "margin": 278.62, "marginPct": 58.61981906164527}, {"YearMonth": "2024-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1006.66, "totalRevenueExVAT": 839.91, "totalCost": 339.47999999999996, "totalQty": 41.0, "orderCount": 35, "margin": 500.43, "marginPct": 59.581383719684254}, {"YearMonth": "2024-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 423.10999999999996, "totalRevenueExVAT": 354.0, "totalCost": 124.19999999999999, "totalQty": 30.0, "orderCount": 27, "margin": 229.8, "marginPct": 64.91525423728814}, {"YearMonth": "2024-05", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1209.63, "totalRevenueExVAT": 1009.6, "totalCost": 380.8, "totalQty": 35.0, "orderCount": 32, "margin": 628.8, "marginPct": 62.28209191759112}, {"YearMonth": "2024-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1072.52, "totalRevenueExVAT": 894.7400000000001, "totalCost": 298.9, "totalQty": 98.0, "orderCount": 96, "margin": 595.8400000000001, "marginPct": 66.59364731653889}, {"YearMonth": "2024-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 690.22, "totalRevenueExVAT": 576.1800000000001, "totalCost": 201.29999999999998, "totalQty": 33.0, "orderCount": 31, "margin": 374.8800000000001, "marginPct": 65.06300114547538}, {"YearMonth": "2024-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 511.65, "totalRevenueExVAT": 426.33, "totalCost": 187.92, "totalQty": 27.0, "orderCount": 25, "margin": 238.41, "marginPct": 55.921469284357194}, {"YearMonth": "2024-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 457.78, "totalRevenueExVAT": 381.34, "totalCost": 160.08, "totalQty": 46.0, "orderCount": 43, "margin": 221.25999999999996, "marginPct": 58.021712907117006}, {"YearMonth": "2024-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 647.39, "totalRevenueExVAT": 539.56, "totalCost": 275.09999999999997, "totalQty": 42.0, "orderCount": 30, "margin": 264.46, "marginPct": 49.01401141670991}, {"YearMonth": "2024-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1213.11, "totalRevenueExVAT": 1010.77, "totalCost": 370.8, "totalQty": 45.0, "orderCount": 41, "margin": 639.97, "marginPct": 63.315096411646564}, {"YearMonth": "2024-06", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 924.41, "totalRevenueExVAT": 773.6500000000001, "totalCost": 267.8, "totalQty": 65.0, "orderCount": 63, "margin": 505.8500000000001, "marginPct": 65.3848639565695}, {"YearMonth": "2024-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 969.04, "totalRevenueExVAT": 807.42, "totalCost": 339.2, "totalQty": 64.0, "orderCount": 56, "margin": 468.21999999999997, "marginPct": 57.98964603304352}, {"YearMonth": "2024-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1210.42, "totalRevenueExVAT": 1009.9399999999999, "totalCost": 522.88, "totalQty": 38.0, "orderCount": 34, "margin": 487.05999999999995, "marginPct": 48.2266273243955}, {"YearMonth": "2024-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 748.1999999999999, "totalRevenueExVAT": 625.2800000000001, "totalCost": 295.84, "totalQty": 43.0, "orderCount": 42, "margin": 329.4400000000001, "marginPct": 52.68679631525078}, {"YearMonth": "2024-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2731.88, "totalRevenueExVAT": 2277.58, "totalCost": 989.36, "totalQty": 166.0, "orderCount": 139, "margin": 1288.2199999999998, "marginPct": 56.56091114252847}, {"YearMonth": "2024-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1067.8, "totalRevenueExVAT": 892.6800000000001, "totalCost": 303.66, "totalQty": 63.0, "orderCount": 49, "margin": 589.02, "marginPct": 65.98333109288882}, {"YearMonth": "2024-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 737.14, "totalRevenueExVAT": 615.0, "totalCost": 156.25, "totalQty": 125.0, "orderCount": 107, "margin": 458.75, "marginPct": 74.59349593495935}, {"YearMonth": "2024-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 774.15, "totalRevenueExVAT": 645.0600000000001, "totalCost": 187.5, "totalQty": 75.0, "orderCount": 70, "margin": 457.56000000000006, "marginPct": 70.93293647102595}, {"YearMonth": "2024-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 619.92, "totalRevenueExVAT": 516.65, "totalCost": 191.51999999999998, "totalQty": 28.0, "orderCount": 25, "margin": 325.13, "marginPct": 62.930417110229364}, {"YearMonth": "2024-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2021.98, "totalRevenueExVAT": 1684.79, "totalCost": 1060.0, "totalQty": 53.0, "orderCount": 43, "margin": 624.79, "marginPct": 37.08414698567774}, {"YearMonth": "2024-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1142.33, "totalRevenueExVAT": 952.86, "totalCost": 400.44, "totalQty": 71.0, "orderCount": 63, "margin": 552.4200000000001, "marginPct": 57.97493860588124}, {"YearMonth": "2024-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 688.61, "totalRevenueExVAT": 574.38, "totalCost": 219.95999999999998, "totalQty": 78.0, "orderCount": 77, "margin": 354.42, "marginPct": 61.704794735192735}, {"YearMonth": "2024-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 952.4699999999999, "totalRevenueExVAT": 793.53, "totalCost": 176.70000000000002, "totalQty": 62.0, "orderCount": 61, "margin": 616.8299999999999, "marginPct": 77.73241087293485}, {"YearMonth": "2024-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1127.2, "totalRevenueExVAT": 942.97, "totalCost": 256.5, "totalQty": 45.0, "orderCount": 36, "margin": 686.47, "marginPct": 72.79871045738466}, {"YearMonth": "2024-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 993.5699999999999, "totalRevenueExVAT": 828.0899999999999, "totalCost": 291.71999999999997, "totalQty": 51.0, "orderCount": 43, "margin": 536.3699999999999, "marginPct": 64.7719450784335}, {"YearMonth": "2024-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1559.44, "totalRevenueExVAT": 1299.35, "totalCost": 530.4, "totalQty": 65.0, "orderCount": 63, "margin": 768.9499999999999, "marginPct": 59.179589794897446}, {"YearMonth": "2024-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1429.85, "totalRevenueExVAT": 1191.17, "totalCost": 469.2, "totalQty": 115.0, "orderCount": 111, "margin": 721.97, "marginPct": 60.61015640084958}, {"YearMonth": "2024-06", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1176.26, "totalRevenueExVAT": 980.1700000000001, "totalCost": 462.06, "totalQty": 51.0, "orderCount": 47, "margin": 518.1100000000001, "marginPct": 52.85919789424285}, {"YearMonth": "2024-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 400.71, "totalRevenueExVAT": 336.33, "totalCost": 166.4, "totalQty": 16.0, "orderCount": 15, "margin": 169.92999999999998, "marginPct": 50.52478220795052}, {"YearMonth": "2024-06", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1101.16, "totalRevenueExVAT": 917.53, "totalCost": 434.0, "totalQty": 31.0, "orderCount": 28, "margin": 483.53, "marginPct": 52.69909430754307}, {"YearMonth": "2024-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 693.91, "totalRevenueExVAT": 578.17, "totalCost": 263.32, "totalQty": 29.0, "orderCount": 28, "margin": 314.84999999999997, "marginPct": 54.45630177975336}, {"YearMonth": "2024-06", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 802.4, "totalRevenueExVAT": 668.96, "totalCost": 290.56, "totalQty": 64.0, "orderCount": 62, "margin": 378.40000000000003, "marginPct": 56.56541497249462}, {"YearMonth": "2024-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7053.320000000001, "totalRevenueExVAT": 5879.72, "totalCost": 2986.6, "totalQty": 218.0, "orderCount": 199, "margin": 2893.1200000000003, "marginPct": 49.205064186729984}, {"YearMonth": "2024-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3457.17, "totalRevenueExVAT": 2881.04, "totalCost": 1402.95, "totalQty": 199.0, "orderCount": 193, "margin": 1478.09, "marginPct": 51.304042984477825}, {"YearMonth": "2024-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 575.38, "totalRevenueExVAT": 480.37, "totalCost": 208.6, "totalQty": 35.0, "orderCount": 31, "margin": 271.77, "marginPct": 56.57513999625289}, {"YearMonth": "2024-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1417.21, "totalRevenueExVAT": 1180.86, "totalCost": 480.23999999999995, "totalQty": 58.0, "orderCount": 50, "margin": 700.6199999999999, "marginPct": 59.33133478989888}, {"YearMonth": "2024-06", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 440.79999999999995, "totalRevenueExVAT": 367.28, "totalCost": 132.48, "totalQty": 32.0, "orderCount": 28, "margin": 234.79999999999998, "marginPct": 63.929427140056625}, {"YearMonth": "2024-06", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 902.3900000000001, "totalRevenueExVAT": 751.96, "totalCost": 282.88, "totalQty": 26.0, "orderCount": 22, "margin": 469.08000000000004, "marginPct": 62.38097771158041}, {"YearMonth": "2024-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1042.57, "totalRevenueExVAT": 869.0500000000001, "totalCost": 295.84999999999997, "totalQty": 97.0, "orderCount": 92, "margin": 573.2, "marginPct": 65.95707956964502}, {"YearMonth": "2024-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 656.66, "totalRevenueExVAT": 548.22, "totalCost": 195.2, "totalQty": 32.0, "orderCount": 27, "margin": 353.02000000000004, "marginPct": 64.3938564809748}, {"YearMonth": "2024-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 390.37, "totalRevenueExVAT": 325.27, "totalCost": 146.16, "totalQty": 21.0, "orderCount": 19, "margin": 179.10999999999999, "marginPct": 55.065022904048945}, {"YearMonth": "2024-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 466.71, "totalRevenueExVAT": 388.78999999999996, "totalCost": 167.04, "totalQty": 48.0, "orderCount": 46, "margin": 221.74999999999997, "marginPct": 57.035931994135645}, {"YearMonth": "2024-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 1163.1499999999999, "totalRevenueExVAT": 966.3800000000001, "totalCost": 530.55, "totalQty": 81.0, "orderCount": 53, "margin": 435.83000000000015, "marginPct": 45.099236325255085}, {"YearMonth": "2024-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 2047.72, "totalRevenueExVAT": 1708.27, "totalCost": 683.92, "totalQty": 83.0, "orderCount": 68, "margin": 1024.35, "marginPct": 59.96417428158311}, {"YearMonth": "2024-07", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1384.74, "totalRevenueExVAT": 1154.63, "totalCost": 428.48, "totalQty": 104.0, "orderCount": 101, "margin": 726.1500000000001, "marginPct": 62.89027653880465}, {"YearMonth": "2024-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1897.1000000000001, "totalRevenueExVAT": 1582.0, "totalCost": 747.3, "totalQty": 141.0, "orderCount": 117, "margin": 834.7, "marginPct": 52.76232616940582}, {"YearMonth": "2024-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2967.2799999999997, "totalRevenueExVAT": 2472.2200000000003, "totalCost": 1348.48, "totalQty": 98.0, "orderCount": 86, "margin": 1123.7400000000002, "marginPct": 45.454692543543864}, {"YearMonth": "2024-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1360.35, "totalRevenueExVAT": 1133.38, "totalCost": 605.4399999999999, "totalQty": 88.0, "orderCount": 79, "margin": 527.9400000000002, "marginPct": 46.581023134341535}, {"YearMonth": "2024-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3537.89, "totalRevenueExVAT": 2949.1000000000004, "totalCost": 1424.44, "totalQty": 239.0, "orderCount": 183, "margin": 1524.6600000000003, "marginPct": 51.69916245634262}, {"YearMonth": "2024-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1389.02, "totalRevenueExVAT": 1156.45, "totalCost": 380.78000000000003, "totalQty": 79.0, "orderCount": 62, "margin": 775.6700000000001, "marginPct": 67.07337109256778}, {"YearMonth": "2024-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1105.79, "totalRevenueExVAT": 923.22, "totalCost": 260.0, "totalQty": 208.0, "orderCount": 175, "margin": 663.22, "marginPct": 71.83769849006737}, {"YearMonth": "2024-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1348.3899999999999, "totalRevenueExVAT": 1125.41, "totalCost": 357.5, "totalQty": 143.0, "orderCount": 123, "margin": 767.9100000000001, "marginPct": 68.23379923761118}, {"YearMonth": "2024-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 956.47, "totalRevenueExVAT": 796.9000000000001, "totalCost": 321.48, "totalQty": 47.0, "orderCount": 46, "margin": 475.4200000000001, "marginPct": 59.65867737482746}, {"YearMonth": "2024-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2958.06, "totalRevenueExVAT": 2477.77, "totalCost": 1680.0, "totalQty": 84.0, "orderCount": 56, "margin": 797.77, "marginPct": 32.19709658281438}, {"YearMonth": "2024-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1519.3, "totalRevenueExVAT": 1271.02, "totalCost": 580.92, "totalQty": 103.0, "orderCount": 91, "margin": 690.1, "marginPct": 54.29497568881686}, {"YearMonth": "2024-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1037.3300000000002, "totalRevenueExVAT": 865.59, "totalCost": 363.78, "totalQty": 129.0, "orderCount": 115, "margin": 501.81000000000006, "marginPct": 57.973174366616995}, {"YearMonth": "2024-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 758.77, "totalRevenueExVAT": 631.5, "totalCost": 153.9, "totalQty": 54.0, "orderCount": 52, "margin": 477.6, "marginPct": 75.62945368171022}, {"YearMonth": "2024-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 1041.81, "totalRevenueExVAT": 867.94, "totalCost": 256.5, "totalQty": 45.0, "orderCount": 38, "margin": 611.44, "marginPct": 70.44726594004193}, {"YearMonth": "2024-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1384.64, "totalRevenueExVAT": 1153.47, "totalCost": 451.88, "totalQty": 79.0, "orderCount": 63, "margin": 701.59, "marginPct": 60.824295386962824}, {"YearMonth": "2024-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2713.6600000000003, "totalRevenueExVAT": 2261.86, "totalCost": 1068.96, "totalQty": 131.0, "orderCount": 119, "margin": 1192.9, "marginPct": 52.739780534604265}, {"YearMonth": "2024-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1939.5, "totalRevenueExVAT": 1615.81, "totalCost": 722.16, "totalQty": 177.0, "orderCount": 163, "margin": 893.65, "marginPct": 55.30662639790569}, {"YearMonth": "2024-07", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1243.6599999999999, "totalRevenueExVAT": 1036.3700000000001, "totalCost": 534.5400000000001, "totalQty": 59.0, "orderCount": 55, "margin": 501.83000000000004, "marginPct": 48.421895655026674}, {"YearMonth": "2024-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 1522.1399999999999, "totalRevenueExVAT": 1268.22, "totalCost": 717.6, "totalQty": 69.0, "orderCount": 64, "margin": 550.62, "marginPct": 43.41675734494015}, {"YearMonth": "2024-07", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1874.02, "totalRevenueExVAT": 1562.91, "totalCost": 798.0, "totalQty": 57.0, "orderCount": 52, "margin": 764.9100000000001, "marginPct": 48.94139777722326}, {"YearMonth": "2024-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 1361.06, "totalRevenueExVAT": 1133.8700000000001, "totalCost": 553.88, "totalQty": 61.0, "orderCount": 51, "margin": 579.9900000000001, "marginPct": 51.15136655877659}, {"YearMonth": "2024-07", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 848.1, "totalRevenueExVAT": 705.9300000000001, "totalCost": 349.58, "totalQty": 77.0, "orderCount": 76, "margin": 356.3500000000001, "marginPct": 50.47950929978894}, {"YearMonth": "2024-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 12176.8, "totalRevenueExVAT": 10146.02, "totalCost": 5521.099999999999, "totalQty": 403.0, "orderCount": 330, "margin": 4624.920000000001, "marginPct": 45.58358844157611}, {"YearMonth": "2024-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4343.889999999999, "totalRevenueExVAT": 3620.7400000000002, "totalCost": 1896.45, "totalQty": 269.0, "orderCount": 251, "margin": 1724.2900000000002, "marginPct": 47.62258543833581}, {"YearMonth": "2024-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 892.1999999999999, "totalRevenueExVAT": 743.4000000000001, "totalCost": 363.56, "totalQty": 61.0, "orderCount": 46, "margin": 379.8400000000001, "marginPct": 51.09496906107076}, {"YearMonth": "2024-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 2238.55, "totalRevenueExVAT": 1867.94, "totalCost": 836.28, "totalQty": 101.0, "orderCount": 75, "margin": 1031.66, "marginPct": 55.22982536912321}, {"YearMonth": "2024-07", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 838.39, "totalRevenueExVAT": 698.12, "totalCost": 269.09999999999997, "totalQty": 65.0, "orderCount": 52, "margin": 429.02000000000004, "marginPct": 61.45361828911935}, {"YearMonth": "2024-07", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2333.09, "totalRevenueExVAT": 1943.8700000000001, "totalCost": 794.24, "totalQty": 73.0, "orderCount": 61, "margin": 1149.63, "marginPct": 59.141300601377665}, {"YearMonth": "2024-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1380.21, "totalRevenueExVAT": 1149.4, "totalCost": 427.0, "totalQty": 140.0, "orderCount": 127, "margin": 722.4000000000001, "marginPct": 62.85018270401949}, {"YearMonth": "2024-07", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 1206.4, "totalRevenueExVAT": 1005.44, "totalCost": 390.4, "totalQty": 64.0, "orderCount": 60, "margin": 615.0400000000001, "marginPct": 61.17122851686824}, {"YearMonth": "2024-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 750.3199999999999, "totalRevenueExVAT": 625.24, "totalCost": 306.24, "totalQty": 44.0, "orderCount": 40, "margin": 319.0, "marginPct": 51.02040816326531}, {"YearMonth": "2024-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 581.9000000000001, "totalRevenueExVAT": 484.9, "totalCost": 226.2, "totalQty": 65.0, "orderCount": 58, "margin": 258.7, "marginPct": 53.35120643431635}, {"YearMonth": "2024-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 768.4399999999999, "totalRevenueExVAT": 640.5699999999999, "totalCost": 320.95, "totalQty": 49.0, "orderCount": 38, "margin": 319.61999999999995, "marginPct": 49.89618620915747}, {"YearMonth": "2024-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1207.47, "totalRevenueExVAT": 1006.12, "totalCost": 375.28000000000003, "totalQty": 44.0, "orderCount": 40, "margin": 630.8399999999999, "marginPct": 62.700274321154524}, {"YearMonth": "2024-08", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1034.58, "totalRevenueExVAT": 862.1600000000001, "totalCost": 297.82, "totalQty": 71.0, "orderCount": 69, "margin": 564.3400000000001, "marginPct": 65.45652779066532}, {"YearMonth": "2024-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1147.6499999999999, "totalRevenueExVAT": 956.2099999999999, "totalCost": 386.9, "totalQty": 73.0, "orderCount": 64, "margin": 569.31, "marginPct": 59.53817676033507}, {"YearMonth": "2024-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1459.9, "totalRevenueExVAT": 1216.46, "totalCost": 605.4399999999999, "totalQty": 44.0, "orderCount": 38, "margin": 611.0200000000001, "marginPct": 50.22935402725943}, {"YearMonth": "2024-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 881.0899999999999, "totalRevenueExVAT": 734.5, "totalCost": 344.0, "totalQty": 50.0, "orderCount": 46, "margin": 390.5, "marginPct": 53.16541865214431}, {"YearMonth": "2024-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2612.63, "totalRevenueExVAT": 2181.42, "totalCost": 947.64, "totalQty": 159.0, "orderCount": 126, "margin": 1233.7800000000002, "marginPct": 56.55857193937894}, {"YearMonth": "2024-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 738.22, "totalRevenueExVAT": 615.24, "totalCost": 183.16000000000003, "totalQty": 38.0, "orderCount": 35, "margin": 432.08, "marginPct": 70.22950393342435}, {"YearMonth": "2024-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 790.4, "totalRevenueExVAT": 659.18, "totalCost": 166.25, "totalQty": 133.0, "orderCount": 115, "margin": 492.92999999999995, "marginPct": 74.77927121575291}, {"YearMonth": "2024-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1153.33, "totalRevenueExVAT": 961.4, "totalCost": 275.0, "totalQty": 110.0, "orderCount": 93, "margin": 686.4, "marginPct": 71.395881006865}, {"YearMonth": "2024-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 613.16, "totalRevenueExVAT": 510.75, "totalCost": 184.68, "totalQty": 27.0, "orderCount": 27, "margin": 326.07, "marginPct": 63.841409691629956}, {"YearMonth": "2024-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2061.21, "totalRevenueExVAT": 1717.74, "totalCost": 1100.0, "totalQty": 55.0, "orderCount": 46, "margin": 617.74, "marginPct": 35.962369159476985}, {"YearMonth": "2024-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1208.79, "totalRevenueExVAT": 1007.69, "totalCost": 417.35999999999996, "totalQty": 74.0, "orderCount": 60, "margin": 590.3300000000002, "marginPct": 58.582500570612005}, {"YearMonth": "2024-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 938.6199999999999, "totalRevenueExVAT": 783.26, "totalCost": 301.74, "totalQty": 107.0, "orderCount": 98, "margin": 481.52, "marginPct": 61.47639353471389}, {"YearMonth": "2024-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 862.9399999999999, "totalRevenueExVAT": 718.98, "totalCost": 156.75, "totalQty": 55.0, "orderCount": 54, "margin": 562.23, "marginPct": 78.19828089793874}, {"YearMonth": "2024-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 721.42, "totalRevenueExVAT": 601.3, "totalCost": 159.6, "totalQty": 28.0, "orderCount": 21, "margin": 441.69999999999993, "marginPct": 73.45750873108264}, {"YearMonth": "2024-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 856.49, "totalRevenueExVAT": 713.63, "totalCost": 278.72, "totalQty": 40.0, "orderCount": 35, "margin": 434.90999999999997, "marginPct": 60.943345991620305}, {"YearMonth": "2024-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2601.17, "totalRevenueExVAT": 2167.33, "totalCost": 873.12, "totalQty": 107.0, "orderCount": 79, "margin": 1294.21, "marginPct": 59.714487410777316}, {"YearMonth": "2024-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1485.34, "totalRevenueExVAT": 1239.19, "totalCost": 485.52, "totalQty": 119.0, "orderCount": 107, "margin": 753.6700000000001, "marginPct": 60.81956762078454}, {"YearMonth": "2024-08", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1279.47, "totalRevenueExVAT": 1073.8, "totalCost": 498.3, "totalQty": 55.0, "orderCount": 49, "margin": 575.5, "marginPct": 53.59471037437139}, {"YearMonth": "2024-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 493.06, "totalRevenueExVAT": 410.96999999999997, "totalCost": 197.60000000000002, "totalQty": 19.0, "orderCount": 18, "margin": 213.36999999999995, "marginPct": 51.91863153028201}, {"YearMonth": "2024-08", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1311.03, "totalRevenueExVAT": 1096.11, "totalCost": 518.0, "totalQty": 37.0, "orderCount": 31, "margin": 578.1099999999999, "marginPct": 52.74196932789592}, {"YearMonth": "2024-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 753.53, "totalRevenueExVAT": 627.85, "totalCost": 281.48, "totalQty": 31.0, "orderCount": 27, "margin": 346.37, "marginPct": 55.167635581747234}, {"YearMonth": "2024-08", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 770.64, "totalRevenueExVAT": 641.98, "totalCost": 281.48, "totalQty": 62.0, "orderCount": 50, "margin": 360.5, "marginPct": 56.15439733325025}, {"YearMonth": "2024-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8034.05, "totalRevenueExVAT": 6699.0, "totalCost": 3370.2, "totalQty": 246.0, "orderCount": 220, "margin": 3328.8, "marginPct": 49.6909986565159}, {"YearMonth": "2024-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 3463.17, "totalRevenueExVAT": 2885.54, "totalCost": 1410.0, "totalQty": 200.0, "orderCount": 194, "margin": 1475.54, "marginPct": 51.135662648932254}, {"YearMonth": "2024-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 457.35999999999996, "totalRevenueExVAT": 381.25, "totalCost": 160.92, "totalQty": 27.0, "orderCount": 26, "margin": 220.33, "marginPct": 57.79147540983607}, {"YearMonth": "2024-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1279.44, "totalRevenueExVAT": 1068.6, "totalCost": 430.55999999999995, "totalQty": 52.0, "orderCount": 40, "margin": 638.04, "marginPct": 59.70802919708029}, {"YearMonth": "2024-08", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 358.41999999999996, "totalRevenueExVAT": 298.64, "totalCost": 111.77999999999999, "totalQty": 27.0, "orderCount": 24, "margin": 186.86, "marginPct": 62.57031877846237}, {"YearMonth": "2024-08", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 816.08, "totalRevenueExVAT": 680.08, "totalCost": 250.24, "totalQty": 23.0, "orderCount": 22, "margin": 429.84000000000003, "marginPct": 63.20432890248207}, {"YearMonth": "2024-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 974.4899999999999, "totalRevenueExVAT": 812.57, "totalCost": 277.55, "totalQty": 91.0, "orderCount": 89, "margin": 535.02, "marginPct": 65.84294276185436}, {"YearMonth": "2024-08", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 628.5, "totalRevenueExVAT": 523.8000000000001, "totalCost": 183.0, "totalQty": 30.0, "orderCount": 27, "margin": 340.80000000000007, "marginPct": 65.06300114547537}, {"YearMonth": "2024-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 564.3199999999999, "totalRevenueExVAT": 472.12, "totalCost": 208.8, "totalQty": 30.0, "orderCount": 28, "margin": 263.32, "marginPct": 55.77395577395578}, {"YearMonth": "2024-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 467.65, "totalRevenueExVAT": 389.62999999999994, "totalCost": 163.56, "totalQty": 47.0, "orderCount": 47, "margin": 226.06999999999994, "marginPct": 58.021712907117006}, {"YearMonth": "2024-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 436.7, "totalRevenueExVAT": 365.46999999999997, "totalCost": 183.4, "totalQty": 28.0, "orderCount": 25, "margin": 182.06999999999996, "marginPct": 49.81804252058992}, {"YearMonth": "2024-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 1451.35, "totalRevenueExVAT": 1213.3999999999999, "totalCost": 492.90000000000003, "totalQty": 53.0, "orderCount": 45, "margin": 720.4999999999998, "marginPct": 59.378605571122456}, {"YearMonth": "2024-09", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 1049.54, "totalRevenueExVAT": 874.6200000000001, "totalCost": 334.8, "totalQty": 72.0, "orderCount": 63, "margin": 539.8200000000002, "marginPct": 61.720518625231534}, {"YearMonth": "2024-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1153.95, "totalRevenueExVAT": 962.1899999999999, "totalCost": 392.21999999999997, "totalQty": 73.0, "orderCount": 61, "margin": 569.97, "marginPct": 59.23674118417361}, {"YearMonth": "2024-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2135.51, "totalRevenueExVAT": 1779.43, "totalCost": 880.64, "totalQty": 64.0, "orderCount": 59, "margin": 898.7900000000001, "marginPct": 50.50999477360728}, {"YearMonth": "2024-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 937.03, "totalRevenueExVAT": 780.87833, "totalCost": 364.64, "totalQty": 53.0, "orderCount": 50, "margin": 416.23833, "marginPct": 53.3038648927548}, {"YearMonth": "2024-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1448.52, "totalRevenueExVAT": 1207.8700000000001, "totalCost": 530.4399999999999, "totalQty": 89.0, "orderCount": 69, "margin": 677.4300000000002, "marginPct": 56.08467798686946}, {"YearMonth": "2024-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 895.8199999999999, "totalRevenueExVAT": 746.61, "totalCost": 226.54000000000002, "totalQty": 47.0, "orderCount": 39, "margin": 520.0699999999999, "marginPct": 69.65751865096904}, {"YearMonth": "2024-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 785.4, "totalRevenueExVAT": 654.72, "totalCost": 165.0, "totalQty": 132.0, "orderCount": 118, "margin": 489.72, "marginPct": 74.7983870967742}, {"YearMonth": "2024-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1351.3700000000001, "totalRevenueExVAT": 1127.46, "totalCost": 322.5, "totalQty": 129.0, "orderCount": 115, "margin": 804.96, "marginPct": 71.395881006865}, {"YearMonth": "2024-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 658.6999999999999, "totalRevenueExVAT": 549.01, "totalCost": 198.35999999999999, "totalQty": 29.0, "orderCount": 28, "margin": 350.65, "marginPct": 63.86951057357789}, {"YearMonth": "2024-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1819.16, "totalRevenueExVAT": 1521.33, "totalCost": 980.0, "totalQty": 49.0, "orderCount": 39, "margin": 541.3299999999999, "marginPct": 35.582680943647986}, {"YearMonth": "2024-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 943.3499999999999, "totalRevenueExVAT": 786.96, "totalCost": 332.76, "totalQty": 59.0, "orderCount": 49, "margin": 454.20000000000005, "marginPct": 57.7157670021348}, {"YearMonth": "2024-09", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 927.9699999999999, "totalRevenueExVAT": 774.3, "totalCost": 298.91999999999996, "totalQty": 106.0, "orderCount": 100, "margin": 475.38, "marginPct": 61.3948082138706}, {"YearMonth": "2024-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 834.9499999999999, "totalRevenueExVAT": 696.39, "totalCost": 151.05, "totalQty": 53.0, "orderCount": 52, "margin": 545.3399999999999, "marginPct": 78.30956791453065}, {"YearMonth": "2024-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 825.22, "totalRevenueExVAT": 687.8199999999999, "totalCost": 182.4, "totalQty": 32.0, "orderCount": 29, "margin": 505.41999999999996, "marginPct": 73.4814340961298}, {"YearMonth": "2024-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 878.05, "totalRevenueExVAT": 731.59, "totalCost": 287.0, "totalQty": 41.0, "orderCount": 35, "margin": 444.59000000000003, "marginPct": 60.770376850421684}, {"YearMonth": "2024-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2170.7, "totalRevenueExVAT": 1808.72, "totalCost": 718.08, "totalQty": 88.0, "orderCount": 76, "margin": 1090.6399999999999, "marginPct": 60.29899597505417}, {"YearMonth": "2024-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1583.9199999999998, "totalRevenueExVAT": 1319.59, "totalCost": 510.0, "totalQty": 125.0, "orderCount": 114, "margin": 809.5899999999999, "marginPct": 61.351631946286346}, {"YearMonth": "2024-09", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1001.17, "totalRevenueExVAT": 834.2800000000001, "totalCost": 398.64000000000004, "totalQty": 44.0, "orderCount": 40, "margin": 435.64000000000004, "marginPct": 52.21748094165029}, {"YearMonth": "2024-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 363.31, "totalRevenueExVAT": 302.82, "totalCost": 145.6, "totalQty": 14.0, "orderCount": 14, "margin": 157.22, "marginPct": 51.91863153028201}, {"YearMonth": "2024-09", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1227.69, "totalRevenueExVAT": 1028.3799999999999, "totalCost": 476.0, "totalQty": 34.0, "orderCount": 32, "margin": 552.3799999999999, "marginPct": 53.71360781034248}, {"YearMonth": "2024-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 733.56, "totalRevenueExVAT": 611.22, "totalCost": 272.4, "totalQty": 30.0, "orderCount": 27, "margin": 338.82000000000005, "marginPct": 55.43339550407382}, {"YearMonth": "2024-09", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 835.3499999999999, "totalRevenueExVAT": 695.9399999999999, "totalCost": 299.64, "totalQty": 66.0, "orderCount": 60, "margin": 396.29999999999995, "marginPct": 56.9445641865678}, {"YearMonth": "2024-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4590.08, "totalRevenueExVAT": 3824.7999999999997, "totalCost": 1863.1999999999998, "totalQty": 136.0, "orderCount": 105, "margin": 1961.6, "marginPct": 51.28634176950428}, {"YearMonth": "2024-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4642.38, "totalRevenueExVAT": 3878.5299999999997, "totalCost": 1945.3999999999999, "totalQty": 142.0, "orderCount": 121, "margin": 1933.1299999999999, "marginPct": 49.84182151485228}, {"YearMonth": "2024-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "SKUDescription": "60 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 2028.04, "totalRevenueExVAT": 1693.4, "totalCost": 824.85, "totalQty": 117.0, "orderCount": 112, "margin": 868.5500000000001, "marginPct": 51.29030353135704}, {"YearMonth": "2024-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 409.28, "totalRevenueExVAT": 341.15999999999997, "totalCost": 149.0, "totalQty": 25.0, "orderCount": 22, "margin": 192.15999999999997, "marginPct": 56.325477781686004}, {"YearMonth": "2024-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1625.43, "totalRevenueExVAT": 1355.5, "totalCost": 546.4799999999999, "totalQty": 66.0, "orderCount": 47, "margin": 809.0200000000001, "marginPct": 59.68424935448174}, {"YearMonth": "2024-09", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 569.36, "totalRevenueExVAT": 474.4, "totalCost": 165.6, "totalQty": 40.0, "orderCount": 35, "margin": 308.79999999999995, "marginPct": 65.09274873524451}, {"YearMonth": "2024-09", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2071.98, "totalRevenueExVAT": 1731.64, "totalCost": 641.9200000000001, "totalQty": 59.0, "orderCount": 51, "margin": 1089.72, "marginPct": 62.92993924834261}, {"YearMonth": "2024-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1091.94, "totalRevenueExVAT": 910.22, "totalCost": 338.54999999999995, "totalQty": 111.0, "orderCount": 101, "margin": 571.6700000000001, "marginPct": 62.80569532640461}, {"YearMonth": "2024-09", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 670.4, "totalRevenueExVAT": 558.76, "totalCost": 219.6, "totalQty": 36.0, "orderCount": 34, "margin": 339.15999999999997, "marginPct": 60.698689956331876}, {"YearMonth": "2024-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 776.9499999999999, "totalRevenueExVAT": 647.39, "totalCost": 285.36, "totalQty": 41.0, "orderCount": 37, "margin": 362.03, "marginPct": 55.92146928435719}, {"YearMonth": "2024-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 506.36999999999995, "totalRevenueExVAT": 422.78999999999996, "totalCost": 177.48, "totalQty": 51.0, "orderCount": 48, "margin": 245.30999999999997, "marginPct": 58.021712907117006}, {"YearMonth": "2024-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 788.68, "totalRevenueExVAT": 657.8499999999999, "totalCost": 327.5, "totalQty": 50.0, "orderCount": 36, "margin": 330.3499999999999, "marginPct": 50.21661472980162}, {"YearMonth": "2024-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "180 Capsules", "Category": "Probiotics", "totalRevenue": 503.09999999999997, "totalRevenueExVAT": 419.21999999999997, "totalCost": 167.4, "totalQty": 18.0, "orderCount": 14, "margin": 251.81999999999996, "marginPct": 60.06869901245169}, {"YearMonth": "2024-10", "Description": "Acidophilus Plus+ with Prebiotic", "SKUDescription": "90 Capsules", "Category": "Probiotics", "totalRevenue": 439.3, "totalRevenueExVAT": 366.3, "totalCost": 139.5, "totalQty": 30.0, "orderCount": 30, "margin": 226.8, "marginPct": 61.91646191646192}, {"YearMonth": "2024-10", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1250.51, "totalRevenueExVAT": 1041.9299999999998, "totalCost": 478.73999999999995, "totalQty": 79.0, "orderCount": 58, "margin": 563.1899999999998, "marginPct": 54.05257550891134}, {"YearMonth": "2024-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1799.5700000000002, "totalRevenueExVAT": 1510.67, "totalCost": 756.8, "totalQty": 55.0, "orderCount": 48, "margin": 753.8700000000001, "marginPct": 49.9030231619083}, {"YearMonth": "2024-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 920.27, "totalRevenueExVAT": 767.4200000000001, "totalCost": 364.64, "totalQty": 53.0, "orderCount": 51, "margin": 402.7800000000001, "marginPct": 52.48494957129083}, {"YearMonth": "2024-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2902.35, "totalRevenueExVAT": 2418.8450000000003, "totalCost": 1066.36, "totalQty": 173.0, "orderCount": 144, "margin": 1352.4850000000004, "marginPct": 55.91449638153748}, {"YearMonth": "2024-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 896.64, "totalRevenueExVAT": 746.61, "totalCost": 221.72000000000003, "totalQty": 46.0, "orderCount": 40, "margin": 524.89, "marginPct": 70.30310336052288}, {"YearMonth": "2024-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 814.73, "totalRevenueExVAT": 679.52, "totalCost": 171.25, "totalQty": 137.0, "orderCount": 123, "margin": 508.27, "marginPct": 74.79838709677419}, {"YearMonth": "2024-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1457.54, "totalRevenueExVAT": 1214.8600000000001, "totalCost": 350.0, "totalQty": 140.0, "orderCount": 121, "margin": 864.8600000000001, "marginPct": 71.1900959781374}, {"YearMonth": "2024-10", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 737.02, "totalRevenueExVAT": 619.77, "totalCost": 232.56, "totalQty": 34.0, "orderCount": 32, "margin": 387.21, "marginPct": 62.4764025364248}, {"YearMonth": "2024-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3436.82, "totalRevenueExVAT": 2872.9, "totalCost": 1780.0, "totalQty": 89.0, "orderCount": 59, "margin": 1092.9, "marginPct": 38.041700024365625}, {"YearMonth": "2024-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1363.12, "totalRevenueExVAT": 1137.94, "totalCost": 473.76, "totalQty": 84.0, "orderCount": 74, "margin": 664.1800000000001, "marginPct": 58.3668734731181}, {"YearMonth": "2024-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1126.71, "totalRevenueExVAT": 940.63, "totalCost": 360.96, "totalQty": 128.0, "orderCount": 120, "margin": 579.6700000000001, "marginPct": 61.625718933055516}, {"YearMonth": "2024-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 784.91, "totalRevenueExVAT": 653.86, "totalCost": 142.5, "totalQty": 50.0, "orderCount": 46, "margin": 511.36, "marginPct": 78.2063438656593}, {"YearMonth": "2024-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 659.17, "totalRevenueExVAT": 549.36, "totalCost": 148.46, "totalQty": 26.0, "orderCount": 24, "margin": 400.9, "marginPct": 72.97582641619339}, {"YearMonth": "2024-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1000.99, "totalRevenueExVAT": 834.01, "totalCost": 329.0, "totalQty": 47.0, "orderCount": 36, "margin": 505.01, "marginPct": 60.55203175021882}, {"YearMonth": "2024-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1796.75, "totalRevenueExVAT": 1503.11, "totalCost": 595.6800000000001, "totalQty": 73.0, "orderCount": 67, "margin": 907.4299999999998, "marginPct": 60.370165856124956}, {"YearMonth": "2024-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1640.6599999999999, "totalRevenueExVAT": 1368.1399999999999, "totalCost": 534.48, "totalQty": 131.0, "orderCount": 118, "margin": 833.6599999999999, "marginPct": 60.933822562018506}, {"YearMonth": "2024-10", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 741.99, "totalRevenueExVAT": 622.72, "totalCost": 289.92, "totalQty": 32.0, "orderCount": 30, "margin": 332.8, "marginPct": 53.442959917780065}, {"YearMonth": "2024-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 648.76, "totalRevenueExVAT": 540.75, "totalCost": 260.0, "totalQty": 25.0, "orderCount": 24, "margin": 280.75, "marginPct": 51.91863153028201}, {"YearMonth": "2024-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1039.39, "totalRevenueExVAT": 868.27, "totalCost": 406.0, "totalQty": 29.0, "orderCount": 28, "margin": 462.27, "marginPct": 53.240351503564554}, {"YearMonth": "2024-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 603.83, "totalRevenueExVAT": 503.11, "totalCost": 227.0, "totalQty": 25.0, "orderCount": 23, "margin": 276.11, "marginPct": 54.88064240424559}, {"YearMonth": "2024-10", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 870.76, "totalRevenueExVAT": 723.99, "totalCost": 313.26, "totalQty": 69.0, "orderCount": 66, "margin": 410.73, "marginPct": 56.731446566941536}, {"YearMonth": "2024-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8700.79, "totalRevenueExVAT": 7252.43, "totalCost": 3353.94, "totalQty": 277.0, "orderCount": 228, "margin": 3898.4900000000002, "marginPct": 53.754258917355976}, {"YearMonth": "2024-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 888.52, "totalRevenueExVAT": 740.64, "totalCost": 309.92, "totalQty": 52.0, "orderCount": 44, "margin": 430.71999999999997, "marginPct": 58.1551090948369}, {"YearMonth": "2024-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 581.16, "totalRevenueExVAT": 486.48, "totalCost": 198.71999999999997, "totalQty": 24.0, "orderCount": 18, "margin": 287.76000000000005, "marginPct": 59.15145535273805}, {"YearMonth": "2024-10", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 303.5, "totalRevenueExVAT": 252.88, "totalCost": 91.08, "totalQty": 22.0, "orderCount": 22, "margin": 161.8, "marginPct": 63.982916798481504}, {"YearMonth": "2024-10", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1197.17, "totalRevenueExVAT": 997.64, "totalCost": 380.8, "totalQty": 35.0, "orderCount": 30, "margin": 616.8399999999999, "marginPct": 61.82991860791467}, {"YearMonth": "2024-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1059.02, "totalRevenueExVAT": 883.7800000000001, "totalCost": 298.9, "totalQty": 98.0, "orderCount": 94, "margin": 584.8800000000001, "marginPct": 66.17936590554211}, {"YearMonth": "2024-10", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 686.73, "totalRevenueExVAT": 576.1800000000001, "totalCost": 201.29999999999998, "totalQty": 33.0, "orderCount": 32, "margin": 374.8800000000001, "marginPct": 65.06300114547538}, {"YearMonth": "2024-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 871.6999999999999, "totalRevenueExVAT": 726.3399999999999, "totalCost": 320.16, "totalQty": 46.0, "orderCount": 40, "margin": 406.1799999999999, "marginPct": 55.92146928435719}, {"YearMonth": "2024-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 417.9, "totalRevenueExVAT": 348.17999999999995, "totalCost": 149.64, "totalQty": 43.0, "orderCount": 41, "margin": 198.53999999999996, "marginPct": 57.02222988109599}, {"YearMonth": "2024-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 746.52, "totalRevenueExVAT": 621.96, "totalCost": 314.4, "totalQty": 48.0, "orderCount": 39, "margin": 307.56000000000006, "marginPct": 49.450125409994214}, {"YearMonth": "2024-11", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1324.95, "totalRevenueExVAT": 1104.3899999999999, "totalCost": 509.03999999999996, "totalQty": 84.0, "orderCount": 74, "margin": 595.3499999999999, "marginPct": 53.90758699372504}, {"YearMonth": "2024-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2111.1600000000003, "totalRevenueExVAT": 1759.6299999999999, "totalCost": 866.88, "totalQty": 63.0, "orderCount": 58, "margin": 892.7499999999999, "marginPct": 50.735097719406916}, {"YearMonth": "2024-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1149.06, "totalRevenueExVAT": 961.9000000000001, "totalCost": 454.08, "totalQty": 66.0, "orderCount": 56, "margin": 507.8200000000001, "marginPct": 52.79342967044391}, {"YearMonth": "2024-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2958.22, "totalRevenueExVAT": 2464.79, "totalCost": 1110.4, "totalQty": 160.0, "orderCount": 119, "margin": 1354.3899999999999, "marginPct": 54.94950888310971}, {"YearMonth": "2024-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1751.28, "totalRevenueExVAT": 1461.7, "totalCost": 428.98, "totalQty": 89.0, "orderCount": 72, "margin": 1032.72, "marginPct": 70.65198057056851}, {"YearMonth": "2024-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 993.65, "totalRevenueExVAT": 828.32, "totalCost": 208.75, "totalQty": 167.0, "orderCount": 150, "margin": 619.57, "marginPct": 74.7983870967742}, {"YearMonth": "2024-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 1877.54, "totalRevenueExVAT": 1564.46, "totalCost": 447.5, "totalQty": 179.0, "orderCount": 146, "margin": 1116.96, "marginPct": 71.395881006865}, {"YearMonth": "2024-11", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 771.15, "totalRevenueExVAT": 642.74, "totalCost": 232.56, "totalQty": 34.0, "orderCount": 30, "margin": 410.18, "marginPct": 63.81740672744811}, {"YearMonth": "2024-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2640.79, "totalRevenueExVAT": 2200.45, "totalCost": 1360.0, "totalQty": 68.0, "orderCount": 55, "margin": 840.4499999999998, "marginPct": 38.19446022404508}, {"YearMonth": "2024-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1825.12, "totalRevenueExVAT": 1520.45, "totalCost": 631.68, "totalQty": 112.0, "orderCount": 86, "margin": 888.7700000000001, "marginPct": 58.45440494590418}, {"YearMonth": "2024-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1071.25, "totalRevenueExVAT": 892.91, "totalCost": 341.21999999999997, "totalQty": 121.0, "orderCount": 117, "margin": 551.69, "marginPct": 61.78562229116037}, {"YearMonth": "2024-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 711.79, "totalRevenueExVAT": 592.73, "totalCost": 134.1, "totalQty": 45.0, "orderCount": 43, "margin": 458.63, "marginPct": 77.37587096991885}, {"YearMonth": "2024-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 827.84, "totalRevenueExVAT": 689.99, "totalCost": 190.72, "totalQty": 32.0, "orderCount": 26, "margin": 499.27, "marginPct": 72.35901969593762}, {"YearMonth": "2024-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1189.27, "totalRevenueExVAT": 993.14, "totalCost": 399.0, "totalQty": 57.0, "orderCount": 48, "margin": 594.14, "marginPct": 59.82439535211551}, {"YearMonth": "2024-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 713.59, "totalRevenueExVAT": 594.5899999999999, "totalCost": 244.79999999999998, "totalQty": 30.0, "orderCount": 17, "margin": 349.78999999999996, "marginPct": 58.82877276778957}, {"YearMonth": "2024-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 599.67, "totalRevenueExVAT": 499.56, "totalCost": 195.84, "totalQty": 48.0, "orderCount": 44, "margin": 303.72, "marginPct": 60.7975018015854}, {"YearMonth": "2024-11", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 1123.36, "totalRevenueExVAT": 936.0400000000001, "totalCost": 443.94, "totalQty": 49.0, "orderCount": 42, "margin": 492.1000000000001, "marginPct": 52.572539635058334}, {"YearMonth": "2024-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 800.13, "totalRevenueExVAT": 670.53, "totalCost": 322.40000000000003, "totalQty": 31.0, "orderCount": 29, "margin": 348.12999999999994, "marginPct": 51.91863153028201}, {"YearMonth": "2024-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1790.6100000000001, "totalRevenueExVAT": 1499.46, "totalCost": 700.0, "totalQty": 50.0, "orderCount": 48, "margin": 799.46, "marginPct": 53.31652728315527}, {"YearMonth": "2024-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 865.26, "totalRevenueExVAT": 723.49, "totalCost": 317.8, "totalQty": 35.0, "orderCount": 32, "margin": 405.69, "marginPct": 56.07403004879128}, {"YearMonth": "2024-11", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 835.3499999999999, "totalRevenueExVAT": 695.9399999999999, "totalCost": 299.64, "totalQty": 66.0, "orderCount": 62, "margin": 396.29999999999995, "marginPct": 56.9445641865678}, {"YearMonth": "2024-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 11290.07, "totalRevenueExVAT": 9413.43, "totalCost": 3311.0000000000005, "totalQty": 350.0, "orderCount": 304, "margin": 6102.43, "marginPct": 64.82684844950248}, {"YearMonth": "2024-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 535.1999999999999, "totalRevenueExVAT": 446.14, "totalCost": 184.76, "totalQty": 31.0, "orderCount": 25, "margin": 261.38, "marginPct": 58.58699063074372}, {"YearMonth": "2024-11", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 2947.65, "totalRevenueExVAT": 2456.6800000000003, "totalCost": 924.8000000000001, "totalQty": 85.0, "orderCount": 77, "margin": 1531.88, "marginPct": 62.355699562010514}, {"YearMonth": "2024-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1324.97, "totalRevenueExVAT": 1104.73, "totalCost": 372.09999999999997, "totalQty": 122.0, "orderCount": 109, "margin": 732.6300000000001, "marginPct": 66.31756175717143}, {"YearMonth": "2024-11", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 649.4499999999999, "totalRevenueExVAT": 541.26, "totalCost": 189.1, "totalQty": 31.0, "orderCount": 29, "margin": 352.15999999999997, "marginPct": 65.06300114547537}, {"YearMonth": "2024-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 967.39, "totalRevenueExVAT": 805.29, "totalCost": 354.96, "totalQty": 51.0, "orderCount": 43, "margin": 450.33, "marginPct": 55.92146928435719}, {"YearMonth": "2024-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 625.65, "totalRevenueExVAT": 522.27, "totalCost": 222.72, "totalQty": 64.0, "orderCount": 60, "margin": 299.54999999999995, "marginPct": 57.35539088976965}, {"YearMonth": "2024-12", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 562.68, "totalRevenueExVAT": 469.13, "totalCost": 242.35, "totalQty": 37.0, "orderCount": 24, "margin": 226.78, "marginPct": 48.3405452646388}, {"YearMonth": "2024-12", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 768.13, "totalRevenueExVAT": 640.16, "totalCost": 290.88, "totalQty": 48.0, "orderCount": 44, "margin": 349.28, "marginPct": 54.561359660084975}, {"YearMonth": "2024-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1147.5700000000002, "totalRevenueExVAT": 956.1899999999999, "totalCost": 481.59999999999997, "totalQty": 35.0, "orderCount": 31, "margin": 474.59, "marginPct": 49.633441052510484}, {"YearMonth": "2024-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 765.56, "totalRevenueExVAT": 638.74, "totalCost": 309.6, "totalQty": 45.0, "orderCount": 44, "margin": 329.14, "marginPct": 51.529573848514254}, {"YearMonth": "2024-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1206.2, "totalRevenueExVAT": 1005.8, "totalCost": 464.98, "totalQty": 67.0, "orderCount": 60, "margin": 540.8199999999999, "marginPct": 53.77013322728176}, {"YearMonth": "2024-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 532.3199999999999, "totalRevenueExVAT": 447.27, "totalCost": 134.96, "totalQty": 28.0, "orderCount": 24, "margin": 312.30999999999995, "marginPct": 69.82583227133497}, {"YearMonth": "2024-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1282.6, "totalRevenueExVAT": 1072.25, "totalCost": 187.5, "totalQty": 150.0, "orderCount": 117, "margin": 884.75, "marginPct": 82.51340638843553}, {"YearMonth": "2024-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "240 Tablets", "Category": "Bone Health", "totalRevenue": 419.6, "totalRevenueExVAT": 349.6, "totalCost": 100.0, "totalQty": 40.0, "orderCount": 32, "margin": 249.60000000000002, "marginPct": 71.395881006865}, {"YearMonth": "2024-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 475.08, "totalRevenueExVAT": 395.96999999999997, "totalCost": 143.64, "totalQty": 21.0, "orderCount": 20, "margin": 252.32999999999998, "marginPct": 63.72452458519585}, {"YearMonth": "2024-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1662.04, "totalRevenueExVAT": 1384.84, "totalCost": 880.0, "totalQty": 44.0, "orderCount": 35, "margin": 504.8399999999999, "marginPct": 36.45475289564137}, {"YearMonth": "2024-12", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 818.91, "totalRevenueExVAT": 686.44, "totalCost": 265.08, "totalQty": 47.0, "orderCount": 42, "margin": 421.36000000000007, "marginPct": 61.38336926752521}, {"YearMonth": "2024-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 783.51, "totalRevenueExVAT": 652.92, "totalCost": 242.51999999999998, "totalQty": 86.0, "orderCount": 78, "margin": 410.4, "marginPct": 62.85609263003125}, {"YearMonth": "2024-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 563.31, "totalRevenueExVAT": 469.25, "totalCost": 116.22, "totalQty": 39.0, "orderCount": 38, "margin": 353.03, "marginPct": 75.23281832711774}, {"YearMonth": "2024-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 506.34999999999997, "totalRevenueExVAT": 421.91, "totalCost": 125.16, "totalQty": 21.0, "orderCount": 20, "margin": 296.75, "marginPct": 70.33490554857671}, {"YearMonth": "2024-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 706.88, "totalRevenueExVAT": 588.92, "totalCost": 245.0, "totalQty": 35.0, "orderCount": 31, "margin": 343.91999999999996, "marginPct": 58.398424234191395}, {"YearMonth": "2024-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1843.75, "totalRevenueExVAT": 1536.29, "totalCost": 603.84, "totalQty": 74.0, "orderCount": 69, "margin": 932.4499999999999, "marginPct": 60.694920880823275}, {"YearMonth": "2024-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1514.23, "totalRevenueExVAT": 1261.64, "totalCost": 485.52, "totalQty": 119.0, "orderCount": 108, "margin": 776.1200000000001, "marginPct": 61.51675596842205}, {"YearMonth": "2024-12", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 512.56, "totalRevenueExVAT": 427.12, "totalCost": 199.32000000000002, "totalQty": 22.0, "orderCount": 22, "margin": 227.79999999999998, "marginPct": 53.33395766997565}, {"YearMonth": "2024-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 362.4, "totalRevenueExVAT": 302.03, "totalCost": 144.4, "totalQty": 12.0, "orderCount": 10, "margin": 157.62999999999997, "marginPct": 52.190179783465204}, {"YearMonth": "2024-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1119.6200000000001, "totalRevenueExVAT": 932.93, "totalCost": 434.0, "totalQty": 31.0, "orderCount": 28, "margin": 498.92999999999995, "marginPct": 53.47989666963223}, {"YearMonth": "2024-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 536.45, "totalRevenueExVAT": 446.98, "totalCost": 199.76, "totalQty": 22.0, "orderCount": 19, "margin": 247.22000000000003, "marginPct": 55.30896236968097}, {"YearMonth": "2024-12", "Description": "Starflower Oil 1000mg", "SKUDescription": "90 Capsules", "Category": "Evening Primose Oils", "totalRevenue": 595.8, "totalRevenueExVAT": 496.32, "totalCost": 217.92, "totalQty": 48.0, "orderCount": 46, "margin": 278.4, "marginPct": 56.09284332688588}, {"YearMonth": "2024-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6030.09, "totalRevenueExVAT": 5026.22, "totalCost": 1721.7200000000003, "totalQty": 182.0, "orderCount": 160, "margin": 3304.5, "marginPct": 65.7452320033743}, {"YearMonth": "2024-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 370.78999999999996, "totalRevenueExVAT": 309.08, "totalCost": 131.12, "totalQty": 22.0, "orderCount": 21, "margin": 177.95999999999998, "marginPct": 57.57732625857383}, {"YearMonth": "2024-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1282.6399999999999, "totalRevenueExVAT": 1068.74, "totalCost": 432.59999999999997, "totalQty": 49.0, "orderCount": 42, "margin": 636.1400000000001, "marginPct": 59.5224282800307}, {"YearMonth": "2024-12", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 520.25, "totalRevenueExVAT": 433.47999999999996, "totalCost": 161.34, "totalQty": 37.0, "orderCount": 34, "margin": 272.14, "marginPct": 62.78028974808526}, {"YearMonth": "2024-12", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 950.75, "totalRevenueExVAT": 793.9200000000001, "totalCost": 293.76, "totalQty": 27.0, "orderCount": 25, "margin": 500.1600000000001, "marginPct": 62.9987908101572}, {"YearMonth": "2024-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 731.4699999999999, "totalRevenueExVAT": 609.87, "totalCost": 207.39999999999998, "totalQty": 68.0, "orderCount": 66, "margin": 402.47, "marginPct": 65.99275255382295}, {"YearMonth": "2024-12", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 333.09999999999997, "totalRevenueExVAT": 277.61, "totalCost": 103.69999999999999, "totalQty": 17.0, "orderCount": 17, "margin": 173.91000000000003, "marginPct": 62.645437844458066}, {"YearMonth": "2024-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 435.84999999999997, "totalRevenueExVAT": 363.16999999999996, "totalCost": 160.07999999999998, "totalQty": 23.0, "orderCount": 20, "margin": 203.08999999999997, "marginPct": 55.92146928435719}, {"YearMonth": "2024-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 365.95, "totalRevenueExVAT": 306.72999999999996, "totalCost": 128.76, "totalQty": 37.0, "orderCount": 37, "margin": 177.96999999999997, "marginPct": 58.021712907117006}, {"YearMonth": "2025-01", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 759.64, "totalRevenueExVAT": 634.02, "totalCost": 360.25, "totalQty": 55.0, "orderCount": 38, "margin": 273.77, "marginPct": 43.1800258666919}, {"YearMonth": "2025-01", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1204.16, "totalRevenueExVAT": 1005.6700000000001, "totalCost": 484.79999999999995, "totalQty": 80.0, "orderCount": 68, "margin": 520.8700000000001, "marginPct": 51.79333180864499}, {"YearMonth": "2025-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2145.92, "totalRevenueExVAT": 1788.26, "totalCost": 935.68, "totalQty": 68.0, "orderCount": 62, "margin": 852.58, "marginPct": 47.67651236397392}, {"YearMonth": "2025-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1399.4299999999998, "totalRevenueExVAT": 1168.44, "totalCost": 557.28, "totalQty": 81.0, "orderCount": 78, "margin": 611.1600000000001, "marginPct": 52.305638286946696}, {"YearMonth": "2025-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3240.54, "totalRevenueExVAT": 2701.25, "totalCost": 1270.02, "totalQty": 183.0, "orderCount": 154, "margin": 1431.23, "marginPct": 52.983988894030546}, {"YearMonth": "2025-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 53.870000000000005, "totalRevenueExVAT": 44.88, "totalCost": 14.46, "totalQty": 3.0, "orderCount": 3, "margin": 30.42, "marginPct": 67.7807486631016}, {"YearMonth": "2025-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 2070.24, "totalRevenueExVAT": 1724.1000000000001, "totalCost": 262.5, "totalQty": 210.0, "orderCount": 168, "margin": 1461.6000000000001, "marginPct": 84.77466504263094}, {"YearMonth": "2025-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 738.23, "totalRevenueExVAT": 617.85, "totalCost": 246.24, "totalQty": 36.0, "orderCount": 31, "margin": 371.61, "marginPct": 60.14566642388929}, {"YearMonth": "2025-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3272.56, "totalRevenueExVAT": 2730.43, "totalCost": 1960.0, "totalQty": 98.0, "orderCount": 66, "margin": 770.4299999999998, "marginPct": 28.21643477400995}, {"YearMonth": "2025-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1461.29, "totalRevenueExVAT": 1217.8000000000002, "totalCost": 462.47999999999996, "totalQty": 82.0, "orderCount": 72, "margin": 755.3200000000002, "marginPct": 62.02332074232223}, {"YearMonth": "2025-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 1432.96, "totalRevenueExVAT": 1195.03, "totalCost": 431.46, "totalQty": 153.0, "orderCount": 141, "margin": 763.5699999999999, "marginPct": 63.89546705940437}, {"YearMonth": "2025-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 558.6999999999999, "totalRevenueExVAT": 465.25000000000006, "totalCost": 116.22, "totalQty": 39.0, "orderCount": 38, "margin": 349.0300000000001, "marginPct": 75.0198817839871}, {"YearMonth": "2025-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 651.73, "totalRevenueExVAT": 542.94, "totalCost": 172.84, "totalQty": 29.0, "orderCount": 27, "margin": 370.1, "marginPct": 68.16591151876818}, {"YearMonth": "2025-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1266.825, "totalRevenueExVAT": 1055.2725, "totalCost": 448.0, "totalQty": 64.0, "orderCount": 51, "margin": 607.2725, "marginPct": 57.54651049847315}, {"YearMonth": "2025-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2823.71, "totalRevenueExVAT": 2364.24, "totalCost": 897.6, "totalQty": 110.0, "orderCount": 102, "margin": 1466.6399999999999, "marginPct": 62.03431123743782}, {"YearMonth": "2025-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 2039.78, "totalRevenueExVAT": 1699.8300000000002, "totalCost": 632.4, "totalQty": 155.0, "orderCount": 143, "margin": 1067.4300000000003, "marginPct": 62.796279627962804}, {"YearMonth": "2025-01", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 707.39, "totalRevenueExVAT": 589.3100000000001, "totalCost": 298.98, "totalQty": 33.0, "orderCount": 28, "margin": 290.33000000000004, "marginPct": 49.26609085201337}, {"YearMonth": "2025-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 702.14, "totalRevenueExVAT": 584.99, "totalCost": 300.72, "totalQty": 21.0, "orderCount": 19, "margin": 284.27, "marginPct": 48.593993059710414}, {"YearMonth": "2025-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1502.25, "totalRevenueExVAT": 1253.1100000000001, "totalCost": 630.0, "totalQty": 45.0, "orderCount": 38, "margin": 623.1100000000001, "marginPct": 49.725083991030324}, {"YearMonth": "2025-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 8584.74, "totalRevenueExVAT": 7160.23, "totalCost": 2365.0, "totalQty": 250.0, "orderCount": 211, "margin": 4795.23, "marginPct": 66.97033475181662}, {"YearMonth": "2025-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 475.7, "totalRevenueExVAT": 396.52, "totalCost": 178.8, "totalQty": 30.0, "orderCount": 25, "margin": 217.71999999999997, "marginPct": 54.90769696358316}, {"YearMonth": "2025-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 1806.46, "totalRevenueExVAT": 1504.94, "totalCost": 665.28, "totalQty": 72.0, "orderCount": 54, "margin": 839.6600000000001, "marginPct": 55.79358645527397}, {"YearMonth": "2025-01", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 481.37, "totalRevenueExVAT": 401.08, "totalCost": 170.94, "totalQty": 37.0, "orderCount": 32, "margin": 230.14, "marginPct": 57.38007380073801}, {"YearMonth": "2025-01", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1817.7900000000002, "totalRevenueExVAT": 1514.93, "totalCost": 576.64, "totalQty": 53.0, "orderCount": 43, "margin": 938.2900000000001, "marginPct": 61.93619507171949}, {"YearMonth": "2025-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 1159.1299999999999, "totalRevenueExVAT": 965.1700000000001, "totalCost": 356.84999999999997, "totalQty": 117.0, "orderCount": 112, "margin": 608.3200000000002, "marginPct": 63.027238724784254}, {"YearMonth": "2025-01", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 600.22, "totalRevenueExVAT": 502.72, "totalCost": 195.2, "totalQty": 32.0, "orderCount": 30, "margin": 307.52000000000004, "marginPct": 61.17122851686824}, {"YearMonth": "2025-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 890.9, "totalRevenueExVAT": 742.08, "totalCost": 361.92, "totalQty": 52.0, "orderCount": 48, "margin": 380.16, "marginPct": 51.228978007761974}, {"YearMonth": "2025-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 717.7700000000001, "totalRevenueExVAT": 598.46, "totalCost": 278.4, "totalQty": 80.0, "orderCount": 74, "margin": 320.06000000000006, "marginPct": 53.48060020719848}, {"YearMonth": "2025-02", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 401.97999999999996, "totalRevenueExVAT": 334.9, "totalCost": 170.29999999999998, "totalQty": 26.0, "orderCount": 25, "margin": 164.6, "marginPct": 49.148999701403405}, {"YearMonth": "2025-02", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 688.4399999999999, "totalRevenueExVAT": 574.63, "totalCost": 212.1, "totalQty": 35.0, "orderCount": 32, "margin": 362.53, "marginPct": 63.08929224022414}, {"YearMonth": "2025-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1305.09, "totalRevenueExVAT": 1088.1299999999999, "totalCost": 495.36, "totalQty": 36.0, "orderCount": 34, "margin": 592.7699999999999, "marginPct": 54.476027680516104}, {"YearMonth": "2025-02", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 892.91, "totalRevenueExVAT": 744.12, "totalCost": 330.24, "totalQty": 48.0, "orderCount": 47, "margin": 413.88, "marginPct": 55.620061280438634}, {"YearMonth": "2025-02", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2266.0899999999997, "totalRevenueExVAT": 1888.04, "totalCost": 867.5, "totalQty": 125.0, "orderCount": 106, "margin": 1020.54, "marginPct": 54.05288023558823}, {"YearMonth": "2025-02", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 1183.19, "totalRevenueExVAT": 985.97, "totalCost": 322.94, "totalQty": 67.0, "orderCount": 56, "margin": 663.03, "marginPct": 67.24646794527216}, {"YearMonth": "2025-02", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1261.81, "totalRevenueExVAT": 1053.49, "totalCost": 147.5, "totalQty": 118.0, "orderCount": 100, "margin": 905.99, "marginPct": 85.99891788246686}, {"YearMonth": "2025-02", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 465.91999999999996, "totalRevenueExVAT": 388.28999999999996, "totalCost": 143.64, "totalQty": 21.0, "orderCount": 19, "margin": 244.64999999999998, "marginPct": 63.00703082747431}, {"YearMonth": "2025-02", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2145.4300000000003, "totalRevenueExVAT": 1787.65, "totalCost": 1120.0, "totalQty": 56.0, "orderCount": 41, "margin": 667.6500000000001, "marginPct": 37.347914860291446}, {"YearMonth": "2025-02", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1903.4099999999999, "totalRevenueExVAT": 1591.45, "totalCost": 580.92, "totalQty": 103.0, "orderCount": 94, "margin": 1010.5300000000001, "marginPct": 63.49743944201829}, {"YearMonth": "2025-02", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 175.16, "totalRevenueExVAT": 145.92, "totalCost": 53.58, "totalQty": 19.0, "orderCount": 18, "margin": 92.33999999999999, "marginPct": 63.28125}, {"YearMonth": "2025-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 479.27, "totalRevenueExVAT": 400.02, "totalCost": 95.36, "totalQty": 32.0, "orderCount": 31, "margin": 304.65999999999997, "marginPct": 76.16119194040297}, {"YearMonth": "2025-02", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 782.3199999999999, "totalRevenueExVAT": 653.17, "totalCost": 184.76, "totalQty": 31.0, "orderCount": 30, "margin": 468.40999999999997, "marginPct": 71.71333649738966}, {"YearMonth": "2025-02", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 857.15, "totalRevenueExVAT": 715.12, "totalCost": 287.0, "totalQty": 41.0, "orderCount": 36, "margin": 428.12, "marginPct": 59.86687548942835}, {"YearMonth": "2025-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1441.57, "totalRevenueExVAT": 1205.53, "totalCost": 465.12, "totalQty": 57.0, "orderCount": 50, "margin": 740.41, "marginPct": 61.41779963999237}, {"YearMonth": "2025-02", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1255.84, "totalRevenueExVAT": 1046.64, "totalCost": 379.44, "totalQty": 93.0, "orderCount": 88, "margin": 667.2, "marginPct": 63.74684705342811}, {"YearMonth": "2025-02", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 538.63, "totalRevenueExVAT": 448.77, "totalCost": 199.32000000000002, "totalQty": 22.0, "orderCount": 22, "margin": 249.44999999999996, "marginPct": 55.585266394812486}, {"YearMonth": "2025-02", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 472.20000000000005, "totalRevenueExVAT": 397.19, "totalCost": 186.16, "totalQty": 13.0, "orderCount": 13, "margin": 211.03, "marginPct": 53.1307434728971}, {"YearMonth": "2025-02", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 845.4300000000001, "totalRevenueExVAT": 708.16, "totalCost": 336.0, "totalQty": 24.0, "orderCount": 22, "margin": 372.15999999999997, "marginPct": 52.55309534568459}, {"YearMonth": "2025-02", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6055.22, "totalRevenueExVAT": 5047.4, "totalCost": 1636.5800000000002, "totalQty": 173.0, "orderCount": 146, "margin": 3410.8199999999997, "marginPct": 67.57578159052186}, {"YearMonth": "2025-02", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 711.8299999999999, "totalRevenueExVAT": 593.38, "totalCost": 250.32, "totalQty": 42.0, "orderCount": 35, "margin": 343.06, "marginPct": 57.81455391149011}, {"YearMonth": "2025-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 763.0699999999999, "totalRevenueExVAT": 635.81, "totalCost": 258.72, "totalQty": 28.0, "orderCount": 25, "margin": 377.0899999999999, "marginPct": 59.308598480678185}, {"YearMonth": "2025-02", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 319.39, "totalRevenueExVAT": 266.12, "totalCost": 106.26, "totalQty": 23.0, "orderCount": 23, "margin": 159.86, "marginPct": 60.07064482188487}, {"YearMonth": "2025-02", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 686.69, "totalRevenueExVAT": 572.2, "totalCost": 217.60000000000002, "totalQty": 20.0, "orderCount": 18, "margin": 354.6, "marginPct": 61.97133869276477}, {"YearMonth": "2025-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 640.74, "totalRevenueExVAT": 534.5300000000001, "totalCost": 173.85, "totalQty": 57.0, "orderCount": 54, "margin": 360.68000000000006, "marginPct": 67.47610049950424}, {"YearMonth": "2025-02", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 356.33, "totalRevenueExVAT": 298.87, "totalCost": 103.69999999999999, "totalQty": 17.0, "orderCount": 15, "margin": 195.17000000000002, "marginPct": 65.30263994378828}, {"YearMonth": "2025-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 465.53999999999996, "totalRevenueExVAT": 393.16999999999996, "totalCost": 174.0, "totalQty": 25.0, "orderCount": 25, "margin": 219.16999999999996, "marginPct": 55.744334511788786}, {"YearMonth": "2025-02", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 501.96, "totalRevenueExVAT": 418.64, "totalCost": 177.48, "totalQty": 51.0, "orderCount": 48, "margin": 241.16, "marginPct": 57.6055799732467}, {"YearMonth": "2025-03", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 541.29, "totalRevenueExVAT": 451.84999999999997, "totalCost": 229.25, "totalQty": 35.0, "orderCount": 31, "margin": 222.59999999999997, "marginPct": 49.26413632842757}, {"YearMonth": "2025-03", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1148.3899999999999, "totalRevenueExVAT": 956.56, "totalCost": 321.18, "totalQty": 53.0, "orderCount": 48, "margin": 635.3799999999999, "marginPct": 66.42343397173202}, {"YearMonth": "2025-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1339.67, "totalRevenueExVAT": 1116.49, "totalCost": 495.36, "totalQty": 36.0, "orderCount": 31, "margin": 621.13, "marginPct": 55.63238363084309}, {"YearMonth": "2025-03", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1069.07, "totalRevenueExVAT": 891.27, "totalCost": 378.4, "totalQty": 55.0, "orderCount": 52, "margin": 512.87, "marginPct": 57.54372973397511}, {"YearMonth": "2025-03", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2531.5299999999997, "totalRevenueExVAT": 2107.94, "totalCost": 943.84, "totalQty": 136.0, "orderCount": 104, "margin": 1164.1, "marginPct": 55.2245320075524}, {"YearMonth": "2025-03", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 775.03, "totalRevenueExVAT": 646.8299999999999, "totalCost": 192.8, "totalQty": 40.0, "orderCount": 33, "margin": 454.0299999999999, "marginPct": 70.19309555833834}, {"YearMonth": "2025-03", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1863.28, "totalRevenueExVAT": 1553.8000000000002, "totalCost": 215.0, "totalQty": 172.0, "orderCount": 137, "margin": 1338.8000000000002, "marginPct": 86.16295533530699}, {"YearMonth": "2025-03", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 537.06, "totalRevenueExVAT": 447.59999999999997, "totalCost": 164.16, "totalQty": 24.0, "orderCount": 23, "margin": 283.43999999999994, "marginPct": 63.324396782841816}, {"YearMonth": "2025-03", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1950.99, "totalRevenueExVAT": 1631.19, "totalCost": 1020.0, "totalQty": 51.0, "orderCount": 45, "margin": 611.19, "marginPct": 37.46896437570118}, {"YearMonth": "2025-03", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2250.0099999999998, "totalRevenueExVAT": 1875.83, "totalCost": 682.4399999999999, "totalQty": 121.0, "orderCount": 110, "margin": 1193.3899999999999, "marginPct": 63.619304521198615}, {"YearMonth": "2025-03", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 26.880000000000003, "totalRevenueExVAT": 22.38, "totalCost": 8.459999999999999, "totalQty": 3.0, "orderCount": 3, "margin": 13.92, "marginPct": 62.19839142091153}, {"YearMonth": "2025-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 488.09, "totalRevenueExVAT": 406.66999999999996, "totalCost": 92.38, "totalQty": 31.0, "orderCount": 31, "margin": 314.28999999999996, "marginPct": 77.2837927557971}, {"YearMonth": "2025-03", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 744.8, "totalRevenueExVAT": 620.76, "totalCost": 172.84, "totalQty": 29.0, "orderCount": 25, "margin": 447.91999999999996, "marginPct": 72.15671112829435}, {"YearMonth": "2025-03", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1088.79, "totalRevenueExVAT": 907.17, "totalCost": 357.0, "totalQty": 51.0, "orderCount": 43, "margin": 550.17, "marginPct": 60.646846787261474}, {"YearMonth": "2025-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1677.93, "totalRevenueExVAT": 1403.69, "totalCost": 522.24, "totalQty": 64.0, "orderCount": 60, "margin": 881.45, "marginPct": 62.795204069274554}, {"YearMonth": "2025-03", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1584.98, "totalRevenueExVAT": 1320.8600000000001, "totalCost": 481.44, "totalQty": 118.0, "orderCount": 112, "margin": 839.4200000000001, "marginPct": 63.551019790136735}, {"YearMonth": "2025-03", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 434.53, "totalRevenueExVAT": 363.32, "totalCost": 144.96, "totalQty": 16.0, "orderCount": 14, "margin": 218.35999999999999, "marginPct": 60.101288120664975}, {"YearMonth": "2025-03", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 184.75, "totalRevenueExVAT": 153.95, "totalCost": 71.6, "totalQty": 5.0, "orderCount": 5, "margin": 82.35, "marginPct": 53.49139330951608}, {"YearMonth": "2025-03", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1045.72, "totalRevenueExVAT": 871.35, "totalCost": 406.0, "totalQty": 29.0, "orderCount": 26, "margin": 465.35, "marginPct": 53.40563493429735}, {"YearMonth": "2025-03", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6426.21, "totalRevenueExVAT": 5356.6, "totalCost": 1750.1000000000001, "totalQty": 185.0, "orderCount": 167, "margin": 3606.5, "marginPct": 67.32815591979987}, {"YearMonth": "2025-03", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 377.78, "totalRevenueExVAT": 314.92, "totalCost": 131.12, "totalQty": 22.0, "orderCount": 19, "margin": 183.8, "marginPct": 58.364028959735805}, {"YearMonth": "2025-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 865.91, "totalRevenueExVAT": 724.31, "totalCost": 295.68, "totalQty": 32.0, "orderCount": 30, "margin": 428.62999999999994, "marginPct": 59.17770015601055}, {"YearMonth": "2025-03", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 457.03999999999996, "totalRevenueExVAT": 382.91999999999996, "totalCost": 152.46, "totalQty": 33.0, "orderCount": 31, "margin": 230.45999999999995, "marginPct": 60.184895017235974}, {"YearMonth": "2025-03", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1081.8400000000001, "totalRevenueExVAT": 901.76, "totalCost": 337.28000000000003, "totalQty": 31.0, "orderCount": 26, "margin": 564.48, "marginPct": 62.59758694109298}, {"YearMonth": "2025-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 842.4899999999999, "totalRevenueExVAT": 702.1600000000001, "totalCost": 216.54999999999998, "totalQty": 71.0, "orderCount": 63, "margin": 485.6100000000001, "marginPct": 69.15945083741597}, {"YearMonth": "2025-03", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 320.49, "totalRevenueExVAT": 267.03, "totalCost": 91.5, "totalQty": 15.0, "orderCount": 14, "margin": 175.52999999999997, "marginPct": 65.7341871699809}, {"YearMonth": "2025-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 511.65, "totalRevenueExVAT": 426.33, "totalCost": 187.92, "totalQty": 27.0, "orderCount": 24, "margin": 238.41, "marginPct": 55.921469284357194}, {"YearMonth": "2025-03", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 426.65, "totalRevenueExVAT": 356.46999999999997, "totalCost": 149.64, "totalQty": 43.0, "orderCount": 43, "margin": 206.82999999999998, "marginPct": 58.021712907117006}, {"YearMonth": "2025-04", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 500.0, "totalRevenueExVAT": 417.29999999999995, "totalCost": 209.6, "totalQty": 32.0, "orderCount": 30, "margin": 207.69999999999996, "marginPct": 49.772346034028274}, {"YearMonth": "2025-04", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 895.61, "totalRevenueExVAT": 746.22, "totalCost": 254.51999999999998, "totalQty": 42.0, "orderCount": 40, "margin": 491.70000000000005, "marginPct": 65.89209616466995}, {"YearMonth": "2025-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1358.67, "totalRevenueExVAT": 1132.27, "totalCost": 509.12, "totalQty": 37.0, "orderCount": 36, "margin": 623.15, "marginPct": 55.03545974016798}, {"YearMonth": "2025-04", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 968.67, "totalRevenueExVAT": 806.4499999999999, "totalCost": 344.0, "totalQty": 50.0, "orderCount": 47, "margin": 462.44999999999993, "marginPct": 57.34391468782937}, {"YearMonth": "2025-04", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2543.2799999999997, "totalRevenueExVAT": 2118.98, "totalCost": 957.72, "totalQty": 138.0, "orderCount": 116, "margin": 1161.26, "marginPct": 54.80278247081143}, {"YearMonth": "2025-04", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 798.05, "totalRevenueExVAT": 665.13, "totalCost": 197.62, "totalQty": 41.0, "orderCount": 34, "margin": 467.51, "marginPct": 70.28851502713755}, {"YearMonth": "2025-04", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1653.6, "totalRevenueExVAT": 1378.42, "totalCost": 192.5, "totalQty": 154.0, "orderCount": 127, "margin": 1185.92, "marginPct": 86.03473542171471}, {"YearMonth": "2025-04", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 679.34, "totalRevenueExVAT": 566.22, "totalCost": 205.2, "totalQty": 30.0, "orderCount": 28, "margin": 361.02000000000004, "marginPct": 63.75966938645756}, {"YearMonth": "2025-04", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2311.86, "totalRevenueExVAT": 1937.46, "totalCost": 1240.0, "totalQty": 62.0, "orderCount": 49, "margin": 697.46, "marginPct": 35.998678682398605}, {"YearMonth": "2025-04", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2190.8399999999997, "totalRevenueExVAT": 1825.31, "totalCost": 665.52, "totalQty": 118.0, "orderCount": 106, "margin": 1159.79, "marginPct": 63.53934400184078}, {"YearMonth": "2025-04", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 89.60000000000001, "totalRevenueExVAT": 74.6, "totalCost": 28.2, "totalQty": 10.0, "orderCount": 8, "margin": 46.39999999999999, "marginPct": 62.19839142091153}, {"YearMonth": "2025-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 636.4599999999999, "totalRevenueExVAT": 530.26, "totalCost": 122.18, "totalQty": 41.0, "orderCount": 38, "margin": 408.08, "marginPct": 76.95847320182551}, {"YearMonth": "2025-04", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 280.27, "totalRevenueExVAT": 233.59, "totalCost": 65.56, "totalQty": 11.0, "orderCount": 11, "margin": 168.03, "marginPct": 71.93373003981336}, {"YearMonth": "2025-04", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1240.25, "totalRevenueExVAT": 1033.37, "totalCost": 413.0, "totalQty": 59.0, "orderCount": 48, "margin": 620.3699999999999, "marginPct": 60.03367622439203}, {"YearMonth": "2025-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1855.8899999999999, "totalRevenueExVAT": 1549.7, "totalCost": 571.2, "totalQty": 70.0, "orderCount": 62, "margin": 978.5, "marginPct": 63.14125314577015}, {"YearMonth": "2025-04", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1434.27, "totalRevenueExVAT": 1195.3400000000001, "totalCost": 432.48, "totalQty": 106.0, "orderCount": 100, "margin": 762.8600000000001, "marginPct": 63.81949905466227}, {"YearMonth": "2025-04", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 377.35, "totalRevenueExVAT": 314.40999999999997, "totalCost": 126.84, "totalQty": 14.0, "orderCount": 14, "margin": 187.56999999999996, "marginPct": 59.65777169937343}, {"YearMonth": "2025-04", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 221.70000000000002, "totalRevenueExVAT": 184.74, "totalCost": 85.92, "totalQty": 6.0, "orderCount": 6, "margin": 98.82000000000001, "marginPct": 53.49139330951608}, {"YearMonth": "2025-04", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1086.3600000000001, "totalRevenueExVAT": 905.22, "totalCost": 420.0, "totalQty": 30.0, "orderCount": 26, "margin": 485.22, "marginPct": 53.60243918605422}, {"YearMonth": "2025-04", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7065.4400000000005, "totalRevenueExVAT": 5892.84, "totalCost": 1939.3000000000002, "totalQty": 205.0, "orderCount": 177, "margin": 3953.54, "marginPct": 67.09057093014573}, {"YearMonth": "2025-04", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 440.73999999999995, "totalRevenueExVAT": 367.4, "totalCost": 154.96, "totalQty": 26.0, "orderCount": 23, "margin": 212.43999999999997, "marginPct": 57.822536744692435}, {"YearMonth": "2025-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 782.65, "totalRevenueExVAT": 652.11, "totalCost": 267.96, "totalQty": 29.0, "orderCount": 28, "margin": 384.15000000000003, "marginPct": 58.90877305975985}, {"YearMonth": "2025-04", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 783.79, "totalRevenueExVAT": 657.4399999999999, "totalCost": 258.72, "totalQty": 56.0, "orderCount": 45, "margin": 398.7199999999999, "marginPct": 60.647359454855184}, {"YearMonth": "2025-04", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 877.21, "totalRevenueExVAT": 731.0, "totalCost": 272.0, "totalQty": 25.0, "orderCount": 23, "margin": 459.0, "marginPct": 62.7906976744186}, {"YearMonth": "2025-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 805.4599999999999, "totalRevenueExVAT": 671.2800000000001, "totalCost": 207.39999999999998, "totalQty": 68.0, "orderCount": 63, "margin": 463.8800000000001, "marginPct": 69.10380169228937}, {"YearMonth": "2025-04", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 434.62, "totalRevenueExVAT": 362.14, "totalCost": 122.0, "totalQty": 20.0, "orderCount": 19, "margin": 240.14, "marginPct": 66.31137129287016}, {"YearMonth": "2025-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 806.89, "totalRevenueExVAT": 674.23, "totalCost": 299.28, "totalQty": 43.0, "orderCount": 38, "margin": 374.95000000000005, "marginPct": 55.61158655058364}, {"YearMonth": "2025-04", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "90 Tablets", "Category": "Vitamin C", "totalRevenue": 298.5, "totalRevenueExVAT": 248.7, "totalCost": 104.4, "totalQty": 30.0, "orderCount": 29, "margin": 144.29999999999998, "marginPct": 58.021712907117006}, {"YearMonth": "2025-05", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 764.77, "totalRevenueExVAT": 637.91, "totalCost": 320.95, "totalQty": 49.0, "orderCount": 36, "margin": 316.96, "marginPct": 49.687259958301325}, {"YearMonth": "2025-05", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 1231.44, "totalRevenueExVAT": 1026.06, "totalCost": 345.41999999999996, "totalQty": 57.0, "orderCount": 47, "margin": 680.64, "marginPct": 66.3353020291211}, {"YearMonth": "2025-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2026.6100000000001, "totalRevenueExVAT": 1688.93, "totalCost": 756.8, "totalQty": 55.0, "orderCount": 53, "margin": 932.1300000000001, "marginPct": 55.19056444020771}, {"YearMonth": "2025-05", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1045.05, "totalRevenueExVAT": 872.97, "totalCost": 371.52, "totalQty": 54.0, "orderCount": 53, "margin": 501.45000000000005, "marginPct": 57.44183648922644}, {"YearMonth": "2025-05", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3291.8799999999997, "totalRevenueExVAT": 2742.67, "totalCost": 1242.26, "totalQty": 179.0, "orderCount": 126, "margin": 1500.41, "marginPct": 54.706180473771916}, {"YearMonth": "2025-05", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 732.17, "totalRevenueExVAT": 610.3, "totalCost": 178.34, "totalQty": 37.0, "orderCount": 28, "margin": 431.9599999999999, "marginPct": 70.77830575126985}, {"YearMonth": "2025-05", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1700.83, "totalRevenueExVAT": 1418.6200000000001, "totalCost": 198.75, "totalQty": 159.0, "orderCount": 126, "margin": 1219.8700000000001, "marginPct": 85.98990568298768}, {"YearMonth": "2025-05", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 495.74, "totalRevenueExVAT": 413.18, "totalCost": 150.48, "totalQty": 22.0, "orderCount": 21, "margin": 262.70000000000005, "marginPct": 63.58003775594173}, {"YearMonth": "2025-05", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3555.02, "totalRevenueExVAT": 2969.44, "totalCost": 1860.0, "totalQty": 93.0, "orderCount": 59, "margin": 1109.44, "marginPct": 37.36192682795409}, {"YearMonth": "2025-05", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2476.5299999999997, "totalRevenueExVAT": 2065.2999999999997, "totalCost": 761.4, "totalQty": 135.0, "orderCount": 122, "margin": 1303.8999999999996, "marginPct": 63.13368517890863}, {"YearMonth": "2025-05", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 62.720000000000006, "totalRevenueExVAT": 52.22, "totalCost": 19.74, "totalQty": 7.0, "orderCount": 7, "margin": 32.480000000000004, "marginPct": 62.198391420911534}, {"YearMonth": "2025-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 526.4, "totalRevenueExVAT": 438.56, "totalCost": 101.32, "totalQty": 34.0, "orderCount": 33, "margin": 337.24, "marginPct": 76.89711784020432}, {"YearMonth": "2025-05", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 716.25, "totalRevenueExVAT": 596.96, "totalCost": 166.88, "totalQty": 28.0, "orderCount": 27, "margin": 430.08000000000004, "marginPct": 72.04502814258912}, {"YearMonth": "2025-05", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1358.2, "totalRevenueExVAT": 1133.97, "totalCost": 441.0, "totalQty": 63.0, "orderCount": 49, "margin": 692.97, "marginPct": 61.11008227730892}, {"YearMonth": "2025-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1841.9, "totalRevenueExVAT": 1533.95, "totalCost": 571.2, "totalQty": 70.0, "orderCount": 58, "margin": 962.75, "marginPct": 62.76280191662049}, {"YearMonth": "2025-05", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1564.47, "totalRevenueExVAT": 1303.45, "totalCost": 473.28000000000003, "totalQty": 116.0, "orderCount": 112, "margin": 830.1700000000001, "marginPct": 63.69020675898577}, {"YearMonth": "2025-05", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 710.01, "totalRevenueExVAT": 591.55, "totalCost": 244.62, "totalQty": 27.0, "orderCount": 27, "margin": 346.92999999999995, "marginPct": 58.647620657594445}, {"YearMonth": "2025-05", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 328.08000000000004, "totalRevenueExVAT": 277.11, "totalCost": 128.88, "totalQty": 9.0, "orderCount": 8, "margin": 148.23000000000002, "marginPct": 53.49139330951608}, {"YearMonth": "2025-05", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 994.01, "totalRevenueExVAT": 828.24, "totalCost": 392.0, "totalQty": 28.0, "orderCount": 26, "margin": 436.24, "marginPct": 52.67072346179851}, {"YearMonth": "2025-05", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6106.110000000001, "totalRevenueExVAT": 5086.95833, "totalCost": 1664.96, "totalQty": 176.0, "orderCount": 160, "margin": 3421.9983300000004, "marginPct": 67.27002872854278}, {"YearMonth": "2025-05", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 456.5, "totalRevenueExVAT": 380.52, "totalCost": 160.92, "totalQty": 27.0, "orderCount": 25, "margin": 219.6, "marginPct": 57.71050141911069}, {"YearMonth": "2025-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "180 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 301.87, "totalRevenueExVAT": 251.53, "totalCost": 101.64, "totalQty": 11.0, "orderCount": 9, "margin": 149.89, "marginPct": 59.591301236433026}, {"YearMonth": "2025-05", "Description": "Visisoft\u2122 Lutein (10mg)", "SKUDescription": "90 Tablets", "Category": "Vitamins To Aid Vision", "totalRevenue": 86.69999999999999, "totalRevenueExVAT": 72.24, "totalCost": 36.96, "totalQty": 8.0, "orderCount": 8, "margin": 35.279999999999994, "marginPct": 48.837209302325576}, {"YearMonth": "2025-05", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1164.8600000000001, "totalRevenueExVAT": 970.64, "totalCost": 369.92, "totalQty": 34.0, "orderCount": 31, "margin": 600.72, "marginPct": 61.88906288634304}, {"YearMonth": "2025-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 888.8599999999999, "totalRevenueExVAT": 742.0000000000001, "totalCost": 228.75, "totalQty": 75.0, "orderCount": 72, "margin": 513.2500000000001, "marginPct": 69.1711590296496}, {"YearMonth": "2025-05", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 546.56, "totalRevenueExVAT": 455.41999999999996, "totalCost": 152.5, "totalQty": 25.0, "orderCount": 22, "margin": 302.91999999999996, "marginPct": 66.51442624390673}, {"YearMonth": "2025-05", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 999.54, "totalRevenueExVAT": 833.7099999999999, "totalCost": 368.88, "totalQty": 53.0, "orderCount": 47, "margin": 464.8299999999999, "marginPct": 55.754399011646726}, {"YearMonth": "2025-06", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 538.91, "totalRevenueExVAT": 451.84999999999997, "totalCost": 235.79999999999998, "totalQty": 36.0, "orderCount": 28, "margin": 216.04999999999998, "marginPct": 47.814540223525505}, {"YearMonth": "2025-06", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 800.74, "totalRevenueExVAT": 669.41, "totalCost": 224.22, "totalQty": 37.0, "orderCount": 31, "margin": 445.18999999999994, "marginPct": 66.50483261379424}, {"YearMonth": "2025-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1432.99, "totalRevenueExVAT": 1217.72, "totalCost": 536.64, "totalQty": 39.0, "orderCount": 35, "margin": 681.08, "marginPct": 55.93075583878068}, {"YearMonth": "2025-06", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 821.78, "totalRevenueExVAT": 690.04, "totalCost": 295.84, "totalQty": 43.0, "orderCount": 39, "margin": 394.2, "marginPct": 57.12712306532954}, {"YearMonth": "2025-06", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2150.95, "totalRevenueExVAT": 1792.1399999999999, "totalCost": 805.0400000000001, "totalQty": 116.0, "orderCount": 100, "margin": 987.0999999999998, "marginPct": 55.079402278839815}, {"YearMonth": "2025-06", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 754.22, "totalRevenueExVAT": 628.46, "totalCost": 192.8, "totalQty": 40.0, "orderCount": 38, "margin": 435.66, "marginPct": 69.32183432517583}, {"YearMonth": "2025-06", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1689.6999999999998, "totalRevenueExVAT": 1412.2500000000002, "totalCost": 196.25, "totalQty": 157.0, "orderCount": 126, "margin": 1216.0000000000002, "marginPct": 86.10373517436715}, {"YearMonth": "2025-06", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 661.03, "totalRevenueExVAT": 560.46, "totalCost": 205.2, "totalQty": 30.0, "orderCount": 27, "margin": 355.26000000000005, "marginPct": 63.38721764265068}, {"YearMonth": "2025-06", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3219.7400000000002, "totalRevenueExVAT": 2686.48, "totalCost": 1700.0, "totalQty": 85.0, "orderCount": 55, "margin": 986.48, "marginPct": 36.72016914326554}, {"YearMonth": "2025-06", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2093.36, "totalRevenueExVAT": 1751.09, "totalCost": 637.3199999999999, "totalQty": 113.0, "orderCount": 101, "margin": 1113.77, "marginPct": 63.6043835553855}, {"YearMonth": "2025-06", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 17.92, "totalRevenueExVAT": 14.92, "totalCost": 5.64, "totalQty": 2.0, "orderCount": 2, "margin": 9.280000000000001, "marginPct": 62.198391420911534}, {"YearMonth": "2025-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 520.39, "totalRevenueExVAT": 433.25, "totalCost": 98.34, "totalQty": 33.0, "orderCount": 32, "margin": 334.90999999999997, "marginPct": 77.30178880553952}, {"YearMonth": "2025-06", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 581.3199999999999, "totalRevenueExVAT": 484.46999999999997, "totalCost": 137.08, "totalQty": 23.0, "orderCount": 21, "margin": 347.39, "marginPct": 71.7051623423535}, {"YearMonth": "2025-06", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1042.7, "totalRevenueExVAT": 868.76, "totalCost": 364.0, "totalQty": 52.0, "orderCount": 39, "margin": 504.76, "marginPct": 58.10120171278604}, {"YearMonth": "2025-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1393.2, "totalRevenueExVAT": 1163.3400000000001, "totalCost": 440.64, "totalQty": 54.0, "orderCount": 48, "margin": 722.7000000000002, "marginPct": 62.12285316416526}, {"YearMonth": "2025-06", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1272.22, "totalRevenueExVAT": 1060.39, "totalCost": 391.68, "totalQty": 96.0, "orderCount": 86, "margin": 668.71, "marginPct": 63.06264676204037}, {"YearMonth": "2025-06", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 599.43, "totalRevenueExVAT": 500.73, "totalCost": 199.32000000000002, "totalQty": 22.0, "orderCount": 21, "margin": 301.40999999999997, "marginPct": 60.194116589778915}, {"YearMonth": "2025-06", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 288.22, "totalRevenueExVAT": 240.16, "totalCost": 114.56, "totalQty": 8.0, "orderCount": 8, "margin": 125.6, "marginPct": 52.298467688207865}, {"YearMonth": "2025-06", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1108.55, "totalRevenueExVAT": 923.6899999999999, "totalCost": 434.0, "totalQty": 31.0, "orderCount": 28, "margin": 489.68999999999994, "marginPct": 53.01453951000876}, {"YearMonth": "2025-06", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6637.6, "totalRevenueExVAT": 5551.32, "totalCost": 1835.2400000000002, "totalQty": 194.0, "orderCount": 171, "margin": 3716.0799999999995, "marginPct": 66.94047541845902}, {"YearMonth": "2025-06", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 508.95, "totalRevenueExVAT": 424.26, "totalCost": 184.76, "totalQty": 31.0, "orderCount": 28, "margin": 239.5, "marginPct": 56.45123273464385}, {"YearMonth": "2025-06", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1182.81, "totalRevenueExVAT": 985.64, "totalCost": 380.8, "totalQty": 35.0, "orderCount": 28, "margin": 604.8399999999999, "marginPct": 61.36520433423968}, {"YearMonth": "2025-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "180 Tablets", "Category": "Vitamin B", "totalRevenue": 733.76, "totalRevenueExVAT": 611.5200000000001, "totalCost": 189.1, "totalQty": 62.0, "orderCount": 61, "margin": 422.4200000000001, "marginPct": 69.07705389848246}, {"YearMonth": "2025-06", "Description": "Vitamin B12 1000mcg", "SKUDescription": "360 Tablets", "Category": "Vitamin B", "totalRevenue": 435.62, "totalRevenueExVAT": 363.96999999999997, "totalCost": 122.0, "totalQty": 20.0, "orderCount": 18, "margin": 241.96999999999997, "marginPct": 66.48075390828915}, {"YearMonth": "2025-06", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1067.05, "totalRevenueExVAT": 893.7099999999999, "totalCost": 396.71999999999997, "totalQty": 57.0, "orderCount": 56, "margin": 496.98999999999995, "marginPct": 55.609761555761935}, {"YearMonth": "2025-07", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 527.84, "totalRevenueExVAT": 441.21999999999997, "totalCost": 222.7, "totalQty": 34.0, "orderCount": 25, "margin": 218.51999999999998, "marginPct": 49.52631340374417}, {"YearMonth": "2025-07", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 836.33, "totalRevenueExVAT": 696.84, "totalCost": 236.33999999999997, "totalQty": 39.0, "orderCount": 37, "margin": 460.50000000000006, "marginPct": 66.08403650766317}, {"YearMonth": "2025-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1939.3000000000002, "totalRevenueExVAT": 1616.23, "totalCost": 715.52, "totalQty": 52.0, "orderCount": 49, "margin": 900.71, "marginPct": 55.72907321358965}, {"YearMonth": "2025-07", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1215.07, "totalRevenueExVAT": 1012.62, "totalCost": 433.44, "totalQty": 63.0, "orderCount": 58, "margin": 579.1800000000001, "marginPct": 57.19618415595189}, {"YearMonth": "2025-07", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2691.1, "totalRevenueExVAT": 2242.14, "totalCost": 1013.24, "totalQty": 146.0, "orderCount": 117, "margin": 1228.8999999999999, "marginPct": 54.809244739400754}, {"YearMonth": "2025-07", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 774.13, "totalRevenueExVAT": 645.16, "totalCost": 192.8, "totalQty": 40.0, "orderCount": 29, "margin": 452.35999999999996, "marginPct": 70.11594023188046}, {"YearMonth": "2025-07", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1444.4499999999998, "totalRevenueExVAT": 1204.1000000000001, "totalCost": 167.5, "totalQty": 134.0, "orderCount": 112, "margin": 1036.6000000000001, "marginPct": 86.08919524956399}, {"YearMonth": "2025-07", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 720.67, "totalRevenueExVAT": 600.64, "totalCost": 218.88, "totalQty": 32.0, "orderCount": 30, "margin": 381.76, "marginPct": 63.558870538092705}, {"YearMonth": "2025-07", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1869.7600000000002, "totalRevenueExVAT": 1557.95, "totalCost": 1000.0, "totalQty": 50.0, "orderCount": 43, "margin": 557.95, "marginPct": 35.81308771141564}, {"YearMonth": "2025-07", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2164.18, "totalRevenueExVAT": 1803.1999999999998, "totalCost": 654.24, "totalQty": 116.0, "orderCount": 106, "margin": 1148.9599999999998, "marginPct": 63.71783496007099}, {"YearMonth": "2025-07", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 62.720000000000006, "totalRevenueExVAT": 52.22, "totalCost": 19.74, "totalQty": 7.0, "orderCount": 5, "margin": 32.480000000000004, "marginPct": 62.198391420911534}, {"YearMonth": "2025-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 582.1999999999999, "totalRevenueExVAT": 485.08, "totalCost": 116.22, "totalQty": 39.0, "orderCount": 37, "margin": 368.86, "marginPct": 76.04106539127568}, {"YearMonth": "2025-07", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 360.71999999999997, "totalRevenueExVAT": 300.65, "totalCost": 83.44, "totalQty": 14.0, "orderCount": 13, "margin": 217.20999999999998, "marginPct": 72.24679860302678}, {"YearMonth": "2025-07", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 943.95, "totalRevenueExVAT": 786.45, "totalCost": 315.0, "totalQty": 45.0, "orderCount": 40, "margin": 471.45000000000005, "marginPct": 59.94659546061415}, {"YearMonth": "2025-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1490.42, "totalRevenueExVAT": 1241.97, "totalCost": 465.12, "totalQty": 57.0, "orderCount": 54, "margin": 776.85, "marginPct": 62.54982004396241}, {"YearMonth": "2025-07", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1609.48, "totalRevenueExVAT": 1346.46, "totalCost": 493.68, "totalQty": 121.0, "orderCount": 114, "margin": 852.78, "marginPct": 63.33496724744886}, {"YearMonth": "2025-07", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 452.83, "totalRevenueExVAT": 377.29, "totalCost": 154.02, "totalQty": 17.0, "orderCount": 17, "margin": 223.27, "marginPct": 59.177290678258096}, {"YearMonth": "2025-07", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 147.8, "totalRevenueExVAT": 123.16, "totalCost": 57.28, "totalQty": 4.0, "orderCount": 4, "margin": 65.88, "marginPct": 53.49139330951608}, {"YearMonth": "2025-07", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1045.71, "totalRevenueExVAT": 871.35, "totalCost": 406.0, "totalQty": 29.0, "orderCount": 26, "margin": 465.35, "marginPct": 53.40563493429735}, {"YearMonth": "2025-07", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6793.0, "totalRevenueExVAT": 5662.12, "totalCost": 1882.5400000000002, "totalQty": 199.0, "orderCount": 168, "margin": 3779.58, "marginPct": 66.75202927525379}, {"YearMonth": "2025-07", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 466.98999999999995, "totalRevenueExVAT": 389.28, "totalCost": 160.92, "totalQty": 27.0, "orderCount": 21, "margin": 228.35999999999999, "marginPct": 58.66214549938348}, {"YearMonth": "2025-07", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1042.6000000000001, "totalRevenueExVAT": 868.8000000000001, "totalCost": 326.40000000000003, "totalQty": 30.0, "orderCount": 26, "margin": 542.4000000000001, "marginPct": 62.43093922651934}, {"YearMonth": "2025-07", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1009.04, "totalRevenueExVAT": 841.5999999999999, "totalCost": 375.84, "totalQty": 54.0, "orderCount": 51, "margin": 465.75999999999993, "marginPct": 55.342205323193916}, {"YearMonth": "2025-08", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 489.72999999999996, "totalRevenueExVAT": 407.99, "totalCost": 209.6, "totalQty": 32.0, "orderCount": 30, "margin": 198.39000000000001, "marginPct": 48.626191818426925}, {"YearMonth": "2025-08", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 993.18, "totalRevenueExVAT": 828.53, "totalCost": 278.76, "totalQty": 46.0, "orderCount": 43, "margin": 549.77, "marginPct": 66.35486946761131}, {"YearMonth": "2025-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 2017.78, "totalRevenueExVAT": 1682.59, "totalCost": 770.56, "totalQty": 56.0, "orderCount": 52, "margin": 912.03, "marginPct": 54.203935599284435}, {"YearMonth": "2025-08", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 986.81, "totalRevenueExVAT": 826.35, "totalCost": 371.52, "totalQty": 54.0, "orderCount": 49, "margin": 454.83000000000004, "marginPct": 55.04084225812308}, {"YearMonth": "2025-08", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 2486.8199999999997, "totalRevenueExVAT": 2079.49, "totalCost": 957.72, "totalQty": 138.0, "orderCount": 111, "margin": 1121.7699999999998, "marginPct": 53.94447677074666}, {"YearMonth": "2025-08", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 712.28, "totalRevenueExVAT": 593.6, "totalCost": 178.34, "totalQty": 37.0, "orderCount": 31, "margin": 415.26, "marginPct": 69.95619946091644}, {"YearMonth": "2025-08", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1916.9899999999998, "totalRevenueExVAT": 1598.39, "totalCost": 223.75, "totalQty": 179.0, "orderCount": 150, "margin": 1374.64, "marginPct": 86.00153904866772}, {"YearMonth": "2025-08", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 527.9, "totalRevenueExVAT": 439.92, "totalCost": 164.16, "totalQty": 24.0, "orderCount": 24, "margin": 275.76, "marginPct": 62.68412438625204}, {"YearMonth": "2025-08", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 3046.6400000000003, "totalRevenueExVAT": 2546.66, "totalCost": 1580.0, "totalQty": 79.0, "orderCount": 56, "margin": 966.6599999999999, "marginPct": 37.95795276950986}, {"YearMonth": "2025-08", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1987.32, "totalRevenueExVAT": 1656.35, "totalCost": 614.76, "totalQty": 109.0, "orderCount": 99, "margin": 1041.59, "marginPct": 62.88465602076856}, {"YearMonth": "2025-08", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 53.760000000000005, "totalRevenueExVAT": 44.76, "totalCost": 16.919999999999998, "totalQty": 6.0, "orderCount": 6, "margin": 27.84, "marginPct": 62.19839142091153}, {"YearMonth": "2025-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 545.1899999999999, "totalRevenueExVAT": 455.84, "totalCost": 104.3, "totalQty": 35.0, "orderCount": 35, "margin": 351.53999999999996, "marginPct": 77.11916461916462}, {"YearMonth": "2025-08", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 666.9499999999999, "totalRevenueExVAT": 555.87, "totalCost": 154.96, "totalQty": 26.0, "orderCount": 23, "margin": 400.90999999999997, "marginPct": 72.12297839422887}, {"YearMonth": "2025-08", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1148.07, "totalRevenueExVAT": 956.55, "totalCost": 392.0, "totalQty": 56.0, "orderCount": 42, "margin": 564.55, "marginPct": 59.01939260885474}, {"YearMonth": "2025-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 2187.98, "totalRevenueExVAT": 1823.68, "totalCost": 677.28, "totalQty": 83.0, "orderCount": 68, "margin": 1146.4, "marginPct": 62.861905597473246}, {"YearMonth": "2025-08", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1550.43, "totalRevenueExVAT": 1291.8200000000002, "totalCost": 469.2, "totalQty": 115.0, "orderCount": 106, "margin": 822.6200000000001, "marginPct": 63.67915034602344}, {"YearMonth": "2025-08", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 505.94, "totalRevenueExVAT": 421.54, "totalCost": 172.14000000000001, "totalQty": 19.0, "orderCount": 17, "margin": 249.4, "marginPct": 59.164017649570624}, {"YearMonth": "2025-08", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 365.81, "totalRevenueExVAT": 304.82, "totalCost": 143.2, "totalQty": 10.0, "orderCount": 10, "margin": 161.62, "marginPct": 53.02145528508628}, {"YearMonth": "2025-08", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1398.9, "totalRevenueExVAT": 1173.09, "totalCost": 546.0, "totalQty": 39.0, "orderCount": 32, "margin": 627.0899999999999, "marginPct": 53.45625655320563}, {"YearMonth": "2025-08", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 6102.72, "totalRevenueExVAT": 5086.92, "totalCost": 1674.42, "totalQty": 177.0, "orderCount": 163, "margin": 3412.5, "marginPct": 67.0838149607228}, {"YearMonth": "2025-08", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 454.72999999999996, "totalRevenueExVAT": 379.06, "totalCost": 160.92, "totalQty": 27.0, "orderCount": 20, "margin": 218.14000000000001, "marginPct": 57.54761779137868}, {"YearMonth": "2025-08", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1011.8800000000001, "totalRevenueExVAT": 844.83833, "totalCost": 315.52000000000004, "totalQty": 29.0, "orderCount": 26, "margin": 529.3183300000001, "marginPct": 62.65320963834584}, {"YearMonth": "2025-08", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 541.43, "totalRevenueExVAT": 451.59, "totalCost": 201.84, "totalQty": 29.0, "orderCount": 29, "margin": 249.74999999999997, "marginPct": 55.30459044708695}, {"YearMonth": "2025-09", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 371.66999999999996, "totalRevenueExVAT": 309.65, "totalCost": 157.2, "totalQty": 24.0, "orderCount": 22, "margin": 152.45, "marginPct": 49.23300500565154}, {"YearMonth": "2025-09", "Description": "Cod Liver Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Cod Liver Oil", "totalRevenue": 820.96, "totalRevenueExVAT": 684.04, "totalCost": 230.27999999999997, "totalQty": 38.0, "orderCount": 36, "margin": 453.76, "marginPct": 66.3353020291211}, {"YearMonth": "2025-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1332.1000000000001, "totalRevenueExVAT": 1110.15, "totalCost": 495.36, "totalQty": 36.0, "orderCount": 34, "margin": 614.7900000000001, "marginPct": 55.37900283745441}, {"YearMonth": "2025-09", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 994.12, "totalRevenueExVAT": 828.02, "totalCost": 357.76, "totalQty": 52.0, "orderCount": 50, "margin": 470.26, "marginPct": 56.79331417115529}, {"YearMonth": "2025-09", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1967.1699999999998, "totalRevenueExVAT": 1638.97, "totalCost": 742.58, "totalQty": 107.0, "orderCount": 92, "margin": 896.39, "marginPct": 54.69227624666711}, {"YearMonth": "2025-09", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 580.59, "totalRevenueExVAT": 483.87, "totalCost": 144.60000000000002, "totalQty": 30.0, "orderCount": 27, "margin": 339.27, "marginPct": 70.11594023188046}, {"YearMonth": "2025-09", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 2048.39, "totalRevenueExVAT": 1707.95, "totalCost": 238.75, "totalQty": 191.0, "orderCount": 152, "margin": 1469.2, "marginPct": 86.02125354957698}, {"YearMonth": "2025-09", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 330.52, "totalRevenueExVAT": 275.43, "totalCost": 102.6, "totalQty": 15.0, "orderCount": 14, "margin": 172.83, "marginPct": 62.74915586537414}, {"YearMonth": "2025-09", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2081.53, "totalRevenueExVAT": 1734.38, "totalCost": 1120.0, "totalQty": 56.0, "orderCount": 38, "margin": 614.3800000000001, "marginPct": 35.42360958959398}, {"YearMonth": "2025-09", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1174.62, "totalRevenueExVAT": 978.9699999999999, "totalCost": 355.32, "totalQty": 63.0, "orderCount": 56, "margin": 623.6499999999999, "marginPct": 63.704710052402}, {"YearMonth": "2025-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 467.37, "totalRevenueExVAT": 389.39, "totalCost": 89.4, "totalQty": 30.0, "orderCount": 29, "margin": 299.99, "marginPct": 77.04101286627802}, {"YearMonth": "2025-09", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 358.12, "totalRevenueExVAT": 298.48, "totalCost": 83.44, "totalQty": 14.0, "orderCount": 13, "margin": 215.04000000000002, "marginPct": 72.04502814258912}, {"YearMonth": "2025-09", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 1091.98, "totalRevenueExVAT": 910.8299999999999, "totalCost": 357.0, "totalQty": 51.0, "orderCount": 41, "margin": 553.8299999999999, "marginPct": 60.80498007312012}, {"YearMonth": "2025-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1654.25, "totalRevenueExVAT": 1381.23, "totalCost": 514.08, "totalQty": 63.0, "orderCount": 59, "margin": 867.15, "marginPct": 62.780999543884796}, {"YearMonth": "2025-09", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1272.1, "totalRevenueExVAT": 1061.63, "totalCost": 383.52, "totalQty": 94.0, "orderCount": 87, "margin": 678.1100000000001, "marginPct": 63.874419524693174}, {"YearMonth": "2025-09", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 377.34999999999997, "totalRevenueExVAT": 314.40999999999997, "totalCost": 126.84, "totalQty": 14.0, "orderCount": 13, "margin": 187.56999999999996, "marginPct": 59.65777169937343}, {"YearMonth": "2025-09", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 293.6, "totalRevenueExVAT": 246.32, "totalCost": 114.56, "totalQty": 8.0, "orderCount": 6, "margin": 131.76, "marginPct": 53.49139330951608}, {"YearMonth": "2025-09", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 1258.04, "totalRevenueExVAT": 1049.93, "totalCost": 490.0, "totalQty": 35.0, "orderCount": 31, "margin": 559.9300000000001, "marginPct": 53.33022201480099}, {"YearMonth": "2025-09", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 5813.43, "totalRevenueExVAT": 4844.28, "totalCost": 1589.2800000000002, "totalQty": 168.0, "orderCount": 144, "margin": 3254.9999999999995, "marginPct": 67.1926478238252}, {"YearMonth": "2025-09", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 405.77, "totalRevenueExVAT": 338.24, "totalCost": 143.04, "totalQty": 24.0, "orderCount": 22, "margin": 195.20000000000002, "marginPct": 57.71050141911069}, {"YearMonth": "2025-09", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1420.1000000000001, "totalRevenueExVAT": 1183.3600000000001, "totalCost": 446.08000000000004, "totalQty": 41.0, "orderCount": 35, "margin": 737.2800000000001, "marginPct": 62.30394808004327}, {"YearMonth": "2025-09", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 992.61, "totalRevenueExVAT": 828.9699999999999, "totalCost": 368.88, "totalQty": 53.0, "orderCount": 51, "margin": 460.0899999999999, "marginPct": 55.50140535845688}, {"YearMonth": "2025-10", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 512.22, "totalRevenueExVAT": 427.93, "totalCost": 216.15, "totalQty": 33.0, "orderCount": 28, "margin": 211.78, "marginPct": 49.489402472366976}, {"YearMonth": "2025-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1590.16, "totalRevenueExVAT": 1325.22, "totalCost": 591.68, "totalQty": 43.0, "orderCount": 37, "margin": 733.5400000000001, "marginPct": 55.35231886026472}, {"YearMonth": "2025-10", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 1311.0, "totalRevenueExVAT": 1092.43, "totalCost": 467.84, "totalQty": 68.0, "orderCount": 57, "margin": 624.5900000000001, "marginPct": 57.17437272868743}, {"YearMonth": "2025-10", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 3228.99, "totalRevenueExVAT": 2690.5699999999997, "totalCost": 1221.44, "totalQty": 176.0, "orderCount": 130, "margin": 1469.1299999999997, "marginPct": 54.60292800410321}, {"YearMonth": "2025-10", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 654.42, "totalRevenueExVAT": 545.38, "totalCost": 168.70000000000002, "totalQty": 35.0, "orderCount": 31, "margin": 376.67999999999995, "marginPct": 69.06743921669293}, {"YearMonth": "2025-10", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1990.81, "totalRevenueExVAT": 1659.6100000000001, "totalCost": 232.5, "totalQty": 186.0, "orderCount": 149, "margin": 1427.1100000000001, "marginPct": 85.99068455842036}, {"YearMonth": "2025-10", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2906.3500000000004, "totalRevenueExVAT": 2423.48, "totalCost": 1540.0, "totalQty": 77.0, "orderCount": 51, "margin": 883.48, "marginPct": 36.45501510224966}, {"YearMonth": "2025-10", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2327.47, "totalRevenueExVAT": 1938.99, "totalCost": 710.64, "totalQty": 126.0, "orderCount": 117, "margin": 1228.35, "marginPct": 63.3499914904151}, {"YearMonth": "2025-10", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 53.760000000000005, "totalRevenueExVAT": 44.76, "totalCost": 16.919999999999998, "totalQty": 6.0, "orderCount": 4, "margin": 27.84, "marginPct": 62.19839142091153}, {"YearMonth": "2025-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 501.26, "totalRevenueExVAT": 417.29999999999995, "totalCost": 95.36, "totalQty": 32.0, "orderCount": 30, "margin": 321.93999999999994, "marginPct": 77.14833453151209}, {"YearMonth": "2025-10", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 526.8199999999999, "totalRevenueExVAT": 439.03999999999996, "totalCost": 125.16, "totalQty": 21.0, "orderCount": 19, "margin": 313.88, "marginPct": 71.49234693877553}, {"YearMonth": "2025-10", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 997.61, "totalRevenueExVAT": 832.18, "totalCost": 329.0, "totalQty": 47.0, "orderCount": 38, "margin": 503.17999999999995, "marginPct": 60.46528395299093}, {"YearMonth": "2025-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1420.33, "totalRevenueExVAT": 1183.5900000000001, "totalCost": 440.64, "totalQty": 54.0, "orderCount": 50, "margin": 742.9500000000002, "marginPct": 62.770891947380434}, {"YearMonth": "2025-10", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1627.27, "totalRevenueExVAT": 1356.8500000000001, "totalCost": 497.76, "totalQty": 122.0, "orderCount": 115, "margin": 859.0900000000001, "marginPct": 63.315031138298274}, {"YearMonth": "2025-10", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 631.74, "totalRevenueExVAT": 526.34, "totalCost": 217.44, "totalQty": 24.0, "orderCount": 24, "margin": 308.90000000000003, "marginPct": 58.688300338184455}, {"YearMonth": "2025-10", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 468.51, "totalRevenueExVAT": 394.11, "totalCost": 186.16, "totalQty": 13.0, "orderCount": 10, "margin": 207.95000000000002, "marginPct": 52.764456623785236}, {"YearMonth": "2025-10", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 824.02, "totalRevenueExVAT": 686.61, "totalCost": 322.0, "totalQty": 23.0, "orderCount": 20, "margin": 364.61, "marginPct": 53.10292596961885}, {"YearMonth": "2025-10", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 7308.42, "totalRevenueExVAT": 6096.56, "totalCost": 1996.0600000000002, "totalQty": 211.0, "orderCount": 182, "margin": 4100.5, "marginPct": 67.25924127704803}, {"YearMonth": "2025-10", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 498.45, "totalRevenueExVAT": 415.5, "totalCost": 178.8, "totalQty": 30.0, "orderCount": 24, "margin": 236.7, "marginPct": 56.96750902527076}, {"YearMonth": "2025-10", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1772.41, "totalRevenueExVAT": 1476.96, "totalCost": 554.88, "totalQty": 51.0, "orderCount": 42, "margin": 922.08, "marginPct": 62.430939226519335}, {"YearMonth": "2025-10", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 1160.6399999999999, "totalRevenueExVAT": 967.92, "totalCost": 431.52, "totalQty": 62.0, "orderCount": 57, "margin": 536.4, "marginPct": 55.41780312422514}, {"YearMonth": "2025-11", "Description": "5-HTP 100mg", "SKUDescription": "90 Capsules", "Category": "Amino Acids", "totalRevenue": 291.91999999999996, "totalRevenueExVAT": 243.2, "totalCost": 124.45, "totalQty": 19.0, "orderCount": 16, "margin": 118.74999999999999, "marginPct": 48.82812499999999}, {"YearMonth": "2025-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1400.41, "totalRevenueExVAT": 1167.07, "totalCost": 536.64, "totalQty": 39.0, "orderCount": 38, "margin": 630.43, "marginPct": 54.018182285552705}, {"YearMonth": "2025-11", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 970.85, "totalRevenueExVAT": 813.06, "totalCost": 350.88, "totalQty": 51.0, "orderCount": 49, "margin": 462.17999999999995, "marginPct": 56.84451332005018}, {"YearMonth": "2025-11", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1917.9299999999998, "totalRevenueExVAT": 1597.91, "totalCost": 728.7, "totalQty": 105.0, "orderCount": 92, "margin": 869.21, "marginPct": 54.396680664117504}, {"YearMonth": "2025-11", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 618.51, "totalRevenueExVAT": 515.46, "totalCost": 154.24, "totalQty": 32.0, "orderCount": 26, "margin": 361.22, "marginPct": 70.07721258681566}, {"YearMonth": "2025-11", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1726.9999999999998, "totalRevenueExVAT": 1439.64, "totalCost": 200.0, "totalQty": 160.0, "orderCount": 121, "margin": 1239.64, "marginPct": 86.10763802061626}, {"YearMonth": "2025-11", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2397.12, "totalRevenueExVAT": 2014.02, "totalCost": 1300.0, "totalQty": 65.0, "orderCount": 40, "margin": 714.02, "marginPct": 35.45247812832047}, {"YearMonth": "2025-11", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 2084.6, "totalRevenueExVAT": 1736.8799999999999, "totalCost": 631.68, "totalQty": 112.0, "orderCount": 98, "margin": 1105.1999999999998, "marginPct": 63.631338952604665}, {"YearMonth": "2025-11", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 26.880000000000003, "totalRevenueExVAT": 22.38, "totalCost": 8.459999999999999, "totalQty": 3.0, "orderCount": 3, "margin": 13.92, "marginPct": 62.19839142091153}, {"YearMonth": "2025-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 535.9399999999999, "totalRevenueExVAT": 446.53999999999996, "totalCost": 101.32, "totalQty": 34.0, "orderCount": 31, "margin": 345.21999999999997, "marginPct": 77.30998342813635}, {"YearMonth": "2025-11", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 485.28, "totalRevenueExVAT": 404.46, "totalCost": 113.24, "totalQty": 19.0, "orderCount": 18, "margin": 291.21999999999997, "marginPct": 72.00217574049348}, {"YearMonth": "2025-11", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 680.5, "totalRevenueExVAT": 566.98, "totalCost": 224.0, "totalQty": 32.0, "orderCount": 29, "margin": 342.98, "marginPct": 60.49243359554129}, {"YearMonth": "2025-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1852.42, "totalRevenueExVAT": 1547.45, "totalCost": 571.2, "totalQty": 70.0, "orderCount": 57, "margin": 976.25, "marginPct": 63.08766034443762}, {"YearMonth": "2025-11", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1249.11, "totalRevenueExVAT": 1041.8100000000002, "totalCost": 379.44, "totalQty": 93.0, "orderCount": 89, "margin": 662.3700000000001, "marginPct": 63.5787715610332}, {"YearMonth": "2025-11", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 396.93, "totalRevenueExVAT": 330.71, "totalCost": 135.9, "totalQty": 15.0, "orderCount": 15, "margin": 194.80999999999997, "marginPct": 58.906594901877774}, {"YearMonth": "2025-11", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 295.6, "totalRevenueExVAT": 246.32, "totalCost": 114.56, "totalQty": 8.0, "orderCount": 8, "margin": 131.76, "marginPct": 53.49139330951608}, {"YearMonth": "2025-11", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 979.2, "totalRevenueExVAT": 815.93, "totalCost": 378.0, "totalQty": 27.0, "orderCount": 22, "margin": 437.92999999999995, "marginPct": 53.67249641513365}, {"YearMonth": "2025-11", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 5375.68, "totalRevenueExVAT": 4487.8, "totalCost": 1466.3000000000002, "totalQty": 155.0, "orderCount": 134, "margin": 3021.5, "marginPct": 67.326975355408}, {"YearMonth": "2025-11", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 442.48999999999995, "totalRevenueExVAT": 368.86, "totalCost": 154.96, "totalQty": 26.0, "orderCount": 23, "margin": 213.9, "marginPct": 57.98948110394188}, {"YearMonth": "2025-11", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 1189.99, "totalRevenueExVAT": 991.64, "totalCost": 369.92, "totalQty": 34.0, "orderCount": 29, "margin": 621.72, "marginPct": 62.69613972812714}, {"YearMonth": "2025-11", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 938.04, "totalRevenueExVAT": 781.5999999999999, "totalCost": 348.0, "totalQty": 50.0, "orderCount": 44, "margin": 433.5999999999999, "marginPct": 55.47594677584442}, {"YearMonth": "2025-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 1111.97, "totalRevenueExVAT": 926.71, "totalCost": 412.8, "totalQty": 30.0, "orderCount": 25, "margin": 513.9100000000001, "marginPct": 55.45532043465594}, {"YearMonth": "2025-12", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 844.32, "totalRevenueExVAT": 703.33, "totalCost": 302.71999999999997, "totalQty": 44.0, "orderCount": 42, "margin": 400.61000000000007, "marginPct": 56.95903772055792}, {"YearMonth": "2025-12", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1406.07, "totalRevenueExVAT": 1171.59, "totalCost": 534.38, "totalQty": 77.0, "orderCount": 68, "margin": 637.2099999999999, "marginPct": 54.388480611818125}, {"YearMonth": "2025-12", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 482.83, "totalRevenueExVAT": 402.39, "totalCost": 120.5, "totalQty": 25.0, "orderCount": 19, "margin": 281.89, "marginPct": 70.0539277815055}, {"YearMonth": "2025-12", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 1683.11, "totalRevenueExVAT": 1406.66, "totalCost": 197.5, "totalQty": 158.0, "orderCount": 123, "margin": 1209.16, "marginPct": 85.95964909786302}, {"YearMonth": "2025-12", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 1068.6399999999999, "totalRevenueExVAT": 893.28, "totalCost": 328.32, "totalQty": 48.0, "orderCount": 41, "margin": 564.96, "marginPct": 63.24556689951639}, {"YearMonth": "2025-12", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 2257.3, "totalRevenueExVAT": 1880.86, "totalCost": 1180.0, "totalQty": 59.0, "orderCount": 42, "margin": 700.8599999999999, "marginPct": 37.26274151186159}, {"YearMonth": "2025-12", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 1237.98, "totalRevenueExVAT": 1034.23, "totalCost": 377.88, "totalQty": 67.0, "orderCount": 60, "margin": 656.35, "marginPct": 63.46267271303289}, {"YearMonth": "2025-12", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 8.96, "totalRevenueExVAT": 7.46, "totalCost": 2.82, "totalQty": 1.0, "orderCount": 1, "margin": 4.640000000000001, "marginPct": 62.198391420911534}, {"YearMonth": "2025-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 464.9, "totalRevenueExVAT": 388.06, "totalCost": 89.4, "totalQty": 30.0, "orderCount": 29, "margin": 298.65999999999997, "marginPct": 76.96232541359582}, {"YearMonth": "2025-12", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 454.16999999999996, "totalRevenueExVAT": 378.49, "totalCost": 107.28, "totalQty": 18.0, "orderCount": 15, "margin": 271.21000000000004, "marginPct": 71.65579011334515}, {"YearMonth": "2025-12", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 763.92, "totalRevenueExVAT": 636.48, "totalCost": 252.0, "totalQty": 36.0, "orderCount": 31, "margin": 384.48, "marginPct": 60.40723981900452}, {"YearMonth": "2025-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 1296.38, "totalRevenueExVAT": 1080.25, "totalCost": 416.16, "totalQty": 51.0, "orderCount": 45, "margin": 664.0899999999999, "marginPct": 61.475584355473266}, {"YearMonth": "2025-12", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 1153.83, "totalRevenueExVAT": 961.57, "totalCost": 350.88, "totalQty": 86.0, "orderCount": 80, "margin": 610.69, "marginPct": 63.50967688259826}, {"YearMonth": "2025-12", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 377.35, "totalRevenueExVAT": 314.40999999999997, "totalCost": 126.84, "totalQty": 14.0, "orderCount": 14, "margin": 187.56999999999996, "marginPct": 59.65777169937343}, {"YearMonth": "2025-12", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 107.16, "totalRevenueExVAT": 89.28999999999999, "totalCost": 42.96, "totalQty": 3.0, "orderCount": 3, "margin": 46.32999999999999, "marginPct": 51.88710941874789}, {"YearMonth": "2025-12", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 894.23, "totalRevenueExVAT": 745.11, "totalCost": 350.0, "totalQty": 25.0, "orderCount": 22, "margin": 395.11, "marginPct": 53.027069828615915}, {"YearMonth": "2025-12", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 4339.42, "totalRevenueExVAT": 3615.96, "totalCost": 1201.42, "totalQty": 127.0, "orderCount": 116, "margin": 2414.54, "marginPct": 66.77452184205578}, {"YearMonth": "2025-12", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 418.0, "totalRevenueExVAT": 348.44, "totalCost": 149.0, "totalQty": 25.0, "orderCount": 24, "margin": 199.44, "marginPct": 57.23797497417059}, {"YearMonth": "2025-12", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 939.98, "totalRevenueExVAT": 784.9200000000001, "totalCost": 293.76, "totalQty": 27.0, "orderCount": 25, "margin": 491.1600000000001, "marginPct": 62.57452988839628}, {"YearMonth": "2025-12", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 724.79, "totalRevenueExVAT": 604.75, "totalCost": 292.32, "totalQty": 42.0, "orderCount": 38, "margin": 312.43, "marginPct": 51.662670525010334}, {"YearMonth": "2026-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "180 Tablets", "Category": "Glucosamine", "totalRevenue": 702.1, "totalRevenueExVAT": 585.12, "totalCost": 288.96, "totalQty": 21.0, "orderCount": 18, "margin": 296.16, "marginPct": 50.61525840853158}, {"YearMonth": "2026-01", "Description": "Glucosamine with Chondroitin (500mg/400mg)", "SKUDescription": "90 Tablets", "Category": "Glucosamine", "totalRevenue": 447.40999999999997, "totalRevenueExVAT": 372.46999999999997, "totalCost": 158.24, "totalQty": 23.0, "orderCount": 23, "margin": 214.22999999999996, "marginPct": 57.516041560394115}, {"YearMonth": "2026-01", "Description": "High Strength Calcium Citrate", "SKUDescription": "180 Capsules", "Category": "Bone Health", "totalRevenue": 1264.03, "totalRevenueExVAT": 1053.1799999999998, "totalCost": 471.92, "totalQty": 68.0, "orderCount": 46, "margin": 581.2599999999998, "marginPct": 55.19094551738542}, {"YearMonth": "2026-01", "Description": "High Strength Rosehip 10,000mg", "SKUDescription": "120 Tablets", "Category": "High Strength Rosehip Extract Tablets", "totalRevenue": 275.02, "totalRevenueExVAT": 232.82, "totalCost": 81.94, "totalQty": 17.0, "orderCount": 10, "margin": 150.88, "marginPct": 64.8054290868482}, {"YearMonth": "2026-01", "Description": "High Strength Vitamin D3 1000iu", "SKUDescription": "120 Tablets", "Category": "Bone Health", "totalRevenue": 806.0, "totalRevenueExVAT": 671.8700000000001, "totalCost": 93.75, "totalQty": 75.0, "orderCount": 62, "margin": 578.1200000000001, "marginPct": 86.04640778722074}, {"YearMonth": "2026-01", "Description": "Hyaluronic Acid Complex", "SKUDescription": "120 Capsules", "Category": "Glucosamine", "totalRevenue": 156.82999999999998, "totalRevenueExVAT": 133.91, "totalCost": 47.879999999999995, "totalQty": 7.0, "orderCount": 5, "margin": 86.03, "marginPct": 64.24464192368009}, {"YearMonth": "2026-01", "Description": "Kaneka Ubiquinol\u2122 100mg", "SKUDescription": "60 Capsules", "Category": "Natural Co Q10", "totalRevenue": 1010.7700000000001, "totalRevenueExVAT": 842.23, "totalCost": 540.0, "totalQty": 27.0, "orderCount": 18, "margin": 302.23, "marginPct": 35.88449710886575}, {"YearMonth": "2026-01", "Description": "Magnesium 188mg", "SKUDescription": "180 Tablets", "Category": "Bone Health", "totalRevenue": 657.23, "totalRevenueExVAT": 549.48, "totalCost": 203.04, "totalQty": 36.0, "orderCount": 35, "margin": 346.44000000000005, "marginPct": 63.0487005896484}, {"YearMonth": "2026-01", "Description": "Magnesium 188mg", "SKUDescription": "90 Tablets", "Category": "Bone Health", "totalRevenue": 8.96, "totalRevenueExVAT": 7.46, "totalCost": 2.82, "totalQty": 1.0, "orderCount": 1, "margin": 4.640000000000001, "marginPct": 62.198391420911534}, {"YearMonth": "2026-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "120 Tablets", "Category": "Vitamin B", "totalRevenue": 216.94, "totalRevenueExVAT": 180.74, "totalCost": 41.72, "totalQty": 14.0, "orderCount": 14, "margin": 139.02, "marginPct": 76.91711851278079}, {"YearMonth": "2026-01", "Description": "Methylcobalamin Vitamin B12", "SKUDescription": "240 Tablets", "Category": "Vitamin B", "totalRevenue": 358.13, "totalRevenueExVAT": 298.48, "totalCost": 83.44, "totalQty": 14.0, "orderCount": 11, "margin": 215.04000000000002, "marginPct": 72.04502814258912}, {"YearMonth": "2026-01", "Description": "Montmorency Cherry Juice Extract 4350mg", "SKUDescription": "120 Capsules", "Category": "Montmorency Cherry Juice Extract", "totalRevenue": 327.06, "totalRevenueExVAT": 272.52, "totalCost": 105.0, "totalQty": 15.0, "orderCount": 14, "margin": 167.51999999999998, "marginPct": 61.47071774548657}, {"YearMonth": "2026-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "180 Tablets", "Category": "Multivitamins", "totalRevenue": 816.17, "totalRevenueExVAT": 680.51, "totalCost": 252.96, "totalQty": 31.0, "orderCount": 25, "margin": 427.54999999999995, "marginPct": 62.82787909068198}, {"YearMonth": "2026-01", "Description": "Multivitamins A-Zinc 50+", "SKUDescription": "90 Tablets", "Category": "Multivitamins", "totalRevenue": 688.5, "totalRevenueExVAT": 573.3100000000001, "totalCost": 204.0, "totalQty": 50.0, "orderCount": 46, "margin": 369.31000000000006, "marginPct": 64.41715651218364}, {"YearMonth": "2026-01", "Description": "Myo-Inositol 500mg", "SKUDescription": "180 Capsules", "Category": "Vitamin B", "totalRevenue": 53.11, "totalRevenueExVAT": 44.25, "totalCost": 18.12, "totalQty": 2.0, "orderCount": 2, "margin": 26.13, "marginPct": 59.05084745762712}, {"YearMonth": "2026-01", "Description": "Omega-3 Fish Oil 1000mg", "SKUDescription": "360 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 144.11, "totalRevenueExVAT": 120.08, "totalCost": 57.28, "totalQty": 4.0, "orderCount": 3, "margin": 62.8, "marginPct": 52.298467688207865}, {"YearMonth": "2026-01", "Description": "Plant Sterols 800mg", "SKUDescription": "180 Tablets", "Category": "Herbal Supplements", "totalRevenue": 509.92, "totalRevenueExVAT": 424.9, "totalCost": 196.0, "totalQty": 14.0, "orderCount": 12, "margin": 228.89999999999998, "marginPct": 53.87149917627677}, {"YearMonth": "2026-01", "Description": "Turmeric with BioPerine\u00ae (Black Pepper Extract)", "SKUDescription": "120 Tablets", "Category": "Turmeric Tablets With Bioperine Black Pepper Extract", "totalRevenue": 1865.91, "totalRevenueExVAT": 1554.8400000000001, "totalCost": 520.3000000000001, "totalQty": 55.0, "orderCount": 52, "margin": 1034.54, "marginPct": 66.53674976203338}, {"YearMonth": "2026-01", "Description": "Vegetarian Flaxseed Oil 1000mg", "SKUDescription": "180 Capsules", "Category": "Omega 3 Supplements", "totalRevenue": 152.16, "totalRevenueExVAT": 126.84, "totalCost": 53.64, "totalQty": 9.0, "orderCount": 7, "margin": 73.2, "marginPct": 57.71050141911069}, {"YearMonth": "2026-01", "Description": "Visisoft\u2122 UltraBright", "SKUDescription": "120 Capsules", "Category": "Vitamins To Aid Vision", "totalRevenue": 388.27000000000004, "totalRevenueExVAT": 323.56, "totalCost": 119.68, "totalQty": 11.0, "orderCount": 11, "margin": 203.88, "marginPct": 63.01149709482012}, {"YearMonth": "2026-01", "Description": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "SKUDescription": "180 Tablets", "Category": "Vitamin C", "totalRevenue": 445.34999999999997, "totalRevenueExVAT": 371.06, "totalCost": 167.04, "totalQty": 24.0, "orderCount": 23, "margin": 204.02, "marginPct": 54.98302161375519}], "crossSell": [{"product1": "Super Strength Vitamin D3 4000iu", "product2": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "count": 2044}, {"product1": "Multivitamins A-Zinc 50+", "product2": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "count": 1613}, {"product1": "High Strength Vitamin D3 1000iu", "product2": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "count": 1532}, {"product1": "Glucosamine with Chondroitin (500mg/400mg)", "product2": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "count": 1509}, {"product1": "Super Strength Vitamin D3 4000iu", "product2": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "count": 1433}, {"product1": "Magnesium 188mg", "product2": "Super Strength Vitamin D3 4000iu", "count": 1233}, {"product1": "Magnesium 188mg", "product2": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "count": 1199}, {"product1": "Cod Liver Oil 1000mg", "product2": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "count": 1192}, {"product1": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "product2": "Zinc 10mg", "count": 1122}, {"product1": "Magnesium 188mg", "product2": "Zinc 10mg", "count": 1120}, {"product1": "High Strength Vitamin D3 1000iu", "product2": "Vitamin B12 1000mcg", "count": 1088}, {"product1": "Super Strength Vitamin D3 4000iu", "product2": "Vitamin B12 1000mcg", "count": 1078}, {"product1": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "product2": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "count": 1062}, {"product1": "Hyaluronic Acid Complex", "product2": "Marine Collagen 400mg", "count": 1006}, {"product1": "High Strength Vitamin D3 1000iu", "product2": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "count": 1004}, {"product1": "High Strength Rosehip 10,000mg", "product2": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "count": 988}, {"product1": "High Strength Vitamin D3 1000iu", "product2": "Magnesium 188mg", "count": 983}, {"product1": "Super Strength Vitamin D3 4000iu", "product2": "Zinc 10mg", "count": 957}, {"product1": "Omega-3 High EPA/DHA 1000mg", "product2": "Turmeric with BioPerine\u00ae (Black Pepper Extract) 10,000mg", "count": 945}, {"product1": "Magnesium 188mg", "product2": "Vitamin C 1000mg with Bioflavonoids, Rosehip & Acerola", "count": 935}], "cohortRetention": [{"cohort": "2006-03", "size": 102, "m0": 100.0, "m1": 2.0, "m2": 4.9, "m3": 2.0, "m4": 5.9, "m5": 4.9, "m6": 2.0, "m7": 2.0, "m8": 3.9, "m9": 4.9, "m10": 1.0, "m11": 3.9, "m12": null}, {"cohort": "2006-04", "size": 157, "m0": 100.0, "m1": 5.7, "m2": 5.7, "m3": 6.4, "m4": 5.7, "m5": 5.1, "m6": 6.4, "m7": 4.5, "m8": 5.7, "m9": 3.8, "m10": 3.2, "m11": 3.2, "m12": 4.5}, {"cohort": "2006-05", "size": 219, "m0": 100.0, "m1": 5.5, "m2": 5.5, "m3": 6.4, "m4": 4.1, "m5": 6.4, "m6": 5.0, "m7": 1.8, "m8": 5.0, "m9": 3.7, "m10": 2.7, "m11": 3.2, "m12": 3.2}, {"cohort": "2006-06", "size": 232, "m0": 100.0, "m1": 4.7, "m2": 2.6, "m3": 6.0, "m4": 6.5, "m5": 7.3, "m6": 3.4, "m7": 3.9, "m8": 3.9, "m9": 3.4, "m10": 0.9, "m11": 3.0, "m12": 3.9}, {"cohort": "2006-07", "size": 247, "m0": 100.0, "m1": 2.8, "m2": 4.0, "m3": 6.9, "m4": 2.8, "m5": 2.4, "m6": 4.0, "m7": 4.5, "m8": 2.4, "m9": 3.2, "m10": 3.2, "m11": 2.4, "m12": 1.6}, {"cohort": "2006-08", "size": 222, "m0": 100.0, "m1": 6.3, "m2": 8.6, "m3": 8.1, "m4": 4.5, "m5": 5.9, "m6": 6.8, "m7": 3.6, "m8": 4.1, "m9": 5.9, "m10": 4.1, "m11": 3.2, "m12": 3.6}, {"cohort": "2006-09", "size": 294, "m0": 100.0, "m1": 6.5, "m2": 6.8, "m3": 5.8, "m4": 5.4, "m5": 2.4, "m6": 5.8, "m7": 1.0, "m8": 4.1, "m9": 3.4, "m10": 1.0, "m11": 1.4, "m12": 2.0}, {"cohort": "2006-10", "size": 345, "m0": 100.0, "m1": 4.3, "m2": 4.3, "m3": 6.1, "m4": 3.2, "m5": 3.8, "m6": 4.9, "m7": 2.9, "m8": 4.6, "m9": 4.3, "m10": 1.7, "m11": 2.6, "m12": 2.9}, {"cohort": "2006-11", "size": 321, "m0": 100.0, "m1": 4.4, "m2": 4.0, "m3": 7.2, "m4": 3.7, "m5": 3.4, "m6": 5.0, "m7": 2.2, "m8": 2.5, "m9": 3.4, "m10": 2.5, "m11": 2.2, "m12": 1.6}, {"cohort": "2006-12", "size": 343, "m0": 100.0, "m1": 5.8, "m2": 5.2, "m3": 4.4, "m4": 2.9, "m5": 3.8, "m6": 2.6, "m7": 0.9, "m8": 2.3, "m9": 2.0, "m10": 2.6, "m11": 1.2, "m12": 1.2}, {"cohort": "2007-01", "size": 461, "m0": 100.0, "m1": 3.9, "m2": 7.4, "m3": 6.9, "m4": 5.9, "m5": 3.7, "m6": 4.3, "m7": 3.9, "m8": 3.0, "m9": 2.4, "m10": 1.5, "m11": 2.4, "m12": 3.3}, {"cohort": "2007-02", "size": 336, "m0": 100.0, "m1": 3.3, "m2": 3.9, "m3": 5.7, "m4": 3.9, "m5": 3.6, "m6": 3.3, "m7": 2.4, "m8": 3.3, "m9": 2.7, "m10": 1.8, "m11": 3.0, "m12": 2.7}, {"cohort": "2007-03", "size": 326, "m0": 100.0, "m1": 4.0, "m2": 6.4, "m3": 5.5, "m4": 5.2, "m5": 3.1, "m6": 4.9, "m7": 3.4, "m8": 3.4, "m9": 2.1, "m10": 2.8, "m11": 2.8, "m12": 3.7}, {"cohort": "2007-04", "size": 244, "m0": 100.0, "m1": 5.3, "m2": 7.8, "m3": 6.6, "m4": 3.3, "m5": 6.1, "m6": 6.1, "m7": 3.3, "m8": 3.3, "m9": 5.7, "m10": 2.5, "m11": 4.5, "m12": 4.5}, {"cohort": "2007-05", "size": 270, "m0": 100.0, "m1": 4.8, "m2": 5.2, "m3": 6.7, "m4": 4.1, "m5": 4.4, "m6": 4.8, "m7": 2.6, "m8": 6.7, "m9": 4.8, "m10": 3.0, "m11": 2.2, "m12": 1.5}, {"cohort": "2007-06", "size": 352, "m0": 100.0, "m1": 3.4, "m2": 6.0, "m3": 4.8, "m4": 4.3, "m5": 2.8, "m6": 2.8, "m7": 4.3, "m8": 2.3, "m9": 4.5, "m10": 1.7, "m11": 2.3, "m12": 3.4}, {"cohort": "2007-07", "size": 359, "m0": 100.0, "m1": 4.2, "m2": 4.5, "m3": 5.8, "m4": 5.0, "m5": 4.2, "m6": 7.0, "m7": 4.5, "m8": 3.3, "m9": 3.6, "m10": 3.1, "m11": 2.8, "m12": 2.5}, {"cohort": "2007-08", "size": 317, "m0": 100.0, "m1": 4.1, "m2": 2.5, "m3": 6.3, "m4": 2.8, "m5": 4.4, "m6": 2.5, "m7": 2.2, "m8": 2.5, "m9": 2.2, "m10": 2.2, "m11": 1.6, "m12": 1.6}, {"cohort": "2007-09", "size": 313, "m0": 100.0, "m1": 3.5, "m2": 3.5, "m3": 3.5, "m4": 7.0, "m5": 3.2, "m6": 3.5, "m7": 2.6, "m8": 1.9, "m9": 4.2, "m10": 3.8, "m11": 3.5, "m12": 3.2}, {"cohort": "2007-10", "size": 273, "m0": 100.0, "m1": 5.5, "m2": 7.3, "m3": 7.0, "m4": 7.7, "m5": 5.9, "m6": 5.5, "m7": 4.8, "m8": 4.8, "m9": 4.0, "m10": 5.1, "m11": 4.4, "m12": 5.1}, {"cohort": "2007-11", "size": 296, "m0": 100.0, "m1": 1.7, "m2": 6.8, "m3": 5.1, "m4": 6.1, "m5": 4.1, "m6": 4.1, "m7": 4.1, "m8": 3.7, "m9": 3.7, "m10": 2.0, "m11": 3.7, "m12": 4.4}, {"cohort": "2007-12", "size": 219, "m0": 100.0, "m1": 4.6, "m2": 2.3, "m3": 4.6, "m4": 4.1, "m5": 1.4, "m6": 4.6, "m7": 2.3, "m8": 2.3, "m9": 4.1, "m10": 0.9, "m11": 3.2, "m12": 2.7}, {"cohort": "2008-01", "size": 387, "m0": 100.0, "m1": 4.9, "m2": 5.2, "m3": 6.2, "m4": 3.6, "m5": 6.2, "m6": 5.4, "m7": 4.1, "m8": 4.9, "m9": 3.9, "m10": 4.7, "m11": 2.3, "m12": 4.4}, {"cohort": "2008-02", "size": 322, "m0": 100.0, "m1": 5.0, "m2": 5.3, "m3": 3.7, "m4": 5.0, "m5": 3.7, "m6": 3.7, "m7": 3.1, "m8": 5.0, "m9": 3.4, "m10": 2.2, "m11": 4.0, "m12": 2.2}, {"cohort": "2008-03", "size": 373, "m0": 100.0, "m1": 4.8, "m2": 6.7, "m3": 7.0, "m4": 5.6, "m5": 5.6, "m6": 4.6, "m7": 3.2, "m8": 1.9, "m9": 2.7, "m10": 3.8, "m11": 2.4, "m12": 3.5}, {"cohort": "2008-04", "size": 331, "m0": 100.0, "m1": 3.9, "m2": 8.8, "m3": 6.3, "m4": 5.7, "m5": 3.9, "m6": 4.5, "m7": 3.3, "m8": 1.8, "m9": 4.2, "m10": 3.0, "m11": 2.7, "m12": 2.7}, {"cohort": "2008-05", "size": 393, "m0": 100.0, "m1": 7.4, "m2": 6.4, "m3": 7.9, "m4": 4.1, "m5": 5.3, "m6": 6.1, "m7": 4.6, "m8": 5.9, "m9": 3.1, "m10": 3.6, "m11": 3.6, "m12": 4.6}, {"cohort": "2008-06", "size": 559, "m0": 100.0, "m1": 5.9, "m2": 8.2, "m3": 7.0, "m4": 4.8, "m5": 4.8, "m6": 3.8, "m7": 5.7, "m8": 3.8, "m9": 3.0, "m10": 2.9, "m11": 3.6, "m12": 3.0}, {"cohort": "2008-07", "size": 538, "m0": 100.0, "m1": 5.2, "m2": 6.3, "m3": 5.9, "m4": 4.5, "m5": 3.3, "m6": 6.1, "m7": 6.1, "m8": 4.5, "m9": 3.5, "m10": 4.6, "m11": 1.9, "m12": 3.9}, {"cohort": "2008-08", "size": 804, "m0": 100.0, "m1": 5.7, "m2": 5.8, "m3": 5.3, "m4": 4.5, "m5": 4.9, "m6": 5.2, "m7": 3.9, "m8": 3.0, "m9": 5.2, "m10": 3.1, "m11": 3.0, "m12": 2.9}, {"cohort": "2008-09", "size": 625, "m0": 100.0, "m1": 5.1, "m2": 6.6, "m3": 4.5, "m4": 6.4, "m5": 3.4, "m6": 5.8, "m7": 4.0, "m8": 3.4, "m9": 3.8, "m10": 2.6, "m11": 4.2, "m12": 1.4}, {"cohort": "2008-10", "size": 825, "m0": 100.0, "m1": 6.5, "m2": 6.1, "m3": 8.0, "m4": 4.8, "m5": 6.8, "m6": 4.4, "m7": 6.3, "m8": 4.0, "m9": 3.9, "m10": 5.7, "m11": 3.3, "m12": 3.3}, {"cohort": "2008-11", "size": 835, "m0": 100.0, "m1": 4.1, "m2": 6.2, "m3": 6.6, "m4": 5.9, "m5": 4.0, "m6": 6.8, "m7": 3.8, "m8": 4.1, "m9": 5.9, "m10": 4.0, "m11": 3.1, "m12": 2.9}, {"cohort": "2008-12", "size": 638, "m0": 100.0, "m1": 6.4, "m2": 6.3, "m3": 6.6, "m4": 4.1, "m5": 6.6, "m6": 5.8, "m7": 3.6, "m8": 3.6, "m9": 3.8, "m10": 3.6, "m11": 4.2, "m12": 3.4}, {"cohort": "2009-01", "size": 1091, "m0": 100.0, "m1": 5.3, "m2": 6.9, "m3": 6.8, "m4": 8.4, "m5": 3.8, "m6": 5.1, "m7": 5.7, "m8": 4.3, "m9": 3.7, "m10": 4.7, "m11": 2.9, "m12": 5.6}, {"cohort": "2009-02", "size": 932, "m0": 100.0, "m1": 6.2, "m2": 6.1, "m3": 6.5, "m4": 5.0, "m5": 6.3, "m6": 6.2, "m7": 4.6, "m8": 2.9, "m9": 3.6, "m10": 3.3, "m11": 4.1, "m12": 1.8}, {"cohort": "2009-03", "size": 1093, "m0": 100.0, "m1": 4.2, "m2": 6.1, "m3": 6.3, "m4": 5.4, "m5": 5.4, "m6": 4.8, "m7": 3.6, "m8": 3.6, "m9": 2.7, "m10": 4.8, "m11": 2.2, "m12": 2.7}, {"cohort": "2009-04", "size": 1111, "m0": 100.0, "m1": 7.7, "m2": 6.7, "m3": 7.3, "m4": 7.1, "m5": 4.2, "m6": 4.8, "m7": 3.3, "m8": 3.6, "m9": 6.8, "m10": 2.8, "m11": 3.5, "m12": 4.7}, {"cohort": "2009-05", "size": 1186, "m0": 100.0, "m1": 4.0, "m2": 6.8, "m3": 6.8, "m4": 5.8, "m5": 4.6, "m6": 5.3, "m7": 3.2, "m8": 4.8, "m9": 3.1, "m10": 3.1, "m11": 4.5, "m12": 3.6}, {"cohort": "2009-06", "size": 1149, "m0": 100.0, "m1": 5.9, "m2": 9.0, "m3": 7.7, "m4": 5.6, "m5": 5.2, "m6": 5.3, "m7": 6.2, "m8": 4.2, "m9": 4.7, "m10": 5.8, "m11": 4.4, "m12": 3.6}, {"cohort": "2009-07", "size": 1044, "m0": 100.0, "m1": 5.8, "m2": 6.2, "m3": 5.2, "m4": 4.1, "m5": 4.4, "m6": 6.7, "m7": 3.6, "m8": 4.2, "m9": 4.7, "m10": 3.3, "m11": 2.5, "m12": 3.4}, {"cohort": "2009-08", "size": 917, "m0": 100.0, "m1": 5.9, "m2": 5.6, "m3": 6.1, "m4": 6.4, "m5": 7.0, "m6": 5.0, "m7": 5.0, "m8": 5.9, "m9": 3.6, "m10": 2.9, "m11": 4.0, "m12": 3.9}, {"cohort": "2009-09", "size": 850, "m0": 100.0, "m1": 4.4, "m2": 5.3, "m3": 6.1, "m4": 8.6, "m5": 5.1, "m6": 6.7, "m7": 5.5, "m8": 4.4, "m9": 4.2, "m10": 3.8, "m11": 5.6, "m12": 3.4}, {"cohort": "2009-10", "size": 962, "m0": 100.0, "m1": 5.5, "m2": 5.5, "m3": 7.2, "m4": 4.0, "m5": 4.3, "m6": 7.0, "m7": 4.9, "m8": 3.5, "m9": 4.4, "m10": 4.5, "m11": 3.3, "m12": 3.8}, {"cohort": "2009-11", "size": 1014, "m0": 100.0, "m1": 4.4, "m2": 7.5, "m3": 4.9, "m4": 4.4, "m5": 6.6, "m6": 4.7, "m7": 4.1, "m8": 3.0, "m9": 5.6, "m10": 4.0, "m11": 2.7, "m12": 3.5}, {"cohort": "2009-12", "size": 631, "m0": 100.0, "m1": 4.4, "m2": 5.9, "m3": 7.1, "m4": 6.7, "m5": 5.2, "m6": 4.0, "m7": 4.4, "m8": 5.4, "m9": 3.8, "m10": 2.5, "m11": 2.7, "m12": 3.6}, {"cohort": "2010-01", "size": 999, "m0": 100.0, "m1": 4.6, "m2": 4.7, "m3": 6.0, "m4": 4.9, "m5": 4.7, "m6": 3.9, "m7": 5.3, "m8": 3.3, "m9": 3.4, "m10": 2.3, "m11": 3.9, "m12": 3.5}, {"cohort": "2010-02", "size": 980, "m0": 100.0, "m1": 4.1, "m2": 5.1, "m3": 5.3, "m4": 5.3, "m5": 4.6, "m6": 3.8, "m7": 4.3, "m8": 3.6, "m9": 3.7, "m10": 2.8, "m11": 3.5, "m12": 2.6}, {"cohort": "2010-03", "size": 1005, "m0": 100.0, "m1": 4.2, "m2": 5.4, "m3": 5.0, "m4": 6.7, "m5": 5.2, "m6": 5.0, "m7": 3.1, "m8": 3.9, "m9": 2.5, "m10": 4.2, "m11": 2.8, "m12": 2.6}, {"cohort": "2010-04", "size": 889, "m0": 100.0, "m1": 6.1, "m2": 7.0, "m3": 4.4, "m4": 7.0, "m5": 4.2, "m6": 5.1, "m7": 4.3, "m8": 4.5, "m9": 3.7, "m10": 3.4, "m11": 3.3, "m12": 3.6}, {"cohort": "2010-05", "size": 976, "m0": 100.0, "m1": 4.3, "m2": 5.7, "m3": 7.2, "m4": 4.9, "m5": 2.8, "m6": 4.2, "m7": 3.4, "m8": 4.2, "m9": 2.9, "m10": 3.1, "m11": 3.8, "m12": 3.6}, {"cohort": "2010-06", "size": 971, "m0": 100.0, "m1": 4.1, "m2": 7.2, "m3": 4.3, "m4": 5.1, "m5": 4.8, "m6": 5.6, "m7": 4.4, "m8": 3.1, "m9": 3.5, "m10": 4.5, "m11": 3.2, "m12": 4.3}, {"cohort": "2010-07", "size": 1046, "m0": 100.0, "m1": 6.9, "m2": 4.3, "m3": 5.5, "m4": 3.9, "m5": 3.6, "m6": 5.4, "m7": 4.2, "m8": 3.9, "m9": 3.8, "m10": 3.3, "m11": 2.5, "m12": 4.4}, {"cohort": "2010-08", "size": 877, "m0": 100.0, "m1": 3.3, "m2": 6.4, "m3": 5.6, "m4": 3.9, "m5": 5.2, "m6": 3.8, "m7": 5.6, "m8": 4.0, "m9": 3.4, "m10": 2.5, "m11": 4.0, "m12": 3.5}, {"cohort": "2010-09", "size": 1033, "m0": 100.0, "m1": 3.9, "m2": 5.0, "m3": 7.1, "m4": 6.9, "m5": 4.9, "m6": 5.0, "m7": 4.8, "m8": 4.7, "m9": 3.3, "m10": 3.7, "m11": 4.1, "m12": 4.5}, {"cohort": "2010-10", "size": 965, "m0": 100.0, "m1": 4.5, "m2": 5.5, "m3": 7.6, "m4": 4.7, "m5": 4.6, "m6": 5.8, "m7": 4.5, "m8": 3.3, "m9": 5.0, "m10": 6.4, "m11": 3.3, "m12": 3.9}, {"cohort": "2010-11", "size": 894, "m0": 100.0, "m1": 2.6, "m2": 6.7, "m3": 5.4, "m4": 5.8, "m5": 4.5, "m6": 4.6, "m7": 3.9, "m8": 3.4, "m9": 4.7, "m10": 3.0, "m11": 3.0, "m12": 3.8}, {"cohort": "2010-12", "size": 629, "m0": 100.0, "m1": 5.6, "m2": 4.8, "m3": 6.4, "m4": 5.2, "m5": 5.4, "m6": 5.7, "m7": 5.1, "m8": 5.6, "m9": 4.5, "m10": 5.2, "m11": 4.1, "m12": 4.8}, {"cohort": "2011-01", "size": 1229, "m0": 100.0, "m1": 4.2, "m2": 4.1, "m3": 5.5, "m4": 4.8, "m5": 4.5, "m6": 5.0, "m7": 4.0, "m8": 4.7, "m9": 4.1, "m10": 4.1, "m11": 2.3, "m12": 4.3}, {"cohort": "2011-02", "size": 883, "m0": 100.0, "m1": 3.9, "m2": 4.3, "m3": 5.9, "m4": 4.5, "m5": 4.8, "m6": 5.8, "m7": 4.4, "m8": 3.7, "m9": 5.7, "m10": 3.1, "m11": 4.8, "m12": 2.8}, {"cohort": "2011-03", "size": 886, "m0": 100.0, "m1": 5.2, "m2": 6.1, "m3": 5.5, "m4": 5.2, "m5": 4.5, "m6": 4.4, "m7": 4.0, "m8": 3.7, "m9": 2.6, "m10": 4.3, "m11": 3.0, "m12": 2.8}, {"cohort": "2011-04", "size": 786, "m0": 100.0, "m1": 3.6, "m2": 5.2, "m3": 7.4, "m4": 5.5, "m5": 4.6, "m6": 4.7, "m7": 4.6, "m8": 3.7, "m9": 5.0, "m10": 2.5, "m11": 3.3, "m12": 3.6}, {"cohort": "2011-05", "size": 949, "m0": 100.0, "m1": 4.2, "m2": 5.0, "m3": 4.7, "m4": 4.6, "m5": 5.0, "m6": 4.1, "m7": 5.1, "m8": 4.8, "m9": 3.9, "m10": 3.5, "m11": 3.2, "m12": 4.4}, {"cohort": "2011-06", "size": 957, "m0": 100.0, "m1": 4.1, "m2": 7.7, "m3": 4.4, "m4": 6.6, "m5": 4.8, "m6": 4.9, "m7": 6.1, "m8": 3.1, "m9": 3.6, "m10": 3.3, "m11": 2.7, "m12": 3.9}, {"cohort": "2011-07", "size": 961, "m0": 100.0, "m1": 5.5, "m2": 5.6, "m3": 5.3, "m4": 5.1, "m5": 5.1, "m6": 6.7, "m7": 6.0, "m8": 3.2, "m9": 3.4, "m10": 3.1, "m11": 3.4, "m12": 3.1}, {"cohort": "2011-08", "size": 994, "m0": 100.0, "m1": 6.2, "m2": 6.1, "m3": 7.4, "m4": 5.3, "m5": 6.6, "m6": 5.7, "m7": 4.8, "m8": 4.7, "m9": 4.4, "m10": 4.2, "m11": 3.1, "m12": 4.1}, {"cohort": "2011-09", "size": 879, "m0": 100.0, "m1": 4.7, "m2": 5.0, "m3": 6.3, "m4": 7.3, "m5": 5.9, "m6": 3.8, "m7": 5.3, "m8": 3.2, "m9": 2.7, "m10": 3.0, "m11": 3.2, "m12": 3.1}, {"cohort": "2011-10", "size": 1147, "m0": 100.0, "m1": 5.9, "m2": 5.8, "m3": 8.1, "m4": 5.6, "m5": 4.6, "m6": 4.7, "m7": 4.1, "m8": 3.6, "m9": 3.7, "m10": 2.7, "m11": 3.5, "m12": 2.6}, {"cohort": "2011-11", "size": 1250, "m0": 100.0, "m1": 5.0, "m2": 7.5, "m3": 6.7, "m4": 5.4, "m5": 4.2, "m6": 3.8, "m7": 3.6, "m8": 3.1, "m9": 2.0, "m10": 4.2, "m11": 3.4, "m12": 4.4}, {"cohort": "2011-12", "size": 932, "m0": 100.0, "m1": 5.6, "m2": 4.9, "m3": 5.5, "m4": 4.8, "m5": 3.8, "m6": 4.6, "m7": 3.4, "m8": 1.9, "m9": 3.2, "m10": 4.3, "m11": 3.8, "m12": 3.2}, {"cohort": "2012-01", "size": 1349, "m0": 100.0, "m1": 5.7, "m2": 6.5, "m3": 5.6, "m4": 5.7, "m5": 3.6, "m6": 4.7, "m7": 3.3, "m8": 4.7, "m9": 3.4, "m10": 3.7, "m11": 2.5, "m12": 4.1}, {"cohort": "2012-02", "size": 1117, "m0": 100.0, "m1": 5.4, "m2": 5.6, "m3": 4.8, "m4": 4.6, "m5": 3.9, "m6": 3.8, "m7": 3.3, "m8": 3.5, "m9": 3.0, "m10": 2.0, "m11": 4.2, "m12": 2.5}, {"cohort": "2012-03", "size": 936, "m0": 100.0, "m1": 5.2, "m2": 7.8, "m3": 5.6, "m4": 5.7, "m5": 4.3, "m6": 5.8, "m7": 5.2, "m8": 4.2, "m9": 2.7, "m10": 5.1, "m11": 3.1, "m12": 3.4}, {"cohort": "2012-04", "size": 961, "m0": 100.0, "m1": 5.2, "m2": 6.8, "m3": 6.8, "m4": 5.3, "m5": 4.6, "m6": 6.1, "m7": 6.6, "m8": 4.3, "m9": 5.7, "m10": 3.5, "m11": 4.1, "m12": 4.9}, {"cohort": "2012-05", "size": 828, "m0": 100.0, "m1": 3.9, "m2": 5.9, "m3": 5.1, "m4": 5.2, "m5": 5.4, "m6": 5.0, "m7": 3.7, "m8": 4.3, "m9": 3.7, "m10": 4.1, "m11": 3.9, "m12": 3.3}, {"cohort": "2012-06", "size": 686, "m0": 100.0, "m1": 5.8, "m2": 5.7, "m3": 6.1, "m4": 7.6, "m5": 4.8, "m6": 4.1, "m7": 8.0, "m8": 3.6, "m9": 5.1, "m10": 6.0, "m11": 3.1, "m12": 4.4}, {"cohort": "2012-07", "size": 572, "m0": 100.0, "m1": 6.8, "m2": 9.8, "m3": 7.7, "m4": 8.2, "m5": 4.4, "m6": 7.2, "m7": 3.1, "m8": 4.9, "m9": 4.5, "m10": 4.7, "m11": 4.2, "m12": 5.1}, {"cohort": "2012-08", "size": 762, "m0": 100.0, "m1": 7.1, "m2": 8.4, "m3": 7.1, "m4": 6.4, "m5": 7.3, "m6": 6.2, "m7": 6.0, "m8": 5.0, "m9": 5.1, "m10": 4.7, "m11": 5.2, "m12": 4.1}, {"cohort": "2012-09", "size": 859, "m0": 100.0, "m1": 6.4, "m2": 7.7, "m3": 5.7, "m4": 8.3, "m5": 5.5, "m6": 7.6, "m7": 5.5, "m8": 4.8, "m9": 6.2, "m10": 4.3, "m11": 3.0, "m12": 5.7}, {"cohort": "2012-10", "size": 814, "m0": 100.0, "m1": 6.0, "m2": 5.4, "m3": 10.6, "m4": 6.5, "m5": 5.4, "m6": 8.1, "m7": 5.8, "m8": 6.0, "m9": 4.9, "m10": 5.4, "m11": 5.0, "m12": 5.0}, {"cohort": "2012-11", "size": 724, "m0": 100.0, "m1": 4.4, "m2": 9.3, "m3": 5.9, "m4": 7.7, "m5": 5.5, "m6": 6.1, "m7": 5.9, "m8": 4.4, "m9": 5.2, "m10": 5.0, "m11": 3.2, "m12": 5.7}, {"cohort": "2012-12", "size": 604, "m0": 100.0, "m1": 5.8, "m2": 6.3, "m3": 8.3, "m4": 7.9, "m5": 5.8, "m6": 6.6, "m7": 5.1, "m8": 4.1, "m9": 7.1, "m10": 3.8, "m11": 6.0, "m12": 5.0}, {"cohort": "2013-01", "size": 980, "m0": 100.0, "m1": 4.1, "m2": 7.4, "m3": 8.7, "m4": 8.1, "m5": 6.9, "m6": 5.8, "m7": 5.0, "m8": 7.2, "m9": 4.5, "m10": 5.9, "m11": 4.2, "m12": 7.1}, {"cohort": "2013-02", "size": 797, "m0": 100.0, "m1": 5.8, "m2": 6.4, "m3": 7.8, "m4": 5.4, "m5": 6.4, "m6": 5.3, "m7": 6.0, "m8": 4.9, "m9": 5.9, "m10": 2.9, "m11": 7.3, "m12": 3.3}, {"cohort": "2013-03", "size": 967, "m0": 100.0, "m1": 7.0, "m2": 8.0, "m3": 7.4, "m4": 6.4, "m5": 6.1, "m6": 6.9, "m7": 5.8, "m8": 6.0, "m9": 4.2, "m10": 6.5, "m11": 4.0, "m12": 4.1}, {"cohort": "2013-04", "size": 899, "m0": 100.0, "m1": 4.6, "m2": 7.2, "m3": 6.9, "m4": 5.0, "m5": 5.9, "m6": 5.5, "m7": 5.1, "m8": 3.8, "m9": 6.7, "m10": 4.7, "m11": 4.6, "m12": 5.0}, {"cohort": "2013-05", "size": 1034, "m0": 100.0, "m1": 5.9, "m2": 6.0, "m3": 5.8, "m4": 7.3, "m5": 5.6, "m6": 8.0, "m7": 4.0, "m8": 6.5, "m9": 3.7, "m10": 4.7, "m11": 4.6, "m12": 4.2}, {"cohort": "2013-06", "size": 1114, "m0": 100.0, "m1": 4.2, "m2": 6.0, "m3": 7.1, "m4": 5.2, "m5": 6.8, "m6": 4.6, "m7": 8.2, "m8": 5.7, "m9": 4.5, "m10": 4.0, "m11": 3.1, "m12": 4.1}, {"cohort": "2013-07", "size": 876, "m0": 100.0, "m1": 5.7, "m2": 7.8, "m3": 7.0, "m4": 7.5, "m5": 4.6, "m6": 7.0, "m7": 6.7, "m8": 5.3, "m9": 4.9, "m10": 3.8, "m11": 4.8, "m12": 6.2}, {"cohort": "2013-08", "size": 848, "m0": 100.0, "m1": 6.0, "m2": 5.5, "m3": 8.5, "m4": 6.7, "m5": 9.7, "m6": 5.9, "m7": 5.8, "m8": 5.4, "m9": 4.6, "m10": 5.0, "m11": 5.2, "m12": 5.5}, {"cohort": "2013-09", "size": 879, "m0": 100.0, "m1": 4.4, "m2": 6.3, "m3": 4.4, "m4": 9.0, "m5": 5.9, "m6": 5.8, "m7": 4.7, "m8": 3.6, "m9": 4.7, "m10": 3.5, "m11": 4.0, "m12": 4.9}, {"cohort": "2013-10", "size": 808, "m0": 100.0, "m1": 5.4, "m2": 6.4, "m3": 11.1, "m4": 4.8, "m5": 5.9, "m6": 5.4, "m7": 5.1, "m8": 3.0, "m9": 5.9, "m10": 3.3, "m11": 5.3, "m12": 3.2}, {"cohort": "2013-11", "size": 894, "m0": 100.0, "m1": 3.7, "m2": 10.3, "m3": 5.3, "m4": 7.8, "m5": 6.9, "m6": 7.0, "m7": 5.6, "m8": 5.7, "m9": 4.9, "m10": 4.4, "m11": 4.7, "m12": 5.3}, {"cohort": "2013-12", "size": 786, "m0": 100.0, "m1": 7.8, "m2": 5.9, "m3": 7.6, "m4": 5.9, "m5": 6.1, "m6": 7.5, "m7": 7.1, "m8": 5.3, "m9": 5.9, "m10": 3.3, "m11": 5.5, "m12": 3.2}, {"cohort": "2014-01", "size": 1145, "m0": 100.0, "m1": 6.5, "m2": 7.5, "m3": 5.9, "m4": 5.4, "m5": 3.2, "m6": 7.2, "m7": 5.1, "m8": 4.6, "m9": 5.0, "m10": 3.5, "m11": 2.4, "m12": 9.5}, {"cohort": "2014-02", "size": 981, "m0": 100.0, "m1": 7.0, "m2": 7.4, "m3": 6.3, "m4": 6.7, "m5": 7.8, "m6": 5.7, "m7": 5.4, "m8": 5.1, "m9": 4.7, "m10": 3.9, "m11": 8.5, "m12": 4.2}, {"cohort": "2014-03", "size": 1163, "m0": 100.0, "m1": 5.7, "m2": 4.8, "m3": 7.3, "m4": 6.2, "m5": 4.7, "m6": 6.0, "m7": 4.0, "m8": 4.7, "m9": 3.7, "m10": 6.6, "m11": 3.0, "m12": 5.2}, {"cohort": "2014-04", "size": 924, "m0": 100.0, "m1": 5.0, "m2": 8.3, "m3": 7.9, "m4": 8.1, "m5": 7.7, "m6": 6.3, "m7": 5.8, "m8": 4.1, "m9": 8.4, "m10": 4.0, "m11": 6.5, "m12": 6.1}, {"cohort": "2014-05", "size": 1001, "m0": 100.0, "m1": 3.8, "m2": 7.7, "m3": 8.0, "m4": 5.4, "m5": 5.0, "m6": 5.5, "m7": 4.2, "m8": 8.3, "m9": 4.0, "m10": 6.1, "m11": 4.0, "m12": 4.5}, {"cohort": "2014-06", "size": 911, "m0": 100.0, "m1": 5.0, "m2": 6.7, "m3": 8.6, "m4": 5.9, "m5": 7.5, "m6": 4.2, "m7": 9.9, "m8": 4.7, "m9": 7.6, "m10": 4.7, "m11": 4.7, "m12": 5.2}, {"cohort": "2014-07", "size": 841, "m0": 100.0, "m1": 6.9, "m2": 6.5, "m3": 6.1, "m4": 7.6, "m5": 4.9, "m6": 8.6, "m7": 3.9, "m8": 7.5, "m9": 5.4, "m10": 3.8, "m11": 4.8, "m12": 3.4}, {"cohort": "2014-08", "size": 927, "m0": 100.0, "m1": 6.0, "m2": 5.4, "m3": 8.7, "m4": 4.7, "m5": 11.2, "m6": 4.9, "m7": 7.2, "m8": 4.2, "m9": 5.2, "m10": 5.7, "m11": 2.9, "m12": 4.9}, {"cohort": "2014-09", "size": 1016, "m0": 100.0, "m1": 6.0, "m2": 8.9, "m3": 7.2, "m4": 10.6, "m5": 4.2, "m6": 7.8, "m7": 6.2, "m8": 5.0, "m9": 5.7, "m10": 4.0, "m11": 4.2, "m12": 3.7}, {"cohort": "2014-10", "size": 1045, "m0": 100.0, "m1": 6.3, "m2": 6.3, "m3": 11.6, "m4": 4.5, "m5": 7.2, "m6": 6.2, "m7": 4.8, "m8": 5.0, "m9": 4.2, "m10": 3.9, "m11": 5.9, "m12": 4.8}, {"cohort": "2014-11", "size": 846, "m0": 100.0, "m1": 6.1, "m2": 11.5, "m3": 5.8, "m4": 7.4, "m5": 5.8, "m6": 4.8, "m7": 7.8, "m8": 3.1, "m9": 4.0, "m10": 3.7, "m11": 3.2, "m12": 5.1}, {"cohort": "2014-12", "size": 661, "m0": 100.0, "m1": 11.6, "m2": 4.4, "m3": 7.7, "m4": 6.2, "m5": 3.0, "m6": 5.0, "m7": 3.8, "m8": 4.7, "m9": 3.6, "m10": 3.9, "m11": 3.8, "m12": 3.5}, {"cohort": "2015-01", "size": 1152, "m0": 100.0, "m1": 4.9, "m2": 7.0, "m3": 6.0, "m4": 6.2, "m5": 5.6, "m6": 5.2, "m7": 4.7, "m8": 5.5, "m9": 3.0, "m10": 4.6, "m11": 4.0, "m12": 6.8}, {"cohort": "2015-02", "size": 764, "m0": 100.0, "m1": 7.9, "m2": 4.8, "m3": 5.6, "m4": 5.4, "m5": 4.6, "m6": 6.7, "m7": 6.5, "m8": 3.9, "m9": 4.7, "m10": 3.5, "m11": 7.6, "m12": 3.4}, {"cohort": "2015-03", "size": 963, "m0": 100.0, "m1": 5.9, "m2": 4.6, "m3": 7.2, "m4": 5.2, "m5": 4.9, "m6": 6.5, "m7": 3.8, "m8": 5.0, "m9": 5.1, "m10": 6.5, "m11": 3.4, "m12": 3.9}, {"cohort": "2015-04", "size": 832, "m0": 100.0, "m1": 5.5, "m2": 8.4, "m3": 5.8, "m4": 5.9, "m5": 5.8, "m6": 4.4, "m7": 5.4, "m8": 4.0, "m9": 6.5, "m10": 3.2, "m11": 5.4, "m12": 3.6}, {"cohort": "2015-05", "size": 780, "m0": 100.0, "m1": 4.6, "m2": 4.5, "m3": 6.3, "m4": 8.8, "m5": 5.8, "m6": 6.4, "m7": 4.2, "m8": 6.4, "m9": 4.0, "m10": 3.6, "m11": 5.3, "m12": 5.3}, {"cohort": "2015-06", "size": 667, "m0": 100.0, "m1": 3.0, "m2": 5.7, "m3": 8.8, "m4": 5.7, "m5": 6.6, "m6": 7.5, "m7": 8.1, "m8": 3.1, "m9": 6.9, "m10": 7.0, "m11": 4.5, "m12": 4.3}, {"cohort": "2015-07", "size": 836, "m0": 100.0, "m1": 3.7, "m2": 7.3, "m3": 6.5, "m4": 6.2, "m5": 5.4, "m6": 8.4, "m7": 2.9, "m8": 5.3, "m9": 5.5, "m10": 3.2, "m11": 3.8, "m12": 3.8}, {"cohort": "2015-08", "size": 824, "m0": 100.0, "m1": 6.6, "m2": 5.1, "m3": 6.4, "m4": 7.0, "m5": 8.6, "m6": 4.9, "m7": 5.7, "m8": 4.7, "m9": 3.6, "m10": 4.6, "m11": 3.0, "m12": 5.6}, {"cohort": "2015-09", "size": 743, "m0": 100.0, "m1": 4.0, "m2": 7.4, "m3": 7.3, "m4": 7.5, "m5": 4.2, "m6": 6.6, "m7": 3.9, "m8": 4.3, "m9": 6.3, "m10": 3.6, "m11": 5.4, "m12": 4.7}, {"cohort": "2015-10", "size": 672, "m0": 100.0, "m1": 3.9, "m2": 6.8, "m3": 10.7, "m4": 3.9, "m5": 5.2, "m6": 5.5, "m7": 4.9, "m8": 3.4, "m9": 2.4, "m10": 4.6, "m11": 4.3, "m12": 3.0}, {"cohort": "2015-11", "size": 627, "m0": 100.0, "m1": 5.1, "m2": 11.6, "m3": 4.5, "m4": 5.7, "m5": 7.2, "m6": 5.1, "m7": 4.9, "m8": 3.7, "m9": 5.3, "m10": 4.8, "m11": 4.8, "m12": 7.2}, {"cohort": "2015-12", "size": 628, "m0": 100.0, "m1": 8.1, "m2": 5.6, "m3": 8.6, "m4": 5.9, "m5": 5.7, "m6": 4.0, "m7": 4.8, "m8": 4.3, "m9": 3.8, "m10": 3.3, "m11": 5.1, "m12": 3.8}, {"cohort": "2016-01", "size": 1290, "m0": 100.0, "m1": 3.7, "m2": 8.7, "m3": 7.1, "m4": 5.5, "m5": 4.5, "m6": 4.7, "m7": 6.0, "m8": 4.5, "m9": 5.0, "m10": 4.2, "m11": 3.6, "m12": 6.2}, {"cohort": "2016-02", "size": 617, "m0": 100.0, "m1": 7.1, "m2": 9.7, "m3": 4.7, "m4": 7.5, "m5": 5.0, "m6": 6.6, "m7": 5.7, "m8": 4.7, "m9": 4.7, "m10": 3.9, "m11": 6.5, "m12": 3.6}, {"cohort": "2016-03", "size": 617, "m0": 100.0, "m1": 5.3, "m2": 7.5, "m3": 7.9, "m4": 6.5, "m5": 6.5, "m6": 5.2, "m7": 4.5, "m8": 6.2, "m9": 2.3, "m10": 6.3, "m11": 3.9, "m12": 4.9}, {"cohort": "2016-04", "size": 794, "m0": 100.0, "m1": 8.1, "m2": 7.9, "m3": 6.4, "m4": 6.2, "m5": 6.8, "m6": 5.8, "m7": 6.0, "m8": 4.0, "m9": 6.2, "m10": 4.0, "m11": 4.5, "m12": 3.8}, {"cohort": "2016-05", "size": 616, "m0": 100.0, "m1": 5.7, "m2": 7.5, "m3": 10.1, "m4": 5.5, "m5": 6.0, "m6": 8.3, "m7": 5.5, "m8": 6.2, "m9": 2.9, "m10": 4.2, "m11": 4.9, "m12": 4.5}, {"cohort": "2016-06", "size": 668, "m0": 100.0, "m1": 3.9, "m2": 10.9, "m3": 6.6, "m4": 6.6, "m5": 6.4, "m6": 5.7, "m7": 8.1, "m8": 4.3, "m9": 5.7, "m10": 4.2, "m11": 4.5, "m12": 4.3}, {"cohort": "2016-07", "size": 664, "m0": 100.0, "m1": 5.0, "m2": 7.7, "m3": 5.0, "m4": 8.0, "m5": 3.6, "m6": 8.7, "m7": 4.2, "m8": 5.7, "m9": 3.8, "m10": 4.7, "m11": 3.2, "m12": 6.2}, {"cohort": "2016-08", "size": 699, "m0": 100.0, "m1": 5.3, "m2": 5.9, "m3": 9.7, "m4": 5.7, "m5": 8.6, "m6": 5.3, "m7": 4.6, "m8": 3.4, "m9": 6.7, "m10": 3.6, "m11": 4.1, "m12": 5.0}, {"cohort": "2016-09", "size": 788, "m0": 100.0, "m1": 4.8, "m2": 10.2, "m3": 5.2, "m4": 9.5, "m5": 4.9, "m6": 5.8, "m7": 4.6, "m8": 5.2, "m9": 2.9, "m10": 5.1, "m11": 5.2, "m12": 2.8}, {"cohort": "2016-10", "size": 892, "m0": 100.0, "m1": 5.9, "m2": 5.5, "m3": 10.1, "m4": 5.2, "m5": 5.6, "m6": 3.5, "m7": 5.7, "m8": 3.3, "m9": 5.2, "m10": 4.0, "m11": 2.7, "m12": 4.6}, {"cohort": "2016-11", "size": 781, "m0": 100.0, "m1": 5.1, "m2": 11.0, "m3": 7.0, "m4": 6.7, "m5": 3.7, "m6": 7.0, "m7": 3.2, "m8": 7.7, "m9": 4.2, "m10": 4.1, "m11": 5.6, "m12": 6.0}, {"cohort": "2016-12", "size": 781, "m0": 100.0, "m1": 7.7, "m2": 5.4, "m3": 7.4, "m4": 6.3, "m5": 6.5, "m6": 4.5, "m7": 7.4, "m8": 5.1, "m9": 4.0, "m10": 5.2, "m11": 6.0, "m12": 2.9}, {"cohort": "2017-01", "size": 1788, "m0": 100.0, "m1": 5.5, "m2": 7.8, "m3": 5.5, "m4": 7.4, "m5": 3.7, "m6": 7.4, "m7": 4.8, "m8": 4.5, "m9": 6.2, "m10": 6.4, "m11": 3.8, "m12": 8.7}, {"cohort": "2017-02", "size": 1451, "m0": 100.0, "m1": 5.7, "m2": 5.9, "m3": 8.5, "m4": 4.8, "m5": 7.5, "m6": 6.8, "m7": 4.3, "m8": 5.7, "m9": 6.5, "m10": 3.9, "m11": 8.2, "m12": 5.7}, {"cohort": "2017-03", "size": 1545, "m0": 100.0, "m1": 3.3, "m2": 9.3, "m3": 5.8, "m4": 8.0, "m5": 5.7, "m6": 5.0, "m7": 5.8, "m8": 7.1, "m9": 4.1, "m10": 7.8, "m11": 3.7, "m12": 5.2}, {"cohort": "2017-04", "size": 1300, "m0": 100.0, "m1": 4.0, "m2": 7.4, "m3": 10.6, "m4": 6.3, "m5": 5.4, "m6": 7.1, "m7": 6.4, "m8": 3.8, "m9": 7.8, "m10": 3.6, "m11": 5.4, "m12": 5.4}, {"cohort": "2017-05", "size": 1283, "m0": 100.0, "m1": 4.5, "m2": 10.4, "m3": 8.1, "m4": 5.3, "m5": 7.9, "m6": 6.9, "m7": 5.5, "m8": 10.1, "m9": 3.9, "m10": 5.1, "m11": 4.4, "m12": 5.0}, {"cohort": "2017-06", "size": 1324, "m0": 100.0, "m1": 8.6, "m2": 5.7, "m3": 7.3, "m4": 7.7, "m5": 7.6, "m6": 3.9, "m7": 9.2, "m8": 4.4, "m9": 5.8, "m10": 5.1, "m11": 4.4, "m12": 4.9}, {"cohort": "2017-07", "size": 1637, "m0": 100.0, "m1": 4.6, "m2": 5.8, "m3": 8.1, "m4": 8.4, "m5": 4.2, "m6": 9.8, "m7": 4.9, "m8": 5.0, "m9": 5.1, "m10": 5.0, "m11": 4.4, "m12": 3.5}, {"cohort": "2017-08", "size": 1517, "m0": 100.0, "m1": 5.5, "m2": 8.5, "m3": 9.7, "m4": 6.5, "m5": 12.1, "m6": 5.5, "m7": 6.2, "m8": 5.9, "m9": 5.5, "m10": 4.9, "m11": 4.7, "m12": 6.3}, {"cohort": "2017-09", "size": 1634, "m0": 100.0, "m1": 5.8, "m2": 9.3, "m3": 6.3, "m4": 12.2, "m5": 5.3, "m6": 5.9, "m7": 6.3, "m8": 6.4, "m9": 5.8, "m10": 3.3, "m11": 5.3, "m12": 4.0}, {"cohort": "2017-10", "size": 1800, "m0": 100.0, "m1": 6.3, "m2": 7.7, "m3": 13.0, "m4": 6.1, "m5": 6.2, "m6": 5.7, "m7": 5.6, "m8": 5.1, "m9": 4.8, "m10": 4.8, "m11": 3.8, "m12": 5.3}, {"cohort": "2017-11", "size": 1672, "m0": 100.0, "m1": 6.3, "m2": 13.0, "m3": 6.0, "m4": 6.0, "m5": 5.6, "m6": 6.2, "m7": 4.8, "m8": 4.7, "m9": 5.0, "m10": 4.2, "m11": 5.4, "m12": 4.5}, {"cohort": "2017-12", "size": 1283, "m0": 100.0, "m1": 6.1, "m2": 6.5, "m3": 7.2, "m4": 5.9, "m5": 4.9, "m6": 3.9, "m7": 5.1, "m8": 5.4, "m9": 4.1, "m10": 4.5, "m11": 3.7, "m12": 4.4}, {"cohort": "2018-01", "size": 3023, "m0": 100.0, "m1": 5.0, "m2": 10.2, "m3": 7.5, "m4": 7.8, "m5": 6.7, "m6": 4.8, "m7": 6.3, "m8": 4.2, "m9": 6.0, "m10": 4.8, "m11": 4.5, "m12": 6.5}, {"cohort": "2018-02", "size": 1986, "m0": 100.0, "m1": 6.1, "m2": 8.9, "m3": 7.5, "m4": 5.7, "m5": 4.5, "m6": 6.9, "m7": 5.1, "m8": 6.5, "m9": 5.0, "m10": 4.7, "m11": 8.0, "m12": 3.6}, {"cohort": "2018-03", "size": 2068, "m0": 100.0, "m1": 5.2, "m2": 8.5, "m3": 7.8, "m4": 5.5, "m5": 6.4, "m6": 5.1, "m7": 6.0, "m8": 5.3, "m9": 5.1, "m10": 6.6, "m11": 3.4, "m12": 3.7}, {"cohort": "2018-04", "size": 1779, "m0": 100.0, "m1": 6.4, "m2": 8.6, "m3": 6.7, "m4": 7.4, "m5": 6.0, "m6": 7.1, "m7": 6.0, "m8": 5.8, "m9": 7.9, "m10": 3.8, "m11": 3.8, "m12": 4.3}, {"cohort": "2018-05", "size": 1590, "m0": 100.0, "m1": 6.1, "m2": 9.2, "m3": 8.8, "m4": 6.1, "m5": 6.6, "m6": 6.4, "m7": 6.0, "m8": 8.1, "m9": 4.2, "m10": 4.3, "m11": 4.2, "m12": 4.8}, {"cohort": "2018-06", "size": 1512, "m0": 100.0, "m1": 6.4, "m2": 8.8, "m3": 7.0, "m4": 7.3, "m5": 5.6, "m6": 5.2, "m7": 7.2, "m8": 3.7, "m9": 4.0, "m10": 3.9, "m11": 4.6, "m12": 4.1}, {"cohort": "2018-07", "size": 1496, "m0": 100.0, "m1": 5.4, "m2": 7.9, "m3": 5.8, "m4": 6.1, "m5": 5.1, "m6": 7.9, "m7": 4.1, "m8": 3.7, "m9": 3.8, "m10": 4.1, "m11": 3.9, "m12": 5.1}, {"cohort": "2018-08", "size": 1645, "m0": 100.0, "m1": 5.3, "m2": 7.5, "m3": 7.6, "m4": 6.4, "m5": 8.8, "m6": 4.1, "m7": 4.3, "m8": 4.9, "m9": 4.2, "m10": 4.2, "m11": 4.8, "m12": 3.7}, {"cohort": "2018-09", "size": 1287, "m0": 100.0, "m1": 5.8, "m2": 7.7, "m3": 5.7, "m4": 7.4, "m5": 4.5, "m6": 5.3, "m7": 4.2, "m8": 5.2, "m9": 2.9, "m10": 4.2, "m11": 1.9, "m12": 4.0}, {"cohort": "2018-10", "size": 1370, "m0": 100.0, "m1": 5.3, "m2": 7.5, "m3": 9.3, "m4": 6.1, "m5": 5.6, "m6": 4.7, "m7": 5.2, "m8": 4.7, "m9": 5.5, "m10": 3.4, "m11": 4.2, "m12": 4.9}, {"cohort": "2018-11", "size": 1307, "m0": 100.0, "m1": 6.1, "m2": 9.9, "m3": 6.1, "m4": 5.4, "m5": 4.7, "m6": 4.4, "m7": 5.5, "m8": 4.7, "m9": 3.8, "m10": 3.8, "m11": 3.7, "m12": 4.4}, {"cohort": "2018-12", "size": 1057, "m0": 100.0, "m1": 7.6, "m2": 4.9, "m3": 7.8, "m4": 5.2, "m5": 4.5, "m6": 5.0, "m7": 5.4, "m8": 3.3, "m9": 3.8, "m10": 3.5, "m11": 3.2, "m12": 2.7}, {"cohort": "2019-01", "size": 1999, "m0": 100.0, "m1": 5.3, "m2": 8.2, "m3": 6.4, "m4": 5.5, "m5": 5.2, "m6": 6.4, "m7": 4.1, "m8": 4.5, "m9": 4.9, "m10": 3.5, "m11": 3.6, "m12": 5.7}, {"cohort": "2019-02", "size": 1349, "m0": 100.0, "m1": 7.0, "m2": 7.0, "m3": 6.3, "m4": 6.6, "m5": 6.3, "m6": 3.4, "m7": 4.5, "m8": 4.0, "m9": 4.4, "m10": 3.6, "m11": 5.6, "m12": 2.7}, {"cohort": "2019-03", "size": 1108, "m0": 100.0, "m1": 6.7, "m2": 9.1, "m3": 7.0, "m4": 7.9, "m5": 4.6, "m6": 5.5, "m7": 3.9, "m8": 5.9, "m9": 4.3, "m10": 6.8, "m11": 3.2, "m12": 4.2}, {"cohort": "2019-04", "size": 1027, "m0": 100.0, "m1": 4.5, "m2": 8.5, "m3": 7.0, "m4": 4.1, "m5": 5.1, "m6": 5.9, "m7": 4.6, "m8": 4.4, "m9": 5.3, "m10": 2.4, "m11": 3.4, "m12": 3.2}, {"cohort": "2019-05", "size": 1001, "m0": 100.0, "m1": 6.3, "m2": 8.0, "m3": 5.9, "m4": 5.4, "m5": 4.9, "m6": 3.8, "m7": 4.5, "m8": 5.6, "m9": 2.6, "m10": 4.0, "m11": 3.7, "m12": 3.8}, {"cohort": "2019-06", "size": 863, "m0": 100.0, "m1": 6.0, "m2": 5.6, "m3": 7.4, "m4": 5.8, "m5": 5.9, "m6": 5.2, "m7": 7.8, "m8": 2.3, "m9": 4.9, "m10": 3.7, "m11": 4.1, "m12": 4.9}, {"cohort": "2019-07", "size": 840, "m0": 100.0, "m1": 4.6, "m2": 6.5, "m3": 7.6, "m4": 5.5, "m5": 5.1, "m6": 7.4, "m7": 2.6, "m8": 5.1, "m9": 4.6, "m10": 4.3, "m11": 5.1, "m12": 5.4}, {"cohort": "2019-08", "size": 722, "m0": 100.0, "m1": 5.4, "m2": 6.1, "m3": 7.9, "m4": 6.2, "m5": 6.8, "m6": 3.5, "m7": 5.8, "m8": 4.6, "m9": 4.4, "m10": 4.3, "m11": 4.0, "m12": 4.4}, {"cohort": "2019-09", "size": 821, "m0": 100.0, "m1": 5.2, "m2": 6.3, "m3": 5.4, "m4": 7.4, "m5": 2.2, "m6": 6.7, "m7": 4.9, "m8": 4.1, "m9": 4.1, "m10": 5.0, "m11": 4.5, "m12": 4.0}, {"cohort": "2019-10", "size": 811, "m0": 100.0, "m1": 7.0, "m2": 5.2, "m3": 10.0, "m4": 4.1, "m5": 5.5, "m6": 4.3, "m7": 4.9, "m8": 5.8, "m9": 4.3, "m10": 4.7, "m11": 3.3, "m12": 4.6}, {"cohort": "2019-11", "size": 659, "m0": 100.0, "m1": 5.8, "m2": 8.6, "m3": 3.9, "m4": 7.0, "m5": 5.2, "m6": 6.7, "m7": 6.8, "m8": 6.1, "m9": 6.2, "m10": 3.5, "m11": 5.9, "m12": 5.5}, {"cohort": "2019-12", "size": 613, "m0": 100.0, "m1": 5.9, "m2": 4.9, "m3": 6.9, "m4": 7.7, "m5": 5.9, "m6": 5.2, "m7": 4.7, "m8": 5.9, "m9": 3.9, "m10": 3.9, "m11": 3.9, "m12": 6.4}, {"cohort": "2020-01", "size": 938, "m0": 100.0, "m1": 4.6, "m2": 8.5, "m3": 7.2, "m4": 5.8, "m5": 5.3, "m6": 5.7, "m7": 4.4, "m8": 3.5, "m9": 6.0, "m10": 5.5, "m11": 5.3, "m12": 5.3}, {"cohort": "2020-02", "size": 700, "m0": 100.0, "m1": 6.9, "m2": 8.9, "m3": 7.7, "m4": 9.0, "m5": 5.6, "m6": 6.9, "m7": 4.7, "m8": 6.7, "m9": 6.3, "m10": 5.1, "m11": 6.7, "m12": 4.6}, {"cohort": "2020-03", "size": 1493, "m0": 100.0, "m1": 6.5, "m2": 6.4, "m3": 7.2, "m4": 5.8, "m5": 5.3, "m6": 3.5, "m7": 7.4, "m8": 4.7, "m9": 3.7, "m10": 5.6, "m11": 2.9, "m12": 3.3}, {"cohort": "2020-04", "size": 3252, "m0": 100.0, "m1": 5.6, "m2": 7.2, "m3": 6.5, "m4": 5.0, "m5": 4.5, "m6": 6.9, "m7": 5.3, "m8": 4.0, "m9": 6.4, "m10": 3.1, "m11": 3.3, "m12": 3.0}, {"cohort": "2020-05", "size": 2644, "m0": 100.0, "m1": 4.5, "m2": 5.8, "m3": 5.7, "m4": 4.5, "m5": 6.1, "m6": 5.1, "m7": 4.4, "m8": 5.9, "m9": 2.9, "m10": 4.0, "m11": 2.9, "m12": 3.6}, {"cohort": "2020-06", "size": 2062, "m0": 100.0, "m1": 5.1, "m2": 6.6, "m3": 5.4, "m4": 6.5, "m5": 6.5, "m6": 5.4, "m7": 6.5, "m8": 3.2, "m9": 4.1, "m10": 3.4, "m11": 2.9, "m12": 3.7}, {"cohort": "2020-07", "size": 1850, "m0": 100.0, "m1": 4.1, "m2": 5.6, "m3": 7.2, "m4": 6.2, "m5": 5.4, "m6": 6.2, "m7": 3.5, "m8": 3.9, "m9": 3.6, "m10": 3.7, "m11": 4.5, "m12": 3.4}, {"cohort": "2020-08", "size": 1703, "m0": 100.0, "m1": 3.3, "m2": 6.6, "m3": 6.1, "m4": 6.3, "m5": 6.9, "m6": 5.3, "m7": 4.4, "m8": 4.4, "m9": 3.9, "m10": 4.4, "m11": 5.0, "m12": 2.7}, {"cohort": "2020-09", "size": 1796, "m0": 100.0, "m1": 5.3, "m2": 7.6, "m3": 6.3, "m4": 8.0, "m5": 4.8, "m6": 5.9, "m7": 5.3, "m8": 3.7, "m9": 4.0, "m10": 3.6, "m11": 2.7, "m12": 4.0}, {"cohort": "2020-10", "size": 2986, "m0": 100.0, "m1": 5.3, "m2": 5.5, "m3": 8.6, "m4": 4.8, "m5": 4.5, "m6": 4.9, "m7": 4.1, "m8": 4.1, "m9": 4.6, "m10": 2.4, "m11": 4.1, "m12": 4.1}, {"cohort": "2020-11", "size": 2997, "m0": 100.0, "m1": 3.5, "m2": 7.2, "m3": 4.7, "m4": 4.4, "m5": 4.2, "m6": 4.7, "m7": 3.3, "m8": 3.8, "m9": 2.6, "m10": 3.2, "m11": 3.0, "m12": 4.8}, {"cohort": "2020-12", "size": 2085, "m0": 100.0, "m1": 4.8, "m2": 4.8, "m3": 5.3, "m4": 4.3, "m5": 3.7, "m6": 4.4, "m7": 3.7, "m8": 2.9, "m9": 2.4, "m10": 3.7, "m11": 3.5, "m12": 2.6}, {"cohort": "2021-01", "size": 3085, "m0": 100.0, "m1": 3.8, "m2": 5.2, "m3": 5.2, "m4": 4.1, "m5": 4.3, "m6": 4.8, "m7": 3.1, "m8": 3.7, "m9": 4.0, "m10": 4.0, "m11": 2.6, "m12": 5.3}, {"cohort": "2021-02", "size": 1978, "m0": 100.0, "m1": 4.8, "m2": 4.1, "m3": 5.5, "m4": 5.5, "m5": 4.9, "m6": 4.1, "m7": 3.9, "m8": 4.0, "m9": 4.4, "m10": 2.4, "m11": 5.6, "m12": 2.4}, {"cohort": "2021-03", "size": 1950, "m0": 100.0, "m1": 3.7, "m2": 5.6, "m3": 5.2, "m4": 6.1, "m5": 3.9, "m6": 4.4, "m7": 3.7, "m8": 4.8, "m9": 2.5, "m10": 6.1, "m11": 2.8, "m12": 3.4}, {"cohort": "2021-04", "size": 1204, "m0": 100.0, "m1": 3.9, "m2": 6.5, "m3": 7.6, "m4": 5.5, "m5": 5.6, "m6": 5.5, "m7": 5.4, "m8": 4.5, "m9": 6.5, "m10": 2.4, "m11": 4.1, "m12": 4.2}, {"cohort": "2021-05", "size": 1184, "m0": 100.0, "m1": 3.7, "m2": 5.9, "m3": 5.2, "m4": 5.3, "m5": 3.7, "m6": 5.5, "m7": 4.3, "m8": 6.5, "m9": 3.3, "m10": 4.1, "m11": 3.0, "m12": 3.0}, {"cohort": "2021-06", "size": 1408, "m0": 100.0, "m1": 5.4, "m2": 4.8, "m3": 5.8, "m4": 6.0, "m5": 5.2, "m6": 3.9, "m7": 6.0, "m8": 2.6, "m9": 4.3, "m10": 3.3, "m11": 3.8, "m12": 3.0}, {"cohort": "2021-07", "size": 2026, "m0": 100.0, "m1": 3.9, "m2": 4.8, "m3": 6.5, "m4": 6.4, "m5": 4.2, "m6": 7.8, "m7": 3.6, "m8": 4.4, "m9": 3.7, "m10": 3.7, "m11": 3.0, "m12": 4.3}, {"cohort": "2021-08", "size": 1807, "m0": 100.0, "m1": 3.9, "m2": 6.8, "m3": 7.5, "m4": 4.8, "m5": 6.3, "m6": 3.9, "m7": 4.9, "m8": 4.5, "m9": 3.9, "m10": 3.8, "m11": 4.0, "m12": 3.0}, {"cohort": "2021-09", "size": 1464, "m0": 100.0, "m1": 4.0, "m2": 6.5, "m3": 5.3, "m4": 9.2, "m5": 2.8, "m6": 4.1, "m7": 4.0, "m8": 3.5, "m9": 3.3, "m10": 3.6, "m11": 2.5, "m12": 2.8}, {"cohort": "2021-10", "size": 1374, "m0": 100.0, "m1": 4.0, "m2": 5.3, "m3": 9.0, "m4": 4.4, "m5": 4.7, "m6": 4.8, "m7": 4.5, "m8": 3.4, "m9": 4.3, "m10": 3.6, "m11": 2.9, "m12": 3.0}, {"cohort": "2021-11", "size": 1689, "m0": 100.0, "m1": 2.7, "m2": 7.9, "m3": 4.1, "m4": 6.0, "m5": 4.8, "m6": 5.1, "m7": 3.4, "m8": 4.1, "m9": 3.2, "m10": 3.2, "m11": 3.8, "m12": 3.4}, {"cohort": "2021-12", "size": 1041, "m0": 100.0, "m1": 4.4, "m2": 4.5, "m3": 7.7, "m4": 4.9, "m5": 3.0, "m6": 4.9, "m7": 3.5, "m8": 3.7, "m9": 3.2, "m10": 2.9, "m11": 4.4, "m12": 2.7}, {"cohort": "2022-01", "size": 2409, "m0": 100.0, "m1": 2.6, "m2": 4.9, "m3": 5.2, "m4": 3.9, "m5": 4.0, "m6": 4.6, "m7": 3.7, "m8": 3.1, "m9": 3.2, "m10": 3.4, "m11": 2.6, "m12": 4.6}, {"cohort": "2022-02", "size": 1290, "m0": 100.0, "m1": 3.1, "m2": 5.4, "m3": 5.3, "m4": 4.8, "m5": 4.6, "m6": 4.3, "m7": 3.6, "m8": 3.3, "m9": 3.8, "m10": 2.3, "m11": 4.3, "m12": 2.6}, {"cohort": "2022-03", "size": 2297, "m0": 100.0, "m1": 2.7, "m2": 4.1, "m3": 3.9, "m4": 4.7, "m5": 2.9, "m6": 3.0, "m7": 2.8, "m8": 2.3, "m9": 2.0, "m10": 3.4, "m11": 1.8, "m12": 2.4}, {"cohort": "2022-04", "size": 1668, "m0": 100.0, "m1": 3.1, "m2": 4.3, "m3": 4.6, "m4": 3.2, "m5": 3.2, "m6": 3.5, "m7": 2.7, "m8": 2.2, "m9": 4.5, "m10": 1.4, "m11": 2.5, "m12": 1.9}, {"cohort": "2022-05", "size": 1244, "m0": 100.0, "m1": 3.6, "m2": 6.4, "m3": 4.3, "m4": 3.8, "m5": 3.6, "m6": 4.3, "m7": 2.9, "m8": 4.2, "m9": 2.6, "m10": 3.1, "m11": 1.8, "m12": 2.3}, {"cohort": "2022-06", "size": 967, "m0": 100.0, "m1": 3.0, "m2": 3.6, "m3": 6.6, "m4": 4.8, "m5": 4.0, "m6": 4.2, "m7": 5.8, "m8": 2.6, "m9": 3.8, "m10": 2.2, "m11": 3.0, "m12": 2.9}, {"cohort": "2022-07", "size": 1136, "m0": 100.0, "m1": 3.1, "m2": 4.0, "m3": 4.9, "m4": 4.7, "m5": 3.3, "m6": 7.1, "m7": 3.1, "m8": 3.5, "m9": 3.6, "m10": 3.2, "m11": 3.3, "m12": 4.0}, {"cohort": "2022-08", "size": 1217, "m0": 100.0, "m1": 2.5, "m2": 4.7, "m3": 5.3, "m4": 3.8, "m5": 6.5, "m6": 3.7, "m7": 5.0, "m8": 2.6, "m9": 3.3, "m10": 3.2, "m11": 4.5, "m12": 3.6}, {"cohort": "2022-09", "size": 1028, "m0": 100.0, "m1": 3.9, "m2": 5.4, "m3": 4.4, "m4": 7.3, "m5": 3.4, "m6": 4.8, "m7": 3.4, "m8": 4.0, "m9": 2.9, "m10": 3.0, "m11": 2.8, "m12": 4.5}, {"cohort": "2022-10", "size": 1115, "m0": 100.0, "m1": 3.3, "m2": 4.3, "m3": 8.3, "m4": 4.4, "m5": 4.4, "m6": 3.4, "m7": 4.1, "m8": 3.9, "m9": 4.0, "m10": 2.2, "m11": 4.3, "m12": 2.8}, {"cohort": "2022-11", "size": 1100, "m0": 100.0, "m1": 2.1, "m2": 7.6, "m3": 4.5, "m4": 5.5, "m5": 3.4, "m6": 4.5, "m7": 3.3, "m8": 4.3, "m9": 3.2, "m10": 3.3, "m11": 3.2, "m12": 2.8}, {"cohort": "2022-12", "size": 871, "m0": 100.0, "m1": 4.1, "m2": 3.9, "m3": 5.1, "m4": 3.2, "m5": 3.7, "m6": 3.2, "m7": 4.2, "m8": 3.1, "m9": 2.4, "m10": 3.4, "m11": 1.8, "m12": 2.0}, {"cohort": "2023-01", "size": 1709, "m0": 100.0, "m1": 2.7, "m2": 4.7, "m3": 4.0, "m4": 4.2, "m5": 3.7, "m6": 4.5, "m7": 2.5, "m8": 3.2, "m9": 4.0, "m10": 3.3, "m11": 2.9, "m12": 4.5}, {"cohort": "2023-02", "size": 1011, "m0": 100.0, "m1": 4.4, "m2": 4.4, "m3": 5.0, "m4": 4.3, "m5": 5.5, "m6": 4.2, "m7": 4.8, "m8": 3.6, "m9": 4.1, "m10": 3.6, "m11": 4.5, "m12": 2.7}, {"cohort": "2023-03", "size": 1147, "m0": 100.0, "m1": 3.1, "m2": 4.8, "m3": 4.4, "m4": 5.6, "m5": 4.5, "m6": 4.5, "m7": 3.3, "m8": 3.7, "m9": 4.3, "m10": 5.0, "m11": 2.9, "m12": 4.2}, {"cohort": "2023-04", "size": 735, "m0": 100.0, "m1": 2.6, "m2": 4.9, "m3": 8.4, "m4": 4.5, "m5": 4.4, "m6": 5.4, "m7": 3.5, "m8": 3.3, "m9": 4.8, "m10": 3.5, "m11": 2.0, "m12": 4.4}, {"cohort": "2023-05", "size": 830, "m0": 100.0, "m1": 3.6, "m2": 5.3, "m3": 5.3, "m4": 4.5, "m5": 4.0, "m6": 4.2, "m7": 3.5, "m8": 5.4, "m9": 3.1, "m10": 2.3, "m11": 2.8, "m12": 3.9}, {"cohort": "2023-06", "size": 667, "m0": 100.0, "m1": 3.9, "m2": 3.6, "m3": 6.9, "m4": 4.6, "m5": 4.6, "m6": 4.6, "m7": 5.8, "m8": 3.9, "m9": 4.3, "m10": 4.9, "m11": 2.1, "m12": 2.4}, {"cohort": "2023-07", "size": 908, "m0": 100.0, "m1": 2.8, "m2": 5.8, "m3": 4.8, "m4": 4.8, "m5": 3.9, "m6": 6.2, "m7": 3.1, "m8": 4.7, "m9": 2.3, "m10": 4.1, "m11": 2.5, "m12": 4.0}, {"cohort": "2023-08", "size": 742, "m0": 100.0, "m1": 4.9, "m2": 5.4, "m3": 5.5, "m4": 5.3, "m5": 5.9, "m6": 5.3, "m7": 4.4, "m8": 4.9, "m9": 2.6, "m10": 2.8, "m11": 4.0, "m12": 3.9}, {"cohort": "2023-09", "size": 622, "m0": 100.0, "m1": 3.9, "m2": 5.3, "m3": 6.4, "m4": 6.9, "m5": 3.9, "m6": 5.1, "m7": 4.5, "m8": 4.0, "m9": 3.9, "m10": 3.7, "m11": 3.4, "m12": 4.0}, {"cohort": "2023-10", "size": 682, "m0": 100.0, "m1": 3.2, "m2": 5.0, "m3": 7.6, "m4": 4.7, "m5": 5.0, "m6": 5.0, "m7": 3.5, "m8": 3.8, "m9": 4.8, "m10": 3.1, "m11": 3.5, "m12": 3.8}, {"cohort": "2023-11", "size": 421, "m0": 100.0, "m1": 3.8, "m2": 7.4, "m3": 6.9, "m4": 8.6, "m5": 5.0, "m6": 5.5, "m7": 4.8, "m8": 4.8, "m9": 5.0, "m10": 5.5, "m11": 3.8, "m12": 6.2}, {"cohort": "2023-12", "size": 356, "m0": 100.0, "m1": 7.3, "m2": 5.3, "m3": 5.3, "m4": 5.6, "m5": 3.7, "m6": 4.2, "m7": 6.2, "m8": 3.9, "m9": 3.7, "m10": 2.2, "m11": 3.9, "m12": 3.4}, {"cohort": "2024-01", "size": 615, "m0": 100.0, "m1": 3.6, "m2": 6.5, "m3": 6.2, "m4": 4.4, "m5": 4.9, "m6": 7.0, "m7": 4.4, "m8": 3.6, "m9": 5.2, "m10": 4.1, "m11": 2.9, "m12": 5.2}, {"cohort": "2024-02", "size": 449, "m0": 100.0, "m1": 3.1, "m2": 6.0, "m3": 10.7, "m4": 4.5, "m5": 6.2, "m6": 6.9, "m7": 4.0, "m8": 4.0, "m9": 4.5, "m10": 2.2, "m11": 4.2, "m12": 3.3}, {"cohort": "2024-03", "size": 656, "m0": 100.0, "m1": 5.0, "m2": 6.6, "m3": 7.6, "m4": 6.7, "m5": 4.4, "m6": 5.8, "m7": 3.2, "m8": 4.3, "m9": 4.1, "m10": 4.9, "m11": 3.0, "m12": 4.1}, {"cohort": "2024-04", "size": 669, "m0": 100.0, "m1": 5.7, "m2": 6.4, "m3": 8.1, "m4": 5.2, "m5": 5.2, "m6": 4.0, "m7": 5.8, "m8": 3.0, "m9": 4.2, "m10": 3.7, "m11": 2.7, "m12": 4.3}, {"cohort": "2024-05", "size": 637, "m0": 100.0, "m1": 3.3, "m2": 7.5, "m3": 6.1, "m4": 6.4, "m5": 4.1, "m6": 4.4, "m7": 4.1, "m8": 5.2, "m9": 3.3, "m10": 3.1, "m11": 3.1, "m12": 3.6}, {"cohort": "2024-06", "size": 589, "m0": 100.0, "m1": 3.9, "m2": 4.8, "m3": 5.8, "m4": 5.9, "m5": 4.1, "m6": 3.7, "m7": 3.4, "m8": 4.1, "m9": 3.7, "m10": 2.0, "m11": 3.1, "m12": 2.0}, {"cohort": "2024-07", "size": 735, "m0": 100.0, "m1": 2.2, "m2": 3.5, "m3": 4.8, "m4": 5.7, "m5": 2.7, "m6": 5.2, "m7": 2.7, "m8": 2.4, "m9": 2.6, "m10": 2.7, "m11": 2.7, "m12": 2.9}, {"cohort": "2024-08", "size": 451, "m0": 100.0, "m1": 2.9, "m2": 6.9, "m3": 6.9, "m4": 4.7, "m5": 4.9, "m6": 4.4, "m7": 4.7, "m8": 3.8, "m9": 4.2, "m10": 4.0, "m11": 3.5, "m12": 3.3}, {"cohort": "2024-09", "size": 353, "m0": 100.0, "m1": 3.7, "m2": 5.7, "m3": 7.9, "m4": 5.1, "m5": 4.0, "m6": 5.9, "m7": 3.7, "m8": 5.1, "m9": 2.8, "m10": 2.8, "m11": 2.0, "m12": 4.2}, {"cohort": "2024-10", "size": 557, "m0": 100.0, "m1": 5.2, "m2": 6.3, "m3": 6.8, "m4": 5.9, "m5": 3.8, "m6": 4.3, "m7": 2.2, "m8": 3.2, "m9": 4.1, "m10": 1.8, "m11": 2.9, "m12": 4.5}, {"cohort": "2024-11", "size": 313, "m0": 100.0, "m1": 4.2, "m2": 11.2, "m3": 6.1, "m4": 7.0, "m5": 3.5, "m6": 7.7, "m7": 3.5, "m8": 5.8, "m9": 4.5, "m10": 2.6, "m11": 4.2, "m12": 4.5}, {"cohort": "2024-12", "size": 290, "m0": 100.0, "m1": 3.4, "m2": 6.2, "m3": 6.6, "m4": 4.5, "m5": 5.9, "m6": 5.5, "m7": 2.1, "m8": 3.1, "m9": 5.5, "m10": 3.1, "m11": 4.1, "m12": 5.5}, {"cohort": "2025-01", "size": 547, "m0": 100.0, "m1": 2.6, "m2": 6.6, "m3": 9.3, "m4": 6.2, "m5": 6.2, "m6": 6.6, "m7": 4.2, "m8": 6.2, "m9": 4.2, "m10": 4.6, "m11": 4.0, "m12": 2.6}, {"cohort": "2025-02", "size": 410, "m0": 100.0, "m1": 4.4, "m2": 6.3, "m3": 7.8, "m4": 5.9, "m5": 4.4, "m6": 7.1, "m7": 4.6, "m8": 4.1, "m9": 3.4, "m10": 4.1, "m11": 2.0, "m12": null}, {"cohort": "2025-03", "size": 387, "m0": 100.0, "m1": 5.9, "m2": 10.3, "m3": 9.0, "m4": 9.0, "m5": 7.8, "m6": 8.0, "m7": 4.9, "m8": 4.9, "m9": 4.4, "m10": 0.8, "m11": null, "m12": null}, {"cohort": "2025-04", "size": 333, "m0": 100.0, "m1": 4.5, "m2": 7.5, "m3": 7.5, "m4": 5.7, "m5": 4.8, "m6": 7.8, "m7": 5.4, "m8": 3.9, "m9": 2.1, "m10": null, "m11": null, "m12": null}, {"cohort": "2025-05", "size": 328, "m0": 100.0, "m1": 6.4, "m2": 6.7, "m3": 8.5, "m4": 6.7, "m5": 4.9, "m6": 6.1, "m7": 5.8, "m8": 1.2, "m9": null, "m10": null, "m11": null, "m12": null}, {"cohort": "2025-06", "size": 316, "m0": 100.0, "m1": 2.5, "m2": 8.9, "m3": 7.6, "m4": 8.5, "m5": 3.8, "m6": 7.0, "m7": 0.9, "m8": null, "m9": null, "m10": null, "m11": null, "m12": null}, {"cohort": "2025-07", "size": 292, "m0": 100.0, "m1": 6.8, "m2": 8.2, "m3": 8.2, "m4": 6.8, "m5": 5.1, "m6": 4.1, "m7": null, "m8": null, "m9": null, "m10": null, "m11": null, "m12": null}, {"cohort": "2025-08", "size": 288, "m0": 100.0, "m1": 3.8, "m2": 6.9, "m3": 5.2, "m4": 6.6, "m5": 0.3, "m6": null, "m7": null, "m8": null, "m9": null, "m10": null, "m11": null, "m12": null}, {"cohort": "2025-09", "size": 292, "m0": 100.0, "m1": 4.1, "m2": 6.5, "m3": 7.2, "m4": 2.7, "m5": null, "m6": null, "m7": null, "m8": null, "m9": null, "m10": null, "m11": null, "m12": null}, {"cohort": "2025-10", "size": 295, "m0": 100.0, "m1": 3.7, "m2": 7.8, "m3": 2.4, "m4": null, "m5": null, "m6": null, "m7": null, "m8": null, "m9": null, "m10": null, "m11": null, "m12": null}, {"cohort": "2025-11", "size": 229, "m0": 100.0, "m1": 3.1, "m2": 1.7, "m3": null, "m4": null, "m5": null, "m6": null, "m7": null, "m8": null, "m9": null, "m10": null, "m11": null, "m12": null}, {"cohort": "2025-12", "size": 211, "m0": 100.0, "m1": 0.9, "m2": null, "m3": null, "m4": null, "m5": null, "m6": null, "m7": null, "m8": null, "m9": null, "m10": null, "m11": null, "m12": null}, {"cohort": "2026-01", "size": 123, "m0": 100.0, "m1": null, "m2": null, "m3": null, "m4": null, "m5": null, "m6": null, "m7": null, "m8": null, "m9": null, "m10": null, "m11": null, "m12": null}], "thresholdMonthly": [{"YearMonth": "2026-01", "totalOrders": 888, "totalShippingRev": 2346.1, "t15_eligible": 809, "t15_shipAbsorbed": 2219.1000000000004, "t15_near": 59, "t15_nearGap": 1.5859322033898307, "t20_eligible": 665, "t20_shipAbsorbed": 1895.0500000000002, "t20_near": 172, "t20_nearGap": 3.2806977034883724, "t25_eligible": 535, "t25_shipAbsorbed": 1445.75, "t25_near": 179, "t25_nearGap": 3.4165365586592182, "t30_eligible": 419, "t30_shipAbsorbed": 1063.4, "t30_near": 221, "t30_nearGap": 4.78285086877828, "t35_eligible": 330, "t35_shipAbsorbed": 837.7500000000001, "t35_near": 207, "t35_nearGap": 5.650193381642512, "t40_eligible": 263, "t40_shipAbsorbed": 583.3000000000001, "t40_near": 193, "t40_nearGap": 6.556943336787565, "t50_eligible": 186, "t50_shipAbsorbed": 335.1, "t50_near": 144, "t50_nearGap": 9.091180986111112}, {"YearMonth": "2025-12", "totalOrders": 1969, "totalShippingRev": 5053.25, "t15_eligible": 1710, "t15_shipAbsorbed": 4698.450000000001, "t15_near": 197, "t15_nearGap": 1.7462436548223355, "t20_eligible": 1380, "t20_shipAbsorbed": 4068.1500000000005, "t20_near": 401, "t20_nearGap": 3.1660598977556114, "t25_eligible": 1096, "t25_shipAbsorbed": 3147.4, "t25_near": 413, "t25_nearGap": 3.642615295399516, "t30_eligible": 853, "t30_shipAbsorbed": 2316.6000000000004, "t30_near": 466, "t30_nearGap": 4.958176180257511, "t35_eligible": 684, "t35_shipAbsorbed": 1810.75, "t35_near": 412, "t35_nearGap": 5.892281711165048, "t40_eligible": 532, "t40_shipAbsorbed": 1249.5, "t40_near": 387, "t40_nearGap": 6.274599824289405, "t50_eligible": 344, "t50_shipAbsorbed": 598.2, "t50_near": 340, "t50_nearGap": 8.678382714705883}, {"YearMonth": "2025-11", "totalOrders": 2117, "totalShippingRev": 5159.25, "t15_eligible": 1850, "t15_shipAbsorbed": 4780.25, "t15_near": 208, "t15_nearGap": 1.6880288461538462, "t20_eligible": 1491, "t20_shipAbsorbed": 4113.650000000001, "t20_near": 436, "t20_nearGap": 3.0216743761467892, "t25_eligible": 1182, "t25_shipAbsorbed": 3070.25, "t25_near": 471, "t25_nearGap": 3.7277921549893844, "t30_eligible": 972, "t30_shipAbsorbed": 2412.95, "t30_near": 460, "t30_nearGap": 5.2450871173913045, "t35_eligible": 776, "t35_shipAbsorbed": 1921.9, "t35_near": 411, "t35_nearGap": 5.576107194647202, "t40_eligible": 630, "t40_shipAbsorbed": 1438.6, "t40_near": 408, "t40_nearGap": 6.332573828431373, "t50_eligible": 420, "t50_shipAbsorbed": 718.3500000000001, "t50_near": 356, "t50_nearGap": 8.279663311797753}, {"YearMonth": "2025-10", "totalOrders": 2560, "totalShippingRev": 6136.5, "t15_eligible": 2256, "t15_shipAbsorbed": 5754.050000000001, "t15_near": 227, "t15_nearGap": 1.71352422907489, "t20_eligible": 1805, "t20_shipAbsorbed": 4914.150000000001, "t20_near": 533, "t20_nearGap": 3.039474722326454, "t25_eligible": 1415, "t25_shipAbsorbed": 3530.6000000000004, "t25_near": 571, "t25_nearGap": 3.626672712784589, "t30_eligible": 1155, "t30_shipAbsorbed": 2757.0, "t30_near": 571, "t30_nearGap": 5.1608758756567426, "t35_eligible": 891, "t35_shipAbsorbed": 2076.25, "t35_near": 537, "t35_nearGap": 5.418268366852887, "t40_eligible": 714, "t40_shipAbsorbed": 1532.4, "t40_near": 518, "t40_nearGap": 6.341274463320464, "t50_eligible": 479, "t50_shipAbsorbed": 792.65, "t50_near": 412, "t50_nearGap": 8.62473336893204}, {"YearMonth": "2025-09", "totalOrders": 2320, "totalShippingRev": 5797.15, "t15_eligible": 2031, "t15_shipAbsorbed": 5357.45, "t15_near": 226, "t15_nearGap": 1.6828761061946904, "t20_eligible": 1637, "t20_shipAbsorbed": 4467.9, "t20_near": 487, "t20_nearGap": 3.188418926078029, "t25_eligible": 1281, "t25_shipAbsorbed": 3228.25, "t25_near": 516, "t25_nearGap": 3.6537598875968995, "t30_eligible": 1025, "t30_shipAbsorbed": 2406.15, "t30_near": 528, "t30_nearGap": 4.960227445075758, "t35_eligible": 780, "t35_shipAbsorbed": 1754.45, "t35_near": 514, "t35_nearGap": 5.351614980544746, "t40_eligible": 619, "t40_shipAbsorbed": 1378.1999999999998, "t40_near": 488, "t40_nearGap": 6.415348700819672, "t50_eligible": 419, "t50_shipAbsorbed": 752.7, "t50_near": 361, "t50_nearGap": 8.720831407202217}, {"YearMonth": "2025-08", "totalOrders": 2494, "totalShippingRev": 5846.6, "t15_eligible": 2185, "t15_shipAbsorbed": 5447.949999999999, "t15_near": 245, "t15_nearGap": 1.787836734693878, "t20_eligible": 1772, "t20_shipAbsorbed": 4579.0, "t20_near": 499, "t20_nearGap": 3.024829713426854, "t25_eligible": 1405, "t25_shipAbsorbed": 3353.8499999999995, "t25_near": 543, "t25_nearGap": 3.5845121933701654, "t30_eligible": 1142, "t30_shipAbsorbed": 2505.1, "t30_near": 567, "t30_nearGap": 5.108218867724868, "t35_eligible": 898, "t35_shipAbsorbed": 1933.4, "t35_near": 518, "t35_nearGap": 5.310193272200772, "t40_eligible": 706, "t40_shipAbsorbed": 1419.35, "t40_near": 520, "t40_nearGap": 6.140538769230769, "t50_eligible": 483, "t50_shipAbsorbed": 782.75, "t50_near": 415, "t50_nearGap": 8.937638850602411}, {"YearMonth": "2025-07", "totalOrders": 2489, "totalShippingRev": 6016.450000000001, "t15_eligible": 2185, "t15_shipAbsorbed": 5616.6, "t15_near": 234, "t15_nearGap": 1.699871794871795, "t20_eligible": 1726, "t20_shipAbsorbed": 4586.700000000001, "t20_near": 555, "t20_nearGap": 3.048414454054054, "t25_eligible": 1381, "t25_shipAbsorbed": 3398.45, "t25_near": 551, "t25_nearGap": 3.7969511778584386, "t30_eligible": 1135, "t30_shipAbsorbed": 2616.55, "t30_near": 528, "t30_nearGap": 5.100435774621213, "t35_eligible": 872, "t35_shipAbsorbed": 1907.0500000000002, "t35_near": 528, "t35_nearGap": 5.315265352272728, "t40_eligible": 691, "t40_shipAbsorbed": 1446.55, "t40_near": 517, "t40_nearGap": 6.304545756286267, "t50_eligible": 459, "t50_shipAbsorbed": 757.7499999999999, "t50_near": 413, "t50_nearGap": 8.744407171912833}, {"YearMonth": "2025-06", "totalOrders": 2344, "totalShippingRev": 5758.75, "t15_eligible": 2087, "t15_shipAbsorbed": 5433.55, "t15_near": 194, "t15_nearGap": 1.75, "t20_eligible": 1668, "t20_shipAbsorbed": 4509.4, "t20_near": 497, "t20_nearGap": 3.2105634225352118, "t25_eligible": 1321, "t25_shipAbsorbed": 3378.7, "t25_near": 494, "t25_nearGap": 3.479473910931174, "t30_eligible": 1078, "t30_shipAbsorbed": 2574.0999999999995, "t30_near": 530, "t30_nearGap": 5.000453024528302, "t35_eligible": 861, "t35_shipAbsorbed": 1964.5500000000002, "t35_near": 466, "t35_nearGap": 5.343948667381975, "t40_eligible": 679, "t40_shipAbsorbed": 1503.6999999999998, "t40_near": 485, "t40_nearGap": 6.240206470103093, "t50_eligible": 475, "t50_shipAbsorbed": 879.05, "t50_near": 386, "t50_nearGap": 9.1494303626943}, {"YearMonth": "2025-05", "totalOrders": 2631, "totalShippingRev": 6471.049999999999, "t15_eligible": 2336, "t15_shipAbsorbed": 6071.15, "t15_near": 234, "t15_nearGap": 1.7979487179487181, "t20_eligible": 1919, "t20_shipAbsorbed": 5126.95, "t20_near": 493, "t20_nearGap": 3.060060892494929, "t25_eligible": 1537, "t25_shipAbsorbed": 3763.0499999999997, "t25_near": 545, "t25_nearGap": 3.474752462385321, "t30_eligible": 1262, "t30_shipAbsorbed": 2898.9, "t30_near": 594, "t30_nearGap": 5.135000111111111, "t35_eligible": 967, "t35_shipAbsorbed": 2130.85, "t35_near": 588, "t35_nearGap": 5.20926887244898, "t40_eligible": 790, "t40_shipAbsorbed": 1666.0, "t40_near": 553, "t40_nearGap": 6.332188332730561, "t50_eligible": 517, "t50_shipAbsorbed": 849.8499999999999, "t50_near": 450, "t50_nearGap": 8.551955811111114}, {"YearMonth": "2025-04", "totalOrders": 2576, "totalShippingRev": 6637.95, "t15_eligible": 2267, "t15_shipAbsorbed": 6184.45, "t15_near": 247, "t15_nearGap": 1.808016194331984, "t20_eligible": 1832, "t20_shipAbsorbed": 5135.95, "t20_near": 526, "t20_nearGap": 3.1064639087452472, "t25_eligible": 1452, "t25_shipAbsorbed": 3754.2, "t25_near": 556, "t25_nearGap": 3.665449821942446, "t30_eligible": 1187, "t30_shipAbsorbed": 2849.95, "t30_near": 568, "t30_nearGap": 5.082693841549296, "t35_eligible": 933, "t35_shipAbsorbed": 2167.3, "t35_near": 532, "t35_nearGap": 5.308195733082708, "t40_eligible": 742, "t40_shipAbsorbed": 1637.4499999999998, "t40_near": 533, "t40_nearGap": 6.22962507879925, "t50_eligible": 499, "t50_shipAbsorbed": 922.95, "t50_near": 434, "t50_nearGap": 8.648594735023043}, {"YearMonth": "2025-03", "totalOrders": 2499, "totalShippingRev": 6636.2, "t15_eligible": 2202, "t15_shipAbsorbed": 6136.1, "t15_near": 253, "t15_nearGap": 1.6259683754940715, "t20_eligible": 1808, "t20_shipAbsorbed": 5095.349999999999, "t20_near": 500, "t20_nearGap": 3.3438400180000007, "t25_eligible": 1433, "t25_shipAbsorbed": 3812.5, "t25_near": 512, "t25_nearGap": 3.391328349609375, "t30_eligible": 1154, "t30_shipAbsorbed": 2875.75, "t30_near": 585, "t30_nearGap": 5.081111295726496, "t35_eligible": 877, "t35_shipAbsorbed": 2098.55, "t35_near": 572, "t35_nearGap": 5.401014141608392, "t40_eligible": 709, "t40_shipAbsorbed": 1674.3, "t40_near": 520, "t40_nearGap": 6.332750315384616, "t50_eligible": 448, "t50_shipAbsorbed": 831.75, "t50_near": 429, "t50_nearGap": 8.537529470862472}, {"YearMonth": "2025-02", "totalOrders": 2418, "totalShippingRev": 6485.4, "t15_eligible": 2111, "t15_shipAbsorbed": 5842.0, "t15_near": 256, "t15_nearGap": 1.6600781250000003, "t20_eligible": 1695, "t20_shipAbsorbed": 4885.65, "t20_near": 500, "t20_nearGap": 2.99746004, "t25_eligible": 1286, "t25_shipAbsorbed": 3451.8499999999995, "t25_near": 590, "t25_nearGap": 3.6254239254237293, "t30_eligible": 1049, "t30_shipAbsorbed": 2612.8499999999995, "t30_near": 570, "t30_nearGap": 5.322561589473684, "t35_eligible": 786, "t35_shipAbsorbed": 1928.55, "t35_near": 518, "t35_nearGap": 5.156814886100387, "t40_eligible": 606, "t40_shipAbsorbed": 1442.1, "t40_near": 522, "t40_nearGap": 6.210479208812262, "t50_eligible": 381, "t50_shipAbsorbed": 757.25, "t50_near": 405, "t50_nearGap": 8.862197846913581}, {"YearMonth": "2025-01", "totalOrders": 3502, "totalShippingRev": 9808.199999999999, "t15_eligible": 3004, "t15_shipAbsorbed": 8564.75, "t15_near": 423, "t15_nearGap": 2.054373522458629, "t20_eligible": 2530, "t20_shipAbsorbed": 7257.05, "t20_near": 538, "t20_nearGap": 3.094832728624535, "t25_eligible": 1953, "t25_shipAbsorbed": 5212.9, "t25_near": 761, "t25_nearGap": 3.7082918436268066, "t30_eligible": 1615, "t30_shipAbsorbed": 3947.8, "t30_near": 785, "t30_nearGap": 5.341732807643312, "t35_eligible": 1251, "t35_shipAbsorbed": 2834.55, "t35_near": 718, "t35_nearGap": 5.057563142061281, "t40_eligible": 932, "t40_shipAbsorbed": 1913.6, "t40_near": 805, "t40_nearGap": 6.068391800000001, "t50_eligible": 664, "t50_shipAbsorbed": 1060.25, "t50_near": 587, "t50_nearGap": 9.429549059625213}, {"YearMonth": "2024-12", "totalOrders": 2327, "totalShippingRev": 5924.049999999999, "t15_eligible": 1850, "t15_shipAbsorbed": 4962.799999999999, "t15_near": 385, "t15_nearGap": 1.950805194805195, "t20_eligible": 1482, "t20_shipAbsorbed": 4068.0, "t20_near": 463, "t20_nearGap": 3.2259611511879056, "t25_eligible": 1131, "t25_shipAbsorbed": 2950.75, "t25_near": 494, "t25_nearGap": 3.510465748987854, "t30_eligible": 910, "t30_shipAbsorbed": 2200.85, "t30_near": 513, "t30_nearGap": 5.072417315789473, "t35_eligible": 671, "t35_shipAbsorbed": 1589.2, "t35_near": 480, "t35_nearGap": 5.1898543875, "t40_eligible": 490, "t40_shipAbsorbed": 1114.0, "t40_near": 503, "t40_nearGap": 6.404592715705765, "t50_eligible": 327, "t50_shipAbsorbed": 590.85, "t50_near": 344, "t50_nearGap": 9.577790959302325}, {"YearMonth": "2024-11", "totalOrders": 3357, "totalShippingRev": 8184.450000000001, "t15_eligible": 2832, "t15_shipAbsorbed": 7032.5, "t15_near": 407, "t15_nearGap": 1.8552334152334151, "t20_eligible": 2421, "t20_shipAbsorbed": 5978.850000000001, "t20_near": 513, "t20_nearGap": 3.1538011851851855, "t25_eligible": 2010, "t25_shipAbsorbed": 4804.1, "t25_near": 579, "t25_nearGap": 3.319844713298791, "t30_eligible": 1462, "t30_shipAbsorbed": 3139.3, "t30_near": 898, "t30_nearGap": 4.1017818485523385, "t35_eligible": 1016, "t35_shipAbsorbed": 1943.6999999999998, "t35_near": 1062, "t35_nearGap": 5.559077350282485, "t40_eligible": 746, "t40_shipAbsorbed": 1297.2, "t40_near": 913, "t40_nearGap": 6.800098806133625, "t50_eligible": 496, "t50_shipAbsorbed": 640.0999999999999, "t50_near": 520, "t50_nearGap": 9.236711728846153}, {"YearMonth": "2024-10", "totalOrders": 3119, "totalShippingRev": 7780.699999999999, "t15_eligible": 2481, "t15_shipAbsorbed": 6190.550000000002, "t15_near": 476, "t15_nearGap": 1.9056722689075631, "t20_eligible": 1937, "t20_shipAbsorbed": 4802.450000000001, "t20_near": 658, "t20_nearGap": 3.1013829924012164, "t25_eligible": 1564, "t25_shipAbsorbed": 3642.35, "t25_near": 597, "t25_nearGap": 3.8944557587939697, "t30_eligible": 1207, "t30_shipAbsorbed": 2544.2, "t30_near": 633, "t30_nearGap": 4.457156595576619, "t35_eligible": 884, "t35_shipAbsorbed": 1764.75, "t35_near": 716, "t35_nearGap": 5.472709677374302, "t40_eligible": 669, "t40_shipAbsorbed": 1249.45, "t40_near": 649, "t40_nearGap": 6.609322209553158, "t50_eligible": 445, "t50_shipAbsorbed": 630.95, "t50_near": 439, "t50_nearGap": 9.090501179954442}, {"YearMonth": "2024-09", "totalOrders": 2861, "totalShippingRev": 6793.9, "t15_eligible": 2395, "t15_shipAbsorbed": 5654.450000000001, "t15_near": 345, "t15_nearGap": 1.8090434782608695, "t20_eligible": 1955, "t20_shipAbsorbed": 4481.05, "t20_near": 537, "t20_nearGap": 3.108081951582868, "t25_eligible": 1611, "t25_shipAbsorbed": 3472.8999999999996, "t25_near": 529, "t25_nearGap": 3.8319471814744808, "t30_eligible": 1282, "t30_shipAbsorbed": 2427.65, "t30_near": 584, "t30_nearGap": 4.448253597602739, "t35_eligible": 933, "t35_shipAbsorbed": 1574.0, "t35_near": 717, "t35_nearGap": 5.315690503486751, "t40_eligible": 692, "t40_shipAbsorbed": 1057.7, "t40_near": 700, "t40_nearGap": 6.558985781428572, "t50_eligible": 452, "t50_shipAbsorbed": 508.50000000000006, "t50_near": 481, "t50_nearGap": 9.169812887733888}, {"YearMonth": "2024-08", "totalOrders": 2962, "totalShippingRev": 7001.9, "t15_eligible": 2444, "t15_shipAbsorbed": 5760.950000000001, "t15_near": 400, "t15_nearGap": 1.8002249999999997, "t20_eligible": 1958, "t20_shipAbsorbed": 4442.55, "t20_near": 601, "t20_nearGap": 3.1389351181364398, "t25_eligible": 1581, "t25_shipAbsorbed": 3293.1499999999996, "t25_near": 577, "t25_nearGap": 3.7545408734835357, "t30_eligible": 1270, "t30_shipAbsorbed": 2291.9, "t30_near": 598, "t30_nearGap": 4.611705866220736, "t35_eligible": 931, "t35_shipAbsorbed": 1555.6999999999998, "t35_near": 682, "t35_nearGap": 5.327580791788856, "t40_eligible": 676, "t40_shipAbsorbed": 1043.2, "t40_near": 703, "t40_nearGap": 6.622944624466571, "t50_eligible": 470, "t50_shipAbsorbed": 543.8500000000001, "t50_near": 461, "t50_nearGap": 9.654467744034706}, {"YearMonth": "2024-07", "totalOrders": 4131, "totalShippingRev": 9770.900000000001, "t15_eligible": 3283, "t15_shipAbsorbed": 7540.099999999999, "t15_near": 639, "t15_nearGap": 1.7730818153364631, "t20_eligible": 2717, "t20_shipAbsorbed": 5926.550000000001, "t20_near": 745, "t20_nearGap": 3.2320196523489932, "t25_eligible": 2214, "t25_shipAbsorbed": 4391.299999999999, "t25_near": 788, "t25_nearGap": 4.010368077411167, "t30_eligible": 1751, "t30_shipAbsorbed": 3022.0, "t30_near": 822, "t30_nearGap": 4.621387126520681, "t35_eligible": 1313, "t35_shipAbsorbed": 2041.1999999999998, "t35_near": 945, "t35_nearGap": 5.450426005291005, "t40_eligible": 1030, "t40_shipAbsorbed": 1393.25, "t40_near": 874, "t40_nearGap": 6.518893025171625, "t50_eligible": 733, "t50_shipAbsorbed": 723.25, "t50_near": 580, "t50_nearGap": 8.646810798275862}, {"YearMonth": "2024-06", "totalOrders": 2900, "totalShippingRev": 7216.75, "t15_eligible": 2366, "t15_shipAbsorbed": 5808.450000000001, "t15_near": 412, "t15_nearGap": 1.7588106796116507, "t20_eligible": 1852, "t20_shipAbsorbed": 4350.35, "t20_near": 616, "t20_nearGap": 2.9488149318181818, "t25_eligible": 1480, "t25_shipAbsorbed": 3153.4500000000007, "t25_near": 602, "t25_nearGap": 3.9244519534883717, "t30_eligible": 1155, "t30_shipAbsorbed": 2120.1, "t30_near": 583, "t30_nearGap": 4.458113420240137, "t35_eligible": 862, "t35_shipAbsorbed": 1463.15, "t35_near": 645, "t35_nearGap": 5.460992469767441, "t40_eligible": 657, "t40_shipAbsorbed": 999.3, "t40_near": 598, "t40_nearGap": 6.6010369849498325, "t50_eligible": 457, "t50_shipAbsorbed": 539.2500000000002, "t50_near": 405, "t50_nearGap": 9.269777933333332}, {"YearMonth": "2024-05", "totalOrders": 3045, "totalShippingRev": 7720.049999999999, "t15_eligible": 2490, "t15_shipAbsorbed": 6286.1500000000015, "t15_near": 421, "t15_nearGap": 1.695795726840855, "t20_eligible": 1961, "t20_shipAbsorbed": 4802.550000000001, "t20_near": 638, "t20_nearGap": 3.0130401269592477, "t25_eligible": 1544, "t25_shipAbsorbed": 3518.25, "t25_near": 640, "t25_nearGap": 3.83031200625, "t30_eligible": 1213, "t30_shipAbsorbed": 2429.8999999999996, "t30_near": 618, "t30_nearGap": 4.475874009708737, "t35_eligible": 909, "t35_shipAbsorbed": 1746.5, "t35_near": 677, "t35_nearGap": 5.406012023633677, "t40_eligible": 654, "t40_shipAbsorbed": 1188.3000000000002, "t40_near": 671, "t40_nearGap": 6.428575360655737, "t50_eligible": 435, "t50_shipAbsorbed": 631.9499999999998, "t50_near": 474, "t50_nearGap": 9.556464183544303}, {"YearMonth": "2024-04", "totalOrders": 3362, "totalShippingRev": 8683.900000000001, "t15_eligible": 2881, "t15_shipAbsorbed": 7382.5, "t15_near": 344, "t15_nearGap": 1.6780813924418605, "t20_eligible": 2277, "t20_shipAbsorbed": 5553.650000000001, "t20_near": 703, "t20_nearGap": 2.983114651493599, "t25_eligible": 1861, "t25_shipAbsorbed": 4197.35, "t25_near": 650, "t25_nearGap": 3.795092401538462, "t30_eligible": 1475, "t30_shipAbsorbed": 2882.3000000000006, "t30_near": 680, "t30_nearGap": 4.412838385294117, "t35_eligible": 1061, "t35_shipAbsorbed": 1886.25, "t35_near": 845, "t35_nearGap": 5.226402484023668, "t40_eligible": 772, "t40_shipAbsorbed": 1264.6, "t40_near": 827, "t40_nearGap": 6.455006088270858, "t50_eligible": 508, "t50_shipAbsorbed": 569.4000000000004, "t50_near": 553, "t50_nearGap": 9.406510023508138}, {"YearMonth": "2024-03", "totalOrders": 3262, "totalShippingRev": 8005.450000000001, "t15_eligible": 2741, "t15_shipAbsorbed": 6666.75, "t15_near": 397, "t15_nearGap": 1.6767002493702774, "t20_eligible": 2189, "t20_shipAbsorbed": 5113.050000000001, "t20_near": 664, "t20_nearGap": 3.0694578328313256, "t25_eligible": 1810, "t25_shipAbsorbed": 3924.8500000000004, "t25_near": 605, "t25_nearGap": 3.8889753123966937, "t30_eligible": 1462, "t30_shipAbsorbed": 2786.8500000000004, "t30_near": 609, "t30_nearGap": 4.443152950738916, "t35_eligible": 1044, "t35_shipAbsorbed": 1911.65, "t35_near": 804, "t35_nearGap": 5.116654400497513, "t40_eligible": 789, "t40_shipAbsorbed": 1379.2, "t40_near": 789, "t40_nearGap": 6.560367666666667, "t50_eligible": 491, "t50_shipAbsorbed": 634.4000000000001, "t50_near": 553, "t50_nearGap": 8.749656551537072}, {"YearMonth": "2024-02", "totalOrders": 2609, "totalShippingRev": 5812.85, "t15_eligible": 2207, "t15_shipAbsorbed": 4911.849999999999, "t15_near": 293, "t15_nearGap": 1.8604436860068263, "t20_eligible": 1732, "t20_shipAbsorbed": 3728.65, "t20_near": 546, "t20_nearGap": 3.1184432234432236, "t25_eligible": 1390, "t25_shipAbsorbed": 2779.85, "t25_near": 519, "t25_nearGap": 3.9747785375722553, "t30_eligible": 1102, "t30_shipAbsorbed": 1916.65, "t30_near": 523, "t30_nearGap": 4.5915298757170175, "t35_eligible": 692, "t35_shipAbsorbed": 1230.5, "t35_near": 714, "t35_nearGap": 4.5964147310924375, "t40_eligible": 525, "t40_shipAbsorbed": 831.25, "t40_near": 692, "t40_nearGap": 6.7578036286127166, "t50_eligible": 336, "t50_shipAbsorbed": 460.5, "t50_near": 356, "t50_nearGap": 8.627921533707866}, {"YearMonth": "2024-01", "totalOrders": 4803, "totalShippingRev": 10178.249999999998, "t15_eligible": 3963, "t15_shipAbsorbed": 8067.25, "t15_near": 625, "t15_nearGap": 2.265312, "t20_eligible": 3281, "t20_shipAbsorbed": 6226.15, "t20_near": 788, "t20_nearGap": 3.0661928972081216, "t25_eligible": 2625, "t25_shipAbsorbed": 4337.25, "t25_near": 970, "t25_nearGap": 3.6228387628865977, "t30_eligible": 2174, "t30_shipAbsorbed": 3132.15, "t30_near": 990, "t30_nearGap": 4.847761366666666, "t35_eligible": 1514, "t35_shipAbsorbed": 1754.0500000000002, "t35_near": 1224, "t35_nearGap": 5.167998710784314, "t40_eligible": 1250, "t40_shipAbsorbed": 1308.75, "t40_near": 1109, "t40_nearGap": 6.988783023444545, "t50_eligible": 850, "t50_shipAbsorbed": 660.0, "t50_near": 664, "t50_nearGap": 8.264548295180722}, {"YearMonth": "2023-12", "totalOrders": 3057, "totalShippingRev": 6612.55, "t15_eligible": 2530, "t15_shipAbsorbed": 5416.55, "t15_near": 400, "t15_nearGap": 2.0468249975, "t20_eligible": 2097, "t20_shipAbsorbed": 4333.25, "t20_near": 518, "t20_nearGap": 3.190733588803089, "t25_eligible": 1758, "t25_shipAbsorbed": 3354.5, "t25_near": 509, "t25_nearGap": 3.8392920844793714, "t30_eligible": 1414, "t30_shipAbsorbed": 2385.3, "t30_near": 605, "t30_nearGap": 4.50937147768595, "t35_eligible": 939, "t35_shipAbsorbed": 1589.15, "t35_near": 845, "t35_nearGap": 4.800343384615385, "t40_eligible": 725, "t40_shipAbsorbed": 1168.0, "t40_near": 821, "t40_nearGap": 6.833495922046285, "t50_eligible": 479, "t50_shipAbsorbed": 680.2500000000001, "t50_near": 460, "t50_nearGap": 8.671065421739131}, {"YearMonth": "2023-11", "totalOrders": 3209, "totalShippingRev": 6123.1, "t15_eligible": 2770, "t15_shipAbsorbed": 4985.099999999999, "t15_near": 305, "t15_nearGap": 1.7413770491803282, "t20_eligible": 2333, "t20_shipAbsorbed": 3811.2, "t20_near": 522, "t20_nearGap": 3.10635938697318, "t25_eligible": 1990, "t25_shipAbsorbed": 2801.3, "t25_near": 519, "t25_nearGap": 3.871734213872833, "t30_eligible": 1610, "t30_shipAbsorbed": 1719.8, "t30_near": 623, "t30_nearGap": 4.418523502407705, "t35_eligible": 982, "t35_shipAbsorbed": 1187.8999999999999, "t35_near": 1025, "t35_nearGap": 4.77113184292683, "t40_eligible": 719, "t40_shipAbsorbed": 886.55, "t40_near": 1010, "t40_nearGap": 6.869693211881188, "t50_eligible": 429, "t50_shipAbsorbed": 567.75, "t50_near": 553, "t50_nearGap": 8.786202647377939}, {"YearMonth": "2023-10", "totalOrders": 3735, "totalShippingRev": 7341.049999999999, "t15_eligible": 3095, "t15_shipAbsorbed": 5659.049999999999, "t15_near": 460, "t15_nearGap": 1.7316086956521743, "t20_eligible": 2578, "t20_shipAbsorbed": 4192.599999999999, "t20_near": 642, "t20_nearGap": 3.3107476651090346, "t25_eligible": 2174, "t25_shipAbsorbed": 3008.2, "t25_near": 597, "t25_nearGap": 3.9032329447236194, "t30_eligible": 1772, "t30_shipAbsorbed": 1820.9499999999998, "t30_near": 681, "t30_nearGap": 4.438634565345081, "t35_eligible": 1102, "t35_shipAbsorbed": 1279.5, "t35_near": 1087, "t35_nearGap": 4.686200619135235, "t40_eligible": 763, "t40_shipAbsorbed": 917.55, "t40_near": 1157, "t40_nearGap": 6.691832394987036, "t50_eligible": 439, "t50_shipAbsorbed": 650.1, "t50_near": 663, "t50_nearGap": 9.147979058823529}, {"YearMonth": "2023-09", "totalOrders": 3528, "totalShippingRev": 6613.049999999999, "t15_eligible": 2915, "t15_shipAbsorbed": 5070.4, "t15_near": 454, "t15_nearGap": 1.654118942731278, "t20_eligible": 2427, "t20_shipAbsorbed": 3709.25, "t20_near": 637, "t20_nearGap": 3.1158712731554163, "t25_eligible": 2014, "t25_shipAbsorbed": 2548.3999999999996, "t25_near": 655, "t25_nearGap": 3.9901069526717565, "t30_eligible": 1671, "t30_shipAbsorbed": 1572.3000000000002, "t30_near": 625, "t30_nearGap": 4.6161921952, "t35_eligible": 1079, "t35_shipAbsorbed": 1089.5, "t35_near": 962, "t35_nearGap": 4.538118622661123, "t40_eligible": 726, "t40_shipAbsorbed": 782.1, "t40_near": 1063, "t40_nearGap": 6.311731060206962, "t50_eligible": 405, "t50_shipAbsorbed": 479.20000000000005, "t50_near": 674, "t50_nearGap": 9.324406664688428}, {"YearMonth": "2023-08", "totalOrders": 3242, "totalShippingRev": 6127.0, "t15_eligible": 2477, "t15_shipAbsorbed": 4367.7, "t15_near": 599, "t15_nearGap": 1.970033388981636, "t20_eligible": 1957, "t20_shipAbsorbed": 3114.7, "t20_near": 634, "t20_nearGap": 2.7721924321766562, "t25_eligible": 1565, "t25_shipAbsorbed": 2143.3, "t25_near": 713, "t25_nearGap": 4.017251217391305, "t30_eligible": 1237, "t30_shipAbsorbed": 1309.7000000000003, "t30_near": 641, "t30_nearGap": 4.623026755070202, "t35_eligible": 867, "t35_shipAbsorbed": 988.1499999999999, "t35_near": 759, "t35_nearGap": 5.275112057971015, "t40_eligible": 622, "t40_shipAbsorbed": 702.75, "t40_near": 716, "t40_nearGap": 6.223002877094973, "t50_eligible": 368, "t50_shipAbsorbed": 436.9000000000001, "t50_near": 499, "t50_nearGap": 8.864970202404809}, {"YearMonth": "2023-07", "totalOrders": 4371, "totalShippingRev": 7618.049999999999, "t15_eligible": 3336, "t15_shipAbsorbed": 5221.15, "t15_near": 817, "t15_nearGap": 2.1971358653610773, "t20_eligible": 2740, "t20_shipAbsorbed": 3810.8999999999996, "t20_near": 705, "t20_nearGap": 2.6752907858156028, "t25_eligible": 2267, "t25_shipAbsorbed": 2700.55, "t25_near": 821, "t25_nearGap": 4.048258361753959, "t30_eligible": 1841, "t30_shipAbsorbed": 1694.8499999999997, "t30_near": 785, "t30_nearGap": 4.534942894267516, "t35_eligible": 1236, "t35_shipAbsorbed": 1073.6999999999998, "t35_near": 1073, "t35_nearGap": 5.111826869524697, "t40_eligible": 914, "t40_shipAbsorbed": 837.3500000000001, "t40_near": 1069, "t40_nearGap": 6.811094733395697, "t50_eligible": 544, "t50_shipAbsorbed": 497.4, "t50_near": 692, "t50_nearGap": 8.965665070809248}, {"YearMonth": "2023-06", "totalOrders": 3427, "totalShippingRev": 5822.049999999999, "t15_eligible": 2663, "t15_shipAbsorbed": 4064.7999999999997, "t15_near": 595, "t15_nearGap": 1.7862857159663863, "t20_eligible": 2286, "t20_shipAbsorbed": 3165.6499999999996, "t20_near": 507, "t20_nearGap": 2.713865877712032, "t25_eligible": 1963, "t25_shipAbsorbed": 2377.8, "t25_near": 585, "t25_nearGap": 3.880598461538462, "t30_eligible": 1578, "t30_shipAbsorbed": 1443.0500000000002, "t30_near": 652, "t30_nearGap": 4.301487932515337, "t35_eligible": 992, "t35_shipAbsorbed": 837.7500000000001, "t35_near": 1039, "t35_nearGap": 5.119393893166507, "t40_eligible": 691, "t40_shipAbsorbed": 631.25, "t40_near": 1001, "t40_nearGap": 6.608981314685315, "t50_eligible": 419, "t50_shipAbsorbed": 364.30000000000007, "t50_near": 573, "t50_nearGap": 9.247085832460732}, {"YearMonth": "2023-05", "totalOrders": 3795, "totalShippingRev": 6746.449999999999, "t15_eligible": 2927, "t15_shipAbsorbed": 4741.2, "t15_near": 678, "t15_nearGap": 1.7633038348082595, "t20_eligible": 2509, "t20_shipAbsorbed": 3751.1, "t20_near": 572, "t20_nearGap": 2.866958045454546, "t25_eligible": 2083, "t25_shipAbsorbed": 2722.3500000000004, "t25_near": 704, "t25_nearGap": 3.7499007698863633, "t30_eligible": 1653, "t30_shipAbsorbed": 1678.8500000000004, "t30_near": 776, "t30_nearGap": 4.277255336340205, "t35_eligible": 1088, "t35_shipAbsorbed": 1096.15, "t35_near": 1068, "t35_nearGap": 5.147790295880149, "t40_eligible": 771, "t40_shipAbsorbed": 776.8500000000001, "t40_near": 1064, "t40_nearGap": 6.726193703007518, "t50_eligible": 445, "t50_shipAbsorbed": 449.45, "t50_near": 643, "t50_nearGap": 8.731835471228617}, {"YearMonth": "2023-04", "totalOrders": 2923, "totalShippingRev": 5434.549999999999, "t15_eligible": 2124, "t15_shipAbsorbed": 3582.95, "t15_near": 639, "t15_nearGap": 1.8149765258215962, "t20_eligible": 1715, "t20_shipAbsorbed": 2598.3500000000004, "t20_near": 549, "t20_nearGap": 2.7136429854280517, "t25_eligible": 1411, "t25_shipAbsorbed": 1861.5, "t25_near": 616, "t25_nearGap": 4.307094271103896, "t30_eligible": 1142, "t30_shipAbsorbed": 1173.9500000000003, "t30_near": 506, "t30_nearGap": 4.49733223320158, "t35_eligible": 703, "t35_shipAbsorbed": 725.6500000000001, "t35_near": 761, "t35_nearGap": 4.976268109067017, "t40_eligible": 486, "t40_shipAbsorbed": 565.25, "t40_near": 749, "t40_nearGap": 6.613231049399199, "t50_eligible": 295, "t50_shipAbsorbed": 331.84999999999997, "t50_near": 408, "t50_nearGap": 9.197451296568627}, {"YearMonth": "2023-03", "totalOrders": 4394, "totalShippingRev": 7949.65, "t15_eligible": 3276, "t15_shipAbsorbed": 5401.4, "t15_near": 844, "t15_nearGap": 2.074194313981043, "t20_eligible": 2614, "t20_shipAbsorbed": 3864.4999999999995, "t20_near": 794, "t20_nearGap": 2.5552896939546597, "t25_eligible": 2124, "t25_shipAbsorbed": 2652.8, "t25_near": 920, "t25_nearGap": 4.133521895652174, "t30_eligible": 1700, "t30_shipAbsorbed": 1662.4500000000003, "t30_near": 804, "t30_nearGap": 4.3431220534825865, "t35_eligible": 1093, "t35_shipAbsorbed": 1059.75, "t35_near": 1093, "t35_nearGap": 4.905260742909423, "t40_eligible": 737, "t40_shipAbsorbed": 761.1500000000001, "t40_near": 1148, "t40_nearGap": 6.649756146341463, "t50_eligible": 417, "t50_shipAbsorbed": 451.8500000000001, "t50_near": 676, "t50_nearGap": 9.15119851035503}, {"YearMonth": "2023-02", "totalOrders": 3600, "totalShippingRev": 5716.899999999999, "t15_eligible": 2749, "t15_shipAbsorbed": 3859.5999999999995, "t15_near": 655, "t15_nearGap": 2.1029465648854964, "t20_eligible": 2170, "t20_shipAbsorbed": 2423.1499999999996, "t20_near": 694, "t20_nearGap": 2.6935446988472624, "t25_eligible": 1433, "t25_shipAbsorbed": 1572.9500000000003, "t25_near": 1073, "t25_nearGap": 3.837008516309413, "t30_eligible": 979, "t30_shipAbsorbed": 1226.3999999999999, "t30_near": 949, "t30_nearGap": 4.816375370916756, "t35_eligible": 685, "t35_shipAbsorbed": 915.7500000000002, "t35_near": 820, "t35_nearGap": 5.831707559756097, "t40_eligible": 463, "t40_shipAbsorbed": 645.05, "t40_near": 718, "t40_nearGap": 6.865640976323121, "t50_eligible": 256, "t50_shipAbsorbed": 311.65, "t50_near": 429, "t50_nearGap": 8.975361606060607}, {"YearMonth": "2023-01", "totalOrders": 6343, "totalShippingRev": 10178.3, "t15_eligible": 4863, "t15_shipAbsorbed": 6668.649999999999, "t15_near": 1042, "t15_nearGap": 2.5762092130518233, "t20_eligible": 4010, "t20_shipAbsorbed": 4494.45, "t20_near": 933, "t20_nearGap": 2.7692497320471596, "t25_eligible": 2792, "t25_shipAbsorbed": 2867.45, "t25_near": 1610, "t25_nearGap": 3.7088573043478257, "t30_eligible": 1947, "t30_shipAbsorbed": 2094.0, "t30_near": 1699, "t30_nearGap": 5.089741353737494, "t35_eligible": 1472, "t35_shipAbsorbed": 1582.7500000000002, "t35_near": 1382, "t35_nearGap": 6.155825252532561, "t40_eligible": 1107, "t40_shipAbsorbed": 1120.6999999999998, "t40_near": 1119, "t40_nearGap": 6.93598779982127, "t50_eligible": 695, "t50_shipAbsorbed": 597.0999999999999, "t50_near": 777, "t50_nearGap": 8.981223003861004}, {"YearMonth": "2022-12", "totalOrders": 3703, "totalShippingRev": 6103.349999999999, "t15_eligible": 2874, "t15_shipAbsorbed": 4313.449999999999, "t15_near": 568, "t15_nearGap": 2.2415669014084507, "t20_eligible": 2361, "t20_shipAbsorbed": 3220.1000000000004, "t20_near": 585, "t20_nearGap": 2.63837611965812, "t25_eligible": 1630, "t25_shipAbsorbed": 2363.1, "t25_near": 1031, "t25_nearGap": 3.65836103685742, "t30_eligible": 1085, "t30_shipAbsorbed": 1636.7000000000003, "t30_near": 1075, "t30_nearGap": 4.706586398139535, "t35_eligible": 801, "t35_shipAbsorbed": 1208.0500000000002, "t35_near": 882, "t35_nearGap": 6.081610315192744, "t40_eligible": 582, "t40_shipAbsorbed": 819.5500000000002, "t40_near": 725, "t40_nearGap": 7.083779722758622, "t50_eligible": 333, "t50_shipAbsorbed": 436.7500000000001, "t50_near": 468, "t50_nearGap": 8.647201410256411}, {"YearMonth": "2022-11", "totalOrders": 4707, "totalShippingRev": 5384.8, "t15_eligible": 3675, "t15_shipAbsorbed": 3724.95, "t15_near": 669, "t15_nearGap": 2.37164424813154, "t20_eligible": 2857, "t20_shipAbsorbed": 2982.8500000000004, "t20_near": 911, "t20_nearGap": 2.5745226004390784, "t25_eligible": 2184, "t25_shipAbsorbed": 2276.4, "t25_near": 1155, "t25_nearGap": 4.12053695930736, "t30_eligible": 1493, "t30_shipAbsorbed": 1724.2000000000003, "t30_near": 1170, "t30_nearGap": 4.427914547863248, "t35_eligible": 1075, "t35_shipAbsorbed": 1206.55, "t35_near": 1158, "t35_nearGap": 5.929602827288428, "t40_eligible": 802, "t40_shipAbsorbed": 866.6500000000001, "t40_near": 937, "t40_nearGap": 7.033383418356458, "t50_eligible": 519, "t50_shipAbsorbed": 461.1, "t50_near": 556, "t50_nearGap": 8.888057794964029}, {"YearMonth": "2022-10", "totalOrders": 4162, "totalShippingRev": 4964.099999999999, "t15_eligible": 3067, "t15_shipAbsorbed": 3229.9500000000003, "t15_near": 737, "t15_nearGap": 2.1762143826322933, "t20_eligible": 2131, "t20_shipAbsorbed": 2439.95, "t20_near": 1075, "t20_nearGap": 2.9202791860465123, "t25_eligible": 1512, "t25_shipAbsorbed": 1758.1000000000004, "t25_near": 1087, "t25_nearGap": 4.099908161913524, "t30_eligible": 1059, "t30_shipAbsorbed": 1237.75, "t30_near": 878, "t30_nearGap": 4.435831451025057, "t35_eligible": 748, "t35_shipAbsorbed": 894.5500000000002, "t35_near": 882, "t35_nearGap": 6.04621316893424, "t40_eligible": 550, "t40_shipAbsorbed": 664.8000000000001, "t40_near": 652, "t40_nearGap": 6.756487990797547, "t50_eligible": 341, "t50_shipAbsorbed": 360.55000000000007, "t50_near": 407, "t50_nearGap": 8.806929034398037}, {"YearMonth": "2022-09", "totalOrders": 4045, "totalShippingRev": 4631.6, "t15_eligible": 3050, "t15_shipAbsorbed": 2928.9500000000007, "t15_near": 663, "t15_nearGap": 2.2534539954751134, "t20_eligible": 2227, "t20_shipAbsorbed": 2229.0499999999993, "t20_near": 930, "t20_nearGap": 2.8046560086021506, "t25_eligible": 1615, "t25_shipAbsorbed": 1610.4, "t25_near": 1048, "t25_nearGap": 3.986097470419847, "t30_eligible": 1149, "t30_shipAbsorbed": 1241.15, "t30_near": 911, "t30_nearGap": 4.6918990010976955, "t35_eligible": 855, "t35_shipAbsorbed": 889.5999999999999, "t35_near": 856, "t35_nearGap": 6.225607462616823, "t40_eligible": 613, "t40_shipAbsorbed": 632.2, "t40_near": 656, "t40_nearGap": 6.304466711890244, "t50_eligible": 391, "t50_shipAbsorbed": 358.70000000000005, "t50_near": 464, "t50_nearGap": 9.226250316810345}, {"YearMonth": "2022-08", "totalOrders": 4235, "totalShippingRev": 6168.6, "t15_eligible": 3167, "t15_shipAbsorbed": 4051.45, "t15_near": 798, "t15_nearGap": 1.9140225576441106, "t20_eligible": 2406, "t20_shipAbsorbed": 3271.3, "t20_near": 981, "t20_nearGap": 3.045606595310908, "t25_eligible": 1667, "t25_shipAbsorbed": 2233.5, "t25_near": 1174, "t25_nearGap": 3.8515589471890976, "t30_eligible": 1180, "t30_shipAbsorbed": 1652.7000000000003, "t30_near": 1015, "t30_nearGap": 4.806571492610837, "t35_eligible": 857, "t35_shipAbsorbed": 1169.75, "t35_near": 890, "t35_nearGap": 6.028494383146066, "t40_eligible": 648, "t40_shipAbsorbed": 891.7000000000003, "t40_near": 674, "t40_nearGap": 6.6859646468842735, "t50_eligible": 412, "t50_shipAbsorbed": 514.4499999999999, "t50_near": 445, "t50_nearGap": 8.642831858426966}, {"YearMonth": "2022-07", "totalOrders": 4961, "totalShippingRev": 6665.9, "t15_eligible": 3753, "t15_shipAbsorbed": 4502.95, "t15_near": 871, "t15_nearGap": 2.2523765786452357, "t20_eligible": 2663, "t20_shipAbsorbed": 3400.1, "t20_near": 1205, "t20_nearGap": 2.8558009062240672, "t25_eligible": 1926, "t25_shipAbsorbed": 2289.6499999999996, "t25_near": 1273, "t25_nearGap": 4.072969439120189, "t30_eligible": 1353, "t30_shipAbsorbed": 1627.8500000000004, "t30_near": 1137, "t30_nearGap": 4.723614921723835, "t35_eligible": 1040, "t35_shipAbsorbed": 1229.1, "t35_near": 1008, "t35_nearGap": 6.359712459325397, "t40_eligible": 792, "t40_shipAbsorbed": 905.4499999999999, "t40_near": 744, "t40_nearGap": 6.71998673655914, "t50_eligible": 490, "t50_shipAbsorbed": 543.6999999999999, "t50_near": 550, "t50_nearGap": 8.67647288}, {"YearMonth": "2022-06", "totalOrders": 4162, "totalShippingRev": 5279.450000000001, "t15_eligible": 3066, "t15_shipAbsorbed": 3824.5, "t15_near": 771, "t15_nearGap": 2.000661481193256, "t20_eligible": 2307, "t20_shipAbsorbed": 2979.55, "t20_near": 920, "t20_nearGap": 2.8185653728260878, "t25_eligible": 1666, "t25_shipAbsorbed": 2166.7, "t25_near": 1058, "t25_nearGap": 3.923648605860114, "t30_eligible": 1161, "t30_shipAbsorbed": 1599.2, "t30_near": 956, "t30_nearGap": 4.5536088221757325, "t35_eligible": 835, "t35_shipAbsorbed": 1135.6999999999998, "t35_near": 919, "t35_nearGap": 6.082655029379762, "t40_eligible": 627, "t40_shipAbsorbed": 866.3499999999999, "t40_near": 676, "t40_nearGap": 6.708151125739646, "t50_eligible": 371, "t50_shipAbsorbed": 457.4, "t50_near": 464, "t50_nearGap": 8.639957230603448}, {"YearMonth": "2022-05", "totalOrders": 4494, "totalShippingRev": 4940.0, "t15_eligible": 3054, "t15_shipAbsorbed": 3630.0, "t15_near": 885, "t15_nearGap": 2.170112994350283, "t20_eligible": 2360, "t20_shipAbsorbed": 2880.0, "t20_near": 830, "t20_nearGap": 2.8157229951807237, "t25_eligible": 1659, "t25_shipAbsorbed": 1995.0, "t25_near": 1065, "t25_nearGap": 3.7810987962441325, "t30_eligible": 1175, "t30_shipAbsorbed": 1405.0, "t30_near": 1005, "t30_nearGap": 4.856696612935324, "t35_eligible": 870, "t35_shipAbsorbed": 1035.0, "t35_near": 848, "t35_nearGap": 6.062912689858491, "t40_eligible": 646, "t40_shipAbsorbed": 790.0, "t40_near": 671, "t40_nearGap": 6.7260359150521625, "t50_eligible": 402, "t50_shipAbsorbed": 415.0, "t50_near": 468, "t50_nearGap": 9.002628523504276}, {"YearMonth": "2022-04", "totalOrders": 5372, "totalShippingRev": 5732.5, "t15_eligible": 3621, "t15_shipAbsorbed": 4135.0, "t15_near": 1059, "t15_nearGap": 2.055873467422097, "t20_eligible": 2586, "t20_shipAbsorbed": 3172.5, "t20_near": 1226, "t20_nearGap": 2.9001387691680267, "t25_eligible": 1710, "t25_shipAbsorbed": 2120.0, "t25_near": 1383, "t25_nearGap": 3.7283370954446857, "t30_eligible": 1160, "t30_shipAbsorbed": 1465.0, "t30_near": 1217, "t30_nearGap": 4.803508769104355, "t35_eligible": 823, "t35_shipAbsorbed": 1020.0, "t35_near": 1027, "t35_nearGap": 6.29124641869523, "t40_eligible": 620, "t40_shipAbsorbed": 762.5, "t40_near": 729, "t40_nearGap": 7.1431826707818935, "t50_eligible": 367, "t50_shipAbsorbed": 392.5, "t50_near": 456, "t50_nearGap": 8.627500324561405}, {"YearMonth": "2022-03", "totalOrders": 6185, "totalShippingRev": 7345.0, "t15_eligible": 4202, "t15_shipAbsorbed": 5100.0, "t15_near": 1273, "t15_nearGap": 2.2704241948153974, "t20_eligible": 3407, "t20_shipAbsorbed": 4115.0, "t20_near": 921, "t20_nearGap": 2.6791315168295338, "t25_eligible": 2366, "t25_shipAbsorbed": 2812.5, "t25_near": 1467, "t25_nearGap": 3.426816965916838, "t30_eligible": 1594, "t30_shipAbsorbed": 1880.0, "t30_near": 1645, "t30_nearGap": 4.992480618844985, "t35_eligible": 1132, "t35_shipAbsorbed": 1347.5, "t35_near": 1340, "t35_nearGap": 6.21045552835821, "t40_eligible": 822, "t40_shipAbsorbed": 987.5, "t40_near": 1024, "t40_nearGap": 6.930332293945313, "t50_eligible": 462, "t50_shipAbsorbed": 560.0, "t50_near": 670, "t50_nearGap": 8.738284007462687}, {"YearMonth": "2022-02", "totalOrders": 3699, "totalShippingRev": 4150.0, "t15_eligible": 2348, "t15_shipAbsorbed": 2910.0, "t15_near": 713, "t15_nearGap": 2.2015848527349235, "t20_eligible": 1704, "t20_shipAbsorbed": 2245.0, "t20_near": 762, "t20_nearGap": 2.815787496062993, "t25_eligible": 1247, "t25_shipAbsorbed": 1625.0, "t25_near": 792, "t25_nearGap": 4.0952653674242425, "t30_eligible": 835, "t30_shipAbsorbed": 1105.0, "t30_near": 757, "t30_nearGap": 4.660859021136065, "t35_eligible": 622, "t35_shipAbsorbed": 815.0, "t35_near": 641, "t35_nearGap": 6.014368533541343, "t40_eligible": 462, "t40_shipAbsorbed": 617.5, "t40_near": 535, "t40_nearGap": 7.076972192523366, "t50_eligible": 269, "t50_shipAbsorbed": 367.5, "t50_near": 353, "t50_nearGap": 8.51597761756374}, {"YearMonth": "2022-01", "totalOrders": 8182, "totalShippingRev": 7615.0, "t15_eligible": 5440, "t15_shipAbsorbed": 5452.5, "t15_near": 1249, "t15_nearGap": 2.4748118486789434, "t20_eligible": 4050, "t20_shipAbsorbed": 4187.5, "t20_near": 1625, "t20_nearGap": 3.003852337846154, "t25_eligible": 2842, "t25_shipAbsorbed": 2945.0, "t25_near": 1904, "t25_nearGap": 4.087326967962185, "t30_eligible": 2087, "t30_shipAbsorbed": 2057.5, "t30_near": 1675, "t30_nearGap": 5.225069054328358, "t35_eligible": 1550, "t35_shipAbsorbed": 1500.0, "t35_near": 1363, "t35_nearGap": 5.880389131327954, "t40_eligible": 1188, "t40_shipAbsorbed": 1167.5, "t40_near": 1162, "t40_nearGap": 6.83987115060241, "t50_eligible": 686, "t50_shipAbsorbed": 677.5, "t50_near": 864, "t50_nearGap": 8.315926403935185}, {"YearMonth": "2021-12", "totalOrders": 4116, "totalShippingRev": 4455.0, "t15_eligible": 2882, "t15_shipAbsorbed": 3383.0, "t15_near": 674, "t15_nearGap": 2.310103857566766, "t20_eligible": 2281, "t20_shipAbsorbed": 2775.0, "t20_near": 712, "t20_nearGap": 2.780898941011236, "t25_eligible": 1637, "t25_shipAbsorbed": 1972.5, "t25_near": 984, "t25_nearGap": 3.891565271341464, "t30_eligible": 1166, "t30_shipAbsorbed": 1359.5, "t30_near": 953, "t30_nearGap": 4.975236499475342, "t35_eligible": 881, "t35_shipAbsorbed": 1043.0, "t35_near": 787, "t35_nearGap": 5.9583230978399, "t40_eligible": 671, "t40_shipAbsorbed": 835.5, "t40_near": 661, "t40_nearGap": 6.826157645990923, "t50_eligible": 395, "t50_shipAbsorbed": 528.0, "t50_near": 486, "t50_nearGap": 8.336173323045267}, {"YearMonth": "2021-11", "totalOrders": 6308, "totalShippingRev": 6155.5, "t15_eligible": 4375, "t15_shipAbsorbed": 4595.0, "t15_near": 955, "t15_nearGap": 2.398356020942409, "t20_eligible": 3382, "t20_shipAbsorbed": 3642.0, "t20_near": 1159, "t20_nearGap": 2.894969843830889, "t25_eligible": 2539, "t25_shipAbsorbed": 2765.0, "t25_near": 1382, "t25_nearGap": 4.122120336468885, "t30_eligible": 1867, "t30_shipAbsorbed": 1985.0, "t30_near": 1277, "t30_nearGap": 4.785936163664839, "t35_eligible": 1434, "t35_shipAbsorbed": 1540.0, "t35_near": 1145, "t35_nearGap": 5.904699034061136, "t40_eligible": 1096, "t40_shipAbsorbed": 1192.5, "t40_near": 996, "t40_nearGap": 6.690913973895582, "t50_eligible": 650, "t50_shipAbsorbed": 699.0, "t50_near": 784, "t50_nearGap": 8.303240247448981}, {"YearMonth": "2021-10", "totalOrders": 5308, "totalShippingRev": 5380.5, "t15_eligible": 3613, "t15_shipAbsorbed": 4075.5, "t15_near": 987, "t15_nearGap": 2.060618033434651, "t20_eligible": 2627, "t20_shipAbsorbed": 3145.0, "t20_near": 1190, "t20_nearGap": 2.887537912605043, "t25_eligible": 1820, "t25_shipAbsorbed": 2229.0, "t25_near": 1289, "t25_nearGap": 3.9394183661753304, "t30_eligible": 1247, "t30_shipAbsorbed": 1497.0, "t30_near": 1192, "t30_nearGap": 5.017282261744968, "t35_eligible": 916, "t35_shipAbsorbed": 1125.0, "t35_near": 931, "t35_nearGap": 5.95619797744361, "t40_eligible": 675, "t40_shipAbsorbed": 894.0, "t40_near": 776, "t40_nearGap": 6.955051865979382, "t50_eligible": 417, "t50_shipAbsorbed": 606.5, "t50_near": 499, "t50_nearGap": 9.016072615230462}, {"YearMonth": "2021-09", "totalOrders": 5069, "totalShippingRev": 5301.0, "t15_eligible": 3621, "t15_shipAbsorbed": 3970.0, "t15_near": 803, "t15_nearGap": 2.247397261519303, "t20_eligible": 2904, "t20_shipAbsorbed": 3274.5, "t20_near": 828, "t20_nearGap": 2.6011353526570056, "t25_eligible": 2117, "t25_shipAbsorbed": 2323.0, "t25_near": 1201, "t25_nearGap": 3.7752041673605334, "t30_eligible": 1452, "t30_shipAbsorbed": 1618.5, "t30_near": 1278, "t30_nearGap": 4.8211661580594685, "t35_eligible": 1070, "t35_shipAbsorbed": 1243.0, "t35_near": 1080, "t35_nearGap": 6.035268797222223, "t40_eligible": 802, "t40_shipAbsorbed": 962.0, "t40_near": 891, "t40_nearGap": 7.090146179573514, "t50_eligible": 489, "t50_shipAbsorbed": 577.0, "t50_near": 581, "t50_nearGap": 8.841979769363167}, {"YearMonth": "2021-08", "totalOrders": 4729, "totalShippingRev": 5561.5, "t15_eligible": 3236, "t15_shipAbsorbed": 4115.5, "t15_near": 817, "t15_nearGap": 2.2477600991432074, "t20_eligible": 2504, "t20_shipAbsorbed": 3368.5, "t20_near": 846, "t20_nearGap": 2.660756596926714, "t25_eligible": 1841, "t25_shipAbsorbed": 2518.5, "t25_near": 1064, "t25_nearGap": 3.90629720018797, "t30_eligible": 1253, "t30_shipAbsorbed": 1775.5, "t30_near": 1076, "t30_nearGap": 4.674544990706321, "t35_eligible": 965, "t35_shipAbsorbed": 1397.0, "t35_near": 919, "t35_nearGap": 6.211632616974974, "t40_eligible": 716, "t40_shipAbsorbed": 1140.0, "t40_near": 747, "t40_nearGap": 6.870937452476574, "t50_eligible": 434, "t50_shipAbsorbed": 712.5, "t50_near": 531, "t50_nearGap": 8.666271564971753}, {"YearMonth": "2021-07", "totalOrders": 6537, "totalShippingRev": 6755.5, "t15_eligible": 4541, "t15_shipAbsorbed": 4977.5, "t15_near": 1037, "t15_nearGap": 2.391485053037609, "t20_eligible": 3447, "t20_shipAbsorbed": 3929.5, "t20_near": 1281, "t20_nearGap": 2.927127284933646, "t25_eligible": 2518, "t25_shipAbsorbed": 2963.5, "t25_near": 1506, "t25_nearGap": 4.056759897078353, "t30_eligible": 1831, "t30_shipAbsorbed": 2079.0, "t30_near": 1393, "t30_nearGap": 5.000718292893037, "t35_eligible": 1421, "t35_shipAbsorbed": 1605.0, "t35_near": 1126, "t35_nearGap": 6.032575845470694, "t40_eligible": 1069, "t40_shipAbsorbed": 1236.5, "t40_near": 978, "t40_nearGap": 6.552260022494888, "t50_eligible": 639, "t50_shipAbsorbed": 741.0, "t50_near": 782, "t50_nearGap": 8.607366093350384}, {"YearMonth": "2021-06", "totalOrders": 5626, "totalShippingRev": 5431.0, "t15_eligible": 4119, "t15_shipAbsorbed": 4278.0, "t15_near": 995, "t15_nearGap": 1.8643216080402012, "t20_eligible": 3026, "t20_shipAbsorbed": 3313.5, "t20_near": 1382, "t20_nearGap": 3.03710576845152, "t25_eligible": 2071, "t25_shipAbsorbed": 2387.0, "t25_near": 1456, "t25_nearGap": 3.8235717589285727, "t30_eligible": 1385, "t30_shipAbsorbed": 1533.0, "t30_near": 1397, "t30_nearGap": 4.8681536356478174, "t35_eligible": 1034, "t35_shipAbsorbed": 1157.0, "t35_near": 1075, "t35_nearGap": 6.091842226046512, "t40_eligible": 772, "t40_shipAbsorbed": 905.5, "t40_near": 866, "t40_nearGap": 7.053868662817553, "t50_eligible": 469, "t50_shipAbsorbed": 565.0, "t50_near": 565, "t50_nearGap": 8.810796865486727}, {"YearMonth": "2021-05", "totalOrders": 5121, "totalShippingRev": 4580.5, "t15_eligible": 3758, "t15_shipAbsorbed": 3453.5, "t15_near": 741, "t15_nearGap": 2.3277867746288803, "t20_eligible": 3049, "t20_shipAbsorbed": 2844.5, "t20_near": 829, "t20_nearGap": 2.8061882569360677, "t25_eligible": 2086, "t25_shipAbsorbed": 2001.5, "t25_near": 1340, "t25_nearGap": 3.7418734000000007, "t30_eligible": 1410, "t30_shipAbsorbed": 1359.0, "t30_near": 1309, "t30_nearGap": 4.830649637891521, "t35_eligible": 984, "t35_shipAbsorbed": 1027.5, "t35_near": 1167, "t35_nearGap": 6.048346469580121, "t40_eligible": 707, "t40_shipAbsorbed": 778.5, "t40_near": 925, "t40_nearGap": 6.899957031351352, "t50_eligible": 425, "t50_shipAbsorbed": 493.0, "t50_near": 559, "t50_nearGap": 8.913936028622542}, {"YearMonth": "2021-04", "totalOrders": 4942, "totalShippingRev": 4980.0, "t15_eligible": 3457, "t15_shipAbsorbed": 3735.0, "t15_near": 821, "t15_nearGap": 2.3134226577344705, "t20_eligible": 2682, "t20_shipAbsorbed": 2968.5, "t20_near": 882, "t20_nearGap": 2.6417461292517013, "t25_eligible": 1959, "t25_shipAbsorbed": 2202.5, "t25_near": 1143, "t25_nearGap": 3.869842746281715, "t30_eligible": 1366, "t30_shipAbsorbed": 1564.5, "t30_near": 1136, "t30_nearGap": 4.830361293133803, "t35_eligible": 1054, "t35_shipAbsorbed": 1215.5, "t35_near": 953, "t35_nearGap": 6.183704456453306, "t40_eligible": 781, "t40_shipAbsorbed": 930.5, "t40_near": 779, "t40_nearGap": 6.633414888318357, "t50_eligible": 455, "t50_shipAbsorbed": 569.5, "t50_near": 599, "t50_nearGap": 8.557746590984976}, {"YearMonth": "2021-03", "totalOrders": 6024, "totalShippingRev": 6458.0, "t15_eligible": 4219, "t15_shipAbsorbed": 4737.5, "t15_near": 971, "t15_nearGap": 2.3439958805355308, "t20_eligible": 3397, "t20_shipAbsorbed": 3955.0, "t20_near": 918, "t20_nearGap": 2.479793092592593, "t25_eligible": 2378, "t25_shipAbsorbed": 2781.5, "t25_near": 1508, "t25_nearGap": 3.70361426724138, "t30_eligible": 1633, "t30_shipAbsorbed": 1885.0, "t30_near": 1537, "t30_nearGap": 4.931249475601822, "t35_eligible": 1202, "t35_shipAbsorbed": 1415.0, "t35_near": 1229, "t35_nearGap": 5.974328986167616, "t40_eligible": 882, "t40_shipAbsorbed": 1056.5, "t40_near": 1031, "t40_nearGap": 7.004035220174588, "t50_eligible": 514, "t50_shipAbsorbed": 647.5, "t50_near": 688, "t50_nearGap": 8.813982950581396}, {"YearMonth": "2021-02", "totalOrders": 5112, "totalShippingRev": 5643.5, "t15_eligible": 3264, "t15_shipAbsorbed": 3960.5, "t15_near": 971, "t15_nearGap": 2.4001956755921734, "t20_eligible": 2483, "t20_shipAbsorbed": 3092.0, "t20_near": 896, "t20_nearGap": 2.721450970982144, "t25_eligible": 1747, "t25_shipAbsorbed": 2135.0, "t25_near": 1162, "t25_nearGap": 3.9130552306368345, "t30_eligible": 1166, "t30_shipAbsorbed": 1429.0, "t30_near": 1127, "t30_nearGap": 4.837613399290152, "t35_eligible": 863, "t35_shipAbsorbed": 1048.5, "t35_near": 925, "t35_nearGap": 6.155059751351352, "t40_eligible": 648, "t40_shipAbsorbed": 824.5, "t40_near": 712, "t40_nearGap": 7.05699460252809, "t50_eligible": 400, "t50_shipAbsorbed": 520.5, "t50_near": 463, "t50_nearGap": 8.713412827213823}, {"YearMonth": "2021-01", "totalOrders": 8927, "totalShippingRev": 9248.0, "t15_eligible": 6240, "t15_shipAbsorbed": 6351.5, "t15_near": 1301, "t15_nearGap": 2.3259953881629523, "t20_eligible": 5302, "t20_shipAbsorbed": 5394.0, "t20_near": 1042, "t20_nearGap": 2.5272745019193863, "t25_eligible": 3367, "t25_shipAbsorbed": 3563.5, "t25_near": 2484, "t25_nearGap": 3.4489173067632852, "t30_eligible": 2263, "t30_shipAbsorbed": 2271.5, "t30_near": 2543, "t30_nearGap": 5.228977838773103, "t35_eligible": 1630, "t35_shipAbsorbed": 1636.5, "t35_near": 1851, "t35_nearGap": 6.136077992436521, "t40_eligible": 1214, "t40_shipAbsorbed": 1221.5, "t40_near": 1424, "t40_nearGap": 7.033265632022472, "t50_eligible": 716, "t50_shipAbsorbed": 741.5, "t50_near": 914, "t50_nearGap": 8.61038324070022}, {"YearMonth": "2020-12", "totalOrders": 6363, "totalShippingRev": 7069.5, "t15_eligible": 4258, "t15_shipAbsorbed": 4872.5, "t15_near": 1088, "t15_nearGap": 2.269273897977942, "t20_eligible": 3508, "t20_shipAbsorbed": 4089.5, "t20_near": 863, "t20_nearGap": 2.5994091089223645, "t25_eligible": 2500, "t25_shipAbsorbed": 2957.5, "t25_near": 1437, "t25_nearGap": 3.6308839888656927, "t30_eligible": 1742, "t30_shipAbsorbed": 2124.5, "t30_near": 1479, "t30_nearGap": 4.793238924949291, "t35_eligible": 1276, "t35_shipAbsorbed": 1568.0, "t35_near": 1285, "t35_nearGap": 6.028327083268483, "t40_eligible": 953, "t40_shipAbsorbed": 1209.0, "t40_near": 1053, "t40_nearGap": 6.974786529914531, "t50_eligible": 587, "t50_shipAbsorbed": 814.0, "t50_near": 689, "t50_nearGap": 8.770058433962266}, {"YearMonth": "2020-11", "totalOrders": 7401, "totalShippingRev": 7567.5, "t15_eligible": 4320, "t15_shipAbsorbed": 4957.5, "t15_near": 1425, "t15_nearGap": 2.3667228070175446, "t20_eligible": 3431, "t20_shipAbsorbed": 4147.0, "t20_near": 1046, "t20_nearGap": 2.6479828441682605, "t25_eligible": 2583, "t25_shipAbsorbed": 3037.5, "t25_near": 1367, "t25_nearGap": 3.922260506217997, "t30_eligible": 1786, "t30_shipAbsorbed": 2136.0, "t30_near": 1411, "t30_nearGap": 4.56369266619419, "t35_eligible": 1337, "t35_shipAbsorbed": 1646.0, "t35_near": 1307, "t35_nearGap": 6.078393527161439, "t40_eligible": 973, "t40_shipAbsorbed": 1262.0, "t40_near": 1101, "t40_nearGap": 6.866457965485923, "t50_eligible": 587, "t50_shipAbsorbed": 752.5, "t50_near": 750, "t50_nearGap": 8.827973518666667}, {"YearMonth": "2020-10", "totalOrders": 7957, "totalShippingRev": 7797.0, "t15_eligible": 4903, "t15_shipAbsorbed": 5266.0, "t15_near": 1400, "t15_nearGap": 2.3693785714285722, "t20_eligible": 3982, "t20_shipAbsorbed": 4405.5, "t20_near": 1104, "t20_nearGap": 2.6900181902173914, "t25_eligible": 2891, "t25_shipAbsorbed": 3288.0, "t25_near": 1625, "t25_nearGap": 3.632498621538462, "t30_eligible": 1955, "t30_shipAbsorbed": 2271.0, "t30_near": 1781, "t30_nearGap": 4.716693156092084, "t35_eligible": 1445, "t35_shipAbsorbed": 1675.0, "t35_near": 1544, "t35_nearGap": 6.19861427072539, "t40_eligible": 1035, "t40_shipAbsorbed": 1263.0, "t40_near": 1233, "t40_nearGap": 6.7977537007299285, "t50_eligible": 637, "t50_shipAbsorbed": 809.0, "t50_near": 808, "t50_nearGap": 9.006671103960397}, {"YearMonth": "2020-09", "totalOrders": 4917, "totalShippingRev": 4349.5, "t15_eligible": 3182, "t15_shipAbsorbed": 3196.0, "t15_near": 846, "t15_nearGap": 2.2789952730496457, "t20_eligible": 2538, "t20_shipAbsorbed": 2671.5, "t20_near": 778, "t20_nearGap": 2.7651800192802067, "t25_eligible": 1975, "t25_shipAbsorbed": 2060.5, "t25_near": 934, "t25_nearGap": 4.007366310492507, "t30_eligible": 1346, "t30_shipAbsorbed": 1365.0, "t30_near": 1032, "t30_nearGap": 4.37994218507752, "t35_eligible": 1009, "t35_shipAbsorbed": 1047.5, "t35_near": 994, "t35_nearGap": 6.098531467806842, "t40_eligible": 786, "t40_shipAbsorbed": 857.0, "t40_near": 772, "t40_nearGap": 7.054831794041452, "t50_eligible": 481, "t50_shipAbsorbed": 540.5, "t50_near": 528, "t50_nearGap": 8.28587153030303}, {"YearMonth": "2020-08", "totalOrders": 5658, "totalShippingRev": 5514.5, "t15_eligible": 3929, "t15_shipAbsorbed": 4111.5, "t15_near": 951, "t15_nearGap": 2.493648790746583, "t20_eligible": 3173, "t20_shipAbsorbed": 3432.5, "t20_near": 852, "t20_nearGap": 2.4646479906103296, "t25_eligible": 2364, "t25_shipAbsorbed": 2558.5, "t25_near": 1263, "t25_nearGap": 3.740174466349961, "t30_eligible": 1675, "t30_shipAbsorbed": 1827.5, "t30_near": 1348, "t30_nearGap": 4.848101267062315, "t35_eligible": 1312, "t35_shipAbsorbed": 1456.5, "t35_near": 1131, "t35_nearGap": 6.276631582670205, "t40_eligible": 993, "t40_shipAbsorbed": 1184.5, "t40_near": 910, "t40_nearGap": 6.638934216483518, "t50_eligible": 623, "t50_shipAbsorbed": 739.5, "t50_near": 689, "t50_nearGap": 8.550348746008709}, {"YearMonth": "2020-07", "totalOrders": 5747, "totalShippingRev": 5718.5, "t15_eligible": 3993, "t15_shipAbsorbed": 4264.5, "t15_near": 945, "t15_nearGap": 2.449079365079365, "t20_eligible": 3289, "t20_shipAbsorbed": 3496.0, "t20_near": 826, "t20_nearGap": 2.754225232445521, "t25_eligible": 2412, "t25_shipAbsorbed": 2688.5, "t25_near": 1253, "t25_nearGap": 3.508292302474064, "t30_eligible": 1572, "t30_shipAbsorbed": 1804.5, "t30_near": 1534, "t30_nearGap": 4.588031634941331, "t35_eligible": 1171, "t35_shipAbsorbed": 1378.5, "t35_near": 1320, "t35_nearGap": 6.3048033189393955, "t40_eligible": 861, "t40_shipAbsorbed": 1038.5, "t40_near": 996, "t40_nearGap": 7.0130423945783145, "t50_eligible": 531, "t50_shipAbsorbed": 668.5, "t50_near": 640, "t50_nearGap": 8.8859847671875}, {"YearMonth": "2020-06", "totalOrders": 5983, "totalShippingRev": 5838.5, "t15_eligible": 3924, "t15_shipAbsorbed": 4108.5, "t15_near": 1055, "t15_nearGap": 2.2536492881516588, "t20_eligible": 2949, "t20_shipAbsorbed": 3215.5, "t20_near": 1157, "t20_nearGap": 2.890829755401902, "t25_eligible": 2153, "t25_shipAbsorbed": 2366.5, "t25_near": 1305, "t25_nearGap": 4.00105758237548, "t30_eligible": 1518, "t30_shipAbsorbed": 1738.5, "t30_near": 1238, "t30_nearGap": 4.814854907915994, "t35_eligible": 1161, "t35_shipAbsorbed": 1345.0, "t35_near": 1053, "t35_nearGap": 6.128898696106364, "t40_eligible": 911, "t40_shipAbsorbed": 1091.0, "t40_near": 841, "t40_nearGap": 7.054280871581452, "t50_eligible": 552, "t50_shipAbsorbed": 701.0, "t50_near": 609, "t50_nearGap": 8.320082412151068}, {"YearMonth": "2020-05", "totalOrders": 6236, "totalShippingRev": 6558.0, "t15_eligible": 3718, "t15_shipAbsorbed": 4485.5, "t15_near": 1090, "t15_nearGap": 2.2388165137614684, "t20_eligible": 2814, "t20_shipAbsorbed": 3492.0, "t20_near": 1110, "t20_nearGap": 2.99379281981982, "t25_eligible": 2064, "t25_shipAbsorbed": 2433.0, "t25_near": 1213, "t25_nearGap": 4.039711531739489, "t30_eligible": 1373, "t30_shipAbsorbed": 1689.5, "t30_near": 1215, "t30_nearGap": 4.577070274897119, "t35_eligible": 1048, "t35_shipAbsorbed": 1292.5, "t35_near": 1077, "t35_nearGap": 6.305868511606314, "t40_eligible": 790, "t40_shipAbsorbed": 1010.5, "t40_near": 835, "t40_nearGap": 7.077401414371258, "t50_eligible": 495, "t50_shipAbsorbed": 641.0, "t50_near": 553, "t50_nearGap": 8.815895374321883}, {"YearMonth": "2020-04", "totalOrders": 6875, "totalShippingRev": 7648.0, "t15_eligible": 3849, "t15_shipAbsorbed": 4857.5, "t15_near": 1364, "t15_nearGap": 2.195205278592376, "t20_eligible": 2975, "t20_shipAbsorbed": 3784.5, "t20_near": 1107, "t20_nearGap": 3.0414453721770554, "t25_eligible": 2173, "t25_shipAbsorbed": 2634.5, "t25_near": 1266, "t25_nearGap": 4.009036409952608, "t30_eligible": 1433, "t30_shipAbsorbed": 1816.5, "t30_near": 1280, "t30_nearGap": 4.4845315992187516, "t35_eligible": 1092, "t35_shipAbsorbed": 1392.5, "t35_near": 1127, "t35_nearGap": 6.17947687666371, "t40_eligible": 828, "t40_shipAbsorbed": 1108.5, "t40_near": 902, "t40_nearGap": 7.191508045454547, "t50_eligible": 507, "t50_shipAbsorbed": 670.5, "t50_near": 585, "t50_nearGap": 8.627248114529916}, {"YearMonth": "2020-03", "totalOrders": 5192, "totalShippingRev": 5005.0, "t15_eligible": 3549, "t15_shipAbsorbed": 3828.5, "t15_near": 845, "t15_nearGap": 2.1923786982248528, "t20_eligible": 2805, "t20_shipAbsorbed": 3140.5, "t20_near": 907, "t20_nearGap": 2.7244653241455357, "t25_eligible": 2187, "t25_shipAbsorbed": 2374.0, "t25_near": 1049, "t25_nearGap": 4.0616588722592954, "t30_eligible": 1543, "t30_shipAbsorbed": 1801.0, "t30_near": 1076, "t30_nearGap": 4.403169482342008, "t35_eligible": 1229, "t35_shipAbsorbed": 1452.0, "t35_near": 994, "t35_nearGap": 6.140996289738432, "t40_eligible": 977, "t40_shipAbsorbed": 1217.0, "t40_near": 792, "t40_nearGap": 6.908649165404042, "t50_eligible": 619, "t50_shipAbsorbed": 785.5, "t50_near": 610, "t50_nearGap": 8.474672308196723}, {"YearMonth": "2020-02", "totalOrders": 2520, "totalShippingRev": 2278.5, "t15_eligible": 1730, "t15_shipAbsorbed": 1799.0, "t15_near": 432, "t15_nearGap": 2.1783564814814818, "t20_eligible": 1332, "t20_shipAbsorbed": 1447.5, "t20_near": 491, "t20_nearGap": 2.7288392362525467, "t25_eligible": 1007, "t25_shipAbsorbed": 1142.0, "t25_near": 552, "t25_nearGap": 4.061576342391305, "t30_eligible": 652, "t30_shipAbsorbed": 799.0, "t30_near": 589, "t30_nearGap": 4.515212668930392, "t35_eligible": 527, "t35_shipAbsorbed": 655.0, "t35_near": 493, "t35_nearGap": 6.571826038539555, "t40_eligible": 392, "t40_shipAbsorbed": 513.0, "t40_near": 387, "t40_nearGap": 7.022635997416021, "t50_eligible": 251, "t50_shipAbsorbed": 333.5, "t50_near": 276, "t50_nearGap": 8.793080079710146}, {"YearMonth": "2020-01", "totalOrders": 5713, "totalShippingRev": 4265.5, "t15_eligible": 4453, "t15_shipAbsorbed": 3587.5, "t15_near": 652, "t15_nearGap": 2.0653527607361966, "t20_eligible": 3638, "t20_shipAbsorbed": 3028.5, "t20_near": 979, "t20_nearGap": 2.682512851889684, "t25_eligible": 2749, "t25_shipAbsorbed": 2310.5, "t25_near": 1362, "t25_nearGap": 3.7890089948604997, "t30_eligible": 2044, "t30_shipAbsorbed": 1851.0, "t30_near": 1333, "t30_nearGap": 4.4516580202550635, "t35_eligible": 1603, "t35_shipAbsorbed": 1424.0, "t35_near": 1201, "t35_nearGap": 5.659392233139052, "t40_eligible": 1227, "t40_shipAbsorbed": 1152.5, "t40_near": 1178, "t40_nearGap": 7.038191991511037, "t50_eligible": 760, "t50_shipAbsorbed": 768.0, "t50_near": 843, "t50_nearGap": 8.727877176749704}, {"YearMonth": "2019-12", "totalOrders": 3532, "totalShippingRev": 2125.5, "t15_eligible": 2591, "t15_shipAbsorbed": 1697.0, "t15_near": 499, "t15_nearGap": 2.1646893807615233, "t20_eligible": 2041, "t20_shipAbsorbed": 1386.5, "t20_near": 673, "t20_nearGap": 2.9024666656760774, "t25_eligible": 1549, "t25_shipAbsorbed": 1046.5, "t25_near": 786, "t25_nearGap": 3.9126592798982194, "t30_eligible": 1174, "t30_shipAbsorbed": 838.0, "t30_near": 735, "t30_nearGap": 4.761932307482994, "t35_eligible": 929, "t35_shipAbsorbed": 692.5, "t35_near": 677, "t35_nearGap": 6.0129987858197955, "t40_eligible": 713, "t40_shipAbsorbed": 563.5, "t40_near": 603, "t40_nearGap": 6.533300334991709, "t50_eligible": 484, "t50_shipAbsorbed": 385.5, "t50_near": 445, "t50_nearGap": 9.018180211235956}, {"YearMonth": "2019-11", "totalOrders": 3980, "totalShippingRev": 3242.0, "t15_eligible": 2919, "t15_shipAbsorbed": 2612.5, "t15_near": 555, "t15_nearGap": 2.269891891891892, "t20_eligible": 2289, "t20_shipAbsorbed": 2149.5, "t20_near": 753, "t20_nearGap": 2.977012087649403, "t25_eligible": 1710, "t25_shipAbsorbed": 1632.0, "t25_near": 867, "t25_nearGap": 3.731661247981546, "t30_eligible": 1254, "t30_shipAbsorbed": 1213.0, "t30_near": 917, "t30_nearGap": 4.935376634678299, "t35_eligible": 977, "t35_shipAbsorbed": 983.5, "t35_near": 785, "t35_nearGap": 6.129388864968153, "t40_eligible": 742, "t40_shipAbsorbed": 779.5, "t40_near": 663, "t40_nearGap": 6.62393687933635, "t50_eligible": 462, "t50_shipAbsorbed": 510.0, "t50_near": 515, "t50_nearGap": 8.543612044660195}, {"YearMonth": "2019-10", "totalOrders": 4246, "totalShippingRev": 3509.5, "t15_eligible": 3323, "t15_shipAbsorbed": 2936.0, "t15_near": 513, "t15_nearGap": 2.1462573099415208, "t20_eligible": 2702, "t20_shipAbsorbed": 2472.5, "t20_near": 724, "t20_nearGap": 2.521823252762432, "t25_eligible": 2112, "t25_shipAbsorbed": 1946.5, "t25_near": 965, "t25_nearGap": 3.8135234352331615, "t30_eligible": 1595, "t30_shipAbsorbed": 1496.5, "t30_near": 968, "t30_nearGap": 4.535082816115703, "t35_eligible": 1244, "t35_shipAbsorbed": 1158.0, "t35_near": 913, "t35_nearGap": 5.752672602409639, "t40_eligible": 977, "t40_shipAbsorbed": 965.0, "t40_near": 821, "t40_nearGap": 6.756041540803897, "t50_eligible": 601, "t50_shipAbsorbed": 593.0, "t50_near": 643, "t50_nearGap": 8.224246175738726}, {"YearMonth": "2019-09", "totalOrders": 4261, "totalShippingRev": 3604.0, "t15_eligible": 3088, "t15_shipAbsorbed": 2845.0, "t15_near": 594, "t15_nearGap": 2.3105050505050504, "t20_eligible": 2364, "t20_shipAbsorbed": 2296.5, "t20_near": 829, "t20_nearGap": 2.8787334065138723, "t25_eligible": 1657, "t25_shipAbsorbed": 1756.0, "t25_near": 1065, "t25_nearGap": 3.6543565971830985, "t30_eligible": 1279, "t30_shipAbsorbed": 1370.0, "t30_near": 986, "t30_nearGap": 5.353093009127789, "t35_eligible": 1005, "t35_shipAbsorbed": 1142.5, "t35_near": 800, "t35_nearGap": 6.44093733125, "t40_eligible": 796, "t40_shipAbsorbed": 924.0, "t40_near": 609, "t40_nearGap": 6.661724221674878, "t50_eligible": 506, "t50_shipAbsorbed": 596.0, "t50_near": 499, "t50_nearGap": 8.473206346693386}, {"YearMonth": "2019-08", "totalOrders": 3115, "totalShippingRev": 2656.5, "t15_eligible": 2222, "t15_shipAbsorbed": 2124.5, "t15_near": 456, "t15_nearGap": 2.198815789473685, "t20_eligible": 1726, "t20_shipAbsorbed": 1710.0, "t20_near": 600, "t20_nearGap": 2.805400100000001, "t25_eligible": 1257, "t25_shipAbsorbed": 1305.0, "t25_near": 746, "t25_nearGap": 3.9311933538874, "t30_eligible": 845, "t30_shipAbsorbed": 902.0, "t30_near": 741, "t30_nearGap": 4.585452514170042, "t35_eligible": 664, "t35_shipAbsorbed": 743.0, "t35_near": 615, "t35_nearGap": 6.308975977235773, "t40_eligible": 536, "t40_shipAbsorbed": 631.5, "t40_near": 467, "t40_nearGap": 7.455139402569594, "t50_eligible": 346, "t50_shipAbsorbed": 406.5, "t50_near": 318, "t50_nearGap": 8.221887094339623}, {"YearMonth": "2019-07", "totalOrders": 5224, "totalShippingRev": 4215.5, "t15_eligible": 4330, "t15_shipAbsorbed": 3686.0, "t15_near": 532, "t15_nearGap": 2.146748120300752, "t20_eligible": 3732, "t20_shipAbsorbed": 3265.0, "t20_near": 711, "t20_nearGap": 2.455541541490859, "t25_eligible": 3016, "t25_shipAbsorbed": 2608.5, "t25_near": 1089, "t25_nearGap": 3.709513396694216, "t30_eligible": 2236, "t30_shipAbsorbed": 2046.5, "t30_near": 1302, "t30_nearGap": 4.237242877112136, "t35_eligible": 1783, "t35_shipAbsorbed": 1579.5, "t35_near": 1269, "t35_nearGap": 5.684941043341214, "t40_eligible": 1371, "t40_shipAbsorbed": 1261.0, "t40_near": 1219, "t40_nearGap": 6.77764574897457, "t50_eligible": 898, "t50_shipAbsorbed": 800.0, "t50_near": 885, "t50_nearGap": 8.636723651977402}, {"YearMonth": "2019-06", "totalOrders": 4176, "totalShippingRev": 3456.0, "t15_eligible": 3039, "t15_shipAbsorbed": 2797.5, "t15_near": 634, "t15_nearGap": 2.081561514195584, "t20_eligible": 2460, "t20_shipAbsorbed": 2359.5, "t20_near": 752, "t20_nearGap": 2.934680934840426, "t25_eligible": 1971, "t25_shipAbsorbed": 1932.0, "t25_near": 797, "t25_nearGap": 3.8830868331242168, "t30_eligible": 1402, "t30_shipAbsorbed": 1438.5, "t30_near": 922, "t30_nearGap": 4.31556446746204, "t35_eligible": 1132, "t35_shipAbsorbed": 1207.0, "t35_near": 883, "t35_nearGap": 6.291393390713478, "t40_eligible": 889, "t40_shipAbsorbed": 992.5, "t40_near": 728, "t40_nearGap": 6.990082706043957, "t50_eligible": 580, "t50_shipAbsorbed": 633.5, "t50_near": 552, "t50_nearGap": 8.516014835144928}, {"YearMonth": "2019-05", "totalOrders": 4390, "totalShippingRev": 3607.5, "t15_eligible": 3128, "t15_shipAbsorbed": 2940.5, "t15_near": 673, "t15_nearGap": 2.119509658246657, "t20_eligible": 2477, "t20_shipAbsorbed": 2427.0, "t20_near": 818, "t20_nearGap": 3.0220905293398537, "t25_eligible": 1856, "t25_shipAbsorbed": 1924.0, "t25_near": 970, "t25_nearGap": 3.8541445804123717, "t30_eligible": 1309, "t30_shipAbsorbed": 1383.0, "t30_near": 1022, "t30_nearGap": 4.796125649706459, "t35_eligible": 1046, "t35_shipAbsorbed": 1147.5, "t35_near": 841, "t35_nearGap": 6.338728078478003, "t40_eligible": 794, "t40_shipAbsorbed": 878.0, "t40_near": 687, "t40_nearGap": 6.59893770742358, "t50_eligible": 495, "t50_shipAbsorbed": 592.5, "t50_near": 551, "t50_nearGap": 8.451670190562615}, {"YearMonth": "2019-04", "totalOrders": 4152, "totalShippingRev": 3549.0, "t15_eligible": 3127, "t15_shipAbsorbed": 2867.5, "t15_near": 584, "t15_nearGap": 2.1547089041095897, "t20_eligible": 2638, "t20_shipAbsorbed": 2438.0, "t20_near": 617, "t20_nearGap": 2.886969278768234, "t25_eligible": 1938, "t25_shipAbsorbed": 1865.5, "t25_near": 981, "t25_nearGap": 3.4841390214067287, "t30_eligible": 1332, "t30_shipAbsorbed": 1342.0, "t30_near": 1189, "t30_nearGap": 4.731833934398655, "t35_eligible": 1023, "t35_shipAbsorbed": 1060.0, "t35_near": 953, "t35_nearGap": 6.022749539349424, "t40_eligible": 840, "t40_shipAbsorbed": 880.5, "t40_near": 734, "t40_nearGap": 7.464182901907357, "t50_eligible": 412, "t50_shipAbsorbed": 482.5, "t50_near": 611, "t50_nearGap": 7.787447309328971}, {"YearMonth": "2019-03", "totalOrders": 4520, "totalShippingRev": 3812.5, "t15_eligible": 3460, "t15_shipAbsorbed": 3171.5, "t15_near": 609, "t15_nearGap": 1.9567159277504107, "t20_eligible": 2780, "t20_shipAbsorbed": 2578.5, "t20_near": 842, "t20_nearGap": 2.7704870023752974, "t25_eligible": 2168, "t25_shipAbsorbed": 2033.0, "t25_near": 1006, "t25_nearGap": 3.9951890427435393, "t30_eligible": 1467, "t30_shipAbsorbed": 1438.5, "t30_near": 1126, "t30_nearGap": 4.211039410301955, "t35_eligible": 1154, "t35_shipAbsorbed": 1154.5, "t35_near": 1049, "t35_nearGap": 6.21866571115348, "t40_eligible": 842, "t40_shipAbsorbed": 860.0, "t40_near": 913, "t40_nearGap": 7.027754891566266, "t50_eligible": 510, "t50_shipAbsorbed": 571.5, "t50_near": 644, "t50_nearGap": 8.983804785714286}, {"YearMonth": "2019-02", "totalOrders": 4151, "totalShippingRev": 3651.5, "t15_eligible": 3002, "t15_shipAbsorbed": 3002.5, "t15_near": 645, "t15_nearGap": 2.155581395348838, "t20_eligible": 2323, "t20_shipAbsorbed": 2354.0, "t20_near": 823, "t20_nearGap": 3.027885828675578, "t25_eligible": 1742, "t25_shipAbsorbed": 1832.0, "t25_near": 911, "t25_nearGap": 3.8257851306256865, "t30_eligible": 1184, "t30_shipAbsorbed": 1208.0, "t30_near": 1005, "t30_nearGap": 4.666239257711443, "t35_eligible": 934, "t35_shipAbsorbed": 966.0, "t35_near": 839, "t35_nearGap": 6.358558159713946, "t40_eligible": 706, "t40_shipAbsorbed": 771.5, "t40_near": 661, "t40_nearGap": 6.7583663116490165, "t50_eligible": 446, "t50_shipAbsorbed": 496.5, "t50_near": 488, "t50_nearGap": 8.482910293032786}, {"YearMonth": "2019-01", "totalOrders": 7035, "totalShippingRev": 5383.0, "t15_eligible": 5101, "t15_shipAbsorbed": 4264.5, "t15_near": 921, "t15_nearGap": 2.3216178067318127, "t20_eligible": 4037, "t20_shipAbsorbed": 3418.5, "t20_near": 1225, "t20_nearGap": 2.9565388383673468, "t25_eligible": 3059, "t25_shipAbsorbed": 2702.0, "t25_near": 1523, "t25_nearGap": 3.9457193663821415, "t30_eligible": 2378, "t30_shipAbsorbed": 2017.5, "t30_near": 1492, "t30_nearGap": 5.113277974530832, "t35_eligible": 1795, "t35_shipAbsorbed": 1581.5, "t35_near": 1312, "t35_nearGap": 5.486593275914633, "t40_eligible": 1456, "t40_shipAbsorbed": 1275.0, "t40_near": 1185, "t40_nearGap": 6.983358880168777, "t50_eligible": 799, "t50_shipAbsorbed": 798.5, "t50_near": 996, "t50_nearGap": 7.511727335341365}, {"YearMonth": "2018-12", "totalOrders": 4513, "totalShippingRev": 2686.5, "t15_eligible": 3276, "t15_shipAbsorbed": 2230.0, "t15_near": 614, "t15_nearGap": 1.933061889250815, "t20_eligible": 2507, "t20_shipAbsorbed": 1784.0, "t20_near": 871, "t20_nearGap": 2.7807922870264066, "t25_eligible": 1799, "t25_shipAbsorbed": 1394.0, "t25_near": 1108, "t25_nearGap": 3.7722111805054155, "t30_eligible": 1375, "t30_shipAbsorbed": 1048.0, "t30_near": 932, "t30_nearGap": 4.723658863733905, "t35_eligible": 1082, "t35_shipAbsorbed": 840.0, "t35_near": 879, "t35_nearGap": 6.361137659840728, "t40_eligible": 871, "t40_shipAbsorbed": 690.5, "t40_near": 651, "t40_nearGap": 6.735376588325654, "t50_eligible": 439, "t50_shipAbsorbed": 452.5, "t50_near": 643, "t50_nearGap": 7.6972940886469665}, {"YearMonth": "2018-11", "totalOrders": 4899, "totalShippingRev": 3796.5, "t15_eligible": 3600, "t15_shipAbsorbed": 3050.0, "t15_near": 755, "t15_nearGap": 2.0518940397350995, "t20_eligible": 2748, "t20_shipAbsorbed": 2397.0, "t20_near": 980, "t20_nearGap": 2.9258878438775513, "t25_eligible": 1935, "t25_shipAbsorbed": 1737.5, "t25_near": 1196, "t25_nearGap": 3.6893226204013376, "t30_eligible": 1455, "t30_shipAbsorbed": 1259.5, "t30_near": 1022, "t30_nearGap": 4.729804272015656, "t35_eligible": 1186, "t35_shipAbsorbed": 1059.0, "t35_near": 939, "t35_nearGap": 6.739723097976571, "t40_eligible": 961, "t40_shipAbsorbed": 858.5, "t40_near": 636, "t40_nearGap": 6.619481418238994, "t50_eligible": 469, "t50_shipAbsorbed": 532.5, "t50_near": 717, "t50_nearGap": 7.565718352859136}, {"YearMonth": "2018-10", "totalOrders": 5285, "totalShippingRev": 4339.5, "t15_eligible": 3995, "t15_shipAbsorbed": 3543.0, "t15_near": 678, "t15_nearGap": 2.3529056047197647, "t20_eligible": 3071, "t20_shipAbsorbed": 2928.5, "t20_near": 994, "t20_nearGap": 2.1992557173038234, "t25_eligible": 2150, "t25_shipAbsorbed": 2216.5, "t25_near": 1531, "t25_nearGap": 3.817720727629001, "t30_eligible": 1576, "t30_shipAbsorbed": 1537.5, "t30_near": 1317, "t30_nearGap": 5.141959295368262, "t35_eligible": 1210, "t35_shipAbsorbed": 1233.0, "t35_near": 1034, "t35_nearGap": 6.264052406189556, "t40_eligible": 905, "t40_shipAbsorbed": 968.0, "t40_near": 816, "t40_nearGap": 6.311801752450981, "t50_eligible": 565, "t50_shipAbsorbed": 632.5, "t50_near": 645, "t50_nearGap": 8.615240736434108}, {"YearMonth": "2018-09", "totalOrders": 4320, "totalShippingRev": 3624.5, "t15_eligible": 3116, "t15_shipAbsorbed": 2947.0, "t15_near": 684, "t15_nearGap": 2.321915204678363, "t20_eligible": 2362, "t20_shipAbsorbed": 2395.0, "t20_near": 847, "t20_nearGap": 2.651535007083826, "t25_eligible": 1634, "t25_shipAbsorbed": 1778.5, "t25_near": 1151, "t25_nearGap": 3.839687629018246, "t30_eligible": 1179, "t30_shipAbsorbed": 1203.0, "t30_near": 1025, "t30_nearGap": 5.12033216682927, "t35_eligible": 948, "t35_shipAbsorbed": 982.5, "t35_near": 721, "t35_nearGap": 6.175256864077671, "t40_eligible": 760, "t40_shipAbsorbed": 804.5, "t40_near": 553, "t40_nearGap": 6.577106884267631, "t50_eligible": 378, "t50_shipAbsorbed": 476.0, "t50_near": 570, "t50_nearGap": 7.775596971929825}, {"YearMonth": "2018-08", "totalOrders": 5519, "totalShippingRev": 4147.5, "t15_eligible": 4099, "t15_shipAbsorbed": 3365.5, "t15_near": 886, "t15_nearGap": 2.145598194130926, "t20_eligible": 3066, "t20_shipAbsorbed": 2703.0, "t20_near": 1183, "t20_nearGap": 2.4514119340659346, "t25_eligible": 2148, "t25_shipAbsorbed": 1998.0, "t25_near": 1537, "t25_nearGap": 3.804652338972024, "t30_eligible": 1524, "t30_shipAbsorbed": 1295.0, "t30_near": 1369, "t30_nearGap": 5.040292640613588, "t35_eligible": 1263, "t35_shipAbsorbed": 1066.5, "t35_near": 951, "t35_nearGap": 6.524511369085174, "t40_eligible": 1062, "t40_shipAbsorbed": 866.5, "t40_near": 639, "t40_nearGap": 6.922300707355244, "t50_eligible": 498, "t50_shipAbsorbed": 516.5, "t50_near": 765, "t50_nearGap": 7.425621386928105}, {"YearMonth": "2018-07", "totalOrders": 4508, "totalShippingRev": 3848.0, "t15_eligible": 3332, "t15_shipAbsorbed": 3099.5, "t15_near": 646, "t15_nearGap": 2.3129721362229105, "t20_eligible": 2675, "t20_shipAbsorbed": 2563.5, "t20_near": 726, "t20_nearGap": 2.6099725647382925, "t25_eligible": 1740, "t25_shipAbsorbed": 1913.5, "t25_near": 1316, "t25_nearGap": 3.435805857902737, "t30_eligible": 1206, "t30_shipAbsorbed": 1247.0, "t30_near": 1296, "t30_nearGap": 5.28040169212963, "t35_eligible": 935, "t35_shipAbsorbed": 980.5, "t35_near": 858, "t35_nearGap": 6.44271591025641, "t40_eligible": 686, "t40_shipAbsorbed": 768.0, "t40_near": 651, "t40_nearGap": 6.390614692780338, "t50_eligible": 389, "t50_shipAbsorbed": 508.0, "t50_near": 546, "t50_nearGap": 8.53370028021978}, {"YearMonth": "2018-06", "totalOrders": 4800, "totalShippingRev": 3750.5, "t15_eligible": 3446, "t15_shipAbsorbed": 3018.5, "t15_near": 742, "t15_nearGap": 2.3606199460916444, "t20_eligible": 2473, "t20_shipAbsorbed": 2510.0, "t20_near": 1100, "t20_nearGap": 2.434409407272727, "t25_eligible": 1602, "t25_shipAbsorbed": 1603.5, "t25_near": 1478, "t25_nearGap": 3.9641817895805143, "t30_eligible": 1179, "t30_shipAbsorbed": 1210.0, "t30_near": 1130, "t30_nearGap": 5.55200925840708, "t35_eligible": 901, "t35_shipAbsorbed": 974.5, "t35_near": 757, "t35_nearGap": 6.077767797886393, "t40_eligible": 656, "t40_shipAbsorbed": 777.5, "t40_near": 656, "t40_nearGap": 6.2753358185975605, "t50_eligible": 352, "t50_shipAbsorbed": 451.0, "t50_near": 549, "t50_nearGap": 8.469836639344264}, {"YearMonth": "2018-05", "totalOrders": 4916, "totalShippingRev": 3829.0, "t15_eligible": 3542, "t15_shipAbsorbed": 2967.0, "t15_near": 794, "t15_nearGap": 2.2637027707808564, "t20_eligible": 2429, "t20_shipAbsorbed": 2452.5, "t20_near": 1285, "t20_nearGap": 2.4005139984435795, "t25_eligible": 1740, "t25_shipAbsorbed": 1481.0, "t25_near": 1359, "t25_nearGap": 4.206821659308315, "t30_eligible": 1368, "t30_shipAbsorbed": 1176.5, "t30_near": 932, "t30_nearGap": 5.3553222993562235, "t35_eligible": 1043, "t35_shipAbsorbed": 923.5, "t35_near": 755, "t35_nearGap": 5.573311652980132, "t40_eligible": 803, "t40_shipAbsorbed": 730.5, "t40_near": 721, "t40_nearGap": 6.580069776699029, "t50_eligible": 396, "t50_shipAbsorbed": 433.5, "t50_near": 647, "t50_nearGap": 8.144992585780525}, {"YearMonth": "2018-04", "totalOrders": 5173, "totalShippingRev": 4141.0, "t15_eligible": 3661, "t15_shipAbsorbed": 3255.5, "t15_near": 861, "t15_nearGap": 2.1761672485481998, "t20_eligible": 2595, "t20_shipAbsorbed": 2633.0, "t20_near": 1259, "t20_nearGap": 2.6121845663224783, "t25_eligible": 1829, "t25_shipAbsorbed": 1737.0, "t25_near": 1368, "t25_nearGap": 3.9432606366959067, "t30_eligible": 1405, "t30_shipAbsorbed": 1391.5, "t30_near": 1071, "t30_nearGap": 5.278553131652662, "t35_eligible": 1053, "t35_shipAbsorbed": 1073.5, "t35_near": 878, "t35_nearGap": 5.8324263097949895, "t40_eligible": 829, "t40_shipAbsorbed": 819.5, "t40_near": 731, "t40_nearGap": 6.683023608755131, "t50_eligible": 394, "t50_shipAbsorbed": 460.0, "t50_near": 659, "t50_nearGap": 7.685569391502276}, {"YearMonth": "2018-03", "totalOrders": 5670, "totalShippingRev": 4535.5, "t15_eligible": 3931, "t15_shipAbsorbed": 3563.0, "t15_near": 888, "t15_nearGap": 2.3095270270270274, "t20_eligible": 2889, "t20_shipAbsorbed": 2706.0, "t20_near": 1202, "t20_nearGap": 2.974750633111481, "t25_eligible": 1796, "t25_shipAbsorbed": 1677.0, "t25_near": 1621, "t25_nearGap": 3.626231177668106, "t30_eligible": 1321, "t30_shipAbsorbed": 1283.0, "t30_near": 1401, "t30_nearGap": 5.394739838686652, "t35_eligible": 998, "t35_shipAbsorbed": 959.5, "t35_near": 1010, "t35_nearGap": 6.516574468316832, "t40_eligible": 700, "t40_shipAbsorbed": 735.0, "t40_near": 803, "t40_nearGap": 6.599813315068493, "t50_eligible": 394, "t50_shipAbsorbed": 430.0, "t50_near": 604, "t50_nearGap": 9.101440594370862}, {"YearMonth": "2018-02", "totalOrders": 4698, "totalShippingRev": 3906.5, "t15_eligible": 3280, "t15_shipAbsorbed": 3085.0, "t15_near": 672, "t15_nearGap": 2.318377976190476, "t20_eligible": 2602, "t20_shipAbsorbed": 2424.5, "t20_near": 778, "t20_nearGap": 3.1907327030848323, "t25_eligible": 1536, "t25_shipAbsorbed": 1521.0, "t25_near": 1337, "t25_nearGap": 3.036604779356769, "t30_eligible": 1131, "t30_shipAbsorbed": 1204.0, "t30_near": 1331, "t30_nearGap": 5.546040987227649, "t35_eligible": 835, "t35_shipAbsorbed": 905.5, "t35_near": 918, "t35_nearGap": 6.6395317886710234, "t40_eligible": 615, "t40_shipAbsorbed": 743.5, "t40_near": 663, "t40_nearGap": 6.64960785218703, "t50_eligible": 328, "t50_shipAbsorbed": 429.0, "t50_near": 507, "t50_nearGap": 8.236824641025642}, {"YearMonth": "2018-01", "totalOrders": 8212, "totalShippingRev": 5479.5, "t15_eligible": 5891, "t15_shipAbsorbed": 4527.5, "t15_near": 1250, "t15_nearGap": 2.1939120007999997, "t20_eligible": 4341, "t20_shipAbsorbed": 3549.5, "t20_near": 1752, "t20_nearGap": 2.727157819063927, "t25_eligible": 2905, "t25_shipAbsorbed": 2196.0, "t25_near": 2305, "t25_nearGap": 3.7545514663774413, "t30_eligible": 2158, "t30_shipAbsorbed": 1667.5, "t30_near": 2000, "t30_nearGap": 5.337820356, "t35_eligible": 1716, "t35_shipAbsorbed": 1257.5, "t35_near": 1444, "t35_nearGap": 6.56828269598338, "t40_eligible": 1313, "t40_shipAbsorbed": 1011.0, "t40_near": 1135, "t40_nearGap": 6.667568373568281, "t50_eligible": 681, "t50_shipAbsorbed": 591.5, "t50_near": 1035, "t50_nearGap": 8.300985603864733}, {"YearMonth": "2017-12", "totalOrders": 3748, "totalShippingRev": 2239.5, "t15_eligible": 2517, "t15_shipAbsorbed": 1780.0, "t15_near": 643, "t15_nearGap": 2.509751166407465, "t20_eligible": 1859, "t20_shipAbsorbed": 1414.0, "t20_near": 732, "t20_nearGap": 2.59135268579235, "t25_eligible": 1222, "t25_shipAbsorbed": 935.0, "t25_near": 1018, "t25_nearGap": 3.7533011041257374, "t30_eligible": 927, "t30_shipAbsorbed": 723.0, "t30_near": 844, "t30_nearGap": 5.468626081753555, "t35_eligible": 742, "t35_shipAbsorbed": 561.5, "t35_near": 574, "t35_nearGap": 6.407090888501743, "t40_eligible": 575, "t40_shipAbsorbed": 467.5, "t40_near": 463, "t40_nearGap": 6.602743274298056, "t50_eligible": 321, "t50_shipAbsorbed": 275.0, "t50_near": 421, "t50_nearGap": 8.342637066508313}, {"YearMonth": "2017-11", "totalOrders": 5167, "totalShippingRev": 4013.5, "t15_eligible": 3665, "t15_shipAbsorbed": 3250.5, "t15_near": 819, "t15_nearGap": 2.4090109914529916, "t20_eligible": 2927, "t20_shipAbsorbed": 2587.5, "t20_near": 870, "t20_nearGap": 2.9138392229885057, "t25_eligible": 1866, "t25_shipAbsorbed": 1725.0, "t25_near": 1467, "t25_nearGap": 3.4695301301976826, "t30_eligible": 1449, "t30_shipAbsorbed": 1330.0, "t30_near": 1255, "t30_nearGap": 5.4207733585657385, "t35_eligible": 1193, "t35_shipAbsorbed": 1066.5, "t35_near": 851, "t35_nearGap": 6.608707733254995, "t40_eligible": 999, "t40_shipAbsorbed": 881.0, "t40_near": 608, "t40_nearGap": 6.864178004934211, "t50_eligible": 464, "t50_shipAbsorbed": 501.0, "t50_near": 729, "t50_nearGap": 7.285665750342936}, {"YearMonth": "2017-10", "totalOrders": 5072, "totalShippingRev": 3906.0, "t15_eligible": 3473, "t15_shipAbsorbed": 3213.5, "t15_near": 847, "t15_nearGap": 2.343872491145219, "t20_eligible": 2669, "t20_shipAbsorbed": 2531.0, "t20_near": 933, "t20_nearGap": 2.985937896034298, "t25_eligible": 1645, "t25_shipAbsorbed": 1575.0, "t25_near": 1411, "t25_nearGap": 3.3849827264351533, "t30_eligible": 1290, "t30_shipAbsorbed": 1227.0, "t30_near": 1179, "t30_nearGap": 5.512316027989822, "t35_eligible": 1026, "t35_shipAbsorbed": 941.5, "t35_near": 808, "t35_nearGap": 6.500582134900991, "t40_eligible": 835, "t40_shipAbsorbed": 781.0, "t40_near": 604, "t40_nearGap": 6.827649374172186, "t50_eligible": 396, "t50_shipAbsorbed": 455.0, "t50_near": 630, "t50_nearGap": 7.546190977777779}, {"YearMonth": "2017-09", "totalOrders": 3928, "totalShippingRev": 3290.5, "t15_eligible": 2739, "t15_shipAbsorbed": 2647.5, "t15_near": 656, "t15_nearGap": 2.3162652439024396, "t20_eligible": 2044, "t20_shipAbsorbed": 2010.5, "t20_near": 757, "t20_nearGap": 2.9061955719947155, "t25_eligible": 1258, "t25_shipAbsorbed": 1198.5, "t25_near": 1102, "t25_nearGap": 3.2773507196007268, "t30_eligible": 968, "t30_shipAbsorbed": 974.0, "t30_near": 981, "t30_nearGap": 5.474210510703365, "t35_eligible": 722, "t35_shipAbsorbed": 704.5, "t35_near": 715, "t35_nearGap": 6.425413015384617, "t40_eligible": 561, "t40_shipAbsorbed": 568.0, "t40_near": 530, "t40_nearGap": 6.889811679245283, "t50_eligible": 319, "t50_shipAbsorbed": 358.0, "t50_near": 403, "t50_nearGap": 8.39156376426799}, {"YearMonth": "2017-08", "totalOrders": 3939, "totalShippingRev": 3264.5, "t15_eligible": 2656, "t15_shipAbsorbed": 2588.5, "t15_near": 699, "t15_nearGap": 2.3156652360515024, "t20_eligible": 1924, "t20_shipAbsorbed": 1952.5, "t20_near": 819, "t20_nearGap": 2.69644695970696, "t25_eligible": 1218, "t25_shipAbsorbed": 1234.5, "t25_near": 1114, "t25_nearGap": 3.6635551328545786, "t30_eligible": 921, "t30_shipAbsorbed": 963.0, "t30_near": 891, "t30_nearGap": 5.3719308945005615, "t35_eligible": 687, "t35_shipAbsorbed": 727.0, "t35_near": 673, "t35_nearGap": 6.382110381872215, "t40_eligible": 548, "t40_shipAbsorbed": 597.5, "t40_near": 491, "t40_nearGap": 6.977739723014258, "t50_eligible": 321, "t50_shipAbsorbed": 365.0, "t50_near": 366, "t50_nearGap": 8.00975467486339}, {"YearMonth": "2017-07", "totalOrders": 5133, "totalShippingRev": 3816.5, "t15_eligible": 3818, "t15_shipAbsorbed": 3098.0, "t15_near": 684, "t15_nearGap": 2.321213450292398, "t20_eligible": 3165, "t20_shipAbsorbed": 2504.0, "t20_near": 728, "t20_nearGap": 2.9391072266483516, "t25_eligible": 2070, "t25_shipAbsorbed": 1706.0, "t25_near": 1405, "t25_nearGap": 3.086555573665481, "t30_eligible": 1562, "t30_shipAbsorbed": 1314.0, "t30_near": 1465, "t30_nearGap": 5.412089178839591, "t35_eligible": 1226, "t35_shipAbsorbed": 1051.5, "t35_near": 1044, "t35_nearGap": 6.538113426245211, "t40_eligible": 988, "t40_shipAbsorbed": 860.0, "t40_near": 756, "t40_nearGap": 6.797553367724867, "t50_eligible": 497, "t50_shipAbsorbed": 504.0, "t50_near": 729, "t50_nearGap": 7.65282636899863}, {"YearMonth": "2017-06", "totalOrders": 3300, "totalShippingRev": 2684.0, "t15_eligible": 2261, "t15_shipAbsorbed": 2169.5, "t15_near": 565, "t15_nearGap": 2.372212389380531, "t20_eligible": 1643, "t20_shipAbsorbed": 1645.0, "t20_near": 675, "t20_nearGap": 2.7402074755555557, "t25_eligible": 968, "t25_shipAbsorbed": 1008.0, "t25_near": 1000, "t25_nearGap": 3.4526603920000007, "t30_eligible": 737, "t30_shipAbsorbed": 771.5, "t30_near": 816, "t30_nearGap": 5.586605855392158, "t35_eligible": 570, "t35_shipAbsorbed": 562.0, "t35_near": 533, "t35_nearGap": 6.654278054409007, "t40_eligible": 420, "t40_shipAbsorbed": 445.5, "t40_near": 397, "t40_nearGap": 6.334685493702771, "t50_eligible": 247, "t50_shipAbsorbed": 296.5, "t50_near": 323, "t50_nearGap": 8.526563981424149}, {"YearMonth": "2017-05", "totalOrders": 4026, "totalShippingRev": 3362.5, "t15_eligible": 2758, "t15_shipAbsorbed": 2744.5, "t15_near": 726, "t15_nearGap": 2.3180440771349864, "t20_eligible": 1949, "t20_shipAbsorbed": 2206.0, "t20_near": 910, "t20_nearGap": 2.7461430263736264, "t25_eligible": 1304, "t25_shipAbsorbed": 1438.5, "t25_near": 1083, "t25_nearGap": 3.9144601449676824, "t30_eligible": 1010, "t30_shipAbsorbed": 1147.0, "t30_near": 842, "t30_nearGap": 5.439905319477436, "t35_eligible": 730, "t35_shipAbsorbed": 869.0, "t35_near": 667, "t35_nearGap": 5.813553602698651, "t40_eligible": 550, "t40_shipAbsorbed": 707.5, "t40_near": 571, "t40_nearGap": 6.659755217162873, "t50_eligible": 315, "t50_shipAbsorbed": 442.5, "t50_near": 415, "t50_nearGap": 8.387108874698797}, {"YearMonth": "2017-04", "totalOrders": 3328, "totalShippingRev": 2619.5, "t15_eligible": 2310, "t15_shipAbsorbed": 2077.0, "t15_near": 525, "t15_nearGap": 2.2416000000000005, "t20_eligible": 1688, "t20_shipAbsorbed": 1627.0, "t20_near": 712, "t20_nearGap": 2.6908146629213485, "t25_eligible": 1085, "t25_shipAbsorbed": 1060.5, "t25_near": 946, "t25_nearGap": 3.7350317473572945, "t30_eligible": 781, "t30_shipAbsorbed": 815.5, "t30_near": 810, "t30_nearGap": 5.403580320987654, "t35_eligible": 574, "t35_shipAbsorbed": 616.0, "t35_near": 549, "t35_nearGap": 5.907723393442623, "t40_eligible": 421, "t40_shipAbsorbed": 488.5, "t40_near": 478, "t40_nearGap": 6.7572596589958165, "t50_eligible": 241, "t50_shipAbsorbed": 294.0, "t50_near": 333, "t50_nearGap": 8.66762766966967}, {"YearMonth": "2017-03", "totalOrders": 4026, "totalShippingRev": 3312.5, "t15_eligible": 2689, "t15_shipAbsorbed": 2496.5, "t15_near": 681, "t15_nearGap": 2.405756242290749, "t20_eligible": 1779, "t20_shipAbsorbed": 1941.5, "t20_near": 1039, "t20_nearGap": 2.69495681520693, "t25_eligible": 1254, "t25_shipAbsorbed": 1218.0, "t25_near": 1057, "t25_nearGap": 4.388041808893093, "t30_eligible": 939, "t30_shipAbsorbed": 967.5, "t30_near": 730, "t30_nearGap": 5.11643845890411, "t35_eligible": 690, "t35_shipAbsorbed": 685.5, "t35_near": 612, "t35_nearGap": 5.677696200980392, "t40_eligible": 475, "t40_shipAbsorbed": 516.0, "t40_near": 594, "t40_nearGap": 6.467761102693603, "t50_eligible": 302, "t50_shipAbsorbed": 332.0, "t50_near": 388, "t50_nearGap": 9.451211404639176}, {"YearMonth": "2017-02", "totalOrders": 3453, "totalShippingRev": 2634.5, "t15_eligible": 2241, "t15_shipAbsorbed": 1980.5, "t15_near": 571, "t15_nearGap": 2.7279859894921192, "t20_eligible": 1537, "t20_shipAbsorbed": 1590.0, "t20_near": 749, "t20_nearGap": 2.4318958718291053, "t25_eligible": 1027, "t25_shipAbsorbed": 1068.5, "t25_near": 944, "t25_nearGap": 4.202033923728814, "t30_eligible": 717, "t30_shipAbsorbed": 795.0, "t30_near": 728, "t30_nearGap": 5.194890247252748, "t35_eligible": 511, "t35_shipAbsorbed": 614.0, "t35_near": 559, "t35_nearGap": 5.824007361359571, "t40_eligible": 362, "t40_shipAbsorbed": 463.5, "t40_near": 458, "t40_nearGap": 6.5220089694323145, "t50_eligible": 202, "t50_shipAbsorbed": 258.0, "t50_near": 309, "t50_nearGap": 8.933398242718447}, {"YearMonth": "2017-01", "totalOrders": 5120, "totalShippingRev": 4273.5, "t15_eligible": 3353, "t15_shipAbsorbed": 3343.5, "t15_near": 899, "t15_nearGap": 2.3785317018909904, "t20_eligible": 2324, "t20_shipAbsorbed": 2732.0, "t20_near": 1203, "t20_nearGap": 2.881662625103907, "t25_eligible": 1682, "t25_shipAbsorbed": 1933.0, "t25_near": 1166, "t25_nearGap": 4.235077370497427, "t30_eligible": 1222, "t30_shipAbsorbed": 1511.0, "t30_near": 996, "t30_nearGap": 5.2012953353413645, "t35_eligible": 908, "t35_shipAbsorbed": 1222.5, "t35_near": 807, "t35_nearGap": 5.762503354399008, "t40_eligible": 679, "t40_shipAbsorbed": 991.0, "t40_near": 702, "t40_nearGap": 6.649644119658118, "t50_eligible": 412, "t50_shipAbsorbed": 595.5, "t50_near": 496, "t50_nearGap": 8.749355002016127}, {"YearMonth": "2016-12", "totalOrders": 2570, "totalShippingRev": 2018.2, "t15_eligible": 1804, "t15_shipAbsorbed": 1711.2, "t15_near": 433, "t15_nearGap": 2.6093473441108546, "t20_eligible": 1317, "t20_shipAbsorbed": 1531.2, "t20_near": 536, "t20_nearGap": 2.407858360074627, "t25_eligible": 950, "t25_shipAbsorbed": 1151.2, "t25_near": 670, "t25_nearGap": 4.11463872238806, "t30_eligible": 713, "t30_shipAbsorbed": 943.7, "t30_near": 539, "t30_nearGap": 5.203443246753247, "t35_eligible": 511, "t35_shipAbsorbed": 706.2, "t35_near": 462, "t35_nearGap": 5.571790543290043, "t40_eligible": 389, "t40_shipAbsorbed": 607.2, "t40_near": 398, "t40_nearGap": 6.539318133165828, "t50_eligible": 236, "t50_shipAbsorbed": 422.2, "t50_near": 275, "t50_nearGap": 8.368005643636364}, {"YearMonth": "2016-11", "totalOrders": 3392, "totalShippingRev": 2979.5, "t15_eligible": 2408, "t15_shipAbsorbed": 2482.0, "t15_near": 492, "t15_nearGap": 2.6633504268292683, "t20_eligible": 1669, "t20_shipAbsorbed": 2092.0, "t20_near": 807, "t20_nearGap": 2.695801436183395, "t25_eligible": 1254, "t25_shipAbsorbed": 1593.0, "t25_near": 817, "t25_nearGap": 4.470253510403917, "t30_eligible": 953, "t30_shipAbsorbed": 1277.0, "t30_near": 628, "t30_nearGap": 5.007442165605095, "t35_eligible": 722, "t35_shipAbsorbed": 1029.0, "t35_near": 568, "t35_nearGap": 5.589102661971831, "t40_eligible": 535, "t40_shipAbsorbed": 813.0, "t40_near": 543, "t40_nearGap": 6.558650154696133, "t50_eligible": 336, "t50_shipAbsorbed": 560.0, "t50_near": 386, "t50_nearGap": 8.988847707253887}, {"YearMonth": "2016-10", "totalOrders": 2995, "totalShippingRev": 2826.0, "t15_eligible": 2041, "t15_shipAbsorbed": 2314.5, "t15_near": 480, "t15_nearGap": 2.5871137500000003, "t20_eligible": 1414, "t20_shipAbsorbed": 2020.5, "t20_near": 708, "t20_nearGap": 2.647187118644068, "t25_eligible": 1057, "t25_shipAbsorbed": 1511.0, "t25_near": 733, "t25_nearGap": 4.576413626193725, "t30_eligible": 803, "t30_shipAbsorbed": 1239.0, "t30_near": 533, "t30_nearGap": 5.154095994371483, "t35_eligible": 603, "t35_shipAbsorbed": 974.5, "t35_near": 483, "t35_nearGap": 5.691140258799172, "t40_eligible": 425, "t40_shipAbsorbed": 726.0, "t40_near": 457, "t40_nearGap": 6.185376422319474, "t50_eligible": 264, "t50_shipAbsorbed": 474.5, "t50_near": 339, "t50_nearGap": 9.156098005899704}, {"YearMonth": "2016-09", "totalOrders": 2857, "totalShippingRev": 2638.0, "t15_eligible": 1934, "t15_shipAbsorbed": 2093.0, "t15_near": 476, "t15_nearGap": 2.6662339075630253, "t20_eligible": 1305, "t20_shipAbsorbed": 1695.0, "t20_near": 720, "t20_nearGap": 2.7744267319444447, "t25_eligible": 982, "t25_shipAbsorbed": 1256.0, "t25_near": 689, "t25_nearGap": 4.626055846153846, "t30_eligible": 737, "t30_shipAbsorbed": 1016.0, "t30_near": 497, "t30_nearGap": 5.044416072434608, "t35_eligible": 530, "t35_shipAbsorbed": 840.5, "t35_near": 472, "t35_nearGap": 5.454075266949153, "t40_eligible": 360, "t40_shipAbsorbed": 634.5, "t40_near": 460, "t40_nearGap": 6.194324013043479, "t50_eligible": 221, "t50_shipAbsorbed": 395.0, "t50_near": 309, "t50_nearGap": 9.237108271844662}, {"YearMonth": "2016-08", "totalOrders": 3276, "totalShippingRev": 3156.5, "t15_eligible": 2372, "t15_shipAbsorbed": 2670.0, "t15_near": 452, "t15_nearGap": 2.551020707964602, "t20_eligible": 1704, "t20_shipAbsorbed": 2319.0, "t20_near": 758, "t20_nearGap": 2.7209760963060687, "t25_eligible": 1340, "t25_shipAbsorbed": 1834.5, "t25_near": 751, "t25_nearGap": 4.4763231677762985, "t30_eligible": 997, "t30_shipAbsorbed": 1482.0, "t30_near": 612, "t30_nearGap": 4.612647570261438, "t35_eligible": 753, "t35_shipAbsorbed": 1191.5, "t35_near": 621, "t35_nearGap": 5.8027836215781, "t40_eligible": 561, "t40_shipAbsorbed": 957.5, "t40_near": 540, "t40_nearGap": 6.4074787055555555, "t50_eligible": 352, "t50_shipAbsorbed": 649.5, "t50_near": 401, "t50_nearGap": 8.829485860349125}, {"YearMonth": "2016-07", "totalOrders": 2493, "totalShippingRev": 2344.4, "t15_eligible": 1722, "t15_shipAbsorbed": 1927.9, "t15_near": 390, "t15_nearGap": 2.589803256410257, "t20_eligible": 1221, "t20_shipAbsorbed": 1703.9, "t20_near": 550, "t20_nearGap": 2.544834652727273, "t25_eligible": 899, "t25_shipAbsorbed": 1281.4, "t25_near": 611, "t25_nearGap": 4.182559715220949, "t30_eligible": 658, "t30_shipAbsorbed": 1042.4, "t30_near": 483, "t30_nearGap": 4.7642237018633535, "t35_eligible": 485, "t35_shipAbsorbed": 869.4, "t35_near": 452, "t35_nearGap": 5.867237376106195, "t40_eligible": 366, "t40_shipAbsorbed": 738.9, "t40_near": 360, "t40_nearGap": 6.450217033333332, "t50_eligible": 206, "t50_shipAbsorbed": 494.9, "t50_near": 279, "t50_nearGap": 8.410491917562725}, {"YearMonth": "2016-06", "totalOrders": 2749, "totalShippingRev": 2543.5, "t15_eligible": 1874, "t15_shipAbsorbed": 2026.0, "t15_near": 464, "t15_nearGap": 2.5172978556034487, "t20_eligible": 1357, "t20_shipAbsorbed": 1711.5, "t20_near": 581, "t20_nearGap": 2.6903404440619623, "t25_eligible": 995, "t25_shipAbsorbed": 1334.5, "t25_near": 658, "t25_nearGap": 4.235969197568389, "t30_eligible": 717, "t30_shipAbsorbed": 1014.5, "t30_near": 541, "t30_nearGap": 4.696499828096118, "t35_eligible": 541, "t35_shipAbsorbed": 815.5, "t35_near": 494, "t35_nearGap": 5.957624886639676, "t40_eligible": 411, "t40_shipAbsorbed": 623.0, "t40_near": 410, "t40_nearGap": 6.785989146341463, "t50_eligible": 261, "t50_shipAbsorbed": 414.0, "t50_near": 280, "t50_nearGap": 8.644648589285715}, {"YearMonth": "2016-05", "totalOrders": 2590, "totalShippingRev": 2383.0, "t15_eligible": 1793, "t15_shipAbsorbed": 1982.5, "t15_near": 426, "t15_nearGap": 2.45961426056338, "t20_eligible": 1281, "t20_shipAbsorbed": 1666.5, "t20_near": 578, "t20_nearGap": 2.4578830657439448, "t25_eligible": 911, "t25_shipAbsorbed": 1273.5, "t25_near": 677, "t25_nearGap": 4.069437816838995, "t30_eligible": 696, "t30_shipAbsorbed": 1018.0, "t30_near": 509, "t30_nearGap": 5.153027455795678, "t35_eligible": 546, "t35_shipAbsorbed": 839.5, "t35_near": 400, "t35_nearGap": 5.757435907500001, "t40_eligible": 396, "t40_shipAbsorbed": 690.0, "t40_near": 378, "t40_nearGap": 5.951988177248677, "t50_eligible": 232, "t50_shipAbsorbed": 425.0, "t50_near": 314, "t50_nearGap": 8.598866872611465}, {"YearMonth": "2016-04", "totalOrders": 2929, "totalShippingRev": 2753.5, "t15_eligible": 1974, "t15_shipAbsorbed": 2265.0, "t15_near": 500, "t15_nearGap": 2.429814, "t20_eligible": 1415, "t20_shipAbsorbed": 1942.5, "t20_near": 644, "t20_nearGap": 2.4529000170807453, "t25_eligible": 984, "t25_shipAbsorbed": 1453.0, "t25_near": 781, "t25_nearGap": 3.9055730000000004, "t30_eligible": 746, "t30_shipAbsorbed": 1158.0, "t30_near": 611, "t30_nearGap": 5.193676414075286, "t35_eligible": 589, "t35_shipAbsorbed": 940.5, "t35_near": 433, "t35_nearGap": 5.8640118221709, "t40_eligible": 455, "t40_shipAbsorbed": 771.5, "t40_near": 388, "t40_nearGap": 6.578869907216494, "t50_eligible": 281, "t50_shipAbsorbed": 506.0, "t50_near": 308, "t50_nearGap": 8.578180717532467}, {"YearMonth": "2016-03", "totalOrders": 3161, "totalShippingRev": 3025.0, "t15_eligible": 2257, "t15_shipAbsorbed": 2601.0, "t15_near": 480, "t15_nearGap": 2.4373472916666667, "t20_eligible": 1660, "t20_shipAbsorbed": 2232.0, "t20_near": 671, "t20_nearGap": 2.6460886393442626, "t25_eligible": 1186, "t25_shipAbsorbed": 1664.0, "t25_near": 830, "t25_nearGap": 4.119134749397591, "t30_eligible": 898, "t30_shipAbsorbed": 1326.0, "t30_near": 665, "t30_nearGap": 5.018280696240601, "t35_eligible": 688, "t35_shipAbsorbed": 1091.5, "t35_near": 548, "t35_nearGap": 5.798153540145986, "t40_eligible": 525, "t40_shipAbsorbed": 913.5, "t40_near": 489, "t40_nearGap": 6.642403104294479, "t50_eligible": 329, "t50_shipAbsorbed": 578.5, "t50_near": 359, "t50_nearGap": 8.522554456824512}, {"YearMonth": "2016-02", "totalOrders": 2179, "totalShippingRev": 1974.0, "t15_eligible": 1424, "t15_shipAbsorbed": 1647.5, "t15_near": 417, "t15_nearGap": 2.4928647961630697, "t20_eligible": 1082, "t20_shipAbsorbed": 1394.5, "t20_near": 373, "t20_nearGap": 2.538070380697051, "t25_eligible": 720, "t25_shipAbsorbed": 1032.0, "t25_near": 545, "t25_nearGap": 3.541773513761468, "t30_eligible": 550, "t30_shipAbsorbed": 849.0, "t30_near": 463, "t30_nearGap": 5.159138626349892, "t35_eligible": 428, "t35_shipAbsorbed": 672.0, "t35_near": 348, "t35_nearGap": 6.008931497126437, "t40_eligible": 309, "t40_shipAbsorbed": 543.0, "t40_near": 316, "t40_nearGap": 6.313005974683544, "t50_eligible": 192, "t50_shipAbsorbed": 369.0, "t50_near": 236, "t50_nearGap": 8.952024101694914}, {"YearMonth": "2016-01", "totalOrders": 4531, "totalShippingRev": 3990.0, "t15_eligible": 3016, "t15_shipAbsorbed": 3311.0, "t15_near": 769, "t15_nearGap": 2.4530480728218462, "t20_eligible": 2100, "t20_shipAbsorbed": 2754.0, "t20_near": 1045, "t20_nearGap": 2.8320432019138755, "t25_eligible": 1559, "t25_shipAbsorbed": 2025.5, "t25_near": 1019, "t25_nearGap": 4.272763713444553, "t30_eligible": 1211, "t30_shipAbsorbed": 1629.0, "t30_near": 814, "t30_nearGap": 5.158177259213759, "t35_eligible": 926, "t35_shipAbsorbed": 1339.0, "t35_near": 669, "t35_nearGap": 5.498059684603886, "t40_eligible": 687, "t40_shipAbsorbed": 1057.0, "t40_near": 666, "t40_nearGap": 6.514001732732733, "t50_eligible": 443, "t50_shipAbsorbed": 758.0, "t50_near": 483, "t50_nearGap": 9.030315186335402}, {"YearMonth": "2015-12", "totalOrders": 2624, "totalShippingRev": 1944.0, "t15_eligible": 1799, "t15_shipAbsorbed": 1664.0, "t15_near": 427, "t15_nearGap": 2.5143101639344265, "t20_eligible": 1268, "t20_shipAbsorbed": 1453.5, "t20_near": 591, "t20_nearGap": 2.692631257191201, "t25_eligible": 921, "t25_shipAbsorbed": 1099.0, "t25_near": 635, "t25_nearGap": 4.124809581102363, "t30_eligible": 694, "t30_shipAbsorbed": 890.5, "t30_near": 508, "t30_nearGap": 4.967337539370079, "t35_eligible": 533, "t35_shipAbsorbed": 738.5, "t35_near": 426, "t35_nearGap": 5.749639223004694, "t40_eligible": 383, "t40_shipAbsorbed": 576.0, "t40_near": 402, "t40_nearGap": 6.326523592039801, "t50_eligible": 239, "t50_shipAbsorbed": 388.5, "t50_near": 294, "t50_nearGap": 9.079614115646258}, {"YearMonth": "2015-11", "totalOrders": 2746, "totalShippingRev": 2475.0, "t15_eligible": 1888, "t15_shipAbsorbed": 2076.5, "t15_near": 433, "t15_nearGap": 2.381315173210162, "t20_eligible": 1412, "t20_shipAbsorbed": 1813.5, "t20_near": 546, "t20_nearGap": 2.744456238095238, "t25_eligible": 1003, "t25_shipAbsorbed": 1349.0, "t25_near": 684, "t25_nearGap": 3.9301179385964913, "t30_eligible": 775, "t30_shipAbsorbed": 1058.5, "t30_near": 557, "t30_nearGap": 5.127434307001796, "t35_eligible": 602, "t35_shipAbsorbed": 876.5, "t35_near": 457, "t35_nearGap": 5.925277391684902, "t40_eligible": 455, "t40_shipAbsorbed": 747.0, "t40_near": 409, "t40_nearGap": 6.380307948655257, "t50_eligible": 261, "t50_shipAbsorbed": 469.0, "t50_near": 341, "t50_nearGap": 8.553902956011731}, {"YearMonth": "2015-10", "totalOrders": 2508, "totalShippingRev": 2311.5, "t15_eligible": 1711, "t15_shipAbsorbed": 1950.0, "t15_near": 386, "t15_nearGap": 2.3920064766839375, "t20_eligible": 1229, "t20_shipAbsorbed": 1605.0, "t20_near": 554, "t20_nearGap": 2.631379628158845, "t25_eligible": 904, "t25_shipAbsorbed": 1177.0, "t25_near": 599, "t25_nearGap": 4.126214322203674, "t30_eligible": 675, "t30_shipAbsorbed": 974.0, "t30_near": 477, "t30_nearGap": 4.749504377358491, "t35_eligible": 511, "t35_shipAbsorbed": 788.5, "t35_near": 434, "t35_nearGap": 5.803174741935484, "t40_eligible": 380, "t40_shipAbsorbed": 647.0, "t40_near": 385, "t40_nearGap": 6.610665264935065, "t50_eligible": 232, "t50_shipAbsorbed": 420.5, "t50_near": 279, "t50_nearGap": 8.781841107526882}, {"YearMonth": "2015-09", "totalOrders": 3155, "totalShippingRev": 3210.5, "t15_eligible": 2168, "t15_shipAbsorbed": 2698.5, "t15_near": 500, "t15_nearGap": 2.3850373439999997, "t20_eligible": 1567, "t20_shipAbsorbed": 2220.5, "t20_near": 685, "t20_nearGap": 2.6913879430656937, "t25_eligible": 1151, "t25_shipAbsorbed": 1681.5, "t25_near": 755, "t25_nearGap": 4.087816352317881, "t30_eligible": 874, "t30_shipAbsorbed": 1417.5, "t30_near": 613, "t30_nearGap": 4.822152001631322, "t35_eligible": 674, "t35_shipAbsorbed": 1171.0, "t35_near": 522, "t35_nearGap": 5.705889597701149, "t40_eligible": 495, "t40_shipAbsorbed": 906.5, "t40_near": 499, "t40_nearGap": 6.583474344689379, "t50_eligible": 303, "t50_shipAbsorbed": 583.5, "t50_near": 371, "t50_nearGap": 8.750540420485175}, {"YearMonth": "2015-08", "totalOrders": 2822, "totalShippingRev": 3081.5, "t15_eligible": 1942, "t15_shipAbsorbed": 2486.5, "t15_near": 469, "t15_nearGap": 2.388684285714286, "t20_eligible": 1433, "t20_shipAbsorbed": 2064.5, "t20_near": 583, "t20_nearGap": 2.825667965694683, "t25_eligible": 997, "t25_shipAbsorbed": 1528.5, "t25_near": 717, "t25_nearGap": 4.032214769874478, "t30_eligible": 757, "t30_shipAbsorbed": 1175.0, "t30_near": 581, "t30_nearGap": 5.123719197934595, "t35_eligible": 568, "t35_shipAbsorbed": 937.5, "t35_near": 481, "t35_nearGap": 5.739155962577963, "t40_eligible": 421, "t40_shipAbsorbed": 786.5, "t40_near": 440, "t40_nearGap": 6.561279472727272, "t50_eligible": 274, "t50_shipAbsorbed": 555.0, "t50_near": 294, "t50_nearGap": 8.746200054421768}, {"YearMonth": "2015-07", "totalOrders": 2622, "totalShippingRev": 2402.5, "t15_eligible": 1735, "t15_shipAbsorbed": 1977.0, "t15_near": 469, "t15_nearGap": 2.482373936034115, "t20_eligible": 1253, "t20_shipAbsorbed": 1629.5, "t20_near": 545, "t20_nearGap": 2.7529231302752297, "t25_eligible": 876, "t25_shipAbsorbed": 1216.0, "t25_near": 648, "t25_nearGap": 3.992123929012345, "t30_eligible": 640, "t30_shipAbsorbed": 906.0, "t30_near": 523, "t30_nearGap": 4.787531347992352, "t35_eligible": 485, "t35_shipAbsorbed": 712.5, "t35_near": 453, "t35_nearGap": 6.1045657240618105, "t40_eligible": 338, "t40_shipAbsorbed": 584.0, "t40_near": 401, "t40_nearGap": 6.532128635910224, "t50_eligible": 205, "t50_shipAbsorbed": 387.0, "t50_near": 280, "t50_nearGap": 9.080648128571427}, {"YearMonth": "2015-06", "totalOrders": 2860, "totalShippingRev": 2300.0, "t15_eligible": 1985, "t15_shipAbsorbed": 2018.5, "t15_near": 434, "t15_nearGap": 2.628757400921659, "t20_eligible": 1416, "t20_shipAbsorbed": 1730.0, "t20_near": 623, "t20_nearGap": 2.5475384125200646, "t25_eligible": 1038, "t25_shipAbsorbed": 1319.5, "t25_near": 730, "t25_nearGap": 4.317661417808219, "t30_eligible": 793, "t30_shipAbsorbed": 1055.5, "t30_near": 539, "t30_nearGap": 4.964219673469388, "t35_eligible": 620, "t35_shipAbsorbed": 865.5, "t35_near": 457, "t35_nearGap": 5.880194822757112, "t40_eligible": 447, "t40_shipAbsorbed": 702.0, "t40_near": 440, "t40_nearGap": 6.41299326590909, "t50_eligible": 292, "t50_shipAbsorbed": 512.0, "t50_near": 328, "t50_nearGap": 9.216688405487805}, {"YearMonth": "2015-05", "totalOrders": 2614, "totalShippingRev": 2066.0, "t15_eligible": 1837, "t15_shipAbsorbed": 1778.0, "t15_near": 411, "t15_nearGap": 2.538312201946472, "t20_eligible": 1337, "t20_shipAbsorbed": 1510.0, "t20_near": 552, "t20_nearGap": 2.6737054166666665, "t25_eligible": 964, "t25_shipAbsorbed": 1177.0, "t25_near": 644, "t25_nearGap": 4.065281611801243, "t30_eligible": 745, "t30_shipAbsorbed": 974.0, "t30_near": 518, "t30_nearGap": 5.098218146718146, "t35_eligible": 565, "t35_shipAbsorbed": 809.5, "t35_near": 451, "t35_nearGap": 5.752168292682927, "t40_eligible": 413, "t40_shipAbsorbed": 674.5, "t40_near": 416, "t40_nearGap": 6.283143516826923, "t50_eligible": 254, "t50_shipAbsorbed": 449.0, "t50_near": 311, "t50_nearGap": 8.723389527331191}, {"YearMonth": "2015-04", "totalOrders": 2832, "totalShippingRev": 2391.5, "t15_eligible": 1826, "t15_shipAbsorbed": 1993.5, "t15_near": 495, "t15_nearGap": 2.2379237454545455, "t20_eligible": 1236, "t20_shipAbsorbed": 1594.0, "t20_near": 674, "t20_nearGap": 2.6875126884272995, "t25_eligible": 875, "t25_shipAbsorbed": 1188.0, "t25_near": 675, "t25_nearGap": 4.06258669037037, "t30_eligible": 654, "t30_shipAbsorbed": 972.5, "t30_near": 510, "t30_nearGap": 4.883157707843137, "t35_eligible": 493, "t35_shipAbsorbed": 771.5, "t35_near": 428, "t35_nearGap": 5.793721313084111, "t40_eligible": 347, "t40_shipAbsorbed": 608.0, "t40_near": 400, "t40_nearGap": 6.34969629, "t50_eligible": 210, "t50_shipAbsorbed": 382.0, "t50_near": 283, "t50_nearGap": 8.845749095406362}, {"YearMonth": "2015-03", "totalOrders": 3537, "totalShippingRev": 2749.5, "t15_eligible": 2351, "t15_shipAbsorbed": 2350.0, "t15_near": 596, "t15_nearGap": 2.3617369295302013, "t20_eligible": 1662, "t20_shipAbsorbed": 1949.0, "t20_near": 799, "t20_nearGap": 2.658094295369212, "t25_eligible": 1192, "t25_shipAbsorbed": 1494.0, "t25_near": 892, "t25_nearGap": 4.290851173766816, "t30_eligible": 896, "t30_shipAbsorbed": 1227.5, "t30_near": 666, "t30_nearGap": 5.019591782282283, "t35_eligible": 687, "t35_shipAbsorbed": 986.0, "t35_near": 545, "t35_nearGap": 5.718902042201835, "t40_eligible": 498, "t40_shipAbsorbed": 758.5, "t40_near": 512, "t40_nearGap": 6.375234398437501, "t50_eligible": 322, "t50_shipAbsorbed": 547.0, "t50_near": 365, "t50_nearGap": 9.115705657534248}, {"YearMonth": "2015-02", "totalOrders": 2404, "totalShippingRev": 1989.0, "t15_eligible": 1588, "t15_shipAbsorbed": 1654.0, "t15_near": 418, "t15_nearGap": 2.400231019138756, "t20_eligible": 1161, "t20_shipAbsorbed": 1401.0, "t20_near": 492, "t20_nearGap": 2.4463358516260167, "t25_eligible": 788, "t25_shipAbsorbed": 1053.0, "t25_near": 635, "t25_nearGap": 3.7660279748031495, "t30_eligible": 589, "t30_shipAbsorbed": 859.0, "t30_near": 500, "t30_nearGap": 4.802548935999999, "t35_eligible": 450, "t35_shipAbsorbed": 701.0, "t35_near": 387, "t35_nearGap": 5.668999589147287, "t40_eligible": 356, "t40_shipAbsorbed": 574.5, "t40_near": 340, "t40_nearGap": 6.961649541176471, "t50_eligible": 218, "t50_shipAbsorbed": 366.0, "t50_near": 232, "t50_nearGap": 7.932904004310344}, {"YearMonth": "2015-01", "totalOrders": 4632, "totalShippingRev": 3671.2, "t15_eligible": 3176, "t15_shipAbsorbed": 3180.2, "t15_near": 684, "t15_nearGap": 2.2182375643274854, "t20_eligible": 2337, "t20_shipAbsorbed": 2698.2, "t20_near": 1000, "t20_nearGap": 3.017077585, "t25_eligible": 1755, "t25_shipAbsorbed": 2219.2, "t25_near": 994, "t25_nearGap": 4.056626845070422, "t30_eligible": 1335, "t30_shipAbsorbed": 1794.7, "t30_near": 917, "t30_nearGap": 5.092355362050163, "t35_eligible": 969, "t35_shipAbsorbed": 1506.2, "t35_near": 869, "t35_nearGap": 5.639447300345225, "t40_eligible": 742, "t40_shipAbsorbed": 1235.7, "t40_near": 721, "t40_nearGap": 6.390919636615812, "t50_eligible": 466, "t50_shipAbsorbed": 873.2, "t50_near": 503, "t50_nearGap": 8.639936954274354}, {"YearMonth": "2014-12", "totalOrders": 2258, "totalShippingRev": 1689.5, "t15_eligible": 1532, "t15_shipAbsorbed": 1456.0, "t15_near": 357, "t15_nearGap": 2.483830218487395, "t20_eligible": 1091, "t20_shipAbsorbed": 1201.5, "t20_near": 494, "t20_nearGap": 2.7264823461538463, "t25_eligible": 784, "t25_shipAbsorbed": 949.5, "t25_near": 520, "t25_nearGap": 3.770661140384615, "t30_eligible": 591, "t30_shipAbsorbed": 733.5, "t30_near": 453, "t30_nearGap": 4.895414035320089, "t35_eligible": 447, "t35_shipAbsorbed": 612.5, "t35_near": 399, "t35_nearGap": 5.985140112781957, "t40_eligible": 306, "t40_shipAbsorbed": 447.5, "t40_near": 367, "t40_nearGap": 6.190966141689372, "t50_eligible": 182, "t50_shipAbsorbed": 286.0, "t50_near": 265, "t50_nearGap": 8.797700211320754}, {"YearMonth": "2014-11", "totalOrders": 2945, "totalShippingRev": 2440.5, "t15_eligible": 1962, "t15_shipAbsorbed": 2028.5, "t15_near": 461, "t15_nearGap": 2.337719305856833, "t20_eligible": 1414, "t20_shipAbsorbed": 1733.5, "t20_near": 629, "t20_nearGap": 2.577266845786964, "t25_eligible": 1029, "t25_shipAbsorbed": 1335.5, "t25_near": 710, "t25_nearGap": 4.072201707042254, "t30_eligible": 778, "t30_shipAbsorbed": 1069.5, "t30_near": 550, "t30_nearGap": 4.751644861818183, "t35_eligible": 578, "t35_shipAbsorbed": 843.5, "t35_near": 504, "t35_nearGap": 5.684834912698413, "t40_eligible": 397, "t40_shipAbsorbed": 661.0, "t40_near": 485, "t40_nearGap": 6.338584746391752, "t50_eligible": 239, "t50_shipAbsorbed": 498.0, "t50_near": 339, "t50_nearGap": 9.058205421828909}, {"YearMonth": "2014-10", "totalOrders": 2872, "totalShippingRev": 2335.0, "t15_eligible": 1847, "t15_shipAbsorbed": 1982.5, "t15_near": 445, "t15_nearGap": 2.0092240898876406, "t20_eligible": 1311, "t20_shipAbsorbed": 1618.0, "t20_near": 653, "t20_nearGap": 2.6324507197549774, "t25_eligible": 997, "t25_shipAbsorbed": 1230.0, "t25_near": 647, "t25_nearGap": 4.369597595054096, "t30_eligible": 753, "t30_shipAbsorbed": 1039.5, "t30_near": 490, "t30_nearGap": 4.662735997959184, "t35_eligible": 588, "t35_shipAbsorbed": 847.0, "t35_near": 428, "t35_nearGap": 5.56464064953271, "t40_eligible": 435, "t40_shipAbsorbed": 682.5, "t40_near": 415, "t40_nearGap": 6.394560910843373, "t50_eligible": 277, "t50_shipAbsorbed": 460.0, "t50_near": 311, "t50_nearGap": 8.719218327974279}, {"YearMonth": "2014-09", "totalOrders": 3011, "totalShippingRev": 2282.0, "t15_eligible": 1925, "t15_shipAbsorbed": 1885.0, "t15_near": 485, "t15_nearGap": 2.027374515463918, "t20_eligible": 1338, "t20_shipAbsorbed": 1503.0, "t20_near": 710, "t20_nearGap": 2.763717321126761, "t25_eligible": 1011, "t25_shipAbsorbed": 1184.5, "t25_near": 660, "t25_nearGap": 4.299660034848485, "t30_eligible": 714, "t30_shipAbsorbed": 954.5, "t30_near": 555, "t30_nearGap": 4.463101742342343, "t35_eligible": 542, "t35_shipAbsorbed": 773.0, "t35_near": 497, "t35_nearGap": 5.801699704225352, "t40_eligible": 374, "t40_shipAbsorbed": 592.5, "t40_near": 457, "t40_nearGap": 6.521832814004376, "t50_eligible": 232, "t50_shipAbsorbed": 378.0, "t50_near": 310, "t50_nearGap": 9.404220441935486}, {"YearMonth": "2014-08", "totalOrders": 2777, "totalShippingRev": 2294.5, "t15_eligible": 1769, "t15_shipAbsorbed": 1928.0, "t15_near": 462, "t15_nearGap": 2.164889341991342, "t20_eligible": 1247, "t20_shipAbsorbed": 1595.5, "t20_near": 636, "t20_nearGap": 2.7106287625786165, "t25_eligible": 943, "t25_shipAbsorbed": 1293.0, "t25_near": 611, "t25_nearGap": 4.300323044189853, "t30_eligible": 666, "t30_shipAbsorbed": 1002.5, "t30_near": 522, "t30_nearGap": 4.441478869731801, "t35_eligible": 520, "t35_shipAbsorbed": 819.0, "t35_near": 452, "t35_nearGap": 5.851220949115044, "t40_eligible": 366, "t40_shipAbsorbed": 648.0, "t40_near": 427, "t40_nearGap": 6.61557088056206, "t50_eligible": 227, "t50_shipAbsorbed": 416.5, "t50_near": 293, "t50_nearGap": 9.089310406143344}, {"YearMonth": "2014-07", "totalOrders": 2900, "totalShippingRev": 2248.5, "t15_eligible": 1889, "t15_shipAbsorbed": 1937.0, "t15_near": 442, "t15_nearGap": 2.0511270226244345, "t20_eligible": 1327, "t20_shipAbsorbed": 1645.0, "t20_near": 671, "t20_nearGap": 2.7559911877794336, "t25_eligible": 1001, "t25_shipAbsorbed": 1281.0, "t25_near": 643, "t25_nearGap": 4.301188774494556, "t30_eligible": 741, "t30_shipAbsorbed": 1067.5, "t30_near": 517, "t30_nearGap": 4.533285899419729, "t35_eligible": 583, "t35_shipAbsorbed": 852.0, "t35_near": 442, "t35_nearGap": 5.562368898190044, "t40_eligible": 422, "t40_shipAbsorbed": 691.0, "t40_near": 448, "t40_nearGap": 6.528295654017858, "t50_eligible": 270, "t50_shipAbsorbed": 472.5, "t50_near": 313, "t50_nearGap": 8.769903769968051}, {"YearMonth": "2014-06", "totalOrders": 2694, "totalShippingRev": 2185.0, "t15_eligible": 1716, "t15_shipAbsorbed": 1771.0, "t15_near": 430, "t15_nearGap": 2.188080279069768, "t20_eligible": 1167, "t20_shipAbsorbed": 1410.0, "t20_near": 638, "t20_nearGap": 2.587176040752351, "t25_eligible": 866, "t25_shipAbsorbed": 1056.0, "t25_near": 613, "t25_nearGap": 4.300426076672104, "t30_eligible": 623, "t30_shipAbsorbed": 805.0, "t30_near": 483, "t30_nearGap": 4.537356832298136, "t35_eligible": 465, "t35_shipAbsorbed": 634.5, "t35_near": 418, "t35_nearGap": 5.363346210526316, "t40_eligible": 315, "t40_shipAbsorbed": 520.5, "t40_near": 424, "t40_nearGap": 6.513188485849056, "t50_eligible": 200, "t50_shipAbsorbed": 340.0, "t50_near": 265, "t50_nearGap": 9.362094075471697}, {"YearMonth": "2014-05", "totalOrders": 2743, "totalShippingRev": 2300.5, "t15_eligible": 1736, "t15_shipAbsorbed": 1911.0, "t15_near": 454, "t15_nearGap": 1.9516292511013218, "t20_eligible": 1171, "t20_shipAbsorbed": 1553.5, "t20_near": 694, "t20_nearGap": 2.7176173645533144, "t25_eligible": 890, "t25_shipAbsorbed": 1189.5, "t25_near": 610, "t25_nearGap": 4.423287350819671, "t30_eligible": 675, "t30_shipAbsorbed": 979.5, "t30_near": 437, "t30_nearGap": 4.621814384439359, "t35_eligible": 522, "t35_shipAbsorbed": 796.5, "t35_near": 387, "t35_nearGap": 5.498410245478036, "t40_eligible": 347, "t40_shipAbsorbed": 614.5, "t40_near": 424, "t40_nearGap": 6.212395818396227, "t50_eligible": 217, "t50_shipAbsorbed": 404.5, "t50_near": 305, "t50_nearGap": 9.548711462295081}, {"YearMonth": "2014-04", "totalOrders": 2846, "totalShippingRev": 2242.5, "t15_eligible": 1749, "t15_shipAbsorbed": 1822.5, "t15_near": 524, "t15_nearGap": 2.242349045801527, "t20_eligible": 1259, "t20_shipAbsorbed": 1490.0, "t20_near": 589, "t20_nearGap": 2.673082271646859, "t25_eligible": 900, "t25_shipAbsorbed": 1177.0, "t25_near": 656, "t25_nearGap": 4.034384983231708, "t30_eligible": 640, "t30_shipAbsorbed": 929.5, "t30_near": 552, "t30_nearGap": 4.54524741847826, "t35_eligible": 515, "t35_shipAbsorbed": 786.5, "t35_near": 411, "t35_nearGap": 5.76420894403893, "t40_eligible": 351, "t40_shipAbsorbed": 611.5, "t40_near": 419, "t40_nearGap": 6.451990112171838, "t50_eligible": 202, "t50_shipAbsorbed": 374.0, "t50_near": 313, "t50_nearGap": 8.936328559105432}, {"YearMonth": "2014-03", "totalOrders": 3123, "totalShippingRev": 2557.0, "t15_eligible": 1884, "t15_shipAbsorbed": 2070.0, "t15_near": 565, "t15_nearGap": 2.0944975929203538, "t20_eligible": 1276, "t20_shipAbsorbed": 1639.5, "t20_near": 758, "t20_nearGap": 2.9006651134564643, "t25_eligible": 940, "t25_shipAbsorbed": 1253.5, "t25_near": 679, "t25_nearGap": 4.372168606774669, "t30_eligible": 688, "t30_shipAbsorbed": 1029.5, "t30_near": 519, "t30_nearGap": 4.6297862273603085, "t35_eligible": 516, "t35_shipAbsorbed": 817.0, "t35_near": 444, "t35_nearGap": 5.424051763513514, "t40_eligible": 356, "t40_shipAbsorbed": 641.5, "t40_near": 452, "t40_nearGap": 6.624448442477877, "t50_eligible": 227, "t50_shipAbsorbed": 450.5, "t50_near": 289, "t50_nearGap": 9.494805352941178}, {"YearMonth": "2014-02", "totalOrders": 2667, "totalShippingRev": 2352.5, "t15_eligible": 1652, "t15_shipAbsorbed": 1936.5, "t15_near": 474, "t15_nearGap": 2.067010084388186, "t20_eligible": 1149, "t20_shipAbsorbed": 1618.5, "t20_near": 613, "t20_nearGap": 2.6687367063621537, "t25_eligible": 824, "t25_shipAbsorbed": 1231.5, "t25_near": 628, "t25_nearGap": 4.118630003184713, "t30_eligible": 609, "t30_shipAbsorbed": 965.0, "t30_near": 480, "t30_nearGap": 4.8116332604166665, "t35_eligible": 459, "t35_shipAbsorbed": 736.5, "t35_near": 381, "t35_nearGap": 5.450007349081365, "t40_eligible": 303, "t40_shipAbsorbed": 568.0, "t40_near": 398, "t40_nearGap": 6.225493592964823, "t50_eligible": 176, "t50_shipAbsorbed": 358.0, "t50_near": 283, "t50_nearGap": 9.175717770318021}, {"YearMonth": "2014-01", "totalOrders": 3733, "totalShippingRev": 2856.5, "t15_eligible": 2354, "t15_shipAbsorbed": 2378.0, "t15_near": 619, "t15_nearGap": 2.07563044911147, "t20_eligible": 1651, "t20_shipAbsorbed": 1974.0, "t20_near": 842, "t20_nearGap": 2.7252462660332544, "t25_eligible": 1297, "t25_shipAbsorbed": 1543.5, "t25_near": 710, "t25_nearGap": 4.1594660112676065, "t30_eligible": 944, "t30_shipAbsorbed": 1287.0, "t30_near": 650, "t30_nearGap": 4.601120103076923, "t35_eligible": 707, "t35_shipAbsorbed": 1037.5, "t35_near": 612, "t35_nearGap": 5.734015552287582, "t40_eligible": 500, "t40_shipAbsorbed": 841.0, "t40_near": 567, "t40_nearGap": 6.396961015873016, "t50_eligible": 330, "t50_shipAbsorbed": 576.0, "t50_near": 377, "t50_nearGap": 9.284910381962865}, {"YearMonth": "2013-12", "totalOrders": 2116, "totalShippingRev": 1674.5, "t15_eligible": 1304, "t15_shipAbsorbed": 1365.5, "t15_near": 363, "t15_nearGap": 1.9708420495867771, "t20_eligible": 917, "t20_shipAbsorbed": 1157.0, "t20_near": 469, "t20_nearGap": 2.7611509488272925, "t25_eligible": 684, "t25_shipAbsorbed": 862.5, "t25_near": 437, "t25_nearGap": 4.109881645308924, "t30_eligible": 513, "t30_shipAbsorbed": 718.0, "t30_near": 355, "t30_nearGap": 4.597955690140846, "t35_eligible": 413, "t35_shipAbsorbed": 588.0, "t35_near": 289, "t35_nearGap": 5.605975851211073, "t40_eligible": 272, "t40_shipAbsorbed": 486.0, "t40_near": 318, "t40_nearGap": 5.933865981132075, "t50_eligible": 164, "t50_shipAbsorbed": 334.5, "t50_near": 249, "t50_nearGap": 9.319334642570281}, {"YearMonth": "2013-11", "totalOrders": 2837, "totalShippingRev": 2209.5, "t15_eligible": 1813, "t15_shipAbsorbed": 1860.0, "t15_near": 465, "t15_nearGap": 1.9076154623655914, "t20_eligible": 1292, "t20_shipAbsorbed": 1516.0, "t20_near": 643, "t20_nearGap": 2.6557514059097977, "t25_eligible": 945, "t25_shipAbsorbed": 1194.0, "t25_near": 634, "t25_nearGap": 4.131133611987382, "t30_eligible": 706, "t30_shipAbsorbed": 1002.5, "t30_near": 495, "t30_nearGap": 4.7656787535353535, "t35_eligible": 538, "t35_shipAbsorbed": 790.5, "t35_near": 430, "t35_nearGap": 5.53401838372093, "t40_eligible": 367, "t40_shipAbsorbed": 612.0, "t40_near": 441, "t40_nearGap": 6.175363959183673, "t50_eligible": 234, "t50_shipAbsorbed": 445.5, "t50_near": 304, "t50_nearGap": 9.12674499342105}, {"YearMonth": "2013-10", "totalOrders": 2268, "totalShippingRev": 1844.0, "t15_eligible": 1415, "t15_shipAbsorbed": 1535.0, "t15_near": 401, "t15_nearGap": 1.9158613466334167, "t20_eligible": 992, "t20_shipAbsorbed": 1282.5, "t20_near": 539, "t20_nearGap": 2.8323198515769943, "t25_eligible": 759, "t25_shipAbsorbed": 1012.5, "t25_near": 463, "t25_nearGap": 4.222161155507559, "t30_eligible": 539, "t30_shipAbsorbed": 802.0, "t30_near": 410, "t30_nearGap": 4.380950385365853, "t35_eligible": 394, "t35_shipAbsorbed": 616.0, "t35_near": 385, "t35_nearGap": 5.4984616597402605, "t40_eligible": 275, "t40_shipAbsorbed": 504.5, "t40_near": 360, "t40_nearGap": 6.643475011111112, "t50_eligible": 159, "t50_shipAbsorbed": 308.5, "t50_near": 235, "t50_nearGap": 8.929234425531913}, {"YearMonth": "2013-09", "totalOrders": 2658, "totalShippingRev": 2349.5, "t15_eligible": 1711, "t15_shipAbsorbed": 1972.0, "t15_near": 441, "t15_nearGap": 1.8742249433106575, "t20_eligible": 1247, "t20_shipAbsorbed": 1648.5, "t20_near": 601, "t20_nearGap": 2.750941499168053, "t25_eligible": 905, "t25_shipAbsorbed": 1226.5, "t25_near": 606, "t25_nearGap": 3.948611638613862, "t30_eligible": 672, "t30_shipAbsorbed": 993.0, "t30_near": 509, "t30_nearGap": 4.764148805500983, "t35_eligible": 525, "t35_shipAbsorbed": 809.0, "t35_near": 403, "t35_nearGap": 5.523914223325062, "t40_eligible": 352, "t40_shipAbsorbed": 624.5, "t40_near": 430, "t40_nearGap": 6.1636998604651145, "t50_eligible": 226, "t50_shipAbsorbed": 433.0, "t50_near": 299, "t50_nearGap": 9.361914317725752}, {"YearMonth": "2013-08", "totalOrders": 2238, "totalShippingRev": 1775.0, "t15_eligible": 1377, "t15_shipAbsorbed": 1402.0, "t15_near": 370, "t15_nearGap": 2.051969837837838, "t20_eligible": 911, "t20_shipAbsorbed": 1076.0, "t20_near": 563, "t20_nearGap": 2.5497325754884548, "t25_eligible": 673, "t25_shipAbsorbed": 797.5, "t25_near": 515, "t25_nearGap": 4.299888530097087, "t30_eligible": 472, "t30_shipAbsorbed": 626.5, "t30_near": 396, "t30_nearGap": 4.370207143939394, "t35_eligible": 373, "t35_shipAbsorbed": 520.0, "t35_near": 323, "t35_nearGap": 5.647951191950464, "t40_eligible": 250, "t40_shipAbsorbed": 428.0, "t40_near": 328, "t40_nearGap": 6.365347557926829, "t50_eligible": 148, "t50_shipAbsorbed": 275.0, "t50_near": 225, "t50_nearGap": 9.371068391111113}, {"YearMonth": "2013-07", "totalOrders": 2321, "totalShippingRev": 1744.0, "t15_eligible": 1424, "t15_shipAbsorbed": 1370.0, "t15_near": 375, "t15_nearGap": 1.8797819733333336, "t20_eligible": 1042, "t20_shipAbsorbed": 1104.0, "t20_near": 501, "t20_nearGap": 2.6664626746506985, "t25_eligible": 774, "t25_shipAbsorbed": 890.0, "t25_near": 504, "t25_nearGap": 3.9605995833333334, "t30_eligible": 520, "t30_shipAbsorbed": 708.5, "t30_near": 480, "t30_nearGap": 4.343938725, "t35_eligible": 407, "t35_shipAbsorbed": 566.5, "t35_near": 395, "t35_nearGap": 5.9745048, "t40_eligible": 268, "t40_shipAbsorbed": 460.5, "t40_near": 373, "t40_nearGap": 6.6311501179624655, "t50_eligible": 161, "t50_shipAbsorbed": 296.0, "t50_near": 246, "t50_nearGap": 9.461751215447153}, {"YearMonth": "2013-06", "totalOrders": 2716, "totalShippingRev": 2190.0, "t15_eligible": 1697, "t15_shipAbsorbed": 1786.0, "t15_near": 434, "t15_nearGap": 1.8505465437788018, "t20_eligible": 1167, "t20_shipAbsorbed": 1435.5, "t20_near": 655, "t20_nearGap": 2.6126900763358782, "t25_eligible": 878, "t25_shipAbsorbed": 1152.5, "t25_near": 606, "t25_nearGap": 4.31129591089109, "t30_eligible": 631, "t30_shipAbsorbed": 959.5, "t30_near": 473, "t30_nearGap": 4.457965841437632, "t35_eligible": 488, "t35_shipAbsorbed": 772.5, "t35_near": 416, "t35_nearGap": 5.639376348557693, "t40_eligible": 333, "t40_shipAbsorbed": 570.0, "t40_near": 403, "t40_nearGap": 6.256892985111662, "t50_eligible": 194, "t50_shipAbsorbed": 312.5, "t50_near": 294, "t50_nearGap": 9.134964721088435}, {"YearMonth": "2013-05", "totalOrders": 2538, "totalShippingRev": 1889.5, "t15_eligible": 1518, "t15_shipAbsorbed": 1534.0, "t15_near": 443, "t15_nearGap": 1.9269888036117384, "t20_eligible": 1029, "t20_shipAbsorbed": 1250.0, "t20_near": 622, "t20_nearGap": 2.7792561398713826, "t25_eligible": 760, "t25_shipAbsorbed": 962.0, "t25_near": 538, "t25_nearGap": 4.225659323420074, "t30_eligible": 541, "t30_shipAbsorbed": 793.0, "t30_near": 433, "t30_nearGap": 4.391443113163972, "t35_eligible": 432, "t35_shipAbsorbed": 645.0, "t35_near": 348, "t35_nearGap": 5.578169844827586, "t40_eligible": 280, "t40_shipAbsorbed": 487.5, "t40_near": 383, "t40_nearGap": 6.324471728459529, "t50_eligible": 166, "t50_shipAbsorbed": 313.5, "t50_near": 266, "t50_nearGap": 9.354644484962407}, {"YearMonth": "2013-04", "totalOrders": 2569, "totalShippingRev": 2147.0, "t15_eligible": 1680, "t15_shipAbsorbed": 1816.0, "t15_near": 383, "t15_nearGap": 1.9879953002610966, "t20_eligible": 1215, "t20_shipAbsorbed": 1439.0, "t20_near": 568, "t20_nearGap": 2.484291471830986, "t25_eligible": 902, "t25_shipAbsorbed": 1145.5, "t25_near": 592, "t25_nearGap": 4.033068699324325, "t30_eligible": 637, "t30_shipAbsorbed": 942.0, "t30_near": 509, "t30_nearGap": 4.383461557956777, "t35_eligible": 479, "t35_shipAbsorbed": 780.5, "t35_near": 447, "t35_nearGap": 5.54648862639821, "t40_eligible": 338, "t40_shipAbsorbed": 619.0, "t40_near": 431, "t40_nearGap": 6.809233640371229, "t50_eligible": 212, "t50_shipAbsorbed": 380.5, "t50_near": 267, "t50_nearGap": 9.037341149812733}, {"YearMonth": "2013-03", "totalOrders": 2536, "totalShippingRev": 2117.5, "t15_eligible": 1663, "t15_shipAbsorbed": 1740.0, "t15_near": 371, "t15_nearGap": 2.0932599460916443, "t20_eligible": 1234, "t20_shipAbsorbed": 1470.5, "t20_near": 518, "t20_nearGap": 2.5325022374517374, "t25_eligible": 917, "t25_shipAbsorbed": 1140.5, "t25_near": 579, "t25_nearGap": 4.0559875526770295, "t30_eligible": 676, "t30_shipAbsorbed": 942.0, "t30_near": 490, "t30_nearGap": 4.53105492244898, "t35_eligible": 520, "t35_shipAbsorbed": 730.0, "t35_near": 425, "t35_nearGap": 5.472251842352941, "t40_eligible": 356, "t40_shipAbsorbed": 609.5, "t40_near": 442, "t40_nearGap": 6.4693165, "t50_eligible": 216, "t50_shipAbsorbed": 398.5, "t50_near": 304, "t50_nearGap": 9.349688986842104}, {"YearMonth": "2013-02", "totalOrders": 2011, "totalShippingRev": 1705.5, "t15_eligible": 1250, "t15_shipAbsorbed": 1419.5, "t15_near": 339, "t15_nearGap": 1.9398781120943953, "t20_eligible": 875, "t20_shipAbsorbed": 1140.0, "t20_near": 454, "t20_nearGap": 2.663028455947137, "t25_eligible": 643, "t25_shipAbsorbed": 873.0, "t25_near": 444, "t25_nearGap": 4.189150252252253, "t30_eligible": 445, "t30_shipAbsorbed": 661.5, "t30_near": 381, "t30_nearGap": 4.357139590551181, "t35_eligible": 363, "t35_shipAbsorbed": 547.5, "t35_near": 302, "t35_nearGap": 5.786800089403974, "t40_eligible": 245, "t40_shipAbsorbed": 421.0, "t40_near": 306, "t40_nearGap": 6.506191349673203, "t50_eligible": 149, "t50_shipAbsorbed": 252.5, "t50_near": 214, "t50_nearGap": 9.15111114953271}, {"YearMonth": "2013-01", "totalOrders": 2732, "totalShippingRev": 2393.5, "t15_eligible": 1831, "t15_shipAbsorbed": 2022.0, "t15_near": 406, "t15_nearGap": 2.1121417733990153, "t20_eligible": 1376, "t20_shipAbsorbed": 1706.0, "t20_near": 553, "t20_nearGap": 2.515572292947559, "t25_eligible": 1029, "t25_shipAbsorbed": 1260.0, "t25_near": 633, "t25_nearGap": 4.078426540284361, "t30_eligible": 730, "t30_shipAbsorbed": 1030.5, "t30_near": 572, "t30_nearGap": 4.425218744755244, "t35_eligible": 553, "t35_shipAbsorbed": 844.5, "t35_near": 498, "t35_nearGap": 5.48741584939759, "t40_eligible": 384, "t40_shipAbsorbed": 668.5, "t40_near": 489, "t40_nearGap": 6.663497488752556, "t50_eligible": 239, "t50_shipAbsorbed": 471.0, "t50_near": 314, "t50_nearGap": 9.416635732484076}, {"YearMonth": "2012-12", "totalOrders": 1706, "totalShippingRev": 1296.0, "t15_eligible": 1075, "t15_shipAbsorbed": 1083.0, "t15_near": 296, "t15_nearGap": 1.948591891891892, "t20_eligible": 744, "t20_shipAbsorbed": 878.0, "t20_near": 410, "t20_nearGap": 2.647547509756098, "t25_eligible": 560, "t25_shipAbsorbed": 680.5, "t25_near": 382, "t25_nearGap": 4.2979839712041885, "t30_eligible": 387, "t30_shipAbsorbed": 536.5, "t30_near": 325, "t30_nearGap": 4.322397280000001, "t35_eligible": 303, "t35_shipAbsorbed": 434.5, "t35_near": 275, "t35_nearGap": 5.758278683636365, "t40_eligible": 223, "t40_shipAbsorbed": 355.0, "t40_near": 254, "t40_nearGap": 6.9745118307086615, "t50_eligible": 116, "t50_shipAbsorbed": 208.0, "t50_near": 187, "t50_nearGap": 8.129510160427808}, {"YearMonth": "2012-11", "totalOrders": 2274, "totalShippingRev": 1725.5, "t15_eligible": 1488, "t15_shipAbsorbed": 1404.5, "t15_near": 390, "t15_nearGap": 2.0591402564102568, "t20_eligible": 1049, "t20_shipAbsorbed": 1158.0, "t20_near": 532, "t20_nearGap": 2.703809505639098, "t25_eligible": 783, "t25_shipAbsorbed": 878.5, "t25_near": 509, "t25_nearGap": 4.092409428290766, "t30_eligible": 548, "t30_shipAbsorbed": 686.0, "t30_near": 452, "t30_nearGap": 4.409239258849558, "t35_eligible": 406, "t35_shipAbsorbed": 518.5, "t35_near": 393, "t35_nearGap": 5.463530229007633, "t40_eligible": 282, "t40_shipAbsorbed": 411.0, "t40_near": 370, "t40_nearGap": 6.560653713513513, "t50_eligible": 186, "t50_shipAbsorbed": 294.5, "t50_near": 220, "t50_nearGap": 9.405352327272729}, {"YearMonth": "2012-10", "totalOrders": 2373, "totalShippingRev": 1973.5, "t15_eligible": 1505, "t15_shipAbsorbed": 1648.0, "t15_near": 391, "t15_nearGap": 1.855758772378517, "t20_eligible": 1084, "t20_shipAbsorbed": 1385.0, "t20_near": 537, "t20_nearGap": 2.6758280055865926, "t25_eligible": 820, "t25_shipAbsorbed": 1061.0, "t25_near": 516, "t25_nearGap": 4.129359992248062, "t30_eligible": 559, "t30_shipAbsorbed": 849.5, "t30_near": 484, "t30_nearGap": 4.311879654958678, "t35_eligible": 431, "t35_shipAbsorbed": 653.5, "t35_near": 410, "t35_nearGap": 5.594843404878048, "t40_eligible": 311, "t40_shipAbsorbed": 519.0, "t40_near": 368, "t40_nearGap": 6.6398161413043475, "t50_eligible": 196, "t50_shipAbsorbed": 337.5, "t50_near": 235, "t50_nearGap": 8.797366340425532}, {"YearMonth": "2012-09", "totalOrders": 2255, "totalShippingRev": 1645.0, "t15_eligible": 1453, "t15_shipAbsorbed": 1329.0, "t15_near": 363, "t15_nearGap": 2.0807899173553723, "t20_eligible": 1045, "t20_shipAbsorbed": 1108.0, "t20_near": 482, "t20_nearGap": 2.5879788796680496, "t25_eligible": 773, "t25_shipAbsorbed": 841.0, "t25_near": 502, "t25_nearGap": 4.074765898406374, "t30_eligible": 548, "t30_shipAbsorbed": 660.0, "t30_near": 451, "t30_nearGap": 4.36826310421286, "t35_eligible": 409, "t35_shipAbsorbed": 462.5, "t35_near": 392, "t35_nearGap": 5.311292795918368, "t40_eligible": 295, "t40_shipAbsorbed": 408.5, "t40_near": 382, "t40_nearGap": 6.855361070680629, "t50_eligible": 180, "t50_shipAbsorbed": 264.5, "t50_near": 229, "t50_nearGap": 8.740978829694322}, {"YearMonth": "2012-08", "totalOrders": 1926, "totalShippingRev": 1473.5, "t15_eligible": 1226, "t15_shipAbsorbed": 1168.5, "t15_near": 328, "t15_nearGap": 2.052096341463415, "t20_eligible": 927, "t20_shipAbsorbed": 965.0, "t20_near": 359, "t20_nearGap": 2.3648987186629533, "t25_eligible": 707, "t25_shipAbsorbed": 783.5, "t25_near": 420, "t25_nearGap": 3.9249112357142852, "t30_eligible": 549, "t30_shipAbsorbed": 610.0, "t30_near": 344, "t30_nearGap": 4.553478380813954, "t35_eligible": 401, "t35_shipAbsorbed": 486.5, "t35_near": 341, "t35_nearGap": 5.254382472140763, "t40_eligible": 253, "t40_shipAbsorbed": 368.0, "t40_near": 378, "t40_nearGap": 6.156473224867725, "t50_eligible": 142, "t50_shipAbsorbed": 224.0, "t50_near": 259, "t50_nearGap": 9.605135505791507}, {"YearMonth": "2012-07", "totalOrders": 1950, "totalShippingRev": 1433.0, "t15_eligible": 1282, "t15_shipAbsorbed": 1264.0, "t15_near": 321, "t15_nearGap": 2.036559003115265, "t20_eligible": 910, "t20_shipAbsorbed": 1013.0, "t20_near": 431, "t20_nearGap": 2.617584454756381, "t25_eligible": 692, "t25_shipAbsorbed": 791.5, "t25_near": 441, "t25_nearGap": 4.205837269841269, "t30_eligible": 541, "t30_shipAbsorbed": 602.5, "t30_near": 333, "t30_nearGap": 4.7024042822822825, "t35_eligible": 394, "t35_shipAbsorbed": 475.5, "t35_near": 332, "t35_nearGap": 5.423932789156626, "t40_eligible": 262, "t40_shipAbsorbed": 372.0, "t40_near": 347, "t40_nearGap": 6.2646839337175795, "t50_eligible": 146, "t50_shipAbsorbed": 239.0, "t50_near": 248, "t50_nearGap": 9.288949681451614}, {"YearMonth": "2012-06", "totalOrders": 1930, "totalShippingRev": 1845.5, "t15_eligible": 1321, "t15_shipAbsorbed": 1577.0, "t15_near": 313, "t15_nearGap": 2.0626124600638986, "t20_eligible": 979, "t20_shipAbsorbed": 1281.0, "t20_near": 394, "t20_nearGap": 2.349044139593909, "t25_eligible": 704, "t25_shipAbsorbed": 936.5, "t25_near": 503, "t25_nearGap": 4.0001396441351895, "t30_eligible": 536, "t30_shipAbsorbed": 743.0, "t30_near": 394, "t30_nearGap": 4.900557263959391, "t35_eligible": 402, "t35_shipAbsorbed": 596.0, "t35_near": 330, "t35_nearGap": 5.571363354545455, "t40_eligible": 299, "t40_shipAbsorbed": 467.0, "t40_near": 307, "t40_nearGap": 6.621561332247556, "t50_eligible": 179, "t50_shipAbsorbed": 284.5, "t50_near": 223, "t50_nearGap": 8.939760793721973}, {"YearMonth": "2012-05", "totalOrders": 2228, "totalShippingRev": 2174.5, "t15_eligible": 1480, "t15_shipAbsorbed": 1781.0, "t15_near": 397, "t15_nearGap": 2.1308959697733, "t20_eligible": 1096, "t20_shipAbsorbed": 1423.5, "t20_near": 454, "t20_nearGap": 2.678920231277534, "t25_eligible": 808, "t25_shipAbsorbed": 1096.5, "t25_near": 501, "t25_nearGap": 3.9128754810379247, "t30_eligible": 598, "t30_shipAbsorbed": 831.0, "t30_near": 451, "t30_nearGap": 4.798904055432372, "t35_eligible": 442, "t35_shipAbsorbed": 673.5, "t35_near": 398, "t35_nearGap": 5.586301477386935, "t40_eligible": 282, "t40_shipAbsorbed": 520.0, "t40_near": 400, "t40_nearGap": 6.1862531474999995, "t50_eligible": 166, "t50_shipAbsorbed": 334.5, "t50_near": 276, "t50_nearGap": 9.75355508695652}, {"YearMonth": "2012-04", "totalOrders": 2340, "totalShippingRev": 2260.5, "t15_eligible": 1492, "t15_shipAbsorbed": 1794.5, "t15_near": 446, "t15_nearGap": 2.287749103139014, "t20_eligible": 1070, "t20_shipAbsorbed": 1384.5, "t20_near": 492, "t20_nearGap": 2.7710369146341467, "t25_eligible": 809, "t25_shipAbsorbed": 1072.0, "t25_near": 486, "t25_nearGap": 3.9806389547325107, "t30_eligible": 582, "t30_shipAbsorbed": 846.5, "t30_near": 450, "t30_nearGap": 4.550721035555555, "t35_eligible": 412, "t35_shipAbsorbed": 643.0, "t35_near": 415, "t35_nearGap": 5.393184831325301, "t40_eligible": 290, "t40_shipAbsorbed": 509.5, "t40_near": 384, "t40_nearGap": 6.7552595390625, "t50_eligible": 172, "t50_shipAbsorbed": 325.0, "t50_near": 240, "t50_nearGap": 9.174132158333332}, {"YearMonth": "2012-03", "totalOrders": 2257, "totalShippingRev": 2306.5, "t15_eligible": 1432, "t15_shipAbsorbed": 1830.0, "t15_near": 464, "t15_nearGap": 2.1339739224137935, "t20_eligible": 1012, "t20_shipAbsorbed": 1414.0, "t20_near": 486, "t20_nearGap": 2.9324627551440337, "t25_eligible": 767, "t25_shipAbsorbed": 1110.0, "t25_near": 464, "t25_nearGap": 4.123716875, "t30_eligible": 544, "t30_shipAbsorbed": 865.5, "t30_near": 434, "t30_nearGap": 4.572951043778803, "t35_eligible": 383, "t35_shipAbsorbed": 657.5, "t35_near": 411, "t35_nearGap": 5.752412255474453, "t40_eligible": 267, "t40_shipAbsorbed": 460.5, "t40_near": 350, "t40_nearGap": 6.679555708571429, "t50_eligible": 160, "t50_shipAbsorbed": 312.0, "t50_near": 223, "t50_nearGap": 9.112154313901344}, {"YearMonth": "2012-02", "totalOrders": 2445, "totalShippingRev": 2347.0, "t15_eligible": 1434, "t15_shipAbsorbed": 1806.5, "t15_near": 584, "t15_nearGap": 2.183817808219179, "t20_eligible": 1024, "t20_shipAbsorbed": 1350.5, "t20_near": 505, "t20_nearGap": 2.996632657425743, "t25_eligible": 742, "t25_shipAbsorbed": 1047.0, "t25_near": 487, "t25_nearGap": 3.8041111786447646, "t30_eligible": 507, "t30_shipAbsorbed": 746.5, "t30_near": 478, "t30_nearGap": 4.615335069037657, "t35_eligible": 345, "t35_shipAbsorbed": 530.0, "t35_near": 421, "t35_nearGap": 5.674628301662708, "t40_eligible": 244, "t40_shipAbsorbed": 423.5, "t40_near": 361, "t40_nearGap": 7.13412214404432, "t50_eligible": 134, "t50_shipAbsorbed": 254.5, "t50_near": 211, "t50_nearGap": 8.69408068720379}, {"YearMonth": "2012-01", "totalOrders": 3130, "totalShippingRev": 2737.5, "t15_eligible": 1924, "t15_shipAbsorbed": 2174.5, "t15_near": 660, "t15_nearGap": 2.2954305757575764, "t20_eligible": 1407, "t20_shipAbsorbed": 1735.5, "t20_near": 614, "t20_nearGap": 2.883638605863193, "t25_eligible": 1089, "t25_shipAbsorbed": 1421.0, "t25_near": 578, "t25_nearGap": 3.966163119377163, "t30_eligible": 744, "t30_shipAbsorbed": 1096.5, "t30_near": 615, "t30_nearGap": 4.297389790243903, "t35_eligible": 529, "t35_shipAbsorbed": 805.0, "t35_near": 587, "t35_nearGap": 5.658735763202726, "t40_eligible": 390, "t40_shipAbsorbed": 586.5, "t40_near": 520, "t40_nearGap": 7.393632971153845, "t50_eligible": 235, "t50_shipAbsorbed": 409.0, "t50_near": 294, "t50_nearGap": 8.408744068027213}, {"YearMonth": "2011-12", "totalOrders": 2197, "totalShippingRev": 1608.0, "t15_eligible": 1242, "t15_shipAbsorbed": 1269.0, "t15_near": 584, "t15_nearGap": 2.481654965753425, "t20_eligible": 899, "t20_shipAbsorbed": 961.0, "t20_near": 436, "t20_nearGap": 3.0434144380733947, "t25_eligible": 624, "t25_shipAbsorbed": 742.0, "t25_near": 449, "t25_nearGap": 3.8220998396436525, "t30_eligible": 452, "t30_shipAbsorbed": 576.5, "t30_near": 396, "t30_nearGap": 5.01818161868687, "t35_eligible": 305, "t35_shipAbsorbed": 428.0, "t35_near": 345, "t35_nearGap": 5.578331194202899, "t40_eligible": 227, "t40_shipAbsorbed": 336.5, "t40_near": 289, "t40_nearGap": 6.989440657439446, "t50_eligible": 136, "t50_shipAbsorbed": 218.5, "t50_near": 169, "t50_nearGap": 8.830214739644969}, {"YearMonth": "2011-11", "totalOrders": 2565, "totalShippingRev": 2370.5, "t15_eligible": 1428, "t15_shipAbsorbed": 1657.0, "t15_near": 716, "t15_nearGap": 2.370173435754191, "t20_eligible": 1032, "t20_shipAbsorbed": 1307.5, "t20_near": 548, "t20_nearGap": 3.0880074270072995, "t25_eligible": 738, "t25_shipAbsorbed": 985.0, "t25_near": 516, "t25_nearGap": 3.8592008798449617, "t30_eligible": 523, "t30_shipAbsorbed": 704.0, "t30_near": 450, "t30_nearGap": 4.677580393333333, "t35_eligible": 335, "t35_shipAbsorbed": 523.0, "t35_near": 437, "t35_nearGap": 5.531403771167048, "t40_eligible": 245, "t40_shipAbsorbed": 393.0, "t40_near": 350, "t40_nearGap": 6.866054722857142, "t50_eligible": 137, "t50_shipAbsorbed": 238.5, "t50_near": 198, "t50_nearGap": 8.373958409090909}, {"YearMonth": "2011-10", "totalOrders": 2421, "totalShippingRev": 2317.0, "t15_eligible": 1360, "t15_shipAbsorbed": 1702.0, "t15_near": 639, "t15_nearGap": 2.4358558215962445, "t20_eligible": 969, "t20_shipAbsorbed": 1352.0, "t20_near": 507, "t20_nearGap": 3.124063895463511, "t25_eligible": 702, "t25_shipAbsorbed": 1093.0, "t25_near": 459, "t25_nearGap": 3.894907877995643, "t30_eligible": 501, "t30_shipAbsorbed": 871.0, "t30_near": 414, "t30_nearGap": 4.660352516908213, "t35_eligible": 327, "t35_shipAbsorbed": 653.0, "t35_near": 386, "t35_nearGap": 5.192696831606217, "t40_eligible": 247, "t40_shipAbsorbed": 505.5, "t40_near": 335, "t40_nearGap": 7.1176587253731345, "t50_eligible": 149, "t50_shipAbsorbed": 316.0, "t50_near": 178, "t50_nearGap": 8.49625181460674}, {"YearMonth": "2011-09", "totalOrders": 2020, "totalShippingRev": 1944.5, "t15_eligible": 1203, "t15_shipAbsorbed": 1417.5, "t15_near": 530, "t15_nearGap": 2.2677152830188687, "t20_eligible": 830, "t20_shipAbsorbed": 1086.0, "t20_near": 493, "t20_nearGap": 3.1222312292089254, "t25_eligible": 601, "t25_shipAbsorbed": 830.5, "t25_near": 419, "t25_nearGap": 3.960710548926015, "t30_eligible": 421, "t30_shipAbsorbed": 634.0, "t30_near": 367, "t30_nearGap": 4.577233043596731, "t35_eligible": 266, "t35_shipAbsorbed": 462.0, "t35_near": 358, "t35_nearGap": 5.456047279329608, "t40_eligible": 196, "t40_shipAbsorbed": 374.0, "t40_near": 299, "t40_nearGap": 7.283361327759198, "t50_eligible": 109, "t50_shipAbsorbed": 228.0, "t50_near": 157, "t50_nearGap": 8.703189821656052}, {"YearMonth": "2011-08", "totalOrders": 2378, "totalShippingRev": 2216.0, "t15_eligible": 1487, "t15_shipAbsorbed": 1697.0, "t15_near": 612, "t15_nearGap": 2.326139117647059, "t20_eligible": 1111, "t20_shipAbsorbed": 1355.0, "t20_near": 511, "t20_nearGap": 3.171517410958904, "t25_eligible": 845, "t25_shipAbsorbed": 1060.0, "t25_near": 470, "t25_nearGap": 4.040903678723405, "t30_eligible": 608, "t30_shipAbsorbed": 858.5, "t30_near": 438, "t30_nearGap": 4.331706168949772, "t35_eligible": 403, "t35_shipAbsorbed": 615.0, "t35_near": 472, "t35_nearGap": 5.286518207627118, "t40_eligible": 280, "t40_shipAbsorbed": 434.5, "t40_near": 440, "t40_nearGap": 6.9049412181818175, "t50_eligible": 172, "t50_shipAbsorbed": 329.0, "t50_near": 231, "t50_nearGap": 9.210519155844153}, {"YearMonth": "2011-07", "totalOrders": 2160, "totalShippingRev": 2047.5, "t15_eligible": 1391, "t15_shipAbsorbed": 1587.0, "t15_near": 515, "t15_nearGap": 2.2354897087378647, "t20_eligible": 1000, "t20_shipAbsorbed": 1212.0, "t20_near": 514, "t20_nearGap": 3.0191114785992217, "t25_eligible": 747, "t25_shipAbsorbed": 949.0, "t25_near": 466, "t25_nearGap": 4.098748060085836, "t30_eligible": 505, "t30_shipAbsorbed": 741.0, "t30_near": 435, "t30_nearGap": 4.33170159770115, "t35_eligible": 321, "t35_shipAbsorbed": 544.0, "t35_near": 450, "t35_nearGap": 5.5153916, "t40_eligible": 241, "t40_shipAbsorbed": 449.5, "t40_near": 368, "t40_nearGap": 7.402200366847825, "t50_eligible": 145, "t50_shipAbsorbed": 303.5, "t50_near": 176, "t50_nearGap": 8.486079204545455}, {"YearMonth": "2011-06", "totalOrders": 1976, "totalShippingRev": 2509.5, "t15_eligible": 1314, "t15_shipAbsorbed": 1707.5, "t15_near": 578, "t15_nearGap": 2.189197370242215, "t20_eligible": 900, "t20_shipAbsorbed": 1302.5, "t20_near": 554, "t20_nearGap": 3.1844348339350184, "t25_eligible": 668, "t25_shipAbsorbed": 1032.5, "t25_near": 435, "t25_nearGap": 4.119223841379311, "t30_eligible": 465, "t30_shipAbsorbed": 793.5, "t30_near": 392, "t30_nearGap": 4.647883369897959, "t35_eligible": 300, "t35_shipAbsorbed": 556.5, "t35_near": 390, "t35_nearGap": 5.511883612820512, "t40_eligible": 223, "t40_shipAbsorbed": 419.5, "t40_near": 313, "t40_nearGap": 6.968849920127797, "t50_eligible": 119, "t50_shipAbsorbed": 238.5, "t50_near": 181, "t50_nearGap": 8.536477541436463}, {"YearMonth": "2011-05", "totalOrders": 1996, "totalShippingRev": 2653.5, "t15_eligible": 1347, "t15_shipAbsorbed": 1848.0, "t15_near": 575, "t15_nearGap": 2.1497549217391305, "t20_eligible": 962, "t20_shipAbsorbed": 1375.0, "t20_near": 531, "t20_nearGap": 3.3228239152542374, "t25_eligible": 686, "t25_shipAbsorbed": 1004.5, "t25_near": 452, "t25_nearGap": 3.8784844579646016, "t30_eligible": 455, "t30_shipAbsorbed": 774.0, "t30_near": 454, "t30_nearGap": 4.6554463634361225, "t35_eligible": 303, "t35_shipAbsorbed": 556.0, "t35_near": 399, "t35_nearGap": 5.698000192982456, "t40_eligible": 212, "t40_shipAbsorbed": 416.0, "t40_near": 331, "t40_nearGap": 7.037842903323264, "t50_eligible": 128, "t50_shipAbsorbed": 271.5, "t50_near": 175, "t50_nearGap": 9.31231085142857}, {"YearMonth": "2011-04", "totalOrders": 1944, "totalShippingRev": 2535.0, "t15_eligible": 1320, "t15_shipAbsorbed": 1802.0, "t15_near": 539, "t15_nearGap": 2.2553216326530614, "t20_eligible": 968, "t20_shipAbsorbed": 1436.0, "t20_near": 471, "t20_nearGap": 3.193835532908705, "t25_eligible": 723, "t25_shipAbsorbed": 1101.5, "t25_near": 418, "t25_nearGap": 4.00477980861244, "t30_eligible": 503, "t30_shipAbsorbed": 863.5, "t30_near": 403, "t30_nearGap": 4.494355290322581, "t35_eligible": 320, "t35_shipAbsorbed": 571.0, "t35_near": 420, "t35_nearGap": 5.513385671428571, "t40_eligible": 232, "t40_shipAbsorbed": 426.5, "t40_near": 366, "t40_nearGap": 7.3905480519125675, "t50_eligible": 129, "t50_shipAbsorbed": 248.0, "t50_near": 191, "t50_nearGap": 8.695998157068063}, {"YearMonth": "2011-03", "totalOrders": 1914, "totalShippingRev": 2492.5, "t15_eligible": 1298, "t15_shipAbsorbed": 1712.0, "t15_near": 543, "t15_nearGap": 2.2770828545119715, "t20_eligible": 944, "t20_shipAbsorbed": 1305.0, "t20_near": 473, "t20_nearGap": 3.341915213530655, "t25_eligible": 671, "t25_shipAbsorbed": 980.0, "t25_near": 424, "t25_nearGap": 3.6638356509433967, "t30_eligible": 453, "t30_shipAbsorbed": 675.5, "t30_near": 428, "t30_nearGap": 4.506518289719626, "t35_eligible": 289, "t35_shipAbsorbed": 451.5, "t35_near": 408, "t35_nearGap": 5.543586303921568, "t40_eligible": 196, "t40_shipAbsorbed": 342.5, "t40_near": 353, "t40_nearGap": 7.05453259490085, "t50_eligible": 122, "t50_shipAbsorbed": 248.0, "t50_near": 167, "t50_nearGap": 9.340235814371258}, {"YearMonth": "2011-02", "totalOrders": 1882, "totalShippingRev": 2445.0, "t15_eligible": 1234, "t15_shipAbsorbed": 1669.0, "t15_near": 576, "t15_nearGap": 2.180447916666667, "t20_eligible": 872, "t20_shipAbsorbed": 1247.0, "t20_near": 500, "t20_nearGap": 3.3718025939999996, "t25_eligible": 658, "t25_shipAbsorbed": 1013.5, "t25_near": 373, "t25_nearGap": 4.051001356568365, "t30_eligible": 478, "t30_shipAbsorbed": 799.0, "t30_near": 346, "t30_nearGap": 4.515516260115608, "t35_eligible": 288, "t35_shipAbsorbed": 539.5, "t35_near": 385, "t35_nearGap": 4.9616639766233765, "t40_eligible": 213, "t40_shipAbsorbed": 410.5, "t40_near": 350, "t40_nearGap": 7.1259777742857136, "t50_eligible": 125, "t50_shipAbsorbed": 269.0, "t50_near": 163, "t50_nearGap": 8.308735110429447}, {"YearMonth": "2011-01", "totalOrders": 2473, "totalShippingRev": 3275.0, "t15_eligible": 1659, "t15_shipAbsorbed": 2277.0, "t15_near": 734, "t15_nearGap": 2.2072277656675756, "t20_eligible": 1182, "t20_shipAbsorbed": 1694.0, "t20_near": 670, "t20_nearGap": 3.320656568656717, "t25_eligible": 886, "t25_shipAbsorbed": 1326.0, "t25_near": 528, "t25_nearGap": 3.98843699810606, "t30_eligible": 606, "t30_shipAbsorbed": 1022.0, "t30_near": 524, "t30_nearGap": 4.515036889312977, "t35_eligible": 405, "t35_shipAbsorbed": 765.5, "t35_near": 512, "t35_nearGap": 5.705660279296875, "t40_eligible": 303, "t40_shipAbsorbed": 578.5, "t40_near": 423, "t40_nearGap": 7.382587865248227, "t50_eligible": 191, "t50_shipAbsorbed": 408.5, "t50_near": 214, "t50_nearGap": 8.609126471962616}, {"YearMonth": "2010-12", "totalOrders": 1554, "totalShippingRev": 1968.5, "t15_eligible": 1032, "t15_shipAbsorbed": 1365.5, "t15_near": 465, "t15_nearGap": 2.101079784946237, "t20_eligible": 758, "t20_shipAbsorbed": 982.5, "t20_near": 407, "t20_nearGap": 3.471347864864865, "t25_eligible": 562, "t25_shipAbsorbed": 761.0, "t25_near": 318, "t25_nearGap": 3.862428226415095, "t30_eligible": 401, "t30_shipAbsorbed": 541.5, "t30_near": 318, "t30_nearGap": 4.670475132075472, "t35_eligible": 248, "t35_shipAbsorbed": 368.0, "t35_near": 332, "t35_nearGap": 5.365196186746988, "t40_eligible": 179, "t40_shipAbsorbed": 265.0, "t40_near": 285, "t40_nearGap": 7.034184568421052, "t50_eligible": 104, "t50_shipAbsorbed": 162.0, "t50_near": 144, "t50_nearGap": 8.393619895833332}, {"YearMonth": "2010-11", "totalOrders": 1866, "totalShippingRev": 2407.0, "t15_eligible": 1237, "t15_shipAbsorbed": 1681.5, "t15_near": 574, "t15_nearGap": 1.9860616724738678, "t20_eligible": 892, "t20_shipAbsorbed": 1237.0, "t20_near": 519, "t20_nearGap": 3.4179171136801543, "t25_eligible": 668, "t25_shipAbsorbed": 1021.5, "t25_near": 382, "t25_nearGap": 3.7717077670157066, "t30_eligible": 476, "t30_shipAbsorbed": 724.0, "t30_near": 381, "t30_nearGap": 4.5878004645669295, "t35_eligible": 295, "t35_shipAbsorbed": 516.0, "t35_near": 408, "t35_nearGap": 5.4562000416666665, "t40_eligible": 214, "t40_shipAbsorbed": 367.0, "t40_near": 333, "t40_nearGap": 6.997199804804805, "t50_eligible": 110, "t50_shipAbsorbed": 208.0, "t50_near": 185, "t50_nearGap": 8.52584923783784}, {"YearMonth": "2010-10", "totalOrders": 1874, "totalShippingRev": 2582.5, "t15_eligible": 1252, "t15_shipAbsorbed": 1848.5, "t15_near": 558, "t15_nearGap": 2.1446100358422946, "t20_eligible": 927, "t20_shipAbsorbed": 1378.0, "t20_near": 480, "t20_nearGap": 3.5068655437499996, "t25_eligible": 692, "t25_shipAbsorbed": 1127.0, "t25_near": 366, "t25_nearGap": 3.605030885245902, "t30_eligible": 480, "t30_shipAbsorbed": 831.0, "t30_near": 404, "t30_nearGap": 4.450650863861386, "t35_eligible": 306, "t35_shipAbsorbed": 595.5, "t35_near": 414, "t35_nearGap": 5.415801446859903, "t40_eligible": 230, "t40_shipAbsorbed": 460.0, "t40_near": 334, "t40_nearGap": 7.164865643712574, "t50_eligible": 133, "t50_shipAbsorbed": 266.0, "t50_near": 173, "t50_nearGap": 8.661783462427747}, {"YearMonth": "2010-09", "totalOrders": 1933, "totalShippingRev": 2573.0, "t15_eligible": 1278, "t15_shipAbsorbed": 1804.0, "t15_near": 588, "t15_nearGap": 2.0333197278911572, "t20_eligible": 924, "t20_shipAbsorbed": 1334.5, "t20_near": 516, "t20_nearGap": 3.3641001356589144, "t25_eligible": 662, "t25_shipAbsorbed": 1010.5, "t25_near": 427, "t25_nearGap": 3.707490667447307, "t30_eligible": 467, "t30_shipAbsorbed": 764.5, "t30_near": 405, "t30_nearGap": 4.55355495308642, "t35_eligible": 282, "t35_shipAbsorbed": 517.0, "t35_near": 413, "t35_nearGap": 5.447859573849879, "t40_eligible": 202, "t40_shipAbsorbed": 366.0, "t40_near": 352, "t40_nearGap": 7.349139505681819, "t50_eligible": 115, "t50_shipAbsorbed": 240.5, "t50_near": 167, "t50_nearGap": 8.87100363473054}, {"YearMonth": "2010-08", "totalOrders": 2113, "totalShippingRev": 2812.0, "t15_eligible": 1447, "t15_shipAbsorbed": 2076.5, "t15_near": 581, "t15_nearGap": 2.1151701549053357, "t20_eligible": 1100, "t20_shipAbsorbed": 1591.5, "t20_near": 505, "t20_nearGap": 3.3987700851485148, "t25_eligible": 824, "t25_shipAbsorbed": 1271.0, "t25_near": 423, "t25_nearGap": 3.6525209172576836, "t30_eligible": 569, "t30_shipAbsorbed": 1008.5, "t30_near": 489, "t30_nearGap": 4.5317741901840485, "t35_eligible": 361, "t35_shipAbsorbed": 708.5, "t35_near": 495, "t35_nearGap": 5.465654846464647, "t40_eligible": 265, "t40_shipAbsorbed": 527.0, "t40_near": 401, "t40_nearGap": 7.0990576234413965, "t50_eligible": 158, "t50_shipAbsorbed": 327.0, "t50_near": 203, "t50_nearGap": 8.609067064039408}, {"YearMonth": "2010-07", "totalOrders": 1962, "totalShippingRev": 2633.0, "t15_eligible": 1211, "t15_shipAbsorbed": 1709.5, "t15_near": 636, "t15_nearGap": 2.1697231918238997, "t20_eligible": 896, "t20_shipAbsorbed": 1278.5, "t20_near": 460, "t20_nearGap": 3.0992926521739137, "t25_eligible": 657, "t25_shipAbsorbed": 995.5, "t25_near": 389, "t25_nearGap": 3.6791822544987145, "t30_eligible": 370, "t30_shipAbsorbed": 719.0, "t30_near": 485, "t30_nearGap": 3.889013383505155, "t35_eligible": 254, "t35_shipAbsorbed": 488.5, "t35_near": 433, "t35_nearGap": 5.857822115473441, "t40_eligible": 184, "t40_shipAbsorbed": 390.5, "t40_near": 323, "t40_nearGap": 7.599707145510837, "t50_eligible": 113, "t50_shipAbsorbed": 234.0, "t50_near": 141, "t50_nearGap": 9.008892978723406}, {"YearMonth": "2010-06", "totalOrders": 1865, "totalShippingRev": 2717.5, "t15_eligible": 1168, "t15_shipAbsorbed": 1847.5, "t15_near": 596, "t15_nearGap": 2.241323624161074, "t20_eligible": 866, "t20_shipAbsorbed": 1438.5, "t20_near": 434, "t20_nearGap": 3.0625085000000003, "t25_eligible": 643, "t25_shipAbsorbed": 1131.5, "t25_near": 378, "t25_nearGap": 3.8177900238095237, "t30_eligible": 368, "t30_shipAbsorbed": 845.0, "t30_near": 463, "t30_nearGap": 3.9949723714902814, "t35_eligible": 260, "t35_shipAbsorbed": 604.0, "t35_near": 405, "t35_nearGap": 5.936176595061728, "t40_eligible": 184, "t40_shipAbsorbed": 438.5, "t40_near": 302, "t40_nearGap": 7.324903546357615, "t50_eligible": 106, "t50_shipAbsorbed": 265.5, "t50_near": 154, "t50_nearGap": 9.156646785714285}, {"YearMonth": "2010-05", "totalOrders": 1983, "totalShippingRev": 2738.0, "t15_eligible": 1239, "t15_shipAbsorbed": 1881.0, "t15_near": 640, "t15_nearGap": 2.1802914921875, "t20_eligible": 921, "t20_shipAbsorbed": 1460.5, "t20_near": 466, "t20_nearGap": 3.112296231759656, "t25_eligible": 677, "t25_shipAbsorbed": 1171.5, "t25_near": 405, "t25_nearGap": 3.883139155555556, "t30_eligible": 393, "t30_shipAbsorbed": 845.0, "t30_near": 484, "t30_nearGap": 4.030557661157025, "t35_eligible": 272, "t35_shipAbsorbed": 609.0, "t35_near": 428, "t35_nearGap": 5.84430075233645, "t40_eligible": 195, "t40_shipAbsorbed": 447.0, "t40_near": 337, "t40_nearGap": 7.543509047477744, "t50_eligible": 117, "t50_shipAbsorbed": 318.0, "t50_near": 155, "t50_nearGap": 8.89384106451613}, {"YearMonth": "2010-04", "totalOrders": 2003, "totalShippingRev": 2717.5, "t15_eligible": 1272, "t15_shipAbsorbed": 1809.5, "t15_near": 619, "t15_nearGap": 2.1011087075928923, "t20_eligible": 927, "t20_shipAbsorbed": 1415.0, "t20_near": 491, "t20_nearGap": 3.2637158146639513, "t25_eligible": 701, "t25_shipAbsorbed": 1121.0, "t25_near": 380, "t25_nearGap": 3.819486821052632, "t30_eligible": 392, "t30_shipAbsorbed": 817.0, "t30_near": 504, "t30_nearGap": 4.011310361111112, "t35_eligible": 285, "t35_shipAbsorbed": 584.0, "t35_near": 436, "t35_nearGap": 6.161100396788991, "t40_eligible": 206, "t40_shipAbsorbed": 488.0, "t40_near": 312, "t40_nearGap": 7.4605979294871805, "t50_eligible": 101, "t50_shipAbsorbed": 284.0, "t50_near": 184, "t50_nearGap": 8.457867902173914}, {"YearMonth": "2010-03", "totalOrders": 1872, "totalShippingRev": 2821.0, "t15_eligible": 1200, "t15_shipAbsorbed": 1906.5, "t15_near": 578, "t15_nearGap": 2.2314709342560555, "t20_eligible": 897, "t20_shipAbsorbed": 1455.0, "t20_near": 414, "t20_nearGap": 2.998304398550725, "t25_eligible": 659, "t25_shipAbsorbed": 1123.5, "t25_near": 393, "t25_nearGap": 3.919531496183206, "t30_eligible": 393, "t30_shipAbsorbed": 862.5, "t30_near": 451, "t30_nearGap": 3.9230672062084264, "t35_eligible": 271, "t35_shipAbsorbed": 585.0, "t35_near": 398, "t35_nearGap": 5.619585469849246, "t40_eligible": 198, "t40_shipAbsorbed": 516.0, "t40_near": 332, "t40_nearGap": 7.614249256024097, "t50_eligible": 104, "t50_shipAbsorbed": 286.5, "t50_near": 167, "t50_nearGap": 8.434313688622755}, {"YearMonth": "2010-02", "totalOrders": 1739, "totalShippingRev": 2447.5, "t15_eligible": 1127, "t15_shipAbsorbed": 1703.5, "t15_near": 535, "t15_nearGap": 2.086229130841122, "t20_eligible": 825, "t20_shipAbsorbed": 1230.5, "t20_near": 440, "t20_nearGap": 3.1448321795454546, "t25_eligible": 603, "t25_shipAbsorbed": 892.5, "t25_near": 359, "t25_nearGap": 3.875436275766017, "t30_eligible": 350, "t30_shipAbsorbed": 685.0, "t30_near": 440, "t30_nearGap": 4.1049324, "t35_eligible": 230, "t35_shipAbsorbed": 408.5, "t35_near": 386, "t35_nearGap": 5.702314880829016, "t40_eligible": 161, "t40_shipAbsorbed": 326.5, "t40_near": 299, "t40_nearGap": 7.484025488294315, "t50_eligible": 82, "t50_shipAbsorbed": 200.0, "t50_near": 148, "t50_nearGap": 8.871474675675675}, {"YearMonth": "2010-01", "totalOrders": 2139, "totalShippingRev": 3079.0, "t15_eligible": 1418, "t15_shipAbsorbed": 2201.0, "t15_near": 613, "t15_nearGap": 2.098033587275694, "t20_eligible": 1017, "t20_shipAbsorbed": 1703.5, "t20_near": 540, "t20_nearGap": 2.939957457407408, "t25_eligible": 773, "t25_shipAbsorbed": 1353.0, "t25_near": 435, "t25_nearGap": 3.9417330252873564, "t30_eligible": 467, "t30_shipAbsorbed": 1018.0, "t30_near": 512, "t30_nearGap": 4.114548746093751, "t35_eligible": 315, "t35_shipAbsorbed": 701.0, "t35_near": 482, "t35_nearGap": 5.869968520746888, "t40_eligible": 218, "t40_shipAbsorbed": 550.5, "t40_near": 364, "t40_nearGap": 7.096373972527472, "t50_eligible": 128, "t50_shipAbsorbed": 348.5, "t50_near": 187, "t50_nearGap": 9.12984222459893}, {"YearMonth": "2009-12", "totalOrders": 1422, "totalShippingRev": 2183.5, "t15_eligible": 893, "t15_shipAbsorbed": 1508.0, "t15_near": 460, "t15_nearGap": 2.185559673913043, "t20_eligible": 683, "t20_shipAbsorbed": 1201.5, "t20_near": 340, "t20_nearGap": 3.6180567352941178, "t25_eligible": 500, "t25_shipAbsorbed": 919.0, "t25_near": 276, "t25_nearGap": 3.856039713768116, "t30_eligible": 309, "t30_shipAbsorbed": 705.5, "t30_near": 341, "t30_nearGap": 4.432191290322581, "t35_eligible": 205, "t35_shipAbsorbed": 498.0, "t35_near": 311, "t35_nearGap": 5.936239096463023, "t40_eligible": 153, "t40_shipAbsorbed": 434.5, "t40_near": 246, "t40_nearGap": 7.85275706504065, "t50_eligible": 81, "t50_shipAbsorbed": 248.5, "t50_near": 124, "t50_nearGap": 8.467978572580646}, {"YearMonth": "2009-11", "totalOrders": 1823, "totalShippingRev": 2370.0, "t15_eligible": 1099, "t15_shipAbsorbed": 1548.5, "t15_near": 642, "t15_nearGap": 2.5786658411214947, "t20_eligible": 805, "t20_shipAbsorbed": 1225.0, "t20_near": 425, "t20_nearGap": 3.3449447952941176, "t25_eligible": 562, "t25_shipAbsorbed": 912.0, "t25_near": 402, "t25_nearGap": 4.091242094527363, "t30_eligible": 321, "t30_shipAbsorbed": 677.0, "t30_near": 428, "t30_nearGap": 4.4067287943925235, "t35_eligible": 244, "t35_shipAbsorbed": 494.0, "t35_near": 335, "t35_nearGap": 6.410382435820896, "t40_eligible": 174, "t40_shipAbsorbed": 417.5, "t40_near": 258, "t40_nearGap": 7.804037065891472, "t50_eligible": 87, "t50_shipAbsorbed": 220.0, "t50_near": 157, "t50_nearGap": 8.667154592356686}, {"YearMonth": "2009-10", "totalOrders": 1692, "totalShippingRev": 2016.5, "t15_eligible": 1041, "t15_shipAbsorbed": 1316.0, "t15_near": 576, "t15_nearGap": 2.5577378211805555, "t20_eligible": 791, "t20_shipAbsorbed": 1075.5, "t20_near": 379, "t20_nearGap": 3.291681992084433, "t25_eligible": 571, "t25_shipAbsorbed": 881.5, "t25_near": 372, "t25_nearGap": 4.249182548387097, "t30_eligible": 303, "t30_shipAbsorbed": 682.5, "t30_near": 420, "t30_nearGap": 4.017133652380952, "t35_eligible": 206, "t35_shipAbsorbed": 479.0, "t35_near": 383, "t35_nearGap": 6.2951088067885115, "t40_eligible": 147, "t40_shipAbsorbed": 374.0, "t40_near": 277, "t40_nearGap": 8.130781324909748, "t50_eligible": 84, "t50_shipAbsorbed": 244.5, "t50_near": 122, "t50_nearGap": 8.732860631147542}, {"YearMonth": "2009-09", "totalOrders": 1621, "totalShippingRev": 2421.5, "t15_eligible": 1061, "t15_shipAbsorbed": 1613.5, "t15_near": 486, "t15_nearGap": 2.3154015226337443, "t20_eligible": 813, "t20_shipAbsorbed": 1294.5, "t20_near": 368, "t20_nearGap": 3.3825359755434787, "t25_eligible": 580, "t25_shipAbsorbed": 929.5, "t25_near": 362, "t25_nearGap": 3.96808643922652, "t30_eligible": 321, "t30_shipAbsorbed": 652.0, "t30_near": 442, "t30_nearGap": 4.295480124434389, "t35_eligible": 214, "t35_shipAbsorbed": 394.0, "t35_near": 380, "t35_nearGap": 6.134058860526316, "t40_eligible": 169, "t40_shipAbsorbed": 330.0, "t40_near": 268, "t40_nearGap": 8.363360294776118, "t50_eligible": 90, "t50_shipAbsorbed": 180.0, "t50_near": 124, "t50_nearGap": 7.749692395161291}, {"YearMonth": "2009-08", "totalOrders": 1858, "totalShippingRev": 2778.5, "t15_eligible": 1211, "t15_shipAbsorbed": 1601.5, "t15_near": 546, "t15_nearGap": 2.339845842490842, "t20_eligible": 854, "t20_shipAbsorbed": 1337.5, "t20_near": 490, "t20_nearGap": 3.1733392877551023, "t25_eligible": 622, "t25_shipAbsorbed": 979.5, "t25_near": 459, "t25_nearGap": 4.750999450980393, "t30_eligible": 369, "t30_shipAbsorbed": 689.0, "t30_near": 424, "t30_nearGap": 4.436967660377358, "t35_eligible": 242, "t35_shipAbsorbed": 440.0, "t35_near": 391, "t35_nearGap": 5.997318557544757, "t40_eligible": 173, "t40_shipAbsorbed": 326.0, "t40_near": 302, "t40_nearGap": 7.731581526490066, "t50_eligible": 95, "t50_shipAbsorbed": 208.5, "t50_near": 147, "t50_nearGap": 9.018374843537416}, {"YearMonth": "2009-07", "totalOrders": 1833, "totalShippingRev": 2817.5, "t15_eligible": 1172, "t15_shipAbsorbed": 1613.5, "t15_near": 544, "t15_nearGap": 2.4779876654411765, "t20_eligible": 818, "t20_shipAbsorbed": 1313.0, "t20_near": 465, "t20_nearGap": 3.192454838709677, "t25_eligible": 603, "t25_shipAbsorbed": 984.5, "t25_near": 416, "t25_nearGap": 4.693004185096154, "t30_eligible": 346, "t30_shipAbsorbed": 748.0, "t30_near": 416, "t30_nearGap": 4.131783103365384, "t35_eligible": 230, "t35_shipAbsorbed": 510.0, "t35_near": 382, "t35_nearGap": 5.922189062827225, "t40_eligible": 163, "t40_shipAbsorbed": 409.0, "t40_near": 314, "t40_nearGap": 7.975021732484075, "t50_eligible": 96, "t50_shipAbsorbed": 250.5, "t50_near": 134, "t50_nearGap": 9.075539880597015}, {"YearMonth": "2009-06", "totalOrders": 1804, "totalShippingRev": 2934.5, "t15_eligible": 1112, "t15_shipAbsorbed": 1576.5, "t15_near": 557, "t15_nearGap": 2.387761364452423, "t20_eligible": 785, "t20_shipAbsorbed": 1310.0, "t20_near": 447, "t20_nearGap": 3.338933429530201, "t25_eligible": 545, "t25_shipAbsorbed": 872.5, "t25_near": 422, "t25_nearGap": 4.548710293838863, "t30_eligible": 299, "t30_shipAbsorbed": 630.5, "t30_near": 428, "t30_nearGap": 4.483539497663552, "t35_eligible": 167, "t35_shipAbsorbed": 354.0, "t35_near": 385, "t35_nearGap": 5.726704366233767, "t40_eligible": 132, "t40_shipAbsorbed": 284.0, "t40_near": 279, "t40_nearGap": 8.330011992831542, "t50_eligible": 79, "t50_shipAbsorbed": 171.0, "t50_near": 88, "t50_nearGap": 7.9446176818181815}, {"YearMonth": "2009-05", "totalOrders": 2015, "totalShippingRev": 3029.5, "t15_eligible": 1276, "t15_shipAbsorbed": 1692.0, "t15_near": 597, "t15_nearGap": 2.4544911289782236, "t20_eligible": 856, "t20_shipAbsorbed": 1330.0, "t20_near": 534, "t20_nearGap": 3.2379089269662926, "t25_eligible": 587, "t25_shipAbsorbed": 936.0, "t25_near": 490, "t25_nearGap": 4.573896091836736, "t30_eligible": 327, "t30_shipAbsorbed": 656.0, "t30_near": 465, "t30_nearGap": 4.463832524731183, "t35_eligible": 214, "t35_shipAbsorbed": 411.0, "t35_near": 385, "t35_nearGap": 5.996459293506493, "t40_eligible": 157, "t40_shipAbsorbed": 323.0, "t40_near": 294, "t40_nearGap": 8.111431717687076, "t50_eligible": 85, "t50_shipAbsorbed": 180.5, "t50_near": 129, "t50_nearGap": 8.827222116279069}, {"YearMonth": "2009-04", "totalOrders": 1697, "totalShippingRev": 2411.5, "t15_eligible": 1085, "t15_shipAbsorbed": 1298.5, "t15_near": 503, "t15_nearGap": 2.606020576540755, "t20_eligible": 725, "t20_shipAbsorbed": 979.5, "t20_near": 419, "t20_nearGap": 2.8390216634844867, "t25_eligible": 516, "t25_shipAbsorbed": 655.5, "t25_near": 422, "t25_nearGap": 4.788300206161138, "t30_eligible": 278, "t30_shipAbsorbed": 408.5, "t30_near": 363, "t30_nearGap": 3.8449739146005513, "t35_eligible": 192, "t35_shipAbsorbed": 268.5, "t35_near": 330, "t35_nearGap": 6.067689815151516, "t40_eligible": 132, "t40_shipAbsorbed": 198.5, "t40_near": 287, "t40_nearGap": 8.410531397212543, "t50_eligible": 70, "t50_shipAbsorbed": 121.0, "t50_near": 122, "t50_nearGap": 9.350869852459017}, {"YearMonth": "2009-03", "totalOrders": 1725, "totalShippingRev": 2479.5, "t15_eligible": 1040, "t15_shipAbsorbed": 1265.0, "t15_near": 564, "t15_nearGap": 2.5261354609929074, "t20_eligible": 687, "t20_shipAbsorbed": 975.5, "t20_near": 426, "t20_nearGap": 2.9333746126760563, "t25_eligible": 498, "t25_shipAbsorbed": 648.5, "t25_near": 397, "t25_nearGap": 4.780102322418136, "t30_eligible": 290, "t30_shipAbsorbed": 462.0, "t30_near": 340, "t30_nearGap": 4.237862267647059, "t35_eligible": 194, "t35_shipAbsorbed": 301.5, "t35_near": 310, "t35_nearGap": 6.0005220999999995, "t40_eligible": 131, "t40_shipAbsorbed": 228.0, "t40_near": 260, "t40_nearGap": 7.810316611538461, "t50_eligible": 68, "t50_shipAbsorbed": 126.0, "t50_near": 126, "t50_nearGap": 9.186972206349205}, {"YearMonth": "2009-02", "totalOrders": 1487, "totalShippingRev": 2167.0, "t15_eligible": 881, "t15_shipAbsorbed": 1059.0, "t15_near": 480, "t15_nearGap": 2.591469645833333, "t20_eligible": 614, "t20_shipAbsorbed": 855.0, "t20_near": 316, "t20_nearGap": 2.7480931898734178, "t25_eligible": 427, "t25_shipAbsorbed": 581.0, "t25_near": 362, "t25_nearGap": 4.667379071823205, "t30_eligible": 235, "t30_shipAbsorbed": 360.5, "t30_near": 309, "t30_nearGap": 4.107910003236246, "t35_eligible": 159, "t35_shipAbsorbed": 251.5, "t35_near": 271, "t35_nearGap": 6.0842606974169735, "t40_eligible": 118, "t40_shipAbsorbed": 206.5, "t40_near": 215, "t40_nearGap": 8.304096939534883, "t50_eligible": 74, "t50_shipAbsorbed": 139.5, "t50_near": 85, "t50_nearGap": 8.901407}, {"YearMonth": "2009-01", "totalOrders": 1668, "totalShippingRev": 2545.5, "t15_eligible": 989, "t15_shipAbsorbed": 1279.5, "t15_near": 546, "t15_nearGap": 2.510107252747252, "t20_eligible": 629, "t20_shipAbsorbed": 987.0, "t20_near": 431, "t20_nearGap": 2.8142219373549886, "t25_eligible": 422, "t25_shipAbsorbed": 649.5, "t25_near": 448, "t25_nearGap": 5.023362921875001, "t30_eligible": 239, "t30_shipAbsorbed": 423.0, "t30_near": 306, "t30_nearGap": 4.27345122875817, "t35_eligible": 155, "t35_shipAbsorbed": 271.0, "t35_near": 270, "t35_nearGap": 5.833077192592594, "t40_eligible": 104, "t40_shipAbsorbed": 201.5, "t40_near": 230, "t40_nearGap": 8.013788334782609, "t50_eligible": 59, "t50_shipAbsorbed": 129.5, "t50_near": 96, "t50_nearGap": 9.306438270833333}, {"YearMonth": "2008-12", "totalOrders": 988, "totalShippingRev": 1559.0, "t15_eligible": 557, "t15_shipAbsorbed": 736.0, "t15_near": 343, "t15_nearGap": 2.606183673469387, "t20_eligible": 346, "t20_shipAbsorbed": 526.5, "t20_near": 240, "t20_nearGap": 2.7737757291666667, "t25_eligible": 248, "t25_shipAbsorbed": 389.5, "t25_near": 220, "t25_nearGap": 4.910416604545455, "t30_eligible": 146, "t30_shipAbsorbed": 241.5, "t30_near": 164, "t30_nearGap": 4.021309524390244, "t35_eligible": 97, "t35_shipAbsorbed": 159.5, "t35_near": 152, "t35_nearGap": 5.785965427631578, "t40_eligible": 67, "t40_shipAbsorbed": 115.0, "t40_near": 136, "t40_nearGap": 8.188170205882352, "t50_eligible": 34, "t50_shipAbsorbed": 50.0, "t50_near": 63, "t50_nearGap": 9.277528444444444}, {"YearMonth": "2008-11", "totalOrders": 1248, "totalShippingRev": 1651.5, "t15_eligible": 718, "t15_shipAbsorbed": 717.5, "t15_near": 425, "t15_nearGap": 2.3944374117647063, "t20_eligible": 459, "t20_shipAbsorbed": 530.0, "t20_near": 307, "t20_nearGap": 2.5507311368078183, "t25_eligible": 330, "t25_shipAbsorbed": 352.0, "t25_near": 289, "t25_nearGap": 4.701968252595155, "t30_eligible": 187, "t30_shipAbsorbed": 233.0, "t30_near": 209, "t30_nearGap": 3.2100807416267942, "t35_eligible": 102, "t35_shipAbsorbed": 111.0, "t35_near": 240, "t35_nearGap": 5.198436087499999, "t40_eligible": 64, "t40_shipAbsorbed": 70.5, "t40_near": 202, "t40_nearGap": 7.514064613861385, "t50_eligible": 30, "t50_shipAbsorbed": 37.5, "t50_near": 72, "t50_nearGap": 8.364384166666667}, {"YearMonth": "2008-10", "totalOrders": 1217, "totalShippingRev": 1400.0, "t15_eligible": 716, "t15_shipAbsorbed": 632.0, "t15_near": 421, "t15_nearGap": 2.540834204275535, "t20_eligible": 426, "t20_shipAbsorbed": 455.5, "t20_near": 326, "t20_nearGap": 2.3684259110429458, "t25_eligible": 308, "t25_shipAbsorbed": 306.5, "t25_near": 300, "t25_nearGap": 4.941090010000001, "t30_eligible": 159, "t30_shipAbsorbed": 194.5, "t30_near": 206, "t30_nearGap": 3.3620575728155337, "t35_eligible": 98, "t35_shipAbsorbed": 126.5, "t35_near": 220, "t35_nearGap": 5.891969886363637, "t40_eligible": 65, "t40_shipAbsorbed": 87.0, "t40_near": 157, "t40_nearGap": 7.69655970700637, "t50_eligible": 33, "t50_shipAbsorbed": 46.0, "t50_near": 65, "t50_nearGap": 9.21169206153846}, {"YearMonth": "2008-09", "totalOrders": 964, "totalShippingRev": 1192.0, "t15_eligible": 535, "t15_shipAbsorbed": 486.0, "t15_near": 362, "t15_nearGap": 2.4644889502762437, "t20_eligible": 318, "t20_shipAbsorbed": 332.0, "t20_near": 254, "t20_nearGap": 2.364293086614174, "t25_eligible": 191, "t25_shipAbsorbed": 179.0, "t25_near": 267, "t25_nearGap": 4.569778284644196, "t30_eligible": 124, "t30_shipAbsorbed": 115.0, "t30_near": 134, "t30_nearGap": 4.509150380597015, "t35_eligible": 86, "t35_shipAbsorbed": 82.0, "t35_near": 116, "t35_nearGap": 5.915006465517242, "t40_eligible": 58, "t40_shipAbsorbed": 65.0, "t40_near": 98, "t40_nearGap": 7.0807570510204085, "t50_eligible": 24, "t50_shipAbsorbed": 27.0, "t50_near": 62, "t50_nearGap": 8.565019548387099}, {"YearMonth": "2008-08", "totalOrders": 1148, "totalShippingRev": 1548.0, "t15_eligible": 546, "t15_shipAbsorbed": 516.0, "t15_near": 441, "t15_nearGap": 2.4488697165532884, "t20_eligible": 334, "t20_shipAbsorbed": 383.0, "t20_near": 254, "t20_nearGap": 2.2166102125984253, "t25_eligible": 185, "t25_shipAbsorbed": 209.0, "t25_near": 300, "t25_nearGap": 4.496116193333334, "t30_eligible": 126, "t30_shipAbsorbed": 144.0, "t30_near": 132, "t30_nearGap": 4.838035121212122, "t35_eligible": 82, "t35_shipAbsorbed": 101.0, "t35_near": 109, "t35_nearGap": 5.570929779816514, "t40_eligible": 52, "t40_shipAbsorbed": 69.0, "t40_near": 100, "t40_nearGap": 6.84579699, "t50_eligible": 27, "t50_shipAbsorbed": 35.0, "t50_near": 55, "t50_nearGap": 8.724041836363638}, {"YearMonth": "2008-07", "totalOrders": 833, "totalShippingRev": 1009.0, "t15_eligible": 471, "t15_shipAbsorbed": 418.0, "t15_near": 293, "t15_nearGap": 2.260672013651878, "t20_eligible": 257, "t20_shipAbsorbed": 308.0, "t20_near": 258, "t20_nearGap": 2.3400731627906977, "t25_eligible": 151, "t25_shipAbsorbed": 164.0, "t25_near": 257, "t25_nearGap": 4.74142906225681, "t30_eligible": 98, "t30_shipAbsorbed": 109.0, "t30_near": 113, "t30_nearGap": 4.553914274336283, "t35_eligible": 55, "t35_shipAbsorbed": 54.0, "t35_near": 103, "t35_nearGap": 5.202869601941748, "t40_eligible": 37, "t40_shipAbsorbed": 43.0, "t40_near": 86, "t40_nearGap": 7.218931976744186, "t50_eligible": 11, "t50_shipAbsorbed": 16.0, "t50_near": 44, "t50_nearGap": 8.569214181818182}, {"YearMonth": "2008-06", "totalOrders": 877, "totalShippingRev": 1015.0, "t15_eligible": 477, "t15_shipAbsorbed": 455.0, "t15_near": 338, "t15_nearGap": 2.1610210059171604, "t20_eligible": 284, "t20_shipAbsorbed": 303.0, "t20_near": 265, "t20_nearGap": 2.9123835924528305, "t25_eligible": 150, "t25_shipAbsorbed": 149.0, "t25_near": 244, "t25_nearGap": 4.109965979508197, "t30_eligible": 100, "t30_shipAbsorbed": 111.0, "t30_near": 138, "t30_nearGap": 4.9472585289855076, "t35_eligible": 66, "t35_shipAbsorbed": 76.0, "t35_near": 105, "t35_nearGap": 5.950827476190477, "t40_eligible": 45, "t40_shipAbsorbed": 52.0, "t40_near": 77, "t40_nearGap": 6.651021844155846, "t50_eligible": 28, "t50_shipAbsorbed": 36.0, "t50_near": 38, "t50_nearGap": 8.957952315789475}, {"YearMonth": "2008-05", "totalOrders": 613, "totalShippingRev": 743.0, "t15_eligible": 311, "t15_shipAbsorbed": 292.0, "t15_near": 255, "t15_nearGap": 2.1030309803921576, "t20_eligible": 207, "t20_shipAbsorbed": 203.0, "t20_near": 167, "t20_nearGap": 3.305900514970061, "t25_eligible": 116, "t25_shipAbsorbed": 117.0, "t25_near": 141, "t25_nearGap": 3.8281855035461003, "t30_eligible": 70, "t30_shipAbsorbed": 74.0, "t30_near": 102, "t30_nearGap": 4.59178693137255, "t35_eligible": 50, "t35_shipAbsorbed": 53.0, "t35_near": 81, "t35_nearGap": 6.424318197530866, "t40_eligible": 35, "t40_shipAbsorbed": 45.0, "t40_near": 55, "t40_nearGap": 7.123234236363638, "t50_eligible": 16, "t50_shipAbsorbed": 25.0, "t50_near": 34, "t50_nearGap": 8.345564352941176}, {"YearMonth": "2008-04", "totalOrders": 565, "totalShippingRev": 577.0, "t15_eligible": 258, "t15_shipAbsorbed": 204.0, "t15_near": 270, "t15_nearGap": 2.2051474074074076, "t20_eligible": 178, "t20_shipAbsorbed": 155.0, "t20_near": 129, "t20_nearGap": 3.1162502945736437, "t25_eligible": 96, "t25_shipAbsorbed": 85.0, "t25_near": 134, "t25_nearGap": 3.6274101492537314, "t30_eligible": 63, "t30_shipAbsorbed": 62.0, "t30_near": 97, "t30_nearGap": 5.276721268041238, "t35_eligible": 37, "t35_shipAbsorbed": 31.0, "t35_near": 79, "t35_nearGap": 6.479300974683545, "t40_eligible": 24, "t40_shipAbsorbed": 22.0, "t40_near": 46, "t40_nearGap": 6.120838956521738, "t50_eligible": 8, "t50_shipAbsorbed": 8.0, "t50_near": 29, "t50_nearGap": 8.309248137931034}, {"YearMonth": "2008-03", "totalOrders": 625, "totalShippingRev": 704.0, "t15_eligible": 317, "t15_shipAbsorbed": 278.0, "t15_near": 262, "t15_nearGap": 2.1337255725190842, "t20_eligible": 216, "t20_shipAbsorbed": 205.0, "t20_near": 151, "t20_nearGap": 2.9797363443708615, "t25_eligible": 116, "t25_shipAbsorbed": 126.0, "t25_near": 167, "t25_nearGap": 4.018948844311377, "t30_eligible": 82, "t30_shipAbsorbed": 87.0, "t30_near": 96, "t30_nearGap": 4.986804895833333, "t35_eligible": 60, "t35_shipAbsorbed": 67.0, "t35_near": 69, "t35_nearGap": 6.22923079710145, "t40_eligible": 44, "t40_shipAbsorbed": 45.0, "t40_near": 54, "t40_nearGap": 7.034202611111112, "t50_eligible": 24, "t50_shipAbsorbed": 30.0, "t50_near": 36, "t50_nearGap": 7.972650111111111}, {"YearMonth": "2008-02", "totalOrders": 521, "totalShippingRev": 616.0, "t15_eligible": 277, "t15_shipAbsorbed": 305.0, "t15_near": 211, "t15_nearGap": 2.2005047393364934, "t20_eligible": 202, "t20_shipAbsorbed": 226.0, "t20_near": 113, "t20_nearGap": 3.114186681415929, "t25_eligible": 115, "t25_shipAbsorbed": 156.0, "t25_near": 131, "t25_nearGap": 3.6897117786259543, "t30_eligible": 80, "t30_shipAbsorbed": 110.0, "t30_near": 95, "t30_nearGap": 5.044898378947369, "t35_eligible": 60, "t35_shipAbsorbed": 83.0, "t35_near": 69, "t35_nearGap": 6.358662072463769, "t40_eligible": 40, "t40_shipAbsorbed": 55.0, "t40_near": 54, "t40_nearGap": 6.382268314814815, "t50_eligible": 19, "t50_shipAbsorbed": 21.0, "t50_near": 41, "t50_nearGap": 8.639314487804878}, {"YearMonth": "2008-01", "totalOrders": 654, "totalShippingRev": 675.0, "t15_eligible": 359, "t15_shipAbsorbed": 306.0, "t15_near": 245, "t15_nearGap": 2.2143175510204087, "t20_eligible": 248, "t20_shipAbsorbed": 238.0, "t20_near": 148, "t20_nearGap": 2.8484836689189192, "t25_eligible": 131, "t25_shipAbsorbed": 133.0, "t25_near": 187, "t25_nearGap": 3.7925919304812843, "t30_eligible": 79, "t30_shipAbsorbed": 87.0, "t30_near": 140, "t30_nearGap": 5.222147164285715, "t35_eligible": 62, "t35_shipAbsorbed": 79.0, "t35_near": 85, "t35_nearGap": 6.9725515529411775, "t40_eligible": 41, "t40_shipAbsorbed": 51.0, "t40_near": 52, "t40_nearGap": 6.186923019230769, "t50_eligible": 16, "t50_shipAbsorbed": 25.0, "t50_near": 46, "t50_nearGap": 8.731839130434782}, {"YearMonth": "2007-12", "totalOrders": 374, "totalShippingRev": 443.0, "t15_eligible": 198, "t15_shipAbsorbed": 184.0, "t15_near": 147, "t15_nearGap": 2.348110884353742, "t20_eligible": 144, "t20_shipAbsorbed": 136.0, "t20_near": 79, "t20_nearGap": 3.273677215189873, "t25_eligible": 93, "t25_shipAbsorbed": 93.0, "t25_near": 77, "t25_nearGap": 3.802214038961039, "t30_eligible": 65, "t30_shipAbsorbed": 65.0, "t30_near": 59, "t30_nearGap": 4.558053966101696, "t35_eligible": 39, "t35_shipAbsorbed": 39.0, "t35_near": 60, "t35_nearGap": 5.473571500000001, "t40_eligible": 24, "t40_shipAbsorbed": 25.0, "t40_near": 49, "t40_nearGap": 6.39399793877551, "t50_eligible": 10, "t50_shipAbsorbed": 11.0, "t50_near": 29, "t50_nearGap": 8.82288275862069}, {"YearMonth": "2007-11", "totalOrders": 467, "totalShippingRev": 418.0, "t15_eligible": 257, "t15_shipAbsorbed": 191.0, "t15_near": 180, "t15_nearGap": 2.558776666666667, "t20_eligible": 178, "t20_shipAbsorbed": 141.0, "t20_near": 93, "t20_nearGap": 2.57215259139785, "t25_eligible": 88, "t25_shipAbsorbed": 84.0, "t25_near": 139, "t25_nearGap": 3.9230305251798567, "t30_eligible": 58, "t30_shipAbsorbed": 61.0, "t30_near": 90, "t30_nearGap": 5.403439411111112, "t35_eligible": 41, "t35_shipAbsorbed": 39.0, "t35_near": 52, "t35_nearGap": 5.930662807692309, "t40_eligible": 36, "t40_shipAbsorbed": 35.0, "t40_near": 33, "t40_nearGap": 7.844999242424242, "t50_eligible": 20, "t50_shipAbsorbed": 22.0, "t50_near": 21, "t50_nearGap": 7.043366476190476}, {"YearMonth": "2007-10", "totalOrders": 456, "totalShippingRev": 469.0, "t15_eligible": 247, "t15_shipAbsorbed": 214.0, "t15_near": 179, "t15_nearGap": 2.3666340782122903, "t20_eligible": 169, "t20_shipAbsorbed": 150.0, "t20_near": 107, "t20_nearGap": 3.1078669065420566, "t25_eligible": 98, "t25_shipAbsorbed": 103.0, "t25_near": 109, "t25_nearGap": 3.852861357798166, "t30_eligible": 67, "t30_shipAbsorbed": 83.0, "t30_near": 78, "t30_nearGap": 5.134120346153848, "t35_eligible": 52, "t35_shipAbsorbed": 65.0, "t35_near": 55, "t35_nearGap": 6.454523309090911, "t40_eligible": 45, "t40_shipAbsorbed": 58.0, "t40_near": 33, "t40_nearGap": 6.940699575757576, "t50_eligible": 19, "t50_shipAbsorbed": 29.0, "t50_near": 33, "t50_nearGap": 6.842698545454545}, {"YearMonth": "2007-09", "totalOrders": 493, "totalShippingRev": 529.0, "t15_eligible": 245, "t15_shipAbsorbed": 212.0, "t15_near": 204, "t15_nearGap": 2.2145318627450985, "t20_eligible": 171, "t20_shipAbsorbed": 165.0, "t20_near": 110, "t20_nearGap": 3.171697227272728, "t25_eligible": 93, "t25_shipAbsorbed": 108.0, "t25_near": 115, "t25_nearGap": 3.6484406869565227, "t30_eligible": 62, "t30_shipAbsorbed": 76.0, "t30_near": 82, "t30_nearGap": 5.221171597560977, "t35_eligible": 43, "t35_shipAbsorbed": 54.0, "t35_near": 58, "t35_nearGap": 6.241499637931034, "t40_eligible": 33, "t40_shipAbsorbed": 43.0, "t40_near": 35, "t40_nearGap": 6.544804685714286, "t50_eligible": 14, "t50_shipAbsorbed": 20.0, "t50_near": 29, "t50_nearGap": 7.668091896551726}, {"YearMonth": "2007-08", "totalOrders": 491, "totalShippingRev": 531.0, "t15_eligible": 273, "t15_shipAbsorbed": 262.0, "t15_near": 179, "t15_nearGap": 2.3157396648044695, "t20_eligible": 189, "t20_shipAbsorbed": 201.0, "t20_near": 112, "t20_nearGap": 2.7204971875000004, "t25_eligible": 99, "t25_shipAbsorbed": 130.0, "t25_near": 147, "t25_nearGap": 4.16112012244898, "t30_eligible": 62, "t30_shipAbsorbed": 83.0, "t30_near": 90, "t30_nearGap": 5.192479777777778, "t35_eligible": 44, "t35_shipAbsorbed": 67.0, "t35_near": 58, "t35_nearGap": 5.821374172413794, "t40_eligible": 31, "t40_shipAbsorbed": 49.0, "t40_near": 44, "t40_nearGap": 6.79180234090909, "t50_eligible": 18, "t50_shipAbsorbed": 30.0, "t50_near": 26, "t50_nearGap": 8.956242192307695}, {"YearMonth": "2007-07", "totalOrders": 524, "totalShippingRev": 552.0, "t15_eligible": 274, "t15_shipAbsorbed": 242.0, "t15_near": 223, "t15_nearGap": 2.4112704035874444, "t20_eligible": 210, "t20_shipAbsorbed": 192.0, "t20_near": 100, "t20_nearGap": 3.116783930000001, "t25_eligible": 107, "t25_shipAbsorbed": 103.0, "t25_near": 144, "t25_nearGap": 3.7252637430555557, "t30_eligible": 76, "t30_shipAbsorbed": 82.0, "t30_near": 97, "t30_nearGap": 5.43807407216495, "t35_eligible": 60, "t35_shipAbsorbed": 63.0, "t35_near": 50, "t35_nearGap": 5.69934984, "t40_eligible": 41, "t40_shipAbsorbed": 45.0, "t40_near": 51, "t40_nearGap": 6.426058705882353, "t50_eligible": 20, "t50_shipAbsorbed": 26.0, "t50_near": 40, "t50_nearGap": 8.797992475}, {"YearMonth": "2007-06", "totalOrders": 533, "totalShippingRev": 548.0, "t15_eligible": 290, "t15_shipAbsorbed": 239.0, "t15_near": 205, "t15_nearGap": 2.197161463414634, "t20_eligible": 203, "t20_shipAbsorbed": 185.0, "t20_near": 125, "t20_nearGap": 3.037280736, "t25_eligible": 92, "t25_shipAbsorbed": 90.0, "t25_near": 164, "t25_nearGap": 3.809971737804879, "t30_eligible": 59, "t30_shipAbsorbed": 66.0, "t30_near": 102, "t30_nearGap": 5.357371352941178, "t35_eligible": 44, "t35_shipAbsorbed": 54.0, "t35_near": 56, "t35_nearGap": 6.364607125, "t40_eligible": 30, "t40_shipAbsorbed": 35.0, "t40_near": 39, "t40_nearGap": 6.200775743589743, "t50_eligible": 11, "t50_shipAbsorbed": 21.0, "t50_near": 33, "t50_nearGap": 8.074569121212123}, {"YearMonth": "2007-05", "totalOrders": 515, "totalShippingRev": 232.0, "t15_eligible": 254, "t15_shipAbsorbed": 36.0, "t15_near": 212, "t15_nearGap": 2.698705188679246, "t20_eligible": 164, "t20_shipAbsorbed": 24.0, "t20_near": 110, "t20_nearGap": 2.5942099090909094, "t25_eligible": 91, "t25_shipAbsorbed": 18.0, "t25_near": 132, "t25_nearGap": 4.392646219696971, "t30_eligible": 58, "t30_shipAbsorbed": 15.0, "t30_near": 78, "t30_nearGap": 5.278979256410256, "t35_eligible": 44, "t35_shipAbsorbed": 12.0, "t35_near": 49, "t35_nearGap": 6.292850061224491, "t40_eligible": 33, "t40_shipAbsorbed": 9.0, "t40_near": 33, "t40_nearGap": 6.294971303030303, "t50_eligible": 15, "t50_shipAbsorbed": 9.0, "t50_near": 29, "t50_nearGap": 7.410668551724137}, {"YearMonth": "2007-04", "totalOrders": 452, "totalShippingRev": 241.0, "t15_eligible": 219, "t15_shipAbsorbed": 60.0, "t15_near": 181, "t15_nearGap": 2.442562430939227, "t20_eligible": 163, "t20_shipAbsorbed": 48.0, "t20_near": 88, "t20_nearGap": 3.330464670454546, "t25_eligible": 94, "t25_shipAbsorbed": 24.0, "t25_near": 97, "t25_nearGap": 3.645174979381444, "t30_eligible": 56, "t30_shipAbsorbed": 15.0, "t30_near": 84, "t30_nearGap": 4.767922357142856, "t35_eligible": 45, "t35_shipAbsorbed": 15.0, "t35_near": 57, "t35_nearGap": 6.689971859649122, "t40_eligible": 31, "t40_shipAbsorbed": 12.0, "t40_near": 41, "t40_nearGap": 6.926331634146342, "t50_eligible": 13, "t50_shipAbsorbed": 6.0, "t50_near": 32, "t50_nearGap": 8.75729353125}, {"YearMonth": "2007-03", "totalOrders": 555, "totalShippingRev": 229.0, "t15_eligible": 239, "t15_shipAbsorbed": 42.0, "t15_near": 268, "t15_nearGap": 2.616807462686567, "t20_eligible": 179, "t20_shipAbsorbed": 33.0, "t20_near": 87, "t20_nearGap": 3.0345493908045986, "t25_eligible": 92, "t25_shipAbsorbed": 30.0, "t25_near": 124, "t25_nearGap": 3.921706975806453, "t30_eligible": 65, "t30_shipAbsorbed": 30.0, "t30_near": 73, "t30_nearGap": 5.209866671232877, "t35_eligible": 48, "t35_shipAbsorbed": 30.0, "t35_near": 47, "t35_nearGap": 5.62621474468085, "t40_eligible": 37, "t40_shipAbsorbed": 24.0, "t40_near": 39, "t40_nearGap": 6.737840846153847, "t50_eligible": 14, "t50_shipAbsorbed": 15.0, "t50_near": 34, "t50_nearGap": 7.656293999999999}, {"YearMonth": "2007-02", "totalOrders": 660, "totalShippingRev": 206.0, "t15_eligible": 290, "t15_shipAbsorbed": 39.0, "t15_near": 331, "t15_nearGap": 2.8952903323262844, "t20_eligible": 208, "t20_shipAbsorbed": 33.0, "t20_near": 103, "t20_nearGap": 2.519487233009709, "t25_eligible": 87, "t25_shipAbsorbed": 18.0, "t25_near": 177, "t25_nearGap": 3.7343307005649726, "t30_eligible": 59, "t30_shipAbsorbed": 15.0, "t30_near": 108, "t30_nearGap": 5.818986583333333, "t35_eligible": 46, "t35_shipAbsorbed": 15.0, "t35_near": 47, "t35_nearGap": 6.499495574468085, "t40_eligible": 37, "t40_shipAbsorbed": 15.0, "t40_near": 30, "t40_nearGap": 6.627572933333334, "t50_eligible": 17, "t50_shipAbsorbed": 15.0, "t50_near": 29, "t50_nearGap": 7.662102931034484}, {"YearMonth": "2007-01", "totalOrders": 639, "totalShippingRev": 296.0, "t15_eligible": 272, "t15_shipAbsorbed": 36.0, "t15_near": 290, "t15_nearGap": 2.6718572413793105, "t20_eligible": 196, "t20_shipAbsorbed": 33.0, "t20_near": 108, "t20_nearGap": 2.7931694629629638, "t25_eligible": 92, "t25_shipAbsorbed": 30.0, "t25_near": 156, "t25_nearGap": 4.433208961538463, "t30_eligible": 57, "t30_shipAbsorbed": 27.0, "t30_near": 65, "t30_nearGap": 4.856922892307692, "t35_eligible": 41, "t35_shipAbsorbed": 21.0, "t35_near": 53, "t35_nearGap": 6.018041415094341, "t40_eligible": 32, "t40_shipAbsorbed": 18.0, "t40_near": 35, "t40_nearGap": 6.608685828571429, "t50_eligible": 14, "t50_shipAbsorbed": 9.0, "t50_near": 27, "t50_nearGap": 8.221644000000001}, {"YearMonth": "2006-12", "totalOrders": 457, "totalShippingRev": 156.0, "t15_eligible": 244, "t15_shipAbsorbed": 15.0, "t15_near": 182, "t15_nearGap": 2.8773071428571435, "t20_eligible": 172, "t20_shipAbsorbed": 9.0, "t20_near": 93, "t20_nearGap": 2.733379311827958, "t25_eligible": 69, "t25_shipAbsorbed": 6.0, "t25_near": 150, "t25_nearGap": 4.424349140000001, "t30_eligible": 44, "t30_shipAbsorbed": 6.0, "t30_near": 46, "t30_nearGap": 4.670751239130434, "t35_eligible": 30, "t35_shipAbsorbed": 0.0, "t35_near": 45, "t35_nearGap": 6.419974644444445, "t40_eligible": 23, "t40_shipAbsorbed": 0.0, "t40_near": 27, "t40_nearGap": 6.790996259259259, "t50_eligible": 10, "t50_shipAbsorbed": 0.0, "t50_near": 20, "t50_nearGap": 7.847485450000002}, {"YearMonth": "2006-11", "totalOrders": 452, "totalShippingRev": 254.0, "t15_eligible": 191, "t15_shipAbsorbed": 24.0, "t15_near": 204, "t15_nearGap": 2.6958309313725497, "t20_eligible": 119, "t20_shipAbsorbed": 15.0, "t20_near": 86, "t20_nearGap": 2.5005766860465117, "t25_eligible": 68, "t25_shipAbsorbed": 9.0, "t25_near": 103, "t25_nearGap": 4.586287388349515, "t30_eligible": 41, "t30_shipAbsorbed": 9.0, "t30_near": 53, "t30_nearGap": 4.902703603773586, "t35_eligible": 28, "t35_shipAbsorbed": 9.0, "t35_near": 44, "t35_nearGap": 6.65396125, "t40_eligible": 18, "t40_shipAbsorbed": 3.0, "t40_near": 31, "t40_nearGap": 7.112920903225807, "t50_eligible": 10, "t50_shipAbsorbed": 0.0, "t50_near": 18, "t50_nearGap": 9.623074555555554}, {"YearMonth": "2006-10", "totalOrders": 473, "totalShippingRev": 257.0, "t15_eligible": 213, "t15_shipAbsorbed": 30.0, "t15_near": 190, "t15_nearGap": 2.6552490526315795, "t20_eligible": 135, "t20_shipAbsorbed": 27.0, "t20_near": 92, "t20_nearGap": 2.5443558804347823, "t25_eligible": 80, "t25_shipAbsorbed": 15.0, "t25_near": 107, "t25_nearGap": 4.549822822429907, "t30_eligible": 49, "t30_shipAbsorbed": 15.0, "t30_near": 65, "t30_nearGap": 5.110986630769231, "t35_eligible": 38, "t35_shipAbsorbed": 12.0, "t35_near": 47, "t35_nearGap": 6.949396382978725, "t40_eligible": 25, "t40_shipAbsorbed": 12.0, "t40_near": 31, "t40_nearGap": 6.143261129032257, "t50_eligible": 15, "t50_shipAbsorbed": 12.0, "t50_near": 23, "t50_nearGap": 8.947256130434782}, {"YearMonth": "2006-09", "totalOrders": 369, "totalShippingRev": 185.0, "t15_eligible": 176, "t15_shipAbsorbed": 24.0, "t15_near": 152, "t15_nearGap": 2.779662434210527, "t20_eligible": 116, "t20_shipAbsorbed": 21.0, "t20_near": 74, "t20_nearGap": 2.6347368513513514, "t25_eligible": 66, "t25_shipAbsorbed": 15.0, "t25_near": 88, "t25_nearGap": 4.41952065909091, "t30_eligible": 39, "t30_shipAbsorbed": 9.0, "t30_near": 49, "t30_nearGap": 4.463462204081632, "t35_eligible": 28, "t35_shipAbsorbed": 9.0, "t35_near": 43, "t35_nearGap": 6.361524255813955, "t40_eligible": 20, "t40_shipAbsorbed": 6.0, "t40_near": 30, "t40_nearGap": 7.3251509, "t50_eligible": 6, "t50_shipAbsorbed": 0.0, "t50_near": 22, "t50_nearGap": 7.621940181818181}, {"YearMonth": "2006-08", "totalOrders": 283, "totalShippingRev": 165.0, "t15_eligible": 151, "t15_shipAbsorbed": 36.0, "t15_near": 94, "t15_nearGap": 2.6874148936170217, "t20_eligible": 96, "t20_shipAbsorbed": 24.0, "t20_near": 64, "t20_nearGap": 2.4874214531250005, "t25_eligible": 66, "t25_shipAbsorbed": 18.0, "t25_near": 64, "t25_nearGap": 4.74704340625, "t30_eligible": 40, "t30_shipAbsorbed": 9.0, "t30_near": 39, "t30_nearGap": 3.975846128205128, "t35_eligible": 30, "t35_shipAbsorbed": 6.0, "t35_near": 36, "t35_nearGap": 5.9611445000000005, "t40_eligible": 25, "t40_shipAbsorbed": 6.0, "t40_near": 25, "t40_nearGap": 7.67206384, "t50_eligible": 9, "t50_shipAbsorbed": 3.0, "t50_near": 21, "t50_nearGap": 5.9308997619047625}, {"YearMonth": "2006-07", "totalOrders": 302, "totalShippingRev": 146.0, "t15_eligible": 138, "t15_shipAbsorbed": 18.0, "t15_near": 139, "t15_nearGap": 3.1197266187050365, "t20_eligible": 91, "t20_shipAbsorbed": 18.0, "t20_near": 52, "t20_nearGap": 2.351022826923077, "t25_eligible": 49, "t25_shipAbsorbed": 12.0, "t25_near": 72, "t25_nearGap": 4.5583650972222225, "t30_eligible": 28, "t30_shipAbsorbed": 6.0, "t30_near": 38, "t30_nearGap": 5.059284368421054, "t35_eligible": 24, "t35_shipAbsorbed": 6.0, "t35_near": 26, "t35_nearGap": 7.521157730769231, "t40_eligible": 20, "t40_shipAbsorbed": 6.0, "t40_near": 12, "t40_nearGap": 6.724991, "t50_eligible": 6, "t50_shipAbsorbed": 0.0, "t50_near": 18, "t50_nearGap": 5.6877441666666675}, {"YearMonth": "2006-06", "totalOrders": 265, "totalShippingRev": 108.0, "t15_eligible": 128, "t15_shipAbsorbed": 24.0, "t15_near": 116, "t15_nearGap": 2.4148017241379316, "t20_eligible": 68, "t20_shipAbsorbed": 15.0, "t20_near": 76, "t20_nearGap": 2.909351105263158, "t25_eligible": 42, "t25_shipAbsorbed": 12.0, "t25_near": 60, "t25_nearGap": 4.974246300000001, "t30_eligible": 27, "t30_shipAbsorbed": 12.0, "t30_near": 24, "t30_nearGap": 4.571054125000001, "t35_eligible": 17, "t35_shipAbsorbed": 12.0, "t35_near": 27, "t35_nearGap": 6.324203703703705, "t40_eligible": 12, "t40_shipAbsorbed": 6.0, "t40_near": 16, "t40_nearGap": 6.1221249375, "t50_eligible": 5, "t50_shipAbsorbed": 6.0, "t50_near": 12, "t50_nearGap": 7.866632833333334}, {"YearMonth": "2006-05", "totalOrders": 244, "totalShippingRev": 95.0, "t15_eligible": 110, "t15_shipAbsorbed": 12.0, "t15_near": 111, "t15_nearGap": 2.795544144144144, "t20_eligible": 62, "t20_shipAbsorbed": 9.0, "t20_near": 55, "t20_nearGap": 2.4327361272727277, "t25_eligible": 39, "t25_shipAbsorbed": 3.0, "t25_near": 54, "t25_nearGap": 4.824155296296296, "t30_eligible": 21, "t30_shipAbsorbed": 3.0, "t30_near": 30, "t30_nearGap": 4.620033366666667, "t35_eligible": 15, "t35_shipAbsorbed": 3.0, "t35_near": 26, "t35_nearGap": 7.115415615384616, "t40_eligible": 10, "t40_shipAbsorbed": 3.0, "t40_near": 16, "t40_nearGap": 7.4875126875, "t50_eligible": 4, "t50_shipAbsorbed": 0.0, "t50_near": 11, "t50_nearGap": 9.34549990909091}, {"YearMonth": "2006-04", "totalOrders": 171, "totalShippingRev": 89.0, "t15_eligible": 71, "t15_shipAbsorbed": 15.0, "t15_near": 77, "t15_nearGap": 2.703353246753248, "t20_eligible": 43, "t20_shipAbsorbed": 15.0, "t20_near": 32, "t20_nearGap": 2.4406373437500006, "t25_eligible": 24, "t25_shipAbsorbed": 9.0, "t25_near": 37, "t25_nearGap": 4.421734945945946, "t30_eligible": 14, "t30_shipAbsorbed": 6.0, "t30_near": 24, "t30_nearGap": 5.308362458333335, "t35_eligible": 8, "t35_shipAbsorbed": 6.0, "t35_near": 17, "t35_nearGap": 6.0500119411764715, "t40_eligible": 5, "t40_shipAbsorbed": 6.0, "t40_near": 11, "t40_nearGap": 6.827508999999998, "t50_eligible": 4, "t50_shipAbsorbed": 6.0, "t50_near": 4, "t50_nearGap": 9.825699249999998}, {"YearMonth": "2006-03", "totalOrders": 111, "totalShippingRev": 55.0, "t15_eligible": 54, "t15_shipAbsorbed": 22.0, "t15_near": 44, "t15_nearGap": 2.547756818181818, "t20_eligible": 34, "t20_shipAbsorbed": 19.0, "t20_near": 20, "t20_nearGap": 2.08251495, "t25_eligible": 26, "t25_shipAbsorbed": 16.0, "t25_near": 21, "t25_nearGap": 4.757166571428572, "t30_eligible": 18, "t30_shipAbsorbed": 16.0, "t30_near": 16, "t30_nearGap": 5.4501687500000005, "t35_eligible": 15, "t35_shipAbsorbed": 13.0, "t35_near": 11, "t35_nearGap": 6.766600090909091, "t40_eligible": 9, "t40_shipAbsorbed": 3.0, "t40_near": 10, "t40_nearGap": 4.8082599, "t50_eligible": 6, "t50_shipAbsorbed": 3.0, "t50_near": 9, "t50_nearGap": 8.770288999999998}, {"YearMonth": "2006-02", "totalOrders": 5, "totalShippingRev": 4.0, "t15_eligible": 1, "t15_shipAbsorbed": 0.0, "t15_near": 3, "t15_nearGap": 1.816666666666667, "t20_eligible": 1, "t20_shipAbsorbed": 0.0, "t20_near": 1, "t20_nearGap": 5.300000000000001, "t25_eligible": 1, "t25_shipAbsorbed": 0.0, "t25_near": 0, "t25_nearGap": 0, "t30_eligible": 1, "t30_shipAbsorbed": 0.0, "t30_near": 0, "t30_nearGap": 0, "t35_eligible": 1, "t35_shipAbsorbed": 0.0, "t35_near": 0, "t35_nearGap": 0, "t40_eligible": 1, "t40_shipAbsorbed": 0.0, "t40_near": 0, "t40_nearGap": 0, "t50_eligible": 1, "t50_shipAbsorbed": 0.0, "t50_near": 0, "t50_nearGap": 0}, {"YearMonth": "2006-01", "totalOrders": 4, "totalShippingRev": 0.0, "t15_eligible": 3, "t15_shipAbsorbed": 0.0, "t15_near": 0, "t15_nearGap": 0, "t20_eligible": 2, "t20_shipAbsorbed": 0.0, "t20_near": 1, "t20_nearGap": 1.2500999999999998, "t25_eligible": 2, "t25_shipAbsorbed": 0.0, "t25_near": 1, "t25_nearGap": 6.2501, "t30_eligible": 2, "t30_shipAbsorbed": 0.0, "t30_near": 0, "t30_nearGap": 0, "t35_eligible": 1, "t35_shipAbsorbed": 0.0, "t35_near": 1, "t35_nearGap": 2.6499999999999986, "t40_eligible": 1, "t40_shipAbsorbed": 0.0, "t40_near": 1, "t40_nearGap": 7.649999999999999, "t50_eligible": 0, "t50_shipAbsorbed": 0.0, "t50_near": 1, "t50_nearGap": 0.10020099999999843}, {"YearMonth": "2005-12", "totalOrders": 1, "totalShippingRev": 0.0, "t15_eligible": 1, "t15_shipAbsorbed": 0.0, "t15_near": 0, "t15_nearGap": 0, "t20_eligible": 0, "t20_shipAbsorbed": 0.0, "t20_near": 1, "t20_nearGap": 2.1000000000000014, "t25_eligible": 0, "t25_shipAbsorbed": 0.0, "t25_near": 1, "t25_nearGap": 7.100000000000001, "t30_eligible": 0, "t30_shipAbsorbed": 0.0, "t30_near": 0, "t30_nearGap": 0, "t35_eligible": 0, "t35_shipAbsorbed": 0.0, "t35_near": 0, "t35_nearGap": 0, "t40_eligible": 0, "t40_shipAbsorbed": 0.0, "t40_near": 0, "t40_nearGap": 0, "t50_eligible": 0, "t50_shipAbsorbed": 0.0, "t50_near": 0, "t50_nearGap": 0}, {"YearMonth": "2005-11", "totalOrders": 2, "totalShippingRev": 0.0, "t15_eligible": 2, "t15_shipAbsorbed": 0.0, "t15_near": 0, "t15_nearGap": 0, "t20_eligible": 0, "t20_shipAbsorbed": 0.0, "t20_near": 2, "t20_nearGap": 1.0750495000000004, "t25_eligible": 0, "t25_shipAbsorbed": 0.0, "t25_near": 2, "t25_nearGap": 6.0750495, "t30_eligible": 0, "t30_shipAbsorbed": 0.0, "t30_near": 0, "t30_nearGap": 0, "t35_eligible": 0, "t35_shipAbsorbed": 0.0, "t35_near": 0, "t35_nearGap": 0, "t40_eligible": 0, "t40_shipAbsorbed": 0.0, "t40_near": 0, "t40_nearGap": 0, "t50_eligible": 0, "t50_shipAbsorbed": 0.0, "t50_near": 0, "t50_nearGap": 0}], "meta": {"totalRawOrders": 862962, "totalValidOrders": 728018, "validOrderPct": 84.4, "cancelledOrders": 1074, "pendingOrders": 133870, "totalOrderLines": 906305, "lineDataCoverage": 73.8, "dateMin": "2005-11-18", "dateMax": "2026-01-12", "uniqueCustomers": 230651, "generatedAt": "2026-03-02T05:45:59.013442"}} \ No newline at end of file diff --git a/static/js/app.js b/static/js/app.js new file mode 100644 index 0000000..bb444be --- /dev/null +++ b/static/js/app.js @@ -0,0 +1,402 @@ +/* JustVitamin × QuikCue — Live AI Demos */ + +const $ = s => document.querySelector(s); +const esc = s => { if (!s) return ''; const d = document.createElement('div'); d.textContent = s; return d.innerHTML; }; + +function setStep(id, cls, text) { + const el = $(id); + if (!el) return; + el.parentElement.className = `step ${cls}`; + el.innerHTML = text; +} + +function setBtn(id, loading, text) { + const btn = $(id); + btn.disabled = loading; + btn.classList.toggle('loading', loading); + btn.textContent = text; +} + +// ═══════════════════════════════════════════════════════════════ +// DEMO A — One Product → 12 Assets + Images +// ═══════════════════════════════════════════════════════════════ + +let demoA_product = null; + +async function runDemoA() { + const url = $('#demoA-url').value.trim(); + if (!url) return; + + setBtn('#demoA-btn', true, 'Working...'); + $('#demoA-output').classList.add('hidden'); + ['#a-s1','#a-s2','#a-s3'].forEach(s => setStep(s, '', 'Waiting')); + + // Step 1: Scrape + setStep('#a-s1', 'active', ' Scraping...'); + try { + const r = await fetch('/api/scrape', { + method: 'POST', headers: {'Content-Type':'application/json'}, + body: JSON.stringify({url}) + }); + const product = await r.json(); + if (product.error) throw new Error(product.error); + demoA_product = product; + setStep('#a-s1', 'done', `✓ ${esc(product.title.substring(0,35))}...`); + } catch(e) { + setStep('#a-s1', 'error', `✗ ${esc(e.message)}`); + setBtn('#demoA-btn', false, '🔴 Generate the Whole Pack'); + return; + } + + // Step 2: AI pack + Step 3: Images (parallel) + setStep('#a-s2', 'active', ' Gemini generating 12 assets...'); + setStep('#a-s3', 'active', ' Nano Banana generating images...'); + + const packP = fetch('/api/generate-pack', { + method: 'POST', headers: {'Content-Type':'application/json'}, + body: JSON.stringify(demoA_product) + }).then(r => r.json()); + + const imgP = fetch('/api/generate-images', { + method: 'POST', headers: {'Content-Type':'application/json'}, + body: JSON.stringify(demoA_product) + }).then(r => r.json()); + + // Handle pack + try { + const pack = await packP; + if (pack.error) throw new Error(pack.error); + setStep('#a-s2', 'done', `✓ 12 assets generated (${pack._generation_time})`); + renderAssetPack(pack); + $('#demoA-output').classList.remove('hidden'); + } catch(e) { + setStep('#a-s2', 'error', `✗ ${esc(e.message)}`); + } + + // Handle images + try { + const imgs = await imgP; + if (imgs.error) throw new Error(imgs.error); + setStep('#a-s3', 'done', `✓ Images generated (${imgs._generation_time})`); + renderImages(imgs); + } catch(e) { + setStep('#a-s3', 'error', `✗ ${esc(e.message)}`); + } + + setBtn('#demoA-btn', false, '✓ Done — Run Again'); +} + +function renderAssetPack(pack) { + const meta = $('#demoA-meta'); + meta.innerHTML = ` + 🧠 Model: Gemini 2.5 Flash + Time: ${esc(pack._generation_time)} + 📦 Product: ${esc(pack._product_title)} + `; + + const grid = $('#demoA-assets'); + let cards = ''; + let n = 0; + + // Hero angles + (pack.hero_angles || []).forEach((a, i) => { + n++; + cards += assetCard('hero', `Hero Angle`, n, `"${esc(a.headline)}"`, i*80); + }); + + // PDP Copy + if (pack.pdp_copy) { + n++; + const bullets = (pack.pdp_copy.bullets||[]).map(b => `
  • ${esc(b)}
  • `).join(''); + cards += assetCard('pdp', 'PDP Copy', n, `${esc(pack.pdp_copy.headline)}`, n*80); + n++; + const faqs = (pack.pdp_copy.faq||[]).map(f => `Q: ${esc(f.q)}
    A: ${esc(f.a)}

    `).join(''); + cards += assetCard('pdp', 'FAQ Block', n, faqs, n*80); + } + + // Ad hooks + if (pack.ad_hooks) { + n++; + const hooks = pack.ad_hooks.map(h => `
  • ${esc(h)}
  • `).join(''); + cards += assetCard('ad', '5 Ad Hooks', n, ``, n*80); + } + + // Email subjects + if (pack.email_subjects) { + n++; + const emails = pack.email_subjects.map(e => `${esc(e.subject)}
    ${esc(e.preview)}

    `).join(''); + cards += assetCard('email', 'Email Subjects', n, emails, n*80); + } + + // TikTok + if (pack.tiktok_script) { + n++; + const t = pack.tiktok_script; + cards += assetCard('video', 'TikTok Script', n, ` + ${esc(t.title)}

    + [0-3s] ${esc(t.hook_0_3s)}
    + [3-12s] ${esc(t.body_3_12s)}
    + [12-15s] ${esc(t.cta_12_15s)}

    + ${esc(t.why_it_works)} + `, n*80); + } + + // Blog + if (pack.blog_outline) { + n++; + const b = pack.blog_outline; + const secs = (b.sections||[]).map(s => `
  • ${esc(s)}
  • `).join(''); + cards += assetCard('blog', 'Blog Outline', n, ` + ${esc(b.title)} + SEO: "${esc(b.seo_keyword)}" — ${esc(b.monthly_searches)} mo/searches + `, n*80); + } + + // Meta SEO + if (pack.meta_seo) { + n++; + const m = pack.meta_seo; + cards += assetCard('seo', 'Meta SEO', n, ` + Title: ${esc(m.title)}

    + Description: ${esc(m.description)}

    + ${m.title_chars || '?'} chars title / ${m.desc_chars || '?'} chars desc + `, n*80); + } + + // Alt text + if (pack.alt_text) { + n++; + const alts = pack.alt_text.map(a => `${esc(a.image_type)}:
    Alt: ${esc(a.alt)}
    File: ${esc(a.filename)}

    `).join(''); + cards += assetCard('a11y', 'Alt Text + Filenames', n, alts, n*80); + } + + // A/B Variants + if (pack.ab_variants) { + n++; + const vars = pack.ab_variants.map(v => `${esc(v.label)}: ${esc(v.copy)}

    `).join(''); + cards += assetCard('ad', 'A/B Variants', n, vars + 'Test all — let data pick the winner', n*80); + } + + grid.innerHTML = cards; +} + +function assetCard(type, label, num, content, delay) { + return `
    +
    ${label}#${num}
    +
    ${content}
    `; +} + +function renderImages(imgs) { + const grid = $('#demoA-img-grid'); + const section = $('#demoA-images'); + let html = ''; + const styles = [ + {key:'hero', label:'Hero Banner', desc:'Nano Banana Pro', wide:true}, + {key:'lifestyle', label:'Lifestyle Shot', desc:'Nano Banana'}, + {key:'benefits', label:'Benefits Visual', desc:'Nano Banana Pro'}, + ]; + styles.forEach(s => { + const data = imgs[s.key]; + if (data && data.filename) { + html += `
    + ${s.label} +
    ${s.label} — ${s.desc} · ${data.model||''}
    `; + } + }); + if (html) { + grid.innerHTML = html; + section.classList.remove('hidden'); + } +} + +// ═══════════════════════════════════════════════════════════════ +// DEMO B — Competitor X-Ray +// ═══════════════════════════════════════════════════════════════ + +async function runDemoB() { + const url = $('#demoB-url').value.trim(); + if (!url) return; + + setBtn('#demoB-btn', true, 'Scanning...'); + $('#demoB-output').classList.add('hidden'); + setStep('#b-s1', 'active', ' Scraping competitor...'); + setStep('#b-s2', '', 'Waiting'); + + try { + const r = await fetch('/api/competitor-xray', { + method: 'POST', headers: {'Content-Type':'application/json'}, + body: JSON.stringify({url}) + }); + const data = await r.json(); + if (data.error) throw new Error(data.error); + + setStep('#b-s1', 'done', `✓ Scraped: ${esc((data._scrape_data?.title||'').substring(0,30))}...`); + setStep('#b-s2', 'done', `✓ Analysis complete (${data._generation_time})`); + + renderXray(data); + $('#demoB-output').classList.remove('hidden'); + setBtn('#demoB-btn', false, '✓ Done — Try Another'); + } catch(e) { + setStep('#b-s1', 'error', `✗ ${esc(e.message)}`); + setBtn('#demoB-btn', false, '🔍 X-Ray This Competitor'); + } +} + +function renderXray(data) { + // Left — competitor analysis + const tactics = (data.top_5_tactics||[]).map(t => + `
  • ${esc(t.tactic)} — ${esc(t.explanation)}
  • ` + ).join(''); + + $('#demoB-left').innerHTML = ` + ❌ ${esc(data.competitor_name || 'Competitor')} +
    What they're really selling
    +
    ${esc(data.what_theyre_selling)}
    +
    Top 5 Persuasion Tactics
    +
      ${tactics}
    +
    Weakest Claim / Gap
    +
    ⚠️ ${esc(data.weakest_claim)}
    + `; + + // Right — JV improved + const hero = data.jv_hero_section || {}; + const diffs = (data.differentiators||[]).map(d => + `
  • 🎯${esc(d.point)} — ${esc(d.proof_idea)}
  • ` + ).join(''); + const donts = (data.do_not_say||[]).map(d => `
  • ${esc(d)}
  • `).join(''); + + $('#demoB-right').innerHTML = ` + ✓ Just Vitamins — Upgraded +
    +

    ${esc(hero.headline)}

    +

    ${esc(hero.body)}

    +

    ${esc(hero.value_prop)}

    +
    +
    3 Differentiators + Proof Ideas
    +
    +
    ⚠️ Do Not Say — Compliance
    + `; +} + +// ═══════════════════════════════════════════════════════════════ +// DEMO C — PDP Surgeon +// ═══════════════════════════════════════════════════════════════ + +let demoC_product = null; +let demoC_cache = {}; + +async function runDemoC() { + const url = $('#demoC-url').value.trim(); + if (!url) return; + + setBtn('#demoC-btn', true, 'Working...'); + $('#demoC-output').classList.add('hidden'); + demoC_cache = {}; + setStep('#c-s1', 'active', ' Scraping product...'); + setStep('#c-s2', '', 'Waiting'); + + // Step 1: Scrape + try { + const r = await fetch('/api/scrape', { + method: 'POST', headers: {'Content-Type':'application/json'}, + body: JSON.stringify({url}) + }); + const product = await r.json(); + if (product.error) throw new Error(product.error); + demoC_product = product; + setStep('#c-s1', 'done', `✓ ${esc(product.title.substring(0,35))}...`); + } catch(e) { + setStep('#c-s1', 'error', `✗ ${esc(e.message)}`); + setBtn('#demoC-btn', false, '🎨 Scrape & Rewrite'); + return; + } + + // Step 2: AI rewrite (default style) + const active = document.querySelector('#demoC-toggles .toggle.active'); + const style = active?.dataset.style || 'balanced'; + await rewriteStyle(style); + + setBtn('#demoC-btn', false, '✓ Done — Change URL'); +} + +async function switchDemoC(style, btn) { + document.querySelectorAll('#demoC-toggles .toggle').forEach(t => t.classList.remove('active')); + btn.classList.add('active'); + if (!demoC_product) return; + await rewriteStyle(style); +} + +async function rewriteStyle(style) { + if (demoC_cache[style]) { + renderSurgeon(demoC_product, demoC_cache[style]); + return; + } + + setStep('#c-s2', 'active', ` Gemini rewriting as ${style}...`); + + try { + const r = await fetch('/api/pdp-surgeon', { + method: 'POST', headers: {'Content-Type':'application/json'}, + body: JSON.stringify({product: demoC_product, style}) + }); + const result = await r.json(); + if (result.error) throw new Error(result.error); + demoC_cache[style] = result; + setStep('#c-s2', 'done', `✓ ${style} rewrite (${result._generation_time})`); + renderSurgeon(demoC_product, result); + $('#demoC-output').classList.remove('hidden'); + } catch(e) { + setStep('#c-s2', 'error', `✗ ${esc(e.message)}`); + } +} + +function renderSurgeon(product, result) { + // Left — current + const bullets = (product.benefits||[]).map(b => `
  • ${esc(b)}
  • `).join(''); + $('#demoC-left').innerHTML = ` + ✕ Current PDP +

    ${esc(product.title)}

    +

    ${esc(product.subtitle)}

    +

    ${esc(product.price)} ${esc(product.quantity)}

    + +

    ${esc((product.description||'').substring(0,400))}...

    + `; + + // Right — rewritten + const rBullets = (result.bullets||[]).map(b => + `
    ${esc(b.text)}
    ↑ ${esc(b.annotation)}` + ).join(''); + + $('#demoC-right').innerHTML = ` + ✓ AI-Rewritten — ${esc(result.style||'balanced').toUpperCase()} +

    ${esc(result.title)}

    + ↑ SEO-optimised title +

    ${esc(result.subtitle)}

    + +
    ${esc(result.hero_copy)}
    + ↑ ${esc(result.hero_annotation)} + +
    ${rBullets}
    + +
    ⭐ ${esc(result.social_proof)}
    + ↑ ${esc(result.social_proof_annotation)} + +
    ${esc(result.price_reframe)}
    + ↑ ${esc(result.price_annotation)} + +

    ${esc(result.usage_instruction)}

    + ↑ ${esc(result.usage_annotation)} + +
    + +
    + `; +} + +// Smooth scroll nav +document.querySelectorAll('a[href^="#"]').forEach(a => { + a.addEventListener('click', e => { + const t = document.querySelector(a.getAttribute('href')); + if (t) { e.preventDefault(); t.scrollIntoView({behavior:'smooth'}); } + }); +}); diff --git a/static/offer/index.html b/static/offer/index.html new file mode 100644 index 0000000..6621277 --- /dev/null +++ b/static/offer/index.html @@ -0,0 +1,722 @@ + + + + + +Proposal — Internal AI Infrastructure | Just Vitamins + + + + + +
    +
    +
    + + + +
    + + +
    +
    Proposal — Just Vitamins
    +

    Reverse the acquisition
    decline. Build owned AI
    infrastructure.

    +

    Your repeat customers love you. But new customer discovery is collapsing. This proposal installs the content engine and commerce channels to fix that — infrastructure you own, not an agency dependency.

    + +
    +
    +
    0%
    +
    New Customer Decline
    +
    +
    +
    0%
    +
    Revenue from Peak
    +
    +
    +
    97.4%
    +
    Channel Dependency (Google + Organic)
    +
    +
    +
    + +
    + + +
    +
    01 — YOUR DATA
    +

    The Numbers Don't Lie

    +

    We analysed 728,018 orders spanning 20 years. Two trends dominate everything else.

    + +
    +
    +

    Revenue Trend (£)

    +
    +
    +
    +

    New Customer Acquisition

    +
    +
    +
    + +
    +💪 +
    Your product is not the problem. AOV has climbed from £26 → £35. Repeat rate sits at 37% — well above DTC average. Customers who find you, stay. The product drives loyalty.
    +
    +
    +🚨 +
    Discovery is the problem. New customer volume has collapsed 84% — from 24,600/year in 2020 to under 4,000 in 2025. You're not losing customers. You're failing to find new ones.
    +
    + +
    THE ROOT CAUSE
    +

    97% Channel Dependency

    + +
    +
    +
    +
    +
    +
    Organic + Google Ads = 97.4% of all orders. If Google changes an algorithm, you lose the business.
    +
    Facebook: 0.1%. TikTok: 0%. Instagram: 0%. You have zero social commerce presence in 2025.
    +
    No AI content pipeline. Competitors are producing 10x the content at a fraction of the cost. Every month without these channels = lost addressable revenue.
    +
    +
    + +
    + +
    Cost of waiting: Based on your data, the addressable revenue gap from missing channels is estimated at £5,000–£10,000 per month. Every month without action widens the gap. (See interactive model below)
    +
    +
    + +
    + + +
    +
    02 — WHAT WE'LL BUILD
    +

    Four Pillars. You Own All of It.

    +

    Modular infrastructure — built once, extended over time. No agency lock-in.

    + +
    +
    +
    🏗️
    +
    Pillar 1
    Infrastructure Layer
    +
    +
    +
    +
      +
    • Dedicated cloud server — fully isolated, your data never leaves
    • +
    • Containerised deployment — reliable, portable, zero vendor lock-in
    • +
    • Automated backups, SSL, uptime monitoring
    • +
    • Automation backbone ready for future tools (support inbox, dashboards, email flows)
    • +
    +
    + +
    +
    +
    🎨
    +
    Pillar 2
    AI Media Factory
    +
    +
    +
    +
      +
    • Automated script generation — on-brand, conversion-focused copy at scale
    • +
    • AI image generation workflows — product, lifestyle & social-native visuals
    • +
    • AI UGC-style video workflows — creator-feel content without the creator cost
    • +
    • Structured content library output — organised, tagged, ready to deploy
    • +
    +
    + +
    +
    +
    📊
    +
    Pillar 3
    Commerce Optimisation Engine
    +
    +
    +
    +
      +
    • Review mining → objections, messaging angles, product insights
    • +
    • Competitor structure analysis — pricing, positioning, content gaps
    • +
    • PDP improvement framework — data-driven product page recommendations
    • +
    • Blog/PDP → social repurposing — turn existing content into channel-native posts
    • +
    • No mass AI publishing — all output is SEO-safe and human-reviewed
    • +
    +
    + +
    +
    +
    🎵
    +
    Pillar 4
    TikTok Shop Setup
    +
    +
    +
    +
      +
    • Full TikTok Shop integration with Shopify
    • +
    • 3–5 hero product optimisation — titles, descriptions, creative
    • +
    • Product storytelling structure — hooks, narratives, format frameworks
    • +
    +
    +
    + +
    + + +
    +
    03 — PROJECTED IMPACT
    +

    What Could This Be Worth?

    +

    Adjust the slider to model the impact. All calculations use your actual metrics.

    + +
    +

    Interactive Revenue Model

    +
    Based on your 2025 AOV (£35.02) and repeat rate (37.3%)
    + +
    +
    +New customers per month from social/TikTok channels +100 +
    + +
    +Conservative (25)Moderate (100–200)Aggressive (400) +
    +
    + +
    +
    £3,502
    Monthly New Revenue
    +
    £73,151
    Annual Rev (with LTV)
    +
    5.9x
    Year 1 ROI
    +
    2.1 mo
    Payback Period
    +
    + +
    +Assumptions: AOV = £35.02 (your 2025 actual) · Repeat rate = 37.3% (your actual) · Avg 2 repeat purchases in first year · Year 1 cost = £4,000 build + £500×12 infra + £200×12 AI tools = £12,400 · Conservative — does not include organic uplift from PDP/blog optimisation or existing channel improvements +
    +
    + +
    +💡 +
    Anti-objection: Even at the most conservative setting (25 new customers/month), the infrastructure pays for itself within 7 months. This is not a bet — it's a math problem. And these projections exclude any improvement to your existing Google/Organic channels from PDP optimisation.
    +
    +
    + +
    + + +
    +
    04 — HOW WE DE-RISK THIS
    +

    Controls & Guarantees

    +

    We've designed every gate to protect you.

    + +
    +
    🚦
    Week 4 Checkpoint
    Full review before any ongoing commitment. If you're not satisfied with the build, walk away.
    +
    🔒
    No Mass AI Publishing
    All content is human-reviewed. No SEO risk. No brand safety issues. Structure-led, not spam.
    +
    🚪
    30-Day Exit Clause
    Monthly infrastructure can be cancelled with 30 days' notice. No lock-in contracts.
    +
    🏛️
    Brand Owns Everything
    Your server. Your data. Your workflows. Your content. Full admin access from day one.
    +
    📊
    Weekly Reporting
    Clear updates each week during build. Measurable checkpoints at each phase.
    +
    🛡️
    No Org Change Needed
    This sits behind your existing Shopify store. No team restructuring. No process overhaul.
    +
    +
    + +
    + + +
    +
    05 — TIMELINE
    +

    Build Schedule

    +

    From approval to fully operational.

    + +
    +
    +
    Week 1
    +
    Infrastructure Deployed
    +
    Cloud server provisioned, containers configured, SSL and monitoring active.
    +
    ✓ Checkpoint: Server live, admin access granted
    +
    +
    +
    Week 2
    +
    Shopify + TikTok Connected
    +
    Store integrations wired, TikTok Shop configured, optimisation workflows loaded.
    +
    ✓ Checkpoint: TikTok Shop live with 3–5 products
    +
    +
    +
    Week 3
    +
    AI Media Workflows Live
    +
    Script generation, image creation, and UGC-style video pipelines operational.
    +
    ✓ Checkpoint: First AI content batch produced
    +
    +
    +
    Week 4
    +
    Testing, Documentation, Handover
    +
    Full system testing, documentation delivery, team walkthrough. You're in control.
    +
    ✓ Gate: Full review — proceed or exit before ongoing commitment
    +
    +
    +
    Total delivery: 3–4 weeks from approval
    +
    + +
    + + +
    +
    06 — INVESTMENT
    +

    Investment

    +

    One price. All four pillars. No hidden fees.

    + +
    +
    +
    One-Time Build
    +
    £4,000
    +
    Full infrastructure build & deployment
    +
      +
    • Infrastructure Layer (dedicated server, containers, SSL, backups)
    • +
    • AI Media Factory (scripts, images, UGC-style video workflows)
    • +
    • Commerce Optimisation Engine (review mining, PDP, competitor analysis)
    • +
    • TikTok Shop Setup (integration + 3–5 product optimisation)
    • +
    • Full documentation & team handover
    • +
    +
    +
    +
    Monthly Infrastructure
    +
    £500
    +
    Server, maintenance & monitoring
    +
      +
    • Dedicated server hosting
    • +
    • Automated backups & SSL
    • +
    • Uptime monitoring
    • +
    • 30-day exit clause — no lock-in
    • +
    +
    +
    + +
    +

    Estimated Monthly Running Costs

    +
    Infrastructure & maintenance£500
    +
    AI tool subscriptions (paid directly by brand)£100–300
    +
    Estimated Total Monthly£600–800
    +
    + +
    +📌 +
    Context: £4,000 is less than one month's estimated lost revenue from the acquisition gap. Monthly cost is equivalent to one day's worth of Google Ads spend. This is infrastructure that compounds — every workflow added makes the next one cheaper.
    +
    +
    + +
    + + +
    +
    07 — DECISION
    +

    Next Step

    + +
    +
    What We Need From You
    +

    Three things to get started. Nothing else.

    +
    +
    1
    Confirm approval
    to begin build
    +
    2
    Provide Shopify &
    TikTok access
    +
    3
    15-minute kickoff call
    to align priorities
    +
    +Approve & Start Build → + +
    +
    + +
    + + +
    +
    APPENDIX
    +

    Board Decision Summary

    +

    Forward this to anyone who needs to approve.

    + +
    +

    Decision Summary Internal Use

    +
      +
    1. New customer acquisition has declined 84% (24,600 → 3,900/year) since 2020, driving a 42% revenue decline from peak (£1.82M → £1.05M).
    2. +
    3. Product-market fit is strong: 37% repeat rate, AOV increasing from £26 → £35. The decline is a discovery problem, not a product problem.
    4. +
    5. 97.4% of revenue depends on two channels (Google Organic + Google Ads). Zero social commerce presence. This is a single point of failure.
    6. +
    7. Proposal: Install owned AI infrastructure for content automation, TikTok Shop, PDP optimisation, and competitor insight extraction. Not an agency dependency — brand owns all assets.
    8. +
    9. Investment: £4,000 one-time + £500/mo infrastructure + £100–300/mo AI tools. Estimated total ongoing: £600–800/month.
    10. +
    11. Timeline: Fully operational in 3–4 weeks with weekly checkpoints. Week 4 review gate before ongoing commitment.
    12. +
    13. Risk controls: No mass AI publishing (SEO-safe), 30-day exit clause on monthly, brand retains all access/data/code, weekly reporting during build.
    14. +
    15. Recommendation: Approve build (£4,000 one-time). Measurable Week 4 checkpoint: infrastructure live, first AI content batch produced, TikTok Shop configured with 3–5 products. Conservative ROI shows payback within 2–7 months.
    16. +
    +
    +
    + +
    + + +
    +
    QUESTIONS
    +

    Anticipated Questions

    + +
    Is AI-generated content good enough for our brand?+
    Yes — with the right controls. All output is structure-led and human-reviewed before publishing. We do not mass-publish AI content. The system generates drafts and options; your team approves what goes live. This is the same approach used by premium DTC brands globally.
    + +
    Will this actually bring new customers?+
    The infrastructure creates the capability to reach customers on channels you're currently absent from (TikTok, social, content-driven discovery). Your product already converts and retains — the gap is solely in discovery. Even modest new-channel performance (25–50 new customers/month) delivers positive ROI within months.
    + +
    What if it doesn't work?+
    Week 4 is a formal review gate. If you're not satisfied with the build, there's no ongoing commitment. Monthly infrastructure has a 30-day exit clause. The one-time build cost covers real infrastructure you retain regardless — server, workflows, content library, TikTok Shop configuration.
    + +
    Who manages this after handover?+
    The system is designed to be low-maintenance. Documentation covers all workflows. Day-to-day content generation is semi-automated — your team reviews outputs, not builds pipelines. The £500/mo infrastructure fee covers server maintenance, monitoring, and backups.
    + +
    What access do you need?+
    Shopify collaborator access (not owner), TikTok Shop credentials, and any brand guidelines/assets you have. We do not need payment processor access, customer PII, or admin-level Shopify permissions.
    + +
    Is our data secure?+
    Your infrastructure runs on a dedicated server — not shared. SSL encrypted, automated backups, and the brand has full admin access. No data is shared with third parties. You own the server and everything on it.
    + +
    How is this different from hiring an agency?+
    An agency charges monthly for services and you own nothing when you leave. This is a one-time infrastructure build — you own the server, the workflows, the content, and the integrations. The £500/mo covers hosting and maintenance only. If you cancel, you keep the infrastructure and can self-host.
    +
    + + + +
    + + + + diff --git a/static/proposal/index.html b/static/proposal/index.html new file mode 100644 index 0000000..a56a015 --- /dev/null +++ b/static/proposal/index.html @@ -0,0 +1,1045 @@ + + + + + +AI Media & Automation Infrastructure — Proposal + + + + +
    +
    +
    + +
    + + +
    +
    + + Proposal — Just Vitamins +
    +

    + Internal AI Media
    + & Automation
    + Infrastructure +

    +

    + A private automation backbone installed behind your Shopify store — infrastructure your brand owns, not an agency dependency. +

    +
    +
    + Build Time + 3–4 Weeks +
    +
    + One-Time Build + £4,000 +
    +
    + Monthly + £600–800 +
    +
    +
    +
    + + +
    +
    01 — OBJECTIVE
    +

    What We're Building

    +

    + Install a private automation backbone behind the Shopify store that enables AI-powered content creation, commerce optimisation, and TikTok Shop integration — all owned and controlled by the brand. +

    + +
    +
    +
    🎬
    +
    AI-generated social content
    Text, image & UGC-style video
    +
    +
    +
    🛍️
    +
    TikTok Shop optimisation
    3–5 hero products
    +
    +
    +
    📄
    +
    PDP & blog optimisation
    SEO-safe, structure-led
    +
    +
    +
    🔍
    +
    Competitor & review insights
    Ongoing extraction
    +
    +
    + +
    + 🔐 + This is infrastructure the brand owns — not a managed agency service. You retain full control and access. +
    +
    + +
    + + +
    +
    02 — SCOPE
    +

    Four Pillars of Build

    +

    Each layer is designed to be modular — built once, extended over time.

    + +
    +
    +
    🏗️
    +
    +
    Pillar 1
    +
    Infrastructure Layer
    +
    +
    +
      +
    • Dedicated cloud server — fully isolated environment
    • +
    • Containerised deployment environment for reliability & portability
    • +
    • Automated backups, SSL certificates & uptime monitoring
    • +
    • Automation backbone ready for future tools — support inbox, dashboards, custom integrations
    • +
    +
    + +
    +
    +
    🎨
    +
    +
    Pillar 2
    +
    AI Media Factory
    +
    +
    +
      +
    • Automated script generation — on-brand, conversion-focused copy at scale
    • +
    • AI image generation workflows — product, lifestyle & social-native visuals
    • +
    • AI UGC-style video workflows — authentic creator-feel content without the creator cost
    • +
    • Structured content library output — organised, tagged, ready to deploy
    • +
    +
    + +
    +
    +
    📊
    +
    +
    Pillar 3
    +
    Commerce Optimisation Engine
    +
    +
    +
      +
    • Review mining → extract objections, messaging angles & product insights
    • +
    • Competitor structure analysis — pricing, positioning, content gaps
    • +
    • PDP improvement framework — data-driven product page recommendations
    • +
    • Blog/PDP → social repurposing — turn existing content into channel-native posts
    • +
    • No mass AI publishing — all output is SEO-safe and human-reviewed
    • +
    +
    + +
    +
    +
    🎵
    +
    +
    Pillar 4
    +
    TikTok Shop Setup
    +
    +
    +
      +
    • Full TikTok Shop integration & configuration with Shopify
    • +
    • 3–5 hero product optimisation — titles, descriptions, creative
    • +
    • Product storytelling structure — hooks, narratives & format frameworks
    • +
    +
    +
    + +
    + + +
    +
    03 — TIMELINE
    +

    Build Schedule

    +

    From approval to fully operational in 3–4 weeks.

    + +
    +
    +
    +
    Week 1
    +
    Infrastructure Deployed
    +
    Cloud server provisioned, containers configured, SSL and monitoring active. The foundation is live.
    +
    +
    +
    +
    Week 2
    +
    Shopify + TikTok Connected
    +
    Store integrations wired up, TikTok Shop configured, optimisation workflows loaded and calibrated.
    +
    +
    +
    +
    Week 3
    +
    AI Media Workflows Live
    +
    Script generation, image creation, and UGC-style video pipelines operational. Content library structure in place.
    +
    +
    +
    +
    Week 4
    +
    Testing & Handover
    +
    Full system testing, documentation delivery, team walkthrough. You're in control.
    +
    +
    + +
    + Total delivery: 3–4 weeks from approval +
    +
    + +
    + + +
    +
    04 — INVESTMENT
    +

    Pricing

    +

    A one-time build cost plus lean monthly infrastructure. No ongoing agency fees.

    + +
    +
    +
    One-Time Build
    +
    £4,000
    +
    Full infrastructure build & deployment
    +
    +
    +
    Monthly Infrastructure
    +
    £500
    +
    Server, maintenance & monitoring
    +
    +
    + +
    +

    Estimated Monthly Running Costs

    +
    +
    + 🖥️ + Infrastructure & maintenance +
    +
    £500
    +
    +
    +
    + 🤖 + AI tool subscriptions + (paid by brand) +
    +
    £100–300
    +
    +
    +
    Estimated Total Monthly
    +
    £600–800
    +
    +
    +
    + +
    + + +
    +
    05 — STRATEGIC OUTCOME
    +

    What You Get

    +

    This isn't a tool subscription — it's owned capability.

    + +
    +
    +
    +
    Internal AI Media Capability
    +
    Generate social content, product visuals and UGC-style video in-house — on demand, on brand.
    +
    +
    +
    🔓
    +
    Reduced SaaS Dependency
    +
    No more stitching together 10 tools with 10 subscriptions. One unified system you control.
    +
    +
    +
    🚀
    +
    Faster Experimentation
    +
    Test content, angles, and formats in hours not weeks. Iterate at the speed of ideas.
    +
    +
    +
    🏛️
    +
    Owned Infrastructure
    +
    Your server, your workflows, your data. Built to grow with the business.
    +
    +
    +
    📉
    +
    Reduced Long-Term Agency Reliance
    +
    Move from paying for services to owning systems. The infrastructure compounds — every workflow added makes the next one cheaper.
    +
    +
    +
    + +
    + + +
    +
    +
    Ready to Build?
    +

    If approved, access is provided and build starts immediately. Fully operational in 3–4 weeks.

    + + Let's Go → + + +
    +
    + + + +
    + + + + + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..31ab308 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,161 @@ + + + + + +JustVitamin × QuikCue — AI Content Engine + + + + + + + + + +
    + + +
    +
    ● LIVE AI Content Engine — Powered by Gemini
    +

    Your content engine is
    real and running.

    +

    Paste any Just Vitamins product link. The AI scrapes it live, rewrites every word, generates new product images, and builds a full marketing pack — all in seconds. No mocks. No fakes. Try it.

    + +
    +
    £19.4MLifetime Revenue
    +
    728KOrders Processed
    +
    230KUnique Customers
    +
    20 yrsTrading History
    +
    +
    + + +
    + ⚡ DEMO A — LIVE +

    One Product → 12 Assets in Seconds

    +

    Paste a real Just Vitamins product URL. Gemini scrapes it, then generates a full marketing pack.

    + +
    +
    +
    + + +
    + +
    +
    +
    1. ScrapeWaiting
    +
    2. AI GenerateWaiting
    +
    3. Image GenWaiting
    +
    +
    + + +
    + + +
    + 🔍 DEMO B — LIVE +

    Competitor X-Ray → Instant Offer Upgrade

    +

    Paste any competitor product URL. We scrape it, reverse-engineer their strategy, and build a better JV version.

    + +
    +
    +
    + + +
    + +
    +
    +
    1. Scrape CompetitorWaiting
    +
    2. AI AnalysisWaiting
    +
    +
    + + +
    + + +
    + 🎨 DEMO C — LIVE +

    PDP Surgeon: AI Rewrites in Any Voice

    +

    Scrape a real product, then toggle between 4 conversion styles — each rewritten live by Gemini with annotations.

    + +
    +
    +
    + + +
    + +
    +
    + + + + +
    +
    +
    1. ScrapeWaiting
    +
    2. AI RewriteWaiting
    +
    +
    + + +
    + + +
    +

    This isn't a mockup.
    It's running right now.

    +

    Every demo on this page hits a real API, scrapes real pages, and generates real content. The data dashboard shows real £19.4M in revenue across 728,000 orders.

    +
    + 🚀 Let's Talk — 15 min call + 📊 Explore the Full Dashboard + Built by QuikCue · Powered by Gemini 2.5 Flash + Nano Banana Pro +
    +
    + + + +
    + + + +