--
-- PostgreSQL database dump
--

\restrict fzET4pnkyb0QNVsfxvBzvGfhzOt1kJUUw1sJD9NNngq9mgWlXq3bCZBwDij9Eib

-- Dumped from database version 13.23 (Debian 13.23-0+deb11u1)
-- Dumped by pg_dump version 13.23 (Debian 13.23-0+deb11u1)

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;

--
-- Name: claim_reason_enum; Type: TYPE; Schema: public; Owner: biomket
--

CREATE TYPE public.claim_reason_enum AS ENUM (
    'missing_item',
    'wrong_item',
    'production_failure',
    'other'
);


ALTER TYPE public.claim_reason_enum OWNER TO biomket;

--
-- Name: order_claim_type_enum; Type: TYPE; Schema: public; Owner: biomket
--

CREATE TYPE public.order_claim_type_enum AS ENUM (
    'refund',
    'replace'
);


ALTER TYPE public.order_claim_type_enum OWNER TO biomket;

--
-- Name: order_status_enum; Type: TYPE; Schema: public; Owner: biomket
--

CREATE TYPE public.order_status_enum AS ENUM (
    'pending',
    'completed',
    'draft',
    'archived',
    'canceled',
    'requires_action'
);


ALTER TYPE public.order_status_enum OWNER TO biomket;

--
-- Name: return_status_enum; Type: TYPE; Schema: public; Owner: biomket
--

CREATE TYPE public.return_status_enum AS ENUM (
    'open',
    'requested',
    'received',
    'partially_received',
    'canceled'
);


ALTER TYPE public.return_status_enum OWNER TO biomket;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: account_holder; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.account_holder (
    id text NOT NULL,
    provider_id text NOT NULL,
    external_id text NOT NULL,
    email text,
    data jsonb DEFAULT '{}'::jsonb NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.account_holder OWNER TO biomket;

--
-- Name: api_key; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.api_key (
    id text NOT NULL,
    token text NOT NULL,
    salt text NOT NULL,
    redacted text NOT NULL,
    title text NOT NULL,
    type text NOT NULL,
    last_used_at timestamp with time zone,
    created_by text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    revoked_by text,
    revoked_at timestamp with time zone,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    CONSTRAINT api_key_type_check CHECK ((type = ANY (ARRAY['publishable'::text, 'secret'::text])))
);


ALTER TABLE public.api_key OWNER TO biomket;

--
-- Name: application_method_buy_rules; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.application_method_buy_rules (
    application_method_id text NOT NULL,
    promotion_rule_id text NOT NULL
);


ALTER TABLE public.application_method_buy_rules OWNER TO biomket;

--
-- Name: application_method_target_rules; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.application_method_target_rules (
    application_method_id text NOT NULL,
    promotion_rule_id text NOT NULL
);


ALTER TABLE public.application_method_target_rules OWNER TO biomket;

--
-- Name: auth_identity; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.auth_identity (
    id text NOT NULL,
    app_metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.auth_identity OWNER TO biomket;

--
-- Name: capture; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.capture (
    id text NOT NULL,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    payment_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    created_by text,
    metadata jsonb
);


ALTER TABLE public.capture OWNER TO biomket;

--
-- Name: cart; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart (
    id text NOT NULL,
    region_id text,
    customer_id text,
    sales_channel_id text,
    email text,
    currency_code text NOT NULL,
    shipping_address_id text,
    billing_address_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    completed_at timestamp with time zone,
    locale text
);


ALTER TABLE public.cart OWNER TO biomket;

--
-- Name: cart_address; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_address (
    id text NOT NULL,
    customer_id text,
    company text,
    first_name text,
    last_name text,
    address_1 text,
    address_2 text,
    city text,
    country_code text,
    province text,
    postal_code text,
    phone text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.cart_address OWNER TO biomket;

--
-- Name: cart_line_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_line_item (
    id text NOT NULL,
    cart_id text NOT NULL,
    title text NOT NULL,
    subtitle text,
    thumbnail text,
    quantity integer NOT NULL,
    variant_id text,
    product_id text,
    product_title text,
    product_description text,
    product_subtitle text,
    product_type text,
    product_collection text,
    product_handle text,
    variant_sku text,
    variant_barcode text,
    variant_title text,
    variant_option_values jsonb,
    requires_shipping boolean DEFAULT true NOT NULL,
    is_discountable boolean DEFAULT true NOT NULL,
    is_tax_inclusive boolean DEFAULT false NOT NULL,
    compare_at_unit_price numeric,
    raw_compare_at_unit_price jsonb,
    unit_price numeric NOT NULL,
    raw_unit_price jsonb NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    product_type_id text,
    is_custom_price boolean DEFAULT false NOT NULL,
    is_giftcard boolean DEFAULT false NOT NULL,
    CONSTRAINT cart_line_item_unit_price_check CHECK ((unit_price >= (0)::numeric))
);


ALTER TABLE public.cart_line_item OWNER TO biomket;

--
-- Name: cart_line_item_adjustment; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_line_item_adjustment (
    id text NOT NULL,
    description text,
    promotion_id text,
    code text,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    provider_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    item_id text,
    is_tax_inclusive boolean DEFAULT false NOT NULL,
    CONSTRAINT cart_line_item_adjustment_check CHECK ((amount >= (0)::numeric))
);


ALTER TABLE public.cart_line_item_adjustment OWNER TO biomket;

--
-- Name: cart_line_item_tax_line; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_line_item_tax_line (
    id text NOT NULL,
    description text,
    tax_rate_id text,
    code text NOT NULL,
    rate real NOT NULL,
    provider_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    item_id text
);


ALTER TABLE public.cart_line_item_tax_line OWNER TO biomket;

--
-- Name: cart_payment_collection; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_payment_collection (
    cart_id character varying(255) NOT NULL,
    payment_collection_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.cart_payment_collection OWNER TO biomket;

--
-- Name: cart_promotion; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_promotion (
    cart_id character varying(255) NOT NULL,
    promotion_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.cart_promotion OWNER TO biomket;

--
-- Name: cart_shipping_method; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_shipping_method (
    id text NOT NULL,
    cart_id text NOT NULL,
    name text NOT NULL,
    description jsonb,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    is_tax_inclusive boolean DEFAULT false NOT NULL,
    shipping_option_id text,
    data jsonb,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    CONSTRAINT cart_shipping_method_check CHECK ((amount >= (0)::numeric))
);


ALTER TABLE public.cart_shipping_method OWNER TO biomket;

--
-- Name: cart_shipping_method_adjustment; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_shipping_method_adjustment (
    id text NOT NULL,
    description text,
    promotion_id text,
    code text,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    provider_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    shipping_method_id text
);


ALTER TABLE public.cart_shipping_method_adjustment OWNER TO biomket;

--
-- Name: cart_shipping_method_tax_line; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cart_shipping_method_tax_line (
    id text NOT NULL,
    description text,
    tax_rate_id text,
    code text NOT NULL,
    rate real NOT NULL,
    provider_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    shipping_method_id text
);


ALTER TABLE public.cart_shipping_method_tax_line OWNER TO biomket;

--
-- Name: cms_component_definition; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cms_component_definition (
    id text NOT NULL,
    key text NOT NULL,
    display_name text NOT NULL,
    schema jsonb NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.cms_component_definition OWNER TO biomket;

--
-- Name: cms_component_field; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cms_component_field (
    id text NOT NULL,
    component_type_id text NOT NULL,
    label text NOT NULL,
    api_key text NOT NULL,
    field_type text NOT NULL,
    required boolean NOT NULL,
    default_value jsonb,
    validation_rules jsonb,
    "position" real NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.cms_component_field OWNER TO biomket;

--
-- Name: cms_component_folder; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cms_component_folder (
    id text NOT NULL,
    name text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.cms_component_folder OWNER TO biomket;

--
-- Name: cms_component_instance; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cms_component_instance (
    id text NOT NULL,
    component_type_id text NOT NULL,
    data jsonb NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.cms_component_instance OWNER TO biomket;

--
-- Name: cms_component_type; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cms_component_type (
    id text NOT NULL,
    name text NOT NULL,
    display_name text NOT NULL,
    description text,
    reusable boolean NOT NULL,
    repeatable boolean NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    folder_id text
);


ALTER TABLE public.cms_component_type OWNER TO biomket;

--
-- Name: cms_page; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cms_page (
    id text NOT NULL,
    slug text NOT NULL,
    title text NOT NULL,
    description text,
    meta jsonb,
    published boolean DEFAULT false NOT NULL,
    components jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    status text DEFAULT 'draft'::text
);


ALTER TABLE public.cms_page OWNER TO biomket;

--
-- Name: cms_page_component; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cms_page_component (
    id text NOT NULL,
    page_id text NOT NULL,
    component_instance_id text NOT NULL,
    "position" real NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    page_section_id text
);


ALTER TABLE public.cms_page_component OWNER TO biomket;

--
-- Name: cms_page_section; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.cms_page_section (
    id text NOT NULL,
    page_id text NOT NULL,
    name text NOT NULL,
    "position" real NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    key text NOT NULL
);


ALTER TABLE public.cms_page_section OWNER TO biomket;

--
-- Name: contact_inquiry; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.contact_inquiry (
    id text NOT NULL,
    name_or_company text NOT NULL,
    email text NOT NULL,
    phone text NOT NULL,
    country text NOT NULL,
    company text,
    inquiry_type text NOT NULL,
    privacy_accepted boolean NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    contact_name text,
    industry_type text,
    approximate_waste_volume text,
    needs_description text,
    communications_accepted boolean DEFAULT false NOT NULL
);


ALTER TABLE public.contact_inquiry OWNER TO biomket;

--
-- Name: credit_line; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.credit_line (
    id text NOT NULL,
    cart_id text NOT NULL,
    reference text,
    reference_id text,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.credit_line OWNER TO biomket;

--
-- Name: currency; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.currency (
    code text NOT NULL,
    symbol text NOT NULL,
    symbol_native text NOT NULL,
    decimal_digits integer DEFAULT 0 NOT NULL,
    rounding numeric DEFAULT 0 NOT NULL,
    raw_rounding jsonb NOT NULL,
    name text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.currency OWNER TO biomket;

--
-- Name: customer; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.customer (
    id text NOT NULL,
    company_name text,
    first_name text,
    last_name text,
    email text,
    phone text,
    has_account boolean DEFAULT false NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    created_by text
);


ALTER TABLE public.customer OWNER TO biomket;

--
-- Name: customer_account_holder; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.customer_account_holder (
    customer_id character varying(255) NOT NULL,
    account_holder_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.customer_account_holder OWNER TO biomket;

--
-- Name: customer_address; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.customer_address (
    id text NOT NULL,
    customer_id text NOT NULL,
    address_name text,
    is_default_shipping boolean DEFAULT false NOT NULL,
    is_default_billing boolean DEFAULT false NOT NULL,
    company text,
    first_name text,
    last_name text,
    address_1 text,
    address_2 text,
    city text,
    country_code text,
    province text,
    postal_code text,
    phone text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.customer_address OWNER TO biomket;

--
-- Name: customer_group; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.customer_group (
    id text NOT NULL,
    name text NOT NULL,
    metadata jsonb,
    created_by text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.customer_group OWNER TO biomket;

--
-- Name: customer_group_customer; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.customer_group_customer (
    id text NOT NULL,
    customer_id text NOT NULL,
    customer_group_id text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    created_by text,
    deleted_at timestamp with time zone
);


ALTER TABLE public.customer_group_customer OWNER TO biomket;

--
-- Name: fulfillment; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.fulfillment (
    id text NOT NULL,
    location_id text NOT NULL,
    packed_at timestamp with time zone,
    shipped_at timestamp with time zone,
    delivered_at timestamp with time zone,
    canceled_at timestamp with time zone,
    data jsonb,
    provider_id text,
    shipping_option_id text,
    metadata jsonb,
    delivery_address_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    marked_shipped_by text,
    created_by text,
    requires_shipping boolean DEFAULT true NOT NULL
);


ALTER TABLE public.fulfillment OWNER TO biomket;

--
-- Name: fulfillment_address; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.fulfillment_address (
    id text NOT NULL,
    company text,
    first_name text,
    last_name text,
    address_1 text,
    address_2 text,
    city text,
    country_code text,
    province text,
    postal_code text,
    phone text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.fulfillment_address OWNER TO biomket;

--
-- Name: fulfillment_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.fulfillment_item (
    id text NOT NULL,
    title text NOT NULL,
    sku text NOT NULL,
    barcode text NOT NULL,
    quantity numeric NOT NULL,
    raw_quantity jsonb NOT NULL,
    line_item_id text,
    inventory_item_id text,
    fulfillment_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.fulfillment_item OWNER TO biomket;

--
-- Name: fulfillment_label; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.fulfillment_label (
    id text NOT NULL,
    tracking_number text NOT NULL,
    tracking_url text NOT NULL,
    label_url text NOT NULL,
    fulfillment_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.fulfillment_label OWNER TO biomket;

--
-- Name: fulfillment_provider; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.fulfillment_provider (
    id text NOT NULL,
    is_enabled boolean DEFAULT true NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.fulfillment_provider OWNER TO biomket;

--
-- Name: fulfillment_set; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.fulfillment_set (
    id text NOT NULL,
    name text NOT NULL,
    type text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.fulfillment_set OWNER TO biomket;

--
-- Name: geo_zone; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.geo_zone (
    id text NOT NULL,
    type text DEFAULT 'country'::text NOT NULL,
    country_code text NOT NULL,
    province_code text,
    city text,
    service_zone_id text NOT NULL,
    postal_expression jsonb,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    CONSTRAINT geo_zone_type_check CHECK ((type = ANY (ARRAY['country'::text, 'province'::text, 'city'::text, 'zip'::text])))
);


ALTER TABLE public.geo_zone OWNER TO biomket;

--
-- Name: image; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.image (
    id text NOT NULL,
    url text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    rank integer DEFAULT 0 NOT NULL,
    product_id text NOT NULL
);


ALTER TABLE public.image OWNER TO biomket;

--
-- Name: inventory_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.inventory_item (
    id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    sku text,
    origin_country text,
    hs_code text,
    mid_code text,
    material text,
    weight integer,
    length integer,
    height integer,
    width integer,
    requires_shipping boolean DEFAULT true NOT NULL,
    description text,
    title text,
    thumbnail text,
    metadata jsonb
);


ALTER TABLE public.inventory_item OWNER TO biomket;

--
-- Name: inventory_level; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.inventory_level (
    id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    inventory_item_id text NOT NULL,
    location_id text NOT NULL,
    stocked_quantity numeric DEFAULT 0 NOT NULL,
    reserved_quantity numeric DEFAULT 0 NOT NULL,
    incoming_quantity numeric DEFAULT 0 NOT NULL,
    metadata jsonb,
    raw_stocked_quantity jsonb,
    raw_reserved_quantity jsonb,
    raw_incoming_quantity jsonb
);


ALTER TABLE public.inventory_level OWNER TO biomket;

--
-- Name: invite; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.invite (
    id text NOT NULL,
    email text NOT NULL,
    accepted boolean DEFAULT false NOT NULL,
    token text NOT NULL,
    expires_at timestamp with time zone NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.invite OWNER TO biomket;

--
-- Name: link_module_migrations; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.link_module_migrations (
    id integer NOT NULL,
    table_name character varying(255) NOT NULL,
    link_descriptor jsonb DEFAULT '{}'::jsonb NOT NULL,
    created_at timestamp without time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.link_module_migrations OWNER TO biomket;

--
-- Name: link_module_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: biomket
--

CREATE SEQUENCE public.link_module_migrations_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.link_module_migrations_id_seq OWNER TO biomket;

--
-- Name: link_module_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: biomket
--

ALTER SEQUENCE public.link_module_migrations_id_seq OWNED BY public.link_module_migrations.id;


--
-- Name: location_fulfillment_provider; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.location_fulfillment_provider (
    stock_location_id character varying(255) NOT NULL,
    fulfillment_provider_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.location_fulfillment_provider OWNER TO biomket;

--
-- Name: location_fulfillment_set; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.location_fulfillment_set (
    stock_location_id character varying(255) NOT NULL,
    fulfillment_set_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.location_fulfillment_set OWNER TO biomket;

--
-- Name: mikro_orm_migrations; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.mikro_orm_migrations (
    id integer NOT NULL,
    name character varying(255),
    executed_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP
);


ALTER TABLE public.mikro_orm_migrations OWNER TO biomket;

--
-- Name: mikro_orm_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: biomket
--

CREATE SEQUENCE public.mikro_orm_migrations_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.mikro_orm_migrations_id_seq OWNER TO biomket;

--
-- Name: mikro_orm_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: biomket
--

ALTER SEQUENCE public.mikro_orm_migrations_id_seq OWNED BY public.mikro_orm_migrations.id;


--
-- Name: notification; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.notification (
    id text NOT NULL,
    "to" text NOT NULL,
    channel text NOT NULL,
    template text,
    data jsonb,
    trigger_type text,
    resource_id text,
    resource_type text,
    receiver_id text,
    original_notification_id text,
    idempotency_key text,
    external_id text,
    provider_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    status text DEFAULT 'pending'::text NOT NULL,
    "from" text,
    provider_data jsonb,
    CONSTRAINT notification_status_check CHECK ((status = ANY (ARRAY['pending'::text, 'success'::text, 'failure'::text])))
);


ALTER TABLE public.notification OWNER TO biomket;

--
-- Name: notification_provider; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.notification_provider (
    id text NOT NULL,
    handle text NOT NULL,
    name text NOT NULL,
    is_enabled boolean DEFAULT true NOT NULL,
    channels text[] DEFAULT '{}'::text[] NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.notification_provider OWNER TO biomket;

--
-- Name: order; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public."order" (
    id text NOT NULL,
    region_id text,
    display_id integer,
    customer_id text,
    version integer DEFAULT 1 NOT NULL,
    sales_channel_id text,
    status public.order_status_enum DEFAULT 'pending'::public.order_status_enum NOT NULL,
    is_draft_order boolean DEFAULT false NOT NULL,
    email text,
    currency_code text NOT NULL,
    shipping_address_id text,
    billing_address_id text,
    no_notification boolean,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    canceled_at timestamp with time zone,
    custom_display_id text,
    locale text
);


ALTER TABLE public."order" OWNER TO biomket;

--
-- Name: order_address; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_address (
    id text NOT NULL,
    customer_id text,
    company text,
    first_name text,
    last_name text,
    address_1 text,
    address_2 text,
    city text,
    country_code text,
    province text,
    postal_code text,
    phone text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_address OWNER TO biomket;

--
-- Name: order_cart; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_cart (
    order_id character varying(255) NOT NULL,
    cart_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_cart OWNER TO biomket;

--
-- Name: order_change; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_change (
    id text NOT NULL,
    order_id text NOT NULL,
    version integer NOT NULL,
    description text,
    status text DEFAULT 'pending'::text NOT NULL,
    internal_note text,
    created_by text,
    requested_by text,
    requested_at timestamp with time zone,
    confirmed_by text,
    confirmed_at timestamp with time zone,
    declined_by text,
    declined_reason text,
    metadata jsonb,
    declined_at timestamp with time zone,
    canceled_by text,
    canceled_at timestamp with time zone,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    change_type text,
    deleted_at timestamp with time zone,
    return_id text,
    claim_id text,
    exchange_id text,
    carry_over_promotions boolean,
    CONSTRAINT order_change_status_check CHECK ((status = ANY (ARRAY['confirmed'::text, 'declined'::text, 'requested'::text, 'pending'::text, 'canceled'::text])))
);


ALTER TABLE public.order_change OWNER TO biomket;

--
-- Name: order_change_action; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_change_action (
    id text NOT NULL,
    order_id text,
    version integer,
    ordering bigint NOT NULL,
    order_change_id text,
    reference text,
    reference_id text,
    action text NOT NULL,
    details jsonb,
    amount numeric,
    raw_amount jsonb,
    internal_note text,
    applied boolean DEFAULT false NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    return_id text,
    claim_id text,
    exchange_id text
);


ALTER TABLE public.order_change_action OWNER TO biomket;

--
-- Name: order_change_action_ordering_seq; Type: SEQUENCE; Schema: public; Owner: biomket
--

CREATE SEQUENCE public.order_change_action_ordering_seq
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.order_change_action_ordering_seq OWNER TO biomket;

--
-- Name: order_change_action_ordering_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: biomket
--

ALTER SEQUENCE public.order_change_action_ordering_seq OWNED BY public.order_change_action.ordering;


--
-- Name: order_claim; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_claim (
    id text NOT NULL,
    order_id text NOT NULL,
    return_id text,
    order_version integer NOT NULL,
    display_id integer NOT NULL,
    type public.order_claim_type_enum NOT NULL,
    no_notification boolean,
    refund_amount numeric,
    raw_refund_amount jsonb,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    canceled_at timestamp with time zone,
    created_by text
);


ALTER TABLE public.order_claim OWNER TO biomket;

--
-- Name: order_claim_display_id_seq; Type: SEQUENCE; Schema: public; Owner: biomket
--

CREATE SEQUENCE public.order_claim_display_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.order_claim_display_id_seq OWNER TO biomket;

--
-- Name: order_claim_display_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: biomket
--

ALTER SEQUENCE public.order_claim_display_id_seq OWNED BY public.order_claim.display_id;


--
-- Name: order_claim_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_claim_item (
    id text NOT NULL,
    claim_id text NOT NULL,
    item_id text NOT NULL,
    is_additional_item boolean DEFAULT false NOT NULL,
    reason public.claim_reason_enum,
    quantity numeric NOT NULL,
    raw_quantity jsonb NOT NULL,
    note text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_claim_item OWNER TO biomket;

--
-- Name: order_claim_item_image; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_claim_item_image (
    id text NOT NULL,
    claim_item_id text NOT NULL,
    url text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_claim_item_image OWNER TO biomket;

--
-- Name: order_credit_line; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_credit_line (
    id text NOT NULL,
    order_id text NOT NULL,
    reference text,
    reference_id text,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    version integer DEFAULT 1 NOT NULL
);


ALTER TABLE public.order_credit_line OWNER TO biomket;

--
-- Name: order_display_id_seq; Type: SEQUENCE; Schema: public; Owner: biomket
--

CREATE SEQUENCE public.order_display_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.order_display_id_seq OWNER TO biomket;

--
-- Name: order_display_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: biomket
--

ALTER SEQUENCE public.order_display_id_seq OWNED BY public."order".display_id;


--
-- Name: order_exchange; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_exchange (
    id text NOT NULL,
    order_id text NOT NULL,
    return_id text,
    order_version integer NOT NULL,
    display_id integer NOT NULL,
    no_notification boolean,
    allow_backorder boolean DEFAULT false NOT NULL,
    difference_due numeric,
    raw_difference_due jsonb,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    canceled_at timestamp with time zone,
    created_by text
);


ALTER TABLE public.order_exchange OWNER TO biomket;

--
-- Name: order_exchange_display_id_seq; Type: SEQUENCE; Schema: public; Owner: biomket
--

CREATE SEQUENCE public.order_exchange_display_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.order_exchange_display_id_seq OWNER TO biomket;

--
-- Name: order_exchange_display_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: biomket
--

ALTER SEQUENCE public.order_exchange_display_id_seq OWNED BY public.order_exchange.display_id;


--
-- Name: order_exchange_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_exchange_item (
    id text NOT NULL,
    exchange_id text NOT NULL,
    item_id text NOT NULL,
    quantity numeric NOT NULL,
    raw_quantity jsonb NOT NULL,
    note text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_exchange_item OWNER TO biomket;

--
-- Name: order_fulfillment; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_fulfillment (
    order_id character varying(255) NOT NULL,
    fulfillment_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_fulfillment OWNER TO biomket;

--
-- Name: order_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_item (
    id text NOT NULL,
    order_id text NOT NULL,
    version integer NOT NULL,
    item_id text NOT NULL,
    quantity numeric NOT NULL,
    raw_quantity jsonb NOT NULL,
    fulfilled_quantity numeric NOT NULL,
    raw_fulfilled_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL,
    shipped_quantity numeric NOT NULL,
    raw_shipped_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL,
    return_requested_quantity numeric NOT NULL,
    raw_return_requested_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL,
    return_received_quantity numeric NOT NULL,
    raw_return_received_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL,
    return_dismissed_quantity numeric NOT NULL,
    raw_return_dismissed_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL,
    written_off_quantity numeric NOT NULL,
    raw_written_off_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    delivered_quantity numeric DEFAULT 0 NOT NULL,
    raw_delivered_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL,
    unit_price numeric,
    raw_unit_price jsonb,
    compare_at_unit_price numeric,
    raw_compare_at_unit_price jsonb
);


ALTER TABLE public.order_item OWNER TO biomket;

--
-- Name: order_line_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_line_item (
    id text NOT NULL,
    totals_id text,
    title text NOT NULL,
    subtitle text,
    thumbnail text,
    variant_id text,
    product_id text,
    product_title text,
    product_description text,
    product_subtitle text,
    product_type text,
    product_collection text,
    product_handle text,
    variant_sku text,
    variant_barcode text,
    variant_title text,
    variant_option_values jsonb,
    requires_shipping boolean DEFAULT true NOT NULL,
    is_discountable boolean DEFAULT true NOT NULL,
    is_tax_inclusive boolean DEFAULT false NOT NULL,
    compare_at_unit_price numeric,
    raw_compare_at_unit_price jsonb,
    unit_price numeric NOT NULL,
    raw_unit_price jsonb NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    is_custom_price boolean DEFAULT false NOT NULL,
    product_type_id text,
    is_giftcard boolean DEFAULT false NOT NULL
);


ALTER TABLE public.order_line_item OWNER TO biomket;

--
-- Name: order_line_item_adjustment; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_line_item_adjustment (
    id text NOT NULL,
    description text,
    promotion_id text,
    code text,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    provider_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    item_id text NOT NULL,
    deleted_at timestamp with time zone,
    is_tax_inclusive boolean DEFAULT false NOT NULL,
    version integer DEFAULT 1 NOT NULL
);


ALTER TABLE public.order_line_item_adjustment OWNER TO biomket;

--
-- Name: order_line_item_tax_line; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_line_item_tax_line (
    id text NOT NULL,
    description text,
    tax_rate_id text,
    code text NOT NULL,
    rate numeric NOT NULL,
    raw_rate jsonb NOT NULL,
    provider_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    item_id text NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_line_item_tax_line OWNER TO biomket;

--
-- Name: order_payment_collection; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_payment_collection (
    order_id character varying(255) NOT NULL,
    payment_collection_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_payment_collection OWNER TO biomket;

--
-- Name: order_promotion; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_promotion (
    order_id character varying(255) NOT NULL,
    promotion_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_promotion OWNER TO biomket;

--
-- Name: order_shipping; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_shipping (
    id text NOT NULL,
    order_id text NOT NULL,
    version integer NOT NULL,
    shipping_method_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    return_id text,
    claim_id text,
    exchange_id text
);


ALTER TABLE public.order_shipping OWNER TO biomket;

--
-- Name: order_shipping_method; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_shipping_method (
    id text NOT NULL,
    name text NOT NULL,
    description jsonb,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    is_tax_inclusive boolean DEFAULT false NOT NULL,
    shipping_option_id text,
    data jsonb,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    is_custom_amount boolean DEFAULT false NOT NULL
);


ALTER TABLE public.order_shipping_method OWNER TO biomket;

--
-- Name: order_shipping_method_adjustment; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_shipping_method_adjustment (
    id text NOT NULL,
    description text,
    promotion_id text,
    code text,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    provider_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    shipping_method_id text NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_shipping_method_adjustment OWNER TO biomket;

--
-- Name: order_shipping_method_tax_line; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_shipping_method_tax_line (
    id text NOT NULL,
    description text,
    tax_rate_id text,
    code text NOT NULL,
    rate numeric NOT NULL,
    raw_rate jsonb NOT NULL,
    provider_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    shipping_method_id text NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_shipping_method_tax_line OWNER TO biomket;

--
-- Name: order_summary; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_summary (
    id text NOT NULL,
    order_id text NOT NULL,
    version integer DEFAULT 1 NOT NULL,
    totals jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.order_summary OWNER TO biomket;

--
-- Name: order_transaction; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.order_transaction (
    id text NOT NULL,
    order_id text NOT NULL,
    version integer DEFAULT 1 NOT NULL,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    currency_code text NOT NULL,
    reference text,
    reference_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    return_id text,
    claim_id text,
    exchange_id text
);


ALTER TABLE public.order_transaction OWNER TO biomket;

--
-- Name: payment; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.payment (
    id text NOT NULL,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    currency_code text NOT NULL,
    provider_id text NOT NULL,
    data jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    captured_at timestamp with time zone,
    canceled_at timestamp with time zone,
    payment_collection_id text NOT NULL,
    payment_session_id text NOT NULL,
    metadata jsonb
);


ALTER TABLE public.payment OWNER TO biomket;

--
-- Name: payment_collection; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.payment_collection (
    id text NOT NULL,
    currency_code text NOT NULL,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    authorized_amount numeric,
    raw_authorized_amount jsonb,
    captured_amount numeric,
    raw_captured_amount jsonb,
    refunded_amount numeric,
    raw_refunded_amount jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    completed_at timestamp with time zone,
    status text DEFAULT 'not_paid'::text NOT NULL,
    metadata jsonb,
    CONSTRAINT payment_collection_status_check CHECK ((status = ANY (ARRAY['not_paid'::text, 'awaiting'::text, 'authorized'::text, 'partially_authorized'::text, 'canceled'::text, 'failed'::text, 'partially_captured'::text, 'completed'::text])))
);


ALTER TABLE public.payment_collection OWNER TO biomket;

--
-- Name: payment_collection_payment_providers; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.payment_collection_payment_providers (
    payment_collection_id text NOT NULL,
    payment_provider_id text NOT NULL
);


ALTER TABLE public.payment_collection_payment_providers OWNER TO biomket;

--
-- Name: payment_provider; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.payment_provider (
    id text NOT NULL,
    is_enabled boolean DEFAULT true NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.payment_provider OWNER TO biomket;

--
-- Name: payment_session; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.payment_session (
    id text NOT NULL,
    currency_code text NOT NULL,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    provider_id text NOT NULL,
    data jsonb DEFAULT '{}'::jsonb NOT NULL,
    context jsonb,
    status text DEFAULT 'pending'::text NOT NULL,
    authorized_at timestamp with time zone,
    payment_collection_id text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    CONSTRAINT payment_session_status_check CHECK ((status = ANY (ARRAY['authorized'::text, 'captured'::text, 'pending'::text, 'requires_more'::text, 'error'::text, 'canceled'::text])))
);


ALTER TABLE public.payment_session OWNER TO biomket;

--
-- Name: price; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.price (
    id text NOT NULL,
    title text,
    price_set_id text NOT NULL,
    currency_code text NOT NULL,
    raw_amount jsonb NOT NULL,
    rules_count integer DEFAULT 0,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    price_list_id text,
    amount numeric NOT NULL,
    min_quantity numeric,
    max_quantity numeric,
    raw_min_quantity jsonb,
    raw_max_quantity jsonb
);


ALTER TABLE public.price OWNER TO biomket;

--
-- Name: price_list; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.price_list (
    id text NOT NULL,
    status text DEFAULT 'draft'::text NOT NULL,
    starts_at timestamp with time zone,
    ends_at timestamp with time zone,
    rules_count integer DEFAULT 0,
    title text NOT NULL,
    description text NOT NULL,
    type text DEFAULT 'sale'::text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    CONSTRAINT price_list_status_check CHECK ((status = ANY (ARRAY['active'::text, 'draft'::text]))),
    CONSTRAINT price_list_type_check CHECK ((type = ANY (ARRAY['sale'::text, 'override'::text])))
);


ALTER TABLE public.price_list OWNER TO biomket;

--
-- Name: price_list_rule; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.price_list_rule (
    id text NOT NULL,
    price_list_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    value jsonb,
    attribute text DEFAULT ''::text NOT NULL
);


ALTER TABLE public.price_list_rule OWNER TO biomket;

--
-- Name: price_preference; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.price_preference (
    id text NOT NULL,
    attribute text NOT NULL,
    value text,
    is_tax_inclusive boolean DEFAULT false NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.price_preference OWNER TO biomket;

--
-- Name: price_rule; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.price_rule (
    id text NOT NULL,
    value text NOT NULL,
    priority integer DEFAULT 0 NOT NULL,
    price_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    attribute text DEFAULT ''::text NOT NULL,
    operator text DEFAULT 'eq'::text NOT NULL,
    CONSTRAINT price_rule_operator_check CHECK ((operator = ANY (ARRAY['gte'::text, 'lte'::text, 'gt'::text, 'lt'::text, 'eq'::text])))
);


ALTER TABLE public.price_rule OWNER TO biomket;

--
-- Name: price_set; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.price_set (
    id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.price_set OWNER TO biomket;

--
-- Name: product; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product (
    id text NOT NULL,
    title text NOT NULL,
    handle text NOT NULL,
    subtitle text,
    description text,
    is_giftcard boolean DEFAULT false NOT NULL,
    status text DEFAULT 'draft'::text NOT NULL,
    thumbnail text,
    weight text,
    length text,
    height text,
    width text,
    origin_country text,
    hs_code text,
    mid_code text,
    material text,
    collection_id text,
    type_id text,
    discountable boolean DEFAULT true NOT NULL,
    external_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    metadata jsonb,
    CONSTRAINT product_status_check CHECK ((status = ANY (ARRAY['draft'::text, 'proposed'::text, 'published'::text, 'rejected'::text])))
);


ALTER TABLE public.product OWNER TO biomket;

--
-- Name: product_category; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_category (
    id text NOT NULL,
    name text NOT NULL,
    description text DEFAULT ''::text NOT NULL,
    handle text NOT NULL,
    mpath text NOT NULL,
    is_active boolean DEFAULT false NOT NULL,
    is_internal boolean DEFAULT false NOT NULL,
    rank integer DEFAULT 0 NOT NULL,
    parent_category_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    metadata jsonb
);


ALTER TABLE public.product_category OWNER TO biomket;

--
-- Name: product_category_product; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_category_product (
    product_id text NOT NULL,
    product_category_id text NOT NULL
);


ALTER TABLE public.product_category_product OWNER TO biomket;

--
-- Name: product_collection; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_collection (
    id text NOT NULL,
    title text NOT NULL,
    handle text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_collection OWNER TO biomket;

--
-- Name: product_option; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_option (
    id text NOT NULL,
    title text NOT NULL,
    product_id text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_option OWNER TO biomket;

--
-- Name: product_option_value; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_option_value (
    id text NOT NULL,
    value text NOT NULL,
    option_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_option_value OWNER TO biomket;

--
-- Name: product_product_waste_waste_attribute; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_product_waste_waste_attribute (
    product_id character varying(255) NOT NULL,
    waste_attribute_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_product_waste_waste_attribute OWNER TO biomket;

--
-- Name: product_sales_channel; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_sales_channel (
    product_id character varying(255) NOT NULL,
    sales_channel_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_sales_channel OWNER TO biomket;

--
-- Name: product_shipping_profile; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_shipping_profile (
    product_id character varying(255) NOT NULL,
    shipping_profile_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_shipping_profile OWNER TO biomket;

--
-- Name: product_tag; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_tag (
    id text NOT NULL,
    value text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_tag OWNER TO biomket;

--
-- Name: product_tags; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_tags (
    product_id text NOT NULL,
    product_tag_id text NOT NULL
);


ALTER TABLE public.product_tags OWNER TO biomket;

--
-- Name: product_type; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_type (
    id text NOT NULL,
    value text NOT NULL,
    metadata json,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_type OWNER TO biomket;

--
-- Name: product_variant; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_variant (
    id text NOT NULL,
    title text NOT NULL,
    sku text,
    barcode text,
    ean text,
    upc text,
    allow_backorder boolean DEFAULT false NOT NULL,
    manage_inventory boolean DEFAULT true NOT NULL,
    hs_code text,
    origin_country text,
    mid_code text,
    material text,
    weight integer,
    length integer,
    height integer,
    width integer,
    metadata jsonb,
    variant_rank integer DEFAULT 0,
    product_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    thumbnail text
);


ALTER TABLE public.product_variant OWNER TO biomket;

--
-- Name: product_variant_inventory_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_variant_inventory_item (
    variant_id character varying(255) NOT NULL,
    inventory_item_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    required_quantity integer DEFAULT 1 NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_variant_inventory_item OWNER TO biomket;

--
-- Name: product_variant_option; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_variant_option (
    variant_id text NOT NULL,
    option_value_id text NOT NULL
);


ALTER TABLE public.product_variant_option OWNER TO biomket;

--
-- Name: product_variant_price_set; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_variant_price_set (
    variant_id character varying(255) NOT NULL,
    price_set_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_variant_price_set OWNER TO biomket;

--
-- Name: product_variant_product_image; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.product_variant_product_image (
    id text NOT NULL,
    variant_id text NOT NULL,
    image_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.product_variant_product_image OWNER TO biomket;

--
-- Name: promotion; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.promotion (
    id text NOT NULL,
    code text NOT NULL,
    campaign_id text,
    is_automatic boolean DEFAULT false NOT NULL,
    type text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    status text DEFAULT 'draft'::text NOT NULL,
    is_tax_inclusive boolean DEFAULT false NOT NULL,
    "limit" integer,
    used integer DEFAULT 0 NOT NULL,
    metadata jsonb,
    CONSTRAINT promotion_status_check CHECK ((status = ANY (ARRAY['draft'::text, 'active'::text, 'inactive'::text]))),
    CONSTRAINT promotion_type_check CHECK ((type = ANY (ARRAY['standard'::text, 'buyget'::text])))
);


ALTER TABLE public.promotion OWNER TO biomket;

--
-- Name: promotion_application_method; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.promotion_application_method (
    id text NOT NULL,
    value numeric,
    raw_value jsonb,
    max_quantity integer,
    apply_to_quantity integer,
    buy_rules_min_quantity integer,
    type text NOT NULL,
    target_type text NOT NULL,
    allocation text,
    promotion_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    currency_code text,
    CONSTRAINT promotion_application_method_allocation_check CHECK ((allocation = ANY (ARRAY['each'::text, 'across'::text, 'once'::text]))),
    CONSTRAINT promotion_application_method_target_type_check CHECK ((target_type = ANY (ARRAY['order'::text, 'shipping_methods'::text, 'items'::text]))),
    CONSTRAINT promotion_application_method_type_check CHECK ((type = ANY (ARRAY['fixed'::text, 'percentage'::text])))
);


ALTER TABLE public.promotion_application_method OWNER TO biomket;

--
-- Name: promotion_campaign; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.promotion_campaign (
    id text NOT NULL,
    name text NOT NULL,
    description text,
    campaign_identifier text NOT NULL,
    starts_at timestamp with time zone,
    ends_at timestamp with time zone,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.promotion_campaign OWNER TO biomket;

--
-- Name: promotion_campaign_budget; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.promotion_campaign_budget (
    id text NOT NULL,
    type text NOT NULL,
    campaign_id text NOT NULL,
    "limit" numeric,
    raw_limit jsonb,
    used numeric DEFAULT 0 NOT NULL,
    raw_used jsonb NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    currency_code text,
    attribute text,
    CONSTRAINT promotion_campaign_budget_type_check CHECK ((type = ANY (ARRAY['spend'::text, 'usage'::text, 'use_by_attribute'::text, 'spend_by_attribute'::text])))
);


ALTER TABLE public.promotion_campaign_budget OWNER TO biomket;

--
-- Name: promotion_campaign_budget_usage; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.promotion_campaign_budget_usage (
    id text NOT NULL,
    attribute_value text NOT NULL,
    used numeric DEFAULT 0 NOT NULL,
    budget_id text NOT NULL,
    raw_used jsonb NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.promotion_campaign_budget_usage OWNER TO biomket;

--
-- Name: promotion_promotion_rule; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.promotion_promotion_rule (
    promotion_id text NOT NULL,
    promotion_rule_id text NOT NULL
);


ALTER TABLE public.promotion_promotion_rule OWNER TO biomket;

--
-- Name: promotion_rule; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.promotion_rule (
    id text NOT NULL,
    description text,
    attribute text NOT NULL,
    operator text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    CONSTRAINT promotion_rule_operator_check CHECK ((operator = ANY (ARRAY['gte'::text, 'lte'::text, 'gt'::text, 'lt'::text, 'eq'::text, 'ne'::text, 'in'::text])))
);


ALTER TABLE public.promotion_rule OWNER TO biomket;

--
-- Name: promotion_rule_value; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.promotion_rule_value (
    id text NOT NULL,
    promotion_rule_id text NOT NULL,
    value text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.promotion_rule_value OWNER TO biomket;

--
-- Name: provider_identity; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.provider_identity (
    id text NOT NULL,
    entity_id text NOT NULL,
    provider text NOT NULL,
    auth_identity_id text NOT NULL,
    user_metadata jsonb,
    provider_metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.provider_identity OWNER TO biomket;

--
-- Name: publishable_api_key_sales_channel; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.publishable_api_key_sales_channel (
    publishable_key_id character varying(255) NOT NULL,
    sales_channel_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.publishable_api_key_sales_channel OWNER TO biomket;

--
-- Name: refund; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.refund (
    id text NOT NULL,
    amount numeric NOT NULL,
    raw_amount jsonb NOT NULL,
    payment_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    created_by text,
    metadata jsonb,
    refund_reason_id text,
    note text
);


ALTER TABLE public.refund OWNER TO biomket;

--
-- Name: refund_reason; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.refund_reason (
    id text NOT NULL,
    label text NOT NULL,
    description text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    code text NOT NULL
);


ALTER TABLE public.refund_reason OWNER TO biomket;

--
-- Name: region; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.region (
    id text NOT NULL,
    name text NOT NULL,
    currency_code text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    automatic_taxes boolean DEFAULT true NOT NULL
);


ALTER TABLE public.region OWNER TO biomket;

--
-- Name: region_country; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.region_country (
    iso_2 text NOT NULL,
    iso_3 text NOT NULL,
    num_code text NOT NULL,
    name text NOT NULL,
    display_name text NOT NULL,
    region_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.region_country OWNER TO biomket;

--
-- Name: region_payment_provider; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.region_payment_provider (
    region_id character varying(255) NOT NULL,
    payment_provider_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.region_payment_provider OWNER TO biomket;

--
-- Name: reservation_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.reservation_item (
    id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    line_item_id text,
    location_id text NOT NULL,
    quantity numeric NOT NULL,
    external_id text,
    description text,
    created_by text,
    metadata jsonb,
    inventory_item_id text NOT NULL,
    allow_backorder boolean DEFAULT false,
    raw_quantity jsonb
);


ALTER TABLE public.reservation_item OWNER TO biomket;

--
-- Name: return; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.return (
    id text NOT NULL,
    order_id text NOT NULL,
    claim_id text,
    exchange_id text,
    order_version integer NOT NULL,
    display_id integer NOT NULL,
    status public.return_status_enum DEFAULT 'open'::public.return_status_enum NOT NULL,
    no_notification boolean,
    refund_amount numeric,
    raw_refund_amount jsonb,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    received_at timestamp with time zone,
    canceled_at timestamp with time zone,
    location_id text,
    requested_at timestamp with time zone,
    created_by text
);


ALTER TABLE public.return OWNER TO biomket;

--
-- Name: return_display_id_seq; Type: SEQUENCE; Schema: public; Owner: biomket
--

CREATE SEQUENCE public.return_display_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.return_display_id_seq OWNER TO biomket;

--
-- Name: return_display_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: biomket
--

ALTER SEQUENCE public.return_display_id_seq OWNED BY public.return.display_id;


--
-- Name: return_fulfillment; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.return_fulfillment (
    return_id character varying(255) NOT NULL,
    fulfillment_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.return_fulfillment OWNER TO biomket;

--
-- Name: return_item; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.return_item (
    id text NOT NULL,
    return_id text NOT NULL,
    reason_id text,
    item_id text NOT NULL,
    quantity numeric NOT NULL,
    raw_quantity jsonb NOT NULL,
    received_quantity numeric DEFAULT 0 NOT NULL,
    raw_received_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL,
    note text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    damaged_quantity numeric DEFAULT 0 NOT NULL,
    raw_damaged_quantity jsonb DEFAULT '{"value": "0", "precision": 20}'::jsonb NOT NULL
);


ALTER TABLE public.return_item OWNER TO biomket;

--
-- Name: return_reason; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.return_reason (
    id character varying NOT NULL,
    value character varying NOT NULL,
    label character varying NOT NULL,
    description character varying,
    metadata jsonb,
    parent_return_reason_id character varying,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.return_reason OWNER TO biomket;

--
-- Name: sales_channel; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.sales_channel (
    id text NOT NULL,
    name text NOT NULL,
    description text,
    is_disabled boolean DEFAULT false NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.sales_channel OWNER TO biomket;

--
-- Name: sales_channel_stock_location; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.sales_channel_stock_location (
    sales_channel_id character varying(255) NOT NULL,
    stock_location_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.sales_channel_stock_location OWNER TO biomket;

--
-- Name: script_migrations; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.script_migrations (
    id integer NOT NULL,
    script_name character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP,
    finished_at timestamp with time zone
);


ALTER TABLE public.script_migrations OWNER TO biomket;

--
-- Name: script_migrations_id_seq; Type: SEQUENCE; Schema: public; Owner: biomket
--

CREATE SEQUENCE public.script_migrations_id_seq
    AS integer
    START WITH 1
    INCREMENT BY 1
    NO MINVALUE
    NO MAXVALUE
    CACHE 1;


ALTER TABLE public.script_migrations_id_seq OWNER TO biomket;

--
-- Name: script_migrations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: biomket
--

ALTER SEQUENCE public.script_migrations_id_seq OWNED BY public.script_migrations.id;


--
-- Name: service_zone; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.service_zone (
    id text NOT NULL,
    name text NOT NULL,
    metadata jsonb,
    fulfillment_set_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.service_zone OWNER TO biomket;

--
-- Name: shipping_option; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.shipping_option (
    id text NOT NULL,
    name text NOT NULL,
    price_type text DEFAULT 'flat'::text NOT NULL,
    service_zone_id text NOT NULL,
    shipping_profile_id text,
    provider_id text,
    data jsonb,
    metadata jsonb,
    shipping_option_type_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    CONSTRAINT shipping_option_price_type_check CHECK ((price_type = ANY (ARRAY['calculated'::text, 'flat'::text])))
);


ALTER TABLE public.shipping_option OWNER TO biomket;

--
-- Name: shipping_option_price_set; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.shipping_option_price_set (
    shipping_option_id character varying(255) NOT NULL,
    price_set_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.shipping_option_price_set OWNER TO biomket;

--
-- Name: shipping_option_rule; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.shipping_option_rule (
    id text NOT NULL,
    attribute text NOT NULL,
    operator text NOT NULL,
    value jsonb,
    shipping_option_id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    CONSTRAINT shipping_option_rule_operator_check CHECK ((operator = ANY (ARRAY['in'::text, 'eq'::text, 'ne'::text, 'gt'::text, 'gte'::text, 'lt'::text, 'lte'::text, 'nin'::text])))
);


ALTER TABLE public.shipping_option_rule OWNER TO biomket;

--
-- Name: shipping_option_type; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.shipping_option_type (
    id text NOT NULL,
    label text NOT NULL,
    description text,
    code text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.shipping_option_type OWNER TO biomket;

--
-- Name: shipping_profile; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.shipping_profile (
    id text NOT NULL,
    name text NOT NULL,
    type text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.shipping_profile OWNER TO biomket;

--
-- Name: stock_location; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.stock_location (
    id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    name text NOT NULL,
    address_id text,
    metadata jsonb
);


ALTER TABLE public.stock_location OWNER TO biomket;

--
-- Name: stock_location_address; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.stock_location_address (
    id text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone,
    address_1 text NOT NULL,
    address_2 text,
    company text,
    city text,
    country_code text NOT NULL,
    phone text,
    province text,
    postal_code text,
    metadata jsonb
);


ALTER TABLE public.stock_location_address OWNER TO biomket;

--
-- Name: store; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.store (
    id text NOT NULL,
    name text DEFAULT 'Medusa Store'::text NOT NULL,
    default_sales_channel_id text,
    default_region_id text,
    default_location_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.store OWNER TO biomket;

--
-- Name: store_currency; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.store_currency (
    id text NOT NULL,
    currency_code text NOT NULL,
    is_default boolean DEFAULT false NOT NULL,
    store_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.store_currency OWNER TO biomket;

--
-- Name: store_locale; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.store_locale (
    id text NOT NULL,
    locale_code text NOT NULL,
    store_id text,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.store_locale OWNER TO biomket;

--
-- Name: tax_provider; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.tax_provider (
    id text NOT NULL,
    is_enabled boolean DEFAULT true NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.tax_provider OWNER TO biomket;

--
-- Name: tax_rate; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.tax_rate (
    id text NOT NULL,
    rate real,
    code text NOT NULL,
    name text NOT NULL,
    is_default boolean DEFAULT false NOT NULL,
    is_combinable boolean DEFAULT false NOT NULL,
    tax_region_id text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    created_by text,
    deleted_at timestamp with time zone
);


ALTER TABLE public.tax_rate OWNER TO biomket;

--
-- Name: tax_rate_rule; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.tax_rate_rule (
    id text NOT NULL,
    tax_rate_id text NOT NULL,
    reference_id text NOT NULL,
    reference text NOT NULL,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    created_by text,
    deleted_at timestamp with time zone
);


ALTER TABLE public.tax_rate_rule OWNER TO biomket;

--
-- Name: tax_region; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.tax_region (
    id text NOT NULL,
    provider_id text,
    country_code text NOT NULL,
    province_code text,
    parent_id text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    created_by text,
    deleted_at timestamp with time zone,
    CONSTRAINT "CK_tax_region_country_top_level" CHECK (((parent_id IS NULL) OR (province_code IS NOT NULL))),
    CONSTRAINT "CK_tax_region_provider_top_level" CHECK (((parent_id IS NULL) OR (provider_id IS NULL)))
);


ALTER TABLE public.tax_region OWNER TO biomket;

--
-- Name: user; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public."user" (
    id text NOT NULL,
    first_name text,
    last_name text,
    email text NOT NULL,
    avatar_url text,
    metadata jsonb,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public."user" OWNER TO biomket;

--
-- Name: user_preference; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.user_preference (
    id text NOT NULL,
    user_id text NOT NULL,
    key text NOT NULL,
    value jsonb NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.user_preference OWNER TO biomket;

--
-- Name: user_rbac_role; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.user_rbac_role (
    user_id character varying(255) NOT NULL,
    rbac_role_id character varying(255) NOT NULL,
    id character varying(255) NOT NULL,
    created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.user_rbac_role OWNER TO biomket;

--
-- Name: view_configuration; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.view_configuration (
    id text NOT NULL,
    entity text NOT NULL,
    name text,
    user_id text,
    is_system_default boolean DEFAULT false NOT NULL,
    configuration jsonb NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.view_configuration OWNER TO biomket;

--
-- Name: waste_attribute; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.waste_attribute (
    id text NOT NULL,
    code text NOT NULL,
    location text NOT NULL,
    created_at timestamp with time zone DEFAULT now() NOT NULL,
    updated_at timestamp with time zone DEFAULT now() NOT NULL,
    deleted_at timestamp with time zone
);


ALTER TABLE public.waste_attribute OWNER TO biomket;

--
-- Name: workflow_execution; Type: TABLE; Schema: public; Owner: biomket
--

CREATE TABLE public.workflow_execution (
    id character varying NOT NULL,
    workflow_id character varying NOT NULL,
    transaction_id character varying NOT NULL,
    execution jsonb,
    context jsonb,
    state character varying NOT NULL,
    created_at timestamp without time zone DEFAULT now() NOT NULL,
    updated_at timestamp without time zone DEFAULT now() NOT NULL,
    deleted_at timestamp without time zone,
    retention_time integer,
    run_id text DEFAULT '01KHQVJQQGJJDDYNV1YGT4PE1M'::text NOT NULL
);


ALTER TABLE public.workflow_execution OWNER TO biomket;

--
-- Name: link_module_migrations id; Type: DEFAULT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.link_module_migrations ALTER COLUMN id SET DEFAULT nextval('public.link_module_migrations_id_seq'::regclass);


--
-- Name: mikro_orm_migrations id; Type: DEFAULT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.mikro_orm_migrations ALTER COLUMN id SET DEFAULT nextval('public.mikro_orm_migrations_id_seq'::regclass);


--
-- Name: order display_id; Type: DEFAULT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public."order" ALTER COLUMN display_id SET DEFAULT nextval('public.order_display_id_seq'::regclass);


--
-- Name: order_change_action ordering; Type: DEFAULT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_change_action ALTER COLUMN ordering SET DEFAULT nextval('public.order_change_action_ordering_seq'::regclass);


--
-- Name: order_claim display_id; Type: DEFAULT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_claim ALTER COLUMN display_id SET DEFAULT nextval('public.order_claim_display_id_seq'::regclass);


--
-- Name: order_exchange display_id; Type: DEFAULT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_exchange ALTER COLUMN display_id SET DEFAULT nextval('public.order_exchange_display_id_seq'::regclass);


--
-- Name: return display_id; Type: DEFAULT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.return ALTER COLUMN display_id SET DEFAULT nextval('public.return_display_id_seq'::regclass);


--
-- Name: script_migrations id; Type: DEFAULT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.script_migrations ALTER COLUMN id SET DEFAULT nextval('public.script_migrations_id_seq'::regclass);


--
-- Data for Name: account_holder; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.account_holder (id, provider_id, external_id, email, data, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: api_key; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.api_key (id, token, salt, redacted, title, type, last_used_at, created_by, created_at, revoked_by, revoked_at, updated_at, deleted_at) FROM stdin;
apk_01KHR065GXGW5JTCAGEG5RQN1R	pk_1f8f903ddda573bee6a13d3d92616778246b095f2f347ebc9cdbec825c2f13ef		pk_1f8***3ef	Default Publishable API Key	publishable	\N		2026-02-18 10:09:36.413+01	\N	\N	2026-02-18 10:09:36.413+01	\N
\.


--
-- Data for Name: application_method_buy_rules; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.application_method_buy_rules (application_method_id, promotion_rule_id) FROM stdin;
\.


--
-- Data for Name: application_method_target_rules; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.application_method_target_rules (application_method_id, promotion_rule_id) FROM stdin;
\.


--
-- Data for Name: auth_identity; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.auth_identity (id, app_metadata, created_at, updated_at, deleted_at) FROM stdin;
authid_01KHR0HTMRVTE59CTZR79WECQ9	{"user_id": "user_01KHR0HTNXH08MW3VQC96X5C3H"}	2026-02-18 10:15:58.488+01	2026-02-18 10:15:58.536+01	\N
authid_01KHR78ECG93KBD6FMBYQ18J0C	{"user_id": "user_01KHR78EA4PBPS1X3YKBHP4W10"}	2026-02-18 12:13:11.056+01	2026-02-18 12:13:11.062+01	\N
authid_01KJ73NTRK01VREM6180A18SXV	{"customer_id": "cus_01KJ73NTS6CWGXRX122E0C6RZ1"}	2026-02-24 06:59:11.891+01	2026-02-24 06:59:11.922+01	\N
authid_01KJ749TPX48999KTHHFHHF4AX	{"customer_id": "cus_01KJ749TQBAVYCAZMYYBDTNGD8"}	2026-02-24 07:10:07.197+01	2026-02-24 07:10:07.222+01	\N
authid_01KJ7WBJ2JGD2PZ6NFZT12BQDY	{"customer_id": "cus_01KJ7WBJ3CV37TKPK9JTBHEGF5"}	2026-02-24 14:10:29.715+01	2026-02-24 14:10:29.749+01	\N
authid_01KKGXWC3HZFTJQSW7BXV9J3D0	{"customer_id": "cus_01KKGXWC4HASYZZXS5V54FHARX"}	2026-03-12 12:46:00.945+01	2026-03-12 12:46:00.999+01	\N
authid_01KM5MB1EA8FR281WXK9MZ8357	{"user_id": "user_01KM5MB17TG6KEQMX4VDSXF5EJ"}	2026-03-20 13:43:18.858+01	2026-03-20 13:43:18.889+01	\N
\.


--
-- Data for Name: capture; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.capture (id, amount, raw_amount, payment_id, created_at, updated_at, deleted_at, created_by, metadata) FROM stdin;
\.


--
-- Data for Name: cart; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart (id, region_id, customer_id, sales_channel_id, email, currency_code, shipping_address_id, billing_address_id, metadata, created_at, updated_at, deleted_at, completed_at, locale) FROM stdin;
cart_01KKGYKTW5VNFHVW6M9JWE1V6Y	reg_01KHR06ACFBR6CGN33WGPFPJ65	cus_01KKGXWC4HASYZZXS5V54FHARX	sc_01KHR065FHBMN74HAYAXNYR64M	info@greentech-berlin.de	eur	\N	\N	{"order_type": "waste_purchase", "truck_type": "tipper_truck", "delivery_destination": "28850 Torrejón de Ardoz, Madrid"}	2026-03-12 12:58:49.736+01	2026-03-12 12:58:49.736+01	\N	\N	\N
cart_01KKGYM2VT2EYK7M64GBQD3DVY	reg_01KHR06ACFBR6CGN33WGPFPJ65	cus_01KKGXWC4HASYZZXS5V54FHARX	sc_01KHR065FHBMN74HAYAXNYR64M	info@greentech-berlin.de	eur	\N	\N	{"order_type": "waste_purchase", "truck_type": "tipper_truck", "delivery_destination": "28850 Torrejón de Ardoz, Madrid"}	2026-03-12 12:58:57.915+01	2026-03-12 12:58:57.915+01	\N	\N	\N
cart_01KKGYN1Q9C30CJ33233RAKB3Q	reg_01KHR06ACFBR6CGN33WGPFPJ65	cus_01KKGXWC4HASYZZXS5V54FHARX	sc_01KHR065FHBMN74HAYAXNYR64M	info@greentech-berlin.de	eur	\N	\N	{"order_type": "waste_purchase", "truck_type": "tipper_truck", "delivery_destination": "28850 Torrejón de Ardoz, Madrid"}	2026-03-12 12:59:29.513+01	2026-03-12 12:59:29.513+01	\N	\N	\N
cart_01KKGYPPRS9056BECX2CRZ79WA	reg_01KHR06ACFBR6CGN33WGPFPJ65	cus_01KKGXWC4HASYZZXS5V54FHARX	sc_01KHR065FHBMN74HAYAXNYR64M	info@greentech-berlin.de	eur	\N	\N	{"order_type": "waste_purchase", "truck_type": "tipper_truck", "delivery_destination": "28850 Torrejón de Ardoz, Madrid"}	2026-03-12 13:00:23.834+01	2026-03-12 13:00:23.834+01	\N	\N	\N
cart_01KKGYR8FJMPQ4C3Q1SP567FXT	reg_01KHR06ACFBR6CGN33WGPFPJ65	cus_01KKGXWC4HASYZZXS5V54FHARX	sc_01KHR065FHBMN74HAYAXNYR64M	info@greentech-berlin.de	eur	\N	\N	{"order_type": "waste_purchase", "truck_type": "tipper_truck", "delivery_destination": "Calle Mayor 12, Madrid 28001"}	2026-03-12 13:01:14.739+01	2026-03-12 13:01:14.739+01	\N	\N	\N
cart_01KKGZ5XC1W2R7B1J2T6G8RYTK	reg_01KHR06ACFBR6CGN33WGPFPJ65	cus_01KKGXWC4HASYZZXS5V54FHARX	sc_01KHR065FHBMN74HAYAXNYR64M	info@greentech-berlin.de	eur	\N	\N	{"order_type": "waste_purchase", "truck_type": "tipper_truck", "delivery_destination": "Calle Mayor 12, Madrid 28001"}	2026-03-12 13:08:42.114+01	2026-03-12 13:08:42.114+01	\N	\N	\N
\.


--
-- Data for Name: cart_address; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_address (id, customer_id, company, first_name, last_name, address_1, address_2, city, country_code, province, postal_code, phone, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: cart_line_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_line_item (id, cart_id, title, subtitle, thumbnail, quantity, variant_id, product_id, product_title, product_description, product_subtitle, product_type, product_collection, product_handle, variant_sku, variant_barcode, variant_title, variant_option_values, requires_shipping, is_discountable, is_tax_inclusive, compare_at_unit_price, raw_compare_at_unit_price, unit_price, raw_unit_price, metadata, created_at, updated_at, deleted_at, product_type_id, is_custom_price, is_giftcard) FROM stdin;
cali_01KKGYKV8RSHT38RNG0HHDQRTF	cart_01KKGYKTW5VNFHVW6M9JWE1V6Y	Organic Manure Compost	Default	https://biomket1.yourwebdemo.co.in/static/1773314488636-image.png	7	variant_01KKGVC5GW8294W9CTFA2JQAQ3	prod_01KKGVC5DV5MDRVHGSVGVF9QMF	Organic Manure Compost	High-quality organic compost derived from livestock manure. Ideal for biogas production, composting facilities, and organic fertilizer manufacturing. Consistent quality with regular supply availability.	\N	\N	\N	organic-manure-compost	02-01-06	\N	Default	\N	t	t	f	\N	\N	35	{"value": "35", "precision": 20}	{"truck_type": "tipper_truck", "quantity_unit": "tonnes", "delivery_destination": "28850 Torrejón de Ardoz, Madrid"}	2026-03-12 12:58:50.136+01	2026-03-12 12:58:50.136+01	\N	\N	f	f
cali_01KKGYM355W43S41EG8TW8R2AN	cart_01KKGYM2VT2EYK7M64GBQD3DVY	Organic Manure Compost	Default	https://biomket1.yourwebdemo.co.in/static/1773314488636-image.png	7	variant_01KKGVC5GW8294W9CTFA2JQAQ3	prod_01KKGVC5DV5MDRVHGSVGVF9QMF	Organic Manure Compost	High-quality organic compost derived from livestock manure. Ideal for biogas production, composting facilities, and organic fertilizer manufacturing. Consistent quality with regular supply availability.	\N	\N	\N	organic-manure-compost	02-01-06	\N	Default	\N	t	t	f	\N	\N	35	{"value": "35", "precision": 20}	{"truck_type": "tipper_truck", "quantity_unit": "tonnes", "delivery_destination": "28850 Torrejón de Ardoz, Madrid"}	2026-03-12 12:58:58.213+01	2026-03-12 12:58:58.213+01	\N	\N	f	f
cali_01KKGYN1Y9703MHATJQZP8Z2P2	cart_01KKGYN1Q9C30CJ33233RAKB3Q	Organic Manure Compost	Default	https://biomket1.yourwebdemo.co.in/static/1773314488636-image.png	7	variant_01KKGVC5GW8294W9CTFA2JQAQ3	prod_01KKGVC5DV5MDRVHGSVGVF9QMF	Organic Manure Compost	High-quality organic compost derived from livestock manure. Ideal for biogas production, composting facilities, and organic fertilizer manufacturing. Consistent quality with regular supply availability.	\N	\N	\N	organic-manure-compost	02-01-06	\N	Default	\N	t	t	f	\N	\N	35	{"value": "35", "precision": 20}	{"truck_type": "tipper_truck", "quantity_unit": "tonnes", "delivery_destination": "28850 Torrejón de Ardoz, Madrid"}	2026-03-12 12:59:29.737+01	2026-03-12 12:59:29.737+01	\N	\N	f	f
cali_01KKGYPQ1P63MAFAADQWG2EMPC	cart_01KKGYPPRS9056BECX2CRZ79WA	Organic Manure Compost	Default	https://biomket1.yourwebdemo.co.in/static/1773314488636-image.png	7	variant_01KKGVC5GW8294W9CTFA2JQAQ3	prod_01KKGVC5DV5MDRVHGSVGVF9QMF	Organic Manure Compost	High-quality organic compost derived from livestock manure. Ideal for biogas production, composting facilities, and organic fertilizer manufacturing. Consistent quality with regular supply availability.	\N	\N	\N	organic-manure-compost	02-01-06	\N	Default	\N	t	t	f	\N	\N	35	{"value": "35", "precision": 20}	{"truck_type": "tipper_truck", "quantity_unit": "tonnes", "delivery_destination": "28850 Torrejón de Ardoz, Madrid"}	2026-03-12 13:00:24.118+01	2026-03-12 13:00:24.118+01	\N	\N	f	f
cali_01KKGYR8R97FWRQ1EJ4FQ4ZWHC	cart_01KKGYR8FJMPQ4C3Q1SP567FXT	Organic Manure Compost	Default	https://biomket1.yourwebdemo.co.in/static/1773314488636-image.png	77	variant_01KKGVC5GW8294W9CTFA2JQAQ3	prod_01KKGVC5DV5MDRVHGSVGVF9QMF	Organic Manure Compost	High-quality organic compost derived from livestock manure. Ideal for biogas production, composting facilities, and organic fertilizer manufacturing. Consistent quality with regular supply availability.	\N	\N	\N	organic-manure-compost	02-01-06	\N	Default	\N	t	t	f	\N	\N	35	{"value": "35", "precision": 20}	{"truck_type": "tipper_truck", "quantity_unit": "tonnes", "delivery_destination": "Calle Mayor 12, Madrid 28001"}	2026-03-12 13:01:15.017+01	2026-03-12 13:01:15.017+01	\N	\N	f	f
cali_01KKGZ5XQ2NJ6WBR0DDZG3KHR0	cart_01KKGZ5XC1W2R7B1J2T6G8RYTK	Organic Manure Compost	Default	https://biomket1.yourwebdemo.co.in/static/1773314488636-image.png	77	variant_01KKGVC5GW8294W9CTFA2JQAQ3	prod_01KKGVC5DV5MDRVHGSVGVF9QMF	Organic Manure Compost	High-quality organic compost derived from livestock manure. Ideal for biogas production, composting facilities, and organic fertilizer manufacturing. Consistent quality with regular supply availability.	\N	\N	\N	organic-manure-compost	02-01-06	\N	Default	\N	t	t	f	\N	\N	35	{"value": "35", "precision": 20}	{"truck_type": "tipper_truck", "quantity_unit": "tonnes", "delivery_destination": "Calle Mayor 12, Madrid 28001"}	2026-03-12 13:08:42.466+01	2026-03-12 13:08:42.466+01	\N	\N	f	f
\.


--
-- Data for Name: cart_line_item_adjustment; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_line_item_adjustment (id, description, promotion_id, code, amount, raw_amount, provider_id, metadata, created_at, updated_at, deleted_at, item_id, is_tax_inclusive) FROM stdin;
\.


--
-- Data for Name: cart_line_item_tax_line; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_line_item_tax_line (id, description, tax_rate_id, code, rate, provider_id, metadata, created_at, updated_at, deleted_at, item_id) FROM stdin;
\.


--
-- Data for Name: cart_payment_collection; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_payment_collection (cart_id, payment_collection_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: cart_promotion; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_promotion (cart_id, promotion_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: cart_shipping_method; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_shipping_method (id, cart_id, name, description, amount, raw_amount, is_tax_inclusive, shipping_option_id, data, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: cart_shipping_method_adjustment; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_shipping_method_adjustment (id, description, promotion_id, code, amount, raw_amount, provider_id, metadata, created_at, updated_at, deleted_at, shipping_method_id) FROM stdin;
\.


--
-- Data for Name: cart_shipping_method_tax_line; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cart_shipping_method_tax_line (id, description, tax_rate_id, code, rate, provider_id, metadata, created_at, updated_at, deleted_at, shipping_method_id) FROM stdin;
\.


--
-- Data for Name: cms_component_definition; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cms_component_definition (id, key, display_name, schema, created_at, updated_at, deleted_at) FROM stdin;
01KHTZHH66ASV250SGKQ6TP97M	test2	test2	[{"key": "title", "type": "text", "label": "Title"}, {"key": "description", "type": "textarea", "label": "Description"}, {"key": "image", "type": "image", "label": "Image"}]	2026-02-19 13:56:03.526+01	2026-02-19 13:56:03.526+01	\N
01KHV16N6Q59XDMKK30T73T07Z	custom-block	Custom Block	[{"key": "title", "type": "text", "label": "Title"}, {"key": "description", "type": "textarea", "label": "Description"}, {"key": "button_text", "type": "text", "label": "Button text"}, {"key": "button_url", "type": "text", "label": "Button URL"}, {"key": "image", "type": "image", "label": "Image"}]	2026-02-19 14:25:04.343+01	2026-02-19 14:25:04.343+01	\N
\.


--
-- Data for Name: cms_component_field; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cms_component_field (id, component_type_id, label, api_key, field_type, required, default_value, validation_rules, "position", created_at, updated_at, deleted_at) FROM stdin;
01KJ4MN2HTNAQY1X1WMEBZPKG8	01KJ4MGF3A600HC8RA94DK78PE	Name	name	text	f	\N	\N	1	2026-02-23 07:58:09.594+01	2026-02-23 07:58:09.594+01	\N
01KJ4MN828883JFWYH2MWKRTSJ	01KJ4MGF3A600HC8RA94DK78PE	Address	address	textarea	f	\N	\N	2	2026-02-23 07:58:15.241+01	2026-02-23 07:58:15.241+01	\N
01KJYCAY1R6WK42D94SS4A12R3	01KJYCAQDDECVSNQ2GM3BDPKQC	SubCat Title	title	text	f	\N	\N	0	2026-03-05 07:53:03.928+01	2026-03-05 08:06:34.281+01	\N
01KKE65B2GRS9VF58GWREABHB4	01KKE62E7EG6NE9KCY6YC2NT0F		button	component	f	\N	{"nested_component_type_id": "01KJS16YHCGVP18SDJMK4Q54KF"}	3	2026-03-11 11:13:00.112+01	2026-03-11 11:16:42.802+01	\N
01KKECQNKFH01V6MF1HNPG2JTQ	01KKECQ0H41FYWVMSFF2TDGZWK	Text	text	text	f	\N	\N	0	2026-03-11 13:07:52.175+01	2026-03-11 13:07:52.175+01	\N
01KKECQYP7AM0S06H0D1GTCW3N	01KKECQ0H41FYWVMSFF2TDGZWK	Description	description	text	f	\N	\N	1	2026-03-11 13:08:01.48+01	2026-03-11 13:08:01.48+01	\N
01KKECRRT5X2G5Y3DFNFPAEGA7	01KKECQ0H41FYWVMSFF2TDGZWK	Contact info	contact_info	component	f	\N	{"nested_component_type_id": "01KKE66AK4NRXH532E10SB959X"}	2	2026-03-11 13:08:28.229+01	2026-03-11 13:08:28.229+01	\N
01KJ4N3F5M2K4BXR0PFH5K7CE4	01KJ4N325VBD3Y3WNAX2PN0FX4	Image	image	image	f	\N	\N	0	2026-02-23 08:06:01.268+01	2026-02-23 08:06:01.268+01	\N
01KJ4N3MCKH21B34FCGGJ69AVR	01KJ4N325VBD3Y3WNAX2PN0FX4	Link	link	text	f	\N	\N	1	2026-02-23 08:06:06.611+01	2026-02-23 08:06:06.611+01	\N
01KJS17T14TMNJTHJXAWSK4RQ0	01KJS16YHCGVP18SDJMK4Q54KF	Button Url	button_url	text	t	\N	\N	1	2026-03-03 06:02:55.012+01	2026-03-11 14:21:45.598+01	\N
01KJ4N78NA1K102XG78NZDFT8C	01KJ4N72AQZXDN19BY2QKHVHXF	Title	title	text	f	\N	\N	0	2026-02-23 08:08:05.674+01	2026-02-23 08:08:05.674+01	\N
01KJ4N7JYSHMDR3YTKRQ1TSM49	01KJ4N72AQZXDN19BY2QKHVHXF	Description	description	textarea	f	\N	\N	1	2026-02-23 08:08:16.217+01	2026-02-23 08:08:16.217+01	\N
01KJ4N7Y0TRJ3MSYN2R1XG9RJD	01KJ4N72AQZXDN19BY2QKHVHXF	ButtonText1	buttontext1	text	f	\N	\N	2	2026-02-23 08:08:27.547+01	2026-02-23 08:08:27.547+01	\N
01KJ4N8C33ZPCHMRHDN9R3XMV0	01KJ4N72AQZXDN19BY2QKHVHXF	ButtonText1Url	buttontext1url	text	f	\N	\N	3	2026-02-23 08:08:41.955+01	2026-02-23 08:08:41.955+01	\N
01KJCQ6E7CMM2WPETYPHYJ22W6	01KJCQ5YVCGADYBPNTMCB89VWA	Description 	description_	text	t	\N	\N	1	2026-02-26 11:16:31.212+01	2026-02-26 11:16:31.212+01	\N
01KJ4N8J6KXQJ9TPMABKP2TH6G	01KJ4N72AQZXDN19BY2QKHVHXF	ButtonText2	buttontext2	text	f	\N	\N	4	2026-02-23 08:08:48.211+01	2026-02-23 08:08:48.211+01	\N
01KJ4HMKV08C5CHBW418JJF2BR	01KJ4HM8YEHMJVQVFG684ZG62G	Title	title	text	f	\N	\N	0	2026-02-23 07:05:28.8+01	2026-02-23 07:05:28.8+01	\N
01KJ4HN23HQP845HQHYCACV5K7	01KJ4HM8YEHMJVQVFG684ZG62G	Description	description	textarea	f	\N	\N	1	2026-02-23 07:05:43.409+01	2026-02-23 07:05:43.409+01	\N
01KJ4HNPBSPDKXD122Q2FG9AN6	01KJ4HM8YEHMJVQVFG684ZG62G	ButtonUrl	buttonurl	text	f	\N	\N	3	2026-02-23 07:06:04.153+01	2026-02-23 07:06:04.153+01	\N
01KJ4HNCS1AYXYVK2QQA9PPX28	01KJ4HM8YEHMJVQVFG684ZG62G	ButtonText	buttontext	text	f	\N	\N	2	2026-02-23 07:05:54.337+01	2026-02-23 07:06:07.889+01	\N
01KJ4MENS09G1CM2GN45E3CTSM	01KJ4ME13788FKSG104Z7VMF4M	Name	name	text	f	\N	\N	0	2026-02-23 07:54:39.904+01	2026-02-23 07:54:39.904+01	\N
01KJ4MEY203GN2J1MVXJK1R3VS	01KJ4ME13788FKSG104Z7VMF4M	Link	link	text	f	\N	\N	1	2026-02-23 07:54:48.384+01	2026-02-23 07:54:48.384+01	\N
01KJ4N8TEKH6WQSMJ2AHJX0TKC	01KJ4N72AQZXDN19BY2QKHVHXF	ButtonText2Url	buttontext2url	text	f	\N	\N	5	2026-02-23 08:08:56.659+01	2026-02-23 08:08:56.659+01	\N
01KJ4NGQF6R8Q46FH3B4RBCN04	01KJ4MR5M4ZKX8GHG3HPG2CDYF	Link	link	text	f	\N	\N	1	2026-02-23 08:13:15.75+01	2026-02-23 08:13:15.75+01	\N
01KJ4MRZ9YWWM6W9H3FJS96VVD	01KJ4MR5M4ZKX8GHG3HPG2CDYF	Svg	svg	textarea	f	\N	\N	0	2026-02-23 08:00:17.342+01	2026-02-23 08:13:45.606+01	\N
01KJ4NJTJGQGEWS2SQBT7X3QFV	01KJ4NJNB7P161TDSQZEKM6JCW	Name	name	text	f	\N	\N	0	2026-02-23 08:14:24.464+01	2026-02-23 08:14:24.464+01	\N
01KJ4PXTM1TXBFPT6544K84ZHP	01KJ4MR5M4ZKX8GHG3HPG2CDYF	Name	name	text	f	\N	\N	2	2026-02-23 08:37:53.537+01	2026-02-23 08:37:53.537+01	\N
01KJ9JVC7Y0BMN9KPQVE2DMQYA	01KJ4MGF3A600HC8RA94DK78PE	Email	email	email	f	\N	\N	3	2026-02-25 06:02:51.134+01	2026-02-25 06:02:51.134+01	\N
01KJCQ88RYPNBM299GZ01QCAQM	01KJCQ5YVCGADYBPNTMCB89VWA	Button Text	button_text	text	t	\N	\N	2	2026-02-26 11:17:31.166+01	2026-02-26 11:17:31.166+01	\N
01KJCAGCV1CAHSMRCVYRH7W46F	01KJCAFH206EP746WFSVE2JY43	Image Desktop	image_desktop	image	t	\N	\N	0	2026-02-26 07:34:45.985+01	2026-03-03 06:06:14.555+01	\N
01KJCQ8K95KZ8VHNVAK23VA8W7	01KJCQ5YVCGADYBPNTMCB89VWA	Button Url	button_url	text	t	\N	\N	3	2026-02-26 11:17:41.925+01	2026-02-26 11:17:41.925+01	\N
01KJ4EYTB6MP4NYV2YDM42V7VF	01KHXGG6X8CMGQQYVDV92FKHQC	Title	title	text	t	\N	\N	0	2026-02-23 06:18:37.414+01	2026-02-26 07:21:26.833+01	\N
01KJ4EZJNZDBGR1D5NE5FB16Y3	01KHXGG6X8CMGQQYVDV92FKHQC	Description	description	textarea	f	\N	\N	1	2026-02-23 06:19:02.335+01	2026-02-26 07:21:26.837+01	\N
01KJCAW9WF24GCST6CA14ERBZR	01KJCAVQMZ61BFP5G8VBFZ55B2	Title 	title_	text	t	\N	\N	0	2026-02-26 07:41:16.175+01	2026-02-26 07:41:16.175+01	\N
01KJCAWJ1ZPJ0Z5497KYXTB1CT	01KJCAVQMZ61BFP5G8VBFZ55B2	Description	description	text	t	\N	\N	1	2026-02-26 07:41:24.543+01	2026-02-26 07:41:24.543+01	\N
01KJCRA0RVXJFXXAVG39XBQZH5	01KJCR9SD3Z29PV92PGX2GZ0C7	Title	title	text	f	\N	\N	0	2026-02-26 11:35:57.083+01	2026-02-26 11:35:57.083+01	\N
01KJCCAHPR246EZHQQHT5A6EKY	01KJCBWC3E7JRP21XSR89GWNS1	Sub-title	sub-title	text	f	\N	\N	2	2026-02-26 08:06:31.512+01	2026-02-26 08:10:06.041+01	\N
01KJCCH0JD4G4P7KJ3QZ5CFQFS	01KJCBWC3E7JRP21XSR89GWNS1	Svg	svg	textarea	t	\N	\N	0	2026-02-26 08:10:03.341+01	2026-02-26 08:10:07.788+01	\N
01KJCC9Y7ANZMQSXVQF605N02T	01KJCBWC3E7JRP21XSR89GWNS1	Title	title	text	t	\N	\N	1	2026-02-26 08:06:11.562+01	2026-02-26 08:10:07.791+01	\N
01KJCPXEJBZNNWE9051Q4DG5GS	01KJCPTN6JZW4RQY8CXV6QZ7VE	Svg	svg	textarea	t	\N	\N	0	2026-02-26 11:11:36.651+01	2026-02-26 11:11:36.651+01	\N
01KJCPXS72KJXBQDY1H4SJRN63	01KJCPTN6JZW4RQY8CXV6QZ7VE	Title 	title_	text	t	\N	\N	1	2026-02-26 11:11:47.554+01	2026-02-26 11:11:47.554+01	\N
01KJCPY2RT7265V0573239CH2G	01KJCPTN6JZW4RQY8CXV6QZ7VE	Description 	description_	text	t	\N	\N	2	2026-02-26 11:11:57.339+01	2026-02-26 11:11:57.339+01	\N
01KJCQ6A60A11903CPM1Z2X6A7	01KJCQ5YVCGADYBPNTMCB89VWA	Title	title	text	t	\N	\N	0	2026-02-26 11:16:27.073+01	2026-02-26 11:16:27.073+01	\N
01KJCRA7A3RXCF0HQ2PQ2TVX3Y	01KJCR9SD3Z29PV92PGX2GZ0C7	Description	description	text	f	\N	\N	1	2026-02-26 11:36:03.779+01	2026-02-26 11:36:03.779+01	\N
01KJCRG9D21SD0W0VM064DGGP6	01KJCRFM1YQP7191RB4QRXZ102	Svg	svg	textarea	t	\N	\N	0	2026-02-26 11:39:22.53+01	2026-02-26 11:39:22.53+01	\N
01KJ4MMAD8S8A5EM1QHTFQ8C2D	01KJ4MGF3A600HC8RA94DK78PE	Svg	svg	textarea	t	\N	\N	0	2026-02-23 07:57:44.872+01	2026-02-27 07:45:45.915+01	\N
01KJCRGQ7GJ05M8NA4TBW0856R	01KJCRFM1YQP7191RB4QRXZ102	Title	title	text	t	\N	\N	1	2026-02-26 11:39:36.688+01	2026-02-26 11:39:43.865+01	\N
01KJCRHD21G9BN60YJF6A1XH7W	01KJCRFM1YQP7191RB4QRXZ102	Description	description	text	t	\N	\N	2	2026-02-26 11:39:59.041+01	2026-02-26 11:40:09.512+01	\N
01KJCSGTMJB8QTJ8KM4W50CJ79	01KJCSGDFR1J7YKFS67DQVJH3Q	Svg	svg	textarea	t	\N	\N	0	2026-02-26 11:57:08.754+01	2026-02-26 11:57:08.754+01	\N
01KJCSH30GJJN08HW32HWFJGVX	01KJCSGDFR1J7YKFS67DQVJH3Q	title	title	text	t	\N	\N	1	2026-02-26 11:57:17.328+01	2026-02-26 11:57:17.328+01	\N
01KJCWADTDN3HK6BGM8NH1HPHK	01KJCW9YMMY7JCV8ESA9NDTWQ0	Svg	svg	textarea	t	\N	\N	0	2026-02-26 12:46:04.749+01	2026-02-26 12:46:04.749+01	\N
01KJCWARYY5Y54CT4DGQY7D1Z7	01KJCW9YMMY7JCV8ESA9NDTWQ0	Title	title	text	t	\N	\N	1	2026-02-26 12:46:16.158+01	2026-02-26 12:46:16.158+01	\N
01KJCXSHV8C1SGGQMTW8P72ZM7	01KJCXS6M5E7ME3PAQZC4ACP4A	Title	title	text	t	\N	\N	0	2026-02-26 13:11:48.968+01	2026-02-26 13:11:48.968+01	\N
01KJCXSTK6CBTQT1X9YPDMD35D	01KJCXS6M5E7ME3PAQZC4ACP4A	Description	description	text	t	\N	\N	1	2026-02-26 13:11:57.926+01	2026-02-26 13:11:57.926+01	\N
01KJEVK8W8G31ZHQE6D236RBMV	01KJCXS6M5E7ME3PAQZC4ACP4A	List Title	list_title	text	f	\N	\N	3	2026-02-27 07:11:54.889+01	2026-03-03 12:21:34.727+01	\N
01KJER3ECRNNRBM83PMQKQ6CJ0	01KJER2QEH3BPA1TH7JS6KBY1Q	title	title	text	f	\N	\N	0	2026-02-27 06:10:50.52+01	2026-02-27 06:10:50.52+01	\N
01KJERDTZMQQXCK315X3G1EQJA	01KJER2QEH3BPA1TH7JS6KBY1Q	description 	description_	text	f	\N	\N	1	2026-02-27 06:16:31.093+01	2026-02-27 06:16:31.093+01	\N
01KJYCP1WZKNNBDCMQTK57J98M	01KJYCNP975JEKM0C1XWAPX81H	Cat Title	title	text	f	\N	\N	0	2026-03-05 07:59:08.32+01	2026-03-05 08:05:45.04+01	\N
01KJYD52HH2CBP6V4RDDK5XN2A	01KJYCAQDDECVSNQ2GM3BDPKQC	SubCat content	subcat_content	richtext	f	\N	\N	1	2026-03-05 08:07:20.497+01	2026-03-05 08:07:20.497+01	\N
01KJEREGGTKJPX7HH0N3Y3ANPT	01KJER2QEH3BPA1TH7JS6KBY1Q	List	list	component	t	\N	{"nested_component_type_id": "01KJCYHR290J3WK4XPSJEATJQ0"}	2	2026-02-27 06:16:53.147+01	2026-02-27 06:48:46.681+01	\N
01KJF0H7MPDAY96NB9K22NPE4K	01KJF0FBP895T4NK9T06EHTC9A	Card logo	card_logo	textarea	t	\N	\N	0	2026-02-27 08:38:10.966+01	2026-02-27 08:38:10.966+01	\N
01KJF0J18FN38DP64Q83M10VV9	01KJF0FBP895T4NK9T06EHTC9A	Card Title	card_title	text	t	\N	\N	1	2026-02-27 08:38:37.199+01	2026-02-27 08:38:37.199+01	\N
01KJF0JQVD6FCRMWQ8FS4V29Z5	01KJF0FBP895T4NK9T06EHTC9A	subtitle 1	subtitle_1	text	t	\N	\N	2	2026-02-27 08:39:00.333+01	2026-02-27 08:39:00.333+01	\N
01KJF0K3RYYS01H4MMBQCCJ06E	01KJF0FBP895T4NK9T06EHTC9A	description 1	description_1	text	t	\N	\N	3	2026-02-27 08:39:12.542+01	2026-02-27 08:39:12.542+01	\N
01KJYF47RT6D18HZJKNPZ55357	01KJYCNP975JEKM0C1XWAPX81H	Content	content	richtext	f	\N	\N	1	2026-03-05 08:41:50.234+01	2026-03-05 08:41:50.234+01	\N
01KJF0KQ7NKQR2D2X2S9DYJ0QA	01KJF0FBP895T4NK9T06EHTC9A	Subtitle 2	subtitle_2	text	t	\N	\N	4	2026-02-27 08:39:32.469+01	2026-02-27 08:39:32.469+01	\N
01KJEV3T6AHKP7X1B31N2NR8QC	01KJCXS6M5E7ME3PAQZC4ACP4A	List Item section	list_section	component	f	\N	{"nested_component_type_id": "01KJCYHR290J3WK4XPSJEATJQ0"}	4	2026-02-27 07:03:28.33+01	2026-02-27 07:12:10.279+01	\N
01KJF0M2SXKQETQXPSB28HD3P1	01KJF0FBP895T4NK9T06EHTC9A	Description 2	description_2	text	t	\N	\N	5	2026-02-27 08:39:44.317+01	2026-02-27 08:39:44.317+01	\N
01KJCYK69JWPGSTX8CNFJ2AX4T	01KJCYHR290J3WK4XPSJEATJQ0		list_item	text	f	\N	\N	1	2026-02-26 13:25:49.106+01	2026-02-27 07:14:32.205+01	\N
01KKE66P4X91M6EK39WS1E0DX1	01KKE66AK4NRXH532E10SB959X	Logo Svg	logo_svg	textarea	f	\N	\N	0	2026-03-11 11:13:44.221+01	2026-03-11 11:13:44.221+01	\N
01KJF0TZE1CSFVKMM5YCPSCPSX	01KJF0FBP895T4NK9T06EHTC9A	Result Subtitle	result_subtitle	text	t	\N	\N	6	2026-02-27 08:43:30.241+01	2026-02-27 08:43:30.241+01	\N
01KJF0VFC8BY91Z16A86YAV7ZE	01KJF0FBP895T4NK9T06EHTC9A	Result Description 	result_description_	text	t	\N	\N	7	2026-02-27 08:43:46.568+01	2026-02-27 08:43:46.568+01	\N
01KJEW5137HKFRGCDN8FRWT246	01KJCYQ4WQQNK6Z7ZX1WZCP8X1	Title	title	text	t	\N	\N	1	2026-02-27 07:21:36.743+01	2026-02-27 07:23:49.765+01	\N
01KJF16AYC2SBQVYNMTA0GXJXR	01KJF1608J17EF03NT0VCRAC5P	Title	title	text	t	\N	\N	0	2026-02-27 08:49:42.476+01	2026-02-27 08:49:42.476+01	\N
01KJY6H1WXH2PZRFYCAE468XRB	01KJY6GATAFCTQQ0RN3K7NP7Z3	Description	description	text	f	\N	\N	1	2026-03-05 06:11:33.021+01	2026-03-05 06:11:33.021+01	\N
01KJEW4K6962MQTCVGSHKBR4XD	01KJCYQ4WQQNK6Z7ZX1WZCP8X1	Svg	svg	textarea	t	\N	\N	0	2026-02-27 07:21:22.505+01	2026-02-27 07:26:02.109+01	\N
01KJEZJCBM9SNY1ENN13Z8YFGZ	01KJEZEJCNXCRFAZW0BR2BJRCW	Title	title	text	t	\N	\N	0	2026-02-27 08:21:19.988+01	2026-02-27 08:21:19.988+01	\N
01KJEZJM6WN268N0GHESN82QR7	01KJEZEJCNXCRFAZW0BR2BJRCW	Description 	description_	text	f	\N	\N	1	2026-02-27 08:21:28.028+01	2026-02-27 08:21:28.028+01	\N
01KKE670V5SQFK9RAN0642W2W8	01KKE66AK4NRXH532E10SB959X	Text	text	text	f	\N	\N	1	2026-03-11 11:13:55.173+01	2026-03-11 11:13:55.173+01	\N
01KJF0284H5HWS69W4EBE7A5B2	01KJEZWYV76N20K0X6CQ203JST	Step Tag	step_tag	text	t	\N	\N	1	2026-02-27 08:29:59.953+01	2026-02-27 08:29:59.953+01	\N
01KJF02JDK5ZMNYM7F1CRA9CAG	01KJEZWYV76N20K0X6CQ203JST	Title	title	text	t	\N	\N	2	2026-02-27 08:30:10.483+01	2026-02-27 08:30:10.483+01	\N
01KJF02WGAW5DKV5EX3GBM1HYG	01KJEZWYV76N20K0X6CQ203JST	Description	description	text	t	\N	\N	3	2026-02-27 08:30:20.811+01	2026-02-27 08:30:20.811+01	\N
01KJF040Q66SRJNWCSABWQG06M	01KJEZEJCNXCRFAZW0BR2BJRCW	Process Steps	process_steps	component	t	\N	{"nested_component_type_id": "01KJEZWYV76N20K0X6CQ203JST"}	3	2026-02-27 08:30:57.894+01	2026-02-27 08:31:39.731+01	\N
01KJF19JMY9E5HQ871VG8G4QZW	01KJF18ZT0HXWF7MBW1PRB0NP5	Logo Svg	logo_svg	textarea	t	\N	\N	0	2026-02-27 08:51:28.67+01	2026-02-27 08:51:28.67+01	\N
01KJF01H0PQJ0SHEZ3J41F2Z8A	01KJEZWYV76N20K0X6CQ203JST	Step No.	step_no.	text	t	\N	\N	0	2026-02-27 08:29:36.278+01	2026-02-27 10:35:48.743+01	\N
01KJF8GYZJYYHP3BN0HYV64Q4E	01KJF8G2V1EK5XSNMK7YC6PEFX	Title	title	text	f	\N	\N	1	2026-02-27 10:57:50.706+01	2026-02-27 10:57:50.706+01	\N
01KJF8HAK9YSW1S5W9VQ57HP7R	01KJF8G2V1EK5XSNMK7YC6PEFX	Description	description	text	f	\N	\N	2	2026-02-27 10:58:02.601+01	2026-02-27 10:58:02.601+01	\N
01KKECWZMBA7TH6WX9NKG3EENE	01KKECW38R6TX0072BQV90VD9P	Logo Svg	logo_svg	textarea	f	\N	\N	0	2026-03-11 13:10:46.283+01	2026-03-11 13:10:46.283+01	\N
01KKECX7AJGTS6YG1W295JY3DV	01KKECW38R6TX0072BQV90VD9P	Title	title	text	f	\N	\N	1	2026-03-11 13:10:54.162+01	2026-03-11 13:10:54.162+01	\N
01KKECYFTBHF0SC5QQCR3AEDNF	01KKECW38R6TX0072BQV90VD9P	Features	features	component	f	\N	{"nested_component_type_id": "01KKE66AK4NRXH532E10SB959X"}	2	2026-03-11 13:11:35.627+01	2026-03-11 13:11:35.627+01	\N
01KJPX4SJYTTS78W7JJQQA34S6	01KJPX328A7NBCCH3AX2CTFZRE	Title	title	text	f	\N	\N	0	2026-03-02 10:12:53.086+01	2026-03-02 10:12:53.086+01	\N
01KJPX546KYSBC27YWH5TYTZV9	01KJPX328A7NBCCH3AX2CTFZRE	RichText	richtext	richtext	f	\N	\N	1	2026-03-02 10:13:03.955+01	2026-03-02 10:13:03.955+01	\N
01KJPX99Q1ZHD2YXTR0NFJGCGP	01KJPX692NCR9B8TCFCSFCH5CT	Title	title	text	f	\N	\N	0	2026-03-02 10:15:20.673+01	2026-03-02 10:16:29.614+01	\N
01KJPX6RDD3CNVF6SE4EPTQZSA	01KJPX692NCR9B8TCFCSFCH5CT	FirstLevel	firstlevel	component	f	\N	{"nested_component_type_id": "01KJPX328A7NBCCH3AX2CTFZRE"}	1	2026-03-02 10:13:57.422+01	2026-03-02 10:16:29.619+01	\N
01KJPX9NHSTKDB9EHP92EZ9HZ6	01KJPX762XE8229J5RR7GKFXHV	Title	title	text	f	\N	\N	0	2026-03-02 10:15:32.793+01	2026-03-02 10:18:13.424+01	\N
01KJF16PTWFCN7SSQMREH01Q96	01KJF1608J17EF03NT0VCRAC5P	Subtitle	subtitle	text	f	\N	\N	1	2026-02-27 08:49:54.652+01	2026-03-03 06:59:38.926+01	\N
01KJPX7E188FNRSNDBWPFTPWDT	01KJPX762XE8229J5RR7GKFXHV	test	test	component	f	\N	{"nested_component_type_id": "01KJPX692NCR9B8TCFCSFCH5CT"}	1	2026-03-02 10:14:19.56+01	2026-03-02 14:12:23.527+01	\N
01KJF8GDV1QHD0D6C93ASZDA86	01KJF8G2V1EK5XSNMK7YC6PEFX	Svg Logo	svg	textarea	f	\N	\N	0	2026-02-27 10:57:33.153+01	2026-03-03 05:55:57.812+01	\N
01KJPN957S2NY18SS10C6KZMGY	01KJPN8G0ZANRHDN5BK7S70FSY	HTML text	html_text	richtext	f	\N	\N	0	2026-03-02 07:55:27.481+01	2026-03-03 11:34:03.634+01	\N
01KJY6GQZPGAFNRW2T5RB2SW30	01KJY6GATAFCTQQ0RN3K7NP7Z3	Ttitle	ttitle	text	f	\N	\N	0	2026-03-05 06:11:22.87+01	2026-03-05 06:11:22.87+01	\N
01KJPYWTPS4FWD3A8YHWK0N933	01KJPYWH0G5C03G5B5K6CEDXHH	Title	title	text	f	\N	\N	0	2026-03-02 10:43:29.241+01	2026-03-02 10:43:29.241+01	\N
01KJPYXN0BNR1Y6K6C90RV0NJ4	01KJPYWH0G5C03G5B5K6CEDXHH	Richtext	richtext	richtext	f	\N	\N	1	2026-03-02 10:43:56.172+01	2026-03-02 10:43:56.172+01	\N
01KJQ4WYYCX646NZY8TWGWK1RG	01KJCAVQMZ61BFP5G8VBFZ55B2	Cards	cards	component	f	\N	{"nested_component_type_id": "01KJCBWC3E7JRP21XSR89GWNS1"}	4	2026-03-02 12:28:25.036+01	2026-03-02 12:28:25.036+01	\N
01KJS0NKR90QMFX9A9N79W7HE7	01KJCR9SD3Z29PV92PGX2GZ0C7	Optimization Steps	optimization_steps	component	f	\N	{"nested_component_type_id": "01KJF8G2V1EK5XSNMK7YC6PEFX"}	6	2026-03-03 05:52:58.761+01	2026-03-03 05:54:01.279+01	\N
01KJS15CH6AGVT8Q4MCMR5ZMTG	01KJS151GQZBQFWAX8MASWXY3T	Title	title	text	f	\N	\N	0	2026-03-03 06:01:35.654+01	2026-03-03 06:01:35.654+01	\N
01KJS15S6P84N68V8ZE7ZV4SWS	01KJS151GQZBQFWAX8MASWXY3T	Description	description	text	f	\N	\N	1	2026-03-03 06:01:48.63+01	2026-03-03 06:01:48.63+01	\N
01KJS178DY0E6RNYFHRAETDBC6	01KJS16YHCGVP18SDJMK4Q54KF	Button Text	button_text	text	t	\N	\N	0	2026-03-03 06:02:36.99+01	2026-03-03 06:02:41.012+01	\N
01KJS1AFBN39DAZ0XR5TRB64M4	01KJS151GQZBQFWAX8MASWXY3T	Button	button	component	f	\N	{"nested_component_type_id": "01KJS16YHCGVP18SDJMK4Q54KF"}	2	2026-03-03 06:04:22.389+01	2026-03-03 06:04:22.389+01	\N
01KJS1DMKT4TZSVYWNE9S5NF29	01KJCAFH206EP746WFSVE2JY43	Image Mobile	image_mobile	image	t	\N	\N	1	2026-03-03 06:06:06.074+01	2026-03-03 06:06:06.074+01	\N
01KJS1QFY63GMK636JQH6FZFC4	01KJS151GQZBQFWAX8MASWXY3T	Image	image	component	f	\N	{"nested_component_type_id": "01KJCAFH206EP746WFSVE2JY43"}	3	2026-03-03 06:11:28.966+01	2026-03-03 06:11:28.966+01	\N
01KJS1S46FR4AH3DSCARNWVZBT	01KJS151GQZBQFWAX8MASWXY3T	Works Steps	works_steps	component	f	\N	{"nested_component_type_id": "01KJF8G2V1EK5XSNMK7YC6PEFX"}	4	2026-03-03 06:12:22.479+01	2026-03-03 06:12:22.479+01	\N
01KJS35R1PDGHA8JZDP85E46Z6	01KJS35JKYBRFMZQH5AJJMWFXF	Title	title	text	f	\N	\N	0	2026-03-03 06:36:44.598+01	2026-03-03 06:36:44.598+01	\N
01KJS35YZ64YB0N1MA7G6QDXS5	01KJS35JKYBRFMZQH5AJJMWFXF	Description	description	text	f	\N	\N	1	2026-03-03 06:36:51.686+01	2026-03-03 06:36:51.686+01	\N
01KJS370SQ1NTDVBHVJ317S3PS	01KJS35JKYBRFMZQH5AJJMWFXF	Richtext	richtext	component	f	\N	{"nested_component_type_id": "01KJPN8G0ZANRHDN5BK7S70FSY"}	2	2026-03-03 06:37:26.327+01	2026-03-03 06:37:26.327+01	\N
01KJSFG45K8Z1AY81FMCB48K6J	01KHXGG6X8CMGQQYVDV92FKHQC	Button	button	component	f	\N	{"nested_component_type_id": "01KJS16YHCGVP18SDJMK4Q54KF"}	2	2026-03-03 10:12:07.603+01	2026-03-03 10:12:07.603+01	\N
01KJSFGS3QS9KS97JB7C3T7AVM	01KHXGG6X8CMGQQYVDV92FKHQC	BG Image	bg_image	component	f	\N	{"nested_component_type_id": "01KJCAFH206EP746WFSVE2JY43"}	3	2026-03-03 10:12:29.047+01	2026-03-03 10:12:29.047+01	\N
01KJSG0X3RT3QZ1WMYM2YG9449	01KJSG0PQ80S3PC6CPFVK9RGGS	Title	title	text	f	\N	\N	0	2026-03-03 10:21:17.433+01	2026-03-03 10:21:17.433+01	\N
01KJSG1D24399SG6P48EZP9476	01KJSG0PQ80S3PC6CPFVK9RGGS	Description	description	text	f	\N	\N	1	2026-03-03 10:21:33.765+01	2026-03-03 10:21:33.765+01	\N
01KJSG1R49ZKFW54EHAQAD2MYD	01KJSG0PQ80S3PC6CPFVK9RGGS	Button	button	component	f	\N	{"nested_component_type_id": "01KJS16YHCGVP18SDJMK4Q54KF"}	2	2026-03-03 10:21:45.097+01	2026-03-03 10:21:45.097+01	\N
01KJSHYGHRH2GQA9DGPZA7SKRG	01KJSHY7BSXPTJ19S371HC5QWH	Image	image	image	t	\N	\N	0	2026-03-03 10:54:56.184+01	2026-03-03 10:54:56.184+01	\N
01KJSJKWN5CAXJJQYCFAKSTSX4	01KJSJKPXQ3D5D5PMK5487RFK5	Title	title	text	f	\N	\N	0	2026-03-03 11:06:36.709+01	2026-03-03 11:06:36.709+01	\N
01KJSJM42PRDRE75QBJ8D8160N	01KJSJKPXQ3D5D5PMK5487RFK5	Description	description	text	f	\N	\N	1	2026-03-03 11:06:44.31+01	2026-03-03 11:06:44.31+01	\N
01KJSJMHHYBMZFCZHH5VADH3BH	01KJSJKPXQ3D5D5PMK5487RFK5	BG Image	bg_image	component	f	\N	{"nested_component_type_id": "01KJCAFH206EP746WFSVE2JY43"}	2	2026-03-03 11:06:58.111+01	2026-03-03 11:06:58.111+01	\N
01KJSPX2DA8NRVBX174XG3935K	01KJCXS6M5E7ME3PAQZC4ACP4A	BG Image	image	component	f	\N	{"nested_component_type_id": "01KJCAFH206EP746WFSVE2JY43"}	2	2026-03-03 12:21:31.818+01	2026-03-03 12:21:41.382+01	\N
01KJSM4NM8QD7ZPPJESQRCJ55G	01KJCAVQMZ61BFP5G8VBFZ55B2	Rich Text	rich_text	component	f	\N	{"nested_component_type_id": "01KJPN8G0ZANRHDN5BK7S70FSY"}	2	2026-03-03 11:33:15.144+01	2026-03-03 11:33:18.041+01	\N
01KJSM40T7G6RGFVW3NYY57F76	01KJCAVQMZ61BFP5G8VBFZ55B2	BG Image	bg_image	component	f	\N	{"nested_component_type_id": "01KJCAFH206EP746WFSVE2JY43"}	3	2026-03-03 11:32:53.831+01	2026-03-03 11:33:18.045+01	\N
01KJSMSWZHB5TM87GQP8D3METE	01KJCR9SD3Z29PV92PGX2GZ0C7	Button	button	component	f	\N	{"nested_component_type_id": "01KJS16YHCGVP18SDJMK4Q54KF"}	3	2026-03-03 11:44:50.801+01	2026-03-03 11:44:50.801+01	\N
01KJSPKM6Q8B6QT35K34AYWNE2	01KJSPK5XHQXFS51NT3C6DFSV0	Title	title	text	f	\N	\N	0	2026-03-03 12:16:22.359+01	2026-03-03 12:16:22.359+01	\N
01KJSPKXG6J0CA0E69K2TTKW1G	01KJSPK5XHQXFS51NT3C6DFSV0	Description	description	text	f	\N	\N	1	2026-03-03 12:16:31.878+01	2026-03-03 12:16:31.878+01	\N
01KJSSAXHB08RD16RHB8HFMSPM	01KJCYQ4WQQNK6Z7ZX1WZCP8X1	Rich Text	rich_text	component	f	\N	{"nested_component_type_id": "01KJPN8G0ZANRHDN5BK7S70FSY"}	2	2026-03-03 13:04:02.732+01	2026-03-03 13:04:02.732+01	\N
01KJSSJ7C656VFEZ47R4KT6DB6	01KJSSHYDY8NZ3JFASYNXKZ6C5	Tittle	tittle	text	f	\N	\N	0	2026-03-03 13:08:02.182+01	2026-03-03 13:08:02.182+01	\N
01KJSSM81ZTM5AB6X0WR59V46H	01KJSSHYDY8NZ3JFASYNXKZ6C5	Cards	cards	component	f	\N	{"nested_component_type_id": "01KJCSGDFR1J7YKFS67DQVJH3Q"}	1	2026-03-03 13:09:08.415+01	2026-03-03 13:09:08.415+01	\N
01KJSR8NVC1301YH3RG2MKHNXV	01KJSQXXX132XKJD9QHWP3MD62	Title	title	text	f	\N	\N	0	2026-03-03 12:45:20.748+01	2026-03-03 12:45:29.732+01	\N
01KJSR8WZ3952RWZPW5X94H1Q7	01KJSQXXX132XKJD9QHWP3MD62	Description	description	text	f	\N	\N	1	2026-03-03 12:45:28.035+01	2026-03-03 12:45:30.756+01	\N
01KJSQZTV8939BV311Q9PJY28B	01KJSQXXX132XKJD9QHWP3MD62	Cards	cards	component	f	\N	{"nested_component_type_id": "01KJF8G2V1EK5XSNMK7YC6PEFX"}	2	2026-03-03 12:40:30.952+01	2026-03-03 12:45:30.76+01	\N
01KJSRVCVKCEX5N6F9KJMP0RJB	01KJSRV3Z2RV82BTPVA0KYTHWS	Title	title	text	f	\N	\N	0	2026-03-03 12:55:34.131+01	2026-03-03 12:55:34.131+01	\N
01KJSRVQC2PJPZ2WCPY84AYA4M	01KJSRV3Z2RV82BTPVA0KYTHWS	Description	description	text	f	\N	\N	1	2026-03-03 12:55:44.898+01	2026-03-03 12:55:44.898+01	\N
01KJSRXR8CVDPHRV4J9JA7VQGY	01KJSRV3Z2RV82BTPVA0KYTHWS	Sectors 	sectors_	component	f	\N	{"nested_component_type_id": "01KJF8G2V1EK5XSNMK7YC6PEFX"}	2	2026-03-03 12:56:51.34+01	2026-03-03 12:56:51.34+01	\N
01KJSSZFCGJJYAVPW6VZEWMKV6	01KJCSGDFR1J7YKFS67DQVJH3Q	Richtext	richtext	richtext	f	\N	\N	2	2026-03-03 13:15:16.368+01	2026-03-03 13:15:16.368+01	\N
01KJSW1ZCRS036D5114RQ82XJB	01KJSW16P8QY69Q1F93PPH20JV	Description	description	text	f	\N	\N	1	2026-03-03 13:51:35.448+01	2026-03-03 13:51:35.448+01	\N
01KJSW2TS8BASHKMXFH912FQX8	01KJSW16P8QY69Q1F93PPH20JV	Cards	cards	component	f	\N	{"nested_component_type_id": "01KJCSGDFR1J7YKFS67DQVJH3Q"}	2	2026-03-03 13:52:03.496+01	2026-03-03 13:52:03.496+01	\N
01KJSW1K0S5A1TRJKTZKP8VRRT	01KJSW16P8QY69Q1F93PPH20JV	Title	title	text	f	\N	\N	0	2026-03-03 13:51:22.777+01	2026-03-03 13:52:19.919+01	\N
01KJSWWN60BCZP1ZHSD7A9XMN6	01KJSWW8NEJM75RQCRBVPXMCJQ	Title	title	text	f	\N	\N	0	2026-03-03 14:06:09.728+01	2026-03-03 14:06:09.728+01	\N
01KJSWWYBYK8B5WSZ2QFABM1AD	01KJSWW8NEJM75RQCRBVPXMCJQ	Description	description	text	f	\N	\N	1	2026-03-03 14:06:19.134+01	2026-03-03 14:06:19.134+01	\N
01KJSWXZ06S84ZXXH4RBYP6VSV	01KJSWW8NEJM75RQCRBVPXMCJQ	Cards	cards	component	f	\N	{"nested_component_type_id": "01KJF0FBP895T4NK9T06EHTC9A"}	2	2026-03-03 14:06:52.55+01	2026-03-03 14:06:52.55+01	\N
01KJSXF4ZN7GR7PVDR0CQHB3J5	01KJSXEXK8TKWG1THGKJYP98NS	Title	title	text	f	\N	\N	0	2026-03-03 14:16:15.733+01	2026-03-03 14:16:15.733+01	\N
01KJSXFCRCHSQNNRR3VCB13K6J	01KJSXEXK8TKWG1THGKJYP98NS	Description	description	text	f	\N	\N	1	2026-03-03 14:16:23.692+01	2026-03-03 14:16:23.692+01	\N
01KJSXG5KBTJQ15ZGXNR68GSC5	01KJSXEXK8TKWG1THGKJYP98NS	Resions	resions	component	f	\N	{"nested_component_type_id": "01KJF1608J17EF03NT0VCRAC5P"}	2	2026-03-03 14:16:49.131+01	2026-03-03 14:16:49.131+01	\N
01KJY6HB0ZQSMSQ0KCVFHZEVZJ	01KJY6GATAFCTQQ0RN3K7NP7Z3	Key Regulations	key_regulations	component	f	\N	{"nested_component_type_id": "01KJPYWH0G5C03G5B5K6CEDXHH"}	2	2026-03-05 06:11:42.367+01	2026-03-05 06:11:51.545+01	\N
01KJYCJ9PJRBNKFCV7E2AFVT22	01KJYCJ0H96Y7WKF1H8Y4M6AJ9	Section Title	section_title	text	f	\N	\N	0	2026-03-05 07:57:05.234+01	2026-03-05 07:57:05.234+01	\N
01KJYD6RBA8HWZJNEGAHJKSM5X	01KJYCJ0H96Y7WKF1H8Y4M6AJ9	Cat	cat	component	f	\N	{"nested_component_type_id": "01KJYCNP975JEKM0C1XWAPX81H"}	1	2026-03-05 08:08:15.595+01	2026-03-05 08:08:15.595+01	\N
01KJY9WM2BWQ9DZHN49771W1NC	01KJY9WD57QTH2E5W4HRW3AWF9	Title	title	text	f	\N	\N	0	2026-03-05 07:10:17.803+01	2026-03-05 07:10:17.803+01	\N
01KJY9WWTSFCRRGAE5T67HV3JT	01KJY9WD57QTH2E5W4HRW3AWF9	Description	description	text	f	\N	\N	1	2026-03-05 07:10:26.777+01	2026-03-05 07:10:26.777+01	\N
01KJY9Y66TDYP2RCSXK3PS0GHS	01KJY9WD57QTH2E5W4HRW3AWF9	Card Deatil	card_deatil	component	f	\N	{"nested_component_type_id": "01KJCSGDFR1J7YKFS67DQVJH3Q"}	2	2026-03-05 07:11:09.146+01	2026-03-05 07:11:09.146+01	\N
01KJYA4B6FZG82R3VJB2GA55E0	01KJYA42WCPDWCFCJ38H26MT3S	Title	title	text	f	\N	\N	0	2026-03-05 07:14:30.863+01	2026-03-05 07:14:30.863+01	\N
01KJYA4N6DSKTEZNPYVS82KPTH	01KJYA42WCPDWCFCJ38H26MT3S	Description	description	text	f	\N	\N	1	2026-03-05 07:14:41.101+01	2026-03-05 07:14:41.101+01	\N
01KJYA894CCJBWF5YAYHSNCYFQ	01KJYA42WCPDWCFCJ38H26MT3S	Interpret Steps	interpret_steps	component	f	\N	{"nested_component_type_id": "01KJEZWYV76N20K0X6CQ203JST"}	2	2026-03-05 07:16:39.821+01	2026-03-05 07:16:39.821+01	\N
01KJYA9VNJZSV22PPX15YWWC86	01KJYA42WCPDWCFCJ38H26MT3S	About Code Info	about_code_info	richtext	f	\N	\N	3	2026-03-05 07:17:31.57+01	2026-03-05 07:17:31.57+01	\N
01KKE62KFQABNC5ZFGTF9E3EFZ	01KKE62E7EG6NE9KCY6YC2NT0F	Title	title	text	f	\N	\N	0	2026-03-11 11:11:30.423+01	2026-03-11 11:11:30.423+01	\N
01KKE62SGPM2E5ZW9Y87TBEBPF	01KKE62E7EG6NE9KCY6YC2NT0F	Description 	description	text	f	\N	\N	1	2026-03-11 11:11:36.598+01	2026-03-11 11:11:42.151+01	\N
01KKE6C1Q1M17G2VB1F7SFV00Y	01KKE62E7EG6NE9KCY6YC2NT0F	Contact Information	contact_information	component	f	\N	{"nested_component_type_id": "01KKE66AK4NRXH532E10SB959X"}	2	2026-03-11 11:16:39.906+01	2026-03-11 11:16:42.795+01	\N
01KKEDZNPVA2G5C0HC220G0KCZ	01KKEDYH2KT5ZD3QS4BP2EE13Q	Info	info	component	f	\N	{"nested_component_type_id": "01KJF1608J17EF03NT0VCRAC5P"}	0	2026-03-11 13:29:43.003+01	2026-03-11 13:29:43.003+01	\N
\.


--
-- Data for Name: cms_component_folder; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cms_component_folder (id, name, created_at, updated_at, deleted_at) FROM stdin;
01KHX16CR0GT5DNQRYR3W24BKK	Home	2026-02-20 09:03:24.544+01	2026-02-20 09:03:24.544+01	\N
01KJSRJ19GG9YPCRKHTB5N3C0G	About Us	2026-03-03 12:50:27.376+01	2026-03-03 12:50:27.376+01	\N
01KJSVTKA866EPF6HEJJEQTN5K	Personalized Services	2026-03-03 13:47:33.705+01	2026-03-03 13:47:33.705+01	\N
01KJY63MQ5VW84SEPT09HFGFCQ	Legal Page	2026-03-05 06:04:13.541+01	2026-03-05 06:04:13.541+01	\N
01KJY9D0415VZW6ZTPZJY1P3TN	Ler Code page	2026-03-05 07:01:45.858+01	2026-03-05 07:01:45.858+01	\N
01KKE61MV4HYMXKDV0FPMT875C	Payment	2026-03-11 11:10:59.045+01	2026-03-11 11:10:59.045+01	\N
01KKECTXS4VF3WA1YD89M9M1NH	Check Out	2026-03-11 13:09:38.852+01	2026-03-11 13:09:38.852+01	\N
\.


--
-- Data for Name: cms_component_instance; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cms_component_instance (id, component_type_id, data, created_at, updated_at, deleted_at) FROM stdin;
01KJ4NS5R04PYFWJMA8RD4W3FT	01KJ4NJNB7P161TDSQZEKM6JCW	{"name": "© 2023 - 2025 Biomket. ", "items": [{"name": "© 2023 - 2025 Biomket. "}]}	2026-02-23 08:17:52.513+01	2026-02-26 12:08:59.356+01	\N
01KJ4P5ASJ8BQD4VKRP6FZXJJC	01KJ4ME13788FKSG104Z7VMF4M	{"link": "/legal-notice", "name": "Legal Notice", "items": [{"link": "/legal-notice", "name": "Legal Notice"}, {"link": "/privacy-policy", "name": "Privacy Policy"}, {"link": "/terms-and-conditions", "name": "Terms and Conditions"}, {"link": "/cookies-policy", "name": "Cookies Policy"}]}	2026-02-23 08:24:30.898+01	2026-02-26 12:35:45.417+01	\N
01KJCWC1F4KDFR9S8PG6S46MZE	01KJCW9YMMY7JCV8ESA9NDTWQ0	{"items": [{"svg": "<svg width=\\"24\\" height=\\"24\\" viewBox=\\"0 0 24 24\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M19.5 7.5H16.5V5.25C16.5 4.05653 16.0259 2.91193 15.182 2.06802C14.3381 1.22411 13.1935 0.75 12 0.75C10.8065 0.75 9.66193 1.22411 8.81802 2.06802C7.97411 2.91193 7.5 4.05653 7.5 5.25V7.5H4.5C4.10218 7.5 3.72064 7.65804 3.43934 7.93934C3.15804 8.22064 3 8.60218 3 9V19.5C3 19.8978 3.15804 20.2794 3.43934 20.5607C3.72064 20.842 4.10218 21 4.5 21H19.5C19.8978 21 20.2794 20.842 20.5607 20.5607C20.842 20.2794 21 19.8978 21 19.5V9C21 8.60218 20.842 8.22064 20.5607 7.93934C20.2794 7.65804 19.8978 7.5 19.5 7.5ZM9 5.25C9 4.45435 9.31607 3.69129 9.87868 3.12868C10.4413 2.56607 11.2044 2.25 12 2.25C12.7956 2.25 13.5587 2.56607 14.1213 3.12868C14.6839 3.69129 15 4.45435 15 5.25V7.5H9V5.25ZM19.5 19.5H4.5V9H19.5V19.5ZM13.125 14.25C13.125 14.4725 13.059 14.69 12.9354 14.875C12.8118 15.06 12.6361 15.2042 12.4305 15.2894C12.225 15.3745 11.9988 15.3968 11.7805 15.3534C11.5623 15.31 11.3618 15.2028 11.2045 15.0455C11.0472 14.8882 10.94 14.6877 10.8966 14.4695C10.8532 14.2512 10.8755 14.025 10.9606 13.8195C11.0458 13.6139 11.19 13.4382 11.375 13.3146C11.56 13.191 11.7775 13.125 12 13.125C12.2984 13.125 12.5845 13.2435 12.7955 13.4545C13.0065 13.6655 13.125 13.9516 13.125 14.25Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Sign In"}, {"svg": "<svg width=\\"24\\" height=\\"24\\" viewBox=\\"0 0 24 24\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M12 2.25C10.0716 2.25 8.18657 2.82183 6.58319 3.89317C4.97982 4.96451 3.73013 6.48726 2.99218 8.26884C2.25422 10.0504 2.06114 12.0108 2.43735 13.9021C2.81355 15.7934 3.74215 17.5307 5.10571 18.8943C6.46928 20.2579 8.20656 21.1865 10.0979 21.5627C11.9892 21.9389 13.9496 21.7458 15.7312 21.0078C17.5127 20.2699 19.0355 19.0202 20.1068 17.4168C21.1782 15.8134 21.75 13.9284 21.75 12C21.7473 9.41498 20.7192 6.93661 18.8913 5.10872C17.0634 3.28084 14.585 2.25273 12 2.25ZM6.945 18.5156C7.48757 17.6671 8.23501 16.9688 9.11843 16.4851C10.0019 16.0013 10.9928 15.7478 12 15.7478C13.0072 15.7478 13.9982 16.0013 14.8816 16.4851C15.765 16.9688 16.5124 17.6671 17.055 18.5156C15.6097 19.6397 13.831 20.2499 12 20.2499C10.169 20.2499 8.39032 19.6397 6.945 18.5156ZM9 11.25C9 10.6567 9.17595 10.0766 9.5056 9.58329C9.83524 9.08994 10.3038 8.70542 10.852 8.47836C11.4001 8.2513 12.0033 8.19189 12.5853 8.30764C13.1672 8.4234 13.7018 8.70912 14.1213 9.12868C14.5409 9.54824 14.8266 10.0828 14.9424 10.6647C15.0581 11.2467 14.9987 11.8499 14.7716 12.3981C14.5446 12.9462 14.1601 13.4148 13.6667 13.7444C13.1734 14.0741 12.5933 14.25 12 14.25C11.2044 14.25 10.4413 13.9339 9.87868 13.3713C9.31607 12.8087 9 12.0456 9 11.25ZM18.165 17.4759C17.3285 16.2638 16.1524 15.3261 14.7844 14.7806C15.5192 14.2019 16.0554 13.4085 16.3184 12.5108C16.5815 11.6132 16.5582 10.6559 16.252 9.77207C15.9457 8.88825 15.3716 8.12183 14.6096 7.5794C13.8475 7.03696 12.9354 6.74548 12 6.74548C11.0646 6.74548 10.1525 7.03696 9.39044 7.5794C8.62839 8.12183 8.05432 8.88825 7.74805 9.77207C7.44179 10.6559 7.41855 11.6132 7.68157 12.5108C7.94459 13.4085 8.4808 14.2019 9.21563 14.7806C7.84765 15.3261 6.67147 16.2638 5.835 17.4759C4.77804 16.2873 4.0872 14.8185 3.84567 13.2464C3.60415 11.6743 3.82224 10.0658 4.47368 8.61478C5.12512 7.16372 6.18213 5.93192 7.51745 5.06769C8.85276 4.20346 10.4094 3.74367 12 3.74367C13.5906 3.74367 15.1473 4.20346 16.4826 5.06769C17.8179 5.93192 18.8749 7.16372 19.5263 8.61478C20.1778 10.0658 20.3959 11.6743 20.1543 13.2464C19.9128 14.8185 19.222 16.2873 18.165 17.4759Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Register"}]}	2026-02-26 12:46:57.636+01	2026-02-26 12:47:48.874+01	\N
01KKE5S24C5MXCH4HH9X58TNGG	01KJEZEJCNXCRFAZW0BR2BJRCW	{"title": "What Happens Next?", "process_steps": {"items": [{"title": "Confirmation Email", "step_no.": "01", "step_tag": "Step 01", "description": "You will receive a detailed confirmation email with your invoice and order details within the next few minutes."}, {"title": "Vendor Confirmation", "step_no.": "02", "step_tag": "Step 02", "description": "For marketplace orders: The vendor will confirm your order within 24-48 hours and provide delivery/collection details."}, {"title": "Service Initiation", "step_no.": "03", "step_tag": "Step 03", "description": "For consulting services: Our team will contact you within 2 business days to schedule your initial consultation."}, {"title": "Track Your Order", "step_no.": "04", "step_tag": "Step 04", "description": "You can track your order status and view all documentation in your account dashboard."}]}}	2026-03-11 11:06:17.741+01	2026-03-11 11:09:19.23+01	\N
01KKGE1XTQRT9S51KKX6MK5GN6	01KJSHY7BSXPTJ19S371HC5QWH	{"items": [{"image": "https://biomket1.yourwebdemo.co.in/admin/upload/ISO_14001.png"}, {"image": "https://biomket1.yourwebdemo.co.in/admin/upload/EU.png"}, {"image": "https://biomket1.yourwebdemo.co.in/admin/upload/ISO_9001.png"}, {"image": "https://biomket1.yourwebdemo.co.in/admin/upload/Waste_cycle.png"}, {"image": "https://biomket1.yourwebdemo.co.in/admin/upload/Plastics.png"}]}	2026-03-12 08:09:25.719+01	2026-03-12 08:12:11.796+01	\N
01KJSVVB6ZK6RSQSBGHNX15Z3T	01KHXGG6X8CMGQQYVDV92FKHQC	{"items": [{"title": "We Optimize Your Organic Waste Management", "button": {"items": [{"button_url": "/contact", "button_text": "Free Consultation"}, {"button_url": "/download-brochure", "button_text": "Download Brochure"}]}, "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_banner_img_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_Banner_image.png"}]}, "description": "Transform your waste challenges into opportunities. Our expert team provides comprehensive waste management solutions tailored to your enterprise's specific needs."}]}	2026-03-03 13:47:58.175+01	2026-03-12 08:48:36.433+01	\N
01KJY4ED8GG29RYT5AM2KFS7R9	01KJSJKPXQ3D5D5PMK5487RFK5	{"items": [{"title": "Terms and Conditions", "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_banner_img_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_Banner_image.png"}]}, "description": "Have organic waste to valorize or looking for sustainable raw materials? Our team is ready to help."}]}	2026-03-05 05:35:09.201+01	2026-03-12 08:52:03.706+01	\N
01KJ4XGFAKCS40XJT34KMXF40V	01KJ4N325VBD3Y3WNAX2PN0FX4	{"link": "/", "image": "https://biomket1.yourwebdemo.co.in/admin/upload/Logo_biomke.png", "items": [{"link": "/", "image": ["https://biomket1.yourwebdemo.co.in/admin/upload/Logo_biomke.png", "https://biomket1.yourwebdemo.co.in/admin/upload/Companey_Logo_Image.png"]}]}	2026-02-23 10:32:56.019+01	2026-03-03 10:56:57.063+01	\N
01KJSGNTX9WN58TYEPN0N8Y7JM	01KJSG0PQ80S3PC6CPFVK9RGGS	{"items": [{"title": "Ready to Transform Your Organic Waste Management?", "button": {"items": [{"button_url": "/marketplace", "button_text": "Access Marketplace"}, {"button_url": "/services", "button_text": "Request Personalized Service"}]}, "description": "Join Europe's leading B2B marketplace for organic waste valorization. Start trading or request personalized consulting services today."}]}	2026-03-03 10:32:43.305+01	2026-03-03 10:45:38.624+01	\N
01KJ4NR6W0KKT1DFZH66WHVWFW	01KJ4ME13788FKSG104Z7VMF4M	{"link": "/marketplace", "name": "Marketplace", "items": [{"link": "/marketplace", "name": "Marketplace"}, {"link": "/services", "name": "Services"}, {"link": "/about-us", "name": "About Us"}, {"link": "/contact-us", "name": "Contact Us"}]}	2026-02-23 08:17:20.896+01	2026-02-26 12:17:39.762+01	\N
01KJS1SSAQW3C5HA0E3XKNDVPF	01KJS151GQZBQFWAX8MASWXY3T	{"items": [{"image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/How_it_works_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/How_it_works_Desktop.png"}]}, "title": "How it Works", "button": {"items": [{"button_url": "/contact ", "button_text": "Request Quote"}]}, "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's. ", "works_steps": {"items": [{"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M39.0625 26.3891V6.25C39.0625 5.0068 38.5686 3.81451 37.6896 2.93544C36.8105 2.05636 35.6182 1.5625 34.375 1.5625H9.375C8.1318 1.5625 6.93951 2.05636 6.06044 2.93544C5.18136 3.81451 4.6875 5.0068 4.6875 6.25V40.625C4.6875 41.8682 5.18136 43.0605 6.06044 43.9396C6.93951 44.8186 8.1318 45.3125 9.375 45.3125H25.6484C26.8692 46.4474 28.3184 47.3083 29.8989 47.8376C31.4795 48.3669 33.1548 48.5524 34.8129 48.3817C36.4709 48.211 38.0733 47.688 39.5128 46.8477C40.9523 46.0074 42.1957 44.8692 43.1596 43.5094C44.1235 42.1496 44.7858 40.5995 45.102 38.963C45.4182 37.3264 45.3811 35.6412 44.9932 34.0202C44.6053 32.3992 43.8754 30.8797 42.8526 29.5636C41.8298 28.2475 40.5376 27.1652 39.0625 26.3891ZM14.0625 12.5H29.6875C30.1019 12.5 30.4993 12.6646 30.7924 12.9576C31.0854 13.2507 31.25 13.6481 31.25 14.0625C31.25 14.4769 31.0854 14.8743 30.7924 15.1674C30.4993 15.4604 30.1019 15.625 29.6875 15.625H14.0625C13.6481 15.625 13.2507 15.4604 12.9576 15.1674C12.6646 14.8743 12.5 14.4769 12.5 14.0625C12.5 13.6481 12.6646 13.2507 12.9576 12.9576C13.2507 12.6646 13.6481 12.5 14.0625 12.5ZM14.0625 20.3125H29.6875C30.1019 20.3125 30.4993 20.4771 30.7924 20.7701C31.0854 21.0632 31.25 21.4606 31.25 21.875C31.25 22.2894 31.0854 22.6868 30.7924 22.9799C30.4993 23.2729 30.1019 23.4375 29.6875 23.4375H14.0625C13.6481 23.4375 13.2507 23.2729 12.9576 22.9799C12.6646 22.6868 12.5 22.2894 12.5 21.875C12.5 21.4606 12.6646 21.0632 12.9576 20.7701C13.2507 20.4771 13.6481 20.3125 14.0625 20.3125ZM17.1875 31.25H14.0625C13.6481 31.25 13.2507 31.0854 12.9576 30.7924C12.6646 30.4993 12.5 30.1019 12.5 29.6875C12.5 29.2731 12.6646 28.8757 12.9576 28.5826C13.2507 28.2896 13.6481 28.125 14.0625 28.125H17.1875C17.6019 28.125 17.9993 28.2896 18.2924 28.5826C18.5854 28.8757 18.75 29.2731 18.75 29.6875C18.75 30.1019 18.5854 30.4993 18.2924 30.7924C17.9993 31.0854 17.6019 31.25 17.1875 31.25ZM33.5938 45.3125C32.3223 45.3125 31.0667 45.0305 29.9174 44.4866C28.7681 43.9427 27.7539 43.1506 26.9477 42.1673C26.1416 41.1841 25.5637 40.0342 25.2557 38.8006C24.9477 37.567 24.9172 36.2805 25.1665 35.0337C25.4158 33.7869 25.9387 32.611 26.6974 31.5907C27.4561 30.5704 28.4317 29.7312 29.554 29.1335C30.6762 28.5359 31.9171 28.1947 33.1872 28.1346C34.4572 28.0745 35.7248 28.297 36.8984 28.7859C38.7323 29.55 40.2448 30.9258 41.1787 32.6793C42.1125 34.4328 42.4099 36.4557 42.0204 38.4038C41.6308 40.3519 40.5784 42.1049 39.042 43.3645C37.5057 44.624 35.5804 45.3124 33.5938 45.3125Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M36.2503 33.4375L32.6441 38.2469L30.7925 36.3953C30.4978 36.1107 30.1031 35.9532 29.6935 35.9568C29.2838 35.9603 28.8919 36.1247 28.6022 36.4144C28.3125 36.7041 28.1482 37.0959 28.1446 37.5056C28.141 37.9153 28.2985 38.31 28.5831 38.6047L31.7081 41.7297C31.8677 41.8856 32.0584 42.006 32.2678 42.0828C32.4772 42.1596 32.7006 42.1911 32.9231 42.1753C33.1456 42.1595 33.3622 42.0968 33.5587 41.9911C33.7551 41.8855 33.927 41.7394 34.0628 41.5625L38.7503 35.3125C38.999 34.981 39.1057 34.5643 39.0471 34.154C38.9885 33.7438 38.7694 33.3736 38.4378 33.125C38.1063 32.8764 37.6896 32.7696 37.2794 32.8282C36.8691 32.8868 36.499 33.106 36.2503 33.4375Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Register", "description": "Create your vendor or buyer account"}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<g clip-path=\\"url(#clip0_1094_56047)\\">\\n<path d=\\"M20.1868 17.8942L23.6305 12.1522L3.09494 6.40234L0.349422 10.9943C-0.345539 12.1507 0.0284133 13.6515 1.1848 14.3465C1.37216 14.459 1.57376 14.546 1.78423 14.605L17.4351 18.9898C17.9504 19.1339 18.4988 19.1047 18.996 18.9068C19.4931 18.7088 19.9115 18.3531 20.1868 17.8942Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M4.22028 32.6787L11.606 34.6957V25.8931C11.606 23.9207 13.205 22.3217 15.1774 22.3217H24.1059V14.8333L21.7184 18.8137C20.7372 20.4449 18.7878 21.2205 16.9541 20.7092L3.57031 16.9645V31.8216C3.57073 32.0157 3.63441 32.2044 3.7517 32.359C3.86898 32.5137 4.03349 32.6259 4.22028 32.6787ZM24.9988 10.6815L44.0344 5.35207L25.4773 0.0663113C25.1634 -0.0221038 24.8313 -0.0221038 24.5175 0.0663113L5.96312 5.35207L24.9988 10.6815ZM45.7807 32.6787C45.9669 32.6253 46.1306 32.5127 46.2472 32.3581C46.3638 32.2035 46.4269 32.0152 46.4271 31.8216V16.9645L33.0432 20.7144C32.674 20.8185 32.2921 20.8711 31.9084 20.8707C31.1777 20.8705 30.4594 20.6813 29.8234 20.3215C29.1875 19.9616 28.6554 19.4434 28.279 18.8171L25.8915 14.8331V22.3215H34.82C36.7924 22.3215 38.3914 23.9204 38.3914 25.8928V34.6955L45.7807 32.6787Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M29.8094 17.8943C30.0849 18.3529 30.5034 18.7084 31.0004 18.9063C31.4975 19.1041 32.0458 19.1335 32.5611 18.9898L48.212 14.605C49.511 14.2406 50.2686 12.8921 49.9042 11.5931C49.8454 11.3835 49.7589 11.1827 49.6469 10.9961L46.9032 6.40234L26.3675 12.1524L29.8094 17.8943ZM36.6048 48.2138V25.8925C36.6048 24.9063 35.8053 24.1068 34.8191 24.1068H15.1764C14.1901 24.1068 13.3906 24.9063 13.3906 25.8925V48.2138C13.3906 49.2001 14.1901 49.9995 15.1764 49.9995H34.8191C35.8053 49.9995 36.6048 49.2001 36.6048 48.2138ZM21.1647 44.3807L18.4862 47.0593C18.3187 47.2267 18.0917 47.3207 17.8549 47.3207C17.6182 47.3207 17.3911 47.2267 17.2237 47.0593L16.3309 46.1665C16.1695 45.9978 16.0805 45.7727 16.0831 45.5393C16.0856 45.3059 16.1795 45.0827 16.3446 44.9177C16.5096 44.7526 16.7327 44.6588 16.9662 44.6562C17.1996 44.6537 17.4247 44.7426 17.5933 44.904L17.8549 45.1656L19.9022 43.1183C20.0709 42.9569 20.296 42.8679 20.5294 42.8705C20.7628 42.873 20.986 42.9669 21.151 43.1319C21.3161 43.297 21.41 43.5201 21.4125 43.7536C21.4151 43.987 21.3261 44.2121 21.1647 44.3807ZM21.1647 39.0236L18.4862 41.7022C18.3187 41.8695 18.0917 41.9636 17.8549 41.9636C17.6182 41.9636 17.3911 41.8695 17.2237 41.7022L16.3309 40.8094C16.1695 40.6407 16.0805 40.4156 16.0831 40.1822C16.0856 39.9488 16.1795 39.7256 16.3446 39.5606C16.5096 39.3955 16.7327 39.3017 16.9662 39.2991C17.1996 39.2965 17.4247 39.3855 17.5933 39.5469L17.8549 39.8085L19.9022 37.7611C20.0709 37.5997 20.296 37.5108 20.5294 37.5134C20.7628 37.5159 20.986 37.6098 21.151 37.7748C21.3161 37.9399 21.41 38.163 21.4125 38.3964C21.4151 38.6299 21.3261 38.855 21.1647 39.0236ZM21.1647 33.6665L18.4862 36.3451C18.3187 36.5124 18.0917 36.6064 17.8549 36.6064C17.6182 36.6064 17.3911 36.5124 17.2237 36.3451L16.3309 35.4522C16.1695 35.2836 16.0805 35.0585 16.0831 34.8251C16.0856 34.5916 16.1795 34.3685 16.3446 34.2035C16.5096 34.0384 16.7327 33.9445 16.9662 33.942C17.1996 33.9394 17.4247 34.0284 17.5933 34.1898L17.8549 34.4513L19.9022 32.404C20.0709 32.2426 20.296 32.1537 20.5294 32.1562C20.7628 32.1588 20.986 32.2527 21.151 32.4177C21.3161 32.5828 21.41 32.8059 21.4125 33.0393C21.4151 33.2727 21.3261 33.4979 21.1647 33.6665ZM21.1647 28.3094L18.4862 30.9879C18.3187 31.1553 18.0917 31.2493 17.8549 31.2493C17.6182 31.2493 17.3911 31.1553 17.2237 30.9879L16.3309 30.0951C16.1695 29.9265 16.0805 29.7014 16.0831 29.4679C16.0856 29.2345 16.1795 29.0114 16.3446 28.8463C16.5096 28.6813 16.7327 28.5874 16.9662 28.5849C17.1996 28.5823 17.4247 28.6713 17.5933 28.8327L17.8549 29.0942L19.9022 27.0469C20.0709 26.8855 20.296 26.7966 20.5294 26.7991C20.7628 26.8017 20.986 26.8955 21.151 27.0606C21.3161 27.2257 21.41 27.4488 21.4125 27.6822C21.4151 27.9156 21.3261 28.1408 21.1647 28.3094ZM33.0335 46.4281H24.105C23.8682 46.4281 23.6411 46.334 23.4736 46.1666C23.3062 45.9991 23.2121 45.772 23.2121 45.5352C23.2121 45.2985 23.3062 45.0714 23.4736 44.9039C23.6411 44.7365 23.8682 44.6424 24.105 44.6424H33.0335C33.2702 44.6424 33.4973 44.7365 33.6648 44.9039C33.8322 45.0714 33.9263 45.2985 33.9263 45.5352C33.9263 45.772 33.8322 45.9991 33.6648 46.1666C33.4973 46.334 33.2702 46.4281 33.0335 46.4281ZM33.0335 41.0709H24.105C23.8682 41.0709 23.6411 40.9769 23.4736 40.8094C23.3062 40.642 23.2121 40.4149 23.2121 40.1781C23.2121 39.9413 23.3062 39.7142 23.4736 39.5468C23.6411 39.3794 23.8682 39.2853 24.105 39.2853H33.0335C33.2702 39.2853 33.4973 39.3794 33.6648 39.5468C33.8322 39.7142 33.9263 39.9413 33.9263 40.1781C33.9263 40.4149 33.8322 40.642 33.6648 40.8094C33.4973 40.9769 33.2702 41.0709 33.0335 41.0709ZM33.0335 35.7138H24.105C23.8682 35.7138 23.6411 35.6198 23.4736 35.4523C23.3062 35.2849 23.2121 35.0578 23.2121 34.821C23.2121 34.5842 23.3062 34.3571 23.4736 34.1897C23.6411 34.0223 23.8682 33.9282 24.105 33.9282H33.0335C33.2702 33.9282 33.4973 34.0223 33.6648 34.1897C33.8322 34.3571 33.9263 34.5842 33.9263 34.821C33.9263 35.0578 33.8322 35.2849 33.6648 35.4523C33.4973 35.6198 33.2702 35.7138 33.0335 35.7138ZM33.0335 30.3567H24.105C23.8682 30.3567 23.6411 30.2626 23.4736 30.0952C23.3062 29.9278 23.2121 29.7007 23.2121 29.4639C23.2121 29.2271 23.3062 29 23.4736 28.8326C23.6411 28.6651 23.8682 28.5711 24.105 28.5711H33.0335C33.2702 28.5711 33.4973 28.6651 33.6648 28.8326C33.8322 29 33.9263 29.2271 33.9263 29.4639C33.9263 29.7007 33.8322 29.9278 33.6648 30.0952C33.4973 30.2626 33.2702 30.3567 33.0335 30.3567Z\\" fill=\\"#053F31\\"/>\\n</g>\\n<defs>\\n<clipPath id=\\"clip0_1094_56047\\">\\n<rect width=\\"50\\" height=\\"50\\" fill=\\"white\\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n", "title": "List Products", "description": "Upload waste with LER codes & certifications"}, {"svg": "<svg width=\\"45\\" height=\\"45\\" viewBox=\\"0 0 45 45\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M18.6552 34.2978L13.3526 39.6003C11.1543 41.7987 7.59428 41.7987 5.39779 39.6008C3.20086 37.4039 3.20086 33.8435 5.39735 31.647L16.0043 21.04C18.2008 18.8434 21.7612 18.8434 23.9577 21.04C24.6899 21.7722 25.8771 21.7722 26.6093 21.04C27.3416 20.3078 27.3416 19.1206 26.6093 18.3883C22.9483 14.7273 17.0137 14.7273 13.3526 18.3883L2.74576 28.9952C-0.915254 32.6562 -0.915254 38.5909 2.74576 42.2519C6.40634 45.9149 12.3415 45.9149 16.0044 42.2519L21.307 36.9494C22.0392 36.2171 22.0392 35.0299 21.307 34.2977C20.5747 33.5655 19.3874 33.5656 18.6552 34.2978Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M42.2534 2.74576C38.5924 -0.915254 32.6558 -0.915254 28.9948 2.74576L22.6329 9.10767C21.9007 9.8399 21.9007 11.0271 22.6329 11.7594C23.3651 12.4916 24.5523 12.4916 25.2846 11.7594L31.6465 5.39744C33.843 3.20086 37.4052 3.20086 39.6018 5.39744C41.7983 7.59393 41.7983 11.1543 39.6018 13.3508L27.9354 25.0172C25.7389 27.2138 22.1786 27.2138 19.9821 25.0172C19.2499 24.285 18.0626 24.285 17.3304 25.0172C16.5982 25.7494 16.5982 26.9367 17.3304 27.6689C20.9914 31.3299 26.9261 31.3299 30.5871 27.6689L42.2534 16.0026C45.9145 12.3415 45.9145 6.40678 42.2534 2.74576Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Connect", "description": "Browse marketplace or get matched"}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M8.23047 9.81738L13.7337 10.2989C14.5396 10.3694 15.2501 9.77324 15.3206 8.96738C15.3911 8.16143 14.7949 7.45098 13.9891 7.38047L11.9433 7.20146C15.7066 4.42842 20.238 2.92969 25 2.92969C28.9534 2.92969 32.8357 3.9915 36.2272 6.0002C36.9233 6.4125 37.8218 6.18242 38.2341 5.48633C38.6464 4.79023 38.4163 3.8918 37.7202 3.47949C33.8771 1.20322 29.4784 0 25 0C19.5729 0 14.4098 1.71768 10.1314 4.8958L10.2988 2.98262C10.3693 2.17666 9.77314 1.46621 8.96719 1.3957C8.16123 1.3252 7.45078 1.92139 7.38027 2.72725L6.89883 8.23047C6.82832 9.03643 7.42451 9.74688 8.23047 9.81738Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M8.96729 34.6794C8.16133 34.6089 7.45088 35.2051 7.38037 36.0109L7.20137 38.0566C4.42842 34.2933 2.92969 29.762 2.92969 25C2.92969 21.0466 3.99141 17.1642 6.0001 13.7727C6.4124 13.0766 6.18232 12.178 5.48623 11.7658C4.79014 11.3536 3.8916 11.5836 3.47939 12.2797C1.20322 16.1229 0 20.5216 0 25C0 30.4271 1.71768 35.5902 4.8958 39.8685L2.98252 39.7011C2.17656 39.6306 1.46611 40.2268 1.39561 41.0327C1.3251 41.8387 1.92129 42.5491 2.72725 42.6196L8.23057 43.1011C9.03652 43.1716 9.74697 42.5754 9.81748 41.7694L10.2989 36.2662C10.3693 35.4604 9.77314 34.7499 8.96729 34.6794Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M41.7695 40.1826L36.2663 39.7012C35.4604 39.6307 34.7499 40.2269 34.6794 41.0328C34.6089 41.8388 35.2051 42.5492 36.0109 42.6197L38.0566 42.7987C34.2933 45.5717 29.7619 47.0703 25 47.0703C21.0465 47.0703 17.1642 46.0085 13.7727 43.9998C13.0766 43.5875 12.1781 43.8176 11.7658 44.5137C11.3535 45.2098 11.5836 46.1082 12.2797 46.5205C16.1228 48.7969 20.5215 50 25 50C30.4271 50 35.5902 48.2823 39.8686 45.1042L39.7012 47.0175C39.6307 47.8234 40.2269 48.5339 41.0328 48.6044C41.8388 48.6749 42.5492 48.0787 42.6197 47.2729L43.1012 41.7696C43.1717 40.9637 42.5755 40.2531 41.7695 40.1826Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M45.1042 10.1315L47.0174 10.2989C47.8233 10.3694 48.5338 9.77324 48.6043 8.96738C48.6748 8.16143 48.0786 7.45098 47.2728 7.38047L41.7694 6.89893C40.9635 6.82842 40.253 7.42461 40.1825 8.23057L39.7011 13.7339C39.6306 14.5398 40.2268 15.2503 41.0327 15.3208C41.8387 15.3913 42.5491 14.7951 42.6196 13.9893L42.7986 11.9436C45.5716 15.7068 47.0703 20.2381 47.0703 25C47.0703 28.9533 46.0085 32.8356 43.9998 36.2272C43.5875 36.9233 43.8176 37.8219 44.5137 38.2341C45.2098 38.6463 46.1083 38.4163 46.5205 37.7202C48.7968 33.877 50 29.4784 50 25C50 19.5729 48.2823 14.4099 45.1042 10.1315Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M29.3945 17.818C29.3945 18.353 29.6417 18.8417 30.0726 19.1588C30.5034 19.4759 31.0435 19.5666 31.5543 19.4075L38.0729 17.3778C37.1521 15.8049 35.9561 14.4121 34.5507 13.2661L30.0892 16.4651C29.6542 16.7769 29.3945 17.2827 29.3945 17.818Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M31.3477 29.8828C31.3477 32.306 29.3763 34.2773 26.9531 34.2773C26.6839 34.2773 26.4648 34.4964 26.4648 34.7656V40.0656C32.98 39.437 38.301 34.6617 39.7476 28.418H32.8125C32.0048 28.418 31.3477 29.0751 31.3477 29.8828Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M40.1367 25C40.1367 23.2714 39.8446 21.61 39.3087 20.0613L32.4253 22.2047C31.9695 22.3466 31.5052 22.4165 31.0454 22.4165C30.0831 22.4165 29.1407 22.1105 28.3359 21.5183C27.1469 20.6432 26.4648 19.2944 26.4648 17.8179C26.4648 16.3406 27.1815 14.9448 28.382 14.084L31.9257 11.5431C29.8491 10.4701 27.4942 9.86328 25 9.86328C20.1467 9.86328 15.82 12.1598 13.0481 15.7227H18.1641C20.0487 15.7227 21.582 17.256 21.582 19.1406V20.1172C21.582 20.3864 21.8011 20.6055 22.0703 20.6055C24.4935 20.6055 26.4648 22.5769 26.4648 25C26.4648 27.4231 24.4935 29.3945 22.0703 29.3945C21.8011 29.3945 21.582 29.6136 21.582 29.8828C21.582 31.7675 20.0487 33.3008 18.1641 33.3008H12.3488C14.8041 37.0303 18.8621 39.6147 23.5352 40.0656V34.7656C23.5352 32.881 25.0685 31.3477 26.9531 31.3477C27.7608 31.3477 28.418 30.6905 28.418 29.8828C28.418 27.4597 30.3894 25.4883 32.8125 25.4883H40.128C40.1332 25.3261 40.1367 25.1635 40.1367 25Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M18.6523 29.8828C18.6523 27.9981 20.1856 26.4648 22.0703 26.4648C22.878 26.4648 23.5352 25.8077 23.5352 25C23.5352 24.1923 22.878 23.5352 22.0703 23.5352C20.1856 23.5352 18.6523 22.0019 18.6523 20.1172V19.1406C18.6523 18.8714 18.4333 18.6523 18.1641 18.6523H11.2605C10.3646 20.584 9.86328 22.7344 9.86328 25C9.86328 26.8906 10.2127 28.701 10.8487 30.3711H18.1641C18.4333 30.3711 18.6523 30.1521 18.6523 29.8828Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Certified Producers", "description": "Lorem Ipsum is simply dummy text of the printing industry."}]}}]}	2026-03-03 06:12:44.119+01	2026-03-03 06:25:00.877+01	\N
01KJS39T56XJ320T5154EXAC09	01KJF8G2V1EK5XSNMK7YC6PEFX	{"items": [{"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M39.0625 26.3891V6.25C39.0625 5.0068 38.5686 3.81451 37.6896 2.93544C36.8105 2.05636 35.6182 1.5625 34.375 1.5625H9.375C8.1318 1.5625 6.93951 2.05636 6.06044 2.93544C5.18136 3.81451 4.6875 5.0068 4.6875 6.25V40.625C4.6875 41.8682 5.18136 43.0605 6.06044 43.9396C6.93951 44.8186 8.1318 45.3125 9.375 45.3125H25.6484C26.8692 46.4474 28.3184 47.3083 29.8989 47.8376C31.4795 48.3669 33.1548 48.5524 34.8129 48.3817C36.4709 48.211 38.0733 47.688 39.5128 46.8477C40.9523 46.0074 42.1957 44.8692 43.1596 43.5094C44.1235 42.1496 44.7858 40.5995 45.102 38.963C45.4182 37.3264 45.3811 35.6412 44.9932 34.0202C44.6053 32.3992 43.8754 30.8797 42.8526 29.5636C41.8298 28.2475 40.5376 27.1652 39.0625 26.3891ZM14.0625 12.5H29.6875C30.1019 12.5 30.4993 12.6646 30.7924 12.9576C31.0854 13.2507 31.25 13.6481 31.25 14.0625C31.25 14.4769 31.0854 14.8743 30.7924 15.1674C30.4993 15.4604 30.1019 15.625 29.6875 15.625H14.0625C13.6481 15.625 13.2507 15.4604 12.9576 15.1674C12.6646 14.8743 12.5 14.4769 12.5 14.0625C12.5 13.6481 12.6646 13.2507 12.9576 12.9576C13.2507 12.6646 13.6481 12.5 14.0625 12.5ZM14.0625 20.3125H29.6875C30.1019 20.3125 30.4993 20.4771 30.7924 20.7701C31.0854 21.0632 31.25 21.4606 31.25 21.875C31.25 22.2894 31.0854 22.6868 30.7924 22.9799C30.4993 23.2729 30.1019 23.4375 29.6875 23.4375H14.0625C13.6481 23.4375 13.2507 23.2729 12.9576 22.9799C12.6646 22.6868 12.5 22.2894 12.5 21.875C12.5 21.4606 12.6646 21.0632 12.9576 20.7701C13.2507 20.4771 13.6481 20.3125 14.0625 20.3125ZM17.1875 31.25H14.0625C13.6481 31.25 13.2507 31.0854 12.9576 30.7924C12.6646 30.4993 12.5 30.1019 12.5 29.6875C12.5 29.2731 12.6646 28.8757 12.9576 28.5826C13.2507 28.2896 13.6481 28.125 14.0625 28.125H17.1875C17.6019 28.125 17.9993 28.2896 18.2924 28.5826C18.5854 28.8757 18.75 29.2731 18.75 29.6875C18.75 30.1019 18.5854 30.4993 18.2924 30.7924C17.9993 31.0854 17.6019 31.25 17.1875 31.25ZM33.5938 45.3125C32.3223 45.3125 31.0667 45.0305 29.9174 44.4866C28.7681 43.9427 27.7539 43.1506 26.9477 42.1673C26.1416 41.1841 25.5637 40.0342 25.2557 38.8006C24.9477 37.567 24.9172 36.2805 25.1665 35.0337C25.4158 33.7869 25.9387 32.611 26.6974 31.5907C27.4561 30.5704 28.4317 29.7312 29.554 29.1335C30.6762 28.5359 31.9171 28.1947 33.1872 28.1346C34.4572 28.0745 35.7248 28.297 36.8984 28.7859C38.7323 29.55 40.2448 30.9258 41.1787 32.6793C42.1125 34.4328 42.4099 36.4557 42.0204 38.4038C41.6308 40.3519 40.5784 42.1049 39.042 43.3645C37.5057 44.624 35.5804 45.3124 33.5938 45.3125Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M36.2503 33.4375L32.6441 38.2469L30.7925 36.3953C30.4978 36.1107 30.1031 35.9532 29.6935 35.9568C29.2838 35.9603 28.8919 36.1247 28.6022 36.4144C28.3125 36.7041 28.1482 37.0959 28.1446 37.5056C28.141 37.9153 28.2985 38.31 28.5831 38.6047L31.7081 41.7297C31.8677 41.8856 32.0584 42.006 32.2678 42.0828C32.4772 42.1596 32.7006 42.1911 32.9231 42.1753C33.1456 42.1595 33.3622 42.0968 33.5587 41.9911C33.7551 41.8855 33.927 41.7394 34.0628 41.5625L38.7503 35.3125C38.999 34.981 39.1057 34.5643 39.0471 34.154C38.9885 33.7438 38.7694 33.3736 38.4378 33.125C38.1063 32.8764 37.6896 32.7696 37.2794 32.8282C36.8691 32.8868 36.499 33.106 36.2503 33.4375Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "EWC Codes", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry."}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M39.0625 26.3891V6.25C39.0625 5.0068 38.5686 3.81451 37.6896 2.93544C36.8105 2.05636 35.6182 1.5625 34.375 1.5625H9.375C8.1318 1.5625 6.93951 2.05636 6.06044 2.93544C5.18136 3.81451 4.6875 5.0068 4.6875 6.25V40.625C4.6875 41.8682 5.18136 43.0605 6.06044 43.9396C6.93951 44.8186 8.1318 45.3125 9.375 45.3125H25.6484C26.8692 46.4474 28.3184 47.3083 29.8989 47.8376C31.4795 48.3669 33.1548 48.5524 34.8129 48.3817C36.4709 48.211 38.0733 47.688 39.5128 46.8477C40.9523 46.0074 42.1957 44.8692 43.1596 43.5094C44.1235 42.1496 44.7858 40.5995 45.102 38.963C45.4182 37.3264 45.3811 35.6412 44.9932 34.0202C44.6053 32.3992 43.8754 30.8797 42.8526 29.5636C41.8298 28.2475 40.5376 27.1652 39.0625 26.3891ZM14.0625 12.5H29.6875C30.1019 12.5 30.4993 12.6646 30.7924 12.9576C31.0854 13.2507 31.25 13.6481 31.25 14.0625C31.25 14.4769 31.0854 14.8743 30.7924 15.1674C30.4993 15.4604 30.1019 15.625 29.6875 15.625H14.0625C13.6481 15.625 13.2507 15.4604 12.9576 15.1674C12.6646 14.8743 12.5 14.4769 12.5 14.0625C12.5 13.6481 12.6646 13.2507 12.9576 12.9576C13.2507 12.6646 13.6481 12.5 14.0625 12.5ZM14.0625 20.3125H29.6875C30.1019 20.3125 30.4993 20.4771 30.7924 20.7701C31.0854 21.0632 31.25 21.4606 31.25 21.875C31.25 22.2894 31.0854 22.6868 30.7924 22.9799C30.4993 23.2729 30.1019 23.4375 29.6875 23.4375H14.0625C13.6481 23.4375 13.2507 23.2729 12.9576 22.9799C12.6646 22.6868 12.5 22.2894 12.5 21.875C12.5 21.4606 12.6646 21.0632 12.9576 20.7701C13.2507 20.4771 13.6481 20.3125 14.0625 20.3125ZM17.1875 31.25H14.0625C13.6481 31.25 13.2507 31.0854 12.9576 30.7924C12.6646 30.4993 12.5 30.1019 12.5 29.6875C12.5 29.2731 12.6646 28.8757 12.9576 28.5826C13.2507 28.2896 13.6481 28.125 14.0625 28.125H17.1875C17.6019 28.125 17.9993 28.2896 18.2924 28.5826C18.5854 28.8757 18.75 29.2731 18.75 29.6875C18.75 30.1019 18.5854 30.4993 18.2924 30.7924C17.9993 31.0854 17.6019 31.25 17.1875 31.25ZM33.5938 45.3125C32.3223 45.3125 31.0667 45.0305 29.9174 44.4866C28.7681 43.9427 27.7539 43.1506 26.9477 42.1673C26.1416 41.1841 25.5637 40.0342 25.2557 38.8006C24.9477 37.567 24.9172 36.2805 25.1665 35.0337C25.4158 33.7869 25.9387 32.611 26.6974 31.5907C27.4561 30.5704 28.4317 29.7312 29.554 29.1335C30.6762 28.5359 31.9171 28.1947 33.1872 28.1346C34.4572 28.0745 35.7248 28.297 36.8984 28.7859C38.7323 29.55 40.2448 30.9258 41.1787 32.6793C42.1125 34.4328 42.4099 36.4557 42.0204 38.4038C41.6308 40.3519 40.5784 42.1049 39.042 43.3645C37.5057 44.624 35.5804 45.3124 33.5938 45.3125Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M36.2503 33.4375L32.6441 38.2469L30.7925 36.3953C30.4978 36.1107 30.1031 35.9532 29.6935 35.9568C29.2838 35.9603 28.8919 36.1247 28.6022 36.4144C28.3125 36.7041 28.1482 37.0959 28.1446 37.5056C28.141 37.9153 28.2985 38.31 28.5831 38.6047L31.7081 41.7297C31.8677 41.8856 32.0584 42.006 32.2678 42.0828C32.4772 42.1596 32.7006 42.1911 32.9231 42.1753C33.1456 42.1595 33.3622 42.0968 33.5587 41.9911C33.7551 41.8855 33.927 41.7394 34.0628 41.5625L38.7503 35.3125C38.999 34.981 39.1057 34.5643 39.0471 34.154C38.9885 33.7438 38.7694 33.3736 38.4378 33.125C38.1063 32.8764 37.6896 32.7696 37.2794 32.8282C36.8691 32.8868 36.499 33.106 36.2503 33.4375Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Docs & Requirements", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry."}, {"svg": "<svg width=\\"47\\" height=\\"50\\" viewBox=\\"0 0 47 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M22.6964 46.1214C22.6942 46.109 22.691 46.0968 22.6871 46.0849C22.6832 46.069 22.6783 46.0533 22.6725 46.038C22.6725 46.0266 22.6642 46.014 22.659 46.0015C22.6518 45.9855 22.6439 45.9698 22.6351 45.9546C22.632 45.9468 22.6286 45.9392 22.6247 45.9317C22.616 45.9148 22.6062 45.8985 22.5955 45.8827L22.5872 45.8692C22.5749 45.8499 22.5613 45.8315 22.5466 45.814V45.8088C22.5314 45.7895 22.5147 45.7714 22.4967 45.7546L22.4832 45.741L22.4697 45.7285L19.5769 42.8295C19.5048 42.7549 19.4187 42.6954 19.3235 42.6544C19.2283 42.6135 19.1259 42.592 19.0224 42.5912C18.9188 42.5903 18.8161 42.6101 18.7202 42.6495C18.6243 42.6888 18.5373 42.7469 18.464 42.8203C18.3908 42.8937 18.3329 42.981 18.2938 43.0771C18.2546 43.1732 18.2349 43.2761 18.2358 43.3799C18.2368 43.4836 18.2583 43.5862 18.2993 43.6815C18.3402 43.7768 18.3997 43.8631 18.4742 43.9351L19.9628 45.4284C9.64701 44.4291 1.55731 35.6954 1.55731 25.108C1.55106 13.8442 10.6987 4.68338 21.9392 4.68338C22.1461 4.68338 22.3445 4.60103 22.4908 4.45446C22.6371 4.30789 22.7193 4.1091 22.7193 3.90182C22.7193 3.69454 22.6371 3.49575 22.4908 3.34918C22.3445 3.20261 22.1461 3.12027 21.9392 3.12027C17.5997 3.1221 13.3582 4.41254 9.75059 6.82851C6.14298 9.24449 3.33123 12.6776 1.67064 16.6939C0.0100465 20.7102 -0.424847 25.1295 0.420914 29.3934C1.26667 33.6573 3.35513 37.5743 6.42236 40.6495C10.0867 44.3419 14.9484 46.5998 20.1292 47.0155L18.4649 48.6828C18.3264 48.8311 18.2509 49.0276 18.2543 49.2306C18.2577 49.4337 18.3398 49.6275 18.4832 49.771C18.6267 49.9146 18.8202 49.9967 19.0229 49.9999C19.2256 50.0031 19.4216 49.9273 19.5696 49.7884L22.4894 46.8633C22.5119 46.8412 22.5328 46.8176 22.5519 46.7925C22.5604 46.7821 22.5684 46.7714 22.5758 46.7602C22.5796 46.7568 22.5825 46.7525 22.5841 46.7477L22.5987 46.7247C22.6076 46.7114 22.6156 46.6975 22.6226 46.6831C22.6278 46.6747 22.6319 46.6653 22.6371 46.656C22.6442 46.6428 22.6505 46.6293 22.6559 46.6153C22.6559 46.6049 22.6642 46.5934 22.6684 46.583C22.6753 46.5664 22.6812 46.5493 22.686 46.532C22.6931 46.5087 22.6986 46.485 22.7027 46.4611C22.7117 46.4119 22.7166 46.3621 22.7172 46.3121C22.7188 46.2874 22.7188 46.2627 22.7172 46.2381C22.7143 46.1986 22.7073 46.1595 22.6964 46.1214ZM40.5776 9.35811C36.9133 5.6657 32.0516 3.40775 26.8708 2.99209L28.5351 1.32478C28.6773 1.17744 28.756 0.980056 28.7544 0.775134C28.7527 0.570211 28.6707 0.374148 28.5261 0.229172C28.3816 0.0841969 28.1859 0.00190949 27.9814 3.28148e-05C27.7768 -0.00184386 27.5797 0.0768405 27.4325 0.219139L24.5095 3.14736C24.4871 3.16946 24.4662 3.19314 24.4471 3.21822C24.4386 3.22855 24.4306 3.23933 24.4232 3.25053C24.4194 3.2539 24.4165 3.25821 24.4149 3.26303L24.4003 3.28596C24.391 3.29901 24.3829 3.31298 24.3764 3.32764C24.3712 3.33598 24.367 3.34536 24.3618 3.35473C24.3547 3.36787 24.3485 3.38145 24.3431 3.39538C24.3379 3.4058 24.3348 3.41726 24.3306 3.42768C24.3236 3.4443 24.3177 3.46136 24.3129 3.47874C24.3058 3.50196 24.3002 3.52563 24.2963 3.5496C24.2876 3.59884 24.2824 3.64864 24.2807 3.69862C24.2808 3.72337 24.2826 3.74808 24.2859 3.77261C24.2897 3.81007 24.2956 3.84729 24.3036 3.88411L24.3129 3.92058C24.3181 3.93621 24.3223 3.95184 24.3285 3.96747C24.3348 3.9831 24.3368 3.99144 24.3421 4.00395C24.3473 4.01645 24.3577 4.03521 24.3649 4.05084C24.3722 4.06647 24.3733 4.06543 24.3764 4.07376C24.3851 4.09067 24.3948 4.10703 24.4055 4.12274C24.4079 4.12748 24.4107 4.13201 24.4138 4.13629C24.4262 4.15554 24.4397 4.17399 24.4544 4.19152C24.47 4.21116 24.487 4.22962 24.5054 4.24675L27.4252 7.17184C27.5724 7.31414 27.7695 7.39283 27.9741 7.39095C28.1787 7.38908 28.3743 7.30679 28.5189 7.16181C28.6634 7.01684 28.7454 6.82077 28.7471 6.61585C28.7488 6.41093 28.67 6.21354 28.5279 6.06621L27.0362 4.57917C37.3571 5.57747 45.4479 14.3111 45.4479 24.8996C45.4479 36.154 36.3034 45.3242 25.0598 45.3242C24.8529 45.3242 24.6544 45.4065 24.5081 45.5531C24.3618 45.6997 24.2796 45.8985 24.2796 46.1057C24.2796 46.313 24.3618 46.5118 24.5081 46.6584C24.6544 46.805 24.8529 46.8873 25.0598 46.8873C29.3993 46.8857 33.641 45.5954 37.2488 43.1795C40.8565 40.7636 43.6684 37.3305 45.3292 33.3142C46.9899 29.2978 47.4249 24.8784 46.5791 20.6144C45.7334 16.3505 43.6449 12.4334 40.5776 9.35811ZM21.9392 9.3727V10.3387C21.9392 10.5249 21.8729 10.705 21.7522 10.8465C21.6315 10.9881 21.4643 11.0818 21.2807 11.1109C19.1064 11.4601 17.0447 12.3168 15.2621 13.6119C15.112 13.7217 14.9277 13.774 14.7424 13.7595C14.5572 13.745 14.3832 13.6645 14.252 13.5327L13.5707 12.8491L11.3634 15.0603L12.0457 15.7429C12.177 15.8745 12.257 16.0487 12.2715 16.2342C12.286 16.4197 12.234 16.6043 12.1248 16.7547C10.832 18.5406 9.97684 20.606 9.62829 22.7842C9.5995 22.9682 9.50598 23.1358 9.36463 23.2567C9.22327 23.3777 9.0434 23.4441 8.8575 23.4438H7.89634V26.57H8.86062C9.04646 26.57 9.22623 26.6364 9.36754 26.7573C9.50884 26.8783 9.60242 27.0457 9.63141 27.2296C9.98019 29.4077 10.8354 31.4732 12.1279 33.2591C12.2375 33.4094 12.2898 33.5941 12.2753 33.7797C12.2608 33.9653 12.1805 34.1395 12.0489 34.2709L11.3665 34.9535L13.5738 37.1648L14.2551 36.4812C14.3864 36.3495 14.5604 36.2692 14.7456 36.2546C14.9308 36.2401 15.115 36.2924 15.2652 36.402C17.0478 37.697 19.1096 38.5538 21.2838 38.9029C21.4675 38.9318 21.6348 39.0255 21.7556 39.1671C21.8763 39.3087 21.9425 39.4889 21.9423 39.6751V40.6349H25.0629V39.6689C25.0629 39.4827 25.1292 39.3026 25.2499 39.161C25.3706 39.0195 25.5378 38.9257 25.7214 38.8967C27.8956 38.5473 29.9573 37.6906 31.74 36.3957C31.8902 36.2861 32.0744 36.2339 32.2596 36.2484C32.4448 36.2629 32.6188 36.3433 32.7501 36.4749L33.4314 37.1585L35.6387 34.9472L34.9563 34.2647C34.8253 34.1329 34.7454 33.9588 34.7309 33.7733C34.7164 33.5879 34.7683 33.4034 34.8773 33.2528C36.1698 31.4669 37.025 29.4015 37.3738 27.2234C37.4026 27.0394 37.4961 26.8718 37.6375 26.7508C37.7788 26.6299 37.9587 26.5635 38.1446 26.5638H39.1026V23.4407H38.1383C37.9525 23.4407 37.7727 23.3743 37.6314 23.2534C37.4901 23.1324 37.3965 22.9649 37.3675 22.781C37.019 20.6029 36.1638 18.5374 34.871 16.7516C34.7616 16.6012 34.7095 16.4166 34.724 16.2311C34.7385 16.0455 34.8187 15.8713 34.9501 15.7398L35.6325 15.0572L33.4252 12.8459L32.7438 13.5295C32.6124 13.661 32.4385 13.7412 32.2534 13.7557C32.0682 13.7702 31.884 13.7181 31.7338 13.6087C29.951 12.3139 27.8893 11.4572 25.7151 11.1078C25.5315 11.0789 25.3641 10.9852 25.2434 10.8436C25.1226 10.702 25.0564 10.5218 25.0567 10.3356V9.3727H21.9392ZM35.982 25.0038C35.982 27.477 35.2499 29.8947 33.8783 31.9511C32.5067 34.0075 30.5572 35.6103 28.2763 36.5568C25.9954 37.5032 23.4856 37.7509 21.0643 37.2684C18.6429 36.7859 16.4187 35.5949 14.673 33.8461C12.9273 32.0972 11.7385 29.8691 11.2568 27.4434C10.7752 25.0177 11.0224 22.5033 11.9671 20.2184C12.9119 17.9334 14.5118 15.9804 16.5646 14.6064C18.6173 13.2323 21.0307 12.4989 23.4995 12.4989C26.8089 12.5025 29.9818 13.8211 32.322 16.1655C34.6621 18.5098 35.9784 21.6884 35.982 25.0038ZM12.5773 25.0038C12.5805 27.7695 13.6278 30.4316 15.5089 32.4558C17.3901 34.4801 19.9659 35.7167 22.7193 35.9174V32.7912C21.0133 32.6302 19.4285 31.8379 18.2744 30.569C17.1203 29.3001 16.4798 27.6458 16.4781 25.9291V25.7853C16.4781 25.5781 16.5603 25.3793 16.7066 25.2327C16.8529 25.0861 17.0513 25.0038 17.2582 25.0038H17.4007C18.4187 25.0033 19.4239 25.2296 20.3438 25.6663C21.2637 26.103 22.0751 26.7392 22.7193 27.5287V23.4407C22.7193 23.2334 22.8015 23.0346 22.9478 22.888C23.0941 22.7415 23.2926 22.6591 23.4995 22.6591C23.7064 22.6591 23.9048 22.7415 24.0511 22.888C24.1974 23.0346 24.2796 23.2334 24.2796 23.4407V24.4025C24.924 23.6128 25.7356 22.9766 26.6556 22.5399C27.5757 22.1032 28.5812 21.877 29.5993 21.8776H29.7407C29.9476 21.8776 30.1461 21.9599 30.2924 22.1065C30.4387 22.253 30.5209 22.4518 30.5209 22.6591V22.8019C30.5191 24.5185 29.8787 26.1728 28.7246 27.4417C27.5705 28.7106 25.9856 29.5029 24.2796 29.6639V35.9164C26.4012 35.7642 28.4323 34.9947 30.1235 33.7024C31.8147 32.4101 33.0924 30.6512 33.7999 28.6417C34.5073 26.6322 34.6136 24.4595 34.1058 22.3903C33.598 20.3211 32.4982 18.4454 30.9413 16.9936C29.3844 15.5418 27.4382 14.5769 25.3416 14.2175C23.2451 13.8582 21.0894 14.1199 19.1392 14.9705C17.189 15.8212 15.5292 17.2237 14.3636 19.0061C13.1979 20.7884 12.577 22.873 12.5773 25.0038ZM18.0821 26.6107C18.2343 27.7777 18.7672 28.8616 19.598 29.6938C20.4287 30.5261 21.5107 31.0599 22.6756 31.2124C22.5231 30.0457 21.9902 28.9621 21.1598 28.1299C20.3293 27.2978 19.2477 26.7637 18.0831 26.6107H18.0821ZM24.3233 28.0862C25.4882 27.9336 26.5701 27.3996 27.4008 26.5674C28.2315 25.7352 28.7645 24.6514 28.9169 23.4844C27.7523 23.6375 26.6707 24.1716 25.8402 25.0037C25.0098 25.8359 24.4769 26.9195 24.3244 28.0862H24.3233Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Regulation or Organic Waste", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry."}]}	2026-03-03 06:38:57.83+01	2026-03-03 06:40:00.678+01	\N
01KJS4EG37Q100CC672JJ1VE92	01KJF1608J17EF03NT0VCRAC5P	{"items": [{"title": "Why Biomket?"}]}	2026-03-03 06:58:59.943+01	2026-03-03 07:00:03.691+01	\N
01KJSGXAVMW9B15J495HXQGWP7	01KJCAFH206EP746WFSVE2JY43	{"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/Footer_img_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/Footer_image_Desktop.png"}]}	2026-03-03 10:36:49.012+01	2026-03-03 10:45:38.835+01	\N
01KJCAZ2PHX1AY8AXDWQR3BYEG	01KJCAVQMZ61BFP5G8VBFZ55B2	{"cards": {"items": [{"svg": "<svg width=\\"73\\" height=\\"73\\" viewBox=\\"0 0 73 73\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M39.9981 16.922V12.957L38.0156 14.9395L39.9981 16.922Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M58.75 44.9405V21.2318L51.6825 9.7468L36.25 4.99805L20.8175 9.74805L13.75 21.2318V44.9405H23.2737C21.9517 42.6607 21.2537 40.0727 21.25 37.4373C21.2463 34.8018 21.937 32.2119 23.2526 29.9283C24.5681 27.6447 26.4622 25.7481 28.7439 24.4293C31.0256 23.1105 33.6146 22.4161 36.25 22.4161C38.8854 22.4161 41.4744 23.1105 43.7561 24.4293C46.0378 25.7481 47.9319 27.6447 49.2474 29.9283C50.563 32.2119 51.2537 34.8018 51.25 37.4373C51.2463 40.0727 50.5483 42.6607 49.2262 44.9405H58.75ZM42.5 19.9405C42.5 20.2721 42.3683 20.59 42.1339 20.8244C41.8995 21.0589 41.5815 21.1905 41.25 21.1905H31.25C30.9185 21.1905 30.6005 21.0589 30.3661 20.8244C30.1317 20.59 30 20.2721 30 19.9405V9.94055C30 9.60903 30.1317 9.29108 30.3661 9.05666C30.6005 8.82224 30.9185 8.69055 31.25 8.69055H41.25C41.5815 8.69055 41.8995 8.82224 42.1339 9.05666C42.3683 9.29108 42.5 9.60903 42.5 9.94055V19.9405Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M18.9359 8.035C19.0951 7.77622 19.343 7.58426 19.6334 7.495L35.8834 2.495C36.1229 2.42134 36.379 2.42134 36.6184 2.495L52.8684 7.495C53.1588 7.58426 53.4068 7.77622 53.5659 8.035L62.9659 23.31L65.6972 21.94L55.4472 5.9925L36.2509 0L17.0572 6L6.80469 21.94L9.53594 23.315L18.9359 8.035Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M32.5 12.957V16.922L34.4825 14.9395L32.5 12.957ZM38.2325 11.1895H34.2675L36.25 13.172L38.2325 11.1895ZM34.2675 18.6895H38.2325L36.25 16.707L34.2675 18.6895ZM43.25 66.1895H43.75V46.1895C43.75 44.2003 42.9598 42.2927 41.5533 40.8862C40.1468 39.4796 38.2391 38.6895 36.25 38.6895C34.2609 38.6895 32.3532 39.4796 30.9467 40.8862C29.5402 42.2927 28.75 44.2003 28.75 46.1895V66.1895H29.25C29.6408 66.1872 30.0255 66.0929 30.373 65.9142C30.7205 65.7354 31.0209 65.4773 31.25 65.1607V48.6895H33.75V63.0032C34.5311 62.632 35.3851 62.4394 36.25 62.4394C37.1149 62.4394 37.9689 62.632 38.75 63.0032V56.1895H41.25V65.1607C41.4791 65.4773 41.7795 65.7354 42.127 65.9142C42.4745 66.0929 42.8592 66.1872 43.25 66.1895ZM38.75 49.9395H36.25V42.4395H38.75V49.9395Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M36.25 29.9395C35.1041 29.9385 33.9733 30.2005 32.9446 30.7053C31.9159 31.2101 31.0168 31.9443 30.3165 32.8512C29.6161 33.7581 29.1332 34.8137 28.905 35.9366C28.6768 37.0595 28.7093 38.2198 29 39.3282C29.9308 38.3373 31.0548 37.5475 32.3025 37.0077C33.5503 36.4678 34.8955 36.1893 36.255 36.1893C37.6146 36.1893 38.9597 36.4678 40.2075 37.0077C41.4552 37.5475 42.5792 38.3373 43.51 39.3282C43.8009 38.219 43.8333 37.0578 43.6045 35.9342C43.3757 34.8105 42.8919 33.7544 42.1905 32.8472C41.489 31.9401 40.5886 31.2061 39.5586 30.702C38.5287 30.1979 37.3967 29.937 36.25 29.9395ZM71.25 68.6895C71.0443 68.6895 70.8417 68.6387 70.6603 68.5417C70.4789 68.4447 70.3242 68.3044 70.21 68.1332L69.0963 66.4632C68.784 65.9945 68.3608 65.6101 67.8643 65.3443C67.3677 65.0784 66.8132 64.9393 66.25 64.9393C65.6868 64.9393 65.1323 65.0784 64.6357 65.3443C64.1392 65.6101 63.716 65.9945 63.4037 66.4632C62.9477 67.1472 62.3301 67.7081 61.6056 68.0964C60.8811 68.4847 60.072 68.6884 59.25 68.6895H58.2625C57.4394 68.6895 56.6291 68.4863 55.9034 68.0979C55.1777 67.7095 54.5591 67.148 54.1025 66.4632C53.7902 65.9945 53.367 65.6101 52.8705 65.3443C52.374 65.0784 51.8195 64.9393 51.2563 64.9393C50.693 64.9393 50.1385 65.0784 49.642 65.3443C49.1455 65.6101 48.7223 65.9945 48.41 66.4632C47.9534 67.148 47.3348 67.7095 46.6091 68.0979C45.8834 68.4863 45.0731 68.6895 44.25 68.6895H43.25C42.4269 68.6895 41.6166 68.4863 40.8909 68.0979C40.1652 67.7095 39.5466 67.148 39.09 66.4632C38.7777 65.9945 38.3545 65.6101 37.858 65.3443C37.3615 65.0784 36.807 64.9393 36.2438 64.9393C35.6805 64.9393 35.126 65.0784 34.6295 65.3443C34.133 65.6101 33.7098 65.9945 33.3975 66.4632C32.9421 67.1463 32.3255 67.7067 31.6021 68.0949C30.8788 68.4832 30.071 68.6874 29.25 68.6895H28.2625C27.4394 68.6895 26.6291 68.4863 25.9034 68.0979C25.1777 67.7095 24.5591 67.148 24.1025 66.4632C23.7902 65.9945 23.367 65.6101 22.8705 65.3443C22.374 65.0784 21.8195 64.9393 21.2562 64.9393C20.693 64.9393 20.1385 65.0784 19.642 65.3443C19.1455 65.6101 18.7223 65.9945 18.41 66.4632C17.9534 67.148 17.3348 67.7095 16.6091 68.0979C15.8834 68.4863 15.0731 68.6895 14.25 68.6895H13.2625C12.4394 68.6895 11.6291 68.4863 10.9034 68.0979C10.1777 67.7095 9.5591 67.148 9.1025 66.4632C8.79024 65.9945 8.36704 65.6101 7.87051 65.3443C7.37398 65.0784 6.81947 64.9393 6.25625 64.9393C5.69303 64.9393 5.13852 65.0784 4.64199 65.3443C4.14545 65.6101 3.72226 65.9945 3.41 66.4632L2.29625 68.1332C2.18148 68.3052 2.02582 68.4461 1.84322 68.5432C1.66063 68.6403 1.4568 68.6905 1.25 68.6895H0V72.4395H72.5V68.6895H71.25Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M46.1775 45.0332C47.5943 43.1814 48.465 40.9703 48.6911 38.6497C48.9172 36.3291 48.4898 33.9915 47.4571 31.9011C46.4244 29.8107 44.8276 28.0507 42.8472 26.8202C40.8667 25.5896 38.5816 24.9375 36.25 24.9375C33.9184 24.9375 31.6333 25.5896 29.6529 26.8202C27.6724 28.0507 26.0756 29.8107 25.0429 31.9011C24.0103 33.9915 23.5828 36.3291 23.8089 38.6497C24.035 40.9703 24.9057 43.1814 26.3225 45.0332C26.4545 43.9113 26.777 42.8202 27.2763 41.807C26.5266 40.2824 26.1777 38.5919 26.2625 36.8951C26.3473 35.1982 26.863 33.551 27.761 32.1088C28.659 30.6665 29.9096 29.4768 31.3949 28.652C32.8801 27.8271 34.5511 27.3943 36.25 27.3943C37.949 27.3943 39.6199 27.8271 41.1052 28.652C42.5904 29.4768 43.841 30.6665 44.739 32.1088C45.637 33.551 46.1527 35.1982 46.2375 36.8951C46.3223 38.5919 45.9734 40.2824 45.2238 41.807C45.7235 42.82 46.0461 43.9112 46.1775 45.0332Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Livestock Waste"}, {"svg": "<svg width=\\"78\\" height=\\"78\\" viewBox=\\"0 0 78 78\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M66.1818 38.0909C72.4849 38.0909 77.5758 33 77.5758 26.697V25.3636C77.5758 24.8788 77.2121 24.3939 76.6061 24.3939H75.2727C71.2727 24.3939 67.7576 26.4545 65.697 29.6061V25.7273L66.303 25.1212C70.7879 20.7576 70.7879 13.4848 66.303 9.12121L65.3333 8.15152C64.9697 7.78788 64.3636 7.78788 64 8.15152L63.0303 9.12121C60.8485 11.303 59.7576 14.0909 59.7576 17.1212C59.7576 20.1515 60.9697 22.9394 63.0303 25.1212L63.6364 25.7273V29.6061C61.5758 26.4545 58.0606 24.3939 54.0606 24.3939H52.7273C52.2424 24.3939 51.7576 24.7576 51.7576 25.3636V26.8182C51.7576 33.1212 56.8485 38.2121 63.1515 38.2121H63.5152V43.303C61.4546 40.1515 57.9394 38.0909 53.9394 38.0909H52.6061C52.1212 38.0909 51.6364 38.4545 51.6364 39.0606V40.1515C51.6364 46.4545 56.7273 51.5455 63.0303 51.5455H63.3939V56.6364C61.3333 53.4848 57.8182 51.4242 53.8182 51.4242H52.4849C52 51.4242 51.5152 51.7879 51.5152 52.3939V53.7273C51.5152 60.0303 56.6061 65.1212 62.9091 65.1212H63.2727V70.3333C55.1515 67.4242 47.0303 65.9697 38.9091 65.8485V57.3636H39.2727C45.5758 57.3636 50.6667 52.2727 50.6667 45.9697V44.6364C50.6667 44.1515 50.303 43.6667 49.697 43.6667H48.3636C44.3636 43.6667 40.8485 45.7273 38.7879 48.8788V43.7879H39.1515C45.4546 43.7879 50.5455 38.697 50.5455 32.3939V31.0606C50.5455 30.5758 50.1818 30.0909 49.5758 30.0909H48.2424C44.2424 30.0909 40.7273 32.1515 38.6667 35.303V30.2121H39.0303C45.3333 30.2121 50.4242 25.1212 50.4242 18.8182V17.4848C50.4242 17 50.0606 16.5152 49.4546 16.5152H48.1212C44.1212 16.5152 40.6061 18.5758 38.5455 21.7273V17.8485L39.1515 17.2424C43.6364 12.8788 43.6364 5.60606 39.1515 1.24242L38.1818 0.272727C37.8182 -0.0909091 37.2121 -0.0909091 36.8485 0.272727L37.2121 1.36364C32.7273 5.84848 32.7273 13 37.2121 17.3636L37.8182 17.9697V21.9697C35.7576 18.8182 32.2424 16.7576 28.2424 16.7576H26.9091C26.4242 16.7576 25.9394 17.1212 25.9394 17.7273V19.0606C25.9394 25.3636 31.0303 30.4545 37.3333 30.4545H37.697V35.5455C35.6364 32.3939 32.1212 30.3333 28.1212 30.3333H26.7879C26.303 30.3333 25.8182 30.697 25.8182 31.303V32.6364C25.8182 38.9394 30.9091 44.0303 37.2121 44.0303H37.5758V49.1212C35.5152 45.9697 32 43.9091 28 43.9091H26.6667C26.1818 43.9091 25.697 44.2727 25.697 44.8788V46.2121C25.697 52.5152 30.7879 57.6061 37.0909 57.6061H37.4546V66.0909C29.3333 66.2121 21.2121 67.6667 13.0909 70.4545V65.2424H13.4545C19.7576 65.2424 24.8485 60.1515 24.8485 53.8485V52.5152C24.8485 52.0303 24.4849 51.5455 23.8788 51.5455H22.5455C18.5455 51.5455 15.0303 53.6061 12.9697 56.7576V51.6667H13.3333C19.6364 51.6667 24.7273 46.5758 24.7273 40.2727V38.9394C24.7273 38.4545 24.3636 37.9697 23.7576 37.9697H22.4242C18.4242 37.9697 14.9091 40.0303 12.8485 43.1818V38.0909H13.2121C19.5152 38.0909 24.6061 33 24.6061 26.697V25.3636C24.6061 24.8788 24.2424 24.3939 23.6364 24.3939H22.303C18.303 24.3939 14.7879 26.4545 12.7273 29.6061V25.7273L13.3333 25.1212C17.8182 20.7576 17.8182 13.4848 13.3333 9.12121V8.15152C12.9697 7.78788 12.3636 7.78788 12 8.15152L11.0303 9.12121C8.84849 11.303 7.75758 14.0909 7.75758 17.1212C7.75758 20.1515 8.9697 22.9394 11.0303 25.1212L11.6364 25.7273V29.6061C9.57576 26.4545 6.06061 24.3939 2.06061 24.3939H0.969697C0.484848 24.3939 0 24.7576 0 25.3636V26.8182C0 33.1212 5.09091 38.2121 11.3939 38.2121H11.7576V43.303C9.69697 40.1515 6.18182 38.0909 2.18182 38.0909H0.969697C0.363636 37.9697 0 38.3333 0 38.9394V40.1515C0 46.4545 5.09091 51.5455 11.3939 51.5455H11.7576V56.6364C9.69697 53.4848 6.18182 51.4242 2.18182 51.4242H0.969697C0.484848 51.4242 0 51.7879 0 52.3939V53.7273C0 60.0303 5.09091 65.1212 11.3939 65.1212H11.7576V70.9394C8 72.3939 4.24242 74.0909 0.484849 76.1515C-3.6124e-08 76.3939 -0.121212 77 0.121212 77.3636C0.363636 77.8485 0.969697 77.9697 1.33333 77.7273C25.9394 64.2727 51.0303 64.2727 76.2424 77.7273H76.7273C77.0909 77.7273 77.3333 77.6061 77.5758 77.2424C77.8182 76.7576 77.697 76.2727 77.2121 76.0303C73.4546 73.9697 69.697 72.2727 65.9394 70.9394V65H66.303C72.6061 65 77.697 59.9091 77.697 53.6061V52.2727C77.697 51.7879 77.3333 51.303 76.7273 51.303H75.394C71.394 51.303 67.8788 53.3636 65.8182 56.5152V51.4242H66.1818C72.4849 51.4242 77.5758 46.3333 77.5758 40.0303V38.9394C77.5758 38.4545 77.2121 37.9697 76.6061 37.9697H75.2727C71.2727 37.9697 67.7576 40.0303 65.697 43.1818V38.0909H66.1818Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Agricultural Waste"}, {"svg": "<svg width=\\"78\\" height=\\"70\\" viewBox=\\"0 0 78 70\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M21.997 51.6354C19.4157 51.6426 16.8745 50.9974 14.6092 49.7599C12.3439 48.5224 10.428 46.7326 9.03939 44.5566C7.06364 45.1869 5.24545 46.2415 3.79091 47.7082C-1.26364 52.7748 -1.26364 61.0051 3.79091 66.0718C8.85758 71.1385 17.0879 71.1385 22.1545 66.0718C26.0091 62.2172 27.003 56.3021 24.7242 51.4051C23.8273 51.5506 22.9182 51.6354 21.997 51.6354ZM20.203 64.1203C18.2636 66.0597 15.6939 67.1263 12.9545 67.1263C10.2152 67.1263 7.64545 66.0597 5.70606 64.1203C3.76667 62.1809 2.71212 59.6112 2.71212 56.8718C2.71212 54.1324 3.77879 51.5627 5.71818 49.6233C5.8304 49.5111 5.96363 49.4221 6.11025 49.3613C6.25687 49.3006 6.41402 49.2693 6.57273 49.2693C6.73143 49.2693 6.88858 49.3006 7.0352 49.3613C7.18183 49.4221 7.31505 49.5111 7.42727 49.6233C7.53949 49.7355 7.62851 49.8688 7.68925 50.0154C7.74998 50.162 7.78124 50.3191 7.78124 50.4779C7.78124 50.6366 7.74998 50.7937 7.68925 50.9403C7.62851 51.087 7.53949 51.2202 7.42727 51.3324C5.94848 52.8112 5.13636 54.7748 5.13636 56.8597C5.13636 58.9445 5.94848 60.9082 7.42727 62.3869C8.90606 63.8657 10.8697 64.6779 12.9545 64.6779C15.0394 64.6779 17.003 63.8657 18.4818 62.3869C18.9545 61.9142 19.7182 61.9142 20.1909 62.3869C20.6636 62.8597 20.6758 63.6475 20.203 64.1203ZM27.1485 50.9082C27.1727 50.8354 27.2091 50.7748 27.2455 50.7142C27.197 50.7385 27.1485 50.7506 27.0879 50.7627C27.1 50.8112 27.1242 50.8597 27.1485 50.9082Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M10.5671 42.3992C11.1611 43.4901 11.9126 44.5083 12.8217 45.4173C15.2702 47.8658 18.5308 49.2234 21.9974 49.2234C24.9914 49.2234 27.8277 48.2052 30.1308 46.3507C30.2399 46.2295 30.3368 46.1083 30.458 45.987L32.2035 44.2416C33.583 42.4962 34.4868 40.4231 34.8267 38.2245C35.1665 36.0258 34.931 33.7766 34.1429 31.6961C33.9732 31.4901 33.8641 31.2355 33.852 30.981C33.2096 29.5386 32.3126 28.2052 31.1732 27.0658C28.7247 24.6173 25.4641 23.2598 21.9974 23.2598C18.5308 23.2598 15.2702 24.6052 12.8217 27.0658C10.3611 29.5022 9.01562 32.7628 9.01562 36.2295C9.01562 38.4113 9.54896 40.5204 10.5671 42.3992C10.5671 42.387 10.555 42.387 10.5671 42.3992ZM21.9974 41.3204C21.3308 41.3204 20.7853 40.7749 20.7853 40.1082C20.7853 39.4416 21.3308 38.8961 21.9974 38.8961C23.4641 38.8961 24.652 37.7082 24.652 36.2416C24.652 35.5749 25.1974 35.0295 25.8641 35.0295C26.5308 35.0295 27.0762 35.5749 27.0762 36.2416C27.0762 39.0416 24.7974 41.3204 21.9974 41.3204ZM14.749 28.9931C16.6884 27.0537 19.258 25.987 21.9974 25.987C24.7368 25.987 27.3065 27.0537 29.2459 28.9931C29.4151 29.1624 29.5301 29.3781 29.5764 29.6129C29.6227 29.8477 29.5982 30.0909 29.506 30.3117C29.4137 30.5325 29.258 30.721 29.0584 30.8531C28.8589 30.9852 28.6246 31.055 28.3853 31.0537C28.0702 31.0537 27.7671 30.9325 27.5247 30.7022C26.0459 29.2234 24.0823 28.4113 21.9974 28.4113C19.9126 28.4113 17.949 29.2234 16.4702 30.7022C15.9974 31.1749 15.2338 31.1749 14.7611 30.7022C14.2884 30.2295 14.2762 29.4658 14.749 28.9931Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M32.8822 25.3455C33.9126 26.3758 34.7732 27.5394 35.4641 28.7879L39.1974 25.0545C39.3096 24.9423 39.4428 24.8533 39.5895 24.7926C39.7361 24.7318 39.8932 24.7006 40.0519 24.7006C40.2106 24.7006 40.3678 24.7318 40.5144 24.7926C40.661 24.8533 40.7943 24.9423 40.9065 25.0545C41.0187 25.1668 41.1077 25.3 41.1685 25.4466C41.2292 25.5932 41.2605 25.7504 41.2605 25.9091C41.2605 26.0678 41.2292 26.2249 41.1685 26.3716C41.1077 26.5182 41.0187 26.6514 40.9065 26.7636L36.5186 31.1515C37.0762 32.7636 37.3913 34.4727 37.3913 36.2303C37.3913 37.297 37.2822 38.3394 37.0762 39.3576L53.6822 22.7515C54.0459 22.3879 54.4095 22.0606 54.7974 21.7333C56.9913 19.3333 58.2035 16.2667 58.2035 12.9939C58.2035 10.5697 57.5247 8.24242 56.2883 6.21818L51.2459 11.2606C51.0035 11.503 50.7004 11.6121 50.3853 11.6121C50.0701 11.6121 49.7671 11.4909 49.5247 11.2606C49.4123 11.1485 49.3232 11.0153 49.2623 10.8686C49.2015 10.722 49.1702 10.5648 49.1702 10.4061C49.1702 10.2473 49.2015 10.0901 49.2623 9.94349C49.3232 9.79685 49.4123 9.66365 49.5247 9.55152L54.8095 4.26667C54.6762 4.12121 54.5429 3.96364 54.3974 3.80606C51.9489 1.35758 48.6883 0 45.2216 0C41.755 0 38.4944 1.34545 36.0459 3.80606L27.161 12.6909L29.3065 12.9939L39.2095 3.10303C39.3217 2.99081 39.455 2.90179 39.6016 2.84106C39.7482 2.78032 39.9054 2.74907 40.0641 2.74907C40.2228 2.74907 40.3799 2.78032 40.5265 2.84106C40.6732 2.90179 40.8064 2.99081 40.9186 3.10303C41.0308 3.21525 41.1198 3.34848 41.1806 3.4951C41.2413 3.64172 41.2726 3.79887 41.2726 3.95758C41.2726 4.11628 41.2413 4.27343 41.1806 4.42005C41.1198 4.56668 41.0308 4.6999 40.9186 4.81212L30.5913 15.1394C30.4785 15.2523 30.3442 15.3415 30.1965 15.4019C30.0487 15.4622 29.8903 15.4925 29.7307 15.4909C29.6701 15.4909 29.6216 15.4909 29.561 15.4788L24.9913 14.8485L18.6641 21.1758C21.1934 20.6167 23.8229 20.7059 26.3086 21.4348C28.7943 22.1638 31.0555 23.5089 32.8822 25.3455ZM40.155 11.2L41.7913 9.56364C41.9036 9.45142 42.0368 9.3624 42.1834 9.30166C42.33 9.24093 42.4872 9.20967 42.6459 9.20967C42.8046 9.20967 42.9617 9.24093 43.1084 9.30166C43.255 9.3624 43.3882 9.45142 43.5004 9.56364C43.6126 9.67586 43.7017 9.80908 43.7624 9.95571C43.8231 10.1023 43.8544 10.2595 43.8544 10.4182C43.8544 10.5769 43.8231 10.734 43.7624 10.8807C43.7017 11.0273 43.6126 11.1605 43.5004 11.2727L41.8641 12.9091C41.6216 13.1515 41.3186 13.2606 41.0035 13.2606C40.6883 13.2606 40.3853 13.1394 40.1429 12.9091C39.6822 12.4485 39.6822 11.6727 40.155 11.2ZM32.7489 18.6061L37.2701 14.0848C37.3823 13.9726 37.5156 13.8836 37.6622 13.8229C37.8088 13.7621 37.966 13.7309 38.1247 13.7309C38.2834 13.7309 38.4405 13.7621 38.5871 13.8229C38.7338 13.8836 38.867 13.9726 38.9792 14.0848C39.0914 14.1971 39.1805 14.3303 39.2412 14.4769C39.3019 14.6235 39.3332 14.7807 39.3332 14.9394C39.3332 15.0981 39.3019 15.2552 39.2412 15.4019C39.1805 15.5485 39.0914 15.6817 38.9792 15.7939L34.458 20.3152C34.2156 20.5576 33.9125 20.6667 33.5974 20.6667C33.2822 20.6667 32.9792 20.5455 32.7368 20.3152C32.2762 19.8424 32.2762 19.0788 32.7489 18.6061ZM72.3126 40.0242C71.9974 40.0242 71.6944 39.903 71.4519 39.6727C71.3396 39.5606 71.2504 39.4274 71.1896 39.2808C71.1288 39.1341 71.0975 38.9769 71.0975 38.8182C71.0975 38.6594 71.1288 38.5022 71.1896 38.3556C71.2504 38.209 71.3396 38.0758 71.4519 37.9636L77.4277 31.9879C77.0641 29.1515 75.7913 26.5333 73.7429 24.4848C73.3792 24.1212 72.9913 23.7939 72.5913 23.4788L61.5489 34.5212C61.3065 34.7636 61.0035 34.8727 60.6883 34.8727C60.3732 34.8727 60.0701 34.7515 59.8277 34.5212C59.7153 34.4091 59.6262 34.2759 59.5654 34.1292C59.5045 33.9826 59.4732 33.8254 59.4732 33.6667C59.4732 33.5079 59.5045 33.3507 59.5654 33.2041C59.6262 33.0575 59.7153 32.9243 59.8277 32.8121L70.5065 22.1333C68.6883 21.1879 66.6641 20.6909 64.555 20.6909C61.561 20.6909 58.7126 21.7091 56.4216 23.5636C56.3126 23.6848 56.2156 23.8061 56.0944 23.9273C55.9982 24.0177 55.8876 24.0914 55.7671 24.1455C55.6338 24.2667 55.5004 24.3758 55.3671 24.5091L38.0459 41.8303C39.1247 41.6 40.2277 41.4788 41.355 41.4788C41.6095 41.4788 41.8519 41.503 42.1065 41.5152L49.5247 34.097C49.6369 33.9847 49.7701 33.8957 49.9167 33.835C50.0634 33.7743 50.2205 33.743 50.3792 33.743C50.5379 33.743 50.6951 33.7743 50.8417 33.835C50.9883 33.8957 51.1215 33.9847 51.2338 34.097C51.346 34.2092 51.435 34.3424 51.4957 34.489C51.5565 34.6357 51.5877 34.7928 51.5877 34.9515C51.5877 35.1102 51.5565 35.2674 51.4957 35.414C51.435 35.5606 51.346 35.6938 51.2338 35.8061L45.0883 41.9515C47.7671 42.6182 50.2398 43.9879 52.2398 45.9879C52.6035 46.3515 52.9428 46.7273 53.2701 47.1152L57.2701 43.1152C57.3823 43.0029 57.5156 42.9139 57.6622 42.8532C57.8088 42.7925 57.966 42.7612 58.1247 42.7612C58.2834 42.7612 58.4405 42.7925 58.5871 42.8532C58.7338 42.9139 58.867 43.0029 58.9792 43.1152C59.0914 43.2274 59.1805 43.3606 59.2412 43.5072C59.3019 43.6538 59.3332 43.811 59.3332 43.9697C59.3332 44.1284 59.3019 44.2855 59.2412 44.4322C59.1805 44.5788 59.0914 44.712 58.9792 44.8242L54.6641 49.1394C56.0216 51.4667 56.761 54.1091 56.761 56.8727C56.761 58 56.6398 59.103 56.4095 60.1818L73.7671 42.8242C75.7671 40.8228 77.057 38.2217 77.4398 35.4182L73.1974 39.6606C72.9429 39.9152 72.6277 40.0242 72.3126 40.0242Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M41.3568 43.9023C38.3629 43.9023 35.5265 44.9205 33.2235 46.7751C33.1144 46.8963 33.0174 47.0175 32.8962 47.1387C32.5326 47.5023 32.169 47.8296 31.7811 48.1569C29.5862 50.5375 28.3699 53.6583 28.375 56.8963C28.375 60.363 29.7205 63.6236 32.1811 66.072C34.6296 68.5205 37.8902 69.8781 41.3568 69.8781C44.8235 69.8781 48.0841 68.5326 50.5326 66.072C52.9811 63.6114 54.3387 60.363 54.3387 56.8963C54.3387 53.4296 52.9932 50.169 50.5326 47.7205C48.072 45.272 44.8235 43.9023 41.3568 43.9023ZM41.3568 67.1266C38.6174 67.1266 36.0477 66.0599 34.1084 64.1205C32.1811 62.1933 31.1144 59.6114 31.1144 56.872C31.1144 54.1326 32.1811 51.563 34.1084 49.6236C36.0477 47.6842 38.6174 46.6175 41.3568 46.6175C42.0235 46.6175 42.569 47.163 42.569 47.8296C42.569 48.4963 42.0235 49.0417 41.3568 49.0417C39.272 49.0417 37.3084 49.8539 35.8296 51.3326C34.3508 52.8114 33.5387 54.7751 33.5387 56.8599C33.5387 58.9569 34.3508 60.9205 35.8296 62.3872C36.5536 63.1156 37.415 63.6931 38.3637 64.0863C39.3125 64.4795 40.3298 64.6807 41.3568 64.6781C42.0235 64.6781 42.569 65.2236 42.569 65.8902C42.569 66.5569 42.0235 67.1266 41.3568 67.1266ZM45.2235 58.0963C44.5568 58.0963 44.0114 57.5508 44.0114 56.8842C44.0114 56.169 43.7326 55.5023 43.2356 55.0054C42.2053 53.9751 40.5084 53.9751 39.478 55.0054C38.9811 55.5023 38.7023 56.169 38.7023 56.8842C38.7023 57.5508 38.1568 58.0963 37.4902 58.0963C36.8235 58.0963 36.278 57.5508 36.278 56.8842C36.278 55.5266 36.7993 54.2539 37.7568 53.2963C38.7265 52.3266 39.975 51.8054 41.3568 51.8054C42.7387 51.8054 43.975 52.3145 44.9447 53.2963C45.9023 54.2539 46.4356 55.5266 46.4356 56.8963C46.4324 57.2157 46.3033 57.5209 46.0763 57.7456C45.8494 57.9703 45.5429 58.0963 45.2235 58.0963Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Forest Waste"}, {"svg": "<svg width=\\"65\\" height=\\"69\\" viewBox=\\"0 0 65 69\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M20.3125 8.75L21.5537 3.7875C21.8241 2.7058 22.4483 1.74552 23.3271 1.05926C24.2058 0.373009 25.2888 0.000168817 26.4037 0H38.5962C39.7112 0.000168817 40.7942 0.373009 41.6729 1.05926C42.5517 1.74552 43.1759 2.7058 43.4463 3.7875L44.6875 8.75H60.0325C61.3527 8.75924 62.6158 9.29002 63.5463 10.2266C64.4768 11.1632 64.9994 12.4297 65 13.75C65 16.51 62.76 18.75 60 18.75H58.455L55 61.3013V65C55 65.995 54.605 66.9487 53.9012 67.6512C53.5533 67.9997 53.14 68.2761 52.6851 68.4647C52.2301 68.6532 51.7425 68.7502 51.25 68.75H13.75C13.2575 68.7502 12.7699 68.6532 12.3149 68.4647C11.86 68.2761 11.4467 67.9997 11.0987 67.6512C10.7503 67.3033 10.4739 66.89 10.2853 66.4351C10.0968 65.9801 9.99983 65.4925 10 65V61.3013L6.545 18.75H4.9675C3.64726 18.7408 2.38421 18.21 1.45368 17.2734C0.523159 16.3368 0.000627492 15.0703 0 13.75C0 10.99 2.24 8.75 5 8.75H20.3125ZM52.5 62.5V65C52.5005 65.1643 52.4685 65.3271 52.4059 65.4789C52.3432 65.6308 52.2512 65.7688 52.135 65.885C52.0188 66.0012 51.8808 66.0932 51.7289 66.1559C51.5771 66.2185 51.4143 66.2505 51.25 66.25H13.75C13.5857 66.2505 13.4229 66.2185 13.2711 66.1559C13.1192 66.0932 12.9812 66.0012 12.865 65.885C12.7488 65.7688 12.6568 65.6308 12.5941 65.4789C12.5315 65.3271 12.4995 65.1643 12.5 65V62.5H52.5ZM24.2875 51.4137L24.55 51.3625C27.9775 50.9238 31.5863 49.2887 34.8162 47.0037C38.08 44.695 40.9412 41.7575 42.8512 38.7087C41.245 42.0075 38.6512 45.2887 35.5912 47.9837C32.3725 50.8213 28.645 52.9537 24.9988 53.8225L24.8425 53.8512C36.3575 54.7188 43.2825 51.6138 46.88 47.0725C50.5838 42.3963 50.8587 36.1012 48.815 30.5312C48.7052 30.2315 48.4849 29.9852 48.1992 29.8427C47.9136 29.7002 47.5842 29.6724 47.2788 29.765C38.405 32.4613 34.5513 35.1112 32.5887 37.7C31.2325 39.49 30.745 41.2788 30.235 43.1313C29.525 45.7125 28.7125 48.4163 24.2875 51.4137ZM24.4738 48.13C26.78 46.1163 27.3325 44.2575 27.825 42.4675L27.8325 42.4375C25.49 40.1787 23.5025 37.5988 22.1488 35C23.5875 37.44 25.62 39.8325 27.98 41.9112C28.5288 39.9625 29.1613 38.085 30.5975 36.19C31.11 35.5137 31.735 34.825 32.5238 34.1287C30.5713 31.4637 26.69 28.7812 17.7213 26.0575C17.4159 25.9649 17.0867 25.9925 16.8011 26.1347C16.5155 26.2769 16.2951 26.523 16.185 26.8225C14.2063 32.215 14.4013 38.2888 17.7763 42.9125C19.31 45.0125 21.5025 46.8263 24.4738 48.13ZM4.98125 16.25C4.65295 16.2488 4.3281 16.1829 4.02526 16.0561C3.72241 15.9293 3.4475 15.7442 3.21623 15.5111C2.74915 15.0405 2.48814 14.4037 2.49062 13.7406C2.49311 13.0776 2.75889 12.4427 3.22949 11.9756C3.70009 11.5085 4.33696 11.2475 5 11.25H60.0187C60.6818 11.2525 61.3167 11.5183 61.7838 11.9889C62.2509 12.4595 62.5119 13.0963 62.5094 13.7594C62.5069 14.4224 62.2411 15.0573 61.7705 15.5244C61.2999 15.9915 60.663 16.2525 60 16.25H4.98125ZM39.5337 8.75H25.4662L26.1675 5.94625C26.2352 5.67594 26.3913 5.43601 26.611 5.26457C26.8307 5.09313 27.1013 5.00001 27.38 5H37.62C37.8987 5.00001 38.1693 5.09313 38.389 5.26457C38.6087 5.43601 38.7648 5.67594 38.8325 5.94625L39.5337 8.75Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Agro-industrial waste"}, {"svg": "<svg width=\\"80\\" height=\\"80\\" viewBox=\\"0 0 80 80\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M37.2897 18.7248C36.2647 18.2873 35.2647 17.7498 34.9022 15.9873C34.5397 14.2748 33.5647 13.3623 32.3397 12.9123C30.6272 12.2623 28.4272 12.5498 26.7897 12.8498C24.0022 13.3623 24.9147 16.2623 21.8272 17.2998C20.3647 17.7873 19.7272 19.0373 19.4647 20.2123H37.1272L37.2897 18.7248ZM39.9397 17.4498L39.6522 20.2123H56.0772L56.1897 19.1873C56.3397 17.7998 56.1022 16.4498 55.5772 15.2623H55.5647C54.781 13.4944 53.3495 12.0941 51.5647 11.3498L53.2647 7.46227C53.6397 6.63727 53.0897 5.68727 52.1897 5.58727L46.7272 5.01227C45.8272 4.91227 45.0897 5.72477 45.2647 6.61227L46.1272 10.7748C45.6272 10.8623 45.1272 10.9998 44.6647 11.1998C43.3843 11.715 42.2682 12.5689 41.4359 13.6698C40.6035 14.7708 40.0864 16.0774 39.9397 17.4498ZM20.7397 72.4498C20.8147 73.8748 21.9897 74.9998 23.4147 74.9998H56.5897C58.0147 74.9998 59.1897 73.8748 59.2647 72.4498L61.0747 33.2623H18.9297L20.7397 72.4498ZM48.5309 42.3385C48.5309 41.6274 48.8134 40.9454 49.3163 40.4426C49.8191 39.9398 50.5011 39.6573 51.2122 39.6573C51.9233 39.6573 52.6053 39.9398 53.1081 40.4426C53.6109 40.9454 53.8934 41.6274 53.8934 42.3385V63.4185C53.8934 64.1296 53.6109 64.8116 53.1081 65.3145C52.6053 65.8173 51.9233 66.0998 51.2122 66.0998C50.5011 66.0998 49.8191 65.8173 49.3163 65.3145C48.8134 64.8116 48.5309 64.1296 48.5309 63.4185V42.3385ZM37.3209 42.3385C37.3209 41.6274 37.6034 40.9454 38.1063 40.4426C38.6091 39.9398 39.2911 39.6573 40.0022 39.6573C40.7133 39.6573 41.3953 39.9398 41.8981 40.4426C42.4009 40.9454 42.6834 41.6274 42.6834 42.3385V63.4185C42.6834 64.1296 42.4009 64.8116 41.8981 65.3145C41.3953 65.8173 40.7133 66.0998 40.0022 66.0998C39.2911 66.0998 38.6091 65.8173 38.1063 65.3145C37.6034 64.8116 37.3209 64.1296 37.3209 63.4185V42.3385ZM26.1109 42.3385C26.1109 41.6274 26.3934 40.9454 26.8963 40.4426C27.3991 39.9398 28.0811 39.6573 28.7922 39.6573C29.5033 39.6573 30.1853 39.9398 30.6881 40.4426C31.1909 40.9454 31.4734 41.6274 31.4734 42.3385V63.4185C31.4734 64.1296 31.1909 64.8116 30.6881 65.3145C30.1853 65.8173 29.5033 66.0998 28.7922 66.0998C28.0811 66.0998 27.3991 65.8173 26.8963 65.3145C26.3934 64.8116 26.1109 64.1296 26.1109 63.4185V42.3385Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M61.6383 22.7129H18.3633C16.9826 22.7129 15.8633 23.8322 15.8633 25.2129V28.2629C15.8633 29.6436 16.9826 30.7629 18.3633 30.7629H61.6383C63.019 30.7629 64.1383 29.6436 64.1383 28.2629V25.2129C64.1383 23.8322 63.019 22.7129 61.6383 22.7129Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M37.3448 15.4692C37.4136 15.7992 37.4586 15.9567 37.6436 16.1017C37.9708 14.5969 38.6394 13.1873 39.5978 11.9819C40.5562 10.7764 41.7788 9.80727 43.1711 9.14922C42.4886 8.45797 41.6286 7.88672 40.6373 7.88672C37.8998 7.88672 39.2373 10.1117 35.7498 10.3992C34.9923 10.4617 34.4073 10.6442 33.9336 10.8842C35.7136 11.7717 36.8948 13.3417 37.3448 15.468V15.4692ZM58.6748 19.4492L58.5873 20.2117H61.2373C60.9123 18.3867 59.7373 17.2117 58.5373 16.4492C58.7248 17.4367 58.7873 18.4492 58.6748 19.4492Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Urban Organic Waste"}]}, "title_": "Global Marketplace for the Valorization of Organic Waste and By-products", "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/WC_and_TS_image_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/WC_and_TS_image_Desktop.png"}]}, "description": "The leading digital platform that connects actors in the value chain to transform organic waste and industrial by-products into valuable resources through a circular economy model.", "bg_image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/waste_category_bg_mobile.png", "bg_image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/wastecategorybg.png"}	2026-02-26 07:42:47.121+01	2026-03-03 11:41:31.49+01	\N
01KKE5X1QAADNXBAEVMQG37Y9S	01KJPYWH0G5C03G5B5K6CEDXHH	{"items": [{"title": "Important Information", "richtext": "<ul>\\n<li>Please keep your order number (ORD-2025-0892) for reference</li>\\n<li>Your invoice will be sent to contact@organicfarms.com</li>\\n<li>For recurring orders, the next payment will be processed on March 14, 2026</li>\\n<li>All certifications and compliance documents will be available in your account</li>\\n</ul>"}]}	2026-03-11 11:08:28.394+01	2026-03-11 11:09:19.443+01	\N
01KJY9SW1DKFQ9DJW2STXVZ0MX	01KJSJKPXQ3D5D5PMK5487RFK5	{"items": [{"title": "LER Code", "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/Short_Page_banner_img_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_Banner_image.png"}]}, "description": "Choose your profile type to start valorizing organic resources"}]}	2026-03-05 07:08:47.661+01	2026-03-12 08:54:16.133+01	\N
01KJSW3YETFCMJ7NTCHWN4GX1P	01KJSW16P8QY69Q1F93PPH20JV	{"items": [{"cards": {"items": [{"svg": "<svg width=\\"40\\" height=\\"37\\" viewBox=\\"0 0 40 37\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M9.77109 11.3297V25.9281C9.77109 26.2734 9.49141 26.5523 9.14688 26.5523C8.80234 26.5523 8.52266 26.2727 8.52266 25.9281V11.3297C8.52266 10.9844 8.80234 10.7055 9.14688 10.7055C9.49141 10.7055 9.77109 10.9844 9.77109 11.3297ZM14.0852 10.7047C13.7398 10.7047 13.4609 10.9844 13.4609 11.3289V25.9273C13.4609 26.2727 13.7406 26.5516 14.0852 26.5516C14.4297 26.5516 14.7094 26.2719 14.7094 25.9273V11.3297C14.7094 10.9844 14.4297 10.7047 14.0852 10.7047ZM19.0234 10.7047C18.6781 10.7047 18.3992 10.9844 18.3992 11.3289V25.9273C18.3992 26.2727 18.6789 26.5516 19.0234 26.5516C19.368 26.5516 19.6477 26.2719 19.6477 25.9273V11.3297C19.6477 10.9844 19.368 10.7047 19.0234 10.7047ZM40 14.0203V34.4766C40 35.4461 39.2109 36.2352 38.2414 36.2352H24.075C23.1055 36.2352 22.3164 35.4461 22.3164 34.4766V32.4383C22.0742 32.5195 21.8133 32.5633 21.5414 32.5633H6.62656C5.44609 32.5633 4.46484 31.7062 4.34219 30.5703L2.08828 9.83906H1.37344C0.616406 9.83906 0 9.22188 0 8.46406V6.07656C0 5.31953 0.615625 4.70313 1.37344 4.70313H6.41563V3.22187C6.41563 2.3625 6.75078 1.55391 7.36016 0.944531C7.96641 0.335937 8.775 0 9.6375 0H18.5289C19.3914 0 20.2 0.335937 20.8078 0.946094C21.4156 1.55078 21.7516 2.36016 21.7516 3.22266V4.70391H26.7937C27.5508 4.70391 28.1672 5.31953 28.1672 6.07734V8.46484C28.1672 9.22344 27.5516 9.83984 26.7937 9.83984H26.0781L25.8133 12.2625H26.2375V11.8172C26.2375 11.1516 26.7789 10.6102 27.4445 10.6102H28.0898C28.3805 9.18203 29.6461 8.10312 31.1586 8.10312C32.6703 8.10312 33.9352 9.18125 34.225 10.6102H34.8703C35.5359 10.6102 36.0773 11.1516 36.0773 11.8172V12.2625H38.2406C39.2109 12.2617 40 13.0508 40 14.0203ZM27.4875 13.9164H34.8289V11.8594H33.6641C33.3187 11.8594 33.0398 11.5797 33.0398 11.2352C33.0398 10.1969 32.1961 9.35313 31.1594 9.35313C30.1211 9.35313 29.2773 10.1977 29.2773 11.2352C29.2773 11.5805 28.9977 11.8594 28.6531 11.8594H27.4883L27.4875 13.9164ZM7.66484 4.70391H8.63516V3.22187C8.63516 2.95391 8.73906 2.70234 8.92891 2.5125C9.11875 2.32266 9.37031 2.21875 9.63906 2.21875H18.5305C18.7992 2.21875 19.0508 2.32344 19.2398 2.5125C19.4289 2.70156 19.5336 2.95391 19.5336 3.22187V4.70313H20.5039V3.22187C20.5039 2.69453 20.2984 2.19922 19.9258 1.82891C19.5531 1.45391 19.0578 1.24922 18.5305 1.24922H9.63828C9.11094 1.24922 8.61563 1.45469 8.24531 1.82734C7.87109 2.20156 7.66563 2.69687 7.66563 3.22266L7.66484 4.70391ZM9.88359 3.46797V4.70391H18.2836V3.46797H9.88359ZM26.7945 8.58984C26.8609 8.58984 26.9188 8.53125 26.9188 8.46328V6.07578C26.9188 6.00859 26.8617 5.95156 26.7945 5.95156H1.37344C1.30625 5.95156 1.24922 6.00859 1.24922 6.07578V8.46328C1.24922 8.53047 1.30703 8.58984 1.37344 8.58984H26.7945ZM24.075 12.2617H24.5578L24.8227 9.83906H3.34531L5.58438 30.4359C5.63125 30.8727 6.00391 31.3141 6.62656 31.3141H21.5414C21.8508 31.3141 22.1242 31.2008 22.3164 31.0016V14.0203C22.3164 13.0508 23.1055 12.2617 24.075 12.2617ZM38.7508 14.0203C38.7508 13.7445 38.5172 13.5109 38.2414 13.5109H36.0781V13.9586C36.0781 14.6242 35.5367 15.1656 34.8711 15.1656H27.4453C26.7797 15.1656 26.2383 14.6242 26.2383 13.9586V13.5109H24.075C23.7992 13.5109 23.5656 13.7445 23.5656 14.0203V34.4766C23.5656 34.757 23.7938 34.9859 24.075 34.9859H38.2414C38.5219 34.9859 38.7508 34.7578 38.7508 34.4766V14.0203ZM26.2945 25.3766L28.25 24.1672C28.543 23.9859 28.6344 23.6008 28.4523 23.3078C28.2711 23.0148 27.8859 22.9234 27.593 23.1055L26.8359 23.5734C27.4555 21.7648 29.1578 20.5031 31.1586 20.5031C32.9656 20.5031 34.607 21.5719 35.3398 23.2258C35.4797 23.5414 35.8492 23.6836 36.1641 23.5437C36.2391 23.5105 36.3068 23.4629 36.3634 23.4035C36.42 23.3441 36.4643 23.2741 36.4939 23.1975C36.5234 23.121 36.5375 23.0394 36.5355 22.9574C36.5335 22.8753 36.5153 22.7945 36.482 22.7195C35.5484 20.6148 33.4594 19.2547 31.1586 19.2547C29.6961 19.2547 28.2984 19.7984 27.2227 20.7867C26.5055 21.4453 25.9727 22.2633 25.6594 23.1648L25.2875 22.5633C25.1062 22.2703 24.7211 22.1789 24.4281 22.3609C24.1352 22.5422 24.0437 22.9273 24.2258 23.2203L25.4352 25.1758C25.4911 25.2665 25.5694 25.3414 25.6626 25.3932C25.7557 25.4451 25.8606 25.4721 25.9672 25.4719C26.0789 25.4695 26.1922 25.4398 26.2945 25.3766ZM36.8812 24.9773C36.7937 24.8367 36.6547 24.7359 36.4938 24.6977C36.3328 24.6594 36.1625 24.6875 36.0219 24.7742L34.0664 25.9836C33.7734 26.1648 33.682 26.55 33.8641 26.843C34.0453 27.1359 34.4305 27.2273 34.7234 27.0453L35.4813 26.5766C34.8586 28.3828 33.1531 29.6453 31.1602 29.6453C29.3523 29.6453 27.7094 28.5766 26.9766 26.9227C26.8367 26.607 26.468 26.4656 26.1523 26.6047C26.0773 26.6379 26.0096 26.6856 25.953 26.745C25.8964 26.8044 25.8521 26.8744 25.8225 26.9509C25.793 27.0274 25.7789 27.1091 25.7809 27.1911C25.7829 27.2731 25.8011 27.3539 25.8344 27.4289C26.768 29.5336 28.8586 30.8937 31.1602 30.8937C33.6961 30.8937 35.8664 29.2883 36.6602 26.9914L37.0289 27.5883C37.0849 27.679 37.1632 27.7539 37.2563 27.8057C37.3495 27.8576 37.4543 27.8846 37.5609 27.8844C37.6727 27.8844 37.7867 27.8539 37.8891 27.7906C38.182 27.6094 38.2734 27.2242 38.0914 26.9312L36.8812 24.9773ZM32.8656 23.2781L30.5969 25.5469L29.4508 24.4008C29.3332 24.2862 29.1752 24.2226 29.0111 24.2237C28.8469 24.2248 28.6898 24.2905 28.5737 24.4066C28.4577 24.5226 28.392 24.6797 28.3909 24.8439C28.3898 25.008 28.4534 25.166 28.568 25.2836L30.1555 26.8711C30.2773 26.993 30.4375 27.0539 30.5969 27.0539C30.7563 27.0539 30.9164 26.993 31.0383 26.8711L33.7492 24.1602C33.8663 24.0431 33.932 23.8843 33.932 23.7188C33.932 23.5532 33.8663 23.3944 33.7492 23.2773C33.5055 23.0344 33.1094 23.0344 32.8656 23.2781Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Waste Audits & Diagnosis", "richtext": "<p>Complete analysis of your current waste streams, identification of optimization opportunities, and detailed waste characterization reports.</p>\\n<ul>\\n<li>On-site waste assessment</li>\\n<li>LER code classification</li>\\n<li>Volume &amp; composition analysis</li>\\n<li>Gap analysis</li>\\n</ul>"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M7.51562 6.80664C7.34986 6.80664 7.19089 6.87249 7.07368 6.9897C6.95647 7.10691 6.89062 7.26588 6.89062 7.43164C6.89062 7.5974 6.95647 7.75637 7.07368 7.87358C7.19089 7.99079 7.34986 8.05664 7.51562 8.05664C7.68139 8.05664 7.84036 7.99079 7.95757 7.87358C8.07478 7.75637 8.14062 7.5974 8.14062 7.43164C8.14062 7.26588 8.07478 7.10691 7.95757 6.9897C7.84036 6.87249 7.68139 6.80664 7.51562 6.80664ZM9.80938 6.80664C9.68576 6.80664 9.56492 6.8433 9.46214 6.91197C9.35936 6.98065 9.27926 7.07826 9.23195 7.19246C9.18465 7.30667 9.17227 7.43233 9.19638 7.55357C9.2205 7.67481 9.28003 7.78617 9.36743 7.87358C9.45484 7.96099 9.56621 8.02052 9.68744 8.04463C9.80868 8.06875 9.93435 8.05637 10.0486 8.00906C10.1628 7.96176 10.2604 7.88165 10.329 7.77887C10.3977 7.67609 10.4344 7.55525 10.4344 7.43164C10.4344 7.26588 10.3685 7.10691 10.2513 6.9897C10.1341 6.87249 9.97514 6.80664 9.80938 6.80664ZM12.1031 6.80664C11.9795 6.80664 11.8587 6.8433 11.7559 6.91197C11.6531 6.98065 11.573 7.07826 11.5257 7.19246C11.4784 7.30667 11.466 7.43233 11.4901 7.55357C11.5142 7.67481 11.5738 7.78617 11.6612 7.87358C11.7486 7.96099 11.86 8.02052 11.9812 8.04463C12.1024 8.06875 12.2281 8.05637 12.3423 8.00906C12.4565 7.96176 12.5541 7.88165 12.6228 7.77887C12.6915 7.67609 12.7281 7.55525 12.7281 7.43164C12.7281 7.26588 12.6623 7.10691 12.5451 6.9897C12.4279 6.87249 12.2689 6.80664 12.1031 6.80664Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M28.1187 36.1562H30.45C30.8158 36.1546 31.1662 36.0086 31.4249 35.7499C31.6836 35.4912 31.8296 35.1408 31.8313 34.775V33.5625H33.45C34.3247 33.5608 35.1631 33.2126 35.7816 32.5941C36.4001 31.9756 36.7483 31.1372 36.75 30.2625V7.3C36.75 6.42479 36.4023 5.58542 35.7835 4.96655C35.1646 4.34768 34.3252 4 33.45 4H6.3C5.42479 4 4.58542 4.34768 3.96655 4.96655C3.34768 5.58542 3 6.42479 3 7.3V30.2625C3.00165 31.1372 3.34986 31.9756 3.96837 32.5941C4.58688 33.2126 5.42529 33.5608 6.3 33.5625H7.91875V34.775C7.92039 35.1408 8.06645 35.4912 8.32513 35.7499C8.5838 36.0086 8.93418 36.1546 9.3 36.1562H11.6312C11.814 36.1562 11.9949 36.1196 12.1634 36.0488C12.3319 35.978 12.4846 35.8743 12.6125 35.7438C12.7378 35.6159 12.8366 35.4644 12.9031 35.2981C12.9696 35.1319 13.0026 34.9541 13 34.775V33.5625H14.1812V34.775C14.1829 35.1398 14.3281 35.4892 14.5854 35.7477C14.8427 36.0062 15.1915 36.153 15.5562 36.1562H17.8938C18.2596 36.1546 18.6099 36.0086 18.8686 35.7499C19.1273 35.4912 19.2734 35.1408 19.275 34.775V33.5625H20.45V34.775C20.4516 35.1408 20.5977 35.4912 20.8564 35.7499C21.1151 36.0086 21.4654 36.1546 21.8313 36.1562H24.1687C24.3514 36.1555 24.5321 36.1186 24.7005 36.0478C24.8689 35.9771 25.0216 35.8737 25.15 35.7438C25.2773 35.617 25.3778 35.4659 25.4455 35.2994C25.5131 35.133 25.5465 34.9546 25.5438 34.775V33.5625H26.75V34.775C26.7516 35.1387 26.8959 35.4872 27.1519 35.7455C27.4079 36.0038 27.7551 36.1513 28.1187 36.1562ZM30.5813 34.775C30.5813 34.8098 30.5674 34.8432 30.5428 34.8678C30.5182 34.8924 30.4848 34.9062 30.45 34.9062H28.1187C28.0839 34.9062 28.0506 34.8924 28.0259 34.8678C28.0013 34.8432 27.9875 34.8098 27.9875 34.775V19.9875C27.9875 19.9527 28.0013 19.9193 28.0259 19.8947C28.0506 19.8701 28.0839 19.8562 28.1187 19.8562H30.45C30.4848 19.8562 30.5182 19.8701 30.5428 19.8947C30.5674 19.9193 30.5813 19.9527 30.5813 19.9875V34.775ZM11.75 34.775C11.751 34.7915 11.7481 34.808 11.7416 34.8232C11.7351 34.8384 11.7251 34.8518 11.7125 34.8625C11.7007 34.8758 11.6862 34.8865 11.6701 34.894C11.654 34.9015 11.6365 34.9057 11.6188 34.9062H9.3C9.26519 34.9062 9.23181 34.8924 9.20719 34.8678C9.18258 34.8432 9.16875 34.8098 9.16875 34.775V30.075C9.16875 30.0402 9.18258 30.0068 9.20719 29.9822C9.23181 29.9576 9.26519 29.9438 9.3 29.9438H11.6312C11.6638 29.9469 11.6941 29.9621 11.7161 29.9863C11.738 30.0106 11.7501 30.0423 11.75 30.075V34.775ZM18 34.775C18 34.8098 17.9862 34.8432 17.9616 34.8678C17.9369 34.8924 17.9036 34.9062 17.8688 34.9062H15.5688C15.535 34.9046 15.5032 34.8901 15.48 34.8657C15.4567 34.8412 15.4437 34.8088 15.4438 34.775V24.7188C15.4429 24.7015 15.4455 24.6843 15.4513 24.668C15.4571 24.6518 15.4661 24.6368 15.4777 24.6241C15.4893 24.6113 15.5034 24.6009 15.519 24.5936C15.5346 24.5862 15.5515 24.5821 15.5688 24.5812H17.9062C17.9416 24.5829 17.975 24.5981 17.9995 24.6237C18.0239 24.6493 18.0375 24.6833 18.0375 24.7188L18 34.775ZM24.25 34.775C24.2506 34.807 24.2395 34.8381 24.2188 34.8625C24.2069 34.8758 24.1925 34.8865 24.1764 34.894C24.1603 34.9015 24.1428 34.9057 24.125 34.9062H21.8438C21.8089 34.9062 21.7756 34.8924 21.7509 34.8678C21.7263 34.8432 21.7125 34.8098 21.7125 34.775V27.8188C21.7125 27.7839 21.7263 27.7506 21.7509 27.7259C21.7756 27.7013 21.8089 27.6875 21.8438 27.6875H24.1812C24.1982 27.6875 24.215 27.6909 24.2306 27.6976C24.2462 27.7042 24.2602 27.714 24.2719 27.7263C24.2836 27.7386 24.2927 27.7531 24.2986 27.769C24.3045 27.7849 24.3071 27.8018 24.3062 27.8188L24.25 34.775ZM25.5 32.3125V27.8188C25.5 27.4535 25.3553 27.1031 25.0977 26.8443C24.84 26.5854 24.4902 26.4392 24.125 26.4375H21.8438C21.4779 26.4391 21.1276 26.5852 20.8689 26.8439C20.6102 27.1026 20.4641 27.4529 20.4625 27.8188V32.3125H19.2875V24.7188C19.2883 24.5368 19.2532 24.3566 19.1842 24.1883C19.1151 24.0199 19.0135 23.8669 18.8852 23.738C18.7568 23.6091 18.6043 23.5068 18.4363 23.437C18.2683 23.3672 18.0882 23.3312 17.9062 23.3312H15.5688C15.3874 23.3321 15.2079 23.3686 15.0406 23.4388C14.8734 23.5089 14.7216 23.6114 14.5939 23.7402C14.4662 23.8691 14.3652 24.0218 14.2965 24.1897C14.2278 24.3576 14.1929 24.5374 14.1938 24.7188V32.3125H13V30.075C12.9983 29.7098 12.8521 29.36 12.5932 29.1023C12.3344 28.8447 11.984 28.7 11.6188 28.7H9.3C8.93475 28.7 8.58437 28.8447 8.32551 29.1023C8.06666 29.36 7.9204 29.7098 7.91875 30.075V32.3313H6.3C6.02944 32.3304 5.7617 32.2762 5.51213 32.1717C5.26256 32.0673 5.03606 31.9145 4.84562 31.7224C4.65518 31.5302 4.50454 31.3023 4.40233 31.0518C4.30012 30.8013 4.24835 30.5331 4.25 30.2625V7.3C4.25 6.75631 4.46598 6.23488 4.85043 5.85043C5.23488 5.46598 5.75631 5.25 6.3 5.25H33.45C33.9937 5.25 34.5151 5.46598 34.8996 5.85043C35.284 6.23488 35.5 6.75631 35.5 7.3V30.2625C35.4984 30.8057 35.2818 31.3262 34.8977 31.7102C34.5137 32.0943 33.9932 32.3109 33.45 32.3125H31.8313V19.9875C31.8313 19.8061 31.7955 19.6265 31.7261 19.4589C31.6567 19.2913 31.555 19.1391 31.4267 19.0108C31.2984 18.8825 31.1462 18.7808 30.9786 18.7114C30.811 18.642 30.6314 18.6062 30.45 18.6062H28.1187C27.7546 18.6095 27.4065 18.7565 27.1501 19.0152C26.8938 19.2739 26.75 19.6233 26.75 19.9875V32.3125H25.5Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M29.2878 16.1066C29.8603 16.1034 30.4085 15.8745 30.8133 15.4696C31.2181 15.0648 31.447 14.5167 31.4503 13.9441C31.4487 13.3711 31.2203 12.822 30.8151 12.4168C30.4099 12.0117 29.8608 11.7833 29.2878 11.7816C28.7143 11.7816 28.1642 12.0095 27.7587 12.415C27.3531 12.8206 27.1253 13.3706 27.1253 13.9441C27.1361 14.3722 27.2779 14.7867 27.5316 15.1316L23.7816 19.7816C23.3899 19.631 22.9636 19.5945 22.5521 19.6764C22.1406 19.7582 21.7607 19.9551 21.4566 20.2441C21.4463 20.2643 21.4337 20.2831 21.4191 20.3004L18.8066 19.0066C18.839 18.8984 18.862 18.7876 18.8753 18.6754C18.8753 18.1019 18.6475 17.5518 18.2419 17.1463C17.8364 16.7407 17.2863 16.5129 16.7128 16.5129C16.1393 16.5129 15.5892 16.7407 15.1837 17.1463C14.7781 17.5518 14.5503 18.1019 14.5503 18.6754C14.5516 18.9729 14.6155 19.2667 14.7378 19.5379L11.5816 22.2254C11.2437 21.995 10.8466 21.867 10.4378 21.8566C9.86645 21.8583 9.31895 22.086 8.91493 22.49C8.51092 22.894 8.28321 23.4415 8.28156 24.0129C8.27667 24.2971 8.32954 24.5794 8.43697 24.8426C8.5444 25.1058 8.70416 25.3445 8.90656 25.5441C9.20896 25.8449 9.59354 26.0496 10.0119 26.1323C10.4303 26.2151 10.8639 26.1723 11.258 26.0093C11.6521 25.8463 11.9893 25.5704 12.227 25.2163C12.4647 24.8622 12.5924 24.4457 12.5941 24.0191C12.5913 23.7245 12.5296 23.4334 12.4128 23.1629L15.5691 20.4754C15.9041 20.7075 16.2992 20.8377 16.7066 20.8504C17.0016 20.8482 17.2931 20.7856 17.5629 20.6662C17.8327 20.5469 18.0752 20.3735 18.2753 20.1566L20.8878 21.4441C20.8565 21.5548 20.8336 21.6676 20.8191 21.7816C20.8075 22.1252 20.8781 22.4666 21.0248 22.7774C21.1716 23.0883 21.3903 23.3597 21.6629 23.5691C21.9355 23.7785 22.2541 23.9199 22.5923 23.9816C22.9305 24.0433 23.2785 24.0234 23.6075 23.9238C23.9365 23.8241 24.2369 23.6474 24.484 23.4084C24.7311 23.1693 24.9176 22.8749 25.0281 22.5493C25.1386 22.2238 25.1699 21.8767 25.1194 21.5366C25.0689 21.1966 24.9381 20.8735 24.7378 20.5941L28.4503 15.9566C28.7169 16.0611 29.0015 16.1121 29.2878 16.1066ZM11.3753 24.0129C11.3707 24.2471 11.2768 24.4706 11.1128 24.6379C10.9385 24.8041 10.7068 24.8968 10.4659 24.8968C10.2251 24.8968 9.99341 24.8041 9.81906 24.6379C9.65288 24.4721 9.55859 24.2476 9.55656 24.0129C9.55574 23.8934 9.57857 23.7748 9.62374 23.6642C9.66892 23.5535 9.73554 23.4528 9.81978 23.368C9.90401 23.2832 10.0042 23.2159 10.1146 23.17C10.2249 23.124 10.3433 23.1004 10.4628 23.1004C10.6967 23.1063 10.9199 23.2 11.0878 23.3629C11.2518 23.5301 11.3457 23.7537 11.3503 23.9879L11.3753 24.0129ZM16.7503 19.5879C16.5151 19.5822 16.2912 19.4859 16.1253 19.3191C16.0416 19.2378 15.9748 19.1407 15.9287 19.0334C15.8826 18.9262 15.858 18.8109 15.8566 18.6941C15.8608 18.5157 15.9172 18.3424 16.0189 18.1957C16.1206 18.049 16.2631 17.9354 16.4287 17.8688C16.5944 17.8023 16.7759 17.7858 16.9508 17.8214C17.1257 17.857 17.2864 17.9432 17.4128 18.0691C17.5807 18.2343 17.6772 18.4587 17.6816 18.6941C17.68 18.8142 17.6545 18.9328 17.6067 19.043C17.5588 19.1531 17.4896 19.2527 17.4029 19.3358C17.3163 19.419 17.2139 19.4841 17.1019 19.5274C16.9899 19.5706 16.8704 19.5912 16.7503 19.5879ZM29.2878 13.0316C29.522 13.0363 29.7456 13.1302 29.9128 13.2941C30.0785 13.4608 30.1746 13.6842 30.1816 13.9191C30.1746 14.154 30.0785 14.3775 29.9128 14.5441C29.7385 14.7103 29.5068 14.8031 29.2659 14.8031C29.0251 14.8031 28.7934 14.7103 28.6191 14.5441C28.4931 14.4177 28.407 14.2571 28.3714 14.0821C28.3358 13.9072 28.3522 13.7257 28.4188 13.5601C28.4853 13.3944 28.5989 13.2519 28.7456 13.1502C28.8923 13.0485 29.0656 12.9921 29.2441 12.9879L29.2878 13.0316ZM23.9253 21.7816C23.9211 21.9601 23.8647 22.1334 23.763 22.2801C23.6613 22.4268 23.5188 22.5404 23.3531 22.6069C23.1875 22.6735 23.006 22.6899 22.8311 22.6543C22.6562 22.6187 22.4955 22.5326 22.3691 22.4066C22.2621 22.3 22.1832 22.1685 22.1395 22.024C22.0959 21.8794 22.0888 21.7262 22.1189 21.5782C22.149 21.4302 22.2154 21.292 22.3121 21.1759C22.4088 21.0599 22.5328 20.9697 22.673 20.9134C22.8132 20.8571 22.9651 20.8365 23.1152 20.8534C23.2653 20.8703 23.4088 20.9242 23.533 21.0103C23.6571 21.0963 23.7579 21.2119 23.8264 21.3465C23.8949 21.4811 23.9289 21.6306 23.9253 21.7816ZM15.7503 8.05664H31.4628C31.6286 8.05664 31.7875 7.99079 31.9048 7.87358C32.022 7.75637 32.0878 7.5974 32.0878 7.43164C32.0878 7.26588 32.022 7.10691 31.9048 6.9897C31.7875 6.87249 31.6286 6.80664 31.4628 6.80664H15.7503C15.5846 6.80664 15.4256 6.87249 15.3084 6.9897C15.1912 7.10691 15.1253 7.26588 15.1253 7.43164C15.1253 7.5974 15.1912 7.75637 15.3084 7.87358C15.4256 7.99079 15.5846 8.05664 15.7503 8.05664Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Customized Management Plan", "richtext": "<p>Tailored waste management strategies designed specifically for your operations, industry requirements, and sustainability goals.</p>\\n<ul>\\n<li>Waste reduction strategies</li>\\n<li>Valorization pathways</li>\\n<li>Implementation roadmap</li>\\n<li>KPI definition</li>\\n</ul>"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M9.52838 39.3754H30.4734C31.7466 39.3892 32.979 38.9269 33.929 38.0792C34.8791 37.2315 35.4782 36.0595 35.609 34.7929C35.6967 33.7568 35.4581 32.7192 34.9265 31.8254C32.882 28.291 31.8282 24.2708 31.8759 20.1879V18.7504C31.8741 17.3536 31.3532 16.0072 30.4145 14.9728C29.4757 13.9384 28.186 13.2898 26.7959 13.1529C26.6644 12.6265 26.3643 12.1574 25.9415 11.8173L29.0984 4.87981C29.4388 4.16389 29.4808 3.34208 29.2153 2.59516C28.9497 1.84823 28.3984 1.23739 27.6824 0.897001C26.9665 0.556612 26.1447 0.514562 25.3978 0.780102C24.6509 1.04564 24.04 1.59702 23.6996 2.31294L23.4028 2.91606C23.3704 2.97483 23.3228 3.02383 23.2651 3.05796C23.2073 3.09208 23.1414 3.11008 23.0743 3.11008C23.0072 3.11008 22.9414 3.09208 22.8836 3.05796C22.8258 3.02383 22.7783 2.97483 22.7459 2.91606L22.3409 2.09356C22.1282 1.65378 21.7958 1.28285 21.3819 1.02329C20.9681 0.763737 20.4894 0.626067 20.0009 0.626067C19.5124 0.626067 19.0337 0.763737 18.6198 1.02329C18.206 1.28285 17.8736 1.65378 17.6609 2.09356L17.2559 2.91669C17.2235 2.97545 17.1759 3.02445 17.1182 3.05858C17.0604 3.09271 16.9945 3.11071 16.9274 3.11071C16.8603 3.11071 16.7945 3.09271 16.7367 3.05858C16.6789 3.02445 16.6314 2.97545 16.599 2.91669L16.3028 2.31294C15.9569 1.60671 15.3466 1.06522 14.6043 0.805798C13.8619 0.546376 13.0472 0.589918 12.3367 0.926989C11.6263 1.26406 11.0772 1.86751 10.8086 2.60658C10.5399 3.34565 10.5733 4.16082 10.9015 4.87544L14.0634 11.8173C13.6406 12.1574 13.3405 12.6265 13.209 13.1529C11.8183 13.2891 10.5279 13.9374 9.58846 14.9719C8.64905 16.0063 8.12776 17.3531 8.12588 18.7504V20.1879C8.17359 24.2708 7.11974 28.291 5.07525 31.8254C4.54371 32.7189 4.30507 33.7564 4.39275 34.7923C4.52341 36.0589 5.1225 37.2311 6.07255 38.0789C7.0226 38.9268 8.2551 39.3892 9.52838 39.3754ZM15.6259 12.5004H24.3759C24.7074 12.5004 25.0253 12.6321 25.2598 12.8666C25.4942 13.101 25.6259 13.4189 25.6259 13.7504C25.6259 14.082 25.4942 14.3999 25.2598 14.6343C25.0253 14.8687 24.7074 15.0004 24.3759 15.0004H15.6259C15.2944 15.0004 14.9764 14.8687 14.742 14.6343C14.5076 14.3999 14.3759 14.082 14.3759 13.7504C14.3759 13.4189 14.5076 13.101 14.742 12.8666C14.9764 12.6321 15.2944 12.5004 15.6259 12.5004ZM12.0378 4.35481C11.8892 4.03306 11.8416 3.67383 11.9013 3.32449C11.961 2.97514 12.1251 2.65209 12.3721 2.39794C12.5332 2.23242 12.7258 2.10089 12.9385 2.01114C13.1513 1.92139 13.3799 1.87525 13.6109 1.87544C13.9391 1.87599 14.2606 1.96911 14.5383 2.14412C14.816 2.31913 15.0387 2.56893 15.1809 2.86481L15.4771 3.46669C15.6092 3.73901 15.8153 3.96864 16.0718 4.12931C16.3282 4.28998 16.6248 4.37519 16.9274 4.37519C17.2301 4.37519 17.5266 4.28998 17.7831 4.12931C18.0396 3.96864 18.2457 3.73901 18.3778 3.46669L18.7828 2.64356C18.8923 2.41308 19.0649 2.21838 19.2806 2.08206C19.4964 1.94574 19.7463 1.87338 20.0015 1.87338C20.2567 1.87338 20.5066 1.94574 20.7224 2.08206C20.9381 2.21838 21.1107 2.41308 21.2203 2.64356L21.6259 3.46669C21.7579 3.73901 21.964 3.96864 22.2205 4.12931C22.477 4.28998 22.7735 4.37519 23.0762 4.37519C23.3788 4.37519 23.6754 4.28998 23.9319 4.12931C24.1884 3.96864 24.3944 3.73901 24.5265 3.46669L24.8234 2.86419C24.9215 2.65797 25.0592 2.47309 25.2287 2.32011C25.3983 2.16712 25.5963 2.04903 25.8114 1.97256C26.0266 1.8961 26.2547 1.86277 26.4828 1.87447C26.7108 1.88617 26.9344 1.94267 27.1406 2.04075C27.3468 2.13883 27.5317 2.27657 27.6846 2.4461C27.8376 2.61563 27.9557 2.81363 28.0322 3.02881C28.1087 3.24398 28.142 3.4721 28.1303 3.70015C28.1186 3.92821 28.0621 4.15172 27.964 4.35794L24.8084 11.2954C24.6658 11.2676 24.5211 11.2526 24.3759 11.2504H22.6553L23.7365 6.38606L22.5153 6.11481L21.3759 11.2504H20.6259V6.25044H19.3759V11.2504H18.6259L17.4865 6.11481L16.2653 6.38606L17.3465 11.2504H15.6259C15.4813 11.2523 15.3372 11.2669 15.1953 11.2942L12.0378 4.35481ZM6.14963 32.4648C8.30911 28.7369 9.42363 24.4958 9.37588 20.1879V18.7504C9.37761 17.6819 9.76989 16.6509 10.4789 15.8514C11.1878 15.052 12.1646 14.5393 13.2253 14.4098C13.3693 14.9368 13.6821 15.402 14.1156 15.7344C14.5491 16.0668 15.0796 16.2481 15.6259 16.2504H24.3759C24.9222 16.2481 25.4526 16.0668 25.8862 15.7344C26.3197 15.402 26.6324 14.9368 26.7765 14.4098C27.8372 14.5391 28.8141 15.0518 29.5231 15.8513C30.232 16.6508 30.6243 17.6819 30.6259 18.7504V20.1879C30.5782 24.4956 31.6928 28.7365 33.8521 32.4642C34.251 33.1346 34.4296 33.9132 34.3628 34.6904C34.2594 35.6448 33.8032 36.5262 33.0837 37.1616C32.3642 37.7971 31.4332 38.1408 30.4734 38.1254H9.52838C8.56815 38.1408 7.63686 37.7967 6.91728 37.1607C6.19769 36.5247 5.74178 35.6428 5.639 34.6879C5.57276 33.9117 5.75133 33.1343 6.14963 32.4648Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M19.375 30.625V31.25H20.625V30.625C21.1223 30.625 21.5992 30.4275 21.9508 30.0758C22.3025 29.7242 22.5 29.2473 22.5 28.75V28.125C22.5 27.6277 22.3025 27.1508 21.9508 26.7992C21.5992 26.4475 21.1223 26.25 20.625 26.25V24.375C20.7908 24.375 20.9497 24.4408 21.0669 24.5581C21.1842 24.6753 21.25 24.8342 21.25 25V25.625H22.5V25C22.5 24.5027 22.3025 24.0258 21.9508 23.6742C21.5992 23.3225 21.1223 23.125 20.625 23.125V22.5H19.375V23.125C18.8777 23.125 18.4008 23.3225 18.0492 23.6742C17.6975 24.0258 17.5 24.5027 17.5 25V25.625C17.5 26.1223 17.6975 26.5992 18.0492 26.9508C18.4008 27.3025 18.8777 27.5 19.375 27.5V29.375C19.2092 29.375 19.0503 29.3092 18.9331 29.1919C18.8158 29.0747 18.75 28.9158 18.75 28.75V28.125H17.5V28.75C17.5 29.2473 17.6975 29.7242 18.0492 30.0758C18.4008 30.4275 18.8777 30.625 19.375 30.625ZM18.75 25.625V25C18.75 24.8342 18.8158 24.6753 18.9331 24.5581C19.0503 24.4408 19.2092 24.375 19.375 24.375V26.25C19.2092 26.25 19.0503 26.1842 18.9331 26.0669C18.8158 25.9497 18.75 25.7908 18.75 25.625ZM20.625 27.5C20.7908 27.5 20.9497 27.5658 21.0669 27.6831C21.1842 27.8003 21.25 27.9592 21.25 28.125V28.75C21.25 28.9158 21.1842 29.0747 21.0669 29.1919C20.9497 29.3092 20.7908 29.375 20.625 29.375V27.5Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M20 33.75C21.3597 33.75 22.689 33.3468 23.8195 32.5914C24.9501 31.8359 25.8313 30.7622 26.3517 29.506C26.872 28.2497 27.0082 26.8674 26.7429 25.5338C26.4776 24.2001 25.8228 22.9751 24.8614 22.0136C23.8999 21.0522 22.6749 20.3974 21.3412 20.1321C20.0076 19.8668 18.6253 20.003 17.3691 20.5233C16.1128 21.0437 15.0391 21.9249 14.2836 23.0555C13.5282 24.186 13.125 25.5153 13.125 26.875C13.1272 28.6977 13.8522 30.4451 15.141 31.734C16.4299 33.0228 18.1773 33.7479 20 33.75ZM20 21.25C21.1125 21.25 22.2001 21.5799 23.1251 22.198C24.0501 22.8161 24.7711 23.6946 25.1968 24.7224C25.6226 25.7502 25.734 26.8812 25.5169 27.9724C25.2999 29.0635 24.7641 30.0658 23.9775 30.8525C23.1908 31.6391 22.1885 32.1749 21.0974 32.3919C20.0062 32.609 18.8752 32.4976 17.8474 32.0718C16.8196 31.6461 15.9411 30.9251 15.323 30.0001C14.7049 29.0751 14.375 27.9875 14.375 26.875C14.3767 25.3837 14.9698 23.9539 16.0244 22.8994C17.0789 21.8448 18.5087 21.2517 20 21.25Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Cost Optimization", "richtext": "<p>Identify savings opportunities through efficient waste management, resource recovery, and circular economy principles.</p>\\n<ul>\\n<li>Cost-benefit analysis</li>\\n<li>Revenue generation</li>\\n<li>Process efficiency</li>\\n<li>ROI tracking</li>\\n</ul>"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M25.6305 33.3188L20.882 31.0418C20.8574 31.0304 20.8308 31.0239 20.8038 31.0227C20.7767 31.0215 20.7497 31.0257 20.7242 31.035C20.6739 31.0523 20.6325 31.0888 20.6091 31.1366L20.1529 32.088C20.1414 32.1126 20.1349 32.1392 20.1338 32.1662C20.1326 32.1933 20.1368 32.2203 20.1461 32.2458C20.1547 32.2707 20.1681 32.2937 20.1856 32.3135C20.2031 32.3333 20.2243 32.3494 20.248 32.3609L24.9969 34.6379C25.0214 34.6493 25.048 34.6558 25.0751 34.657C25.1021 34.6581 25.1292 34.6539 25.1546 34.6446C25.2049 34.6273 25.2462 34.5908 25.2695 34.543L25.7259 33.5912C25.7374 33.5666 25.7438 33.54 25.745 33.513C25.7461 33.4859 25.742 33.4589 25.7327 33.4334C25.7241 33.4085 25.7108 33.3855 25.6933 33.3658C25.6759 33.346 25.6548 33.3299 25.6311 33.3184L25.6305 33.3188ZM17.1116 12.338C16.5542 11.7806 15.8207 11.4337 15.0362 11.3564C14.2516 11.2792 13.4645 11.4763 12.8091 11.9143C12.1536 12.3523 11.6702 13.004 11.4414 13.7584C11.2126 14.5128 11.2524 15.3232 11.5541 16.0515C11.8558 16.7799 12.4007 17.3811 13.0959 17.7527C13.7912 18.1243 14.5938 18.2434 15.367 18.0895C16.1402 17.9357 16.8361 17.5186 17.3362 16.9092C17.8364 16.2998 18.1097 15.5358 18.1097 14.7475C18.1103 14.2999 18.0224 13.8567 17.8511 13.4432C17.6799 13.0297 17.4285 12.6541 17.1116 12.338ZM14.7023 10.1797C15.759 10.1797 16.7831 10.5461 17.5999 11.2164C18.4168 11.8868 18.976 12.8197 19.1821 13.8561C19.3883 14.8925 19.2287 15.9684 18.7306 16.9004C18.2325 17.8323 17.4266 18.5627 16.4503 18.9671C15.474 19.3715 14.3877 19.4249 13.3765 19.1182C12.3652 18.8114 11.4916 18.1635 10.9046 17.2849C10.3175 16.4063 10.0532 15.3512 10.1568 14.2996C10.2603 13.2479 10.7254 12.2647 11.4726 11.5175C11.8962 11.0927 12.3997 10.7559 12.9539 10.5263C13.5082 10.2967 14.1023 10.1789 14.7023 10.1797ZM12.6866 15.5156C12.6289 15.4662 12.5815 15.406 12.5471 15.3382C12.5126 15.2705 12.4919 15.1967 12.486 15.1209C12.4801 15.0452 12.4892 14.969 12.5128 14.8968C12.5363 14.8246 12.5738 14.7577 12.6232 14.7C12.6726 14.6422 12.7329 14.5948 12.8006 14.5604C12.8684 14.526 12.9422 14.5052 13.0179 14.4993C13.0937 14.4934 13.1698 14.5025 13.2421 14.5261C13.3143 14.5496 13.3812 14.5872 13.4389 14.6366L14.1117 15.2155L15.8996 13.0878C15.9982 12.9706 16.1392 12.8974 16.2917 12.8842C16.4443 12.8711 16.5958 12.919 16.713 13.0176C16.8301 13.1161 16.9034 13.2572 16.9165 13.4097C16.9297 13.5622 16.8817 13.7138 16.7832 13.8309L14.6431 16.3778C14.6347 16.3892 14.6259 16.4003 14.6167 16.4111C14.5674 16.4689 14.5071 16.5163 14.4394 16.5508C14.3717 16.5852 14.2978 16.606 14.2221 16.6119C14.1463 16.6178 14.0701 16.6087 13.9979 16.5851C13.9257 16.5615 13.8588 16.524 13.8011 16.4745L12.6866 15.5156ZM11.807 21.4338V25.5051L14.3654 23.7473C14.4618 23.6781 14.5771 23.6403 14.6957 23.639C14.8144 23.6377 14.9305 23.673 15.0284 23.7401L17.5973 25.5057V21.434C17.4545 21.4377 17.311 21.4325 17.1676 21.4272C16.9373 21.4188 16.706 21.4103 16.5495 21.4534C16.4 21.4945 16.207 21.6159 16.012 21.7384C15.6199 21.9849 15.222 22.235 14.7024 22.235C14.1828 22.235 13.785 21.985 13.393 21.7384C13.1977 21.6159 13.0049 21.4945 12.8555 21.4534C12.6992 21.4103 12.4677 21.4188 12.2374 21.4273C12.0937 21.4325 11.9502 21.4377 11.8077 21.4341L11.807 21.4338ZM18.7573 21.0027V26.6038C18.7573 26.7145 18.7256 26.8229 18.6659 26.9162C18.6062 27.0095 18.5211 27.0838 18.4206 27.1302C18.32 27.1767 18.2083 27.1934 18.0986 27.1784C17.9889 27.1634 17.8857 27.1172 17.8014 27.0455L14.7023 24.9159L11.5534 27.0799C11.4668 27.1394 11.3656 27.174 11.2607 27.1801C11.1558 27.1862 11.0512 27.1636 10.9583 27.1146C10.8653 27.0656 10.7875 26.9922 10.7332 26.9023C10.6789 26.8123 10.6502 26.7092 10.6502 26.6041H10.6471V21.003C10.3967 20.7669 10.2452 20.4691 10.0941 20.1721C9.9925 19.973 9.89172 19.7744 9.78359 19.6663C9.67547 19.5583 9.4768 19.4571 9.27781 19.3558C8.88492 19.1559 8.49094 18.9555 8.23961 18.5264C7.99016 18.1005 8.00641 17.6577 8.02266 17.2126C8.03109 16.9823 8.03953 16.751 7.99648 16.5945C7.95539 16.4452 7.83406 16.2521 7.71148 16.0571C7.465 15.6651 7.21477 15.2672 7.21477 14.7475C7.21477 14.2278 7.46477 13.8301 7.71141 13.438C7.83398 13.2427 7.95539 13.05 7.99648 12.9005C8.03945 12.7442 8.03102 12.5128 8.02258 12.2825C8.00633 11.8372 7.99008 11.3946 8.23961 10.9687C8.49094 10.5396 8.885 10.3391 9.27781 10.1392C9.4768 10.0377 9.67547 9.93695 9.78351 9.82883C9.89156 9.7207 9.99273 9.52203 10.094 9.32305C10.2939 8.93016 10.4944 8.53609 10.9234 8.28484C11.3494 8.03531 11.7921 8.05156 12.2373 8.06789C12.4675 8.07625 12.6988 8.08477 12.8553 8.04172C13.0047 8.00063 13.1977 7.87922 13.3927 7.75664C13.7848 7.51016 14.1827 7.26 14.7023 7.26C15.2218 7.26 15.6197 7.51 16.0118 7.75664C16.2071 7.87922 16.3998 8.00055 16.5493 8.04164C16.7055 8.08469 16.937 8.07625 17.1673 8.06781C17.6126 8.05149 18.0552 8.03531 18.4811 8.28477C18.9102 8.53617 19.1107 8.93016 19.3105 9.32305C19.4121 9.52203 19.5129 9.72063 19.621 9.82875C19.7291 9.93688 19.9277 10.038 20.1268 10.1392C20.5196 10.3391 20.9137 10.5396 21.165 10.9687C21.4145 11.3945 21.3983 11.8373 21.382 12.2824C21.3735 12.5127 21.3651 12.744 21.4081 12.9005C21.4492 13.05 21.5705 13.243 21.6932 13.438C21.9397 13.8301 22.1898 14.228 22.1898 14.7475C22.1898 15.267 21.9398 15.6649 21.6932 16.057C21.5706 16.2523 21.4493 16.445 21.4081 16.5945C21.3651 16.7508 21.3736 16.9823 21.382 17.2126C21.3983 17.6579 21.4145 18.1005 21.165 18.5263C20.9137 18.9555 20.5197 19.1559 20.1268 19.3558C19.9278 19.4573 19.7291 19.5581 19.621 19.6663C19.5129 19.7744 19.4119 19.973 19.3106 20.172C19.1595 20.4689 19.0079 20.7669 18.7574 21.003L18.7573 21.0027ZM17.8672 20.2278C17.7247 20.2903 17.467 20.2809 17.208 20.2714C16.8914 20.2598 16.5734 20.248 16.2455 20.3384C15.9247 20.4266 15.6615 20.5921 15.3955 20.7593C15.1465 20.9155 14.8938 21.0747 14.7021 21.0747C14.5104 21.0747 14.2579 20.9159 14.009 20.7594C13.7429 20.5921 13.4796 20.4266 13.1587 20.3384C12.8305 20.2482 12.513 20.2602 12.1963 20.2714C11.9373 20.2809 11.6796 20.2904 11.537 20.2278C11.521 20.2176 11.5045 20.2082 11.4875 20.1998C11.3634 20.1105 11.2453 19.878 11.127 19.6462C10.9835 19.364 10.8402 19.0823 10.6036 18.8458C10.367 18.6092 10.0854 18.4659 9.80328 18.3223C9.55867 18.1979 9.31344 18.0731 9.23633 17.9416C9.15773 17.8073 9.16781 17.5309 9.17797 17.253C9.18961 16.9364 9.20141 16.6184 9.11109 16.2906C9.02281 15.9698 8.85727 15.7066 8.69008 15.4405C8.53383 15.1916 8.37469 14.9389 8.37469 14.7472C8.37469 14.5555 8.53351 14.303 8.69 14.054C8.85726 13.788 9.02281 13.5247 9.11102 13.2038C9.20117 12.8761 9.18953 12.558 9.17797 12.2414C9.16781 11.9636 9.15766 11.6872 9.23633 11.553C9.31336 11.4213 9.55867 11.2965 9.80328 11.172C10.0854 11.0285 10.367 10.8852 10.6036 10.6486C10.8402 10.412 10.9834 10.1304 11.127 9.84828C11.2514 9.60367 11.3763 9.35836 11.5078 9.28133C11.642 9.20266 11.9184 9.21281 12.1963 9.22297C12.513 9.23453 12.8309 9.24641 13.1587 9.15602C13.4796 9.06774 13.7428 8.90227 14.0088 8.735C14.2578 8.57875 14.5105 8.41961 14.7021 8.41961C14.8938 8.41961 15.1464 8.57852 15.3953 8.735C15.6614 8.90227 15.9247 9.06774 16.2455 9.15602C16.5733 9.24617 16.8913 9.23414 17.2079 9.22289C17.4857 9.21274 17.7621 9.20266 17.8964 9.28125C18.028 9.35836 18.1528 9.60367 18.2773 9.84828C18.4208 10.1304 18.5641 10.412 18.8007 10.6485C19.0373 10.885 19.3189 11.0284 19.601 11.172C19.8456 11.2964 20.0909 11.4213 20.168 11.5528C20.2466 11.687 20.2365 11.9634 20.2263 12.2413C20.2148 12.5579 20.2029 12.8759 20.2934 13.2037C20.3816 13.5246 20.5471 13.7878 20.7143 14.0538C20.8705 14.3028 21.0297 14.5555 21.0297 14.7471C21.0297 14.9388 20.8709 15.1914 20.7144 15.4403C20.5471 15.7064 20.3816 15.9697 20.2934 16.2905C20.2032 16.6187 20.2152 16.9363 20.2264 17.253C20.2366 17.5308 20.2467 17.8072 20.168 17.9414C20.0909 18.073 19.8457 18.1978 19.6011 18.3223C19.319 18.4658 19.0373 18.6091 18.8008 18.8457C18.5642 19.0823 18.4209 19.3638 18.2773 19.646C18.1594 19.8779 18.041 20.1105 17.917 20.1996C17.8998 20.2082 17.8833 20.2176 17.8673 20.2277L17.8672 20.2278ZM22.7768 28.5325C22.7883 28.5657 22.8062 28.5963 22.8295 28.6226C22.8528 28.6489 22.8811 28.6703 22.9127 28.6856L26.1934 30.2587C26.2259 30.2739 26.261 30.2826 26.2969 30.2842C26.3327 30.2858 26.3685 30.2804 26.4022 30.2681C26.4691 30.245 26.5241 30.1962 26.5552 30.1326L26.7023 29.8255C26.7095 29.808 26.7176 29.7906 26.7266 29.7735L26.7329 29.762L27.8434 27.4457C27.8461 27.4388 27.8489 27.432 27.8518 27.4251C27.8611 27.4034 27.8718 27.3822 27.8837 27.3618L28.0995 26.9116C28.1148 26.8792 28.1234 26.844 28.1251 26.8082C28.1267 26.7723 28.1212 26.7365 28.109 26.7028C28.0975 26.6696 28.0796 26.639 28.0563 26.6127C28.033 26.5864 28.0047 26.565 27.973 26.5497L24.6924 24.9766C24.66 24.9613 24.6248 24.9527 24.589 24.951C24.5532 24.9494 24.5174 24.9549 24.4837 24.9671C24.4504 24.9786 24.4198 24.9965 24.3935 25.0198C24.3672 25.0431 24.3458 25.0714 24.3305 25.103L22.7863 28.3236C22.7711 28.3561 22.7624 28.3912 22.7608 28.4271C22.7592 28.4629 22.7646 28.4987 22.7769 28.5324L22.7768 28.5325ZM25.5309 31.2223L25.2318 31.8462L22.2781 30.4299L22.5773 29.8063L25.5309 31.2225V31.2223ZM25.3548 24.013L25.654 23.3891L28.6077 24.8054L28.3085 25.4293L25.3549 24.0133L25.3548 24.013ZM27.7638 21.4961C27.7304 21.4837 27.6981 21.4683 27.6675 21.4499L25.9366 20.6202C25.9119 20.611 25.8878 20.6002 25.8646 20.5877C25.8212 20.5743 25.7746 20.5754 25.7318 20.5909C25.6901 20.6053 25.6542 20.633 25.6298 20.6697C25.6194 20.6942 25.6073 20.718 25.5936 20.7409L25.1605 21.6442C25.149 21.6688 25.1426 21.6954 25.1414 21.7224C25.1403 21.7495 25.1445 21.7765 25.1538 21.802C25.1623 21.8269 25.1757 21.8499 25.1931 21.8696C25.2105 21.8893 25.2317 21.9055 25.2553 21.917L29.6273 24.0134L30.0039 24.1939C30.0285 24.2054 30.055 24.2118 30.0821 24.213C30.1092 24.2141 30.1362 24.2099 30.1616 24.2006C30.1866 24.1921 30.2096 24.1787 30.2293 24.1613C30.2491 24.1439 30.2652 24.1227 30.2768 24.0991L30.733 23.1477C30.7444 23.1231 30.7509 23.0965 30.7521 23.0694C30.7532 23.0423 30.749 23.0153 30.7397 22.9898C30.7312 22.9649 30.7178 22.9419 30.7004 22.9222C30.6829 22.9025 30.6618 22.8863 30.6381 22.8748L27.7638 21.4966V21.4961ZM28.1956 29.8945L28.0003 29.791L28.6648 28.405C29.4218 28.7276 30.1793 29.049 30.9373 29.3691C33.1996 30.3263 35.413 31.2629 37.3613 32.1973C37.6161 32.32 37.8136 32.5365 37.9126 32.8015C38.0116 33.0664 38.0044 33.3594 37.8925 33.6191C37.8783 33.6439 37.8659 33.6698 37.8555 33.6964C37.7263 33.9398 37.5103 34.1257 37.2503 34.2171C36.9904 34.3085 36.7056 34.2987 36.4525 34.1897C36.425 34.1739 36.3963 34.1604 36.3666 34.1493C34.3988 33.204 32.2872 32.0766 30.1357 30.928C29.497 30.587 28.8549 30.2442 28.2763 29.937C28.2507 29.9208 28.2239 29.9066 28.1961 29.8945H28.1956ZM27.3851 7.67789V20.0335L26.3886 19.5557H26.3878C26.0629 19.4004 25.6896 19.3802 25.3498 19.4997C25.01 19.6192 24.7315 19.8685 24.5753 20.1931L24.1184 21.1462C23.9748 21.4464 23.9463 21.7888 24.0381 22.1086C24.1299 22.4284 24.3357 22.7035 24.6166 22.8819L24.1471 23.8613C24.1324 23.8659 24.1178 23.8708 24.1033 23.8759C23.9261 23.9378 23.763 24.0342 23.6232 24.1594C23.4833 24.2846 23.3696 24.4361 23.2885 24.6054L21.7443 27.8259C21.6633 27.9944 21.6164 28.1773 21.6062 28.3639C21.596 28.5506 21.6228 28.7375 21.6851 28.9138C21.6905 28.9294 21.6963 28.9448 21.7023 28.9601L21.2327 29.9395C20.9175 29.8322 20.5739 29.844 20.2669 29.9729C19.9599 30.1018 19.7109 30.3387 19.5668 30.6389L19.1105 31.5904C18.955 31.9156 18.935 32.2893 19.0547 32.6294C19.1745 32.9694 19.4244 33.248 19.7495 33.4039L24.4501 35.6578C24.4855 35.679 24.523 35.6964 24.5621 35.7095C24.8725 35.8387 25.2198 35.8485 25.5369 35.7368C25.8541 35.6252 26.1187 35.4001 26.2797 35.1049C26.302 35.07 26.3206 35.0328 26.3349 34.9939L26.768 34.0905C26.9116 33.7904 26.9401 33.448 26.8483 33.1281C26.7565 32.8083 26.5507 32.5332 26.2698 32.3548L26.7394 31.3755C26.754 31.3709 26.7686 31.3659 26.7831 31.3609C27.0155 31.2792 27.2229 31.1391 27.3853 30.9539V37.819H2.01937V2.18156H22.2218V7.09789C22.2218 7.25172 22.2829 7.39924 22.3917 7.50801C22.5004 7.61678 22.648 7.67789 22.8018 7.67789H27.3851ZM23.382 3.06398V6.51789H26.6265L23.382 3.06398ZM22.8003 1.02148H22.8357L22.8441 1.02203H22.8495L22.8573 1.02281L22.8638 1.02344L22.8723 1.02445L22.877 1.025L22.8869 1.02633L22.892 1.02719H22.8928L22.9006 1.02852L22.906 1.02953L22.9128 1.03078L22.9215 1.03258L22.9293 1.0343L22.9314 1.03477H22.932L22.9434 1.03758L22.9471 1.03852L22.9577 1.04141L22.9609 1.04227L22.9716 1.04547L22.9755 1.04672L22.9841 1.04945L22.9864 1.05023L22.9884 1.05094L22.9977 1.05422L22.9998 1.05492L23.0016 1.05555L23.0106 1.05898L23.0154 1.06086L23.0165 1.06133L23.0239 1.06437H23.0246L23.0295 1.06641L23.0313 1.06719L23.0385 1.07039L23.0423 1.07211L23.0491 1.07531L23.0536 1.0775L23.0623 1.0818L23.0663 1.08391L23.0672 1.0843L23.0742 1.08797L23.0748 1.08836L23.0801 1.09117L23.0812 1.0918L23.088 1.0957L23.0916 1.09773L23.0988 1.10195L23.1011 1.10336H23.1017L23.1084 1.1075L23.1097 1.10836L23.1146 1.11148H23.1151L23.1216 1.11586L23.1226 1.11648L23.1269 1.11938L23.1282 1.12031L23.1347 1.12477L23.1361 1.12578L23.138 1.12711L23.1448 1.13211L23.1504 1.13633L23.1559 1.14063L23.1595 1.14336L23.1657 1.14828L23.1669 1.14922L23.1713 1.15305L23.1774 1.15813L23.182 1.16211L23.1833 1.16328L23.1891 1.16852L23.1921 1.17125L23.1975 1.17625L23.2007 1.17922L23.2063 1.18477L23.2073 1.1857L23.2114 1.18977L23.2119 1.19031L23.2174 1.19594L23.2211 1.19984L23.2224 1.20125L23.2278 1.20703L23.2305 1.21008L23.2352 1.21531L23.2416 1.22313L23.2441 1.22602L23.2481 1.23094L28.3836 6.69774C28.4847 6.80496 28.541 6.94683 28.5408 7.09422H28.5422V20.5864L31.1338 21.8286C31.4589 21.9846 31.7087 22.2631 31.8285 22.6032C31.9483 22.9432 31.9283 23.3169 31.7727 23.6422L31.3165 24.5937C31.1724 24.8938 30.9233 25.1308 30.6164 25.2597C30.3094 25.3885 29.9658 25.4004 29.6506 25.293L29.181 26.2725C29.187 26.2881 29.1927 26.3033 29.1982 26.3188C29.3174 26.6565 29.3046 27.0268 29.1623 27.3555C30.0411 27.7327 30.7149 28.0179 31.383 28.3008C33.6565 29.2628 35.8811 30.204 37.857 31.1514C38.1236 31.279 38.3625 31.4579 38.56 31.6778C38.7574 31.8978 38.9096 32.1545 39.0078 32.4333C39.1059 32.7122 39.1482 33.0076 39.1321 33.3028C39.116 33.5979 39.0419 33.887 38.914 34.1535L38.9132 34.1551C38.7855 34.4215 38.6066 34.6601 38.3866 34.8574C38.1666 35.0546 37.91 35.2066 37.6313 35.3046C37.3525 35.4026 37.0573 35.4448 36.7623 35.4287C36.4673 35.4125 36.1783 35.3385 35.912 35.2106H35.9112C33.9027 34.2476 31.7662 33.1069 29.5889 31.9445C29.2463 31.7616 28.9026 31.578 28.542 31.3863V38.3984C28.542 38.5523 28.4809 38.6998 28.3722 38.8086C28.2634 38.9173 28.1159 38.9784 27.962 38.9784H1.43937C1.28555 38.9784 1.13802 38.9173 1.02925 38.8086C0.920482 38.6998 0.859375 38.5523 0.859375 38.3984V1.60156C0.859375 1.44774 0.920482 1.30021 1.02925 1.19144C1.13802 1.08267 1.28555 1.02156 1.43937 1.02156L22.8003 1.02148ZM5.34344 35.0023H17.588C17.7406 35.0006 17.8865 34.9387 17.9938 34.8301C18.1011 34.7215 18.1613 34.575 18.1613 34.4223C18.1613 34.2696 18.1011 34.1231 17.9938 34.0145C17.8865 33.9059 17.7406 33.844 17.588 33.8423H5.34344C5.19077 33.844 5.04495 33.9059 4.93762 34.0145C4.83029 34.1231 4.77009 34.2696 4.77009 34.4223C4.77009 34.575 4.83029 34.7215 4.93762 34.8301C5.04495 34.9387 5.19077 35.0006 5.34344 35.0023ZM5.34344 31.0931H17.588C17.7418 31.0931 17.8893 31.032 17.9981 30.9232C18.1069 30.8145 18.168 30.667 18.168 30.5131C18.168 30.3593 18.1069 30.2118 17.9981 30.103C17.8893 29.9942 17.7418 29.9331 17.588 29.9331H5.34344C5.18961 29.9331 5.04209 29.9942 4.93332 30.103C4.82454 30.2118 4.76344 30.3593 4.76344 30.5131C4.76344 30.667 4.82454 30.8145 4.93332 30.9232C5.04209 31.032 5.18961 31.0931 5.34344 31.0931Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Regulatory Compliance", "richtext": "<p>Ensure full compliance with European waste regulations, ISO standards, and industry-specific requirements.</p>\\n<ul>\\n<li>Legal framework guidance</li>\\n<li>Documentation support</li>\\n<li>Certification assistance</li>\\n<li>Audit preparation</li>\\n</ul>"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M16.3156 26.0508C17.3391 26.0195 17.3414 24.5227 16.3156 24.4961C15.2906 24.5219 15.2906 26.025 16.3156 26.0508Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M34.938 28.4816C34.6755 28.1543 34.2256 28.0628 33.8623 28.2378L32.7701 26.8746C35.424 23.8722 34.656 18.855 31.1873 16.7847V7.63707C31.1873 7.08941 30.9748 6.57378 30.5873 6.18628C30.1998 5.79878 29.6857 5.58628 29.1381 5.58628C29.1381 5.5855 3.49743 5.58628 3.49664 5.58628C2.36539 5.58628 1.44508 6.50738 1.44586 7.63707C1.4443 9.10894 1.44664 24.7136 1.44586 25.6503C1.44821 26.78 2.36696 27.698 3.49508 27.698C3.49664 27.7003 12.4349 27.6957 12.4373 27.698V29.0066C12.4373 29.3363 12.2912 29.6449 12.0373 29.855C12.0271 29.8753 10.324 31.1128 10.3107 31.1324C9.96774 31.4488 10.1146 31.8636 10.1318 32.2308C10.1224 32.7183 10.5529 33.1488 11.0404 33.1386H21.3646C21.8591 33.1347 22.2631 32.7285 22.2662 32.2332C22.3006 31.8503 22.3935 31.3761 22.0896 31.1339C22.0881 31.1144 20.3685 29.8746 20.3607 29.8558C20.2355 29.7523 20.1348 29.6223 20.0659 29.4752C19.997 29.3281 19.9616 29.1675 19.9623 29.005V27.6972H23.3279C25.3521 29.4238 28.4256 29.7488 30.7701 28.4793L31.8607 29.841C31.6068 30.1503 31.606 30.6347 31.8638 30.9433L35.5865 35.5918C36.2318 36.4308 37.5396 36.573 38.3545 35.8972C39.2013 35.2183 39.3388 33.9769 38.6599 33.1293L34.938 28.4824V28.4816ZM32.5779 29.2355L31.5732 27.9808C31.7591 27.848 31.9404 27.7027 32.1107 27.5503L33.1162 28.805L32.5787 29.2355H32.5779ZM2.38414 7.63628C2.38414 7.023 2.88336 6.52378 3.49899 6.523H29.1381C29.4349 6.523 29.7146 6.63863 29.9248 6.84878C30.1349 7.05894 30.2505 7.33863 30.2505 7.63628V16.3003C29.8527 16.1328 29.4396 16.0041 29.017 15.916V8.05113C29.017 7.92691 28.9677 7.80738 28.8795 7.71988C28.836 7.67623 28.7844 7.64161 28.7276 7.61802C28.6707 7.59442 28.6098 7.5823 28.5482 7.58238H4.08805C3.83727 7.57847 3.61383 7.79957 3.6193 8.05191V21.3214C3.6193 21.58 3.82946 21.7902 4.08805 21.7902H20.9318C20.8935 22.1433 20.8834 22.498 20.9006 22.8519H2.38414V7.63628ZM21.1029 20.8535H4.55758V8.52144H28.0802V15.7878C24.9279 15.5293 21.8287 17.7722 21.1037 20.8535H21.1029ZM3.49899 26.7597C2.88571 26.7605 2.38571 26.2621 2.38414 25.6457V23.7886H21.0162C21.2256 24.873 21.6982 25.8964 22.4021 26.7597C17.1959 26.7566 8.7568 26.7597 3.49899 26.7597ZM21.3685 31.7644C21.3599 31.9214 21.3357 32.0683 21.3295 32.1996H11.0693C11.0638 32.0738 11.0365 31.9003 11.0302 31.7644C13.0568 30.2097 13.4841 30.4535 13.3756 27.6964H19.0248C18.9154 30.4558 19.3459 30.2144 21.3685 31.7644ZM23.8084 26.8753C22.2724 25.548 21.5349 23.398 21.9373 21.4105C22.6013 17.5878 27.1506 15.4918 30.4888 17.4597C33.756 19.23 34.442 23.9457 31.792 26.5597C29.7123 28.7543 26.0576 28.891 23.8091 26.8753H23.8084ZM37.7685 35.1644C37.3427 35.5199 36.656 35.4433 36.3185 35.0043L32.6287 30.3964L34.2388 29.1066L37.9287 33.7136C38.2841 34.1582 38.2123 34.8082 37.7693 35.1636L37.7685 35.1644Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M31.4745 20.6089C31.7503 21.1573 32.5847 20.7417 32.3144 20.1925C31.1183 17.6558 27.805 16.537 25.319 17.8354C24.7729 18.1183 25.1769 18.9394 25.7355 18.6753C26.5878 18.2526 27.5308 18.1261 28.462 18.3104C29.755 18.5597 30.8933 19.4214 31.4745 20.6097V20.6089ZM23.7581 14.687C23.7581 14.4284 23.5479 14.2183 23.2894 14.2183H20.2433C20.0347 14.2183 19.8511 14.3558 19.7933 14.5565L19.4472 15.7456L18.1417 11.0862C18.0315 10.637 17.3448 10.6394 17.2378 11.0901L16.3878 14.2198C16.3269 14.244 12.6612 14.1519 12.755 14.2948C12.6589 14.3558 12.5886 14.4534 12.5573 14.562L11.8597 17.0519L9.81357 9.74951C9.70342 9.30264 9.02061 9.30186 8.91123 9.74951L7.65889 14.2198H5.93076C5.31514 14.23 5.31436 15.1472 5.93076 15.1573H8.01436C8.22451 15.1573 8.40889 15.0175 8.46592 14.8151L9.36279 11.6136L11.4089 18.9159C11.519 19.3628 12.2019 19.3636 12.3112 18.9159L13.3644 15.1565H16.7472C16.9589 15.1565 17.144 15.0144 17.1995 14.8104L17.6979 12.9745L18.9878 17.5784C19.0154 17.6769 19.0745 17.7637 19.156 17.8255C19.2375 17.8873 19.3371 17.9207 19.4394 17.9206C19.6479 17.9206 19.8315 17.7831 19.8894 17.5831L20.5956 15.1558H23.2894C23.5479 15.1558 23.7581 14.9456 23.7581 14.687Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Continuous Monitoring", "richtext": "<p>Ongoing performance tracking, optimization recommendations, and adaptive strategies to maximize results.</p>\\n<ul>\\n<li>Real-time dashboards</li>\\n<li>Monthly reports</li>\\n<li>Performance metrics</li>\\n<li>Improvement recommendations</li>\\n</ul>"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M39.1693 23.332C39.1693 21.3191 37.9709 19.5845 36.2526 18.7924V18.332C36.2526 9.37162 28.963 2.08203 20.0026 2.08203C11.0422 2.08203 3.7526 9.37162 3.7526 18.332V18.7924C2.03427 19.5845 0.835938 21.3195 0.835938 23.332C0.835938 26.0891 3.07885 28.332 5.83594 28.332H7.5026C7.72362 28.332 7.93558 28.2442 8.09186 28.088C8.24814 27.9317 8.33594 27.7197 8.33594 27.4987V19.1654C8.33594 18.9444 8.24814 18.7324 8.09186 18.5761C7.93558 18.4198 7.72362 18.332 7.5026 18.332H5.83594C5.6951 18.332 5.55677 18.3416 5.41927 18.3529V18.332C5.41927 10.2908 11.9614 3.7487 20.0026 3.7487C28.0439 3.7487 34.5859 10.2908 34.5859 18.332V18.3529C34.4484 18.3416 34.3101 18.332 34.1693 18.332H32.5026C32.2816 18.332 32.0696 18.4198 31.9133 18.5761C31.7571 18.7324 31.6693 18.9444 31.6693 19.1654V27.4987C31.6693 27.7197 31.7571 27.9317 31.9133 28.088C32.0696 28.2442 32.2816 28.332 32.5026 28.332H34.1693C34.3101 28.332 34.4484 28.3224 34.5859 28.3112V29.582C34.5859 32.3391 32.343 34.582 29.5859 34.582H23.3359C23.3359 33.6629 22.5884 32.9154 21.6693 32.9154H17.5026C16.5834 32.9154 15.8359 33.6629 15.8359 34.582V36.2487C15.8359 37.1679 16.5834 37.9154 17.5026 37.9154H21.6693C22.5884 37.9154 23.3359 37.1679 23.3359 36.2487H29.5859C33.2618 36.2487 36.2526 33.2579 36.2526 29.582V27.8716C37.9709 27.0795 39.1693 25.3449 39.1693 23.332ZM6.66927 19.9987V26.6654H5.83594C3.99802 26.6654 2.5026 25.1699 2.5026 23.332C2.5026 21.4941 3.99802 19.9987 5.83594 19.9987H6.66927ZM17.5026 36.2487V34.582H21.6693L21.6697 35.4095L21.6693 35.4154L21.6697 35.4216L21.6705 36.2487H17.5026ZM34.1693 26.6654H33.3359V19.9987H34.1693C36.0072 19.9987 37.5026 21.4941 37.5026 23.332C37.5026 25.1699 36.0072 26.6654 34.1693 26.6654ZM20.0026 28.7487C25.0568 28.7487 29.1693 24.6362 29.1693 19.582C29.1693 14.5279 25.0568 10.4154 20.0026 10.4154C14.9484 10.4154 10.8359 14.5279 10.8359 19.582C10.8359 21.2174 11.2743 22.8154 12.1068 24.2262L11.2676 28.5916C11.2391 28.7404 11.2516 28.8941 11.3039 29.0363C11.3562 29.1785 11.4462 29.3037 11.5644 29.3985C11.6825 29.4933 11.8242 29.5542 11.9744 29.5745C12.1245 29.5948 12.2773 29.5737 12.4164 29.5137L16.158 27.8987C17.3616 28.4609 18.6742 28.7511 20.0026 28.7487ZM13.2018 27.3595L13.8043 24.2229C13.8445 24.0132 13.8028 23.796 13.6876 23.6162C12.9143 22.4128 12.503 21.0125 12.5026 19.582C12.5026 15.4466 15.8672 12.082 20.0026 12.082C24.138 12.082 27.5026 15.4466 27.5026 19.582C27.5026 23.7174 24.138 27.082 20.0026 27.082C18.7976 27.082 17.6405 26.7991 16.563 26.2416C16.4534 26.1848 16.3326 26.153 16.2092 26.1487C16.0858 26.1444 15.963 26.1676 15.8497 26.2166L13.2018 27.3595ZM20.0026 22.082H15.8359C15.6149 22.082 15.403 21.9942 15.2467 21.838C15.0904 21.6817 15.0026 21.4697 15.0026 21.2487C15.0026 21.0277 15.0904 20.8157 15.2467 20.6594C15.403 20.5032 15.6149 20.4154 15.8359 20.4154H20.0026C20.2236 20.4154 20.4356 20.5032 20.5919 20.6594C20.7481 20.8157 20.8359 21.0277 20.8359 21.2487C20.8359 21.4697 20.7481 21.6817 20.5919 21.838C20.4356 21.9942 20.2236 22.082 20.0026 22.082ZM15.0026 17.9154C15.0026 17.6944 15.0904 17.4824 15.2467 17.3261C15.403 17.1698 15.6149 17.082 15.8359 17.082H24.1693C24.3903 17.082 24.6022 17.1698 24.7585 17.3261C24.9148 17.4824 25.0026 17.6944 25.0026 17.9154C25.0026 18.1364 24.9148 18.3483 24.7585 18.5046C24.6022 18.6609 24.3903 18.7487 24.1693 18.7487H15.8359C15.6149 18.7487 15.403 18.6609 15.2467 18.5046C15.0904 18.3483 15.0026 18.1364 15.0026 17.9154Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Training & Support", "richtext": "<p>Empower your team with knowledge and best practices for sustainable waste management operations.</p>\\n<ul>\\n<li>Staff training programs</li>\\n<li>Best practices workshops</li>\\n<li>Technical support</li>\\n<li>Change management</li>\\n</ul>"}]}, "title": "Comprehensive Waste  Management Services", "description": "End-to-end solutions designed for large enterprises seeking to maximize resource valorization while ensuring full regulatory compliance"}]}	2026-03-03 13:52:40.026+01	2026-03-03 14:00:18.884+01	\N
01KJY55BG09DJ6K8XGT4CXYZV0	01KJSJKPXQ3D5D5PMK5487RFK5	{"items": [{"title": "Documents & Requirements", "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/Short_Page_banner_img_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_banner_img_Desktop.png"}]}, "description": "Choose your profile type to start valorizing organic resources"}]}	2026-03-05 05:47:41.056+01	2026-03-05 05:57:34.934+01	\N
01KJ4PT97PF8115T09Q2KJJMC3	01KJ4MR5M4ZKX8GHG3HPG2CDYF	{"svg": "<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"10\\" height=\\"22\\" viewBox=\\"0 0 10 22\\" fill=\\"none\\">\\n<path d=\\"M2.55277 22V11.677H0V7.96017H2.55277V4.78555C2.55277 2.2909 4.0607 0 7.53529 0C8.9421 0 9.98237 0.14421 9.98237 0.14421L9.9004 3.61506C9.9004 3.61506 8.83949 3.60402 7.68178 3.60402C6.42879 3.60402 6.22804 4.22145 6.22804 5.24623V7.96017H10L9.83588 11.677H6.22804V22H2.55277Z\\" fill=\\"white\\"/>\\n</svg>", "link": "/facebook", "name": "Facebook", "items": [{"svg": "<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"10\\" height=\\"22\\" viewBox=\\"0 0 10 22\\" fill=\\"none\\">\\n<path d=\\"M2.55277 22V11.677H0V7.96017H2.55277V4.78555C2.55277 2.2909 4.0607 0 7.53529 0C8.9421 0 9.98237 0.14421 9.98237 0.14421L9.9004 3.61506C9.9004 3.61506 8.83949 3.60402 7.68178 3.60402C6.42879 3.60402 6.22804 4.22145 6.22804 5.24623V7.96017H10L9.83588 11.677H6.22804V22H2.55277Z\\" fill=\\"white\\"/>\\n</svg>", "link": "/facebook", "name": "Facebook"}, {"svg": "<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"22\\" height=\\"22\\" viewBox=\\"0 0 22 22\\" fill=\\"none\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M6.465 0.066C7.638 0.012 8.012 0 11 0C13.988 0 14.362 0.013 15.534 0.066C16.706 0.119 17.506 0.306 18.206 0.577C18.939 0.854 19.604 1.287 20.154 1.847C20.714 2.396 21.146 3.06 21.422 3.794C21.694 4.494 21.88 5.294 21.934 6.464C21.988 7.639 22 8.013 22 11C22 13.988 21.987 14.362 21.934 15.535C21.881 16.705 21.694 17.505 21.422 18.205C21.146 18.9391 20.7133 19.6042 20.154 20.154C19.604 20.714 18.939 21.146 18.206 21.422C17.506 21.694 16.706 21.88 15.536 21.934C14.362 21.988 13.988 22 11 22C8.012 22 7.638 21.987 6.465 21.934C5.295 21.881 4.495 21.694 3.795 21.422C3.06092 21.146 2.39582 20.7133 1.846 20.154C1.28638 19.6047 0.853315 18.9399 0.577 18.206C0.306 17.506 0.12 16.706 0.066 15.536C0.012 14.361 0 13.987 0 11C0 8.012 0.013 7.638 0.066 6.466C0.119 5.294 0.306 4.494 0.577 3.794C0.853723 3.06008 1.28712 2.39531 1.847 1.846C2.39604 1.2865 3.06047 0.853443 3.794 0.577C4.494 0.306 5.294 0.12 6.464 0.066H6.465ZM15.445 2.046C14.285 1.993 13.937 1.982 11 1.982C8.063 1.982 7.715 1.993 6.555 2.046C5.482 2.095 4.9 2.274 4.512 2.425C3.999 2.625 3.632 2.862 3.247 3.247C2.88205 3.60205 2.60118 4.03428 2.425 4.512C2.274 4.9 2.095 5.482 2.046 6.555C1.993 7.715 1.982 8.063 1.982 11C1.982 13.937 1.993 14.285 2.046 15.445C2.095 16.518 2.274 17.1 2.425 17.488C2.601 17.965 2.882 18.398 3.247 18.753C3.602 19.118 4.035 19.399 4.512 19.575C4.9 19.726 5.482 19.905 6.555 19.954C7.715 20.007 8.062 20.018 11 20.018C13.938 20.018 14.285 20.007 15.445 19.954C16.518 19.905 17.1 19.726 17.488 19.575C18.001 19.375 18.368 19.138 18.753 18.753C19.118 18.398 19.399 17.965 19.575 17.488C19.726 17.1 19.905 16.518 19.954 15.445C20.007 14.285 20.018 13.937 20.018 11C20.018 8.063 20.007 7.715 19.954 6.555C19.905 5.482 19.726 4.9 19.575 4.512C19.375 3.999 19.138 3.632 18.753 3.247C18.3979 2.88207 17.9657 2.60121 17.488 2.425C17.1 2.274 16.518 2.095 15.445 2.046ZM9.595 14.391C10.3797 14.7176 11.2534 14.7617 12.0669 14.5157C12.8805 14.2697 13.5834 13.7489 14.0556 13.0422C14.5278 12.3356 14.7401 11.4869 14.656 10.6411C14.572 9.79534 14.197 9.00497 13.595 8.405C13.2112 8.02148 12.7472 7.72781 12.2363 7.54515C11.7255 7.36248 11.1804 7.29536 10.6405 7.34862C10.1006 7.40187 9.57915 7.57418 9.1138 7.85313C8.64845 8.13208 8.25074 8.51074 7.9493 8.96185C7.64786 9.41296 7.45019 9.92529 7.37052 10.462C7.29084 10.9986 7.33115 11.5463 7.48854 12.0655C7.64593 12.5847 7.91648 13.0626 8.28072 13.4647C8.64496 13.8668 9.09382 14.1832 9.595 14.391ZM7.002 7.002C7.52702 6.47697 8.15032 6.0605 8.8363 5.77636C9.52228 5.49222 10.2575 5.34597 11 5.34597C11.7425 5.34597 12.4777 5.49222 13.1637 5.77636C13.8497 6.0605 14.473 6.47697 14.998 7.002C15.523 7.52702 15.9395 8.15032 16.2236 8.8363C16.5078 9.52228 16.654 10.2575 16.654 11C16.654 11.7425 16.5078 12.4777 16.2236 13.1637C15.9395 13.8497 15.523 14.473 14.998 14.998C13.9377 16.0583 12.4995 16.654 11 16.654C9.50046 16.654 8.06234 16.0583 7.002 14.998C5.94166 13.9377 5.34597 12.4995 5.34597 11C5.34597 9.50046 5.94166 8.06234 7.002 7.002ZM17.908 6.188C18.0381 6.06527 18.1423 5.91768 18.2143 5.75397C18.2863 5.59027 18.3248 5.41377 18.3274 5.23493C18.33 5.05609 18.2967 4.87855 18.2295 4.71281C18.1622 4.54707 18.0624 4.39651 17.936 4.27004C17.8095 4.14357 17.6589 4.04376 17.4932 3.97652C17.3275 3.90928 17.1499 3.87598 16.9711 3.87858C16.7922 3.88119 16.6157 3.91965 16.452 3.9917C16.2883 4.06374 16.1407 4.1679 16.018 4.298C15.7793 4.55103 15.6486 4.88712 15.6537 5.23493C15.6588 5.58274 15.7992 5.91488 16.0452 6.16084C16.2911 6.40681 16.6233 6.54723 16.9711 6.5523C17.3189 6.55737 17.655 6.42669 17.908 6.188Z\\" fill=\\"white\\"/>\\n</svg>", "link": "/instagram", "name": "Instagram"}, {"svg": "<svg xmlns=\\"http://www.w3.org/2000/svg\\" width=\\"20\\" height=\\"20\\" viewBox=\\"0 0 20 20\\" fill=\\"none\\">\\n<path d=\\"M11.9027 8.46863L19.3482 0H17.5838L11.1189 7.3532L5.95547 0H0L7.8082 11.1193L0 20H1.76443L8.59152 12.2348L14.0445 20H20L11.9023 8.46863H11.9027ZM9.48608 11.2173L8.69495 10.1101L2.40018 1.29967H5.11025L10.1902 8.40994L10.9813 9.51718L17.5847 18.7594H14.8746L9.48608 11.2177V11.2173Z\\" fill=\\"white\\"/>\\n</svg>", "link": "/twitter", "name": "Twitter"}]}	2026-02-23 08:35:57.43+01	2026-02-26 12:35:26.269+01	\N
01KJCW0B94TSR3B5Q0SCS1EE9D	01KJ4ME13788FKSG104Z7VMF4M	{"items": [{"link": "/marketplace", "name": "Marketplace"}, {"link": "/services", "name": "Services"}, {"link": "/about-us", "name": "About Us"}, {"link": "/contact-us", "name": "Contact Us"}]}	2026-02-26 12:40:34.468+01	2026-02-26 12:43:51.702+01	\N
01KJPN9F9BTG347JDCSD80K13T	01KJPN8G0ZANRHDN5BK7S70FSY	{"items": [{"html_text": "<p>Last updated: June 24, 2025</p>\\n<ol>\\n<li>General Information<br>BIOMKET is a platform operated by CAINMANI RESOURCES S.L., CIF B72990377, with registered office at Calle San Telmo, 67, 28016, Madrid, registered in the corresponding Mercantile Registry. These Terms and Conditions govern the use of the www.biomket.com platform (hereinafter, \\"the Platform\\") and the contractual relationship between BIOMKET and registered users (hereinafter, \\"Users\\") involved in transactions for the sale and purchase of non-hazardous organic waste.<br><br></li>\\n<li>Nature of the Service<br>BIOMKET acts as a digital intermediary and temporary custodian of funds. The purchase contract is entered into directly between the buyer and the seller. BIOMKET does not acquire, store, transport, or take ownership of the waste listed on the Platform.<br><br></li>\\n<li>User Registration<br>Full access to services requires prior registration. Users must provide truthful and up-to-date information. They may register as individuals or legal entities and are responsible for the use and custody of their credentials.<br><br></li>\\n<li>Permitted Use and Content Publication<br>Users agree to use the Platform in accordance with applicable regulations. It is prohibited to publish false information, illegal products, or to contact others outside the Platform to avoid commissions. BIOMKET may suspend accounts or remove content in the event of non-compliance.<br><br></li>\\n<li>Transaction Process and Fund Custody<br>BIOMKET implements a temporary fund custody system to protect both parties in the transaction. The process is structured as follows:<br><br>The buyer makes payment through the Platform. <br>BIOMKET retains the amount without taking ownership of the funds. <br>The buyer has 48 hours after delivery to confirm compliance. <br>After that period without claims, payment is released to the seller. <br>In case of a claim, the mechanism in clause 6 is activated. <br>BIOMKET does not guarantee the quality of the waste or the fulfillment of the contract between the parties.<br><br></li>\\n<li>Claims Management and Incident Resolution<br>Incidents will be resolved based on a technical, non-interpretative protocol:<br><br>Notification: The buyer must report non-compliance within 48 hours after delivery. <br>Evidence: Visual proof, delivery notes, and supporting documentation must be provided. <br>Dialogue phase: BIOMKET will enable a private channel for 72 hours. <br>Automatic result: <br>a) If the seller does not respond: BIOMKET may cancel the payment. <br>b) If the buyer fails to provide valid evidence: the payment will be released to the seller. <br>c) If there is evidence and no resolution, BIOMKET will refund the buyer. <br>BIOMKET does not act as a judge, arbitrator, or party. Its role is limited to executing objective steps.<br><br></li>\\n<li>Third-Party Managed Logistics<br>BIOMKET may connect Users with logistics providers. It does not intervene in or guarantee transportation. Any relationship is established between the User and the operator, including costs, insurance, and legal compliance. BIOMKET is not responsible for losses, damages, or failures by the carrier.<br><br></li>\\n<li>Fees and Commissions<br>BIOMKET will apply a commission on each successfully completed transaction. Fees will be communicated in advance. Continued use implies acceptance.<br><br></li>\\n<li>Invoicing<br>The seller is responsible for invoicing the waste. BIOMKET will issue an invoice only for its services as a digital intermediary.<br><br></li>\\n<li>Intellectual Property Rights<br>All content on the Platform, including software, logos, texts, and design, is the property of BIOMKET or its licensors. Unauthorized use is prohibited.<br><br></li>\\n<li>Suspension and Account Termination<br>BIOMKET may suspend or cancel access for fraud, commission evasion, legal violations, or misuse. The User may request deactivation at any time.<br><br></li>\\n<li>Limitation of Liability<br>BIOMKET will not be liable for:<br><br>The quality, legality, or compliance of the waste. <br>Failures in payment or contract execution between Users. <br>Economic losses or business interruptions. <br>Technical failures, cyberattacks, or third-party errors. <br>BIOMKET&rsquo;s maximum liability, for any cause, is limited to the amount of its commission on the affected transaction.<br><br></li>\\n<li>Legal Compliance on Waste Management<br>Users agree to comply with Law 7/2022 and Royal Decree 553/2020. This includes LER coding, transfer documentation (Contract, Prior Notification, and Identification Document), and NIMA licenses. BIOMKET does not verify this information or assume responsibility for its validity.<br><br></li>\\n<li>Modifications<br>BIOMKET may update these Terms. Changes will be communicated through the Platform and will be deemed accepted with continued use.<br><br></li>\\n<li>Governing Law and Jurisdiction<br>These Terms are governed by Spanish law. Any dispute will be submitted to the Courts of Madrid, unless the parties expressly agree to institutional arbitration.</li>\\n</ol>"}]}	2026-03-02 07:55:37.771+01	2026-03-02 08:11:10.137+01	\N
01KJPZ36JD848H5W9R7B3BFRF1	01KJPYWH0G5C03G5B5K6CEDXHH	{"items": [{"title": "Required documents"}, {"title": "Explanation of key documents"}, {"title": "Environmental platforms", "richtext": "<p>Most <strong>documents</strong> must be processed electronically through the official platforms. Here is the direct access link by region:</p>\\n<ol>\\n<li><a href=\\"https://servicio.mapama.gob.es/esir-web-adv/\\" target=\\"_blank\\" rel=\\"noopener\\">https://servicio.mapama.gob.es/esir-web-adv/</a></li>\\n<li><a href=\\"https://mediambient.gva.es/es/web/calidad-ambiental/portal-adcr\\" target=\\"_blank\\" rel=\\"noopener\\">https://mediambient.gva.es/es/web/calidad-ambiental/portal-adcr</a></li>\\n<li><a href=\\"https://www.juntadeandalucia.es/medioambiente/sira-obligaciones/login?updateSelection=false\\" target=\\"_blank\\" rel=\\"noopener\\">https://www.juntadeandalucia.es/medioambiente/sira-obligaciones/login?updateSelection=false</a></li>\\n<li><a href=\\"https://gaia.xunta.es/plataforma/\\" target=\\"_blank\\" rel=\\"noopener\\">https://gaia.xunta.es/plataforma/</a></li>\\n<li><a href=\\"https://servicios.jcyl.es/gaser/login.action\\" target=\\"_blank\\" rel=\\"noopener\\">https://servicios.jcyl.es/gaser/login.action</a></li>\\n<li><a href=\\"https://apps.euskadi.eus/r49-20878x/es/s99aSeguridadWar/comunJSP/s99ainicio.do\\" target=\\"_blank\\" rel=\\"noopener\\">https://apps.euskadi.eus/r49-20878x/es/s99aSeguridadWar/comunJSP/s99ainicio.do</a></li>\\n<li><a href=\\"https://sdr.arc.cat/sdr/GetLogin.do\\" target=\\"_blank\\" rel=\\"noopener\\">https://sdr.arc.cat/sdr/GetLogin.do</a></li>\\n<li><a href=\\"https://www.aragon.es/-/instituto-aragones-de-gestion-ambiental\\" target=\\"_blank\\" rel=\\"noopener\\">https://www.aragon.es/-/instituto-aragones-de-gestion-ambiental</a></li>\\n<li><a href=\\"https://orekan.es/es\\" target=\\"_blank\\" rel=\\"noopener\\">https://orekan.es/es</a></li>\\n</ol>"}]}	2026-03-02 10:46:57.997+01	2026-03-02 11:04:33.517+01	\N
01KJCSWY8D040AXACY4HA9ZMVY	01KJCR9SD3Z29PV92PGX2GZ0C7	{"title": "Customized Waste Management Optimization", "button": {"items": [{"button_url": "/contact", "button_text": "Request Quote"}]}, "button_url": "/contact", "button_text": "Request Quote", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's", "optimization_steps": {"items": [{"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M9.88936 23.5019H4.15234V32.4902H9.88936V23.5019ZM23.9435 10.1339C24.3146 10.1339 24.6775 10.244 24.9861 10.4502C25.2947 10.6564 25.5352 10.9495 25.6773 11.2924C25.8193 11.6353 25.8565 12.0126 25.7841 12.3767C25.7116 12.7407 25.5329 13.0751 25.2705 13.3375C25.008 13.6 24.6736 13.7787 24.3096 13.8511C23.9455 13.9236 23.5682 13.8864 23.2253 13.7444C22.8824 13.6023 22.5893 13.3618 22.3831 13.0532C22.1769 12.7445 22.0668 12.3817 22.0668 12.0105C22.0668 11.5128 22.2645 11.0355 22.6165 10.6835C22.9684 10.3316 23.4457 10.1339 23.9435 10.1339ZM7.0208 13.0803C7.39197 13.0803 7.7548 13.1903 8.06342 13.3965C8.37203 13.6028 8.61257 13.8959 8.75461 14.2388C8.89665 14.5817 8.93381 14.959 8.8614 15.3231C8.78899 15.6871 8.61026 16.0215 8.3478 16.2839C8.08534 16.5464 7.75096 16.7251 7.38692 16.7975C7.02288 16.8699 6.64555 16.8328 6.30263 16.6907C5.95972 16.5487 5.66663 16.3082 5.46042 15.9995C5.2542 15.6909 5.14414 15.3281 5.14414 14.9569C5.14414 14.4592 5.34186 13.9819 5.6938 13.6299C6.04574 13.278 6.52308 13.0803 7.0208 13.0803ZM15.9479 5.82031C16.3191 5.82031 16.682 5.93038 16.9906 6.13659C17.2992 6.3428 17.5397 6.63589 17.6818 6.97881C17.8238 7.32172 17.861 7.69905 17.7885 8.06309C17.7161 8.42713 17.5374 8.76152 17.2749 9.02397C17.0125 9.28643 16.6781 9.46516 16.3141 9.53757C15.95 9.60998 15.5727 9.57282 15.2298 9.43078C14.8869 9.28874 14.5938 9.0482 14.3876 8.73959C14.1814 8.43097 14.0713 8.06814 14.0713 7.69697C14.0713 7.45053 14.1198 7.20649 14.2141 6.97881C14.3085 6.75112 14.4467 6.54424 14.621 6.36997C14.7952 6.19571 15.0021 6.05748 15.2298 5.96316C15.4575 5.86885 15.7015 5.82031 15.9479 5.82031ZM29.969 3.71094H31.0227L25.1717 9.65293C25.6422 9.89882 26.0287 10.2794 26.2818 10.7461L32.0563 4.88174V5.79453C32.0563 6.00173 32.1387 6.20045 32.2852 6.34696C32.4317 6.49347 32.6304 6.57578 32.8376 6.57578C33.0448 6.57578 33.2435 6.49347 33.39 6.34696C33.5365 6.20045 33.6188 6.00173 33.6188 5.79453V2.92969C33.6188 2.72249 33.5365 2.52377 33.39 2.37726C33.2435 2.23075 33.0448 2.14844 32.8376 2.14844H29.969C29.7618 2.14844 29.5631 2.23075 29.4166 2.37726C29.2701 2.52377 29.1878 2.72249 29.1878 2.92969C29.1878 3.13689 29.2701 3.3356 29.4166 3.48211C29.5631 3.62863 29.7618 3.71094 29.969 3.71094ZM21.3362 11.4898C21.4401 10.9686 21.6983 10.4907 22.0771 10.118L18.5554 8.21748C18.4515 8.73888 18.1933 9.21703 17.8143 9.58984L21.3366 11.4903L21.3362 11.4898ZM14.4676 9.90449C14.0271 9.60854 13.6849 9.18786 13.4849 8.69629L8.50117 12.749C8.9418 13.045 9.28411 13.4656 9.48428 13.9572L14.468 9.90449H14.4676ZM24.0355 26.0385C22.7595 27.3145 21.8905 28.9403 21.5385 30.7102C21.1864 32.4802 21.3671 34.3147 22.0577 35.982C22.7483 37.6492 23.9177 39.0742 25.4182 40.0768C26.9187 41.0794 28.6828 41.6145 30.4874 41.6145C32.292 41.6145 34.056 41.0794 35.5565 40.0768C37.057 39.0742 38.2264 37.6492 38.917 35.982C39.6076 34.3147 39.7883 32.4802 39.4363 30.7102C39.0842 28.9403 38.2152 27.3145 36.9392 26.0385C36.0919 25.1912 35.0861 24.5191 33.9791 24.0606C32.8721 23.602 31.6856 23.366 30.4874 23.366C29.2891 23.366 28.1027 23.602 26.9957 24.0606C25.8886 24.5191 24.8828 25.1912 24.0355 26.0385ZM25.456 27.4589C26.4511 26.4638 27.7189 25.7861 29.0992 25.5116C30.4794 25.237 31.9101 25.3779 33.2103 25.9165C34.5104 26.455 35.6217 27.367 36.4036 28.5372C37.1854 29.7073 37.6027 31.083 37.6027 32.4903C37.6027 33.8976 37.1854 35.2733 36.4036 36.4434C35.6217 37.6135 34.5104 38.5255 33.2103 39.0641C31.9101 39.6026 30.4794 39.7435 29.0992 39.469C27.7189 39.1945 26.4511 38.5168 25.456 37.5217C24.7952 36.8609 24.2711 36.0765 23.9135 35.2133C23.5559 34.35 23.3719 33.4247 23.3719 32.4903C23.3719 31.5559 23.5559 30.6306 23.9135 29.7673C24.2711 28.904 24.7952 28.1196 25.456 27.4589ZM36.7461 40.169C37.2658 39.7442 37.7417 39.2683 38.1665 38.7485L39.746 40.3281L38.3256 41.7485L36.7461 40.169ZM38.8776 42.301L40.298 40.8805C40.4612 40.7182 40.682 40.6272 40.9121 40.6272C41.1422 40.6272 41.363 40.7182 41.5262 40.8805L45.5953 44.9496C45.7576 45.1128 45.8487 45.3336 45.8487 45.5637C45.8487 45.7939 45.7576 46.0146 45.5953 46.1778L44.1749 47.5982C44.0117 47.7605 43.7909 47.8516 43.5608 47.8516C43.3307 47.8516 43.1099 47.7605 42.9467 47.5982L38.8776 43.5291C38.7154 43.3659 38.6243 43.1452 38.6243 42.915C38.6243 42.6849 38.7154 42.4642 38.8776 42.301ZM24.904 26.9065C26.0084 25.8022 27.4154 25.0501 28.9472 24.7455C30.479 24.4408 32.0667 24.5972 33.5096 25.1949C34.9525 25.7925 36.1858 26.8047 37.0534 28.1032C37.9211 29.4018 38.3843 30.9285 38.3843 32.4903C38.3843 34.0521 37.9211 35.5788 37.0534 36.8774C36.1858 38.176 34.9525 39.1881 33.5096 39.7858C32.0667 40.3835 30.479 40.5399 28.9472 40.2352C27.4154 39.9305 26.0084 39.1785 24.904 38.0741C24.1707 37.3409 23.589 36.4704 23.1921 35.5123C22.7952 34.5542 22.591 33.5274 22.591 32.4903C22.591 31.4533 22.7952 30.4265 23.1921 29.4684C23.589 28.5103 24.1707 27.6398 24.904 26.9065ZM29.969 9.99785H35.7062V23.1619C33.9576 22.1847 31.9697 21.7185 29.969 21.8164V9.99785ZM27.1003 18.6878V22.3535C24.7091 23.1534 22.6773 24.772 21.3632 26.9238V18.6878H27.1003ZM12.7576 16.0413H18.4946V32.4902H12.7579L12.7576 16.0413Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Audits & Diagnosis", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's."}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M10.3903 25.0001C10.3903 33.0624 16.9359 39.608 24.9982 39.608C33.0604 39.608 39.606 33.0624 39.606 25.0001H48.5276V28.1801L44.6295 29.6803C44.1373 31.7598 43.3148 33.7469 42.1933 35.5659L43.8858 39.3871L39.3851 43.8878L35.5639 42.1887C33.7467 43.3091 31.7619 44.1316 29.6848 44.625L28.1845 48.5295H21.8182L20.3115 44.625C18.2344 44.1316 16.2496 43.3091 14.4324 42.1887L10.6112 43.8878L6.11052 39.3871L7.80954 35.5659C6.68757 33.7451 5.86689 31.764 5.36679 29.6803L1.46875 28.1801V25.0001H10.3903ZM24.9982 36.2775C18.788 36.2775 13.7208 31.2103 13.7208 25.0001C13.7208 18.7899 18.788 13.7228 24.9982 13.7228C31.2084 13.7228 36.2755 18.7899 36.2755 25.0001C36.2755 31.2103 31.2084 36.2775 24.9982 36.2775ZM24.9982 34.3822C30.1644 34.3822 34.3802 30.1664 34.3802 25.0001C34.3802 19.8338 30.1644 15.6181 24.9982 15.6181C19.8319 15.6181 15.6161 19.8338 15.6161 25.0001C15.6161 30.1664 19.8319 34.3822 24.9982 34.3822ZM24.9982 32.8135C20.6957 32.8135 17.1847 29.3026 17.1847 25.0001C17.1847 20.6977 20.6957 17.1867 24.9982 17.1867C29.3006 17.1867 32.8116 20.6977 32.8116 25.0001C32.8116 29.3026 29.3006 32.8135 24.9982 32.8135ZM24.2139 20.2725C24.0332 20.3127 23.8569 20.3664 23.6876 20.433C22.5878 20.8659 21.7944 21.8157 21.8568 23.1074L21.8569 23.1078C21.9394 24.7982 23.4567 25.5113 24.8786 25.7453L24.8793 25.7455C25.2656 25.8086 25.6784 25.8994 26.0422 26.0644C26.4368 26.2435 26.777 26.5169 26.8381 27.0149C26.8846 27.4022 26.7033 27.6774 26.4364 27.8613C26.059 28.1215 25.5466 28.2358 25.0865 28.2467C24.2313 28.2668 23.3457 27.8928 23.1278 27.0175C23.0774 26.8157 22.949 26.6421 22.7708 26.5349C22.5925 26.4277 22.379 26.3957 22.1772 26.4458C21.7572 26.5504 21.501 26.9764 21.6056 27.3964C21.9295 28.6976 22.9891 29.4955 24.2139 29.7375V30.1928C24.2139 30.6256 24.5653 30.9771 24.9982 30.9771C25.431 30.9771 25.7825 30.6256 25.7825 30.1928V29.7489C27.2218 29.495 28.5998 28.5205 28.3953 26.8263L28.3951 26.8253C28.1841 25.0965 26.5867 24.4353 25.1326 24.1975C24.7765 24.1388 24.3981 24.0492 24.0709 23.8892C23.7311 23.7232 23.4452 23.4721 23.4237 23.0314C23.3965 22.4679 23.7823 22.0815 24.2622 21.8926C25.0951 21.5646 26.2551 21.7752 26.6904 22.8106C26.7711 23.0023 26.9246 23.1542 27.1171 23.2327C27.3097 23.3113 27.5256 23.3102 27.7174 23.2297C27.9091 23.149 28.0609 22.9955 28.1394 22.803C28.218 22.6104 28.2169 22.3945 28.1364 22.2028C27.67 21.0932 26.7625 20.4714 25.7825 20.2637V19.8075C25.7825 19.3746 25.431 19.0232 24.9982 19.0232C24.5653 19.0232 24.2139 19.3746 24.2139 19.8075V20.2725ZM23.3931 7.18972V3.0758C23.3931 2.18992 24.1123 1.4707 24.9982 1.4707C25.884 1.4707 26.6033 2.18992 26.6033 3.0758V7.18972C27.3109 6.7507 28.2494 6.92668 28.7467 7.6111C29.2674 8.32776 29.1083 9.33237 28.3916 9.85306L25.9416 11.6331C25.6674 11.8323 25.3371 11.9396 24.9982 11.9396C24.6592 11.9396 24.3289 11.8323 24.0547 11.6331L21.6047 9.85306C20.8881 9.33237 20.7289 8.32776 21.2496 7.6111C21.7469 6.92668 22.6854 6.7507 23.3931 7.18972ZM36.6903 12.0917V7.97776C36.6903 7.09188 37.4096 6.37266 38.2955 6.37266C39.1814 6.37266 39.9006 7.09188 39.9006 7.97776V12.0917C40.6083 11.6527 41.5468 11.8286 42.044 12.5131C42.5647 13.2297 42.4056 14.2343 41.6889 14.755L39.239 16.535C38.9647 16.7343 38.6344 16.8416 38.2955 16.8416C37.9565 16.8416 37.6262 16.7343 37.352 16.535L34.9021 14.755C34.1853 14.2343 34.0262 13.2297 34.5469 12.5131C35.0441 11.8286 35.9827 11.6527 36.6903 12.0917ZM10.0957 12.0917V7.97776C10.0957 7.09188 10.8149 6.37266 11.7008 6.37266C12.5867 6.37266 13.306 7.09188 13.306 7.97776V12.0917C14.0137 11.6527 14.9522 11.8286 15.4494 12.5131C15.9701 13.2297 15.811 14.2343 15.0942 14.755L12.6443 16.535C12.3701 16.7343 12.0398 16.8416 11.7009 16.8416C11.3619 16.8416 11.0316 16.7343 10.7574 16.535L8.30738 14.755C7.59071 14.2343 7.43159 13.2297 7.95228 12.5131C8.44954 11.8286 9.38806 11.6527 10.0957 12.0917Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Cost Optimization", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's."}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<g clip-path=\\"url(#clip0_1094_56113)\\">\\n<g filter=\\"url(#filter0_d_1094_56113)\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M28.5303 7.07328C30.3775 7.49069 32.1397 8.22092 33.7406 9.23238C33.7674 9.24928 33.7986 9.25078 33.8268 9.23638L35.8266 8.21748C36.2986 7.97698 36.848 8.06398 37.2226 8.43858L39.7603 10.9763C40.1349 11.351 40.2219 11.9003 39.9814 12.3723L38.9625 14.3721C38.9555 14.3855 38.9521 14.4006 38.9528 14.4157C38.9535 14.4309 38.9582 14.4456 38.9665 14.4583C39.978 16.0593 40.7083 17.8214 41.1256 19.6686C41.1326 19.6995 41.1537 19.7226 41.1837 19.7324L43.3172 20.4256C43.821 20.5893 44.148 21.0393 44.148 21.5691V25.158C44.148 25.6878 43.8211 26.1377 43.3172 26.3015L41.1837 26.9947C41.1692 26.9992 41.1562 27.0074 41.146 27.0187C41.1358 27.0299 41.1288 27.0436 41.1256 27.0585C40.9295 27.9269 40.6638 28.7781 40.3309 29.6038C40.3261 29.6163 40.3183 29.6275 40.3083 29.6364C40.2983 29.6454 40.2863 29.6518 40.2733 29.6553C40.2605 29.6591 40.2469 29.6597 40.2337 29.6572C40.2205 29.6547 40.208 29.6491 40.1974 29.6409L37.251 27.4213C37.2364 27.4105 37.2256 27.3954 37.2201 27.3781C37.2146 27.3608 37.2147 27.3422 37.2204 27.325C37.6196 26.076 37.8355 24.7451 37.8355 23.3636C37.8355 16.1838 32.0151 10.3634 24.8353 10.3634C17.6555 10.3634 11.8352 16.1837 11.8352 23.3636C11.8352 28.7295 15.0865 33.3355 19.7263 35.3206C19.7449 35.3284 19.7602 35.3424 19.7696 35.3603C19.7789 35.3782 19.7817 35.3988 19.7774 35.4185C19.7735 35.4382 19.7628 35.4559 19.7472 35.4686C19.7316 35.4813 19.7121 35.4881 19.692 35.488H17.864C16.5599 35.488 15.41 36.0558 14.6072 37.0825L13.4133 38.6094C13.4057 38.6194 13.396 38.6276 13.3848 38.6334C13.3736 38.6392 13.3613 38.6424 13.3487 38.6428C13.0208 38.6584 12.6962 38.5365 12.4482 38.2885L9.91064 35.7507C9.53604 35.3761 9.44904 34.8267 9.68954 34.3547L10.7084 32.3549C10.7155 32.3415 10.7189 32.3264 10.7182 32.3112C10.7175 32.2961 10.7127 32.2814 10.7044 32.2687C9.69294 30.6677 8.96271 28.9056 8.54534 27.0584C8.5422 27.0435 8.53516 27.0298 8.52494 27.0186C8.51473 27.0074 8.50172 26.9991 8.48724 26.9946L6.35374 26.3014C5.84994 26.1376 5.52294 25.6877 5.52294 25.1579V21.569C5.52294 21.0392 5.84984 20.5893 6.35374 20.4255L8.48724 19.7323C8.50174 19.7278 8.51478 19.7195 8.52499 19.7083C8.53521 19.6971 8.54224 19.6833 8.54534 19.6685C8.96273 17.8213 9.69296 16.0592 10.7044 14.4582C10.7127 14.4455 10.7175 14.4308 10.7182 14.4156C10.7189 14.4005 10.7155 14.3854 10.7084 14.372L9.68954 12.3722C9.44904 11.9002 9.53604 11.3508 9.91064 10.9762L12.4483 8.43848C12.823 8.06388 13.3723 7.97688 13.8443 8.21738L15.8441 9.23628C15.8576 9.24337 15.8726 9.24674 15.8878 9.24603C15.9029 9.24533 15.9176 9.24058 15.9303 9.23228C17.5313 8.22077 19.2935 7.49055 21.1406 7.07318C21.1555 7.07003 21.1692 7.06299 21.1804 7.05278C21.1916 7.04257 21.1999 7.02956 21.2044 7.01508L21.8976 4.88158C22.0614 4.37778 22.5113 4.05078 23.0411 4.05078H26.63C27.1598 4.05078 27.6097 4.37768 27.7735 4.88158L28.4667 7.01508C28.4712 7.02959 28.4794 7.04264 28.4906 7.05288C28.5018 7.06312 28.5155 7.07016 28.5303 7.07328ZM26.2217 14.5459L25.524 15.4721C25.2937 15.7778 25.3554 16.2163 25.6611 16.4466L32.4545 21.5642C32.7602 21.7945 33.1987 21.7328 33.429 21.4271L34.1267 20.5009C34.6393 19.8205 34.5024 18.8476 33.822 18.335L28.3876 14.2411C27.7072 13.7287 26.7342 13.8655 26.2217 14.5459ZM17.7264 25.6079C17.2139 26.2883 17.3507 27.2613 18.0311 27.7738L23.4655 31.8677C24.1459 32.3802 25.1188 32.2434 25.6314 31.563L26.3291 30.6368C26.5594 30.3311 26.4977 29.8926 26.192 29.6623L19.3987 24.5447C19.093 24.3144 18.6545 24.3761 18.4242 24.6818L17.7264 25.6079ZM21.2686 24.2048C21.2548 24.2233 21.2488 24.2465 21.252 24.2694C21.2552 24.2923 21.2674 24.313 21.2858 24.327L26.1797 28.0137C26.1982 28.0276 26.2215 28.0336 26.2444 28.0303C26.2673 28.0271 26.288 28.0149 26.3019 27.9965L30.7804 22.0516C30.7943 22.0331 30.8003 22.0098 30.7971 21.9869C30.7939 21.964 30.7817 21.9433 30.7632 21.9294L25.8693 18.2427C25.8508 18.2288 25.8276 18.2228 25.8047 18.226C25.7818 18.2293 25.7611 18.2414 25.7471 18.2599L21.2686 24.2048ZM30.8701 24.2534C30.8516 24.2395 30.8284 24.2335 30.8055 24.2367C30.7826 24.24 30.7619 24.2521 30.7479 24.2706L28.4379 27.337C28.4241 27.3555 28.4181 27.3787 28.4213 27.4016C28.4245 27.4245 28.4367 27.4452 28.4551 27.4592L42.6217 38.1314C42.9658 38.3906 43.4592 38.3211 43.7184 37.9771L45.1909 36.0224C45.4501 35.6783 45.3807 35.1849 45.0366 34.9257L30.8701 24.2534ZM6.57694 42.0993C5.51844 42.0993 4.65234 42.9653 4.65234 44.0239V45.8612C4.65234 45.9093 4.69154 45.9485 4.73964 45.9485H44.9313C44.9545 45.9485 44.9767 45.9393 44.993 45.9229C45.0094 45.9065 45.0186 45.8843 45.0186 45.8612V44.0239C45.0186 42.9654 44.1526 42.0993 43.0941 42.0993H37.3671C37.3539 42.0995 37.3407 42.0966 37.3288 42.0907C37.3169 42.0849 37.3065 42.0764 37.2984 42.0658L34.0323 37.889C33.4746 37.1757 32.7032 36.7973 31.8069 36.7973H17.8641C16.9678 36.7973 16.1965 37.1757 15.6387 37.889L12.3726 42.0658C12.3646 42.0764 12.3542 42.0849 12.3423 42.0907C12.3303 42.0965 12.3172 42.0995 12.3039 42.0993H6.57694ZM38.6261 36.885C38.6351 36.8763 38.6421 36.8657 38.6464 36.8539C38.6508 36.8422 38.6525 36.8297 38.6514 36.8172C38.6508 36.8047 38.6473 36.7925 38.6414 36.7815C38.6354 36.7705 38.6271 36.761 38.6169 36.7536L33.6517 33.0131C33.6356 33.0008 33.6156 32.9945 33.5954 32.9954C33.5751 32.9963 33.5557 33.0043 33.5407 33.018C32.4771 33.9782 31.2621 34.7562 29.9449 35.3205C29.9264 35.3283 29.9111 35.3423 29.9017 35.3602C29.8924 35.378 29.8896 35.3986 29.8937 35.4183C29.9021 35.4593 29.9373 35.488 29.9792 35.488H31.8069C33.111 35.488 34.2609 36.0558 35.0637 37.0825L36.2576 38.6094C36.2652 38.6194 36.275 38.6276 36.2862 38.6334C36.2973 38.6392 36.3097 38.6424 36.3222 38.6428C36.6501 38.6584 36.9747 38.5365 37.2227 38.2885L38.6261 36.885Z\\" fill=\\"#053F31\\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\\"filter0_d_1094_56113\\" x=\\"0.652344\\" y=\\"4.05078\\" width=\\"48.6953\\" height=\\"49.8984\\" filterUnits=\\"userSpaceOnUse\\" color-interpolation-filters=\\"sRGB\\">\\n<feFlood flood-opacity=\\"0\\" result=\\"BackgroundImageFix\\"/>\\n<feColorMatrix in=\\"SourceAlpha\\" type=\\"matrix\\" values=\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\\" result=\\"hardAlpha\\"/>\\n<feOffset dy=\\"4\\"/>\\n<feGaussianBlur stdDeviation=\\"2\\"/>\\n<feComposite in2=\\"hardAlpha\\" operator=\\"out\\"/>\\n<feColorMatrix type=\\"matrix\\" values=\\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\\"/>\\n<feBlend mode=\\"normal\\" in2=\\"BackgroundImageFix\\" result=\\"effect1_dropShadow_1094_56113\\"/>\\n<feBlend mode=\\"normal\\" in=\\"SourceGraphic\\" in2=\\"effect1_dropShadow_1094_56113\\" result=\\"shape\\"/>\\n</filter>\\n<clipPath id=\\"clip0_1094_56113\\">\\n<rect width=\\"50\\" height=\\"50\\" fill=\\"white\\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n", "title": "Legal Compliance", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's."}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M42.5781 8.08594H7.42188C6.63276 8.08697 5.87626 8.4009 5.31827 8.95889C4.76028 9.51688 4.44635 10.2734 4.44531 11.0625V33.3047C4.44676 34.093 4.76108 34.8484 5.3192 35.4051C5.87733 35.9617 6.6336 36.2741 7.42188 36.2734H11.2031L9.73438 40.3484H7.25547C7.04827 40.3484 6.84955 40.4307 6.70304 40.5773C6.55653 40.7238 6.47422 40.9225 6.47422 41.1297C6.47422 41.3369 6.55653 41.5356 6.70304 41.6821C6.84955 41.8286 7.04827 41.9109 7.25547 41.9109H42.743C42.9502 41.9109 43.1489 41.8286 43.2954 41.6821C43.4419 41.5356 43.5242 41.3369 43.5242 41.1297C43.5242 40.9225 43.4419 40.7238 43.2954 40.5773C43.1489 40.4307 42.9502 40.3484 42.743 40.3484H40.2633L38.7945 36.2734H42.5781C43.3664 36.2741 44.1227 35.9617 44.6808 35.4051C45.2389 34.8484 45.5532 34.093 45.5547 33.3047V11.0625C45.5537 10.2734 45.2397 9.51688 44.6817 8.95889C44.1237 8.4009 43.3672 8.08697 42.5781 8.08594ZM24.2188 34.0703C24.2188 33.8631 24.3011 33.6644 24.4476 33.5179C24.5941 33.3714 24.7928 33.2891 25 33.2891C25.2072 33.2891 25.4059 33.3714 25.5524 33.5179C25.6989 33.6644 25.7813 33.8631 25.7813 34.0703C25.7813 34.2775 25.6989 34.4762 25.5524 34.6227C25.4059 34.7693 25.2072 34.8516 25 34.8516C24.7928 34.8516 24.5941 34.7693 24.4476 34.6227C24.3011 34.4762 24.2188 34.2775 24.2188 34.0703ZM41.9141 29.5859C41.9128 30.1919 41.671 30.7726 41.2418 31.2004C40.8125 31.6282 40.231 31.868 39.625 31.8672H10.375C9.769 31.868 9.18747 31.6282 8.75823 31.2004C8.329 30.7726 8.08718 30.1919 8.08594 29.5859V13.6641C8.08491 13.3628 8.14336 13.0643 8.25793 12.7857C8.37251 12.5071 8.54096 12.2538 8.75362 12.0404C8.96628 11.827 9.21897 11.6577 9.49721 11.5422C9.77544 11.4267 10.0737 11.3672 10.375 11.3672H39.625C39.9263 11.3672 40.2246 11.4267 40.5028 11.5422C40.781 11.6577 41.0337 11.827 41.2464 12.0404C41.459 12.2538 41.6275 12.5071 41.7421 12.7857C41.8566 13.0643 41.9151 13.3628 41.9141 13.6641V29.5859ZM38.6023 40.3484H11.3953L12.8641 36.2734H37.1336L38.6023 40.3484Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M39.6251 12.9297H10.3751C10.279 12.9297 10.1839 12.9487 10.0952 12.9857C10.0065 13.0227 9.9261 13.077 9.85853 13.1452C9.79095 13.2135 9.7376 13.2946 9.70155 13.3836C9.6655 13.4727 9.64747 13.568 9.6485 13.6641V29.5859C9.64721 29.6813 9.66518 29.776 9.70134 29.8643C9.7375 29.9526 9.79109 30.0327 9.85893 30.0998C9.92676 30.1669 10.0074 30.2197 10.0961 30.2549C10.1848 30.2901 10.2797 30.307 10.3751 30.3047H39.6251C39.7205 30.307 39.8153 30.2901 39.904 30.2549C39.9927 30.2197 40.0734 30.1669 40.1412 30.0998C40.209 30.0327 40.2626 29.9526 40.2988 29.8643C40.3349 29.776 40.3529 29.6813 40.3516 29.5859V13.6641C40.3527 13.568 40.3346 13.4727 40.2986 13.3836C40.2625 13.2946 40.2092 13.2135 40.1416 13.1452C40.074 13.077 39.9936 13.0227 39.9049 12.9857C39.8163 12.9487 39.7211 12.9297 39.6251 12.9297ZM37.2032 27.9766H12.7969C12.5897 27.9766 12.391 27.8943 12.2445 27.7477C12.098 27.6012 12.0157 27.4025 12.0157 27.1953C12.0157 26.9881 12.098 26.7894 12.2445 26.6429C12.391 26.4964 12.5897 26.4141 12.7969 26.4141H14.1563V23.0703C14.156 22.9676 14.176 22.8659 14.2152 22.771C14.2543 22.6761 14.3118 22.5898 14.3844 22.5172C14.4571 22.4446 14.5433 22.3871 14.6382 22.3479C14.7332 22.3088 14.8349 22.2888 14.9376 22.2891H19.0626C19.1655 22.288 19.2675 22.3075 19.3628 22.3464C19.458 22.3853 19.5446 22.4428 19.6173 22.5156C19.6901 22.5883 19.7476 22.6749 19.7865 22.7701C19.8254 22.8654 19.8449 22.9674 19.8438 23.0703V26.4141H22.1563V19.25C22.156 19.1473 22.176 19.0456 22.2152 18.9507C22.2543 18.8557 22.3118 18.7695 22.3844 18.6969C22.4571 18.6243 22.5433 18.5667 22.6382 18.5276C22.7332 18.4884 22.8349 18.4684 22.9376 18.4688H27.0626C27.1652 18.4684 27.267 18.4884 27.3619 18.5276C27.4568 18.5667 27.5431 18.6243 27.6157 18.6969C27.6883 18.7695 27.7458 18.8557 27.785 18.9507C27.8241 19.0456 27.8441 19.1473 27.8438 19.25V26.4141H30.1563V16.0391C30.1553 15.9362 30.1748 15.8341 30.2137 15.7389C30.2525 15.6436 30.3101 15.5571 30.3828 15.4843C30.4556 15.4116 30.5421 15.354 30.6374 15.3152C30.7326 15.2763 30.8347 15.2568 30.9376 15.2578H35.0626C35.1652 15.2575 35.267 15.2775 35.3619 15.3167C35.4568 15.3558 35.5431 15.4133 35.6157 15.4859C35.6883 15.5586 35.7458 15.6448 35.785 15.7397C35.8241 15.8347 35.8441 15.9364 35.8438 16.0391V26.4141H37.2032C37.4104 26.4141 37.6091 26.4964 37.7556 26.6429C37.9021 26.7894 37.9844 26.9881 37.9844 27.1953C37.9844 27.4025 37.9021 27.6012 37.7556 27.7477C37.6091 27.8943 37.4104 27.9766 37.2032 27.9766Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M15.7188 23.8516H18.2812V26.4141H15.7188V23.8516ZM23.7188 20.0312H26.2812V26.4141H23.7188V20.0312ZM31.7187 16.8203H34.2812V26.4141H31.7187V16.8203Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Continuous Monitoring", "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's."}]}}	2026-02-26 12:03:45.678+01	2026-03-03 11:47:11.537+01	\N
01KJSR31RBEQ9XHG1B5Z1TAAKV	01KJSQXXX132XKJD9QHWP3MD62	{"items": [{"cards": {"items": [{"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M22.1074 40.8467H31.9434C32.0085 40.8467 32.0736 40.8486 32.1387 40.8525V35.2109L31.0527 37.0889C31.2629 37.5202 31.329 38.0075 31.2414 38.4792C31.1538 38.9509 30.917 39.382 30.566 39.7091C30.215 40.0362 29.7683 40.2419 29.2916 40.296C28.8149 40.3501 28.3334 40.2498 27.918 40.0098L21.9023 36.5342C21.487 36.2944 21.1595 35.9276 20.9681 35.4878C20.7768 35.048 20.7316 34.5584 20.8393 34.091C20.947 33.6237 21.2019 33.2032 21.5664 32.8914C21.9309 32.5797 22.3858 32.3932 22.8643 32.3594L26.9658 25.248C26.7557 24.8167 26.6896 24.3294 26.7772 23.8577C26.8648 23.386 27.1015 22.9549 27.4525 22.6278C27.8036 22.3008 28.2503 22.095 28.727 22.0409C29.2037 21.9868 29.6852 22.0871 30.1006 22.3271L32.1357 23.499V4.58203C32.1337 4.04151 31.9183 3.52365 31.5365 3.14108C31.1546 2.7585 30.6372 2.54215 30.0967 2.53906H9.16797V7.46484C9.16591 8.1352 8.89883 8.77754 8.425 9.25175C7.95117 9.72594 7.30903 9.99352 6.63867 9.99609H1.71094V40.8467C1.713 41.3879 1.9289 41.9063 2.31158 42.289C2.69427 42.6717 3.21271 42.8876 3.75391 42.8896H19.291C19.4861 42.2963 19.8632 41.7795 20.3688 41.4127C20.8744 41.0459 21.4828 40.8479 22.1074 40.8467ZM11.8145 10.958C12.9969 9.77627 14.5525 9.04105 16.2162 8.87758C17.8799 8.71411 19.5489 9.13252 20.9387 10.0615C22.3286 10.9905 23.3533 12.3726 23.8384 13.9724C24.3236 15.5722 24.239 17.2907 23.5992 18.8352C22.9595 20.3797 21.804 21.6545 20.3297 22.4426C18.8554 23.2307 17.1534 23.4833 15.5138 23.1574C13.8741 22.8314 12.3982 21.9471 11.3375 20.655C10.2767 19.3629 9.6967 17.743 9.69629 16.0713C9.69504 15.1215 9.88153 14.1808 10.245 13.3032C10.6085 12.4257 11.1419 11.6287 11.8145 10.958ZM6.65332 26.709H23.9736C24.1031 26.709 24.2273 26.7604 24.3189 26.852C24.4105 26.9436 24.4619 27.0678 24.4619 27.1973C24.4619 27.3268 24.4105 27.451 24.3189 27.5425C24.2273 27.6341 24.1031 27.6855 23.9736 27.6855H6.65332C6.52382 27.6855 6.39962 27.6341 6.30805 27.5425C6.21648 27.451 6.16504 27.3268 6.16504 27.1973C6.16504 27.0678 6.21648 26.9436 6.30805 26.852C6.39962 26.7604 6.52382 26.709 6.65332 26.709ZM6.65332 30.8984H21.2393C21.3688 30.8984 21.493 30.9499 21.5845 31.0415C21.6761 31.133 21.7275 31.2572 21.7275 31.3867C21.7275 31.5162 21.6761 31.6404 21.5845 31.732C21.493 31.8236 21.3688 31.875 21.2393 31.875H6.65332C6.52382 31.875 6.39962 31.8236 6.30805 31.732C6.21648 31.6404 6.16504 31.5162 6.16504 31.3867C6.16504 31.2572 6.21648 31.133 6.30805 31.0415C6.39962 30.9499 6.52382 30.8984 6.65332 30.8984ZM18.6895 36.0645H6.65332C6.52382 36.0645 6.39962 36.013 6.30805 35.9214C6.21648 35.8299 6.16504 35.7057 6.16504 35.5762C6.16504 35.4467 6.21648 35.3225 6.30805 35.2309C6.39962 35.1393 6.52382 35.0879 6.65332 35.0879H18.6895C18.819 35.0879 18.9431 35.1393 19.0347 35.2309C19.1263 35.3225 19.1777 35.4467 19.1777 35.5762C19.1777 35.7057 19.1263 35.8299 19.0347 35.9214C18.9431 36.013 18.819 36.0645 18.6895 36.0645ZM35.6289 45.6348V46.541C35.6281 46.7852 35.5307 47.0191 35.358 47.1917C35.1852 47.3642 34.9512 47.4614 34.707 47.4619H19.3438C19.0996 47.4614 18.8655 47.3642 18.6928 47.1917C18.5201 47.0191 18.4226 46.7852 18.4219 46.541V45.6348C18.4224 45.3905 18.5197 45.1564 18.6925 44.9838C18.8653 44.8112 19.0995 44.7141 19.3438 44.7139H34.707C34.9511 44.7141 35.1851 44.8111 35.3579 44.9835C35.5307 45.1559 35.6281 45.3897 35.6289 45.6338V45.6348ZM30.1377 38.7012C29.9691 38.9909 29.6927 39.2022 29.3689 39.2889C29.045 39.3756 28.7 39.3308 28.4092 39.1641L22.3906 35.6885C22.0999 35.5208 21.8877 35.2444 21.8007 34.9203C21.7576 34.7598 21.7466 34.5924 21.7682 34.4276C21.7898 34.2628 21.8437 34.1039 21.9268 33.96C22.0098 33.816 22.1204 33.6898 22.2522 33.5886C22.384 33.4874 22.5344 33.4131 22.6949 33.37C23.0191 33.283 23.3645 33.3284 23.6553 33.4961L29.6748 36.9717C29.9648 37.1403 30.1763 37.4169 30.263 37.7409C30.3498 38.065 30.3047 38.4102 30.1377 38.7012ZM29.6162 23.1738L35.6357 26.6494C35.7932 26.7254 35.9333 26.833 36.0473 26.9656C36.1612 27.0982 36.2465 27.2529 36.2979 27.4201C36.3492 27.5872 36.3655 27.7631 36.3457 27.9368C36.3259 28.1105 36.2704 28.2783 36.1827 28.4296C36.0951 28.5808 35.9771 28.7124 35.8362 28.8159C35.6953 28.9194 35.5346 28.9928 35.364 29.0313C35.1935 29.0698 35.0168 29.0727 34.8451 29.0397C34.6734 29.0068 34.5104 28.9387 34.3662 28.8398L28.3477 25.3652C28.0821 25.1849 27.8947 24.9107 27.8232 24.5977C27.7517 24.2848 27.8014 23.9563 27.9623 23.6786C28.1233 23.4008 28.3834 23.1943 28.6905 23.1007C28.9975 23.007 29.3286 23.0332 29.6172 23.1738H29.6162ZM31.9434 41.8262C32.4571 41.8275 32.9505 42.0273 33.3204 42.3838C33.6904 42.7403 33.9083 43.2259 33.9287 43.7393H20.1221C20.1425 43.2259 20.3604 42.7403 20.7303 42.3838C21.1003 42.0273 21.5937 41.8275 22.1074 41.8262H31.9434ZM16.9258 22.3252C18.3729 22.3252 19.7752 21.8235 20.8938 20.9054C22.0125 19.9874 22.7782 18.7099 23.0605 17.2906C23.3428 15.8713 23.1243 14.398 22.4421 13.1218C21.76 11.8456 20.6564 10.8454 19.3195 10.2916C17.9825 9.73778 16.4949 9.66469 15.1102 10.0848C13.7254 10.5048 12.5291 11.392 11.7251 12.5953C10.9211 13.7985 10.5592 15.2432 10.7011 16.6834C10.8429 18.1235 11.4797 19.4699 12.5029 20.4932C13.0831 21.0749 13.7725 21.5362 14.5315 21.8506C15.2905 22.165 16.1042 22.3263 16.9258 22.3252ZM12.8037 14.6641C12.9123 14.589 13.0347 14.5361 13.1637 14.5083C13.2928 14.4805 13.4261 14.4785 13.5559 14.5022C13.6858 14.526 13.8097 14.5751 13.9206 14.6468C14.0315 14.7184 14.1272 14.8113 14.2021 14.9199L15.2832 16.4824L19.415 13.4316C19.6296 13.2802 19.895 13.2186 20.1543 13.2602C20.4137 13.3018 20.6465 13.4431 20.803 13.6541C20.9595 13.865 21.0272 14.1288 20.9918 14.3891C20.9563 14.6494 20.8205 14.8855 20.6133 15.0469L15.6455 18.7148C15.5372 18.7952 15.4138 18.8529 15.2827 18.8846C15.1516 18.9162 15.0155 18.9212 14.8825 18.8991C14.7494 18.8771 14.6222 18.8285 14.5083 18.7562C14.3945 18.684 14.2963 18.5895 14.2197 18.4785L12.5479 16.0645C12.4726 15.9557 12.4195 15.8332 12.3917 15.704C12.3638 15.5748 12.3617 15.4413 12.3854 15.3112C12.4092 15.1811 12.4584 15.057 12.5301 14.946C12.6019 14.835 12.6949 14.7391 12.8037 14.6641ZM30.3945 36.2812C30.3207 36.2253 30.2434 36.1741 30.1631 36.1279L24.1436 32.6523C24.0631 32.6061 23.9799 32.5647 23.8945 32.5283L27.6348 26.0557C27.7083 26.1123 27.7856 26.1639 27.8662 26.21L33.8848 29.6875C33.9652 29.7339 34.0483 29.7753 34.1338 29.8115L30.3945 36.2812ZM48.0703 41.7939C47.8579 42.1604 47.509 42.4277 47.1 42.5375C46.6909 42.6473 46.255 42.5907 45.8877 42.3799L32.4736 34.6328L34.0703 31.8662L47.4873 39.6123C47.8541 39.8249 48.1216 40.1742 48.2313 40.5837C48.3409 40.9932 48.2837 41.4295 48.0723 41.7969L48.0703 41.7939ZM6.63867 9.01953H2.19922L8.19141 3.02734V7.46484C8.18936 7.8762 8.02517 8.27016 7.73447 8.56122C7.44378 8.85228 7.05003 9.01697 6.63867 9.01953Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Digital Marketplace", "description": "Technology platform connecting organic waste generators and valorizers throughout Europe, facilitating secure and transparent transactions with complete traceability."}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M22.1074 40.8467H31.9434C32.0085 40.8467 32.0736 40.8486 32.1387 40.8525V35.2109L31.0527 37.0889C31.2629 37.5202 31.329 38.0075 31.2414 38.4792C31.1538 38.9509 30.917 39.382 30.566 39.7091C30.215 40.0362 29.7683 40.2419 29.2916 40.296C28.8149 40.3501 28.3334 40.2498 27.918 40.0098L21.9023 36.5342C21.487 36.2944 21.1595 35.9276 20.9681 35.4878C20.7768 35.048 20.7316 34.5584 20.8393 34.091C20.947 33.6237 21.2019 33.2032 21.5664 32.8914C21.9309 32.5797 22.3858 32.3932 22.8643 32.3594L26.9658 25.248C26.7557 24.8167 26.6896 24.3294 26.7772 23.8577C26.8648 23.386 27.1015 22.9549 27.4525 22.6278C27.8036 22.3008 28.2503 22.095 28.727 22.0409C29.2037 21.9868 29.6852 22.0871 30.1006 22.3271L32.1357 23.499V4.58203C32.1337 4.04151 31.9183 3.52365 31.5365 3.14108C31.1546 2.7585 30.6372 2.54215 30.0967 2.53906H9.16797V7.46484C9.16591 8.1352 8.89883 8.77754 8.425 9.25175C7.95117 9.72594 7.30903 9.99352 6.63867 9.99609H1.71094V40.8467C1.713 41.3879 1.9289 41.9063 2.31158 42.289C2.69427 42.6717 3.21271 42.8876 3.75391 42.8896H19.291C19.4861 42.2963 19.8632 41.7795 20.3688 41.4127C20.8744 41.0459 21.4828 40.8479 22.1074 40.8467ZM11.8145 10.958C12.9969 9.77627 14.5525 9.04105 16.2162 8.87758C17.8799 8.71411 19.5489 9.13252 20.9387 10.0615C22.3286 10.9905 23.3533 12.3726 23.8384 13.9724C24.3236 15.5722 24.239 17.2907 23.5992 18.8352C22.9595 20.3797 21.804 21.6545 20.3297 22.4426C18.8554 23.2307 17.1534 23.4833 15.5138 23.1574C13.8741 22.8314 12.3982 21.9471 11.3375 20.655C10.2767 19.3629 9.6967 17.743 9.69629 16.0713C9.69504 15.1215 9.88153 14.1808 10.245 13.3032C10.6085 12.4257 11.1419 11.6287 11.8145 10.958ZM6.65332 26.709H23.9736C24.1031 26.709 24.2273 26.7604 24.3189 26.852C24.4105 26.9436 24.4619 27.0678 24.4619 27.1973C24.4619 27.3268 24.4105 27.451 24.3189 27.5425C24.2273 27.6341 24.1031 27.6855 23.9736 27.6855H6.65332C6.52382 27.6855 6.39962 27.6341 6.30805 27.5425C6.21648 27.451 6.16504 27.3268 6.16504 27.1973C6.16504 27.0678 6.21648 26.9436 6.30805 26.852C6.39962 26.7604 6.52382 26.709 6.65332 26.709ZM6.65332 30.8984H21.2393C21.3688 30.8984 21.493 30.9499 21.5845 31.0415C21.6761 31.133 21.7275 31.2572 21.7275 31.3867C21.7275 31.5162 21.6761 31.6404 21.5845 31.732C21.493 31.8236 21.3688 31.875 21.2393 31.875H6.65332C6.52382 31.875 6.39962 31.8236 6.30805 31.732C6.21648 31.6404 6.16504 31.5162 6.16504 31.3867C6.16504 31.2572 6.21648 31.133 6.30805 31.0415C6.39962 30.9499 6.52382 30.8984 6.65332 30.8984ZM18.6895 36.0645H6.65332C6.52382 36.0645 6.39962 36.013 6.30805 35.9214C6.21648 35.8299 6.16504 35.7057 6.16504 35.5762C6.16504 35.4467 6.21648 35.3225 6.30805 35.2309C6.39962 35.1393 6.52382 35.0879 6.65332 35.0879H18.6895C18.819 35.0879 18.9431 35.1393 19.0347 35.2309C19.1263 35.3225 19.1777 35.4467 19.1777 35.5762C19.1777 35.7057 19.1263 35.8299 19.0347 35.9214C18.9431 36.013 18.819 36.0645 18.6895 36.0645ZM35.6289 45.6348V46.541C35.6281 46.7852 35.5307 47.0191 35.358 47.1917C35.1852 47.3642 34.9512 47.4614 34.707 47.4619H19.3438C19.0996 47.4614 18.8655 47.3642 18.6928 47.1917C18.5201 47.0191 18.4226 46.7852 18.4219 46.541V45.6348C18.4224 45.3905 18.5197 45.1564 18.6925 44.9838C18.8653 44.8112 19.0995 44.7141 19.3438 44.7139H34.707C34.9511 44.7141 35.1851 44.8111 35.3579 44.9835C35.5307 45.1559 35.6281 45.3897 35.6289 45.6338V45.6348ZM30.1377 38.7012C29.9691 38.9909 29.6927 39.2022 29.3689 39.2889C29.045 39.3756 28.7 39.3308 28.4092 39.1641L22.3906 35.6885C22.0999 35.5208 21.8877 35.2444 21.8007 34.9203C21.7576 34.7598 21.7466 34.5924 21.7682 34.4276C21.7898 34.2628 21.8437 34.1039 21.9268 33.96C22.0098 33.816 22.1204 33.6898 22.2522 33.5886C22.384 33.4874 22.5344 33.4131 22.6949 33.37C23.0191 33.283 23.3645 33.3284 23.6553 33.4961L29.6748 36.9717C29.9648 37.1403 30.1763 37.4169 30.263 37.7409C30.3498 38.065 30.3047 38.4102 30.1377 38.7012ZM29.6162 23.1738L35.6357 26.6494C35.7932 26.7254 35.9333 26.833 36.0473 26.9656C36.1612 27.0982 36.2465 27.2529 36.2979 27.4201C36.3492 27.5872 36.3655 27.7631 36.3457 27.9368C36.3259 28.1105 36.2704 28.2783 36.1827 28.4296C36.0951 28.5808 35.9771 28.7124 35.8362 28.8159C35.6953 28.9194 35.5346 28.9928 35.364 29.0313C35.1935 29.0698 35.0168 29.0727 34.8451 29.0397C34.6734 29.0068 34.5104 28.9387 34.3662 28.8398L28.3477 25.3652C28.0821 25.1849 27.8947 24.9107 27.8232 24.5977C27.7517 24.2848 27.8014 23.9563 27.9623 23.6786C28.1233 23.4008 28.3834 23.1943 28.6905 23.1007C28.9975 23.007 29.3286 23.0332 29.6172 23.1738H29.6162ZM31.9434 41.8262C32.4571 41.8275 32.9505 42.0273 33.3204 42.3838C33.6904 42.7403 33.9083 43.2259 33.9287 43.7393H20.1221C20.1425 43.2259 20.3604 42.7403 20.7303 42.3838C21.1003 42.0273 21.5937 41.8275 22.1074 41.8262H31.9434ZM16.9258 22.3252C18.3729 22.3252 19.7752 21.8235 20.8938 20.9054C22.0125 19.9874 22.7782 18.7099 23.0605 17.2906C23.3428 15.8713 23.1243 14.398 22.4421 13.1218C21.76 11.8456 20.6564 10.8454 19.3195 10.2916C17.9825 9.73778 16.4949 9.66469 15.1102 10.0848C13.7254 10.5048 12.5291 11.392 11.7251 12.5953C10.9211 13.7985 10.5592 15.2432 10.7011 16.6834C10.8429 18.1235 11.4797 19.4699 12.5029 20.4932C13.0831 21.0749 13.7725 21.5362 14.5315 21.8506C15.2905 22.165 16.1042 22.3263 16.9258 22.3252ZM12.8037 14.6641C12.9123 14.589 13.0347 14.5361 13.1637 14.5083C13.2928 14.4805 13.4261 14.4785 13.5559 14.5022C13.6858 14.526 13.8097 14.5751 13.9206 14.6468C14.0315 14.7184 14.1272 14.8113 14.2021 14.9199L15.2832 16.4824L19.415 13.4316C19.6296 13.2802 19.895 13.2186 20.1543 13.2602C20.4137 13.3018 20.6465 13.4431 20.803 13.6541C20.9595 13.865 21.0272 14.1288 20.9918 14.3891C20.9563 14.6494 20.8205 14.8855 20.6133 15.0469L15.6455 18.7148C15.5372 18.7952 15.4138 18.8529 15.2827 18.8846C15.1516 18.9162 15.0155 18.9212 14.8825 18.8991C14.7494 18.8771 14.6222 18.8285 14.5083 18.7562C14.3945 18.684 14.2963 18.5895 14.2197 18.4785L12.5479 16.0645C12.4726 15.9557 12.4195 15.8332 12.3917 15.704C12.3638 15.5748 12.3617 15.4413 12.3854 15.3112C12.4092 15.1811 12.4584 15.057 12.5301 14.946C12.6019 14.835 12.6949 14.7391 12.8037 14.6641ZM30.3945 36.2812C30.3207 36.2253 30.2434 36.1741 30.1631 36.1279L24.1436 32.6523C24.0631 32.6061 23.9799 32.5647 23.8945 32.5283L27.6348 26.0557C27.7083 26.1123 27.7856 26.1639 27.8662 26.21L33.8848 29.6875C33.9652 29.7339 34.0483 29.7753 34.1338 29.8115L30.3945 36.2812ZM48.0703 41.7939C47.8579 42.1604 47.509 42.4277 47.1 42.5375C46.6909 42.6473 46.255 42.5907 45.8877 42.3799L32.4736 34.6328L34.0703 31.8662L47.4873 39.6123C47.8541 39.8249 48.1216 40.1742 48.2313 40.5837C48.3409 40.9932 48.2837 41.4295 48.0723 41.7969L48.0703 41.7939ZM6.63867 9.01953H2.19922L8.19141 3.02734V7.46484C8.18936 7.8762 8.02517 8.27016 7.73447 8.56122C7.44378 8.85228 7.05003 9.01697 6.63867 9.01953Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Valorization Services", "description": "Comprehensive, customized solutions for companies requiring specialized management of their organic waste: from technical analysis to full implementation of valorization chains."}]}, "title": "Who We Are", "description": "Biomket was founded in 2024 with a clear mission: to revolutionize the circular economy by connecting supply and demand for organic waste across Europe, while offering specialized valorization services for companies seeking tailored solutions.", "title_description": {"items": [{"title": "ddd", "description": "ddd"}]}}]}	2026-03-03 12:42:16.331+01	2026-03-03 12:48:50.932+01	\N
01KKE6D55GCJ893FGQ7NHWWKET	01KKE62E7EG6NE9KCY6YC2NT0F	{"title": "Need Help?", "button": {"items": [{"button_url": "#", "button_text": "View Order Status"}, {"button_url": "/marketplace", "button_text": "Continue Shopping"}]}, "description": "Our support team is here to assist you with any questions about your order.", "contact_information": {"items": [{"text": "info@biomket.com", "logo_svg": "<svg width=\\"24\\" height=\\"16\\" viewBox=\\"0 0 24 16\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M23.9781 1.60725C23.9781 1.58159 23.997 1.55662 23.9958 1.53125L16.6719 8.1342L23.987 14.5262C23.9913 14.4806 23.9781 14.4345 23.9781 14.3879V1.60725Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M15.5582 9.15234L12.5683 11.8439C12.417 11.9801 12.2216 12.0484 12.0261 12.0484C11.8347 12.0484 11.6433 11.983 11.493 11.852L8.51132 9.25225L1.14844 15.8927C1.32747 15.9529 1.51964 15.9996 1.72088 15.9996H22.3315C22.6303 15.9996 22.9106 15.9144 23.1543 15.7874L15.5582 9.15234Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M12.0186 10.3095L23.1959 0.23522C22.9428 0.0944393 22.6482 0 22.3325 0H1.7219C1.31076 0 0.934039 0.149366 0.640625 0.377172L12.0186 10.3095Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M0 1.85547V14.3905C0 14.5344 0.0353473 14.6732 0.0737185 14.8058L7.34526 8.25393L0 1.85547Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n"}, {"text": "+34 900 123 456", "logo_svg": "<svg width=\\"22\\" height=\\"22\\" viewBox=\\"0 0 22 22\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M16.7265 14.5546C16.0077 13.845 15.1103 13.845 14.3961 14.5546C13.8513 15.0948 13.3065 15.635 12.7709 16.1843C12.6244 16.3354 12.5008 16.3674 12.3222 16.2667C11.9697 16.0744 11.5943 15.9188 11.2555 15.7082C9.67599 14.7148 8.35289 13.4375 7.18086 12C6.59943 11.2859 6.08209 10.5213 5.72041 9.66068C5.64716 9.48672 5.66089 9.37227 5.80282 9.23035C6.34763 8.70388 6.8787 8.16368 7.41435 7.62347C8.1606 6.87268 8.1606 5.99371 7.40977 5.23834C6.984 4.80801 6.55822 4.38683 6.13245 3.9565C5.69294 3.51701 5.25801 3.07294 4.81392 2.63804C4.09514 1.9376 3.19781 1.9376 2.48361 2.64261C1.93422 3.18282 1.40772 3.73675 0.849181 4.2678C0.331842 4.75765 0.0708829 5.35736 0.0159442 6.0578C-0.071042 7.19772 0.20823 8.27355 0.601957 9.32191C1.40772 11.4919 2.63469 13.4192 4.12261 15.1863C6.13245 17.576 8.53144 19.4667 11.3379 20.831C12.6015 21.4444 13.9108 21.916 15.3347 21.9938C16.3144 22.0487 17.166 21.8015 17.8481 21.037C18.3151 20.5151 18.8416 20.039 19.336 19.54C20.0686 18.7984 20.0731 17.9011 19.3452 17.1686C18.4753 16.2942 17.6009 15.4244 16.7265 14.5546Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M15.8534 10.9044L17.5428 10.616C17.2772 9.06409 16.5447 7.65864 15.4322 6.54161C14.2556 5.36507 12.7677 4.62343 11.1287 4.39453L10.8906 6.09297C12.1588 6.27151 13.3125 6.84376 14.2236 7.75478C15.0843 8.61544 15.6474 9.70501 15.8534 10.9044Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M18.4895 3.56168C16.5391 1.61145 14.0715 0.379974 11.3474 0L11.1094 1.69844C13.4626 2.02805 15.596 3.09472 17.2808 4.77485C18.8786 6.37257 19.927 8.39146 20.307 10.6118L21.9964 10.3234C21.5523 7.75054 20.3391 5.41577 18.4895 3.56168Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n"}]}}	2026-03-11 11:17:16.208+01	2026-03-11 11:20:51.517+01	\N
01KJY58XC6K7V6S8A68DKZEN5R	01KJCR9SD3Z29PV92PGX2GZ0C7	{"title": "Documentation & requirements for the transfer of waste", "button": {"items": [{"button_url": "/quote", "button_text": "Request Quote"}]}, "description": "At Biomket, our goal is to facilitate traceability and legality in the management of non-hazardous organic waste.\\\\n To this end, we provide you with this guide containing the documents you need to transport and deliver waste in compliance with current environmental regulations.", "optimization_steps": {"items": [{"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M9.89326 23.5019H4.15625V32.4902H9.89326V23.5019ZM23.9474 10.1339C24.3185 10.1339 24.6814 10.244 24.99 10.4502C25.2986 10.6564 25.5391 10.9495 25.6812 11.2924C25.8232 11.6353 25.8604 12.0126 25.788 12.3767C25.7156 12.7407 25.5368 13.0751 25.2744 13.3375C25.0119 13.6 24.6775 13.7787 24.3135 13.8511C23.9494 13.9236 23.5721 13.8864 23.2292 13.7444C22.8863 13.6023 22.5932 13.3618 22.387 13.0532C22.1808 12.7445 22.0707 12.3817 22.0707 12.0105C22.0707 11.5128 22.2684 11.0355 22.6204 10.6835C22.9723 10.3316 23.4496 10.1339 23.9474 10.1339ZM7.02471 13.0803C7.39588 13.0803 7.75871 13.1903 8.06732 13.3965C8.37594 13.6028 8.61647 13.8959 8.75851 14.2388C8.90055 14.5817 8.93772 14.959 8.86531 15.3231C8.7929 15.6871 8.61416 16.0215 8.35171 16.2839C8.08925 16.5464 7.75486 16.7251 7.39083 16.7975C7.02679 16.8699 6.64946 16.8328 6.30654 16.6907C5.96363 16.5487 5.67053 16.3082 5.46432 15.9995C5.25811 15.6909 5.14805 15.3281 5.14805 14.9569C5.14805 14.4592 5.34577 13.9819 5.69771 13.6299C6.04965 13.278 6.52699 13.0803 7.02471 13.0803ZM15.9519 5.82031C16.323 5.82031 16.6859 5.93038 16.9945 6.13659C17.3031 6.3428 17.5436 6.63589 17.6857 6.97881C17.8277 7.32172 17.8649 7.69905 17.7925 8.06309C17.72 8.42713 17.5413 8.76152 17.2789 9.02397C17.0164 9.28643 16.682 9.46516 16.318 9.53757C15.9539 9.60998 15.5766 9.57282 15.2337 9.43078C14.8908 9.28874 14.5977 9.0482 14.3915 8.73959C14.1853 8.43097 14.0752 8.06814 14.0752 7.69697C14.0752 7.45053 14.1237 7.20649 14.218 6.97881C14.3124 6.75112 14.4506 6.54424 14.6249 6.36997C14.7991 6.19571 15.006 6.05748 15.2337 5.96316C15.4614 5.86885 15.7054 5.82031 15.9519 5.82031ZM29.9729 3.71094H31.0266L25.1756 9.65293C25.6461 9.89882 26.0326 10.2794 26.2857 10.7461L32.0603 4.88174V5.79453C32.0603 6.00173 32.1426 6.20045 32.2891 6.34696C32.4356 6.49347 32.6343 6.57578 32.8415 6.57578C33.0487 6.57578 33.2474 6.49347 33.3939 6.34696C33.5404 6.20045 33.6228 6.00173 33.6228 5.79453V2.92969C33.6228 2.72249 33.5404 2.52377 33.3939 2.37726C33.2474 2.23075 33.0487 2.14844 32.8415 2.14844H29.9729C29.7657 2.14844 29.567 2.23075 29.4205 2.37726C29.274 2.52377 29.1917 2.72249 29.1917 2.92969C29.1917 3.13689 29.274 3.3356 29.4205 3.48211C29.567 3.62863 29.7657 3.71094 29.9729 3.71094ZM21.3401 11.4898C21.444 10.9686 21.7022 10.4907 22.0811 10.118L18.5593 8.21748C18.4554 8.73888 18.1972 9.21703 17.8182 9.58984L21.3405 11.4903L21.3401 11.4898ZM14.4715 9.90449C14.031 9.60854 13.6888 9.18786 13.4888 8.69629L8.50508 12.749C8.94571 13.045 9.28802 13.4656 9.48818 13.9572L14.4719 9.90449H14.4715ZM24.0395 26.0385C22.7634 27.3145 21.8944 28.9403 21.5424 30.7102C21.1903 32.4802 21.371 34.3147 22.0616 35.982C22.7522 37.6492 23.9216 39.0742 25.4221 40.0768C26.9226 41.0794 28.6867 41.6145 30.4913 41.6145C32.2959 41.6145 34.0599 41.0794 35.5604 40.0768C37.0609 39.0742 38.2303 37.6492 38.9209 35.982C39.6115 34.3147 39.7922 32.4802 39.4402 30.7102C39.0881 28.9403 38.2191 27.3145 36.9431 26.0385C36.0958 25.1912 35.09 24.5191 33.983 24.0606C32.876 23.602 31.6895 23.366 30.4913 23.366C29.293 23.366 28.1066 23.602 26.9996 24.0606C25.8926 24.5191 24.8867 25.1912 24.0395 26.0385ZM25.4599 27.4589C26.455 26.4638 27.7228 25.7861 29.1031 25.5116C30.4833 25.237 31.914 25.3779 33.2142 25.9165C34.5143 26.455 35.6256 27.367 36.4075 28.5372C37.1893 29.7073 37.6066 31.083 37.6066 32.4903C37.6066 33.8976 37.1893 35.2733 36.4075 36.4434C35.6256 37.6135 34.5143 38.5255 33.2142 39.0641C31.914 39.6026 30.4833 39.7435 29.1031 39.469C27.7228 39.1945 26.455 38.5168 25.4599 37.5217C24.7991 36.8609 24.275 36.0765 23.9174 35.2133C23.5598 34.35 23.3758 33.4247 23.3758 32.4903C23.3758 31.5559 23.5598 30.6306 23.9174 29.7673C24.275 28.904 24.7991 28.1196 25.4599 27.4589ZM36.75 40.169C37.2697 39.7442 37.7456 39.2683 38.1704 38.7485L39.7499 40.3281L38.3295 41.7485L36.75 40.169ZM38.8815 42.301L40.302 40.8805C40.4651 40.7182 40.6859 40.6272 40.916 40.6272C41.1461 40.6272 41.3669 40.7182 41.5301 40.8805L45.5992 44.9496C45.7615 45.1128 45.8526 45.3336 45.8526 45.5637C45.8526 45.7939 45.7615 46.0146 45.5992 46.1778L44.1788 47.5982C44.0156 47.7605 43.7948 47.8516 43.5647 47.8516C43.3346 47.8516 43.1138 47.7605 42.9506 47.5982L38.8815 43.5291C38.7193 43.3659 38.6282 43.1452 38.6282 42.915C38.6282 42.6849 38.7193 42.4642 38.8815 42.301ZM24.9079 26.9065C26.0123 25.8022 27.4193 25.0501 28.9511 24.7455C30.4829 24.4408 32.0706 24.5972 33.5135 25.1949C34.9564 25.7925 36.1897 26.8047 37.0574 28.1032C37.925 29.4018 38.3882 30.9285 38.3882 32.4903C38.3882 34.0521 37.925 35.5788 37.0574 36.8774C36.1897 38.176 34.9564 39.1881 33.5135 39.7858C32.0706 40.3835 30.4829 40.5399 28.9511 40.2352C27.4193 39.9305 26.0123 39.1785 24.9079 38.0741C24.1746 37.3409 23.5929 36.4704 23.196 35.5123C22.7991 34.5542 22.5949 33.5274 22.5949 32.4903C22.5949 31.4533 22.7991 30.4265 23.196 29.4684C23.5929 28.5103 24.1746 27.6398 24.9079 26.9065ZM29.9729 9.99785H35.7101V23.1619C33.9615 22.1847 31.9736 21.7185 29.9729 21.8164V9.99785ZM27.1042 18.6878V22.3535C24.713 23.1534 22.6812 24.772 21.3671 26.9238V18.6878H27.1042ZM12.7615 16.0413H18.4985V32.4902H12.7618L12.7615 16.0413Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Documents", "description": "Models and documentation requirements"}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M10.3903 24.9982C10.3903 33.0604 16.9359 39.606 24.9982 39.606C33.0604 39.606 39.606 33.0604 39.606 24.9982H48.5276V28.1782L44.6295 29.6784C44.1373 31.7578 43.3148 33.7449 42.1933 35.5639L43.8858 39.3851L39.3851 43.8858L35.5639 42.1868C33.7467 43.3072 31.7619 44.1296 29.6848 44.6231L28.1845 48.5276H21.8182L20.3115 44.6231C18.2344 44.1296 16.2496 43.3072 14.4324 42.1868L10.6112 43.8858L6.11052 39.3851L7.80954 35.5639C6.68757 33.7432 5.86689 31.7621 5.36679 29.6784L1.46875 28.1782V24.9982H10.3903ZM24.9982 36.2755C18.788 36.2755 13.7208 31.2084 13.7208 24.9982C13.7208 18.788 18.788 13.7208 24.9982 13.7208C31.2084 13.7208 36.2755 18.788 36.2755 24.9982C36.2755 31.2084 31.2084 36.2755 24.9982 36.2755ZM24.9982 34.3802C30.1644 34.3802 34.3802 30.1644 34.3802 24.9982C34.3802 19.8319 30.1644 15.6161 24.9982 15.6161C19.8319 15.6161 15.6161 19.8319 15.6161 24.9982C15.6161 30.1644 19.8319 34.3802 24.9982 34.3802ZM24.9982 32.8116C20.6957 32.8116 17.1847 29.3006 17.1847 24.9982C17.1847 20.6957 20.6957 17.1847 24.9982 17.1847C29.3006 17.1847 32.8116 20.6957 32.8116 24.9982C32.8116 29.3006 29.3006 32.8116 24.9982 32.8116ZM24.2139 20.2705C24.0332 20.3107 23.8569 20.3644 23.6876 20.431C22.5878 20.8639 21.7944 21.8138 21.8568 23.1054L21.8569 23.1058C21.9394 24.7962 23.4567 25.5093 24.8786 25.7434L24.8793 25.7436C25.2656 25.8067 25.6784 25.8975 26.0422 26.0625C26.4368 26.2415 26.777 26.5149 26.8381 27.013C26.8846 27.4002 26.7033 27.6754 26.4364 27.8593C26.059 28.1195 25.5466 28.2339 25.0865 28.2447C24.2313 28.2648 23.3457 27.8908 23.1278 27.0155C23.0774 26.8137 22.949 26.6402 22.7708 26.533C22.5925 26.4258 22.379 26.3937 22.1772 26.4439C21.7572 26.5485 21.501 26.9744 21.6056 27.3944C21.9295 28.6956 22.9891 29.4936 24.2139 29.7355V30.1908C24.2139 30.6237 24.5653 30.9751 24.9982 30.9751C25.431 30.9751 25.7825 30.6237 25.7825 30.1908V29.747C27.2218 29.4931 28.5998 28.5186 28.3953 26.8243L28.3951 26.8234C28.1841 25.0945 26.5867 24.4334 25.1326 24.1955C24.7765 24.1369 24.3981 24.0473 24.0709 23.8873C23.7311 23.7212 23.4452 23.4701 23.4237 23.0294C23.3965 22.4659 23.7823 22.0795 24.2622 21.8906C25.0951 21.5627 26.2551 21.7733 26.6904 22.8087C26.7711 23.0004 26.9246 23.1522 27.1171 23.2308C27.3097 23.3094 27.5256 23.3083 27.7174 23.2278C27.9091 23.1471 28.0609 22.9936 28.1394 22.801C28.218 22.6084 28.2169 22.3926 28.1364 22.2008C27.67 21.0912 26.7625 20.4694 25.7825 20.2618V19.8055C25.7825 19.3727 25.431 19.0212 24.9982 19.0212C24.5653 19.0212 24.2139 19.3727 24.2139 19.8055V20.2705ZM23.3931 7.18777V3.07385C23.3931 2.18797 24.1123 1.46875 24.9982 1.46875C25.884 1.46875 26.6033 2.18797 26.6033 3.07385V7.18777C27.3109 6.74875 28.2494 6.92473 28.7467 7.60914C29.2674 8.32581 29.1083 9.33042 28.3916 9.8511L25.9416 11.6311C25.6674 11.8303 25.3371 11.9377 24.9982 11.9377C24.6592 11.9377 24.3289 11.8303 24.0547 11.6311L21.6047 9.8511C20.8881 9.33042 20.7289 8.32581 21.2496 7.60914C21.7469 6.92473 22.6854 6.74875 23.3931 7.18777ZM36.6903 12.0897V7.97581C36.6903 7.08993 37.4096 6.37071 38.2955 6.37071C39.1814 6.37071 39.9006 7.08993 39.9006 7.97581V12.0897C40.6083 11.6507 41.5468 11.8267 42.044 12.5111C42.5647 13.2278 42.4056 14.2324 41.6889 14.7531L39.239 16.5331C38.9647 16.7323 38.6344 16.8396 38.2955 16.8396C37.9565 16.8396 37.6262 16.7323 37.352 16.5331L34.9021 14.7531C34.1853 14.2324 34.0262 13.2278 34.5469 12.5111C35.0441 11.8267 35.9827 11.6507 36.6903 12.0897ZM10.0957 12.0897V7.97581C10.0957 7.08993 10.8149 6.37071 11.7008 6.37071C12.5867 6.37071 13.306 7.08993 13.306 7.97581V12.0897C14.0137 11.6507 14.9522 11.8267 15.4494 12.5111C15.9701 13.2278 15.811 14.2324 15.0942 14.7531L12.6443 16.5331C12.3701 16.7323 12.0398 16.8396 11.7009 16.8396C11.3619 16.8396 11.0316 16.7323 10.7574 16.5331L8.30738 14.7531C7.59071 14.2324 7.43159 13.2278 7.95228 12.5111C8.44954 11.8267 9.38806 11.6507 10.0957 12.0897Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Processing", "description": "How and where to process them"}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M28.5343 7.07328C30.3814 7.49069 32.1436 8.22092 33.7446 9.23238C33.7714 9.24928 33.8025 9.25078 33.8307 9.23638L35.8306 8.21748C36.3026 7.97698 36.852 8.06398 37.2266 8.43858L39.7642 10.9763C40.1388 11.351 40.2258 11.9003 39.9853 12.3723L38.9664 14.3721C38.9594 14.3855 38.956 14.4006 38.9567 14.4157C38.9574 14.4309 38.9622 14.4456 38.9705 14.4583C39.9819 16.0593 40.7122 17.8214 41.1296 19.6686C41.1366 19.6995 41.1576 19.7226 41.1876 19.7324L43.3211 20.4256C43.825 20.5893 44.152 21.0393 44.152 21.5691V25.158C44.152 25.6878 43.8251 26.1377 43.3211 26.3015L41.1876 26.9947C41.1732 26.9992 41.1601 27.0074 41.1499 27.0187C41.1397 27.0299 41.1327 27.0436 41.1296 27.0585C40.9334 27.9269 40.6677 28.7781 40.3349 29.6038C40.33 29.6163 40.3222 29.6275 40.3122 29.6364C40.3022 29.6454 40.2902 29.6518 40.2772 29.6553C40.2644 29.6591 40.2508 29.6597 40.2376 29.6572C40.2244 29.6547 40.212 29.6491 40.2014 29.6409L37.255 27.4213C37.2403 27.4105 37.2295 27.3954 37.224 27.3781C37.2185 27.3608 37.2186 27.3422 37.2243 27.325C37.6236 26.076 37.8395 24.7451 37.8395 23.3636C37.8395 16.1838 32.0191 10.3634 24.8393 10.3634C17.6595 10.3634 11.8391 16.1837 11.8391 23.3636C11.8391 28.7295 15.0904 33.3355 19.7302 35.3206C19.7489 35.3284 19.7641 35.3424 19.7735 35.3603C19.7828 35.3782 19.7856 35.3988 19.7813 35.4185C19.7774 35.4382 19.7667 35.4559 19.7511 35.4686C19.7356 35.4813 19.716 35.4881 19.696 35.488H17.868C16.5639 35.488 15.4139 36.0558 14.6111 37.0825L13.4173 38.6094C13.4097 38.6194 13.3999 38.6276 13.3887 38.6334C13.3776 38.6392 13.3652 38.6424 13.3526 38.6428C13.0247 38.6584 12.7002 38.5365 12.4521 38.2885L9.91455 35.7507C9.53995 35.3761 9.45295 34.8267 9.69345 34.3547L10.7124 32.3549C10.7194 32.3415 10.7228 32.3264 10.7221 32.3112C10.7214 32.2961 10.7167 32.2814 10.7084 32.2687C9.69684 30.6677 8.96662 28.9056 8.54925 27.0584C8.5461 27.0435 8.53906 27.0298 8.52885 27.0186C8.51864 27.0074 8.50563 26.9991 8.49115 26.9946L6.35765 26.3014C5.85385 26.1376 5.52685 25.6877 5.52685 25.1579V21.569C5.52685 21.0392 5.85375 20.5893 6.35765 20.4255L8.49115 19.7323C8.50565 19.7278 8.51868 19.7195 8.5289 19.7083C8.53911 19.6971 8.54614 19.6833 8.54925 19.6685C8.96664 17.8213 9.69687 16.0592 10.7084 14.4582C10.7166 14.4455 10.7214 14.4308 10.7221 14.4156C10.7228 14.4005 10.7194 14.3854 10.7124 14.372L9.69345 12.3722C9.45295 11.9002 9.53995 11.3508 9.91455 10.9762L12.4523 8.43848C12.827 8.06388 13.3763 7.97688 13.8483 8.21738L15.8481 9.23628C15.8615 9.24337 15.8765 9.24674 15.8917 9.24603C15.9069 9.24533 15.9215 9.24058 15.9342 9.23228C17.5352 8.22077 19.2974 7.49055 21.1446 7.07318C21.1594 7.07003 21.1731 7.06299 21.1843 7.05278C21.1955 7.04257 21.2038 7.02956 21.2083 7.01508L21.9016 4.88158C22.0654 4.37778 22.5153 4.05078 23.045 4.05078H26.634C27.1638 4.05078 27.6137 4.37768 27.7775 4.88158L28.4706 7.01508C28.4751 7.02959 28.4833 7.04264 28.4945 7.05288C28.5057 7.06312 28.5194 7.07016 28.5343 7.07328ZM26.2257 14.5459L25.528 15.4721C25.2976 15.7778 25.3593 16.2163 25.665 16.4466L32.4585 21.5642C32.7642 21.7945 33.2027 21.7328 33.433 21.4271L34.1306 20.5009C34.6432 19.8205 34.5063 18.8476 33.8259 18.335L28.3916 14.2411C27.7111 13.7287 26.7381 13.8655 26.2257 14.5459ZM17.7303 25.6079C17.2178 26.2883 17.3546 27.2613 18.035 27.7738L23.4694 31.8677C24.1499 32.3802 25.1227 32.2434 25.6353 31.563L26.3331 30.6368C26.5634 30.3311 26.5016 29.8926 26.196 29.6623L19.4026 24.5447C19.0969 24.3144 18.6584 24.3761 18.4281 24.6818L17.7303 25.6079ZM21.2726 24.2048C21.2587 24.2233 21.2527 24.2465 21.2559 24.2694C21.2591 24.2923 21.2713 24.313 21.2897 24.327L26.1836 28.0137C26.2021 28.0276 26.2254 28.0336 26.2483 28.0303C26.2712 28.0271 26.2919 28.0149 26.3059 27.9965L30.7844 22.0516C30.7982 22.0331 30.8042 22.0098 30.801 21.9869C30.7978 21.964 30.7856 21.9433 30.7672 21.9294L25.8732 18.2427C25.8547 18.2288 25.8315 18.2228 25.8086 18.226C25.7857 18.2293 25.765 18.2414 25.7511 18.2599L21.2726 24.2048ZM30.8741 24.2534C30.8556 24.2395 30.8323 24.2335 30.8094 24.2367C30.7865 24.24 30.7658 24.2521 30.7519 24.2706L28.4418 27.337C28.428 27.3555 28.422 27.3787 28.4252 27.4016C28.4284 27.4245 28.4406 27.4452 28.459 27.4592L42.6257 38.1314C42.9697 38.3906 43.4632 38.3211 43.7224 37.9771L45.1949 36.0224C45.454 35.6783 45.3847 35.1849 45.0406 34.9257L30.8741 24.2534ZM6.58085 42.0993C5.52235 42.0993 4.65625 42.9653 4.65625 44.0239V45.8612C4.65625 45.9093 4.69545 45.9485 4.74355 45.9485H44.9353C44.9584 45.9485 44.9806 45.9393 44.997 45.9229C45.0133 45.9065 45.0225 45.8843 45.0225 45.8612V44.0239C45.0225 42.9654 44.1566 42.0993 43.098 42.0993H37.3711C37.3578 42.0995 37.3446 42.0966 37.3327 42.0907C37.3208 42.0849 37.3104 42.0764 37.3023 42.0658L34.0362 37.889C33.4785 37.1757 32.7071 36.7973 31.8109 36.7973H17.868C16.9717 36.7973 16.2004 37.1757 15.6426 37.889L12.3766 42.0658C12.3685 42.0764 12.3581 42.0849 12.3462 42.0907C12.3343 42.0965 12.3211 42.0995 12.3079 42.0993H6.58085ZM38.6301 36.885C38.639 36.8763 38.646 36.8657 38.6503 36.8539C38.6547 36.8422 38.6564 36.8297 38.6553 36.8172C38.6547 36.8047 38.6512 36.7925 38.6453 36.7815C38.6393 36.7705 38.631 36.761 38.6208 36.7536L33.6556 33.0131C33.6395 33.0008 33.6196 32.9945 33.5993 32.9954C33.579 32.9963 33.5596 33.0043 33.5447 33.018C32.481 33.9782 31.2661 34.7562 29.9489 35.3205C29.9303 35.3283 29.915 35.3423 29.9056 35.3602C29.8963 35.378 29.8935 35.3986 29.8976 35.4183C29.906 35.4593 29.9412 35.488 29.9831 35.488H31.8109C33.115 35.488 34.2648 36.0558 35.0676 37.0825L36.2616 38.6094C36.2691 38.6194 36.2789 38.6276 36.2901 38.6334C36.3012 38.6392 36.3136 38.6424 36.3262 38.6428C36.6541 38.6584 36.9787 38.5365 37.2267 38.2885L38.6301 36.885Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Platforms", "description": "Direct access to platforms"}, {"svg": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M42.5781 8.08594H7.42188C6.63276 8.08697 5.87626 8.4009 5.31827 8.95889C4.76028 9.51688 4.44635 10.2734 4.44531 11.0625V33.3047C4.44676 34.093 4.76108 34.8484 5.3192 35.4051C5.87733 35.9617 6.6336 36.2741 7.42188 36.2734H11.2031L9.73438 40.3484H7.25547C7.04827 40.3484 6.84955 40.4307 6.70304 40.5773C6.55653 40.7238 6.47422 40.9225 6.47422 41.1297C6.47422 41.3369 6.55653 41.5356 6.70304 41.6821C6.84955 41.8286 7.04827 41.9109 7.25547 41.9109H42.743C42.9502 41.9109 43.1489 41.8286 43.2954 41.6821C43.4419 41.5356 43.5242 41.3369 43.5242 41.1297C43.5242 40.9225 43.4419 40.7238 43.2954 40.5773C43.1489 40.4307 42.9502 40.3484 42.743 40.3484H40.2633L38.7945 36.2734H42.5781C43.3664 36.2741 44.1227 35.9617 44.6808 35.4051C45.2389 34.8484 45.5532 34.093 45.5547 33.3047V11.0625C45.5537 10.2734 45.2397 9.51688 44.6817 8.95889C44.1237 8.4009 43.3672 8.08697 42.5781 8.08594ZM24.2188 34.0703C24.2188 33.8631 24.3011 33.6644 24.4476 33.5179C24.5941 33.3714 24.7928 33.2891 25 33.2891C25.2072 33.2891 25.4059 33.3714 25.5524 33.5179C25.6989 33.6644 25.7813 33.8631 25.7813 34.0703C25.7813 34.2775 25.6989 34.4762 25.5524 34.6227C25.4059 34.7693 25.2072 34.8516 25 34.8516C24.7928 34.8516 24.5941 34.7693 24.4476 34.6227C24.3011 34.4762 24.2188 34.2775 24.2188 34.0703ZM41.9141 29.5859C41.9128 30.1919 41.671 30.7726 41.2418 31.2004C40.8125 31.6282 40.231 31.868 39.625 31.8672H10.375C9.769 31.868 9.18747 31.6282 8.75823 31.2004C8.329 30.7726 8.08718 30.1919 8.08594 29.5859V13.6641C8.08491 13.3628 8.14336 13.0643 8.25793 12.7857C8.37251 12.5071 8.54096 12.2538 8.75362 12.0404C8.96628 11.827 9.21897 11.6577 9.49721 11.5422C9.77544 11.4267 10.0737 11.3672 10.375 11.3672H39.625C39.9263 11.3672 40.2246 11.4267 40.5028 11.5422C40.781 11.6577 41.0337 11.827 41.2464 12.0404C41.459 12.2538 41.6275 12.5071 41.7421 12.7857C41.8566 13.0643 41.9151 13.3628 41.9141 13.6641V29.5859ZM38.6023 40.3484H11.3953L12.8641 36.2734H37.1336L38.6023 40.3484Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M39.6251 12.9297H10.3751C10.279 12.9297 10.1839 12.9487 10.0952 12.9857C10.0065 13.0227 9.9261 13.077 9.85853 13.1452C9.79095 13.2135 9.7376 13.2946 9.70155 13.3836C9.6655 13.4727 9.64747 13.568 9.6485 13.6641V29.5859C9.64721 29.6813 9.66518 29.776 9.70134 29.8643C9.7375 29.9526 9.79109 30.0327 9.85893 30.0998C9.92676 30.1669 10.0074 30.2197 10.0961 30.2549C10.1848 30.2901 10.2797 30.307 10.3751 30.3047H39.6251C39.7205 30.307 39.8153 30.2901 39.904 30.2549C39.9927 30.2197 40.0734 30.1669 40.1412 30.0998C40.209 30.0327 40.2626 29.9526 40.2988 29.8643C40.3349 29.776 40.3529 29.6813 40.3516 29.5859V13.6641C40.3527 13.568 40.3346 13.4727 40.2986 13.3836C40.2625 13.2946 40.2092 13.2135 40.1416 13.1452C40.074 13.077 39.9936 13.0227 39.9049 12.9857C39.8163 12.9487 39.7211 12.9297 39.6251 12.9297ZM37.2032 27.9766H12.7969C12.5897 27.9766 12.391 27.8943 12.2445 27.7477C12.098 27.6012 12.0157 27.4025 12.0157 27.1953C12.0157 26.9881 12.098 26.7894 12.2445 26.6429C12.391 26.4964 12.5897 26.4141 12.7969 26.4141H14.1563V23.0703C14.156 22.9676 14.176 22.8659 14.2152 22.771C14.2543 22.6761 14.3118 22.5898 14.3844 22.5172C14.4571 22.4446 14.5433 22.3871 14.6382 22.3479C14.7332 22.3088 14.8349 22.2888 14.9376 22.2891H19.0626C19.1655 22.288 19.2675 22.3075 19.3628 22.3464C19.458 22.3853 19.5446 22.4428 19.6173 22.5156C19.6901 22.5883 19.7476 22.6749 19.7865 22.7701C19.8254 22.8654 19.8449 22.9674 19.8438 23.0703V26.4141H22.1563V19.25C22.156 19.1473 22.176 19.0456 22.2152 18.9507C22.2543 18.8557 22.3118 18.7695 22.3844 18.6969C22.4571 18.6243 22.5433 18.5667 22.6382 18.5276C22.7332 18.4884 22.8349 18.4684 22.9376 18.4688H27.0626C27.1652 18.4684 27.267 18.4884 27.3619 18.5276C27.4568 18.5667 27.5431 18.6243 27.6157 18.6969C27.6883 18.7695 27.7458 18.8557 27.785 18.9507C27.8241 19.0456 27.8441 19.1473 27.8438 19.25V26.4141H30.1563V16.0391C30.1553 15.9362 30.1748 15.8341 30.2137 15.7389C30.2525 15.6436 30.3101 15.5571 30.3828 15.4843C30.4556 15.4116 30.5421 15.354 30.6374 15.3152C30.7326 15.2763 30.8347 15.2568 30.9376 15.2578H35.0626C35.1652 15.2575 35.267 15.2775 35.3619 15.3167C35.4568 15.3558 35.5431 15.4133 35.6157 15.4859C35.6883 15.5586 35.7458 15.6448 35.785 15.7397C35.8241 15.8347 35.8441 15.9364 35.8438 16.0391V26.4141H37.2032C37.4104 26.4141 37.6091 26.4964 37.7556 26.6429C37.9021 26.7894 37.9844 26.9881 37.9844 27.1953C37.9844 27.4025 37.9021 27.6012 37.7556 27.7477C37.6091 27.8943 37.4104 27.9766 37.2032 27.9766Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M15.7188 23.8516H18.2812V26.4141H15.7188V23.8516ZM23.7188 20.0312H26.2812V26.4141H23.7188V20.0312ZM31.7187 16.8203H34.2812V26.4141H31.7187V16.8203Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "How does Biomket help you?", "description": "Advice and compliance"}]}}	2026-03-05 05:49:37.671+01	2026-03-05 05:52:55.939+01	\N
01KKE4KYZ4JY5DR8NJG7NHPN02	01KJPYWH0G5C03G5B5K6CEDXHH	{"items": [{"title": "Start valorizing your waste today", "richtext": "<ol>\\n<li>Secure payment guarantee backed by the Biomket platform</li>\\n<li>Regulatory compliance and complete traceability of each waste</li>\\n<li>Maximize valorization by selling to the best buyer</li>\\n<li>Greater visibility to companies interested in organic waste</li>\\n<li>Be part of the circular economy and bioeconomy</li>\\n</ol>"}]}	2026-03-11 10:46:02.084+01	2026-03-11 10:46:43.196+01	\N
01KJY9YGWZ9JQN5PAXPF9AVAV4	01KJY9WD57QTH2E5W4HRW3AWF9	{"items": [{"title": "What are LER codes?", "card_deatil": {"items": [{"svg": "<svg width=\\"28\\" height=\\"28\\" viewBox=\\"0 0 28 28\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M21.875 14.7779V3.5C21.875 2.80381 21.5984 2.13613 21.1062 1.64384C20.6139 1.15156 19.9462 0.875 19.25 0.875H5.25C4.55381 0.875 3.88613 1.15156 3.39384 1.64384C2.90156 2.13613 2.625 2.80381 2.625 3.5V22.75C2.625 23.4462 2.90156 24.1139 3.39384 24.6062C3.88613 25.0984 4.55381 25.375 5.25 25.375H14.3631C15.0468 26.0105 15.8583 26.4926 16.7434 26.7891C17.6285 27.0855 18.5667 27.1894 19.4952 27.0938C20.4237 26.9981 21.3211 26.7053 22.1272 26.2347C22.9333 25.7641 23.6296 25.1268 24.1694 24.3653C24.7092 23.6038 25.08 22.7357 25.2571 21.8193C25.4342 20.9028 25.4134 19.9591 25.1962 19.0513C24.9789 18.1435 24.5702 17.2926 23.9975 16.5556C23.4247 15.8186 22.701 15.2125 21.875 14.7779ZM7.875 7H16.625C16.8571 7 17.0796 7.09219 17.2437 7.25628C17.4078 7.42038 17.5 7.64294 17.5 7.875C17.5 8.10706 17.4078 8.32962 17.2437 8.49372C17.0796 8.65781 16.8571 8.75 16.625 8.75H7.875C7.64294 8.75 7.42038 8.65781 7.25628 8.49372C7.09219 8.32962 7 8.10706 7 7.875C7 7.64294 7.09219 7.42038 7.25628 7.25628C7.42038 7.09219 7.64294 7 7.875 7ZM7.875 11.375H16.625C16.8571 11.375 17.0796 11.4672 17.2437 11.6313C17.4078 11.7954 17.5 12.0179 17.5 12.25C17.5 12.4821 17.4078 12.7046 17.2437 12.8687C17.0796 13.0328 16.8571 13.125 16.625 13.125H7.875C7.64294 13.125 7.42038 13.0328 7.25628 12.8687C7.09219 12.7046 7 12.4821 7 12.25C7 12.0179 7.09219 11.7954 7.25628 11.6313C7.42038 11.4672 7.64294 11.375 7.875 11.375ZM9.625 17.5H7.875C7.64294 17.5 7.42038 17.4078 7.25628 17.2437C7.09219 17.0796 7 16.8571 7 16.625C7 16.3929 7.09219 16.1704 7.25628 16.0063C7.42038 15.8422 7.64294 15.75 7.875 15.75H9.625C9.85706 15.75 10.0796 15.8422 10.2437 16.0063C10.4078 16.1704 10.5 16.3929 10.5 16.625C10.5 16.8571 10.4078 17.0796 10.2437 17.2437C10.0796 17.4078 9.85706 17.5 9.625 17.5ZM18.8125 25.375C18.1005 25.375 17.3973 25.2171 16.7537 24.9125C16.1101 24.6079 15.5422 24.1643 15.0907 23.6137C14.6393 23.0631 14.3157 22.4192 14.1432 21.7283C13.9707 21.0375 13.9536 20.3171 14.0932 19.6189C14.2329 18.9207 14.5257 18.2621 14.9505 17.6908C15.3754 17.1194 15.9218 16.6495 16.5502 16.3148C17.1787 15.9801 17.8736 15.789 18.5848 15.7554C19.296 15.7217 20.0059 15.8463 20.6631 16.1201C21.6901 16.548 22.5371 17.3184 23.06 18.3004C23.583 19.2824 23.7495 20.4152 23.5314 21.5061C23.3133 22.5971 22.7239 23.5787 21.8635 24.2841C21.0032 24.9895 19.925 25.375 18.8125 25.375Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M20.2971 18.725L18.2776 21.4183L17.2407 20.3814C17.0757 20.222 16.8546 20.1338 16.6252 20.1358C16.3958 20.1378 16.1763 20.2298 16.0141 20.392C15.8519 20.5543 15.7598 20.7737 15.7578 21.0032C15.7559 21.2326 15.844 21.4536 16.0034 21.6186L17.7534 23.3686C17.8428 23.4559 17.9496 23.5233 18.0669 23.5664C18.1841 23.6094 18.3092 23.627 18.4338 23.6182C18.5584 23.6093 18.6797 23.5742 18.7897 23.515C18.8997 23.4559 18.996 23.3741 19.0721 23.275L21.6971 19.775C21.8363 19.5894 21.8961 19.356 21.8633 19.1263C21.8304 18.8965 21.7077 18.6892 21.5221 18.55C21.3364 18.4108 21.103 18.351 20.8733 18.3838C20.6436 18.4166 20.4363 18.5394 20.2971 18.725Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "The system uses a six-digit code to classify waste into chapters and subchapters.", "richtext": "<p>The EWC code system was introduced by the European Union in its member countries in 2002. Spain incorporated it into its legislation through Order <a href=\\"#\\"><span style=\\"text-decoration: underline;\\"><strong>MAM/304/2002</strong></span></a> , a regulation that was subsequently repealed and replaced by the <span style=\\"text-decoration: underline;\\"><strong><a href=\\"#\\">current Law 7/2022, of April 8, on Waste and Contaminated Soils for a Circular Economy</a> .</strong></span></p>"}]}, "description": "The European Waste Catalogue (EWC codes) is a classification system that groups different types of waste by material, source, and nature."}]}	2026-03-05 07:11:20.095+01	2026-03-11 10:50:24.872+01	\N
01KKECS95BHZ5KHT30E2YECT2N	01KKECQ0H41FYWVMSFF2TDGZWK	{"items": [{"text": "Need help?", "description": "Our team is available to answer any questions about your order.", "contact_info": {"items": [{"text": "info@biomket.com", "logo_svg": "<svg width=\\"24\\" height=\\"16\\" viewBox=\\"0 0 24 16\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M23.9781 1.60725C23.9781 1.58159 23.997 1.55662 23.9958 1.53125L16.6719 8.1342L23.987 14.5262C23.9913 14.4806 23.9781 14.4345 23.9781 14.3879V1.60725V1.60725Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M15.5582 9.15234L12.5683 11.8439C12.417 11.9801 12.2216 12.0484 12.0261 12.0484C11.8347 12.0484 11.6433 11.983 11.493 11.852L8.51132 9.25225L1.14844 15.8927C1.32747 15.9529 1.51964 15.9996 1.72088 15.9996H22.3315C22.6303 15.9996 22.9106 15.9144 23.1543 15.7874L15.5582 9.15234Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M12.0186 10.3095L23.1959 0.23522C22.9428 0.0944393 22.6482 0 22.3325 0H1.7219C1.31076 0 0.934039 0.149366 0.640625 0.377172L12.0186 10.3095Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M0 1.85547V14.3905C0 14.5344 0.0353473 14.6732 0.0737185 14.8058L7.34526 8.25393L0 1.85547Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n"}, {"text": "1345678905", "logo_svg": "<svg width=\\"19\\" height=\\"19\\" viewBox=\\"0 0 19 19\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M14.4446 12.5689C13.8239 11.9561 13.049 11.9561 12.4322 12.5689C11.9617 13.0355 11.4912 13.502 11.0286 13.9764C10.9021 14.1069 10.7954 14.1346 10.6412 14.0476C10.3367 13.8816 10.0125 13.7471 9.71998 13.5653C8.35597 12.7073 7.21336 11.6042 6.20123 10.3628C5.69912 9.74597 5.25235 9.0857 4.94002 8.34241C4.87676 8.19217 4.88862 8.09332 5.01118 7.97076C5.48167 7.51608 5.94029 7.04954 6.40287 6.583C7.04731 5.9346 7.04731 5.17548 6.39891 4.52312C6.03122 4.15147 5.66353 3.78773 5.29584 3.41608C4.91629 3.03653 4.5407 2.65302 4.15719 2.27741C3.53647 1.6725 2.76156 1.6725 2.14479 2.28137C1.67035 2.74791 1.21568 3.2263 0.733333 3.68493C0.286571 4.10798 0.0612129 4.62592 0.0137691 5.23084C-0.0613503 6.21531 0.179822 7.14443 0.519836 8.04983C1.21568 9.92389 2.27526 11.5884 3.56019 13.1145C5.29584 15.1784 7.36756 16.8113 9.79114 17.9895C10.8824 18.5193 12.0131 18.9265 13.2427 18.9937C14.0888 19.0411 14.8241 18.8276 15.4132 18.1674C15.8165 17.7167 16.2712 17.3055 16.6982 16.8745C17.3308 16.234 17.3347 15.4591 16.7061 14.8265C15.9549 14.0713 15.1997 13.3201 14.4446 12.5689Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M13.6842 9.41905L15.1431 9.16997C14.9138 7.82966 14.2812 6.61587 13.3205 5.65117C12.3044 4.63506 11.0194 3.99456 9.60403 3.79688L9.39844 5.2637C10.4936 5.4179 11.4899 5.91211 12.2767 6.6989C13.02 7.4422 13.5063 8.38318 13.6842 9.41905Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M15.967 3.07599C14.2828 1.39171 12.1518 0.328158 9.79934 0L9.59375 1.46683C11.6259 1.75149 13.4683 2.67271 14.9233 4.12372C16.3031 5.50357 17.2085 7.24715 17.5366 9.1647L18.9955 8.91562C18.612 6.69363 17.5643 4.67724 15.967 3.07599Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n"}]}}]}	2026-03-11 13:08:44.972+01	2026-03-11 13:15:37.384+01	\N
01KJSRZ3P9J1C4TWY7ZT4Q52WW	01KJSRV3Z2RV82BTPVA0KYTHWS	{"items": [{"title": "Sector We Serve", "sectors_": {"items": [{"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M4.6875 16.875C3.31375 16.875 2.1875 18.0013 2.1875 19.375V33.125C2.1875 33.2908 2.25335 33.4497 2.37056 33.5669C2.48777 33.6842 2.64674 33.75 2.8125 33.75H5.9375C6.10326 33.75 6.26223 33.6842 6.37944 33.5669C6.49665 33.4497 6.5625 33.2908 6.5625 33.125V30.625C8.0375 30.625 9.29125 29.6562 9.625 28.1388L17.8125 28.1238V33.1238C17.8125 33.2895 17.8783 33.4485 17.9956 33.5657C18.1128 33.6829 18.2717 33.7488 18.4375 33.7488H21.5625C21.7283 33.7488 21.8872 33.6829 22.0044 33.5657C22.1217 33.4485 22.1875 33.2895 22.1875 33.1238V28.7925C22.1876 28.1295 22.4511 27.4937 22.92 27.025L26.5625 23.3825L27.37 24.1913C27.4744 24.2965 27.6128 24.3611 27.7605 24.3737C27.9082 24.3863 28.0555 24.346 28.1763 24.26L30.0025 22.9538C30.2271 22.7911 30.3828 22.5505 30.4392 22.2791C30.4956 22.0076 30.4487 21.7249 30.3075 21.4862L28.27 18.0875C28.0475 17.7174 27.733 17.4113 27.3572 17.1988C26.9813 16.9863 26.5568 16.8748 26.125 16.875H4.6875ZM4.6875 18.125H26.125C26.565 18.125 26.9712 18.355 27.1975 18.7325L29.1675 22.0163L27.88 22.9338L27.4463 22.5C27.2107 22.2678 26.8933 22.1376 26.5625 22.1376C26.2317 22.1376 25.9143 22.2678 25.6787 22.5L22.0362 26.1425C21.3332 26.8453 20.938 27.7985 20.9375 28.7925V32.5H19.0625V27.5C19.0625 27.3342 18.9967 27.1753 18.8794 27.0581C18.7622 26.9408 18.6033 26.875 18.4375 26.875H9.0625C8.89674 26.875 8.73777 26.9408 8.62056 27.0581C8.50335 27.1753 8.4375 27.3342 8.4375 27.5C8.4375 28.5437 7.605 29.375 6.5625 29.375V26.875H5.3125V32.5H3.4375V19.375C3.4375 18.6788 3.99 18.125 4.6875 18.125Z\\" fill=\\"#053F31\\"/>\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M0.632813 32.5C0.467052 32.5 0.308081 32.5658 0.190871 32.6831C0.0736605 32.8003 0.0078125 32.9592 0.0078125 33.125C0.0078125 33.2908 0.0736605 33.4497 0.190871 33.5669C0.308081 33.6842 0.467052 33.75 0.632813 33.75H11.8628C12.0286 33.75 12.1875 33.6842 12.3048 33.5669C12.422 33.4497 12.4878 33.2908 12.4878 33.125C12.4878 32.9592 12.422 32.8003 12.3048 32.6831C12.1875 32.5658 12.0286 32.5 11.8628 32.5H0.632813ZM16.2378 32.5C16.0721 32.5 15.9131 32.5658 15.7959 32.6831C15.6787 32.8003 15.6128 32.9592 15.6128 33.125C15.6128 33.2908 15.6787 33.4497 15.7959 33.5669C15.9131 33.6842 16.0721 33.75 16.2378 33.75H39.3628C39.5286 33.75 39.6875 33.6842 39.8048 33.5669C39.922 33.4497 39.9878 33.2908 39.9878 33.125C39.9878 32.9592 39.922 32.8003 39.8048 32.6831C39.6875 32.5658 39.5286 32.5 39.3628 32.5H16.2378ZM28.4353 14.6875V15C28.4353 16.0425 27.6028 16.875 26.5603 16.875H26.2478V18.125H26.5603C28.2791 18.125 29.6853 16.7188 29.6853 15V14.6875H28.4353Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M13.4375 33.125C13.4375 33.2908 13.5033 33.4497 13.6206 33.5669C13.7378 33.6842 13.8967 33.75 14.0625 33.75C14.2283 33.75 14.3872 33.6842 14.5044 33.5669C14.6217 33.4497 14.6875 33.2908 14.6875 33.125C14.6875 32.9592 14.6217 32.8003 14.5044 32.6831C14.3872 32.5658 14.2283 32.5 14.0625 32.5C13.8967 32.5 13.7378 32.5658 13.6206 32.6831C13.5033 32.8003 13.4375 32.9592 13.4375 33.125Z\\" fill=\\"#053F31\\"/>\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M38.4375 22.6191C37.6095 22.6218 36.8162 22.9519 36.2307 23.5373C35.6452 24.1228 35.3151 24.9162 35.3125 25.7441V27.3066H36.875C38.5938 27.3066 40 25.9004 40 24.1816V22.6191H39.375H38.4375ZM38.4375 23.8691H38.75V24.1816C38.75 25.2254 37.9175 26.0566 36.875 26.0566H36.5625V25.7441C36.5625 24.7016 37.395 23.8691 38.4375 23.8691Z\\" fill=\\"#053F31\\"/>\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M31.875 22.6179V24.1804C31.875 25.8991 33.2812 27.3054 35 27.3054H36.5625V25.7429C36.5625 24.0254 35.1562 22.6179 33.4375 22.6179H31.875ZM33.125 23.8679H33.4375C34.48 23.8679 35.3125 24.7004 35.3125 25.7429V26.0554H35C33.9575 26.0554 33.125 25.2241 33.125 24.1804V23.8679ZM38.4375 17.3066C37.6095 17.3093 36.8162 17.6394 36.2307 18.2248C35.6452 18.8103 35.3151 19.6037 35.3125 20.4316V21.9941H36.875C38.5938 21.9941 40 20.5866 40 18.8691V17.3066H39.375H38.4375ZM38.4375 18.5566H38.75V18.8691C38.75 19.9116 37.9175 20.7441 36.875 20.7441H36.5625V20.4316C36.5625 19.3879 37.395 18.5566 38.4375 18.5566Z\\" fill=\\"#053F31\\"/>\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M31.875 17.3066V18.8691C31.875 20.5866 33.2812 21.9941 35 21.9941H36.5625V20.4316C36.5625 18.7129 35.1562 17.3066 33.4375 17.3066H31.875ZM33.125 18.5566H33.4375C34.48 18.5566 35.3125 19.3879 35.3125 20.4316V20.7441H35C33.9575 20.7441 33.125 19.9116 33.125 18.8691V18.5566ZM38.4375 11.9941C37.6095 11.9968 36.8162 12.3269 36.2307 12.9123C35.6452 13.4978 35.3151 14.2912 35.3125 15.1191V16.6816H36.875C38.5938 16.6816 40 15.2741 40 13.5566V11.9941H39.375H38.4375ZM38.4375 13.2441H38.75V13.5566C38.75 14.5991 37.9175 15.4316 36.875 15.4316H36.5625V15.1191C36.5625 14.0754 37.395 13.2441 38.4375 13.2441Z\\" fill=\\"#053F31\\"/>\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M31.875 11.995V13.5575C31.875 15.275 33.2812 16.6825 35 16.6825H36.5625V15.12C36.5625 13.4012 35.1562 11.995 33.4375 11.995H31.875ZM33.125 13.245H33.4375C34.48 13.245 35.3125 14.0763 35.3125 15.12V15.4325H35C33.9575 15.4325 33.125 14.6 33.125 13.5575V13.245ZM35.9375 5.625L35.4962 6.0675L34.8312 6.73125C34.2475 7.3184 33.9199 8.11269 33.9199 8.94063C33.9199 9.76856 34.2475 10.5628 34.8312 11.15L35.495 11.8125L35.9375 12.2538L37.0437 11.15C37.6275 10.5628 37.9551 9.76856 37.9551 8.94063C37.9551 8.11269 37.6275 7.3184 37.0437 6.73125L36.3787 6.0675L35.9375 5.625ZM35.9375 7.3925L36.16 7.615C36.8975 8.3525 36.8975 9.52875 36.16 10.2663L35.9375 10.4862L35.7175 10.2663C35.5422 10.0928 35.4031 9.88637 35.3082 9.65883C35.2132 9.43129 35.1643 9.18718 35.1643 8.94063C35.1643 8.69407 35.2132 8.44996 35.3082 8.22242C35.4031 7.99488 35.5422 7.78843 35.7175 7.615L35.9375 7.3925ZM35.3125 28.2437V33.2437H36.5625V28.2437H35.3125ZM2.1875 19.375C2.1875 20.4175 1.355 21.25 0.3125 21.25H0V22.5H0.3125C2.03125 22.5 3.4375 21.0925 3.4375 19.375C2.765 19.3625 2.2825 19.345 2.1875 19.375Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Livestock", "description": "Slurry, manure, digestate, animal by-products"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M28.4089 20.4906C28.3745 20.3732 28.313 20.2655 28.2294 20.1762C28.1457 20.0869 28.0423 20.0185 27.9274 19.9764C27.8799 19.9591 27.4948 19.8228 26.8967 19.7353C29.452 17.0164 28.6083 13.8397 28.4089 13.2193C28.3745 13.1019 28.313 12.9942 28.2294 12.9049C28.1457 12.8156 28.0423 12.7471 27.9274 12.7051C27.8177 12.665 25.9051 11.9906 23.7261 12.7489C23.8491 12.2442 23.9211 11.6892 23.9211 11.0803C23.9211 7.18448 20.9708 5.47214 20.3788 5.16815C20.2715 5.10941 20.1518 5.0767 20.0295 5.07269C19.9072 5.06867 19.7857 5.09345 19.6747 5.14503C19.5282 5.21308 16.0865 6.86019 16.0865 11.0803C16.0865 11.6905 16.1588 12.2466 16.2823 12.7521C14.0994 11.9887 12.1817 12.6649 12.0718 12.7051C11.9569 12.7471 11.8535 12.8156 11.7698 12.9049C11.6862 12.9942 11.6247 13.1019 11.5904 13.2193C11.3909 13.8397 10.5472 17.0164 13.1025 19.7353C12.5044 19.8228 12.1193 19.9591 12.0718 19.9764C11.9569 20.0185 11.8535 20.0869 11.7698 20.1762C11.6862 20.2655 11.6247 20.3732 11.5903 20.4907C11.3867 21.124 10.5112 24.4212 13.2661 27.176C14.8603 28.7703 16.6296 29.1506 17.9553 29.1506C18.4461 29.1506 18.875 29.0983 19.2128 29.0363V34.1482C19.2128 34.5796 19.5625 34.9295 19.994 34.9295C20.4255 34.9295 20.7753 34.5796 20.7753 34.1482V29.0343C21.1937 29.1115 21.6184 29.1504 22.0439 29.1505C23.3694 29.1505 25.139 28.77 26.7331 27.176C29.4879 24.421 28.6125 21.1239 28.4089 20.4906ZM19.2128 26.6009C19.1989 26.8926 19.1606 27.1826 19.0981 27.4678C18.263 27.6534 16.1736 27.8739 14.371 26.0711C12.5954 24.2957 12.7815 22.241 12.9781 21.3444C13.5032 21.2303 14.5278 21.1031 15.6621 21.4712C15.7368 21.4992 15.8113 21.5256 15.8854 21.5502C16.4861 21.778 17.1099 22.1499 17.7011 22.741C18.8275 23.8674 19.1639 25.1057 19.2128 26.0796V26.6009ZM19.2128 19.3297C19.1989 19.6214 19.1606 19.9114 19.0981 20.1966C18.5807 20.3117 17.5818 20.4394 16.4679 20.0917C16.3569 20.0489 16.2446 20.0092 16.1313 19.9728C15.5486 19.7426 14.9453 19.3742 14.3709 18.7999C12.5954 17.0244 12.7815 14.9697 12.9781 14.0732C13.8124 13.8918 15.9076 13.6764 17.7011 15.4698C17.7125 15.4812 17.7228 15.4927 17.7339 15.504C17.801 15.5792 17.8696 15.6529 17.9399 15.725C18.875 16.7806 19.1676 17.9076 19.2128 18.8085V19.3297ZM20.005 15.4099C19.7602 15.2528 19.4074 14.994 19.049 14.6199C19.0123 14.5795 18.9751 14.5394 18.9375 14.4998C18.2848 13.7747 17.6489 12.6625 17.6489 11.0803C17.6489 8.5337 19.2786 7.21237 19.9998 6.75237C20.7721 7.24659 22.3585 8.56792 22.3585 11.0803C22.3585 12.5733 21.7982 13.6446 21.1895 14.3686C21.0662 14.4922 20.9472 14.62 20.8328 14.7519C20.5205 15.0556 20.2214 15.2721 20.005 15.4099ZM20.7801 19.0765C20.779 18.1593 21.0163 16.9456 21.9877 15.8057C22.1074 15.6868 22.2226 15.5635 22.3332 15.436C24.1259 13.6727 26.1909 13.8881 27.0207 14.0717C27.2174 14.9674 27.4047 17.0234 25.6282 18.7999C25.0549 19.3732 24.4527 19.7414 23.8711 19.9717C23.7558 20.0087 23.6416 20.049 23.5287 20.0926C22.415 20.4397 21.4168 20.3115 20.9014 20.1968C20.8436 19.9364 20.7823 19.554 20.78 19.0964L20.7801 19.0765ZM25.6282 26.0711C23.8252 27.8742 21.7357 27.6533 20.9026 27.4685C20.721 26.6374 20.5014 24.5377 22.2981 22.741C22.8729 22.1661 23.4768 21.7976 24.0599 21.5674C24.1729 21.5311 24.2849 21.4916 24.3957 21.4489C25.5071 21.102 26.5037 21.2285 27.0207 21.3428C27.2174 22.2386 27.4047 24.2946 25.6282 26.0711Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M24.1684 0.435234C22.8066 0.146484 21.4041 0 20 0C14.6578 0 9.63539 2.08031 5.85789 5.85789C2.08039 9.63539 0 14.6578 0 20C0 24.4514 1.49766 28.7966 4.22625 32.2954C3.9193 32.7702 3.75406 33.3234 3.75406 33.9023C3.75406 34.6952 4.06289 35.4407 4.62359 36.0015C5.1843 36.5622 5.92984 36.871 6.72281 36.871C7.51578 36.871 8.26133 36.5622 8.82203 36.0015C9.38281 35.4407 9.69156 34.6952 9.69156 33.9023C9.69156 33.1093 9.38273 32.3638 8.82203 31.803C8.26133 31.2423 7.51578 30.9334 6.72281 30.9334C6.26063 30.9327 5.80472 31.0404 5.39172 31.2479C2.91891 28.0379 1.5625 24.0673 1.5625 20C1.5625 9.83352 9.83352 1.5625 20 1.5625C21.2955 1.5625 22.5888 1.6975 23.8443 1.96375C24.2666 2.0532 24.6811 1.78359 24.7706 1.36156C24.8602 0.939453 24.5905 0.524766 24.1684 0.435234ZM5.72844 32.9078C6.00258 32.6336 6.36266 32.4966 6.72281 32.4966C7.08297 32.4966 7.44305 32.6337 7.71719 32.9078C7.98281 33.1734 8.12906 33.5266 8.12906 33.9022C8.12906 34.2778 7.98281 34.6309 7.71719 34.8966C7.16891 35.445 6.27672 35.4448 5.72844 34.8966C5.46281 34.631 5.31656 34.2778 5.31656 33.9022C5.31656 33.5266 5.46281 33.1734 5.72844 32.9078ZM35.7738 7.70461C36.0807 7.22977 36.2459 6.67664 36.2459 6.09773C36.2459 5.30477 35.9371 4.55922 35.3764 3.99852C34.8157 3.43773 34.0702 3.12898 33.2772 3.12898C32.4842 3.12898 31.7387 3.43781 31.178 3.99852C30.6173 4.55922 30.3084 5.30477 30.3084 6.09773C30.3084 6.8907 30.6173 7.63625 31.178 8.19695C31.7387 8.75773 32.4842 9.06648 33.2772 9.06648C33.7394 9.0672 34.1953 8.9595 34.6084 8.75203C37.0811 11.9621 38.4375 15.9327 38.4375 20C38.4375 30.1665 30.1665 38.4375 20 38.4375C18.9081 38.4377 17.8182 38.3418 16.7431 38.1509C16.3186 38.0753 15.9126 38.358 15.837 38.783C15.7612 39.2077 16.0442 39.6134 16.469 39.6891C17.6346 39.8961 18.8162 40.0001 20 40C25.3422 40 30.3646 37.9196 34.1422 34.1422C37.9198 30.3648 40 25.3422 40 20C40 15.5486 38.5023 11.2034 35.7738 7.70461ZM34.2716 7.09211C34.0061 7.35773 33.6529 7.50398 33.2773 7.50398C32.9016 7.50398 32.5484 7.35781 32.2829 7.09211C31.7345 6.54383 31.7345 5.65172 32.2829 5.10336C32.5484 4.83773 32.9016 4.69148 33.2773 4.69148C33.6529 4.69148 34.006 4.83773 34.2716 5.10336C34.4026 5.23363 34.5065 5.3886 34.5772 5.55929C34.6479 5.72997 34.684 5.91299 34.6835 6.09773C34.6835 6.47336 34.5373 6.82648 34.2716 7.09211ZM13.1355 37.1173L12.8405 37.8408L13.1333 37.1165C12.733 36.9549 12.2779 37.148 12.1162 37.548C11.9545 37.948 12.1477 38.4034 12.5477 38.5652L12.5718 38.5747C12.6639 38.6099 12.7587 38.6266 12.852 38.6266C13.1667 38.6266 13.4641 38.4362 13.5832 38.1255C13.7376 37.7224 13.5384 37.2716 13.1355 37.1173ZM27.4862 1.44867L27.4723 1.44313C27.0718 1.28281 26.6171 1.47773 26.4568 1.87836C26.2965 2.27898 26.4914 2.73352 26.892 2.89383L26.9009 2.89742C26.9938 2.93507 27.0931 2.95444 27.1934 2.95445C27.5024 2.95445 27.7951 2.76984 27.918 2.4657C28.0796 2.06563 27.8863 1.61031 27.4862 1.44867Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Agriculture", "description": "Plant biomass, pruning residues, crop by-products"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M11.4707 29.7362C11.5185 29.6901 11.5566 29.635 11.5828 29.574C11.609 29.5129 11.6228 29.4473 11.6234 29.381C11.624 29.3146 11.6113 29.2487 11.5862 29.1873C11.561 29.1258 11.5239 29.07 11.4769 29.0231C11.43 28.9761 11.3742 28.939 11.3127 28.9138C11.2513 28.8887 11.1854 28.876 11.119 28.8766C11.0527 28.8772 10.987 28.891 10.926 28.9172C10.865 28.9434 10.8099 28.9815 10.7638 29.0292L10.25 29.543V25.207L14.0355 21.4215C14.1582 21.2987 14.273 21.1702 14.3813 21.0378C14.4235 21.015 14.464 20.988 14.4998 20.9525L14.5 20.9573C14.5 21.0899 14.5527 21.217 14.6464 21.3108C14.7402 21.4046 14.8674 21.4573 15 21.4573C15.1326 21.4573 15.2598 21.4046 15.3536 21.3108C15.4473 21.217 15.5 21.0899 15.5 20.9573C15.5001 20.7794 15.4526 20.6048 15.3624 20.4516C15.2722 20.2984 15.1425 20.1722 14.987 20.086C15.3244 19.4017 15.4999 18.649 15.5 17.886V15.207C15.5001 15.0292 15.4526 14.8546 15.3624 14.7014C15.2722 14.5482 15.1425 14.4219 14.987 14.3357C15.3244 13.6515 15.4999 12.8989 15.5 12.136V4.5C15.5 4.36739 15.4473 4.24021 15.3536 4.14645C15.2598 4.05268 15.1326 4 15 4C14.8674 4 14.7402 4.05268 14.6464 4.14645C14.5527 4.24021 14.5 4.36739 14.5 4.5V8.459C14.3688 8.45845 14.2388 8.48388 14.1174 8.53383C13.9961 8.58377 13.8858 8.65724 13.793 8.75L12.5955 9.9475L10.25 6.1095V4.5C10.25 4.36739 10.1973 4.24021 10.1036 4.14645C10.0098 4.05268 9.88261 4 9.75 4C9.61739 4 9.49021 4.05268 9.39645 4.14645C9.30268 4.24021 9.25 4.36739 9.25 4.5V6.1095L6.9045 9.9475L5.707 8.75C5.61416 8.65727 5.5039 8.58383 5.38257 8.53388C5.26123 8.48394 5.13121 8.45849 5 8.459V4.5C5 4.36739 4.94732 4.24021 4.85355 4.14645C4.75979 4.05268 4.63261 4 4.5 4C4.36739 4 4.24022 4.05268 4.14645 4.14645C4.05268 4.24021 4 4.36739 4 4.5V12.136C4.00008 12.8989 4.1756 13.6515 4.513 14.3357C4.35746 14.4219 4.22784 14.5482 4.13762 14.7014C4.04741 14.8546 3.99989 15.0292 4 15.207V17.886C4.00008 18.6489 4.1756 19.4015 4.513 20.0858C4.35746 20.1719 4.22784 20.2982 4.13762 20.4514C4.04741 20.6046 3.99989 20.7792 4 20.957V23.636C4 24.9715 4.52 26.2272 5.4645 27.1715L9.25 30.957V35.5C9.25 35.6326 9.30268 35.7598 9.39645 35.8536C9.49021 35.9473 9.61739 36 9.75 36C9.88261 36 10.0098 35.9473 10.1036 35.8536C10.1973 35.7598 10.25 35.6326 10.25 35.5V30.957L11.4707 29.7362ZM14.5 15.207V17.886C14.5 18.9545 14.084 19.959 13.3285 20.7145L10.25 23.793V19.457L14.0355 15.6715C14.156 15.551 14.269 15.4253 14.3755 15.2952C14.4214 15.2726 14.4634 15.2428 14.5 15.207ZM14.5 9.457V12.136C14.5 13.2045 14.084 14.209 13.3285 14.9645L10.25 18.043V13.707L14.5 9.457ZM9.75 7.20875L11.868 10.6748L9.75 12.793L7.632 10.675L9.75 7.20875ZM9.25 13.7072V18.043L6.1715 14.9645C5.7989 14.5939 5.50351 14.1531 5.30242 13.6676C5.10133 13.1821 4.99854 12.6615 5 12.136V9.457L9.25 13.7072ZM5.4645 15.6715L9.25 19.457V23.793L6.1715 20.7145C5.7989 20.3439 5.50351 19.9031 5.30242 19.4176C5.10133 18.9321 4.99854 18.4115 5 17.886V15.207C5.03725 15.2445 5.08 15.2723 5.12475 15.2955C5.231 15.4255 5.344 15.5513 5.4645 15.6715ZM5 23.636V20.957C5.03725 20.9945 5.08 21.0222 5.12475 21.0455C5.23125 21.1755 5.34425 21.3012 5.4645 21.4215L9.25 25.207V29.543L6.1715 26.4645C5.7989 26.0939 5.50351 25.6531 5.30242 25.1676C5.10133 24.6821 4.99854 24.1615 5 23.636Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M7 8C7.13261 8 7.25979 7.94732 7.35355 7.85355C7.44732 7.75979 7.5 7.63261 7.5 7.5V4.5C7.5 4.36739 7.44732 4.24021 7.35355 4.14645C7.25979 4.05268 7.13261 4 7 4C6.86739 4 6.74021 4.05268 6.64645 4.14645C6.55268 4.24021 6.5 4.36739 6.5 4.5V7.5C6.5 7.63261 6.55268 7.75979 6.64645 7.85355C6.74021 7.94732 6.86739 8 7 8ZM12.5 8C12.6326 8 12.7598 7.94732 12.8536 7.85355C12.9473 7.75979 13 7.63261 13 7.5V4.5C13 4.36739 12.9473 4.24021 12.8536 4.14645C12.7598 4.05268 12.6326 4 12.5 4C12.3674 4 12.2402 4.05268 12.1464 4.14645C12.0527 4.24021 12 4.36739 12 4.5V7.5C12 7.63261 12.0527 7.75979 12.1464 7.85355C12.2402 7.94732 12.3674 8 12.5 8ZM35.9785 17.2715C35.8847 17.1778 35.7576 17.1251 35.625 17.1251C35.4924 17.1251 35.3653 17.1778 35.2715 17.2715L31.7488 20.7943C31.6563 20.7011 31.5463 20.6271 31.4251 20.5766C31.304 20.5261 31.174 20.5001 31.0427 20.5H29.274L30.3295 16.1275L32.2285 14.2285C32.2763 14.1824 32.3143 14.1272 32.3405 14.0662C32.3668 14.0052 32.3806 13.9396 32.3811 13.8732C32.3817 13.8068 32.3691 13.741 32.3439 13.6795C32.3188 13.6181 32.2816 13.5622 32.2347 13.5153C32.1878 13.4684 32.1319 13.4312 32.0705 13.4061C32.009 13.3809 31.9432 13.3683 31.8768 13.3689C31.8104 13.3695 31.7448 13.3832 31.6838 13.4094C31.6228 13.4357 31.5676 13.4737 31.5215 13.5215L29.6225 15.4205L25.25 16.4757V14.707C25.2499 14.5758 25.2239 14.4459 25.1734 14.3247C25.1229 14.2036 25.0489 14.0937 24.9557 14.0013L28.4785 10.4785C28.5263 10.4324 28.5643 10.3772 28.5906 10.3162C28.6168 10.2552 28.6305 10.1896 28.6311 10.1232C28.6317 10.0568 28.6191 9.99097 28.5939 9.92952C28.5688 9.86808 28.5316 9.81225 28.4847 9.7653C28.4378 9.71836 28.3819 9.68123 28.3205 9.65609C28.259 9.63095 28.1932 9.6183 28.1268 9.61887C28.0604 9.61945 27.9948 9.63324 27.9338 9.65945C27.8728 9.68565 27.8176 9.72374 27.7715 9.7715L23.543 14L21.7145 15.8285C21.1752 16.3681 20.7671 17.0244 20.5217 17.7467C20.3509 17.6976 20.1699 17.6952 19.9978 17.7397C19.8257 17.7843 19.6686 17.8741 19.543 18L17.7145 19.8285C17.1752 20.3681 16.7671 21.0244 16.5217 21.7467C16.3509 21.6976 16.1699 21.6952 15.9978 21.7397C15.8257 21.7843 15.6686 21.8741 15.543 22L13.7145 23.8285C13.2487 24.2917 12.8794 24.8427 12.6281 25.4495C12.3767 26.0564 12.2482 26.7071 12.25 27.364V32.793L11.0215 34.0215C10.9737 34.0676 10.9357 34.1228 10.9094 34.1838C10.8832 34.2448 10.8695 34.3104 10.8689 34.3768C10.8683 34.4432 10.8809 34.509 10.9061 34.5705C10.9312 34.6319 10.9684 34.6878 11.0153 34.7347C11.0622 34.7816 11.1181 34.8188 11.1795 34.8439C11.241 34.8691 11.3068 34.8817 11.3732 34.8811C11.4396 34.8806 11.5052 34.8668 11.5662 34.8405C11.6272 34.8143 11.6824 34.7763 11.7285 34.7285L12.957 33.5H18.386C19.0429 33.5018 19.6936 33.3732 20.3004 33.1219C20.9073 32.8705 21.4583 32.5012 21.9215 32.0355L23.75 30.207C23.8759 30.0813 23.9657 29.9242 24.0103 29.7521C24.0548 29.5799 24.0524 29.3989 24.0033 29.228C24.7257 28.9828 25.382 28.5747 25.9215 28.0352L27.75 26.2068C27.8759 26.0811 27.9657 25.924 28.0103 25.7518C28.0548 25.5796 28.0524 25.3987 28.0033 25.2278C28.7257 24.9825 29.382 24.5744 29.9215 24.035L31.75 22.207L35.9785 17.9785C36.0722 17.8847 36.1249 17.7576 36.1249 17.625C36.1249 17.4924 36.0722 17.3653 35.9785 17.2715ZM29.1985 16.5515L28.2453 20.5H25.25V17.5045L29.1985 16.5515ZM22.4215 16.5355L24.25 14.707V20.7927L21.25 23.7927V19.364C21.25 18.2955 21.666 17.291 22.4215 16.5355ZM18.4215 20.5355L20.25 18.707V24.7927L17.25 27.7927V23.364C17.25 22.2955 17.666 21.291 18.4215 20.5355ZM13.25 27.364C13.25 26.2955 13.666 25.291 14.4215 24.5355L16.25 22.707V28.7927L13.25 31.7927V27.364ZM23.043 29.5L21.2145 31.3285C20.8439 31.7011 20.4031 31.9965 19.9176 32.1976C19.4321 32.3987 18.9115 32.5015 18.386 32.5H13.957L14.8713 31.5858L14.8715 31.5855L16.957 29.5H23.043ZM27.043 25.5L25.2145 27.3285C24.8439 27.7011 24.4031 27.9965 23.9176 28.1976C23.4321 28.3987 22.9115 28.5015 22.386 28.5H17.957L20.957 25.5H27.043ZM29.2145 23.3285C28.8439 23.7011 28.4031 23.9965 27.9176 24.1976C27.4321 24.3987 26.9115 24.5015 26.386 24.5H21.957L24.957 21.5H31.043L29.2145 23.3285Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M26.6464 15.214C26.6928 15.2605 26.7478 15.2974 26.8085 15.3226C26.8692 15.3478 26.9342 15.3608 26.9999 15.3608C27.0656 15.3608 27.1306 15.3478 27.1913 15.3226C27.2519 15.2974 27.307 15.2605 27.3534 15.214L30.2839 12.2835C30.3316 12.2373 30.3697 12.1822 30.3959 12.1212C30.4221 12.0602 30.4359 11.9946 30.4365 11.9282C30.4371 11.8618 30.4244 11.7959 30.3993 11.7345C30.3742 11.673 30.337 11.6172 30.2901 11.5703C30.2431 11.5233 30.1873 11.4862 30.1259 11.4611C30.0644 11.4359 29.9986 11.4233 29.9322 11.4238C29.8658 11.4244 29.8002 11.4382 29.7392 11.4644C29.6782 11.4906 29.623 11.5287 29.5769 11.5765L26.6464 14.507C26.5527 14.6007 26.5 14.7279 26.5 14.8605C26.5 14.9931 26.5527 15.1202 26.6464 15.214ZM30.5354 19.103C30.6331 19.2007 30.7609 19.2495 30.8889 19.2495C31.0169 19.2495 31.1449 19.2007 31.2424 19.103L34.1729 16.1725C34.2206 16.1263 34.2587 16.0712 34.2849 16.0102C34.3111 15.9492 34.3249 15.8836 34.3255 15.8172C34.3261 15.7508 34.3134 15.6849 34.2883 15.6235C34.2632 15.562 34.226 15.5062 34.1791 15.4593C34.1321 15.4123 34.0763 15.3752 34.0149 15.3501C33.9534 15.3249 33.8876 15.3123 33.8212 15.3128C33.7548 15.3134 33.6892 15.3272 33.6282 15.3534C33.5672 15.3796 33.512 15.4177 33.4659 15.4655L30.5354 18.396C30.4417 18.4897 30.389 18.6169 30.389 18.7495C30.389 18.8821 30.4417 19.0092 30.5354 19.103Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Agri-food", "description": "Whey, grape pomace, bagasse, processing by-products"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M33.2179 34.8995C33.1453 34.9001 33.0733 34.8861 33.0062 34.8583C32.0029 34.4778 30.9751 34.1653 29.9297 33.9231C29.7981 33.892 29.6812 33.8166 29.5987 33.7094C29.5162 33.6023 29.4732 33.47 29.4768 33.3348V28.9172C29.4765 28.8244 29.4983 28.7328 29.5402 28.65C29.5821 28.5672 29.643 28.4955 29.7179 28.4407C29.7927 28.387 29.879 28.3515 29.9699 28.3372C30.0608 28.3229 30.1539 28.3302 30.2415 28.3583C31.1559 28.6378 32.1329 28.6378 33.0474 28.3583C33.1359 28.3318 33.2294 28.3265 33.3204 28.3428C33.4113 28.3592 33.4972 28.3968 33.5709 28.4525C33.6439 28.5073 33.7032 28.5783 33.7441 28.66C33.7849 28.7417 33.8062 28.8317 33.8062 28.9231V34.3172C33.807 34.413 33.7844 34.5076 33.7403 34.5927C33.6962 34.6778 33.632 34.7508 33.5532 34.8054C33.4527 34.868 33.3364 34.9006 33.2179 34.8995ZM30.6532 32.8878C31.3474 33.0642 32.0121 33.2583 32.6297 33.476V29.6583C31.9754 29.7672 31.3076 29.7672 30.6532 29.6583V32.8878Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M31.6465 29.7403C28.8171 29.7403 26.2406 27.7461 25.0818 24.6638C25.046 24.5647 25.0376 24.4579 25.0572 24.3544C25.0769 24.2509 25.124 24.1546 25.1935 24.0756C26.7574 22.1998 27.5928 19.8232 27.5465 17.3814C27.5524 15.895 27.252 14.4232 26.6641 13.0579C26.6113 12.9397 26.5988 12.8074 26.6288 12.6814C27.2994 9.99908 29.3112 8.23438 31.6465 8.23438C34.5288 8.23438 36.87 11.0167 36.87 14.4344V14.5167C36.8667 15.0009 37.0103 15.4747 37.2818 15.8756C38.299 17.4555 38.8364 19.2965 38.8288 21.1756C38.8288 25.8814 35.6053 29.7403 31.6465 29.7403ZM26.3112 24.5638C27.3406 27.005 29.4053 28.5638 31.6465 28.5638C34.9582 28.5638 37.6524 25.252 37.6524 21.1756C37.6622 19.5243 37.1922 17.9058 36.2994 16.5167C35.9042 15.9212 35.699 15.2196 35.7112 14.505V14.4285C35.7112 11.6579 33.8935 9.40496 31.6641 9.40496C29.9582 9.40496 28.4112 10.7756 27.8465 12.7638C28.4446 14.2255 28.7504 15.7903 28.7465 17.3697C28.7823 19.9758 27.9227 22.5153 26.3112 24.5638Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M31.6429 29.7407C31.4869 29.7407 31.3373 29.6787 31.227 29.5684C31.1167 29.4581 31.0547 29.3085 31.0547 29.1525V14.7054C31.0547 14.5494 31.1167 14.3998 31.227 14.2895C31.3373 14.1792 31.4869 14.1172 31.6429 14.1172C31.7989 14.1172 31.9486 14.1792 32.0589 14.2895C32.1692 14.3998 32.2312 14.5494 32.2312 14.7054V29.1525C32.2312 29.3085 32.1692 29.4581 32.0589 29.5684C31.9486 29.6787 31.7989 29.7407 31.6429 29.7407Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M31.6408 19.6283C31.535 19.6249 31.432 19.5931 31.3428 19.5362C31.2536 19.4793 31.1813 19.3993 31.1338 19.3047C31.0862 19.2102 31.065 19.1045 31.0724 18.9989C31.0799 18.8933 31.1157 18.7917 31.1761 18.7047L33.2232 15.7636C33.3122 15.6358 33.4483 15.5486 33.6016 15.521C33.7549 15.4934 33.9128 15.5278 34.0408 15.6165C34.1049 15.6606 34.1596 15.717 34.2017 15.7824C34.2438 15.8479 34.2726 15.921 34.2863 15.9976C34.2999 16.0742 34.2983 16.1527 34.2814 16.2287C34.2645 16.3046 34.2327 16.3764 34.1879 16.44L32.1408 19.3812C32.0844 19.4605 32.0092 19.5246 31.9219 19.5678C31.8347 19.6109 31.7381 19.6317 31.6408 19.6283ZM31.6408 22.3518C31.5554 22.3511 31.4711 22.3318 31.3939 22.2952C31.3167 22.2586 31.2484 22.2057 31.1937 22.14L30.2643 21.04C30.2134 20.9802 30.1747 20.9108 30.1505 20.836C30.1263 20.7612 30.1171 20.6823 30.1233 20.604C30.1296 20.5256 30.1513 20.4492 30.1871 20.3792C30.2229 20.3092 30.2721 20.2469 30.332 20.1959C30.3918 20.1449 30.4612 20.1062 30.536 20.082C30.6108 20.0578 30.6897 20.0486 30.7681 20.0549C30.8464 20.0612 30.9228 20.0829 30.9928 20.1187C31.0628 20.1545 31.1251 20.2037 31.1761 20.2636L32.1055 21.3636C32.1856 21.4495 32.2381 21.5575 32.2563 21.6736C32.2745 21.7897 32.2575 21.9085 32.2075 22.0149C32.1575 22.1212 32.0768 22.2101 31.9758 22.2702C31.8748 22.3302 31.7581 22.3587 31.6408 22.3518ZM31.6408 24.4459C31.529 24.4474 31.4191 24.417 31.3239 24.3583C31.2288 24.2996 31.1523 24.2149 31.1035 24.1143C31.0548 24.0137 31.0357 23.9012 31.0485 23.7901C31.0614 23.679 31.1056 23.5739 31.1761 23.4871L33.4643 20.6694C33.5134 20.6086 33.574 20.5581 33.6427 20.521C33.7115 20.4838 33.7869 20.4607 33.8647 20.4531C33.9425 20.4454 34.021 20.4533 34.0957 20.4763C34.1703 20.4993 34.2397 20.537 34.2996 20.5871C34.4199 20.685 34.4967 20.8265 34.5133 20.9807C34.5298 21.1349 34.4847 21.2894 34.3879 21.4106L32.0996 24.2341C32.0437 24.3013 31.9735 24.3552 31.8941 24.3918C31.8147 24.4284 31.7282 24.4469 31.6408 24.4459ZM31.6408 26.7283C31.5533 26.7316 31.4662 26.7154 31.3859 26.6808C31.3055 26.6462 31.2338 26.5941 31.1761 26.5283L28.9702 24.0283C28.8665 23.9113 28.8135 23.7578 28.8228 23.6017C28.8322 23.4456 28.9032 23.2997 29.0202 23.1959C29.1372 23.0922 29.2907 23.0391 29.4468 23.0485C29.6028 23.0579 29.7488 23.1289 29.8526 23.2459L32.0585 25.7518C32.1613 25.8689 32.2135 26.022 32.2035 26.1775C32.1936 26.3329 32.1224 26.4782 32.0055 26.5812C31.9044 26.6706 31.7756 26.7225 31.6408 26.7283ZM6.82316 35.1341C6.66715 35.1341 6.51753 35.0722 6.40722 34.9619C6.2969 34.8515 6.23493 34.7019 6.23493 34.5459V28.9165C6.23086 28.8225 6.24937 28.729 6.28892 28.6437C6.32847 28.5584 6.3879 28.4838 6.46222 28.4261C6.53654 28.3685 6.62359 28.3296 6.71608 28.3125C6.80856 28.2955 6.90378 28.3009 6.99375 28.3283C7.90972 28.6107 8.88954 28.6107 9.80551 28.3283C9.89404 28.3017 9.98757 28.2964 10.0785 28.3128C10.1695 28.3291 10.2553 28.3667 10.329 28.4224C10.4021 28.4772 10.4614 28.5482 10.5022 28.6299C10.5431 28.7116 10.5643 28.8016 10.5643 28.893V33.5577C10.5683 33.692 10.526 33.8237 10.4447 33.9307C10.3633 34.0378 10.2478 34.1137 10.1173 34.1459C9.07943 34.4017 8.05796 34.72 7.05845 35.0989C6.98325 35.1265 6.90318 35.1385 6.82316 35.1341ZM7.4114 29.6577V33.7106C8.04081 33.4989 8.69963 33.3047 9.38787 33.1224V29.6577C8.73376 29.7691 8.0655 29.7691 7.4114 29.6577Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M8.40319 29.7402C4.44437 29.7402 1.22672 25.8814 1.22672 21.1755C1.21586 19.2978 1.75355 17.4578 2.77378 15.8814C3.04444 15.4826 3.18612 15.0104 3.17967 14.5285V14.4402C3.17967 11.0226 5.53261 8.24023 8.40319 8.24023C10.7561 8.24023 12.7503 10.0049 13.4208 12.6696C13.4649 12.7913 13.4649 12.9245 13.4208 13.0461C12.823 14.4128 12.5185 15.8897 12.5267 17.3814C12.4809 19.8231 13.3162 22.1995 14.8797 24.0755C14.9483 24.1552 14.9943 24.2517 15.0129 24.3552C15.0315 24.4586 15.0221 24.5652 14.9855 24.6638C13.815 27.7461 11.2385 29.7402 8.40319 29.7402ZM8.40319 9.41082C6.17378 9.41082 4.35614 11.6638 4.35614 14.4344V14.5167C4.36455 15.229 4.15969 15.9276 3.7679 16.5226C2.87056 17.908 2.39633 19.5249 2.40319 21.1755C2.40319 25.2461 5.09731 28.5579 8.40319 28.5579C10.6444 28.5579 12.7091 26.9991 13.7385 24.5579C12.1371 22.5073 11.2842 19.9712 11.3208 17.3696C11.3127 15.7849 11.6228 14.2147 12.2326 12.752C11.6503 10.7461 10.1326 9.41082 8.40319 9.41082Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M8.40074 29.7407C8.24473 29.7407 8.09511 29.6787 7.98479 29.5684C7.87447 29.4581 7.8125 29.3085 7.8125 29.1525V14.7054C7.8125 14.5494 7.87447 14.3998 7.98479 14.2895C8.09511 14.1792 8.24473 14.1172 8.40074 14.1172C8.55674 14.1172 8.70636 14.1792 8.81668 14.2895C8.927 14.3998 8.98897 14.5494 8.98897 14.7054V29.1525C8.98897 29.3085 8.927 29.4581 8.81668 29.5684C8.70636 29.6787 8.55674 29.7407 8.40074 29.7407Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M8.40184 19.6284C8.28189 19.6281 8.1649 19.5912 8.06654 19.5225C7.93879 19.4335 7.85157 19.2974 7.824 19.1441C7.79643 18.9908 7.83077 18.8329 7.91949 18.7049L9.30184 16.7225C9.3909 16.5948 9.52699 16.5076 9.68026 16.48C9.83354 16.4524 9.99149 16.4868 10.1195 16.5755C10.2472 16.6645 10.3345 16.8006 10.362 16.9539C10.3896 17.1072 10.3553 17.2651 10.2665 17.3931L8.89007 19.3755C8.83545 19.4542 8.76242 19.5184 8.67733 19.5625C8.59224 19.6066 8.49767 19.6292 8.40184 19.6284ZM8.40184 22.352C8.31687 22.352 8.23292 22.3336 8.15574 22.298C8.07857 22.2625 8.01001 22.2106 7.95478 22.1461L5.0136 18.6755C4.96378 18.6164 4.92608 18.5481 4.90266 18.4744C4.87924 18.4007 4.87057 18.3232 4.87712 18.2462C4.88367 18.1691 4.90534 18.0942 4.94086 18.0255C4.97639 17.9569 5.0251 17.8959 5.08419 17.8461C5.20354 17.7454 5.35797 17.6963 5.51352 17.7096C5.59053 17.7161 5.66551 17.7378 5.73415 17.7733C5.8028 17.8089 5.86378 17.8576 5.9136 17.9167L8.85478 21.3872C8.90465 21.4463 8.94239 21.5146 8.96583 21.5883C8.98928 21.662 8.99797 21.7396 8.99141 21.8166C8.98486 21.8936 8.96318 21.9686 8.92763 22.0372C8.89207 22.1059 8.84333 22.1669 8.78419 22.2167C8.67681 22.3057 8.5413 22.3536 8.40184 22.352ZM8.40772 24.452C8.29641 24.4523 8.18727 24.4211 8.09299 24.3619C7.99871 24.3028 7.92315 24.218 7.8751 24.1176C7.82705 24.0172 7.80848 23.9052 7.82154 23.7947C7.83461 23.6841 7.87877 23.5796 7.9489 23.4931L9.32537 21.7931C9.42365 21.6714 9.56625 21.5938 9.7218 21.5772C9.87734 21.5607 10.0331 21.6066 10.1548 21.7049C10.2765 21.8032 10.3541 21.9458 10.3707 22.1013C10.3872 22.2569 10.3413 22.4126 10.243 22.5343L8.86654 24.2343C8.81118 24.3026 8.74123 24.3575 8.66183 24.3952C8.58243 24.4329 8.4956 24.4523 8.40772 24.452ZM8.40184 26.7284C8.31832 26.7283 8.23578 26.7104 8.15971 26.6759C8.08364 26.6415 8.01579 26.5912 7.96066 26.5284L5.75478 24.0284C5.65103 23.9114 5.59802 23.758 5.60739 23.6019C5.61677 23.4458 5.68777 23.2998 5.80478 23.1961C5.92179 23.0923 6.07521 23.0393 6.23131 23.0487C6.38741 23.0581 6.53339 23.1291 6.63713 23.2461L8.82537 25.752C8.93493 25.8622 8.99642 26.0113 8.99642 26.1667C8.99642 26.3221 8.93493 26.4712 8.82537 26.5814C8.70914 26.6844 8.55689 26.7372 8.40184 26.7284ZM18.0901 33.0343C17.9386 33.0337 17.7932 32.9747 17.6842 32.8696C17.6268 32.8149 17.5811 32.7492 17.5498 32.6764C17.5184 32.6037 17.5021 32.5253 17.5018 32.4461V26.899C17.5018 26.743 17.5638 26.5934 17.6741 26.4831C17.7844 26.3728 17.9341 26.3108 18.0901 26.3108C18.2461 26.3108 18.3957 26.3728 18.506 26.4831C18.6163 26.5934 18.6783 26.743 18.6783 26.899V31.8284C19.5607 31.7872 20.443 31.7755 21.3783 31.7872V26.899C21.3783 26.743 21.4403 26.5934 21.5506 26.4831C21.6609 26.3728 21.8105 26.3108 21.9665 26.3108C22.1226 26.3108 22.2722 26.3728 22.3825 26.4831C22.4928 26.5934 22.5548 26.743 22.5548 26.899V32.3872C22.5537 32.4655 22.537 32.5427 22.5057 32.6144C22.4744 32.6862 22.4291 32.7509 22.3724 32.8049C22.3185 32.8625 22.2527 32.9076 22.1795 32.937C22.1064 32.9665 22.0277 32.9796 21.9489 32.9755C20.6489 32.9461 19.3607 32.9755 18.1195 33.0343H18.0901Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M20.003 27.7703C15.203 27.7703 11.2971 23.1115 11.2971 17.3762C11.2839 15.0825 11.9379 12.8344 13.1794 10.9056C13.5266 10.3937 13.7112 9.78889 13.7088 9.17034V9.05857C13.7088 4.94092 16.5324 1.56445 20.003 1.56445C23.4735 1.56445 26.2971 4.92916 26.2971 9.05857V9.17034C26.2926 9.78832 26.4751 10.3932 26.8206 10.9056C28.0621 12.8344 28.7161 15.0825 28.703 17.3762C28.7265 23.1115 24.8206 27.7703 20.003 27.7703ZM20.003 2.75269C17.1794 2.75269 14.8853 5.58798 14.8853 9.07034V9.17034C14.8889 10.0246 14.6369 10.8604 14.1618 11.5703C13.0467 13.3004 12.46 15.318 12.4735 17.3762C12.4735 22.4586 15.85 26.5939 20.003 26.5939C24.1559 26.5939 27.5265 22.4762 27.5265 17.3762C27.5513 15.3231 26.9813 13.3066 25.8853 11.5703C25.4051 10.8628 25.1527 10.0254 25.1618 9.17034V9.07034C25.1441 5.58798 22.85 2.75269 20.003 2.75269Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M20.0023 27.7713C19.8463 27.7713 19.6967 27.7093 19.5864 27.599C19.476 27.4887 19.4141 27.3391 19.4141 27.183V9.41245C19.4141 9.25644 19.476 9.10682 19.5864 8.99651C19.6967 8.88619 19.8463 8.82422 20.0023 8.82422C20.1583 8.82422 20.3079 8.88619 20.4182 8.99651C20.5286 9.10682 20.5905 9.25644 20.5905 9.41245V27.183C20.5905 27.3391 20.5286 27.4887 20.4182 27.599C20.3079 27.7093 20.1583 27.7713 20.0023 27.7713Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M20.0032 15.3282C19.8959 15.328 19.7907 15.2985 19.6989 15.2428C19.6072 15.1871 19.5325 15.1074 19.4828 15.0123C19.4331 14.9172 19.4104 14.8103 19.4171 14.7032C19.4238 14.5961 19.4597 14.4928 19.5209 14.4047L22.0385 10.7811C22.1276 10.6534 22.2637 10.5662 22.4169 10.5386C22.5702 10.511 22.7282 10.5454 22.8562 10.6341C22.9839 10.7231 23.0711 10.8592 23.0987 11.0125C23.1263 11.1658 23.0919 11.3237 23.0032 11.4517L20.4856 15.0753C20.4315 15.1532 20.3594 15.2169 20.2754 15.2609C20.1914 15.305 20.0981 15.328 20.0032 15.3282ZM20.0032 18.6517C19.9173 18.6526 19.8322 18.6346 19.7539 18.599C19.6757 18.5635 19.6061 18.5112 19.5503 18.4458L15.9679 14.1753C15.9106 14.1177 15.8658 14.049 15.8364 13.9733C15.8069 13.8976 15.7935 13.8166 15.7969 13.7355C15.8003 13.6544 15.8204 13.5748 15.856 13.5018C15.8917 13.4289 15.9421 13.3641 16.004 13.3115C16.0659 13.259 16.138 13.2198 16.2158 13.1965C16.2936 13.1732 16.3754 13.1663 16.456 13.1761C16.5366 13.186 16.6143 13.2124 16.6842 13.2538C16.754 13.2951 16.8146 13.3505 16.862 13.4164L20.4738 17.687C20.5237 17.7461 20.5614 17.8144 20.5849 17.8881C20.6083 17.9618 20.617 18.0393 20.6104 18.1164C20.6039 18.1934 20.5822 18.2684 20.5466 18.337C20.5111 18.4057 20.4624 18.4666 20.4032 18.5164C20.2912 18.6095 20.1487 18.6577 20.0032 18.6517ZM20.0032 21.2576C19.8685 21.2582 19.7377 21.2125 19.6326 21.1282C19.5722 21.0796 19.522 21.0196 19.4848 20.9516C19.4476 20.8836 19.4243 20.8089 19.4161 20.7318C19.4079 20.6548 19.415 20.5768 19.437 20.5025C19.459 20.4282 19.4955 20.359 19.5444 20.2988L22.362 16.8282C22.4599 16.7079 22.6014 16.6311 22.7556 16.6146C22.9099 16.598 23.0644 16.6431 23.1856 16.74C23.246 16.7885 23.2962 16.8485 23.3334 16.9165C23.3706 16.9846 23.3939 17.0592 23.4021 17.1363C23.4103 17.2134 23.4032 17.2913 23.3812 17.3657C23.3592 17.44 23.3227 17.5092 23.2738 17.5694L20.4562 21.04C20.4014 21.1074 20.3324 21.162 20.2541 21.1996C20.1758 21.2372 20.0901 21.257 20.0032 21.2576ZM20.0032 24.0635C19.9197 24.0634 19.8372 24.0455 19.7611 24.011C19.685 23.9765 19.6172 23.9262 19.562 23.8635L16.8444 20.787C16.7399 20.6669 16.6873 20.5102 16.6984 20.3513C16.7094 20.1925 16.7831 20.0445 16.9032 19.94C17.0233 19.8354 17.1801 19.7829 17.3389 19.7939C17.4978 19.805 17.6458 19.8787 17.7503 19.9988L20.4679 23.0753C20.5707 23.1923 20.6229 23.3454 20.613 23.5009C20.6031 23.6564 20.5319 23.8016 20.415 23.9047C20.3035 24.009 20.1559 24.066 20.0032 24.0635ZM38.1915 38.4223H1.76792C1.65868 38.4223 1.5516 38.3919 1.45867 38.3345C1.36574 38.277 1.29064 38.1949 1.24179 38.0971C1.19293 37.9994 1.17225 37.89 1.18206 37.7812C1.19188 37.6724 1.23179 37.5685 1.29733 37.4811C4.45616 33.2164 14.4326 31.5517 22.3562 31.8105C30.4444 32.0753 36.5444 34.2047 38.6738 37.5105C38.7323 37.5994 38.7657 37.7025 38.7702 37.8089C38.7748 37.9152 38.7504 38.0208 38.6997 38.1144C38.649 38.2079 38.5738 38.286 38.4823 38.3402C38.3907 38.3945 38.2861 38.4228 38.1797 38.4223H38.1915ZM3.12675 37.2458H36.9679C34.5444 34.7811 29.2209 33.2105 22.3562 32.987C14.0385 32.7164 6.35616 34.4694 3.12675 37.2458Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Forestry", "description": "Woody biomass, bark, wood chips, forestry residues"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M39.8581 22.6362C39.6619 22.3969 34.9994 16.7925 30.6006 17.5763C26.2737 18.3512 25.8694 20.8325 25.6619 23.1137C24.5407 23.5982 23.5852 24.3992 22.9125 25.4187C22.2399 26.4382 21.8793 27.6318 21.875 28.8531V34.375C21.8743 35.0378 21.6107 35.6733 21.142 36.142C20.6733 36.6107 20.0378 36.8743 19.375 36.875H5.625C4.96216 36.8743 4.32666 36.6107 3.85796 36.142C3.38927 35.6733 3.12566 35.0378 3.125 34.375V13.75H21.875V23.125C21.875 23.2908 21.9408 23.4497 22.0581 23.5669C22.1753 23.6842 22.3342 23.75 22.5 23.75C22.6658 23.75 22.8247 23.6842 22.9419 23.5669C23.0592 23.4497 23.125 23.2908 23.125 23.125V13.75H23.75C24.0814 13.7497 24.3992 13.6179 24.6335 13.3835C24.8679 13.1492 24.9997 12.8314 25 12.5V10C24.9997 9.66858 24.8679 9.35083 24.6335 9.11648C24.3992 8.88213 24.0814 8.75033 23.75 8.75H22.8862L21.53 6.03625C21.3751 5.72394 21.1357 5.46131 20.8391 5.27815C20.5425 5.09498 20.2005 4.99862 19.8519 5H18.125V3.75C18.1245 3.25287 17.9268 2.77625 17.5753 2.42472C17.2238 2.0732 16.7471 1.8755 16.25 1.875H8.75C8.25287 1.8755 7.77625 2.0732 7.42472 2.42472C7.0732 2.77625 6.8755 3.25287 6.875 3.75V5H5.1475C4.7991 4.99886 4.45735 5.09533 4.16097 5.27848C3.86459 5.46163 3.62544 5.72414 3.47062 6.03625L2.11375 8.75H1.25C0.918581 8.75033 0.600831 8.88213 0.366482 9.11648C0.132133 9.35083 0.000330923 9.66858 0 10L0 12.5C0.000330923 12.8314 0.132133 13.1492 0.366482 13.3835C0.600831 13.6179 0.918581 13.7497 1.25 13.75H1.875V34.375C1.87616 35.3692 2.27162 36.3224 2.97463 37.0254C3.67764 37.7284 4.63079 38.1238 5.625 38.125H19.375C20.3692 38.1238 21.3224 37.7284 22.0254 37.0254C22.7284 36.3224 23.1238 35.3692 23.125 34.375V28.8531C23.1298 27.8967 23.408 26.9615 23.927 26.1581C24.4459 25.3546 25.1839 24.7164 26.0538 24.3188C26.5562 24.9203 27.184 25.4048 27.8933 25.7383C28.6026 26.0717 29.3762 26.2462 30.16 26.2494C30.8816 26.2428 31.5973 26.1182 32.2788 25.8806C33.4458 25.4886 34.5564 24.945 35.5819 24.2637C36.7381 23.535 37.3188 23.17 39.2256 23.6394C39.353 23.6707 39.487 23.6611 39.6087 23.612C39.7303 23.5629 39.8334 23.4767 39.9034 23.3658C39.9734 23.2548 40.0067 23.1246 39.9985 22.9937C39.9904 22.8628 39.9413 22.7377 39.8581 22.6362ZM8.125 3.75C8.12516 3.58429 8.19107 3.42542 8.30824 3.30824C8.42542 3.19107 8.58429 3.12517 8.75 3.125H16.25C16.4157 3.12517 16.5746 3.19107 16.6918 3.30824C16.8089 3.42542 16.8748 3.58429 16.875 3.75V5H8.125V3.75ZM4.58875 6.59563C4.64039 6.49164 4.72008 6.40417 4.81881 6.3431C4.91755 6.28202 5.0314 6.24977 5.1475 6.25H19.8525C19.9686 6.24977 20.0824 6.28202 20.1812 6.3431C20.2799 6.40417 20.3596 6.49164 20.4113 6.59563L21.4888 8.75H3.51125L4.58875 6.59563ZM1.25 10H23.75V12.5H1.25V10ZM34.9156 23.2063C33.9737 23.8345 32.9528 24.3353 31.8794 24.6956C29.5012 25.4969 28.0056 24.5319 27.2881 23.8281L31.0431 22.4256C31.1984 22.3676 31.3244 22.2503 31.3932 22.0994C31.462 21.9486 31.468 21.7766 31.41 21.6213C31.352 21.4659 31.2346 21.34 31.0838 21.2712C30.9329 21.2024 30.7609 21.1964 30.6056 21.2544L26.9681 22.6131C27.19 20.7206 27.7206 19.3619 30.8206 18.8069C33.3406 18.3569 36.1712 20.6625 37.7206 22.18C36.7016 22.2218 35.721 22.5806 34.9156 23.2063Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M11.25 15.625C11.0842 15.625 10.9253 15.6908 10.8081 15.8081C10.6908 15.9253 10.625 16.0842 10.625 16.25V34.375C10.625 34.5408 10.6908 34.6997 10.8081 34.8169C10.9253 34.9342 11.0842 35 11.25 35H13.75C13.9158 35 14.0747 34.9342 14.1919 34.8169C14.3092 34.6997 14.375 34.5408 14.375 34.375V16.25C14.375 16.0842 14.3092 15.9253 14.1919 15.8081C14.0747 15.6908 13.9158 15.625 13.75 15.625H11.25ZM13.125 33.75H11.875V16.875H13.125V33.75ZM5.625 15.625C5.45924 15.625 5.30027 15.6908 5.18306 15.8081C5.06585 15.9253 5 16.0842 5 16.25V34.375C5 34.5408 5.06585 34.6997 5.18306 34.8169C5.30027 34.9342 5.45924 35 5.625 35H8.125C8.29076 35 8.44973 34.9342 8.56694 34.8169C8.68415 34.6997 8.75 34.5408 8.75 34.375V16.25C8.75 16.0842 8.68415 15.9253 8.56694 15.8081C8.44973 15.6908 8.29076 15.625 8.125 15.625H5.625ZM7.5 33.75H6.25V16.875H7.5V33.75ZM16.875 15.625C16.7092 15.625 16.5503 15.6908 16.4331 15.8081C16.3158 15.9253 16.25 16.0842 16.25 16.25V34.375C16.25 34.5408 16.3158 34.6997 16.4331 34.8169C16.5503 34.9342 16.7092 35 16.875 35H19.375C19.5408 35 19.6997 34.9342 19.8169 34.8169C19.9342 34.6997 20 34.5408 20 34.375V16.25C20 16.0842 19.9342 15.9253 19.8169 15.8081C19.6997 15.6908 19.5408 15.625 19.375 15.625H16.875ZM18.75 33.75H17.5V16.875H18.75V33.75Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Urban", "description": "Bio-waste, urban organic waste, compostables"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M38.125 19.375H36.875C36.3777 19.375 35.9008 19.5725 35.5492 19.9242C35.1975 20.2758 35 20.7527 35 21.25H32.5L35.5 17.25C35.5811 17.1418 35.625 17.0102 35.625 16.875V10.625C35.625 10.4592 35.5592 10.3003 35.4419 10.1831C35.3247 10.0658 35.1658 10 35 10H32.385C32.2376 9.58299 31.9475 9.23153 31.566 9.00773C31.1844 8.78393 30.7361 8.70221 30.3002 8.777C29.8642 8.8518 29.4688 9.07829 29.1837 9.41646C28.8986 9.75463 28.7422 10.1827 28.7422 10.625C28.7422 11.0673 28.8986 11.4954 29.1837 11.8335C29.4688 12.1717 29.8642 12.3982 30.3002 12.473C30.7361 12.5478 31.1844 12.4661 31.566 12.2423C31.9475 12.0185 32.2376 11.667 32.385 11.25H34.375V16.6669L30.9375 21.25H28.75V15.625C28.75 15.4592 28.6842 15.3003 28.5669 15.1831C28.4497 15.0658 28.2908 15 28.125 15H26.135C25.9876 14.583 25.6975 14.2315 25.316 14.0077C24.9344 13.7839 24.4861 13.7022 24.0502 13.777C23.6142 13.8518 23.2188 14.0783 22.9337 14.4165C22.6486 14.7546 22.4922 15.1827 22.4922 15.625C22.4922 16.0673 22.6486 16.4954 22.9337 16.8335C23.2188 17.1717 23.6142 17.3982 24.0502 17.473C24.4861 17.5478 24.9344 17.4661 25.316 17.2423C25.6975 17.0185 25.9876 16.667 26.135 16.25H27.5V21.25H25C25 20.7527 24.8025 20.2758 24.4508 19.9242C24.0992 19.5725 23.6223 19.375 23.125 19.375H22.5C22.5 18.8777 22.3025 18.4008 21.9508 18.0492C21.5992 17.6975 21.1223 17.5 20.625 17.5V16.875C20.625 16.3777 20.4275 15.9008 20.0758 15.5492C19.7242 15.1975 19.2473 15 18.75 15V7.5H23.75V8.865C23.333 9.01243 22.9815 9.30254 22.7577 9.68405C22.5339 10.0656 22.4522 10.5139 22.527 10.9498C22.6018 11.3858 22.8283 11.7812 23.1665 12.0663C23.5046 12.3514 23.9327 12.5078 24.375 12.5078C24.8173 12.5078 25.2454 12.3514 25.5835 12.0663C25.9217 11.7812 26.1482 11.3858 26.223 10.9498C26.2978 10.5139 26.2161 10.0656 25.9923 9.68405C25.7685 9.30254 25.417 9.01243 25 8.865V6.875C25 6.70924 24.9342 6.55027 24.8169 6.43306C24.6997 6.31585 24.5408 6.25 24.375 6.25H18.75V5C19.2473 5 19.7242 4.80246 20.0758 4.45083C20.4275 4.09919 20.625 3.62228 20.625 3.125V1.875C20.625 1.70924 20.5592 1.55027 20.4419 1.43306C20.3247 1.31585 20.1658 1.25 20 1.25H3.75C3.58424 1.25 3.42527 1.31585 3.30806 1.43306C3.19085 1.55027 3.125 1.70924 3.125 1.875V3.125C3.125 3.62228 3.32254 4.09919 3.67417 4.45083C4.02581 4.80246 4.50272 5 5 5V15C4.50272 15 4.02581 15.1975 3.67417 15.5492C3.32254 15.9008 3.125 16.3777 3.125 16.875V17.5C2.62772 17.5 2.15081 17.6975 1.79917 18.0492C1.44754 18.4008 1.25 18.8777 1.25 19.375V36.875C1.25 37.3723 1.44754 37.8492 1.79917 38.2008C2.15081 38.5525 2.62772 38.75 3.125 38.75H20.625C21.1223 38.75 21.5992 38.5525 21.9508 38.2008C22.3025 37.8492 22.5 37.3723 22.5 36.875H23.125C23.6223 36.875 24.0992 36.6775 24.4508 36.3258C24.8025 35.9742 25 35.4973 25 35H35C35 35.4973 35.1975 35.9742 35.5492 36.3258C35.9008 36.6775 36.3777 36.875 36.875 36.875H38.125C38.2908 36.875 38.4497 36.8092 38.5669 36.6919C38.6842 36.5747 38.75 36.4158 38.75 36.25V20C38.75 19.8342 38.6842 19.6753 38.5669 19.5581C38.4497 19.4408 38.2908 19.375 38.125 19.375ZM30.625 11.25C30.5014 11.25 30.3806 11.2133 30.2778 11.1447C30.175 11.076 30.0949 10.9784 30.0476 10.8642C30.0003 10.75 29.9879 10.6243 30.012 10.5031C30.0361 10.3818 30.0956 10.2705 30.1831 10.1831C30.2705 10.0956 30.3818 10.0361 30.5031 10.012C30.6243 9.98789 30.75 10.0003 30.8642 10.0476C30.9784 10.0949 31.076 10.175 31.1447 10.2778C31.2133 10.3805 31.25 10.5014 31.25 10.625C31.25 10.7908 31.1842 10.9497 31.0669 11.0669C30.9497 11.1842 30.7908 11.25 30.625 11.25ZM24.375 16.25C24.2514 16.25 24.1306 16.2133 24.0278 16.1447C23.925 16.076 23.8449 15.9784 23.7976 15.8642C23.7503 15.75 23.7379 15.6243 23.762 15.5031C23.7861 15.3818 23.8456 15.2705 23.9331 15.1831C24.0205 15.0956 24.1318 15.0361 24.2531 15.012C24.3743 14.9879 24.5 15.0003 24.6142 15.0476C24.7284 15.0949 24.826 15.175 24.8947 15.2778C24.9633 15.3805 25 15.5014 25 15.625C25 15.7908 24.9342 15.9497 24.8169 16.0669C24.6997 16.1842 24.5408 16.25 24.375 16.25ZM24.375 11.25C24.2514 11.25 24.1306 11.2133 24.0278 11.1447C23.925 11.076 23.8449 10.9784 23.7976 10.8642C23.7503 10.75 23.7379 10.6243 23.762 10.5031C23.7861 10.3818 23.8456 10.2705 23.9331 10.1831C24.0205 10.0956 24.1318 10.0361 24.2531 10.012C24.3743 9.98789 24.5 10.0003 24.6142 10.0476C24.7284 10.0949 24.826 10.175 24.8947 10.2778C24.9633 10.3805 25 10.5014 25 10.625C25 10.7908 24.9342 10.9497 24.8169 11.0669C24.6997 11.1842 24.5408 11.25 24.375 11.25ZM4.375 3.125V2.5H19.375V3.125C19.375 3.29076 19.3092 3.44973 19.1919 3.56694C19.0747 3.68415 18.9158 3.75 18.75 3.75H5C4.83424 3.75 4.67527 3.68415 4.55806 3.56694C4.44085 3.44973 4.375 3.29076 4.375 3.125ZM6.25 5H17.5V15H6.25V5ZM4.375 16.875C4.375 16.7092 4.44085 16.5503 4.55806 16.4331C4.67527 16.3158 4.83424 16.25 5 16.25H18.75C18.9158 16.25 19.0747 16.3158 19.1919 16.4331C19.3092 16.5503 19.375 16.7092 19.375 16.875V17.5H4.375V16.875ZM21.25 36.875C21.25 37.0408 21.1842 37.1997 21.0669 37.3169C20.9497 37.4342 20.7908 37.5 20.625 37.5H3.125C2.95924 37.5 2.80027 37.4342 2.68306 37.3169C2.56585 37.1997 2.5 37.0408 2.5 36.875V19.375C2.5 19.2092 2.56585 19.0503 2.68306 18.9331C2.80027 18.8158 2.95924 18.75 3.125 18.75H20.625C20.7908 18.75 20.9497 18.8158 21.0669 18.9331C21.1842 19.0503 21.25 19.2092 21.25 19.375V36.875ZM23.75 35C23.75 35.1658 23.6842 35.3247 23.5669 35.4419C23.4497 35.5592 23.2908 35.625 23.125 35.625H22.5V20.625H23.125C23.2908 20.625 23.4497 20.6908 23.5669 20.8081C23.6842 20.9253 23.75 21.0842 23.75 21.25V35ZM25 33.75V22.5H35V33.75H25ZM37.5 35.625H36.875C36.7092 35.625 36.5503 35.5592 36.4331 35.4419C36.3158 35.3247 36.25 35.1658 36.25 35V21.25C36.25 21.0842 36.3158 20.9253 36.4331 20.8081C36.5503 20.6908 36.7092 20.625 36.875 20.625H37.5V35.625Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M32.3169 25.1836L30.4419 23.3086L29.5581 24.1924L30.3662 25.0005H28.125V26.2505H30.3662L29.5581 27.0586L30.4419 27.9424L32.3169 26.0674L32.3125 26.063C32.3722 26.0064 32.4198 25.9383 32.4524 25.8628C32.4851 25.7874 32.5021 25.706 32.5024 25.6238C32.5028 25.5416 32.4865 25.4601 32.4545 25.3843C32.4225 25.3086 32.3755 25.2401 32.3162 25.183L32.3169 25.1836ZM30.4419 29.1924L29.5581 28.3086L27.6831 30.1836C27.6241 30.2407 27.5772 30.3092 27.5453 30.385C27.5134 30.4607 27.4972 30.5421 27.4976 30.6242C27.498 30.7064 27.515 30.7876 27.5477 30.863C27.5803 30.9384 27.6279 31.0065 27.6875 31.063L27.6838 31.0667L29.5588 32.9417L30.4425 32.058L29.6338 31.2505H31.875V30.0005H29.6338L30.4419 29.1924ZM9.8125 7.68799C9.75592 7.62831 9.68783 7.5807 9.61235 7.54806C9.53686 7.51541 9.45554 7.4984 9.3733 7.49805C9.29106 7.4977 9.2096 7.51402 9.13384 7.54602C9.05808 7.57802 8.98959 7.62504 8.9325 7.68424L7.0575 9.55924L7.94125 10.443L8.75 9.63424V11.8755H10V9.63424L10.8081 10.4424L11.6919 9.55862L9.81687 7.68362L9.8125 7.68799ZM16.6919 10.4424L15.8081 9.55862L15 10.3667V8.12549H13.75V10.3667L12.9419 9.55862L12.0581 10.4424L13.9331 12.3174C13.9902 12.3764 14.0587 12.4233 14.1345 12.4552C14.2102 12.4871 14.2916 12.5033 14.3737 12.5029C14.4559 12.5025 14.5371 12.4855 14.6125 12.4528C14.688 12.4202 14.756 12.3726 14.8125 12.313L14.8162 12.3167L16.6919 10.4424ZM9.47062 20.918C9.01312 21.6455 5 28.1017 5 30.6255C5 31.9516 5.52678 33.2233 6.46447 34.161C7.40215 35.0987 8.67392 35.6255 10 35.6255C11.3261 35.6255 12.5979 35.0987 13.5355 34.161C14.4732 33.2233 15 31.9516 15 30.6255C15 28.1017 10.9869 21.6455 10.5294 20.918C10.4693 20.8336 10.3899 20.7648 10.2978 20.7174C10.2057 20.6699 10.1036 20.6452 10 20.6452C9.89641 20.6452 9.79431 20.6699 9.70223 20.7174C9.61015 20.7648 9.53074 20.8336 9.47062 20.918ZM10 34.3755C9.00574 34.3745 8.05249 33.9791 7.34945 33.276C6.6464 32.573 6.25099 31.6198 6.25 30.6255C6.25 29.0224 8.61062 24.758 10 22.4461C11.3894 24.7586 13.75 29.0217 13.75 30.6255C13.749 31.6198 13.3536 32.573 12.6506 33.276C11.9475 33.9791 10.9943 34.3745 10 34.3755ZM16.715 19.583C16.6549 19.5203 16.5827 19.4704 16.5028 19.4363C16.4228 19.4023 16.3369 19.3847 16.25 19.3847C16.1631 19.3847 16.0772 19.4023 15.9972 19.4363C15.9173 19.4704 15.8451 19.5203 15.785 19.583C15.445 19.9617 13.75 21.9124 13.75 23.1255C13.75 23.7885 14.0134 24.4244 14.4822 24.8933C14.9511 25.3621 15.587 25.6255 16.25 25.6255C16.913 25.6255 17.5489 25.3621 18.0178 24.8933C18.4866 24.4244 18.75 23.7885 18.75 23.1255C18.75 21.9124 17.055 19.9617 16.715 19.583ZM16.25 24.3755C15.9185 24.3755 15.6005 24.2438 15.3661 24.0094C15.1317 23.775 15 23.457 15 23.1255C15 22.7274 15.5869 21.7974 16.25 20.9686C16.9144 21.8011 17.5 22.738 17.5 23.1255C17.5 23.457 17.3683 23.775 17.1339 24.0094C16.8995 24.2438 16.5815 24.3755 16.25 24.3755ZM18.75 35.0005H20V36.2505H18.75V35.0005ZM3.75 20.0005H5V21.2505H3.75V20.0005Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Treatment Plants", "description": "WWTP sludge, water treatment by-products"}]}, "description": "We operate across six key sectors of the organic circular economy:"}]}	2026-03-03 12:57:35.817+01	2026-03-03 13:01:25.503+01	\N
01KJY5SQ8JBWZDBN8J2RZ56S61	01KJSJKPXQ3D5D5PMK5487RFK5	{"items": [{"title": "Regulation on Organic Waste", "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/Short_Page_banner_img_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_banner_img_Desktop.png"}]}, "description": "Choose your profile type to start valorizing organic resources"}]}	2026-03-05 05:58:48.467+01	2026-03-05 06:16:54.056+01	\N
01KJYAAFAQTADWJSA4SD8CDR7D	01KJYA42WCPDWCFCJ38H26MT3S	{"title": "How to interpret LER codes", "description": "The six digits that make up the EWC code have different meanings:", "about_code_info": "<p>There are 20 chapters in total. Codes 1 through 12 and 17 through 20 are the <strong>main codes or chapters .</strong> Each one refers to a type of waste specific to a particular industry. Sections 13, 14, 15, and 16, meanwhile, serve as a miscellaneous category, covering special waste and exceptions within the previous sections.</p>\\n<p>Locating a waste item in the <strong>European Waste Catalogue (EWC)</strong> involves identifying the source of the waste and finding its six-digit code. If the waste item is not found in the main chapters, it should be searched for in chapters 13, 14, 15, or 16. If it is still not found in these sections, the code 99 should be used.</p>\\n<p>An asterisk at the end of the EWC code numbers indicates that the waste in question is <strong>highly hazardous</strong> .</p>", "interpret_steps": {"items": [{"title": "Initial Contact & Discovery", "step_no.": "01", "step_tag": "STEP - 1", "description": "The first two digits represent the chapters or sources of the residue."}, {"title": "Comprehensive Diagnosis", "step_no.": "02", "step_tag": "STEP - 2", "description": "Our team conducts detailed on-site audits, waste characterization, and analysis of all waste streams. Complete documentation and regulatory compliance review."}, {"title": "Customized Proposal", "step_no.": "03", "step_tag": "STEP - 3", "description": "Based on our findings, we develop a tailored waste management plan with clear objectives, timelines, investment requirements, and expected ROI."}]}}	2026-03-05 07:17:51.704+01	2026-03-11 10:50:25.098+01	\N
01KJF8MAE9A9M7QMKYXNFK2Y1Q	01KJF8G2V1EK5XSNMK7YC6PEFX	{"items": [{"svg": "<svg width=\\"35\\" height=\\"35\\" viewBox=\\"0 0 35 35\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M21.5976 19.531L18.3908 17.1258V12.2266C18.3908 11.734 17.9926 11.3358 17.5 11.3358C17.0073 11.3358 16.6092 11.734 16.6092 12.2266V17.5713C16.6092 17.8519 16.741 18.1165 16.9655 18.2839L20.5286 20.9563C20.6889 21.0765 20.876 21.1344 21.0622 21.1344C21.3339 21.1344 21.6011 21.0124 21.7757 20.7772C22.0715 20.3843 21.9913 19.8258 21.5976 19.531Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M17.5 6C11.1585 6 6 11.1585 6 17.5C6 23.8415 11.1585 29 17.5 29C23.8415 29 29 23.8415 29 17.5C29 11.1585 23.8415 6 17.5 6ZM17.5 27.2184C12.1419 27.2184 7.78156 22.8581 7.78156 17.5C7.78156 12.1419 12.1419 7.78156 17.5 7.78156C22.859 7.78156 27.2184 12.1419 27.2184 17.5C27.2184 22.8581 22.8581 27.2184 17.5 27.2184Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Response Time", "description": "We respond to all inquiries within 24 business hours."}, {"svg": "<svg width=\\"35\\" height=\\"35\\" viewBox=\\"0 0 35 35\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M31 22.2725C31 18.337 28.3482 14.8985 24.6088 13.8624C24.3738 8.38437 19.8444 4 14.3096 4C8.62476 4 4 8.62476 4 14.3096C4 16.1623 4.49315 17.9662 5.4296 19.5498L4.0379 24.581L9.0693 23.1895C10.5251 24.0504 12.1672 24.5353 13.8622 24.6084C14.8981 28.348 18.3367 31 22.2725 31C23.8434 31 25.371 30.5816 26.7133 29.7867L30.9619 30.9619L29.7867 26.7133C30.5816 25.371 31 23.8434 31 22.2725ZM9.31896 21.479L6.30692 22.3122L7.14017 19.3002L6.95024 19.0031C6.0552 17.6028 5.58203 15.9798 5.58203 14.3096C5.58203 9.49715 9.49715 5.58203 14.3096 5.58203C19.122 5.58203 23.0371 9.49715 23.0371 14.3096C23.0371 19.122 19.122 23.0371 14.3096 23.0371C12.6394 23.0371 11.0166 22.5639 9.616 21.6689L9.31896 21.479ZM28.6931 28.6931L26.458 28.0747L26.1596 28.2689C25.0025 29.0206 23.6582 29.418 22.2725 29.418C19.1793 29.418 16.4612 27.418 15.4982 24.5501C20.2348 24.004 24.004 20.2348 24.5503 15.4979C27.418 16.4612 29.418 19.1793 29.418 22.2725C29.418 23.6582 29.0206 25.0025 28.2689 26.1596L28.0747 26.458L28.6931 28.6931Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M13.5186 18.291H15.1006V19.873H13.5186V18.291Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M15.8916 11.9102C15.8916 12.3594 15.7087 12.7741 15.3766 13.0779L13.5186 14.7786V16.709H15.1006V15.4753L16.4447 14.2451C17.0985 13.6467 17.4736 12.7957 17.4736 11.9102C17.4736 10.1654 16.0543 8.74609 14.3096 8.74609C12.5648 8.74609 11.1455 10.1654 11.1455 11.9102H12.7275C12.7275 11.0378 13.4372 10.3281 14.3096 10.3281C15.182 10.3281 15.8916 11.0378 15.8916 11.9102Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Marketplace Support", "description": "If you're already a registered user and need technical support, access your user panel for direct contact."}]}	2026-02-27 10:59:40.745+01	2026-02-27 11:00:51.105+01	\N
01KKECYRQ8PCTRMMT1AJNBCYDD	01KKECW38R6TX0072BQV90VD9P	{"title": "100% Secure Transaction", "features": {"items": [{"text": "SSL encrypted connection", "logo_svg": "<svg width=\\"30\\" height=\\"30\\" viewBox=\\"0 0 30 30\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<g clip-path=\\"url(#clip0_40000114_15416)\\">\\n<path d=\\"M28.6815 12.7441C28.1087 12.7441 27.6202 13.1115 27.4388 13.623H24.9315V13.1103C24.9315 12.9938 24.8852 12.882 24.8028 12.7996C24.7204 12.7171 24.6086 12.6708 24.4921 12.6708C24.3755 12.6708 24.2638 12.7171 24.1814 12.7996C24.0989 12.882 24.0526 12.9938 24.0526 13.1103V15.2527C24.0526 17.4442 23.3179 19.5077 21.9838 21.063C20.1205 23.2344 17.7712 24.8855 14.9999 25.9716C12.5223 25.0007 10.3756 23.5736 8.61875 21.7295C8.57896 21.6877 8.53133 21.6542 8.47857 21.6308C8.42581 21.6074 8.36896 21.5946 8.31127 21.5932C8.25358 21.5918 8.19617 21.6018 8.14232 21.6225C8.08848 21.6433 8.03926 21.6745 7.99746 21.7143C7.95566 21.7541 7.92211 21.8017 7.89872 21.8544C7.87534 21.9072 7.86257 21.9641 7.86115 22.0217C7.85974 22.0794 7.8697 22.1368 7.89046 22.1907C7.91123 22.2445 7.9424 22.2938 7.98219 22.3356C8.58798 22.9708 9.23953 23.5608 9.9316 24.1007V27.4389C9.42026 27.6202 9.0527 28.1087 9.0527 28.6817C9.0527 29.4087 9.64414 30.0001 10.3711 30.0001C11.098 30.0001 11.6894 29.4087 11.6894 28.6817C11.6894 28.1089 11.322 27.6202 10.8105 27.4389V24.7446C12.0167 25.5745 13.3341 26.2692 14.755 26.8196C14.9125 26.8806 15.0871 26.8806 15.2446 26.8196C18.1841 25.6811 20.676 23.937 22.651 21.6352C23.5647 20.5702 24.2229 19.2917 24.591 17.9003H26.0764C26.2579 18.4118 26.7464 18.7792 27.3192 18.7792C28.0461 18.7792 28.6376 18.1878 28.6376 17.4609C28.6376 16.734 28.0461 16.1425 27.3192 16.1425C26.7464 16.1425 26.2579 16.5101 26.0765 17.0214H24.7821C24.8819 16.4371 24.9319 15.8454 24.9315 15.2526V14.5019H27.4388C27.6202 15.0134 28.1087 15.3808 28.6815 15.3808C29.4084 15.3808 29.9999 14.7894 29.9999 14.0624C29.9999 13.3355 29.4084 12.7441 28.6815 12.7441ZM10.3711 29.121C10.1287 29.121 9.9316 28.9239 9.9316 28.6815C9.9316 28.4391 10.1287 28.2421 10.3711 28.2421C10.6135 28.2421 10.8105 28.4391 10.8105 28.6815C10.8105 28.9239 10.6135 29.121 10.3711 29.121ZM27.3192 17.0214C27.5616 17.0214 27.7587 17.2185 27.7587 17.4609C27.7587 17.7033 27.5616 17.9003 27.3192 17.9003C27.0768 17.9003 26.8798 17.7033 26.8798 17.4609C26.8798 17.2185 27.0768 17.0214 27.3192 17.0214ZM28.6815 14.5019C28.4391 14.5019 28.2421 14.3048 28.2421 14.0624C28.2421 13.82 28.4391 13.623 28.6815 13.623C28.9239 13.623 29.121 13.82 29.121 14.0624C29.121 14.3048 28.9239 14.5019 28.6815 14.5019ZM5.94724 15.2527V7.25827C7.55927 6.87718 9.23399 6.16697 10.9282 5.14545C13.4397 3.63139 16.5602 3.63139 19.0717 5.14545C19.8256 5.59978 20.5755 5.99236 21.3177 6.32195C21.3259 6.32581 21.3342 6.32968 21.3429 6.3329C22.2603 6.73872 23.1659 7.04862 24.0526 7.25827V11.2303C24.0526 11.4731 24.2492 11.6698 24.4921 11.6698C24.735 11.6698 24.9315 11.4731 24.9315 11.2303V7.09685C24.9315 6.78261 24.715 6.50634 24.4165 6.44001C23.6096 6.26054 22.7828 5.99089 21.9433 5.63523V2.56112C22.4548 2.3796 22.8222 1.89116 22.8222 1.3183C22.8222 0.591443 22.2307 0 21.5038 0C20.7769 0 20.1855 0.591443 20.1855 1.31835C20.1855 1.89122 20.553 2.37966 21.0644 2.56112V5.23404C20.5551 4.98432 20.0417 4.70395 19.5256 4.39293C16.7342 2.70995 13.2657 2.71013 10.4745 4.39293C8.80092 5.40162 7.15526 6.0905 5.58332 6.44001C5.28484 6.5064 5.06834 6.78267 5.06834 7.09691V9.75582H2.56112C2.37966 9.2443 1.89122 8.87692 1.31835 8.87692C0.591443 8.87692 0 9.46836 0 10.1953C0 10.9222 0.591443 11.5136 1.31835 11.5136C1.89122 11.5136 2.37966 11.1462 2.56112 10.6347H5.06834V13.1542H3.92342C3.74196 12.6427 3.25352 12.2753 2.68065 12.2753C1.95374 12.2753 1.3623 12.8668 1.3623 13.5937C1.3623 14.3206 1.95374 14.9121 2.68065 14.9121C3.25352 14.9121 3.74196 14.5447 3.92342 14.0331H5.06834V15.2527C5.06834 17.3588 5.67672 19.3343 6.82732 20.9653C6.86792 21.0229 6.92179 21.0698 6.98436 21.1022C7.04694 21.1346 7.11639 21.1514 7.18685 21.1513C7.27744 21.1514 7.36581 21.1233 7.43979 21.0711C7.63796 20.931 7.68536 20.6567 7.5455 20.4585C6.50001 18.9765 5.94724 17.1765 5.94724 15.2527ZM21.5038 0.878903C21.7462 0.878903 21.9433 1.07595 21.9433 1.31835C21.9433 1.56076 21.7462 1.75781 21.5038 1.75781C21.2614 1.75781 21.0644 1.56076 21.0644 1.31835C21.0644 1.07595 21.2614 0.878903 21.5038 0.878903ZM1.31835 10.6347C1.07595 10.6347 0.878903 10.4377 0.878903 10.1953C0.878903 9.95287 1.07595 9.75582 1.31835 9.75582C1.56076 9.75582 1.75781 9.95287 1.75781 10.1953C1.75781 10.4377 1.56076 10.6347 1.31835 10.6347ZM2.68065 14.0331C2.43825 14.0331 2.2412 13.8361 2.2412 13.5937C2.2412 13.3513 2.43825 13.1542 2.68065 13.1542C2.92305 13.1542 3.1201 13.3513 3.1201 13.5937C3.1201 13.8361 2.92305 14.0331 2.68065 14.0331Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M10.1675 7.56554C10.2719 7.51386 10.3516 7.42281 10.3889 7.31242C10.4263 7.20203 10.4183 7.08133 10.3666 6.97685C10.3149 6.87238 10.2238 6.79272 10.1134 6.75539C10.003 6.71805 9.88223 6.7261 9.77772 6.77775C8.94616 7.18907 8.11121 7.53032 7.29641 7.79218C7.16033 7.83543 7.04157 7.92092 6.95737 8.03623C6.87316 8.15155 6.82789 8.2907 6.82813 8.43348V15.2507C6.82813 17.2326 7.48754 19.0926 8.68484 20.4884C10.3238 22.3987 12.367 23.8892 14.7579 24.9191C14.8353 24.9525 14.9186 24.9692 15.0019 24.9692C15.0852 24.9692 15.1686 24.9525 15.2461 24.9191C17.6368 23.8893 19.6798 22.3989 21.3186 20.4888C22.5161 19.0927 23.1757 17.2326 23.1757 15.2507V8.43342C23.1757 8.13975 22.9876 7.88206 22.7074 7.79212C21.3685 7.36204 19.9934 6.72413 18.6201 5.89627C17.528 5.23808 16.277 4.89038 15.0019 4.89063C13.7263 4.89063 12.4753 5.23832 11.3838 5.89632L11.2904 5.9524C11.1903 6.01211 11.118 6.10914 11.0894 6.22215C11.0608 6.33517 11.0783 6.45491 11.138 6.55503C11.1675 6.6046 11.2065 6.64785 11.2528 6.68234C11.299 6.71683 11.3516 6.74186 11.4076 6.75602C11.4635 6.77018 11.5217 6.77318 11.5788 6.76485C11.6359 6.75653 11.6908 6.73704 11.7403 6.70749C11.7729 6.68804 11.8054 6.66859 11.8376 6.64913C12.7927 6.07353 13.8868 5.76941 15.0019 5.76953C16.1177 5.76953 17.212 6.07369 18.1664 6.64913C19.5495 7.48292 20.9384 8.13296 22.2968 8.58272V15.2505C22.2968 17.0227 21.7125 18.6798 20.6516 19.9164C19.1243 21.6965 17.2239 23.0924 15.0019 24.0667C12.7797 23.0922 10.8793 21.6962 9.35198 19.9162C8.29115 18.6796 7.70703 17.0227 7.70703 15.2505V8.58272C8.51796 8.31424 9.34489 7.97229 10.1675 7.56554Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M15.002 10.2812C13.7905 10.2812 12.8047 11.2668 12.8047 12.4785V13.2109H12.6582C12.0929 13.2109 11.6328 13.671 11.6328 14.2363V17.752C11.6328 18.3173 12.0929 18.7773 12.6582 18.7773H17.3457C17.911 18.7773 18.3711 18.3173 18.3711 17.752V14.2363C18.3711 13.671 17.911 13.2109 17.3457 13.2109H17.1992V12.4785C17.1992 11.2668 16.2137 10.2812 15.002 10.2812ZM13.6836 12.4785C13.6836 11.7516 14.275 11.1602 15.002 11.1602C15.7289 11.1602 16.3203 11.7516 16.3203 12.4785V13.2109H13.6836V12.4785ZM17.4922 14.2363V17.752C17.4922 17.8328 17.4265 17.8984 17.3457 17.8984H12.6582C12.6194 17.8984 12.5821 17.883 12.5547 17.8555C12.5272 17.828 12.5117 17.7908 12.5117 17.752V14.2363C12.5117 14.1555 12.5774 14.0898 12.6582 14.0898H17.3457C17.4265 14.0898 17.4922 14.1555 17.4922 14.2363Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M14.998 14.2383C14.2711 14.2383 13.6797 14.8297 13.6797 15.5566C13.6797 16.1295 14.0472 16.6179 14.5586 16.7994V17.3145C14.5586 17.431 14.6049 17.5428 14.6873 17.6252C14.7697 17.7076 14.8815 17.7539 14.998 17.7539C15.1146 17.7539 15.2264 17.7076 15.3088 17.6252C15.3912 17.5428 15.4375 17.431 15.4375 17.3145V16.7994C15.949 16.6179 16.3164 16.1295 16.3164 15.5566C16.3164 14.8297 15.725 14.2383 14.998 14.2383ZM14.998 15.9961C14.7556 15.9961 14.5586 15.799 14.5586 15.5566C14.5586 15.3142 14.7556 15.1172 14.998 15.1172C15.2404 15.1172 15.4375 15.3142 15.4375 15.5566C15.4375 15.799 15.2404 15.9961 14.998 15.9961Z\\" fill=\\"#053F31\\"/>\\n</g>\\n<defs>\\n<clipPath id=\\"clip0_40000114_15416\\">\\n<rect width=\\"30\\" height=\\"30\\" fill=\\"white\\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n"}, {"text": "GDPR-compliant data protection", "logo_svg": "<svg width=\\"30\\" height=\\"30\\" viewBox=\\"0 0 30 30\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M20.2789 29.9981C20.2086 29.9981 20.1383 29.9629 20.0856 29.9278C15.1998 26.6062 13.0557 22.564 13.3369 17.2037C13.3545 17.0455 13.4775 16.9049 13.6357 16.8874C18.9432 16.1141 19.7868 13.3724 20.5074 13.9348C22.7745 15.7626 24.0926 16.4656 26.9221 16.8874C27.0803 16.9049 27.2209 17.0455 27.2209 17.2037C27.5197 22.564 25.3756 26.6062 20.4722 29.9278C20.4195 29.9629 20.3492 29.9981 20.2789 29.9981ZM14.0223 17.5376C13.8466 22.4058 15.8325 26.1316 20.2789 29.2072C24.7253 26.1316 26.7112 22.4058 26.5355 17.5376C23.7938 17.0982 22.3703 16.3074 20.2789 14.6554C18.2227 16.2722 16.764 17.0982 14.0223 17.5376Z\\" fill=\\"#053F31\\"/>\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M20.2817 28.3672C20.2114 28.3672 20.1411 28.3496 20.0884 28.3145C14.3766 24.448 14.6227 18.5957 14.6403 18.3496C14.6578 18.1914 14.7809 18.0508 14.939 18.0157C17.5049 17.6466 20.0357 15.6607 20.0708 15.6431C20.1939 15.5377 20.3696 15.5377 20.5102 15.6431C20.5278 15.6607 23.0585 17.6466 25.6244 18.0157C25.8002 18.0508 25.9232 18.1914 25.9232 18.3496C25.9408 18.5957 26.1868 24.4305 20.4751 28.3145C20.4223 28.3496 20.352 28.3672 20.2817 28.3672ZM15.3432 18.666C15.3784 19.8435 15.7826 24.4129 20.2817 27.5939C24.7984 24.4129 25.2026 19.8435 25.2202 18.666C23.0058 18.2617 20.9496 16.8558 20.2817 16.3637C19.6139 16.8558 17.5752 18.2617 15.3432 18.666ZM13.5155 26.4867C8.29579 26.4867 2.74219 25.1862 2.74219 22.7609V3.70989C2.74219 3.25295 3.44518 3.25295 3.44518 3.70989V22.7609C3.44518 24.202 7.57523 25.7837 13.5155 25.7837C14.4469 25.7837 15.3608 25.7486 16.2571 25.6607C16.7141 25.6255 16.7668 26.3285 16.3098 26.3637C15.4135 26.434 14.4645 26.4867 13.5155 26.4867ZM23.9373 16.8558C23.7439 16.8558 23.5858 16.6976 23.5858 16.5043V3.70989C23.5858 3.25295 24.2888 3.25295 24.2888 3.70989V16.5043C24.2888 16.6976 24.1306 16.8558 23.9373 16.8558Z\\" fill=\\"#053F31\\"/>\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M13.5155 7.43409C8.29579 7.43409 2.74219 6.13357 2.74219 3.70826C2.74219 1.30053 8.29579 0 13.5155 0C18.7352 0 24.2888 1.30053 24.2888 3.70826C24.2888 6.13357 18.7352 7.43409 13.5155 7.43409ZM13.5155 0.702988C7.57523 0.702988 3.44518 2.28471 3.44518 3.70826C3.44518 5.14938 7.57523 6.73111 13.5155 6.73111C19.4557 6.73111 23.5858 5.14938 23.5858 3.70826C23.5858 2.28471 19.4557 0.702988 13.5155 0.702988ZM13.5155 13.9543C8.29579 13.9543 2.74219 12.6538 2.74219 10.2285C2.74219 9.77153 3.44518 9.77153 3.44518 10.2285C3.44518 11.652 7.57523 13.2513 13.5155 13.2513C19.4557 13.2513 23.5858 11.652 23.5858 10.2285C23.5858 9.77153 24.2888 9.77153 24.2888 10.2285C24.2888 12.6538 18.7352 13.9543 13.5155 13.9543ZM13.5155 19.9649C8.29579 19.9649 2.74219 18.6643 2.74219 16.2566C2.74219 15.7821 3.44518 15.7821 3.44518 16.2566C3.44518 17.6801 7.57523 19.2619 13.5155 19.2619C13.7264 19.2619 14.0954 19.2443 14.0954 19.6134C14.0954 20 13.7088 19.9649 13.5155 19.9649ZM23.9197 16.8541C23.41 16.8541 23.4803 15.9051 23.9373 15.9051C24.4469 15.9051 24.3766 16.8541 23.9197 16.8541Z\\" fill=\\"#053F31\\"/>\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M5.90164 10.6324C4.40779 10.6324 4.40779 8.34766 5.90164 8.34766C7.41306 8.34766 7.41306 10.6324 5.90164 10.6324ZM5.90164 9.05064C5.32167 9.05064 5.32167 9.92938 5.90164 9.92938C6.4816 9.92938 6.4816 9.05064 5.90164 9.05064ZM13.5115 10.4215C12.1407 10.4215 10.7874 10.3336 9.52202 10.1754C9.06508 10.1051 9.15295 9.40214 9.62747 9.47244C13.3885 9.96453 18.1512 9.73606 21.2619 8.57613C21.7013 8.41796 21.9473 9.08579 21.508 9.24397C19.4869 9.9821 16.5695 10.4215 13.5115 10.4215ZM5.90164 16.8714C4.40779 16.8714 4.40779 14.5867 5.90164 14.5867C7.41306 14.5867 7.41306 16.8714 5.90164 16.8714ZM5.90164 15.2897C5.32167 15.2897 5.32167 16.1684 5.90164 16.1684C6.49918 16.1684 6.4816 15.2897 5.90164 15.2897ZM13.5115 16.6605C12.1407 16.6605 10.7874 16.5726 9.52202 16.4144C9.06508 16.3441 9.15295 15.6412 9.62747 15.7115C12.1231 16.0454 15.0932 16.0278 17.5888 15.6763C18.0457 15.6236 18.1512 16.309 17.6943 16.3793C16.3762 16.555 14.9702 16.6605 13.5115 16.6605ZM5.90164 23.1104C4.40779 23.1104 4.40779 20.8257 5.90164 20.8257C7.41306 20.8257 7.41306 23.1104 5.90164 23.1104ZM5.90164 21.5287C5.32167 21.5287 5.32167 22.4074 5.90164 22.4074C6.4816 22.4074 6.4816 21.5287 5.90164 21.5287ZM13.5115 22.8995C12.1407 22.8995 10.7874 22.8116 9.52202 22.6535C9.06508 22.5832 9.15295 21.8802 9.62747 21.9505C11.3322 22.1789 12.6327 22.1965 14.3726 22.1789C14.8296 22.1789 14.8472 22.8819 14.3902 22.8819C14.0914 22.8995 13.8102 22.8995 13.5115 22.8995ZM19.6099 23.6728C19.5044 23.6728 19.4166 23.6376 19.3463 23.5849L17.993 22.2141C17.6591 21.8977 18.1512 21.3881 18.4851 21.722L19.6099 22.8292L22.0704 20.3512C22.4043 20.0348 22.8964 20.5269 22.58 20.8608L19.8559 23.5849C19.7856 23.6376 19.6978 23.6728 19.6099 23.6728Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n"}, {"text": "Certified payment gateway", "logo_svg": "<svg width=\\"30\\" height=\\"30\\" viewBox=\\"0 0 30 30\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M25.0234 19.6488C24.8991 19.6488 24.7799 19.5994 24.692 19.5115C24.6041 19.4236 24.5547 19.3044 24.5547 19.1801V12.5625C24.5547 12.4382 24.6041 12.319 24.692 12.231C24.7799 12.1431 24.8991 12.0938 25.0234 12.0938C25.1478 12.0938 25.267 12.1431 25.3549 12.231C25.4428 12.319 25.4922 12.4382 25.4922 12.5625V19.1801C25.4922 19.3044 25.4428 19.4236 25.3549 19.5115C25.267 19.5994 25.1478 19.6488 25.0234 19.6488Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M25.0236 14.56H5.23359C4.79685 14.5595 4.37812 14.3858 4.06925 14.0771C3.76037 13.7683 3.58656 13.3496 3.58594 12.9129V12.5812C3.5864 12.1444 3.76014 11.7256 4.06904 11.4167C4.37793 11.1078 4.79675 10.9341 5.23359 10.9336H8.50547C8.62979 10.9336 8.74902 10.983 8.83692 11.0709C8.92483 11.1588 8.97422 11.278 8.97422 11.4023C8.97422 11.5267 8.92483 11.6459 8.83692 11.7338C8.74902 11.8217 8.62979 11.8711 8.50547 11.8711H5.23359C5.04534 11.8714 4.86489 11.9463 4.73178 12.0794C4.59867 12.2125 4.52375 12.393 4.52344 12.5812V12.9129C4.52375 13.1011 4.59869 13.2815 4.73182 13.4145C4.86495 13.5475 5.0454 13.6223 5.23359 13.6225H24.5549V11.8711H20.6127C20.4884 11.8711 20.3691 11.8217 20.2812 11.7338C20.1933 11.6459 20.1439 11.5267 20.1439 11.4023C20.1439 11.278 20.1933 11.1588 20.2812 11.0709C20.3691 10.983 20.4884 10.9336 20.6127 10.9336H25.0236C25.148 10.9336 25.2672 10.983 25.3551 11.0709C25.443 11.1588 25.4924 11.278 25.4924 11.4023V14.0912C25.4924 14.2155 25.443 14.3348 25.3551 14.4227C25.2672 14.5106 25.148 14.56 25.0236 14.56Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M22.7408 28.6535H6.33457C4.81875 28.6535 3.58594 27.508 3.58594 26.1V12.7617C3.58594 12.6374 3.63532 12.5182 3.72323 12.4303C3.81114 12.3424 3.93037 12.293 4.05469 12.293C4.17901 12.293 4.29824 12.3424 4.38614 12.4303C4.47405 12.5182 4.52344 12.6374 4.52344 12.7617V26.1C4.52344 26.9912 5.33555 27.716 6.33457 27.716H22.7408C23.7398 27.716 24.5525 26.9912 24.5525 26.1V23.0467C24.5525 22.9224 24.6019 22.8031 24.6898 22.7152C24.7777 22.6273 24.897 22.5779 25.0213 22.5779C25.1456 22.5779 25.2648 22.6273 25.3527 22.7152C25.4407 22.8031 25.49 22.9224 25.49 23.0467V26.1C25.49 27.508 24.2555 28.6535 22.7408 28.6535Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M25.9459 23.5143H20.3443C19.7415 23.5136 19.1636 23.2739 18.7372 22.8477C18.3109 22.4215 18.0711 21.8436 18.0703 21.2408V21.0352C18.0711 20.4323 18.3109 19.8544 18.7372 19.4282C19.1636 19.002 19.7415 18.7623 20.3443 18.7617H25.9459C26.0702 18.7617 26.1894 18.8111 26.2774 18.899C26.3653 18.9869 26.4146 19.1061 26.4146 19.2305V23.0461C26.4145 23.1703 26.365 23.2894 26.2771 23.3772C26.1893 23.465 26.0701 23.5143 25.9459 23.5143ZM20.3443 19.6986C19.99 19.6989 19.6502 19.8399 19.3996 20.0904C19.149 20.341 19.0081 20.6808 19.0078 21.0352V21.2414C19.0083 21.5957 19.1493 21.9353 19.3998 22.1857C19.6504 22.4362 19.9901 22.577 20.3443 22.5773H25.4771V19.6986H20.3443Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M22.1166 21.6043H20.3382C20.2139 21.6043 20.0947 21.5549 20.0068 21.467C19.9189 21.3791 19.8695 21.2598 19.8695 21.1355C19.8695 21.0112 19.9189 20.892 20.0068 20.8041C20.0947 20.7162 20.2139 20.6668 20.3382 20.6668H22.1166C22.2409 20.6668 22.3601 20.7162 22.448 20.8041C22.5359 20.892 22.5853 21.0112 22.5853 21.1355C22.5853 21.2598 22.5359 21.3791 22.448 21.467C22.3601 21.5549 22.2409 21.6043 22.1166 21.6043ZM9.22652 14.559C9.1234 14.5589 9.0232 14.5248 8.94142 14.4619C8.85964 14.3991 8.80086 14.3111 8.77418 14.2115L7.7816 10.5078C7.76545 10.4475 7.7615 10.3846 7.76996 10.3228C7.77843 10.261 7.79915 10.2015 7.83091 10.1478C7.86267 10.0941 7.90484 10.0473 7.95493 10.0101C8.00502 9.97292 8.06203 9.9461 8.12262 9.93122L13.273 8.6697C13.3938 8.6401 13.5213 8.65967 13.6276 8.72412C13.7339 8.78857 13.8103 8.89261 13.8399 9.01335C13.8695 9.1341 13.8499 9.26166 13.7855 9.36797C13.721 9.47429 13.617 9.55064 13.4962 9.58025L8.80875 10.7299L9.67711 13.9707C9.70933 14.0907 9.69256 14.2187 9.63048 14.3263C9.5684 14.434 9.46609 14.5126 9.34605 14.5449C9.30699 14.5548 9.26681 14.5595 9.22652 14.559ZM21.3343 14.559C21.2312 14.5589 21.131 14.5248 21.0492 14.4619C20.9675 14.3991 20.9087 14.3111 20.882 14.2115L19.2607 8.16345L16.7289 8.78689C16.6081 8.81649 16.4806 8.79692 16.3742 8.73247C16.2679 8.66802 16.1916 8.56398 16.162 8.44324C16.1324 8.32249 16.1519 8.19493 16.2164 8.08862C16.2808 7.9823 16.3849 7.90595 16.5056 7.87634L19.4834 7.14626C19.6024 7.11712 19.7281 7.13575 19.8336 7.19818C19.9391 7.26061 20.0159 7.36186 20.0476 7.48025L21.7873 13.9713C21.8032 14.0307 21.8073 14.0928 21.7992 14.1538C21.7912 14.2149 21.7712 14.2738 21.7404 14.3271C21.7096 14.3804 21.6686 14.4271 21.6197 14.4646C21.5709 14.5021 21.5151 14.5296 21.4556 14.5455C21.416 14.5554 21.3752 14.5599 21.3343 14.559Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M16.6186 11.8717H13.3854C13.261 11.8717 13.1418 11.8223 13.0539 11.7344C12.966 11.6465 12.9166 11.5273 12.9166 11.4029V6.25138H11.9838C11.8965 6.25128 11.8111 6.22682 11.7369 6.18076C11.6628 6.13471 11.6031 6.06888 11.5643 5.99069C11.5256 5.9125 11.5095 5.82506 11.5177 5.7382C11.526 5.65134 11.5584 5.56851 11.6111 5.49904L14.6287 1.53283C14.6724 1.47528 14.7289 1.42862 14.7936 1.39649C14.8584 1.36437 14.9297 1.34766 15.002 1.34766C15.0742 1.34766 15.1455 1.36437 15.2103 1.39649C15.275 1.42862 15.3315 1.47528 15.3752 1.53283L18.3928 5.49904C18.4456 5.56851 18.4779 5.65134 18.4862 5.7382C18.4945 5.82506 18.4783 5.9125 18.4396 5.99069C18.4009 6.06888 18.3411 6.13471 18.267 6.18076C18.1929 6.22682 18.1074 6.25128 18.0201 6.25138H17.0873V11.4029C17.0873 11.5273 17.0379 11.6465 16.95 11.7344C16.8621 11.8223 16.7429 11.8717 16.6186 11.8717ZM13.8541 10.9342H16.1498V5.78263C16.1498 5.65831 16.1992 5.53908 16.2871 5.45118C16.375 5.36327 16.4942 5.31388 16.6186 5.31388H17.0744L15.002 2.59044L12.9295 5.31388H13.3854C13.5097 5.31388 13.6289 5.36327 13.7168 5.45118C13.8047 5.53908 13.8541 5.65831 13.8541 5.78263V10.9342Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n"}, {"text": "Satisfaction guarantee", "logo_svg": "<svg width=\\"30\\" height=\\"30\\" viewBox=\\"0 0 30 30\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<g clip-path=\\"url(#clip0_40000114_15442)\\">\\n<path d=\\"M28.2929 21.0205C28.0162 20.872 27.7114 20.7832 27.3982 20.7597C27.0851 20.7362 26.7705 20.7786 26.4747 20.8841L20.4338 23.0523C20.5527 22.6894 20.5767 22.3021 20.5035 21.9274C20.4303 21.5526 20.2623 21.2028 20.0156 20.9114C19.8071 20.6653 19.5473 20.4678 19.2544 20.3328C18.9616 20.1977 18.6427 20.1284 18.3202 20.1295H15.0111C14.2429 20.1295 13.4974 19.8614 12.8656 19.3568C11.4247 18.2068 8.49744 16.6886 4.66108 18.8432V18.0795C4.66108 17.8264 4.56051 17.5836 4.3815 17.4046C4.20249 17.2256 3.9597 17.125 3.70653 17.125H1.47017C1.21701 17.125 0.974217 17.2256 0.795205 17.4046C0.616193 17.5836 0.515625 17.8264 0.515625 18.0795V27.6432C0.515625 28.1705 0.942898 28.5977 1.47017 28.5977H3.70653C3.9597 28.5977 4.20249 28.4972 4.3815 28.3181C4.56051 28.1391 4.66108 27.8963 4.66108 27.6432V27.1795C5.38835 27.1705 7.23835 27.275 9.88835 28.3159C11.5884 28.9795 13.3565 29.3159 15.1202 29.3159C16.0974 29.3159 17.0747 29.2114 18.0338 29.0023C20.6793 28.425 24.6293 27.2523 28.4247 24.9295C28.6768 24.7725 28.8953 24.5671 29.0677 24.3253C29.2401 24.0835 29.363 23.8099 29.4293 23.5205C29.6611 22.5341 29.1974 21.5068 28.2929 21.0205ZM3.86563 27.6386C3.86563 27.725 3.7929 27.7977 3.70653 27.7977H1.47017C1.38381 27.7977 1.31108 27.725 1.31108 27.6386V18.075C1.31108 17.9886 1.38381 17.9159 1.47017 17.9159H3.70653C3.7929 17.9159 3.86563 17.9886 3.86563 18.075V27.6386ZM28.6565 23.3386C28.5656 23.7205 28.3338 24.0523 28.0111 24.2477C24.3065 26.5159 20.4474 27.6614 17.8656 28.225C15.3338 28.775 12.6747 28.5523 10.1793 27.575C7.52017 26.5341 5.63381 26.3841 4.75653 26.3841H4.65653V19.7523C8.28835 17.4977 11.0384 18.9159 12.3656 19.975C13.1293 20.5886 14.0702 20.925 15.0065 20.925H18.3156C18.7338 20.925 19.1338 21.1068 19.4065 21.4295C19.6838 21.7523 19.7974 22.1705 19.7247 22.5977C19.6611 22.9977 19.4065 23.3386 19.0565 23.5523C19.0338 23.5614 19.0065 23.575 18.9884 23.5932C18.7611 23.7159 18.4974 23.7841 18.2202 23.7841H13.5702C13.352 23.7841 13.1702 23.9614 13.1702 24.1841C13.1702 24.4068 13.3474 24.5841 13.5702 24.5841H18.2247C18.6474 24.5841 19.0474 24.475 19.3929 24.2841L26.7474 21.6477C27.1293 21.5114 27.5611 21.5386 27.9338 21.7432C28.5065 22.0386 28.8065 22.7023 28.6565 23.3386Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M9.71676 11.2295C10.0213 11.5159 10.3349 11.8159 10.4168 12.075C10.5077 12.3568 10.4259 12.7932 10.3486 13.2205C10.2304 13.8795 10.1031 14.5614 10.4849 15.0795C10.8668 15.6023 11.5577 15.6977 12.2259 15.7886C12.6486 15.8477 13.0895 15.9068 13.3213 16.075C13.5486 16.2386 13.7395 16.6386 13.9213 17.0205C14.1986 17.6068 14.5168 18.2659 15.1395 18.4705C15.2668 18.5114 15.394 18.5295 15.5168 18.5295C15.9895 18.5295 16.4668 18.275 16.9259 18.025C17.3122 17.8159 17.7122 17.6023 18.0168 17.6023C18.3213 17.6023 18.7213 17.8159 19.1077 18.025C19.694 18.3386 20.294 18.6659 20.8986 18.4705C21.5259 18.2659 21.8395 17.6068 22.1168 17.0205C22.2986 16.6386 22.4895 16.2432 22.7168 16.075C22.9486 15.9068 23.3895 15.8477 23.8122 15.7886C24.4804 15.6977 25.1713 15.6068 25.5531 15.0841C25.9304 14.5659 25.8077 13.8841 25.6895 13.225C25.6122 12.7977 25.5349 12.3614 25.6213 12.0795C25.7031 11.8205 26.0213 11.525 26.3213 11.2341C26.794 10.7841 27.3304 10.275 27.3304 9.60682C27.3304 8.93863 26.794 8.42954 26.3213 7.97954C26.0168 7.69318 25.7031 7.39318 25.6213 7.13409C25.5304 6.85227 25.6122 6.41591 25.6895 5.98863C25.8077 5.32954 25.9349 4.64773 25.5531 4.12954C25.1713 3.60682 24.4804 3.51136 23.8122 3.42045C23.3895 3.36136 22.9486 3.30227 22.7168 3.13409C22.4895 2.97045 22.2986 2.57045 22.1168 2.18863C21.8395 1.60227 21.5213 0.94318 20.8986 0.738635C20.2986 0.54318 19.694 0.870453 19.1077 1.18409C18.7213 1.39318 18.3213 1.60682 18.0168 1.60682C17.7122 1.60682 17.3122 1.39318 16.9259 1.18409C16.3395 0.870453 15.7349 0.54318 15.1349 0.738635C14.5077 0.94318 14.194 1.60227 13.9168 2.18863C13.7349 2.57045 13.544 2.96591 13.3168 3.13409C13.0849 3.30227 12.644 3.36136 12.2213 3.42045C11.5531 3.51136 10.8622 3.60227 10.4804 4.12954C10.1031 4.64773 10.2259 5.32954 10.344 5.98863C10.4213 6.41591 10.4986 6.85227 10.4122 7.13409C10.3259 7.39318 10.0122 7.68863 9.71222 7.97954C9.23949 8.42954 8.70312 8.93863 8.70312 9.60682C8.70312 10.2705 9.24403 10.7795 9.71676 11.2295ZM10.2622 8.55227C10.6395 8.19773 11.0259 7.82954 11.1713 7.375C11.3259 6.90682 11.2259 6.36591 11.1304 5.84318C11.0395 5.34773 10.9486 4.83409 11.1259 4.59318C11.3077 4.34318 11.8259 4.275 12.3304 4.20682C12.8531 4.13863 13.394 4.06591 13.7895 3.775C14.1804 3.49318 14.4122 3.00227 14.6395 2.52954C14.8577 2.07045 15.0895 1.59318 15.3895 1.49318C15.4304 1.47954 15.4759 1.475 15.5213 1.475C15.7986 1.475 16.1849 1.68409 16.5577 1.88409C17.0304 2.13863 17.5213 2.40227 18.0259 2.40227C18.5304 2.40227 19.0213 2.13863 19.494 1.88409C19.9304 1.64773 20.3804 1.40682 20.6622 1.49773C20.9622 1.59318 21.1895 2.07045 21.4122 2.53409C21.6395 3.00682 21.8713 3.49318 22.2622 3.77954C22.6577 4.06591 23.1986 4.13863 23.7213 4.21136C24.2259 4.27954 24.744 4.34773 24.9259 4.59773C25.1031 4.84318 25.0122 5.35227 24.9213 5.84773C24.8259 6.37045 24.7304 6.91136 24.8804 7.37954C25.0259 7.82954 25.4168 8.19773 25.7895 8.55682C26.1622 8.91136 26.5531 9.27954 26.5531 9.60682C26.5531 9.93409 26.1668 10.3023 25.7895 10.6568C25.4122 11.0114 25.0259 11.3795 24.8804 11.8341C24.7259 12.3023 24.8259 12.8432 24.9213 13.3659C25.0122 13.8614 25.1031 14.3705 24.9259 14.6159C24.744 14.8659 24.2259 14.9341 23.7213 15.0023C23.1986 15.0705 22.6577 15.1432 22.2622 15.4341C21.8713 15.7159 21.6395 16.2068 21.4122 16.6795C21.194 17.1432 20.9622 17.6159 20.6622 17.7159C20.3849 17.8068 19.9304 17.5614 19.494 17.3295C19.0213 17.075 18.5304 16.8114 18.0259 16.8114C17.5213 16.8114 17.0304 17.075 16.5577 17.3295C16.1213 17.5659 15.6713 17.8068 15.3895 17.7159C15.0895 17.6205 14.8622 17.1432 14.6395 16.6795C14.4122 16.2068 14.1804 15.7205 13.7895 15.4341C13.394 15.1477 12.8531 15.075 12.3304 15.0023C11.8259 14.9341 11.3077 14.8659 11.1259 14.6159C10.9486 14.3705 11.0395 13.8614 11.1304 13.3659C11.2259 12.8432 11.3213 12.3023 11.1713 11.8341C11.0259 11.3841 10.6349 11.0159 10.2622 10.6568C9.88949 10.3023 9.49858 9.93409 9.49858 9.60682C9.49858 9.275 9.88949 8.90682 10.2622 8.55227Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M18.0278 15.1612C21.0915 15.1612 23.5869 12.6657 23.5869 9.60206C23.5869 6.53842 21.096 4.04297 18.0278 4.04297C14.9597 4.04297 12.4688 6.53842 12.4688 9.60206C12.4688 12.6657 14.9642 15.1612 18.0278 15.1612ZM18.0278 4.83842C20.6551 4.83842 22.7915 6.97479 22.7915 9.60206C22.7915 12.2293 20.6551 14.3657 18.0278 14.3657C15.4006 14.3657 13.2642 12.2293 13.2642 9.60206C13.2642 6.97479 15.4006 4.83842 18.0278 4.83842Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M16.1638 12.0727C16.4092 12.3182 16.7411 12.4545 17.0865 12.4545C17.432 12.4545 17.7638 12.3182 18.0092 12.0727L21.1047 8.97728C21.3501 8.73182 21.4865 8.4 21.4865 8.05455C21.4865 7.70909 21.3501 7.37728 21.1047 7.13182C20.8589 6.88728 20.5264 6.75 20.1797 6.75C19.833 6.75 19.5004 6.88728 19.2547 7.13182L17.0865 9.3L16.7865 9C16.5408 8.75546 16.2082 8.61818 15.8615 8.61818C15.5148 8.61818 15.1823 8.75546 14.9365 9C14.692 9.24574 14.5547 9.57832 14.5547 9.925C14.5547 10.2717 14.692 10.6043 14.9365 10.85L16.1638 12.0727ZM15.5047 9.56364C15.6047 9.46364 15.7365 9.41364 15.8683 9.41364C16.0001 9.41364 16.132 9.46364 16.232 9.56364L16.8138 10.1409C16.9683 10.2955 17.2229 10.2955 17.3774 10.1409L19.8274 7.69091C20.0274 7.49091 20.3501 7.49091 20.5501 7.69091C20.6456 7.78637 20.7001 7.91364 20.7001 8.05C20.7001 8.18637 20.6456 8.31364 20.5501 8.41364L17.4547 11.5091C17.2638 11.7 16.9229 11.7 16.732 11.5091L15.5092 10.2864C15.3047 10.0864 15.3047 9.76364 15.5047 9.56364Z\\" fill=\\"#053F31\\"/>\\n</g>\\n<defs>\\n<clipPath id=\\"clip0_40000114_15442\\">\\n<rect width=\\"30\\" height=\\"30\\" fill=\\"white\\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n"}]}, "logo_svg": "<svg width=\\"32\\" height=\\"25\\" viewBox=\\"0 0 32 25\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M30.8575 2.54485L24.6075 0.0448545C24.4583 -0.0149515 24.2917 -0.0149515 24.1425 0.0448545L17.8925 2.54485C17.7766 2.59129 17.6773 2.67135 17.6074 2.77472C17.5374 2.87809 17.5 3.00004 17.5 3.12485V9.58486C17.5032 10.7718 17.8121 11.938 18.3969 12.9709C18.9817 14.0039 19.8226 14.8688 20.8388 15.4824L24.0538 17.4111C24.1508 17.4693 24.2618 17.5 24.375 17.5C24.4882 17.5 24.5992 17.4693 24.6963 17.4111L27.5 15.7286V22.7286C27.4997 23.0004 27.3916 23.2609 27.1994 23.453C27.0073 23.6452 26.7467 23.7533 26.475 23.7536H2.275C2.00325 23.7533 1.74273 23.6452 1.55058 23.453C1.35843 23.2609 1.25033 23.0004 1.25 22.7286V8.74986H15.625C15.7908 8.74986 15.9497 8.68401 16.0669 8.5668C16.1842 8.44959 16.25 8.29062 16.25 8.12486C16.25 7.9591 16.1842 7.80012 16.0669 7.68291C15.9497 7.5657 15.7908 7.49986 15.625 7.49986H1.25V6.02485C1.25033 5.75311 1.35843 5.49259 1.55058 5.30044C1.74273 5.10828 2.00325 5.00019 2.275 4.99986H15.625C15.7908 4.99986 15.9497 4.93401 16.0669 4.8168C16.1842 4.69959 16.25 4.54062 16.25 4.37485C16.25 4.20909 16.1842 4.05012 16.0669 3.93291C15.9497 3.8157 15.7908 3.74985 15.625 3.74985H2.275C1.67173 3.75019 1.09327 3.98998 0.666698 4.41655C0.240124 4.84313 0.000331192 5.42159 0 6.02485V22.7249C0.000331192 23.3281 0.240124 23.9066 0.666698 24.3332C1.09327 24.7597 1.67173 24.9995 2.275 24.9999H26.475C27.0783 24.9995 27.6567 24.7597 28.0833 24.3332C28.5099 23.9066 28.7497 23.3281 28.75 22.7249V14.8749C29.5286 14.2293 30.156 13.4208 30.588 12.5063C31.0199 11.5919 31.2459 10.5937 31.25 9.58236V3.12485C31.25 3.00004 31.2126 2.87809 31.1426 2.77472C31.0727 2.67135 30.9734 2.59129 30.8575 2.54485ZM30 9.58486C29.9974 10.5561 29.7447 11.5103 29.2661 12.3554C28.7874 13.2006 28.0991 13.9081 27.2675 14.4099L24.375 16.1461L21.4825 14.4099C20.6509 13.9081 19.9626 13.2006 19.484 12.3554C19.0053 11.5103 18.7526 10.5561 18.75 9.58486V3.54735L24.375 1.29735L30 3.54735V9.58486Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M22.3175 7.78847C22.2595 7.73036 22.1906 7.68425 22.1147 7.65277C22.0389 7.62129 21.9576 7.60506 21.8754 7.605C21.7933 7.60494 21.712 7.62106 21.6361 7.65243C21.5602 7.68381 21.4912 7.72982 21.4331 7.78785C21.375 7.84588 21.3289 7.91478 21.2974 7.99063C21.2659 8.06648 21.2497 8.14779 21.2497 8.22991C21.2496 8.31203 21.2657 8.39336 21.2971 8.46925C21.3285 8.54514 21.3745 8.61411 21.4325 8.67222L23.1 10.3385C23.2172 10.4556 23.3761 10.5215 23.5419 10.5215C23.7076 10.5215 23.8665 10.4556 23.9838 10.3385L27.3175 7.00472C27.4347 6.88736 27.5005 6.72826 27.5003 6.56241C27.5002 6.39655 27.4342 6.23754 27.3169 6.12035C27.1995 6.00316 27.0404 5.93738 26.8746 5.9375C26.7087 5.93762 26.5497 6.00361 26.4325 6.12097L23.5413 9.01347L22.3175 7.78847ZM4.375 19.9985C4.20924 19.9985 4.05027 20.0643 3.93306 20.1815C3.81585 20.2987 3.75 20.4577 3.75 20.6235C3.75 20.7892 3.81585 20.9482 3.93306 21.0654C4.05027 21.1826 4.20924 21.2485 4.375 21.2485H9.375C9.54076 21.2485 9.69973 21.1826 9.81694 21.0654C9.93415 20.9482 10 20.7892 10 20.6235C10 20.4577 9.93415 20.2987 9.81694 20.1815C9.69973 20.0643 9.54076 19.9985 9.375 19.9985H4.375Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n"}	2026-03-11 13:11:44.744+01	2026-03-11 13:15:37.145+01	\N
01KJSSPPK7J83NEVAH8N6CMA3D	01KJSSHYDY8NZ3JFASYNXKZ6C5	{"cards": {"items": [{"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M9.77109 13.2125V27.8109C9.77109 28.1562 9.49141 28.4352 9.14688 28.4352C8.80234 28.4352 8.52266 28.1555 8.52266 27.8109V13.2125C8.52266 12.8672 8.80234 12.5883 9.14688 12.5883C9.49141 12.5883 9.77109 12.8672 9.77109 13.2125ZM14.0852 12.5875C13.7398 12.5875 13.4609 12.8672 13.4609 13.2117V27.8102C13.4609 28.1555 13.7406 28.4344 14.0852 28.4344C14.4297 28.4344 14.7094 28.1547 14.7094 27.8102V13.2125C14.7094 12.8672 14.4297 12.5875 14.0852 12.5875ZM19.0234 12.5875C18.6781 12.5875 18.3992 12.8672 18.3992 13.2117V27.8102C18.3992 28.1555 18.6789 28.4344 19.0234 28.4344C19.368 28.4344 19.6477 28.1547 19.6477 27.8102V13.2125C19.6477 12.8672 19.368 12.5875 19.0234 12.5875ZM40 15.9031V36.3594C40 37.3289 39.2109 38.118 38.2414 38.118H24.075C23.1055 38.118 22.3164 37.3289 22.3164 36.3594V34.3211C22.0742 34.4023 21.8133 34.4461 21.5414 34.4461H6.62656C5.44609 34.4461 4.46484 33.5891 4.34219 32.4531L2.08828 11.7219H1.37344C0.616406 11.7219 0 11.1047 0 10.3469V7.95937C0 7.20234 0.615625 6.58594 1.37344 6.58594H6.41563V5.10469C6.41563 4.24531 6.75078 3.43672 7.36016 2.82734C7.96641 2.21875 8.775 1.88281 9.6375 1.88281H18.5289C19.3914 1.88281 20.2 2.21875 20.8078 2.82891C21.4156 3.43359 21.7516 4.24297 21.7516 5.10547V6.58672H26.7937C27.5508 6.58672 28.1672 7.20234 28.1672 7.96016V10.3477C28.1672 11.1062 27.5516 11.7227 26.7937 11.7227H26.0781L25.8133 14.1453H26.2375V13.7C26.2375 13.0344 26.7789 12.493 27.4445 12.493H28.0898C28.3805 11.0648 29.6461 9.98594 31.1586 9.98594C32.6703 9.98594 33.9352 11.0641 34.225 12.493H34.8703C35.5359 12.493 36.0773 13.0344 36.0773 13.7V14.1453H38.2406C39.2109 14.1445 40 14.9336 40 15.9031ZM27.4875 15.7992H34.8289V13.7422H33.6641C33.3187 13.7422 33.0398 13.4625 33.0398 13.118C33.0398 12.0797 32.1961 11.2359 31.1594 11.2359C30.1211 11.2359 29.2773 12.0805 29.2773 13.118C29.2773 13.4633 28.9977 13.7422 28.6531 13.7422H27.4883V15.7992H27.4875ZM7.66484 6.58672H8.63516V5.10469C8.63516 4.83672 8.73906 4.58516 8.92891 4.39531C9.11875 4.20547 9.37031 4.10156 9.63906 4.10156H18.5305C18.7992 4.10156 19.0508 4.20625 19.2398 4.39531C19.4289 4.58437 19.5336 4.83672 19.5336 5.10469V6.58594H20.5039V5.10469C20.5039 4.57734 20.2984 4.08203 19.9258 3.71172C19.5531 3.33672 19.0578 3.13203 18.5305 3.13203H9.63828C9.11094 3.13203 8.61563 3.3375 8.24531 3.71016C7.87109 4.08438 7.66563 4.57969 7.66563 5.10547V6.58672H7.66484ZM9.88359 5.35078V6.58672H18.2836V5.35078H9.88359ZM26.7945 10.4727C26.8609 10.4727 26.9188 10.4141 26.9188 10.3461V7.95859C26.9188 7.89141 26.8617 7.83437 26.7945 7.83437H1.37344C1.30625 7.83437 1.24922 7.89141 1.24922 7.95859V10.3461C1.24922 10.4133 1.30703 10.4727 1.37344 10.4727H26.7945ZM24.075 14.1445H24.5578L24.8227 11.7219H3.34531L5.58438 32.3187C5.63125 32.7555 6.00391 33.1969 6.62656 33.1969H21.5414C21.8508 33.1969 22.1242 33.0836 22.3164 32.8844V15.9031C22.3164 14.9336 23.1055 14.1445 24.075 14.1445ZM38.7508 15.9031C38.7508 15.6273 38.5172 15.3937 38.2414 15.3937H36.0781V15.8414C36.0781 16.507 35.5367 17.0484 34.8711 17.0484H27.4453C26.7797 17.0484 26.2383 16.507 26.2383 15.8414V15.3937H24.075C23.7992 15.3937 23.5656 15.6273 23.5656 15.9031V36.3594C23.5656 36.6398 23.7938 36.8688 24.075 36.8688H38.2414C38.5219 36.8688 38.7508 36.6406 38.7508 36.3594V15.9031ZM26.2945 27.2594L28.25 26.05C28.543 25.8687 28.6344 25.4836 28.4523 25.1906C28.2711 24.8977 27.8859 24.8062 27.593 24.9883L26.8359 25.4562C27.4555 23.6477 29.1578 22.3859 31.1586 22.3859C32.9656 22.3859 34.607 23.4547 35.3398 25.1086C35.4797 25.4242 35.8492 25.5664 36.1641 25.4266C36.2391 25.3934 36.3068 25.3457 36.3634 25.2863C36.42 25.2269 36.4643 25.1569 36.4939 25.0804C36.5234 25.0038 36.5375 24.9222 36.5355 24.8402C36.5335 24.7581 36.5153 24.6773 36.482 24.6023C35.5484 22.4977 33.4594 21.1375 31.1586 21.1375C29.6961 21.1375 28.2984 21.6813 27.2227 22.6695C26.5055 23.3281 25.9727 24.1461 25.6594 25.0477L25.2875 24.4461C25.1062 24.1531 24.7211 24.0617 24.4281 24.2437C24.1352 24.425 24.0437 24.8102 24.2258 25.1031L25.4352 27.0586C25.4911 27.1493 25.5694 27.2242 25.6626 27.276C25.7557 27.3279 25.8606 27.3549 25.9672 27.3547C26.0789 27.3523 26.1922 27.3227 26.2945 27.2594ZM36.8812 26.8602C36.7938 26.7195 36.6547 26.6187 36.4938 26.5805C36.3328 26.5422 36.1625 26.5703 36.0219 26.657L34.0664 27.8664C33.7734 28.0477 33.682 28.4328 33.8641 28.7258C34.0453 29.0187 34.4305 29.1102 34.7234 28.9281L35.4813 28.4594C34.8586 30.2656 33.1531 31.5281 31.1602 31.5281C29.3523 31.5281 27.7094 30.4594 26.9766 28.8055C26.8367 28.4898 26.468 28.3484 26.1523 28.4875C26.0773 28.5207 26.0096 28.5684 25.953 28.6278C25.8964 28.6872 25.8521 28.7572 25.8225 28.8337C25.793 28.9103 25.7789 28.9919 25.7809 29.0739C25.7829 29.1559 25.8011 29.2367 25.8344 29.3117C26.768 31.4164 28.8586 32.7766 31.1602 32.7766C33.6961 32.7766 35.8664 31.1711 36.6602 28.8742L37.0289 29.4711C37.0849 29.5618 37.1632 29.6367 37.2563 29.6885C37.3495 29.7404 37.4543 29.7674 37.5609 29.7672C37.6727 29.7672 37.7867 29.7367 37.8891 29.6734C38.182 29.4922 38.2734 29.107 38.0914 28.8141L36.8812 26.8602ZM32.8656 25.1609L30.5969 27.4297L29.4508 26.2836C29.3332 26.1691 29.1752 26.1054 29.0111 26.1065C28.8469 26.1076 28.6898 26.1733 28.5737 26.2894C28.4577 26.4054 28.392 26.5626 28.3909 26.7267C28.3898 26.8908 28.4534 27.0488 28.568 27.1664L30.1555 28.7539C30.2773 28.8758 30.4375 28.9367 30.5969 28.9367C30.7563 28.9367 30.9164 28.8758 31.0383 28.7539L33.7492 26.043C33.8663 25.9259 33.932 25.7671 33.932 25.6016C33.932 25.436 33.8663 25.2772 33.7492 25.1602C33.5055 24.9172 33.1094 24.9172 32.8656 25.1609Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "For Waste Generators", "richtext": "<ul>\\n<li>Turn waste management costs into revenue streams</li>\\n<li>Guaranteed regulatory compliance (ISO 14001)</li>\\n<li>Complete digital traceability</li>\\n<li>European network of certified valorizers</li>\\n<li>Customized integrated management services</li>\\n</ul>\\n<p>&nbsp;</p>"}, {"svg": "<svg width=\\"40\\" height=\\"40\\" viewBox=\\"0 0 40 40\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M7.64062 6.73242C7.47486 6.73242 7.31589 6.79827 7.19868 6.91548C7.08147 7.03269 7.01562 7.19166 7.01562 7.35742C7.01562 7.52318 7.08147 7.68215 7.19868 7.79936C7.31589 7.91657 7.47486 7.98242 7.64062 7.98242C7.80639 7.98242 7.96536 7.91657 8.08257 7.79936C8.19978 7.68215 8.26562 7.52318 8.26562 7.35742C8.26562 7.19166 8.19978 7.03269 8.08257 6.91548C7.96536 6.79827 7.80639 6.73242 7.64062 6.73242ZM9.93438 6.73242C9.81076 6.73242 9.68992 6.76908 9.58714 6.83775C9.48436 6.90643 9.40426 7.00404 9.35695 7.11824C9.30965 7.23245 9.29727 7.35812 9.32138 7.47935C9.3455 7.60059 9.40503 7.71196 9.49243 7.79936C9.57984 7.88677 9.69121 7.9463 9.81244 7.97041C9.93368 7.99453 10.0593 7.98215 10.1736 7.93485C10.2878 7.88754 10.3854 7.80743 10.454 7.70465C10.5227 7.60187 10.5594 7.48104 10.5594 7.35742C10.5594 7.19166 10.4935 7.03269 10.3763 6.91548C10.2591 6.79827 10.1001 6.73242 9.93438 6.73242ZM12.2281 6.73242C12.1045 6.73242 11.9837 6.76908 11.8809 6.83775C11.7781 6.90643 11.698 7.00404 11.6507 7.11824C11.6034 7.23245 11.591 7.35812 11.6151 7.47935C11.6392 7.60059 11.6988 7.71196 11.7862 7.79936C11.8736 7.88677 11.985 7.9463 12.1062 7.97041C12.2274 7.99453 12.3531 7.98215 12.4673 7.93485C12.5815 7.88754 12.6791 7.80743 12.7478 7.70465C12.8165 7.60187 12.8531 7.48104 12.8531 7.35742C12.8531 7.19166 12.7873 7.03269 12.6701 6.91548C12.5529 6.79827 12.3939 6.73242 12.2281 6.73242Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M28.2437 36.082H30.575C30.9408 36.0804 31.2912 35.9343 31.5499 35.6757C31.8086 35.417 31.9546 35.0666 31.9563 34.7008V33.4883H33.575C34.4497 33.4866 35.2881 33.1384 35.9066 32.5199C36.5251 31.9014 36.8733 31.063 36.875 30.1883V7.22578C36.875 6.35057 36.5273 5.5112 35.9085 4.89233C35.2896 4.27346 34.4502 3.92578 33.575 3.92578H6.425C5.54979 3.92578 4.71042 4.27346 4.09155 4.89233C3.47268 5.5112 3.125 6.35057 3.125 7.22578V30.1883C3.12665 31.063 3.47486 31.9014 4.09337 32.5199C4.71188 33.1384 5.55029 33.4866 6.425 33.4883H8.04375V34.7008C8.04539 35.0666 8.19145 35.417 8.45013 35.6757C8.7088 35.9343 9.05918 36.0804 9.425 36.082H11.7562C11.939 36.0819 12.1199 36.0454 12.2884 35.9746C12.4569 35.9038 12.6096 35.8001 12.7375 35.6695C12.8628 35.5416 12.9616 35.3902 13.0281 35.2239C13.0946 35.0576 13.1276 34.8798 13.125 34.7008V33.4883H14.3062V34.7008C14.3079 35.0655 14.4531 35.415 14.7104 35.6735C14.9677 35.932 15.3165 36.0788 15.6812 36.082H18.0188C18.3846 36.0804 18.7349 35.9343 18.9936 35.6757C19.2523 35.417 19.3984 35.0666 19.4 34.7008V33.4883H20.575V34.7008C20.5766 35.0666 20.7227 35.417 20.9814 35.6757C21.2401 35.9343 21.5904 36.0804 21.9563 36.082H24.2937C24.4764 36.0812 24.6571 36.0444 24.8255 35.9736C24.9939 35.9028 25.1466 35.7995 25.275 35.6695C25.4023 35.5428 25.5028 35.3917 25.5705 35.2252C25.6381 35.0588 25.6715 34.8804 25.6688 34.7008V33.4883H26.875V34.7008C26.8766 35.0645 27.0209 35.413 27.2769 35.6713C27.5329 35.9296 27.8801 36.0771 28.2437 36.082ZM30.7063 34.7008C30.7063 34.7356 30.6924 34.769 30.6678 34.7936C30.6432 34.8182 30.6098 34.832 30.575 34.832H28.2437C28.2089 34.832 28.1756 34.8182 28.1509 34.7936C28.1263 34.769 28.1125 34.7356 28.1125 34.7008V19.9133C28.1125 19.8785 28.1263 19.8451 28.1509 19.8205C28.1756 19.7959 28.2089 19.782 28.2437 19.782H30.575C30.6098 19.782 30.6432 19.7959 30.6678 19.8205C30.6924 19.8451 30.7063 19.8785 30.7063 19.9133V34.7008ZM11.875 34.7008C11.876 34.7173 11.8731 34.7338 11.8666 34.749C11.8601 34.7642 11.8501 34.7776 11.8375 34.7883C11.8257 34.8015 11.8112 34.8123 11.7951 34.8198C11.779 34.8273 11.7615 34.8315 11.7438 34.832H9.425C9.39019 34.832 9.35681 34.8182 9.33219 34.7936C9.30758 34.769 9.29375 34.7356 9.29375 34.7008V30.0008C9.29375 29.966 9.30758 29.9326 9.33219 29.908C9.35681 29.8834 9.39019 29.8695 9.425 29.8695H11.7562C11.7888 29.8727 11.8191 29.8878 11.8411 29.9121C11.863 29.9364 11.8751 29.968 11.875 30.0008V34.7008ZM18.125 34.7008C18.125 34.7356 18.1112 34.769 18.0866 34.7936C18.0619 34.8182 18.0286 34.832 17.9938 34.832H15.6938C15.66 34.8304 15.6282 34.8159 15.605 34.7914C15.5817 34.767 15.5687 34.7345 15.5688 34.7008V24.6445C15.5679 24.6273 15.5705 24.6101 15.5763 24.5938C15.5821 24.5776 15.5911 24.5626 15.6027 24.5499C15.6143 24.5371 15.6284 24.5267 15.644 24.5194C15.6596 24.512 15.6765 24.5078 15.6938 24.507H18.0312C18.0666 24.5086 18.1 24.5238 18.1245 24.5494C18.1489 24.5751 18.1625 24.6091 18.1625 24.6445L18.125 34.7008ZM24.375 34.7008C24.3756 34.7328 24.3645 34.7639 24.3438 34.7883C24.3319 34.8015 24.3175 34.8123 24.3014 34.8198C24.2853 34.8273 24.2678 34.8315 24.25 34.832H21.9688C21.9339 34.832 21.9006 34.8182 21.8759 34.7936C21.8513 34.769 21.8375 34.7356 21.8375 34.7008V27.7445C21.8375 27.7097 21.8513 27.6763 21.8759 27.6517C21.9006 27.6271 21.9339 27.6133 21.9688 27.6133H24.3062C24.3232 27.6133 24.34 27.6167 24.3556 27.6234C24.3712 27.63 24.3852 27.6398 24.3969 27.6521C24.4086 27.6644 24.4177 27.6789 24.4236 27.6948C24.4295 27.7107 24.4321 27.7276 24.4312 27.7445L24.375 34.7008ZM25.625 32.2383V27.7445C25.625 27.3793 25.4803 27.0289 25.2227 26.77C24.965 26.5112 24.6152 26.3649 24.25 26.3633H21.9688C21.6029 26.3649 21.2526 26.511 20.9939 26.7697C20.7352 27.0283 20.5891 27.3787 20.5875 27.7445V32.2383H19.4125V24.6445C19.4133 24.4626 19.3782 24.2823 19.3092 24.114C19.2401 23.9457 19.1385 23.7927 19.0102 23.6638C18.8818 23.5349 18.7293 23.4326 18.5613 23.3628C18.3933 23.293 18.2132 23.257 18.0312 23.257H15.6938C15.5124 23.2578 15.3329 23.2944 15.1656 23.3646C14.9984 23.4347 14.8466 23.5372 14.7189 23.666C14.5912 23.7948 14.4902 23.9476 14.4215 24.1155C14.3528 24.2834 14.3179 24.4631 14.3188 24.6445V32.2383H13.125V30.0008C13.1233 29.6355 12.9771 29.2858 12.7182 29.0281C12.4594 28.7704 12.109 28.6258 11.7438 28.6258H9.425C9.05975 28.6258 8.70937 28.7704 8.45051 29.0281C8.19166 29.2858 8.0454 29.6355 8.04375 30.0008V32.257H6.425C6.15444 32.2562 5.8867 32.202 5.63713 32.0975C5.38756 31.993 5.16106 31.8403 4.97062 31.6481C4.78018 31.456 4.62954 31.2281 4.52733 30.9776C4.42512 30.7271 4.37335 30.4588 4.375 30.1883V7.22578C4.375 6.68209 4.59098 6.16066 4.97543 5.77621C5.35988 5.39176 5.88131 5.17578 6.425 5.17578H33.575C34.1187 5.17578 34.6401 5.39176 35.0246 5.77621C35.409 6.16066 35.625 6.68209 35.625 7.22578V30.1883C35.6234 30.7315 35.4068 31.2519 35.0227 31.636C34.6387 32.0201 34.1182 32.2366 33.575 32.2383H31.9563V19.9133C31.9563 19.7319 31.9205 19.5523 31.8511 19.3847C31.7817 19.2171 31.68 19.0649 31.5517 18.9366C31.4234 18.8083 31.2712 18.7066 31.1036 18.6372C30.936 18.5678 30.7564 18.532 30.575 18.532H28.2437C27.8796 18.5353 27.5315 18.6823 27.2751 18.941C27.0188 19.1997 26.875 19.5491 26.875 19.9133V32.2383H25.625Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M29.4128 16.0324C29.9853 16.0291 30.5335 15.8003 30.9383 15.3954C31.3431 14.9906 31.572 14.4424 31.5753 13.8699C31.5737 13.2969 31.3453 12.7478 30.9401 12.3426C30.5349 11.9374 29.9858 11.7091 29.4128 11.7074C28.8393 11.7074 28.2892 11.9353 27.8837 12.3408C27.4781 12.7464 27.2503 13.2964 27.2503 13.8699C27.2611 14.298 27.4029 14.7124 27.6566 15.0574L23.9066 19.7074C23.5149 19.5568 23.0886 19.5203 22.6771 19.6021C22.2656 19.684 21.8857 19.8809 21.5816 20.1699C21.5713 20.1901 21.5587 20.2089 21.5441 20.2262L18.9316 18.9324C18.964 18.8242 18.987 18.7134 19.0003 18.6012C19.0003 18.0276 18.7725 17.4776 18.3669 17.0721C17.9614 16.6665 17.4113 16.4387 16.8378 16.4387C16.2643 16.4387 15.7142 16.6665 15.3087 17.0721C14.9031 17.4776 14.6753 18.0276 14.6753 18.6012C14.6766 18.8986 14.7405 19.1925 14.8628 19.4637L11.7066 22.1512C11.3687 21.9208 10.9716 21.7927 10.5628 21.7824C9.99145 21.7841 9.44395 22.0118 9.03993 22.4158C8.63592 22.8198 8.40821 23.3673 8.40656 23.9387C8.40167 24.2229 8.45454 24.5052 8.56197 24.7684C8.6694 25.0316 8.82916 25.2703 9.03156 25.4699C9.33396 25.7707 9.71854 25.9753 10.1369 26.0581C10.5553 26.1409 10.9889 26.0981 11.383 25.9351C11.7771 25.7721 12.1143 25.4962 12.352 25.142C12.5897 24.7879 12.7174 24.3714 12.7191 23.9449C12.7163 23.6503 12.6546 23.3592 12.5378 23.0887L15.6941 20.4012C16.0291 20.6333 16.4242 20.7635 16.8316 20.7762C17.1266 20.774 17.4181 20.7113 17.6879 20.592C17.9577 20.4727 18.2002 20.2992 18.4003 20.0824L21.0128 21.3699C20.9815 21.4806 20.9586 21.5934 20.9441 21.7074C20.9325 22.051 21.0031 22.3923 21.1498 22.7032C21.2966 23.0141 21.5153 23.2854 21.7879 23.4949C22.0605 23.7043 22.3791 23.8457 22.7173 23.9074C23.0555 23.9691 23.4035 23.9492 23.7325 23.8495C24.0615 23.7498 24.3619 23.5732 24.609 23.3341C24.8561 23.0951 25.0426 22.8006 25.1531 22.4751C25.2636 22.1496 25.2949 21.8024 25.2444 21.4624C25.1939 21.1224 25.0631 20.7993 24.8628 20.5199L28.5753 15.8824C28.8419 15.9869 29.1265 16.0379 29.4128 16.0324ZM11.5003 23.9387C11.4957 24.1728 11.4018 24.3964 11.2378 24.5637C11.0635 24.7299 10.8318 24.8226 10.5909 24.8226C10.3501 24.8226 10.1184 24.7299 9.94406 24.5637C9.77788 24.3979 9.68359 24.1734 9.68156 23.9387C9.68074 23.8191 9.70357 23.7006 9.74874 23.5899C9.79392 23.4793 9.86054 23.3786 9.94478 23.2938C10.029 23.209 10.1292 23.1417 10.2396 23.0957C10.3499 23.0498 10.4683 23.0262 10.5878 23.0262C10.8217 23.032 11.0449 23.1258 11.2128 23.2887C11.3768 23.4559 11.4707 23.6795 11.4753 23.9137L11.5003 23.9387ZM16.8753 19.5137C16.6401 19.508 16.4162 19.4117 16.2503 19.2449C16.1666 19.1635 16.0998 19.0664 16.0537 18.9592C16.0076 18.8519 15.983 18.7367 15.9816 18.6199C15.9858 18.4415 16.0422 18.2682 16.1439 18.1215C16.2456 17.9748 16.3881 17.8611 16.5537 17.7946C16.7194 17.7281 16.9009 17.7116 17.0758 17.7472C17.2507 17.7828 17.4114 17.8689 17.5378 17.9949C17.7057 18.1601 17.8022 18.3844 17.8066 18.6199C17.805 18.74 17.7795 18.8586 17.7317 18.9687C17.6838 19.0789 17.6146 19.1785 17.5279 19.2616C17.4413 19.3448 17.3389 19.4099 17.2269 19.4532C17.1149 19.4964 16.9954 19.517 16.8753 19.5137ZM29.4128 12.9574C29.647 12.9621 29.8706 13.056 30.0378 13.2199C30.2035 13.3865 30.2996 13.61 30.3066 13.8449C30.2996 14.0798 30.2035 14.3033 30.0378 14.4699C29.8635 14.6361 29.6318 14.7288 29.3909 14.7288C29.1501 14.7288 28.9184 14.6361 28.7441 14.4699C28.6181 14.3435 28.532 14.1828 28.4964 14.0079C28.4608 13.833 28.4772 13.6515 28.5438 13.4859C28.6103 13.3202 28.7239 13.1777 28.8706 13.076C29.0173 12.9743 29.1906 12.9179 29.3691 12.9137L29.4128 12.9574ZM24.0503 21.7074C24.0461 21.8859 23.9897 22.0592 23.888 22.2059C23.7863 22.3526 23.6438 22.4662 23.4781 22.5327C23.3125 22.5992 23.131 22.6157 22.9561 22.5801C22.7812 22.5445 22.6205 22.4584 22.4941 22.3324C22.3871 22.2258 22.3082 22.0943 22.2645 21.9497C22.2209 21.8051 22.2138 21.652 22.2439 21.504C22.274 21.3559 22.3404 21.2177 22.4371 21.1017C22.5338 20.9857 22.6578 20.8955 22.798 20.8392C22.9382 20.7829 23.0901 20.7623 23.2402 20.7792C23.3903 20.7961 23.5338 20.85 23.658 20.9361C23.7821 21.0221 23.8829 21.1376 23.9514 21.2723C24.0199 21.4069 24.0539 21.5564 24.0503 21.7074ZM15.8753 7.98242H31.5878C31.7536 7.98242 31.9125 7.91657 32.0298 7.79936C32.147 7.68215 32.2128 7.52318 32.2128 7.35742C32.2128 7.19166 32.147 7.03269 32.0298 6.91548C31.9125 6.79827 31.7536 6.73242 31.5878 6.73242H15.8753C15.7096 6.73242 15.5506 6.79827 15.4334 6.91548C15.3162 7.03269 15.2503 7.19166 15.2503 7.35742C15.2503 7.52318 15.3162 7.68215 15.4334 7.79936C15.5506 7.91657 15.7096 7.98242 15.8753 7.98242Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "For Valorizers", "richtext": "<ul>\\n<li>Access to stable sources of organic raw materials</li>\\n<li>Reduced procurement costs</li>\\n<li>Flexibility in volumes and qualities</li>\\n<li>Specialized technical support</li>\\n<li>Optimized logistics</li>\\n</ul>"}]}, "tittle": "Our Vlaue Proposition"}	2026-03-03 13:10:28.839+01	2026-03-03 13:19:40.566+01	\N
01KJSX0P1QHHK58RVKEYH6ZYTV	01KJSWW8NEJM75RQCRBVPXMCJQ	{"items": [{"cards": {"items": [{"card_logo": "<svg width=\\"50\\" height=\\"50\\" viewBox=\\"0 0 50 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<g clip-path=\\"url(#clip0_1094_60514)\\">\\n<path d=\\"M48.75 49.2969C48.6719 49.2969 48.5938 49.2969 48.4375 49.2188C32.8125 40.8594 17.0312 40.8594 1.64062 49.2188C1.32812 49.375 1.01562 49.2969 0.859375 48.9844C0.703125 48.6719 0.78125 48.3594 1.09375 48.2031C16.875 39.6094 32.9688 39.6094 48.9844 48.2031C49.2969 48.3594 49.375 48.6719 49.2188 48.9844C49.1406 49.2188 48.9062 49.2969 48.75 49.2969ZM25 19.6875H24.1406C20.2344 19.6875 17.0312 16.4844 17.0312 12.5781V11.7188C17.0312 11.4063 17.2656 11.0938 17.6562 11.0938H18.5156C22.4219 11.0938 25.625 14.2969 25.625 18.2031V19.0625C25.625 19.4531 25.3125 19.6875 25 19.6875ZM18.2031 12.3438V12.5781C18.2031 15.8594 20.8594 18.5156 24.1406 18.5156H24.375V18.2812C24.375 15 21.7188 12.3438 18.4375 12.3438H18.2031ZM25 28.125H24.1406C20.2344 28.125 17.0312 24.9219 17.0312 21.0156V20.1562C17.0312 19.8438 17.2656 19.5312 17.6562 19.5312H18.5156C22.4219 19.5312 25.625 22.7344 25.625 26.6406V27.5C25.625 27.8125 25.3125 28.125 25 28.125ZM18.2031 20.7031V20.9375C18.2031 24.2188 20.8594 26.875 24.1406 26.875H24.375V26.6406C24.375 23.3594 21.7188 20.7031 18.4375 20.7031H18.2031ZM25 36.4062H24.1406C20.2344 36.4062 17.0312 33.2031 17.0312 29.2969V28.4375C17.0312 28.125 17.2656 27.8125 17.6562 27.8125H18.5156C22.4219 27.8125 25.625 31.0156 25.625 34.9219V35.7812C25.625 36.1719 25.3125 36.4062 25 36.4062ZM18.2031 29.0625V29.2969C18.2031 32.5781 20.8594 35.2344 24.1406 35.2344H24.375V35C24.375 31.7187 21.7188 29.0625 18.4375 29.0625H18.2031Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M25.8594 19.6875H25C24.6875 19.6875 24.375 19.4531 24.375 19.0625V18.2031C24.375 14.2969 27.5781 11.0938 31.4844 11.0938H32.3438C32.6562 11.0938 32.9688 11.3281 32.9688 11.7188V12.5781C32.9688 16.4844 29.7656 19.6875 25.8594 19.6875ZM25.625 18.5156H25.8594C29.1406 18.5156 31.7969 15.8594 31.7969 12.5781V12.3438H31.5625C28.2813 12.3438 25.625 15 25.625 18.2812V18.5156ZM25.8594 28.125H25C24.6875 28.125 24.375 27.8906 24.375 27.5V26.6406C24.375 22.7344 27.5781 19.5312 31.4844 19.5312H32.3438C32.6562 19.5312 32.9688 19.7656 32.9688 20.1562V21.0156C32.9688 24.9219 29.7656 28.125 25.8594 28.125ZM25.625 26.9531H25.8594C29.1406 26.9531 31.7969 24.2969 31.7969 21.0156V20.7812H31.5625C28.2813 20.7812 25.625 23.4375 25.625 26.7188V26.9531ZM25.8594 36.4062H25C24.6875 36.4062 24.375 36.1719 24.375 35.7812V34.9219C24.375 31.0156 27.5781 27.8125 31.4844 27.8125H32.3438C32.6562 27.8125 32.9688 28.0469 32.9688 28.4375V29.2969C32.9688 33.2031 29.7656 36.4062 25.8594 36.4062ZM25.625 35.2344H25.8594C29.1406 35.2344 31.7969 32.5781 31.7969 29.2969V29.0625H31.5625C28.2813 29.0625 25.625 31.7188 25.625 35V35.2344ZM25 12.4219C24.8437 12.4219 24.6875 12.3438 24.6094 12.2656L23.9844 11.6406C21.1719 8.82812 21.1719 4.375 23.9844 1.5625L24.6094 0.9375C24.8437 0.703125 25.1562 0.703125 25.3906 0.9375L26.0156 1.48437C28.75 4.29688 28.75 8.75 26.0938 11.6406L25.4687 12.2656C25.3125 12.3438 25.1562 12.4219 25 12.4219ZM25 2.1875L24.7656 2.42187C22.4219 4.76562 22.4219 8.51562 24.7656 10.8594L24.9219 11.0156L25.0781 10.8594C27.3437 8.4375 27.3437 4.6875 25.0781 2.34375L25 2.1875Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M25.2188 42.7969C24.9062 42.7969 24.5938 42.5625 24.5938 42.1719V11.625C24.5938 11.3125 24.8281 11 25.2188 11C25.6094 11 25.8438 11.2344 25.8438 11.625V42.1719C25.8438 42.4844 25.5312 42.7969 25.2188 42.7969ZM8.96875 24.4375H8.10938C4.20313 24.4375 1 21.2344 1 17.3281V16.4688C1 16.1563 1.23437 15.8438 1.625 15.8438H2.40625C6.23438 15.8438 9.35938 18.8906 9.51562 22.6406C9.59375 22.7188 9.59375 22.7969 9.59375 22.875V23.7344C9.51562 24.2031 9.28125 24.4375 8.96875 24.4375ZM2.17188 17.0938V17.3281C2.17188 20.6094 4.82813 23.2656 8.10938 23.2656H8.34375C8.26562 23.1875 8.26562 23.1094 8.26562 23.0312C8.26562 19.75 5.60938 17.0938 2.32812 17.0938H2.17188ZM8.96875 32.875H8.10938C4.20313 32.875 1 29.6719 1 25.7656V24.9062C1 24.5937 1.23437 24.2812 1.625 24.2812H2.40625C6.23438 24.2812 9.35938 27.3281 9.51562 31.0781C9.59375 31.1562 9.59375 31.2344 9.59375 31.3125V32.1719C9.51562 32.5625 9.28125 32.875 8.96875 32.875ZM2.17188 25.5312V25.7656C2.17188 29.0469 4.82813 31.7031 8.10938 31.7031H8.34375C8.26562 31.625 8.26562 31.5469 8.26562 31.4688C8.26562 28.1875 5.60938 25.5312 2.32812 25.5312H2.17188ZM8.96875 41.2344H8.10938C4.20313 41.2344 1 38.0312 1 34.125V33.2656C1 32.9531 1.23438 32.7188 1.54688 32.7188H2.32812C6.15625 32.7188 9.28125 35.7656 9.4375 39.5156C9.51562 39.5938 9.51562 39.6719 9.51562 39.75V40.6094C9.51562 41 9.28125 41.2344 8.96875 41.2344ZM2.17188 33.8906V34.125C2.17188 37.4062 4.82813 40.0625 8.10938 40.0625H8.34375C8.26562 39.9844 8.26562 39.9062 8.26562 39.8281C8.26562 36.5469 5.60938 33.8906 2.32812 33.8906H2.17188Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M9.45313 24.5312H8.59375C8.28125 24.5312 7.96875 24.2969 7.96875 23.9063V23.0469C7.96875 19.1406 11.1719 15.9375 15.0781 15.9375H15.9375C16.25 15.9375 16.5625 16.1719 16.5625 16.5625V17.4219C16.5625 21.3281 13.3594 24.5312 9.45313 24.5312ZM9.21875 23.3594H9.45313C12.7344 23.3594 15.3906 20.7031 15.3906 17.4219V17.1875H15.1562C11.875 17.1875 9.21875 19.8438 9.21875 23.125V23.3594ZM9.45313 32.9688H8.59375C8.28125 32.9688 7.96875 32.7344 7.96875 32.3438V31.4844C7.96875 27.5781 11.1719 24.375 15.0781 24.375H15.9375C16.25 24.375 16.5625 24.6094 16.5625 25V25.8594C16.5625 29.7656 13.3594 32.9688 9.45313 32.9688ZM9.21875 31.7969H9.45313C12.7344 31.7969 15.3906 29.1406 15.3906 25.8594V25.625H15.1562C11.875 25.625 9.21875 28.2813 9.21875 31.5625V31.7969ZM9.45313 41.3281H8.59375C8.28125 41.3281 7.96875 41.0938 7.96875 40.7031V39.8438C7.96875 35.9375 11.1719 32.7344 15.0781 32.7344H15.9375C16.25 32.7344 16.5625 32.9688 16.5625 33.3594V34.2188C16.5625 38.125 13.3594 41.3281 9.45313 41.3281ZM9.21875 40.1563H9.45313C12.7344 40.1563 15.3906 37.5 15.3906 34.2188V33.9844H15.1562C11.875 33.9844 9.21875 36.6406 9.21875 39.9219V40.1563ZM8.67188 17.1875C8.51563 17.1875 8.35938 17.1094 8.28125 17.0312L7.57812 16.4063C4.76562 13.5938 4.76562 9.14063 7.57812 6.32813L8.20312 5.70313C8.28125 5.625 8.4375 5.54688 8.59375 5.54688C8.75 5.54688 8.90625 5.625 8.98438 5.70313L9.60938 6.32813C11.0156 7.73438 11.7188 9.53125 11.7188 11.4063C11.7188 13.2813 10.9375 15.0781 9.60938 16.3281L8.98438 16.9531C8.90625 17.1094 8.82813 17.1875 8.67188 17.1875ZM8.67188 6.95312L8.51562 7.10938C6.17187 9.45313 6.17187 13.2031 8.51562 15.5469L8.67188 15.7031L8.82813 15.5469C9.92188 14.4531 10.5469 12.9688 10.625 11.4063C10.625 9.76563 10 8.28125 8.82813 7.10938L8.67188 6.95312Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M8.67188 45.7031C8.35938 45.7031 8.04688 45.4688 8.04688 45.0781V16.5625C8.04688 16.25 8.28125 15.9375 8.67188 15.9375C9.0625 15.9375 9.29687 16.1719 9.29687 16.5625V45.1563C9.21875 45.4688 8.98438 45.7031 8.67188 45.7031ZM41.3281 24.5312H40.4688C36.5625 24.5312 33.3594 21.3281 33.3594 17.4219V16.5625C33.3594 16.25 33.5938 15.9375 33.9844 15.9375H34.8438C38.75 15.9375 41.9531 19.1406 41.9531 23.0469V23.9063C41.9531 24.2969 41.7188 24.5312 41.3281 24.5312ZM34.6094 17.1875V17.4219C34.6094 20.7031 37.2656 23.3594 40.5469 23.3594H40.7812V23.125C40.7812 19.8438 38.125 17.1875 34.8438 17.1875H34.6094ZM41.3281 32.9688H40.4688C36.5625 32.9688 33.3594 29.7656 33.3594 25.8594V25C33.3594 24.6875 33.5938 24.375 33.9844 24.375H34.8438C38.75 24.375 41.9531 27.5781 41.9531 31.4844V32.3438C41.9531 32.6563 41.7188 32.9688 41.3281 32.9688ZM34.6094 25.625V25.8594C34.6094 29.1406 37.2656 31.7969 40.5469 31.7969H40.7812V31.5625C40.7812 28.2813 38.125 25.625 34.8438 25.625H34.6094ZM41.3281 41.3281H40.4688C36.5625 41.3281 33.3594 38.125 33.3594 34.2188V33.3594C33.3594 33.0469 33.5938 32.7344 33.9844 32.7344H34.8438C38.75 32.7344 41.9531 35.9375 41.9531 39.8438V40.7031C41.9531 41.0938 41.7188 41.3281 41.3281 41.3281ZM34.6094 33.9844V34.2188C34.6094 37.5 37.2656 40.1563 40.5469 40.1563H40.7812V39.9219C40.7812 36.6406 38.125 33.9844 34.8438 33.9844H34.6094Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M42.1875 24.5312H41.3281C41.0156 24.5312 40.7031 24.2969 40.7031 23.9063V23.0469C40.7031 19.1406 43.9063 15.9375 47.8125 15.9375H48.6719C48.9844 15.9375 49.2969 16.1719 49.2969 16.5625V17.4219C49.2969 21.3281 46.0938 24.5312 42.1875 24.5312ZM41.9531 23.3594H42.1875C45.4687 23.3594 48.125 20.7031 48.125 17.4219V17.1875H47.8906C44.6094 17.1875 41.9531 19.8438 41.9531 23.125V23.3594ZM42.1875 32.9688H41.3281C41.0156 32.9688 40.7031 32.7344 40.7031 32.3438V31.4844C40.7031 27.5781 43.9063 24.375 47.8125 24.375H48.6719C48.9844 24.375 49.2969 24.6094 49.2969 25V25.8594C49.2969 29.7656 46.0938 32.9688 42.1875 32.9688ZM41.9531 31.7969H42.1875C45.4687 31.7969 48.125 29.1406 48.125 25.8594V25.625H47.8906C44.6094 25.625 41.9531 28.2813 41.9531 31.5625V31.7969ZM42.1875 41.3281H41.3281C41.0156 41.3281 40.7031 41.0938 40.7031 40.7031V39.8438C40.7031 35.9375 43.9063 32.7344 47.8125 32.7344H48.6719C48.9844 32.7344 49.2969 32.9688 49.2969 33.3594V34.2188C49.2969 38.125 46.0938 41.3281 42.1875 41.3281ZM41.9531 40.1563H42.1875C45.4687 40.1563 48.125 37.5 48.125 34.2188V33.9844H47.8906C44.6094 33.9844 41.9531 36.6406 41.9531 39.9219V40.1563ZM41.25 17.1875C41.0937 17.1875 40.9375 17.1094 40.8594 17.0312L40.2344 16.4063C37.4219 13.5938 37.4219 9.14063 40.2344 6.32813L40.8594 5.70313C40.9375 5.625 41.0937 5.54688 41.25 5.54688C41.4062 5.54688 41.5625 5.625 41.6406 5.70313L42.2656 6.32813C43.6719 7.73438 44.375 9.53125 44.375 11.4063C44.375 13.2813 43.5937 15.0781 42.2656 16.3281L41.6406 16.9531C41.5625 17.1094 41.4062 17.1875 41.25 17.1875ZM41.25 6.95312L41.0937 7.10938C38.75 9.45313 38.75 13.2031 41.0937 15.5469L41.25 15.7031L41.4062 15.5469C42.5 14.4531 43.125 12.9688 43.2031 11.4063C43.2031 9.76563 42.5781 8.28125 41.4062 7.10938L41.25 6.95312Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M41.3281 45.7031C41.0156 45.7031 40.7031 45.4688 40.7031 45.0781V16.5625C40.7031 16.25 40.9375 15.9375 41.3281 15.9375C41.7188 15.9375 41.9531 16.1719 41.9531 16.5625V45.1563C41.9531 45.4688 41.7188 45.7031 41.3281 45.7031Z\\" fill=\\"#053F31\\"/>\\n</g>\\n<defs>\\n<clipPath id=\\"clip0_1094_60514\\">\\n<rect width=\\"50\\" height=\\"50\\" fill=\\"white\\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n", "card_title": "Agrifood Industry", "subtitle_1": "Typical Challenges", "subtitle_2": "Our Solutions", "description_1": "High volume organic waste, seasonal variations, strict hygiene requirements", "description_2": "Biogas production optimization, composting protocols, circular economy integration", "result_subtitle": "Expected Results", "result_description_": "40-60% waste reduction, €50K+ annual savings"}, {"card_logo": "<svg width=\\"40\\" height=\\"46\\" viewBox=\\"0 0 40 46\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M20.4312 14.6725C20.6677 13.1546 21.7624 11.152 22.9616 11.088H26.2401C26.0035 12.6058 24.9034 14.6085 23.7042 14.6725H20.4312ZM20.4201 22.3728C20.6621 20.5859 21.9879 18.1453 23.4291 18.0714H27.2962C27.0542 19.8572 25.734 22.2978 24.2872 22.3728H20.4201ZM34.4913 24.6544C35.6685 24.6544 36.8512 24.7502 38.0118 24.9367C37.7093 16.0241 31.0642 8.63355 22.2354 7.41475C21.8283 8.37655 21.1847 9.21605 20.3541 9.81965L20.3596 11.3421C21.0857 10.329 21.9824 9.75645 22.9175 9.71715C22.9285 9.71626 22.934 9.71625 22.945 9.71625H26.9661C27.3346 9.71625 27.6427 10.0079 27.6537 10.3775C27.6922 11.4044 27.3182 12.733 26.68 13.845C25.8934 15.2165 24.8537 15.9974 23.7481 16.0432L20.3706 16.044L20.3761 18.7481C21.2232 17.4706 22.2794 16.7463 23.3906 16.6997H28.0223C28.3909 16.6997 28.6934 16.9915 28.7044 17.36C28.7484 18.5012 28.3139 20.0385 27.6042 21.2766C26.7186 22.8153 25.5579 23.6925 24.3312 23.7436C24.3202 23.7436 24.3147 23.7445 24.3037 23.7445H20.3871L20.4036 29.7632C24.3477 26.4658 29.3315 24.6544 34.4913 24.6544ZM37.5773 29.5639C28.0784 27.8458 18.9762 34.2611 17.3837 43.7464C17.3727 43.7447 17.3617 43.7436 17.3452 43.7419C16.2526 43.6146 15.2476 43.3591 14.2207 43.056C14.2097 43.0532 14.2042 43.0504 14.1932 43.0478C15.9095 33.3038 24.5293 26.0259 34.4913 26.0259C35.6685 26.0259 36.8512 26.1265 38.0064 26.3248C37.9623 27.4323 37.8138 28.5148 37.5773 29.5639ZM35.8885 34.1175C29.5574 33.4164 23.7008 37.5602 22.2409 43.7135C21.0657 43.8779 19.9367 43.9254 18.7534 43.8671C20.2575 35.2314 28.5466 29.3892 37.2252 30.8933C36.8842 32.0171 36.4331 33.0962 35.8885 34.1175ZM23.7316 43.441C28.4843 42.3619 32.555 39.4202 35.1184 35.4297C29.8962 35.1351 25.1891 38.5093 23.7316 43.441ZM1.59626 28.4207C7.17966 29.669 11.8004 33.6521 13.9127 38.911C14.3968 37.6142 15.0074 36.366 15.728 35.1846C12.6915 29.8437 7.39416 26.1072 1.37626 25.0511V25.062C1.35716 26.2394 1.40456 27.2322 1.59626 28.4207ZM12.8895 42.5796C12.2113 42.3148 11.2847 41.8683 10.6617 41.5052C8.98986 40.5309 7.45276 39.3312 6.16196 37.8942C4.12116 35.6438 2.63596 32.8986 1.89886 29.9057C7.35016 31.3514 11.7124 35.6511 13.2086 41.1283C13.0875 41.6075 12.9775 42.0914 12.8895 42.5796ZM18.9734 22.3728H15.1063C13.6596 22.2978 12.3339 19.8573 12.0973 18.0714H15.9589C17.4057 18.1453 18.7314 20.5859 18.9734 22.3728ZM18.9624 14.6725H15.6894C14.4902 14.6085 13.3901 12.6058 13.1535 11.088H16.432C17.6257 11.1519 18.7259 13.1546 18.9624 14.6725ZM17.1471 7.41645C8.74176 8.58045 2.32226 15.3381 1.46966 23.6749C7.71866 24.7282 13.258 28.4912 16.5695 33.9099C17.3055 32.8733 18.1301 31.9025 19.0339 31.0084L19.0174 23.7443H15.0898C15.0788 23.7443 15.0678 23.7434 15.0623 23.7434C13.8356 23.6923 12.6749 22.8151 11.7893 21.2764C11.0797 20.0383 10.6451 18.5011 10.6891 17.3598C10.7001 16.9913 11.0027 16.6995 11.3712 16.6995H16.0029C17.1086 16.7461 18.1592 17.4623 19.0064 18.7277L18.9954 16.0439L15.6454 16.0431C14.5397 15.9973 13.5001 15.2164 12.7135 13.8449C12.0754 12.7329 11.7014 11.4043 11.7398 10.3774C11.745 10.2 11.8192 10.0318 11.9466 9.90829C12.074 9.78482 12.2445 9.71589 12.4219 9.71616H16.4485C17.3415 9.71616 18.2769 10.321 18.9844 11.2743V9.78385C18.1758 9.18316 17.5432 8.35935 17.1471 7.41645ZM19.694 1.52495C21.8823 3.27315 21.8834 6.85245 19.694 8.59975C17.5046 6.85245 17.5057 3.27315 19.694 1.52495ZM34.3208 12.3735C31.2513 8.96915 27.1202 6.75525 22.6205 6.08505C23.0084 3.72415 22.0149 1.32625 20.0571 0.104855C19.9474 0.0363313 19.8206 0 19.6913 0C19.5619 0 19.4352 0.0363313 19.3255 0.104855C17.3673 1.32655 16.374 3.72525 16.7621 6.08595C12.2679 6.75895 8.13676 8.97275 5.06726 12.3763C1.96476 15.8128 0.187963 20.2047 0.0119629 24.8151C0.00176289 25.3517 -0.015237 26.1 0.028463 26.6267L0.0559631 27.0792L0.094463 27.5264L0.292463 28.9729C0.396963 29.604 0.539963 30.2267 0.710563 30.8402C0.731363 30.9931 1.07776 32.0366 1.15066 32.2283C1.31716 32.6664 1.41316 32.9474 1.60726 33.3804C2.49296 35.4387 3.74156 37.3445 5.31486 39.0216C5.41376 39.1569 6.18516 39.8999 6.34906 40.0502C10.0684 43.4622 14.7591 45.2633 19.6941 45.2633C23.9612 45.2633 28.118 43.9012 31.5539 41.2984L31.8179 41.0973C33.5892 39.7137 35.1294 38.0276 36.3451 36.1027L36.7522 35.4297C38.4409 32.5209 39.3596 29.2135 39.3926 25.7661C39.4164 20.778 37.6658 16.0763 34.3208 12.3735Z\\" fill=\\"white\\"/>\\n</svg>\\n", "card_title": "Farms & Livestock", "subtitle_1": "Typical Challenges", "subtitle_2": "Our Solutions", "description_1": "Manure management, environmental impact, regulatory compliance", "description_2": "Digestate valorization, nutrient management, odor control strategies", "result_subtitle": "Expected Results", "result_description_": "70% compliance improvement, new revenue streams"}, {"card_logo": "<svg width=\\"38\\" height=\\"50\\" viewBox=\\"0 0 38 50\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M34.4716 48.2766H20.6831V44.2518C20.7137 44.2165 20.7429 44.1797 20.7693 44.14C22.0773 41.524 23.85 39.5292 25.3531 37.9333C30.3073 37.8935 33.312 37.0247 35.2473 35.0052C37.1433 33.1092 38.005 30.1792 37.9189 25.8703C37.9189 25.3532 37.488 25.0085 37.0571 25.0085C29.1318 25.0085 24.2409 26.9479 24.1329 36.7405C23.0406 37.8968 21.8192 39.2457 20.6831 40.8817V29.3173C20.6831 28.2433 21.8714 26.1399 23.6399 24.1457C31.5727 24.1075 35.3334 22.7745 35.3334 12.0816C35.3334 11.5645 34.9886 11.2198 34.4715 11.2198C26.3652 11.2198 22.484 12.4042 22.4083 22.9684C21.9747 23.4601 21.3219 24.2389 20.6994 25.1395C20.6938 25.1079 20.6893 25.0764 20.6829 25.0448V15.5286C20.6829 14.4904 20.7509 13.5876 20.8957 12.7614C23.6682 12.2616 26.2231 10.6162 27.6634 8.37577C29.0423 6.22131 29.3008 3.46363 28.4391 0.61974C28.2666 0.188828 27.9219 -0.0696809 27.4911 0.0165211C23.0099 0.705942 19.8212 2.5157 18.5286 5.35958C17.5473 7.48564 17.8084 9.92194 19.2363 12.2269C19.0482 13.218 18.9595 14.296 18.9595 15.5287V21.4943C18.2676 20.5256 17.5655 19.7561 17.2331 19.4084C17.186 15.533 16.4889 13.2305 14.909 11.6507C13.3578 10.0994 11.031 9.49621 7.75623 9.49621C7.23911 9.49621 6.8944 9.92712 6.8944 10.358C6.8944 16.4673 8.48187 20.5716 16.0164 20.6965C17.0064 21.7587 18.9594 24.2119 18.9594 25.8702V36.9488C18.1479 35.8956 17.3659 35.1674 16.7187 34.5743L16.372 34.2276C16.291 22.218 10.6156 19.8377 0.861824 19.8377C0.34471 19.8377 0 20.1824 0 20.6995C0 30.2992 5.10876 35.2089 15.0779 35.3466L15.5983 35.8669C16.5237 36.7082 17.7776 37.8785 18.9593 39.9382V48.2767H5.17095C4.65384 48.2767 4.30912 48.6214 4.30912 49.1385C4.30912 49.6556 4.65384 50.0003 5.17095 50.0003H34.4716C34.9887 50.0003 35.3335 49.6556 35.3335 49.1385C35.3335 48.6213 34.9887 48.2766 34.4716 48.2766ZM36.1952 26.7319C36.109 30.0929 35.4196 32.3335 34.0407 33.7985C32.5946 35.325 30.3239 36.0274 26.6713 36.1853C27.6303 34.7725 28.8868 33.4003 30.5935 32.6782C31.0244 32.5058 31.1967 31.9888 31.0244 31.5579C30.852 31.127 30.335 30.9546 29.9041 31.127C28.257 31.8475 27.0098 32.9371 26.0151 34.1385C26.7908 28.1553 30.1202 26.8098 36.1952 26.7319ZM20.0798 6.0491C21.0277 3.89464 23.4408 2.42959 26.9741 1.82637C27.4912 3.98084 27.2326 5.87679 26.1985 7.51414C25.0104 9.37056 23.0548 10.4586 21.3786 10.9447C21.7064 10.0476 22.1582 9.19689 22.7513 8.28977C23.0098 7.85885 22.9237 7.34184 22.4928 7.08323C22.0619 6.82472 21.5448 6.91083 21.2862 7.34174C20.7465 8.16549 20.3104 8.96132 19.9674 9.78146C19.5326 8.48892 19.5692 7.19814 20.0798 6.0491ZM8.61805 11.2199C10.9448 11.3061 12.5823 11.8231 13.7026 12.8572C14.6226 13.848 15.1936 15.3042 15.4162 17.4635L13.6164 15.5287C13.2717 15.184 12.7546 15.0978 12.4099 15.4425C12.0652 15.7872 11.979 16.3043 12.3237 16.649L14.3511 18.8792C9.8119 18.3197 8.69791 15.7667 8.61805 11.2199ZM1.72384 21.5613C9.48671 21.7214 13.7558 23.5177 14.5327 31.6408C12.7263 29.2811 10.8697 27.6729 8.96286 26.8181C8.53195 26.6457 8.01493 26.8181 7.84253 27.249C7.67012 27.6799 7.84253 28.197 8.27344 28.3694C10.2121 29.1895 12.0861 30.9136 13.9515 33.596C5.89307 33.149 1.97523 29.2698 1.72384 21.5613ZM33.6019 12.948C33.4528 20.8009 31.189 22.2019 25.2381 22.3957C26.2721 21.2607 27.6843 19.8211 28.9563 18.8036C29.3872 18.5451 29.3872 17.9418 29.1287 17.597C28.8702 17.1661 28.2668 17.1661 27.9221 17.4246C26.6229 18.4285 25.243 19.7965 24.198 20.9187C24.6353 13.9672 27.2584 13.0164 33.6019 12.948Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "card_title": "Processing Plants", "subtitle_1": "Typical Challenges", "subtitle_2": "Our Solutions", "description_1": "Multiple waste streams, quality control, logistics complexity", "description_2": "Stream segregation, by-product valorization, transport optimization", "result_subtitle": "Expected Results ", "result_description_": "35% cost reduction, ISO certification support"}]}, "title": "Industry Solutions", "description": "Specialized services for different sectors"}]}	2026-03-03 14:08:21.687+01	2026-03-03 14:19:04.317+01	\N
01KJYAPGBFCDHW1SS8RS0XR0HN	01KJEZEJCNXCRFAZW0BR2BJRCW	{"title": "Our Proven Process", "description_": "5-step methodology to transform your waste management", "process_steps": {"items": [{"title": "Initial Contact & Discovery", "step_no.": "01", "step_tag": "Week 00-01", "description": "We begin with understanding your business, current waste management practices, and specific challenges. Free initial consultation with no obligations."}, {"title": "Comprehensive Diagnosis", "step_no.": "02", "step_tag": "Week 02-03", "description": "Our team conducts detailed on-site audits, waste characterization, and analysis of all waste streams. Complete documentation and regulatory compliance review."}, {"title": "Customized Proposal", "step_no.": "03", "step_tag": "Week 03-04", "description": "Based on our findings, we develop a tailored waste management plan with clear objectives, timelines, investment requirements, and expected ROI."}, {"title": "Implementation & Training", "step_no.": "04", "step_tag": "Week 05-08", "description": "We work alongside your team to implement the new waste management processes, provide necessary training, and establish monitoring systems."}, {"title": "Initial Contact & Discovery", "step_no.": "05", "step_tag": "Week 00-01", "description": "We begin with understanding your business, current waste management practices, and specific challenges. Free initial consultation with no obligations."}]}}	2026-03-05 07:24:25.967+01	2026-03-05 07:26:20.168+01	\N
01KKEE03F7AEAMM2NJCQSAH3PZ	01KKEDYH2KT5ZD3QS4BP2EE13Q	{"info": {"items": [{"title": "Questions about your order?", "subtitle": "Contact us before completing: info@biomket.com"}, {"title": "Cancellation and returns", "subtitle": "Check our cancellation policy in the Terms & Conditions."}]}}	2026-03-11 13:29:57.095+01	2026-03-11 13:30:59.029+01	\N
01KJSJN8JRVN75N57Q1D0PHEPJ	01KJSJKPXQ3D5D5PMK5487RFK5	{"items": [{"title": "Transforming Organic Waste into Business Opportunities", "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_banner_img_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_Banner_image.png"}]}, "description": "Europe's first specialized platform for organic waste and by-product valorization, combining marketplace technology with comprehensive management services."}]}	2026-03-03 11:07:21.688+01	2026-03-12 08:51:19.985+01	\N
01KJSG1YXNHC6BH3CZ2KZS4QQ2	01KJSG0PQ80S3PC6CPFVK9RGGS	{"items": [{"title": "Organic Waste Marketplace", "button": {"items": [{"button_url": "/marketplace", "button_text": "Explore Marketplace"}]}, "description": "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's"}]}	2026-03-03 10:21:52.053+01	2026-03-03 10:22:15.007+01	\N
01KJSHYY2HX038RSEBXRNMXFSX	01KJSHY7BSXPTJ19S371HC5QWH	{"items": [{"image": "https://biomket1.yourwebdemo.co.in/admin/upload/Company_Logo_Image_White.png"}]}	2026-03-03 10:55:10.033+01	2026-03-03 10:56:38.071+01	\N
01KJSTA24QGK8V23WQC93DP9XH	01KJCAVQMZ61BFP5G8VBFZ55B2	{"cards": {"items": [{"svg": "<svg width=\\"67\\" height=\\"77\\" viewBox=\\"0 0 67 77\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M56.2839 4.46984C55.9827 3.94641 56.1559 3.27766 56.6831 2.97562L59.0178 1.62672C59.545 1.32391 60.2078 1.50391 60.5166 2.02656C60.8178 2.55 60.637 3.21875 60.1098 3.52078L57.7752 4.87031C57.6511 4.94238 57.5139 4.98918 57.3717 5.00805C57.2294 5.02691 57.0849 5.01745 56.9463 4.98021C56.8077 4.94298 56.6778 4.8787 56.5642 4.79109C56.4505 4.70347 56.3553 4.59424 56.2841 4.46969L56.2839 4.46984ZM58.6712 13.4028C58.6712 14.0075 59.1683 14.4972 59.7708 14.4972H62.467C63.0695 14.4972 63.5591 14.0077 63.5591 13.4028C63.5591 12.798 63.0695 12.3092 62.467 12.3092H59.7708C59.1683 12.3092 58.6712 12.7987 58.6712 13.4028ZM21.9712 25.3264C22.1595 25.3264 22.3478 25.2789 22.5211 25.1795L24.8558 23.8306C25.3755 23.5286 25.5563 22.8598 25.255 22.3364C24.9538 21.813 24.2834 21.6338 23.7638 21.9358L21.4216 23.2853C20.9019 23.5873 20.7211 24.2561 21.0223 24.7795C21.1187 24.9458 21.2571 25.0839 21.4237 25.1798C21.5902 25.2758 21.779 25.3264 21.9712 25.3264ZM56.6831 23.8306L59.0178 25.1795C59.185 25.2759 59.3747 25.3266 59.5677 25.3264C59.7599 25.3264 59.9487 25.2759 60.1152 25.18C60.2818 25.084 60.4202 24.946 60.5166 24.7797C60.8178 24.2563 60.637 23.5875 60.1098 23.2855L57.7752 21.9359C57.2555 21.6339 56.5852 21.8131 56.2839 22.3366C55.9827 22.86 56.1559 23.5288 56.6831 23.8308V23.8306ZM21.4214 3.52094L23.7636 4.87047C23.9285 4.96586 24.1154 5.01649 24.3059 5.01734C24.4982 5.0172 24.6871 4.96655 24.8536 4.87046C25.0201 4.77437 25.1585 4.63622 25.2548 4.46984C25.5561 3.94641 25.3753 3.27766 24.8556 2.97562L22.5209 1.62672C21.9937 1.32391 21.3234 1.50391 21.0222 2.02656C20.7209 2.55 20.9017 3.21875 21.4214 3.52078V3.52094ZM19.0716 14.497H21.7678C22.3703 14.497 22.8598 14.0075 22.8598 13.4027C22.8598 12.7978 22.3703 12.3091 21.7678 12.3091H19.0716C18.4616 12.3091 17.972 12.7986 17.972 13.4027C17.972 14.0067 18.4616 14.497 19.0716 14.497ZM20.3713 44.1405L25.1728 42.8419L27.6619 47.1558C27.8575 47.4948 28.3592 47.4495 28.4909 47.0809L31.8209 37.7578C31.387 37.1226 31.1553 36.3711 31.1561 35.6019V32.1562C31.1541 30.8161 30.8234 29.6631 30.2048 28.4809C29.6758 27.47 29.0027 26.5044 28.3136 25.5431L19.8369 43.5022C19.6697 43.8564 19.9931 44.243 20.3714 44.1406L20.3713 44.1405ZM51.3261 28.4813C50.7075 29.6633 50.377 30.8162 50.3748 32.1562V35.6019C50.3748 36.4005 50.1294 37.143 49.71 37.7577L53.04 47.0809C53.1717 47.4495 53.6734 47.495 53.8691 47.1558L56.3581 42.8419L61.1597 44.1405C61.5378 44.2428 61.8613 43.8564 61.6941 43.502L53.2173 25.543C52.5281 26.5045 51.855 27.4702 51.3259 28.4813H51.3261ZM37.2653 32.127V21.5367C37.2653 21.3877 37.2578 21.24 37.2578 21.0947C35.1189 20.2911 33.3792 18.7472 32.4152 16.682C31.3005 14.2923 31.3005 12.1617 32.4152 10.9839C33.1306 10.2262 34.17 10.0206 35.2092 10.4333C37.0394 11.1594 38.9748 13.8984 39.3741 19.4114C40.2778 19.5687 41.2569 19.5687 42.1606 19.4114C42.5522 13.8984 44.4953 11.1594 46.3178 10.4333C47.3572 10.0206 48.4041 10.2262 49.1195 10.9839C50.2342 12.1617 50.2266 14.2923 49.112 16.682C48.1556 18.7464 46.4158 20.2911 44.2769 21.0947C44.2694 21.24 44.2694 21.3877 44.2694 21.5367V32.127H48.188C48.2169 24.9717 55.6092 22.9406 55.6092 13.2975C55.6092 4.4325 48.1873 0 40.7655 0C33.3436 0 25.9217 4.4325 25.9217 13.2975C25.9217 22.9406 33.3141 24.9716 33.343 32.127H37.2653ZM39.4494 21.6345V32.127H42.0853V21.6345C41.2192 21.7445 40.308 21.7453 39.4494 21.6345ZM47.5305 12.4847C47.5078 12.4598 47.4627 12.4131 47.3572 12.4131C47.3045 12.4131 47.2291 12.4267 47.1238 12.4658C46.3103 12.7905 44.887 14.4902 44.4275 18.6219C45.6098 17.9673 46.5589 16.9853 47.1313 15.7578C47.9823 13.9442 47.8316 12.807 47.5305 12.4847ZM34.4034 12.4658C34.3055 12.4267 34.2302 12.4131 34.1775 12.4131C34.072 12.4131 34.0269 12.4598 34.0042 12.4847C33.703 12.807 33.5523 13.9442 34.4034 15.7578C34.9758 16.9853 35.9247 17.9675 37.1072 18.6219C36.6403 14.4902 35.2244 12.7911 34.4034 12.4658ZM48.1873 34.9317V34.3142H33.3436V34.9317C33.3436 35.8395 34.0841 36.58 34.9919 36.58H46.5392C47.447 36.58 48.1873 35.8395 48.1873 34.9317ZM46.4517 39.1739V38.7673H35.0794V39.1739C35.0794 40.0817 35.8198 40.822 36.7277 40.822H44.8036C45.7114 40.822 46.4519 40.0816 46.4519 39.1739H46.4517ZM39.4472 44.822H42.0839C42.9917 44.822 43.7322 44.0817 43.7322 43.1737V43.0094H37.7989V43.1737C37.7989 44.0816 38.5394 44.822 39.4472 44.822ZM6.33094 59.6923C5.46203 58.8236 4.04031 58.8236 3.17156 59.6923L0 62.8638L13.6816 76.5453L16.853 73.3739C17.7217 72.5052 17.7219 71.0833 16.853 70.2145L6.33094 59.6923ZM61.71 51.745C56.3083 54.8636 47.773 61.1195 40.6162 61.3422C36.9527 61.4317 32.6533 60.5284 30.9069 59.6195C30.1531 59.2277 30.0277 58.4928 30.3047 57.9602C30.5816 57.4273 31.3308 57.2122 31.8636 57.4892C33.375 58.2758 37.197 59.0552 40.5189 58.9737C41.7908 58.9427 42.9611 58.7934 43.8297 58.4775C46.4133 57.5375 45.6522 53.8386 42.5467 53.9559C24.287 53.9559 23.2567 39.9269 7.93156 58.0306C7.94187 58.0408 7.95234 58.0506 7.96266 58.0609L18.4848 68.583C18.5272 68.6253 18.5681 68.6686 18.6086 68.7122C21.9422 67.1436 25.6386 67.1122 29.5972 67.3491C32.6425 67.5312 36.2769 67.9709 39.6111 67.8972C44.27 67.7942 47.1252 66.5297 51.2162 64.3625C55.8739 61.8953 63.9689 56.9812 65.3812 55.1248C67.4022 52.4678 64.7931 49.9655 61.7102 51.7452L61.71 51.745Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Founded", "sub-title": "Established in 2024"}, {"svg": "<svg width=\\"64\\" height=\\"64\\" viewBox=\\"0 0 64 64\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M44.3885 22.6968V21.788H40.3653V25.1568C41.579 24.1447 42.9345 23.3159 44.3885 22.6968ZM52.7221 0H8.91406V4.1H52.7221V0ZM59.9813 27.6504C58.7295 26.401 57.2464 25.4073 55.6149 24.7248C53.9765 24.0513 52.2222 23.7048 50.4509 23.7048C48.6804 23.7003 46.9267 24.0467 45.2909 24.724C43.6551 25.4012 42.1697 26.3958 40.9205 27.6504C39.6632 28.9005 38.6662 30.3874 37.9872 32.0251C37.3082 33.6629 36.9606 35.419 36.9645 37.192C36.9645 37.5576 36.9757 37.9344 36.9981 38.3V38.3448C37.5173 52.8512 47.7797 61.8944 50.4501 64C53.1877 61.8392 63.9261 52.3744 63.9261 37.192C63.9322 35.4197 63.5867 33.6638 62.9095 32.026C62.2324 30.3882 61.2371 28.9009 59.9813 27.6504ZM50.4501 44.0296C46.6821 44.0296 43.6125 40.96 43.6125 37.192C43.6125 33.4128 46.6821 30.3544 50.4501 30.3544C54.2181 30.3544 57.2877 33.4128 57.2877 37.192C57.2885 40.96 54.2181 44.0296 50.4501 44.0296ZM31.9317 39.4304V56.796H40.8309C37.9053 52.4296 35.2901 46.6112 34.8357 39.4304H31.9317ZM19.6085 39.4304H29.7157V56.796H19.6085V39.4304Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M34.7432 37.1916C34.7432 33.5564 35.9736 30.11 38.2344 27.3284C38.1775 27.199 38.1473 27.0594 38.1456 26.918V20.6788C38.1451 20.5332 38.1734 20.3888 38.2289 20.2542C38.2844 20.1195 38.366 19.9971 38.4689 19.8942C38.5719 19.7912 38.6943 19.7096 38.829 19.6541C38.9636 19.5986 39.1079 19.5703 39.2536 19.5708H45.4928C46.1136 19.5708 46.6008 20.0588 46.6008 20.6788V21.9756C47.4993 21.7536 48.4152 21.609 49.3384 21.5436V6.31641H12.3016V56.7964H17.388V38.322C17.388 37.7124 17.8864 37.214 18.496 37.214H34.7424L34.7432 37.1916ZM38.1456 9.64121C38.1451 9.49555 38.1734 9.35124 38.2289 9.21657C38.2844 9.0819 38.366 8.95955 38.4689 8.85655C38.5719 8.75356 38.6943 8.67197 38.829 8.61647C38.9636 8.56098 39.1079 8.53268 39.2536 8.53321H45.4928C46.1136 8.53321 46.6008 9.02121 46.6008 9.64121V15.8804C46.6013 16.0261 46.573 16.1704 46.5175 16.305C46.462 16.4397 46.3804 16.5621 46.2774 16.6651C46.1745 16.7681 46.0521 16.8496 45.9174 16.9051C45.7828 16.9606 45.6385 16.9889 45.4928 16.9884H39.2536C38.96 16.9876 38.6787 16.8706 38.4711 16.6629C38.2634 16.4553 38.1464 16.174 38.1456 15.8804V9.64121ZM26.5864 9.64121C26.5859 9.49555 26.6142 9.35124 26.6697 9.21657C26.7252 9.0819 26.8068 8.95955 26.9097 8.85655C27.0127 8.75356 27.1351 8.67197 27.2698 8.61647C27.4044 8.56098 27.5487 8.53268 27.6944 8.53321H33.9336C34.5544 8.53321 35.0416 9.02121 35.0416 9.64121V15.8804C35.0421 16.0261 35.0138 16.1704 34.9583 16.305C34.9028 16.4397 34.8212 16.5621 34.7183 16.6651C34.6153 16.7681 34.4929 16.8496 34.3582 16.9051C34.2236 16.9606 34.0793 16.9889 33.9336 16.9884H27.6944C27.4008 16.9876 27.1195 16.8706 26.9119 16.6629C26.7043 16.4553 26.5872 16.174 26.5864 15.8804V9.64121ZM23.484 26.918C23.484 27.5276 22.9856 28.026 22.376 28.026H16.1368C15.9911 28.0265 15.8468 27.9982 15.7122 27.9427C15.5775 27.8872 15.4551 27.8056 15.3521 27.7027C15.2492 27.5997 15.1676 27.4773 15.1121 27.3426C15.0566 27.208 15.0283 27.0637 15.0288 26.918V20.6788C15.0288 20.058 15.5168 19.5708 16.1368 19.5708H22.376C22.9856 19.5708 23.484 20.0588 23.484 20.6788V26.918ZM23.484 15.8804C23.484 16.49 22.9856 16.9884 22.376 16.9884H16.1368C15.9911 16.9889 15.8468 16.9606 15.7122 16.9051C15.5775 16.8496 15.4551 16.7681 15.3521 16.6651C15.2492 16.5621 15.1676 16.4397 15.1121 16.305C15.0566 16.1704 15.0283 16.0261 15.0288 15.8804V9.64121C15.0288 9.02041 15.5168 8.53321 16.1368 8.53321H22.376C22.9856 8.53321 23.484 9.02121 23.484 9.64121V15.8804ZM33.9344 28.0268H27.6952C27.4016 28.026 27.1203 27.909 26.9127 27.7013C26.705 27.4937 26.588 27.2124 26.5872 26.9188V20.6796C26.5867 20.534 26.615 20.3896 26.6705 20.255C26.726 20.1203 26.8076 19.9979 26.9105 19.895C27.0135 19.792 27.1359 19.7104 27.2706 19.6549C27.4052 19.5994 27.5495 19.5711 27.6952 19.5716H33.9344C34.5552 19.5716 35.0424 20.0596 35.0424 20.6796V26.9188C35.0429 27.0645 35.0146 27.2088 34.9591 27.3434C34.9036 27.4781 34.822 27.6005 34.7191 27.7035C34.6161 27.8065 34.4937 27.888 34.359 27.9435C34.2244 27.999 34.0801 28.0273 33.9344 28.0268ZM0 56.7964H10.0856V22.4964L0 27.7276V56.7964Z\\" fill=\\"#053F31\\"/>\\n<path d=\\"M17.2422 10.75H21.2654V14.7732H17.2422V10.75ZM28.8014 10.75H32.8246V14.7732H28.8014V10.75ZM40.3598 10.75H44.383V14.7732H40.3598V10.75ZM17.2422 21.7884H21.2654V25.8116H17.2422V21.7884ZM28.8014 21.7884H32.8246V25.8116H28.8014V21.7884Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Headquarters", "sub-title": "Established in 2024"}, {"svg": "<svg width=\\"75\\" height=\\"75\\" viewBox=\\"0 0 75 75\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path fill-rule=\\"evenodd\\" clip-rule=\\"evenodd\\" d=\\"M74.5728 55.3322L71.8855 54.2978C71.8617 54.289 71.8405 54.2744 71.8237 54.2554C71.807 54.2364 71.7952 54.2135 71.7895 54.1888C71.4306 52.7174 70.8472 51.31 70.0598 50.0163C70.0463 49.9948 70.0383 49.9703 70.0367 49.9449C70.0351 49.9196 70.0398 49.8943 70.0505 49.8713L71.22 47.238C71.2332 47.2091 71.2372 47.1769 71.2314 47.1457C71.2256 47.1144 71.2104 47.0858 71.1877 47.0636L68.0306 43.9067C68.0084 43.8841 67.9798 43.8688 67.9486 43.863C67.9174 43.8572 67.8852 43.8612 67.8564 43.8744L65.2222 45.0442C65.1992 45.0548 65.1739 45.0595 65.1486 45.0579C65.1233 45.0562 65.0988 45.0483 65.0773 45.0348C63.7839 44.2477 62.3769 43.6644 60.9059 43.3055C60.8812 43.2998 60.8583 43.2881 60.8393 43.2713C60.8202 43.2546 60.8057 43.2333 60.7969 43.2095L59.7623 40.5216C59.7513 40.4918 59.7313 40.4662 59.7051 40.4482C59.6789 40.4303 59.6478 40.4209 59.6161 40.4213H55.1516C55.1198 40.4209 55.0888 40.4303 55.0627 40.4483C55.0365 40.4663 55.0165 40.4918 55.0055 40.5216L53.9708 43.2095C53.962 43.2333 53.9475 43.2546 53.9284 43.2713C53.9094 43.2881 53.8864 43.2998 53.8617 43.3055C52.3908 43.6645 50.9838 44.2478 49.6903 45.0348C49.6688 45.0483 49.6443 45.0562 49.619 45.0579C49.5937 45.0595 49.5684 45.0548 49.5453 45.0442L46.9111 43.8744C46.8822 43.8611 46.85 43.8572 46.8188 43.8629C46.7876 43.8687 46.7589 43.884 46.7367 43.9067L43.5797 47.0638C43.557 47.0859 43.5417 47.1146 43.5359 47.1458C43.5301 47.177 43.5341 47.2093 43.5473 47.2381L44.7172 49.872C44.7278 49.8951 44.7325 49.9204 44.7308 49.9457C44.7292 49.971 44.7213 49.9955 44.7078 50.017C43.9207 51.3106 43.3374 52.7177 42.9784 54.1888C42.9728 54.2135 42.961 54.2364 42.9443 54.2554C42.9275 54.2745 42.9063 54.289 42.8825 54.2978L40.1948 55.3323C40.1651 55.3434 40.1395 55.3634 40.1215 55.3896C40.1035 55.4157 40.094 55.4468 40.0944 55.4786V59.9431C40.0944 60.0092 40.1331 60.0656 40.1948 60.0892L42.882 61.1236C42.9058 61.1324 42.9271 61.1469 42.9438 61.166C42.9606 61.185 42.9723 61.2079 42.978 61.2327C43.3371 62.7039 43.9204 64.1112 44.7077 65.405C44.7211 65.4265 44.729 65.451 44.7307 65.4763C44.7323 65.5016 44.7276 65.5269 44.717 65.55L43.5475 68.1833C43.5343 68.2121 43.5303 68.2444 43.5361 68.2756C43.5419 68.3068 43.5572 68.3354 43.5798 68.3577L46.7369 71.5147C46.7591 71.5374 46.7877 71.5527 46.8189 71.5585C46.8502 71.5643 46.8824 71.5603 46.9113 71.547L49.5455 70.3772C49.5685 70.3665 49.5938 70.3618 49.6191 70.3634C49.6445 70.365 49.669 70.3729 49.6905 70.3864C50.984 71.1735 52.3909 71.7568 53.8619 72.1158C53.9133 72.1283 53.9519 72.1623 53.9709 72.2117L55.0056 74.8997C55.0167 74.9294 55.0367 74.955 55.0629 74.973C55.0891 74.991 55.1201 75.0004 55.1519 75H59.6164C59.6481 75.0003 59.6792 74.9909 59.7054 74.9729C59.7315 74.955 59.7515 74.9294 59.7627 74.8997L60.797 72.2123C60.8058 72.1886 60.8204 72.1673 60.8394 72.1506C60.8585 72.1338 60.8814 72.1221 60.9061 72.1164C62.3774 71.7574 63.7848 71.174 65.0786 70.3867C65.1001 70.3732 65.1246 70.3653 65.1499 70.3636C65.1752 70.362 65.2006 70.3667 65.2236 70.3773L67.8569 71.5469C67.8857 71.5601 67.918 71.5641 67.9492 71.5583C67.9804 71.5525 68.0091 71.5372 68.0312 71.5145L71.1883 68.3575C71.211 68.3353 71.2263 68.3066 71.2321 68.2754C71.2379 68.2442 71.2339 68.212 71.2206 68.1831L70.0508 65.5489C70.0401 65.5259 70.0354 65.5005 70.037 65.4752C70.0386 65.4499 70.0466 65.4254 70.0602 65.4039C70.8473 64.1105 71.4305 62.7035 71.7894 61.2325C71.7951 61.2078 71.8068 61.1849 71.8236 61.1659C71.8403 61.1468 71.8615 61.1322 71.8853 61.1234L74.5733 60.0887C74.603 60.0777 74.6286 60.0577 74.6466 60.0315C74.6646 60.0053 74.674 59.9742 74.6736 59.9425V55.4781C74.6738 55.4464 74.6642 55.4154 74.6462 55.3893C74.6281 55.3632 74.6025 55.3433 74.5728 55.3322ZM57.3838 65.9564C52.8294 65.9564 49.138 62.265 49.138 57.7108C49.138 53.1564 52.8294 49.465 57.3838 49.465C61.9381 49.465 65.6295 53.1564 65.6295 57.7108C65.6295 62.265 61.9383 65.9564 57.3838 65.9564ZM30.205 18.1987C23.6558 18.1987 18.3464 23.508 18.3464 30.0573C18.3464 36.6066 23.6556 41.9159 30.205 41.9159C36.7544 41.9159 42.0636 36.6067 42.0636 30.0573C42.0638 23.508 36.7544 18.1987 30.205 18.1987ZM37.0912 27.9517L29.9175 35.1255C28.8803 36.1628 27.4928 35.7411 26.573 34.8213L23.3191 31.5673C22.5053 30.7538 22.5055 29.4223 23.3191 28.6087C24.1327 27.7952 25.4641 27.795 26.2777 28.6087L28.3973 30.7284L34.1327 24.9931C34.9462 24.1795 36.2777 24.1795 37.0912 24.9931C37.905 25.8067 37.905 27.1381 37.0912 27.9517ZM55.4641 24.2166C54.8284 21.5465 53.7707 18.995 52.3309 16.6583L54.5111 11.7495L48.7239 5.9625L43.8138 8.14328C41.4775 6.7041 38.9267 5.6466 36.2575 5.01062L34.3288 0H26.1447L24.2158 5.01062C21.5465 5.64647 18.9957 6.70397 16.6595 8.14328L11.7495 5.96266L5.96234 11.7498L8.14297 16.6595C6.70345 18.9959 5.64589 21.5469 5.01016 24.2164L0 26.145V34.3291L5.00953 36.2573C5.64531 38.9274 6.70304 41.4789 8.14281 43.8156L5.96266 48.7242L11.7498 54.5113L16.6602 52.3305C18.9964 53.7697 21.5471 54.8271 24.2164 55.463L26.1452 60.4738H34.3292L36.2573 55.4642C36.7154 55.3553 37.1704 55.2337 37.6217 55.0997C37.6888 54.6322 37.8794 54.191 38.1739 53.8217C38.4684 53.4525 38.8561 53.1685 39.297 52.9991L40.8928 52.3848C41.1781 51.5016 41.5341 50.6427 41.9575 49.8167L41.263 48.2527C40.8186 47.252 41.0381 46.0702 41.8123 45.2958L44.9692 42.1387C45.7434 41.3645 46.9253 41.145 47.9261 41.5894L49.4905 42.2841C50.3164 41.8608 51.1752 41.5048 52.0583 41.2194L52.6727 39.6233C52.8564 39.1452 53.1745 38.7306 53.5886 38.4292C54.0027 38.1279 54.4952 37.9528 55.0066 37.925C55.1772 37.375 55.3297 36.8187 55.4633 36.2573L60.4741 34.3286V26.1445L55.4641 24.2166ZM30.2367 48.5452C20.1253 48.5452 11.9284 40.3483 11.9284 30.2367C11.9284 20.1253 20.1253 11.9284 30.2367 11.9284C40.3481 11.9284 48.545 20.1253 48.545 30.2367C48.545 40.3483 40.3481 48.5452 30.2367 48.5452Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Operational reach", "sub-title": "Established in 2024"}, {"svg": "<svg width=\\"64\\" height=\\"64\\" viewBox=\\"0 0 64 64\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<path d=\\"M63.29 33.3333H29.9567V0C48.3667 0 63.29 14.9233 63.29 33.3333ZM29.1233 51.6233C24.56 51.4167 20.2389 49.5112 17.0089 46.2812C13.7788 43.0511 11.8733 38.73 11.6667 34.1667H0C0.436667 50.0667 13.2233 62.8533 29.1233 63.29V51.6233ZM47.9783 36.6667C47.2225 40.7337 45.1127 44.4253 41.9922 47.1409C38.8717 49.8566 34.9241 51.4364 30.7917 51.6233V63.29C45.8517 62.8767 58.13 51.3867 59.7617 36.6667H47.9783ZM26.6233 3.52833C11.9033 5.16 0.413333 17.4383 0 32.4983H11.6667C11.8536 28.3659 13.4334 24.4183 16.1491 21.2978C18.8647 18.1773 22.5563 16.0675 26.6233 15.3117V3.52833Z\\" fill=\\"#053F31\\"/>\\n</svg>\\n", "title": "Specialized sectors", "sub-title": "Established in 2024"}]}, "title_": "Our Team", "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/WC_and_TS_image_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/WC_and_TS_image_Desktop.png"}]}, "rich_text": {"items": [{"html_text": "<p><strong>Our organic waste and by-product specialists offer:</strong></p>\\n<ul>\\n<li>Technical analysis and waste characterization</li>\\n<li>Custom valorization chain design</li>\\n<li>Documentation management and regulatory compliance</li>\\n<li>Logistics and operational support</li>\\n<li>Strategic circular economy consulting</li>\\n</ul>"}]}, "description": "With headquarters in Madrid and operations in Cape Town (South Africa), Biomket has a specialized team combining technical expertise, sector experience, and international vision."}	2026-03-03 13:21:03.255+01	2026-03-03 13:27:02.454+01	\N
01KJSXGR3P8X7016YG27DAZFS6	01KJSXEXK8TKWG1THGKJYP98NS	{"items": [{"title": "Why Choose Biomket", "resions": {"items": [{"title": "15+", "subtitle": "Years Experience"}, {"title": "200+", "subtitle": "Clients Served"}, {"title": "€12M+", "subtitle": "Cost Savings Generated"}, {"title": "95%", "subtitle": "Client Satisfaction"}]}, "description": "Trusted by leading companies across Europe"}]}	2026-03-03 14:17:08.086+01	2026-03-03 14:19:04.531+01	\N
01KJY6JKJP1J30NFANS9DNAFS6	01KJY6GATAFCTQQ0RN3K7NP7Z3	{"ttitle": "Regulations on Organic Waste in Spain", "description": "At Biomket, we promote organic waste management that complies with current legislation. These are the two key regulations that govern how waste must be managed and transported in Spain.", "key_regulations": {"items": [{"title": "Law 7/2022, on waste and contaminated soils for a circular economy"}, {"title": "Royal Decree 553/2020, on the transfer of waste", "richtext": "<p>See legal text</p>\\n<p>This Royal Decree regulates the transfer of waste within Spanish territory, establishing a control and traceability system that ensures that waste is transported and managed correctly, without risks to health or the environment.</p>\\n<p>Key aspects of the Decree:</p>\\n<ol>\\n<li><strong>Mandatory documentation:</strong>&nbsp;Each transfer must be accompanied by an identification document, which contains information about the type of waste, origin, destination, intended treatment, among others.</li>\\n<li><strong>Prior notification (depending on the type of waste):</strong>&nbsp;In some cases, prior notification of the transfer must be sent to the competent authorities.</li>\\n<li><strong>eSIR electronic platform:</strong>&nbsp;The entire procedure must be carried out through the eSIR system (Waste Information System), a mandatory digital platform for sending documentation between companies and administrations.</li>\\n<li><strong>Application to non-hazardous waste:</strong>&nbsp;Although initially focused on hazardous waste, this decree also applies to non-hazardous organic waste if it is intended for recovery or disposal in another autonomous community.</li>\\n<li><strong>Shared responsibility:</strong>&nbsp;All participants in the chain (producers, transporters, managers) must ensure compliance with regulations and keep documentation for at least 3 years.</li>\\n</ol>\\n<p>This standard is essential for any operator involved in the transport or treatment of organic waste within the national territory.</p>"}]}}	2026-03-05 06:12:23.894+01	2026-03-05 06:16:54.291+01	\N
01KJ4NRMM9G6KZTNMWNQ5JF2GR	01KJ4MGF3A600HC8RA94DK78PE	{"name": "Madrid HQ", "image": "https://biomket1.yourwebdemo.co.in/admin/upload/location.png", "items": [{"": "<svg width=\\"58\\" height=\\"58\\" viewBox=\\"0 0 58 58\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<rect width=\\"58\\" height=\\"58\\" rx=\\"10\\" fill=\\"white\\" fill-opacity=\\"0.1\\"/>\\n<rect x=\\"0.5\\" y=\\"0.5\\" width=\\"57\\" height=\\"57\\" rx=\\"9.5\\" stroke=\\"white\\" stroke-opacity=\\"0.2\\"/>\\n<path d=\\"M28.5 17C24.4107 17 21 20.3266 21 24.5739C21 26.1898 21.4808 27.6307 22.4036 28.9808L27.926 37.683C28.194 38.1061 28.8066 38.1052 29.074 37.683L34.6204 28.9512C35.5233 27.6622 36 26.1487 36 24.5739C36 20.3977 32.6355 17 28.5 17ZM28.5 28.0166C26.6203 28.0166 25.0909 26.4721 25.0909 24.5739C25.0909 22.6757 26.6203 21.1312 28.5 21.1312C30.3797 21.1312 31.9091 22.6757 31.9091 24.5739C31.9091 26.4721 30.3797 28.0166 28.5 28.0166Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M32.93 33L30.0766 38.6466C29.338 40.1041 27.6579 40.0993 26.9229 38.6479L24.0648 33.0015C21.5502 33.7374 20 35.0855 20 36.6965C20 39.492 24.3795 41 28.5 41C32.6205 41 37 39.492 37 36.6965C37 35.0843 35.4477 33.7355 32.93 33Z\\" fill=\\"#DAE6DC\\"/>\\n</svg>\\n\\n", "svg": "<svg width=\\"58\\" height=\\"58\\" viewBox=\\"0 0 58 58\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<rect width=\\"58\\" height=\\"58\\" rx=\\"10\\" fill=\\"white\\" fill-opacity=\\"0.1\\"/>\\n<rect x=\\"0.5\\" y=\\"0.5\\" width=\\"57\\" height=\\"57\\" rx=\\"9.5\\" stroke=\\"white\\" stroke-opacity=\\"0.2\\"/>\\n<path d=\\"M28.5 17C24.4107 17 21 20.3266 21 24.5739C21 26.1898 21.4808 27.6307 22.4036 28.9808L27.926 37.683C28.194 38.1061 28.8066 38.1052 29.074 37.683L34.6204 28.9512C35.5233 27.6622 36 26.1487 36 24.5739C36 20.3977 32.6355 17 28.5 17ZM28.5 28.0166C26.6203 28.0166 25.0909 26.4721 25.0909 24.5739C25.0909 22.6757 26.6203 21.1312 28.5 21.1312C30.3797 21.1312 31.9091 22.6757 31.9091 24.5739C31.9091 26.4721 30.3797 28.0166 28.5 28.0166Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M32.93 33L30.0766 38.6466C29.338 40.1041 27.6579 40.0993 26.9229 38.6479L24.0648 33.0015C21.5502 33.7374 20 35.0855 20 36.6965C20 39.492 24.3795 41 28.5 41C32.6205 41 37 39.492 37 36.6965C37 35.0843 35.4477 33.7355 32.93 33Z\\" fill=\\"#DAE6DC\\"/>\\n</svg>\\n", "name": "Madrid HQ", "image": "https://biomket1.yourwebdemo.co.in/admin/upload/location.png", "address": "San Telmo 67 28016 Madrid, Spain"}, {"": "<svg width=\\"58\\" height=\\"58\\" viewBox=\\"0 0 58 58\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<rect width=\\"58\\" height=\\"58\\" rx=\\"10\\" fill=\\"white\\" fill-opacity=\\"0.1\\"/>\\n<rect x=\\"0.5\\" y=\\"0.5\\" width=\\"57\\" height=\\"57\\" rx=\\"9.5\\" stroke=\\"white\\" stroke-opacity=\\"0.2\\"/>\\n<path d=\\"M40.982 22.6092C40.982 22.5835 41.0009 22.5586 40.9997 22.5332L33.6758 29.1362L40.9909 35.5282C40.9952 35.4825 40.982 35.4365 40.982 35.3898V22.6092Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M32.5582 30.1523L29.5683 32.8439C29.417 32.9801 29.2216 33.0484 29.0261 33.0484C28.8347 33.0484 28.6433 32.983 28.493 32.852L25.5113 30.2522L18.1484 36.8927C18.3275 36.9529 18.5196 36.9996 18.7209 36.9996H39.3315C39.6303 36.9996 39.9106 36.9144 40.1543 36.7874L32.5582 30.1523Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M29.0186 31.3095L40.1959 21.2352C39.9428 21.0944 39.6482 21 39.3325 21H18.7219C18.3108 21 17.934 21.1494 17.6406 21.3772L29.0186 31.3095Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M17 22.8555V35.3905C17 35.5344 17.0353 35.6732 17.0737 35.8058L24.3453 29.2539L17 22.8555Z\\" fill=\\"#DAE6DC\\"/>\\n</svg>\\n", "svg": "<svg width=\\"58\\" height=\\"58\\" viewBox=\\"0 0 58 58\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<rect width=\\"58\\" height=\\"58\\" rx=\\"10\\" fill=\\"white\\" fill-opacity=\\"0.1\\"/>\\n<rect x=\\"0.5\\" y=\\"0.5\\" width=\\"57\\" height=\\"57\\" rx=\\"9.5\\" stroke=\\"white\\" stroke-opacity=\\"0.2\\"/>\\n<path d=\\"M40.9781 22.6073C40.9781 22.5816 40.997 22.5566 40.9958 22.5312L33.6719 29.1342L40.987 35.5262C40.9913 35.4806 40.9781 35.4345 40.9781 35.3879V22.6073Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M32.5582 30.1523L29.5683 32.8439C29.417 32.9801 29.2216 33.0484 29.0261 33.0484C28.8347 33.0484 28.6433 32.983 28.493 32.852L25.5113 30.2522L18.1484 36.8927C18.3275 36.9529 18.5196 36.9996 18.7209 36.9996H39.3315C39.6303 36.9996 39.9106 36.9144 40.1543 36.7874L32.5582 30.1523Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M29.0186 31.3095L40.1959 21.2352C39.9428 21.0944 39.6482 21 39.3325 21H18.7219C18.3108 21 17.934 21.1494 17.6406 21.3772L29.0186 31.3095Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M17 22.8555V35.3905C17 35.5344 17.0353 35.6732 17.0737 35.8058L24.3453 29.2539L17 22.8555Z\\" fill=\\"#DAE6DC\\"/>\\n</svg>\\n", "name": "E-Mail Address", "email": "info@biomket.com"}, {"": "<svg width=\\"58\\" height=\\"58\\" viewBox=\\"0 0 58 58\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<rect width=\\"58\\" height=\\"58\\" rx=\\"10\\" fill=\\"white\\" fill-opacity=\\"0.1\\"/>\\n<rect x=\\"0.5\\" y=\\"0.5\\" width=\\"57\\" height=\\"57\\" rx=\\"9.5\\" stroke=\\"white\\" stroke-opacity=\\"0.2\\"/>\\n<path d=\\"M28.5 17C24.4107 17 21 20.3266 21 24.5739C21 26.1898 21.4808 27.6307 22.4036 28.9808L27.926 37.683C28.194 38.1061 28.8066 38.1052 29.074 37.683L34.6204 28.9512C35.5233 27.6622 36 26.1487 36 24.5739C36 20.3977 32.6355 17 28.5 17ZM28.5 28.0166C26.6203 28.0166 25.0909 26.4721 25.0909 24.5739C25.0909 22.6757 26.6203 21.1312 28.5 21.1312C30.3797 21.1312 31.9091 22.6757 31.9091 24.5739C31.9091 26.4721 30.3797 28.0166 28.5 28.0166Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M32.93 33L30.0766 38.6466C29.338 40.1041 27.6579 40.0993 26.9229 38.6479L24.0648 33.0015C21.5502 33.7374 20 35.0855 20 36.6965C20 39.492 24.3795 41 28.5 41C32.6205 41 37 39.492 37 36.6965C37 35.0843 35.4477 33.7355 32.93 33Z\\" fill=\\"#DAE6DC\\"/>\\n</svg>\\n", "svg": "<svg width=\\"58\\" height=\\"58\\" viewBox=\\"0 0 58 58\\" fill=\\"none\\" xmlns=\\"http://www.w3.org/2000/svg\\">\\n<rect width=\\"58\\" height=\\"58\\" rx=\\"10\\" fill=\\"white\\" fill-opacity=\\"0.1\\"/>\\n<rect x=\\"0.5\\" y=\\"0.5\\" width=\\"57\\" height=\\"57\\" rx=\\"9.5\\" stroke=\\"white\\" stroke-opacity=\\"0.2\\"/>\\n<path d=\\"M28.5 17C24.4107 17 21 20.3266 21 24.5739C21 26.1898 21.4808 27.6307 22.4036 28.9808L27.926 37.683C28.194 38.1061 28.8066 38.1052 29.074 37.683L34.6204 28.9512C35.5233 27.6622 36 26.1487 36 24.5739C36 20.3977 32.6355 17 28.5 17ZM28.5 28.0166C26.6203 28.0166 25.0909 26.4721 25.0909 24.5739C25.0909 22.6757 26.6203 21.1312 28.5 21.1312C30.3797 21.1312 31.9091 22.6757 31.9091 24.5739C31.9091 26.4721 30.3797 28.0166 28.5 28.0166Z\\" fill=\\"#DAE6DC\\"/>\\n<path d=\\"M32.93 33L30.0766 38.6466C29.338 40.1041 27.6579 40.0993 26.9229 38.6479L24.0648 33.0015C21.5502 33.7374 20 35.0855 20 36.6965C20 39.492 24.3795 41 28.5 41C32.6205 41 37 39.492 37 36.6965C37 35.0843 35.4477 33.7355 32.93 33Z\\" fill=\\"#DAE6DC\\"/>\\n</svg>\\n", "name": "Cape Town", "address": "E7&8 Century Square Heron Cres, Century City 7441 Cape Town"}], "address": "San Telmo 67 28016 Madrid, Spain"}	2026-02-23 08:17:34.985+01	2026-03-03 10:45:39.276+01	\N
01KJ4F5GZPJ5VEQ3E7712S4G0Z	01KHXGG6X8CMGQQYVDV92FKHQC	{"items": [{"test": "<p><strong>dgdfg<br></strong><span style=\\"color: #fbeeb8;\\">dfngfnddgfdngfghfgh</span></p>", "title": "Transform your waste into Resources", "button": {"items": [{"button_url": "/marketplace", "button_text": "Access Marketplace"}, {"button_url": "/services", "button_text": "Request Personalized Service"}]}, "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/hero-bg-mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/hero-bg-WEB.png"}]}, "webimage": ["https://biomket1.yourwebdemo.co.in/admin/upload/Hero_image_desktop.png"], "buttontext1": "Access Marketplace", "buttontext2": "Request Personalized Service", "description": " Connect waste producers with valorizers through our B2B marketplace or optimize your waste management with personalized consulting services.", "mobileimage": ["https://biomket1.yourwebdemo.co.in/admin/upload/Page_banner_img_Mobile.png"], "buttontext1url": "/marketplace", "buttontext2url": "/services"}], "title": "Transform your waste into Resources", "buttontext1": "Access Marketplace", "buttontext2": "Request Personalized Service", "description": " Connect waste producers with valorizers through our B2B marketplace or optimize your waste management with personalized consulting services.", "mobileimage": "https://biomket1.yourwebdemo.co.in/admin/upload/hero-bg-mobile.png", "buttontext1url": "/marketplace", "buttontext2url": "/services"}	2026-02-23 06:22:17.206+01	2026-03-12 07:02:39.432+01	\N
01KJY47SVJ93WAJ9150W33Z8ZK	01KJSJKPXQ3D5D5PMK5487RFK5	{"items": [{"title": "Let's talk about Your Project", "bg_image": {"items": [{"image_mobile": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_banner_img_Mobile.png", "image_desktop": "https://biomket1.yourwebdemo.co.in/admin/upload/Page_Banner_image.png"}]}, "description": "Have organic waste to valorize or looking for sustainable raw materials? Our team is ready to help."}]}	2026-03-05 05:31:32.722+01	2026-03-12 08:49:26.456+01	\N
01KJYCY04CJBMN7YBJPX9YZ3AV	01KJYCJ0H96Y7WKF1H8Y4M6AJ9	{"items": [{"section_title": "Waste from prospecting, mining and quarrying and physical and chemical treatments of minerals"}, {"cat": {"items": [{"title": "Waste from agriculture, horticulture, aquaculture, forestry, hunting and fishing.", "content": "<ul>\\n<li>Washing and cleaning sludge.</li>\\n<li>Animal tissue waste.</li>\\n<li>Plant tissue waste.</li>\\n<li>Plastic waste [except packaging.</li>\\n<li>Animal feces, urine and manure [including rotten straw] and effluents selectively collected and treated off-site.</li>\\n<li>Forestry waste.</li>\\n<li>Agrochemical waste containing hazardous substances.</li>\\n<li>Agrochemical waste other than that mentioned in code 02 01 08.</li>\\n<li>Metallic waste.</li>\\n<li>Waste not specified in another category.</li>\\n</ul>"}, {"title": "Waste from the preparation and processing of meat, fish and other foods of animal origin."}, {"title": "Waste from the preparation and processing of fruit, vegetables, cereals, edible oils, cocoa, coffee, tea and tobacco; production of preserves; production of yeast and yeast extract, preparation and fermentation of molasses."}, {"title": "Sugar manufacturing waste."}, {"title": "Dairy industry waste."}, {"title": "Waste from the bakery and pastry industry."}, {"title": "Waste from the production of alcoholic and non-alcoholic beverages [except coffee, tea and cocoa]."}]}, "section_title": "Waste from agriculture, horticulture, aquaculture, forestry, hunting and fishing; waste from food   preparation and processing"}, {"cat": {"items": [{"title": ""}]}, "section_title": "Waste from the processing of wood and from the production of boards and furniture, paper pulp, paper and cardboard"}, {"section_title": "Waste from the leather, hide and textile industries"}, {"section_title": "Residues from petroleum refining, natural gas purification and pyrolytic treatment of coal"}, {"section_title": "Inorganic chemical process waste"}, {"cat": {"items": [{"content": ""}]}, "section_title": "Organic chemical process waste"}, {"section_title": "Waste from the manufacture, formulation, distribution and use of coatings (paints, varnishes and vitrified enamels), adhesives, sealants and printing inks"}, {"section_title": "Waste from the photographic industry"}, {"section_title": "Thermal process waste"}, {"section_title": "Inorganic chemical process waste"}, {"section_title": "Waste from the chemical and physical treatment of metal and plastic surfaces"}, {"section_title": "Waste from the processes of forming and physical and mechanical treatment of metals and plastics"}, {"section_title": "Waste oils and liquid fuels (excluding chapters 05, 12 and 19)"}, {"section_title": "Waste solvents, refrigerants and propellants (excluding chapters 07 and 08)"}, {"section_title": "Packaging waste; absorbents, cleaning rags, filters and protective clothing not specified elsewhere"}, {"cat": {"items": [{"title": "Waste not specified in another category in the list"}]}}, {"cat": {"items": [{"title": "Construction and demolition waste (including material excavated from contaminated areas)"}]}}, {"section_title": "Waste from medical or veterinary services and/or associated research"}, {"section_title": "Waste from waste treatment facilities, wastewater from off-site disposal and from the treatment of drinking water and the preparation of water for industrial use"}, {"section_title": "Municipal waste [household waste and similar waste from businesses, industries and institutions], including separately collected fractions"}]}	2026-03-05 08:03:28.653+01	2026-03-11 10:48:28.757+01	\N
\.


--
-- Data for Name: cms_component_type; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cms_component_type (id, name, display_name, description, reusable, repeatable, created_at, updated_at, deleted_at, folder_id) FROM stdin;
01KJ4HM8YEHMJVQVFG684ZG62G	organic_waste_marketplace	Organic Waste Marketplace	\N	t	t	2026-02-23 07:05:17.646+01	2026-02-23 07:05:17.646+01	\N	01KHX16CR0GT5DNQRYR3W24BKK
01KJ4ME13788FKSG104Z7VMF4M	navigation	Navigate	\N	t	t	2026-02-23 07:54:18.727+01	2026-02-23 07:54:18.727+01	\N	\N
01KJ4MGF3A600HC8RA94DK78PE	company_address	Company Address		t	t	2026-02-23 07:55:38.602+01	2026-02-23 07:57:28.657+01	\N	\N
01KJ4MR5M4ZKX8GHG3HPG2CDYF	social_media	Social Media	\N	t	t	2026-02-23 07:59:51.044+01	2026-02-23 07:59:51.044+01	\N	\N
01KJ4N325VBD3Y3WNAX2PN0FX4	image_and_link	Image and Link	\N	t	t	2026-02-23 08:05:47.963+01	2026-02-23 08:05:47.963+01	\N	\N
01KJ4N72AQZXDN19BY2QKHVHXF	footer_popup	Footer Popup	\N	t	t	2026-02-23 08:07:59.191+01	2026-02-23 08:07:59.191+01	\N	\N
01KJ4NJNB7P161TDSQZEKM6JCW	copyright	Copyright	\N	t	t	2026-02-23 08:14:19.111+01	2026-02-23 08:14:19.111+01	\N	\N
01KJCAFH206EP746WFSVE2JY43	image	Image	\N	t	t	2026-02-26 07:34:17.536+01	2026-02-26 07:34:17.536+01	\N	\N
01KJSWW8NEJM75RQCRBVPXMCJQ	industry_solution	Industry Solution		t	t	2026-03-03 14:05:56.91+01	2026-03-03 14:05:58.214+01	\N	01KJSVTKA866EPF6HEJJEQTN5K
01KJSHY7BSXPTJ19S371HC5QWH	imageonly	ImageOnly	\N	t	t	2026-03-03 10:54:46.777+01	2026-03-03 10:54:46.777+01	\N	\N
01KJSJKPXQ3D5D5PMK5487RFK5	title_description_image	Title Description Image	\N	t	t	2026-03-03 11:06:30.839+01	2026-03-03 11:06:30.839+01	\N	\N
01KJSXEXK8TKWG1THGKJYP98NS	why_choose_us	Why Choose Us	\N	t	t	2026-03-03 14:16:08.168+01	2026-03-03 14:16:08.168+01	\N	01KJSVTKA866EPF6HEJJEQTN5K
01KJER2QEH3BPA1TH7JS6KBY1Q	test	test		f	t	2026-02-27 06:10:27.025+01	2026-02-27 06:43:51.577+01	\N	\N
01KJY9WD57QTH2E5W4HRW3AWF9	what_are_ewc_codes	What are EWC codes	\N	t	t	2026-03-05 07:10:10.727+01	2026-03-05 07:10:10.727+01	\N	01KJY9D0415VZW6ZTPZJY1P3TN
01KJCBWC3E7JRP21XSR89GWNS1	cards_for_wastecollection_and_hero_section	Cards for WasteCollection and Team Section		t	t	2026-02-26 07:58:47.022+01	2026-02-26 10:50:38.207+01	\N	\N
01KJCPTN6JZW4RQY8CXV6QZ7VE	waste_management_options	 Waste Management Options	\N	f	t	2026-02-26 11:10:05.138+01	2026-02-26 11:10:05.138+01	\N	\N
01KJCQ5YVCGADYBPNTMCB89VWA	waste_management	Waste Management	\N	f	f	2026-02-26 11:16:15.468+01	2026-02-26 11:16:15.468+01	\N	\N
01KJCQQAZD2GRZXHPCNF11FNBR	how_it_works	How it Works	\N	f	f	2026-02-26 11:25:44.941+01	2026-02-26 11:25:44.941+01	\N	\N
01KJCRFM1YQP7191RB4QRXZ102	sliding_card_hitw	Sliding Card HITW	\N	f	t	2026-02-26 11:39:00.67+01	2026-02-26 11:39:00.67+01	\N	\N
01KJCR9SD3Z29PV92PGX2GZ0C7	title_description_btns_component	Title Description Btns (Logo Title Description)	\N	t	f	2026-02-26 11:35:49.54+01	2026-03-03 11:45:18.388+01	\N	\N
01KJCW9YMMY7JCV8ESA9NDTWQ0	signin_register	SignIn & Register	\N	t	t	2026-02-26 12:45:49.204+01	2026-02-26 12:46:20.702+01	\N	\N
01KJCAVQMZ61BFP5G8VBFZ55B2	wastecategoriessection	Waste Categories & Team Section	\N	t	f	2026-02-26 07:40:57.503+01	2026-03-03 11:49:42.667+01	\N	\N
01KJS151GQZBQFWAX8MASWXY3T	title_description_btn_img_component	Title Description Btn Img (Logo Title Description)	\N	t	t	2026-03-03 06:01:24.375+01	2026-03-03 11:52:15.776+01	\N	\N
01KJCSGDFR1J7YKFS67DQVJH3Q	cards_in_whtbiomket	Logo Title Richtext	\N	t	t	2026-02-26 11:56:55.288+01	2026-03-03 12:10:19.991+01	\N	\N
01KJCYQ4WQQNK6Z7ZX1WZCP8X1	value_proposition_cards	Value Proposition Cards	\N	t	t	2026-02-26 13:27:58.743+01	2026-02-26 13:27:58.743+01	\N	\N
01KJCYHR290J3WK4XPSJEATJQ0	list	List	\N	t	t	2026-02-26 13:25:01.769+01	2026-02-27 07:02:30.858+01	\N	\N
01KJCXS6M5E7ME3PAQZC4ACP4A	title_description_component	Title Description bgImg list Component 	\N	t	f	2026-02-26 13:11:37.478+01	2026-02-27 07:09:47.627+01	\N	\N
01KJEZEJCNXCRFAZW0BR2BJRCW	process_timeline	Process Timeline	\N	t	f	2026-02-27 08:19:15.094+01	2026-02-27 08:19:15.094+01	\N	\N
01KJSPK5XHQXFS51NT3C6DFSV0	title_description	Title Description	\N	t	t	2026-03-03 12:16:07.729+01	2026-03-03 12:16:07.729+01	\N	\N
01KJEZWYV76N20K0X6CQ203JST	process_steps	Process Steps	\N	t	t	2026-02-27 08:27:06.599+01	2026-02-27 08:27:06.599+01	\N	\N
01KJF0FBP895T4NK9T06EHTC9A	industry_solutions_cards	Industry Solutions Cards	\N	f	t	2026-02-27 08:37:09.576+01	2026-02-27 08:37:09.576+01	\N	\N
01KJF1608J17EF03NT0VCRAC5P	title_subtitle_component	Title Subtitle component		t	t	2026-02-27 08:49:31.538+01	2026-02-27 08:49:33.315+01	\N	\N
01KJF18ZT0HXWF7MBW1PRB0NP5	logo_component	Logo Component		t	t	2026-02-27 08:51:09.376+01	2026-02-27 08:51:12.258+01	\N	\N
01KJF8G2V1EK5XSNMK7YC6PEFX	logo_title_description	Logo Title Description 	\N	t	t	2026-02-27 10:57:21.889+01	2026-02-27 10:57:21.889+01	\N	\N
01KHXGG6X8CMGQQYVDV92FKHQC	block	Hero Section		t	t	2026-02-20 13:30:54.888+01	2026-03-02 07:01:44.781+01	\N	\N
01KJPN8G0ZANRHDN5BK7S70FSY	rich_text	Rich Text	\N	t	t	2026-03-02 07:55:05.759+01	2026-03-02 07:55:05.759+01	\N	\N
01KJPX692NCR9B8TCFCSFCH5CT	step2	step2	\N	t	t	2026-03-02 10:13:41.717+01	2026-03-02 10:13:41.717+01	\N	\N
01KJPX762XE8229J5RR7GKFXHV	steps3	steps3	\N	t	t	2026-03-02 10:14:11.421+01	2026-03-02 10:14:11.421+01	\N	\N
01KJSQXXX132XKJD9QHWP3MD62	who_we_are	Who We Are		t	t	2026-03-03 12:39:28.546+01	2026-03-03 12:51:16.566+01	\N	\N
01KJPX328A7NBCCH3AX2CTFZRE	testsdfsdf	step1	\N	t	t	2026-03-02 10:11:56.426+01	2026-03-02 10:17:53.184+01	\N	\N
01KJPYWH0G5C03G5B5K6CEDXHH	title_richtext_component	Title Richtext Component	\N	t	t	2026-03-02 10:43:19.312+01	2026-03-02 10:43:19.312+01	\N	\N
01KJS16YHCGVP18SDJMK4Q54KF	button	Button	\N	t	t	2026-03-03 06:02:26.86+01	2026-03-03 06:02:26.86+01	\N	\N
01KJSRV3Z2RV82BTPVA0KYTHWS	sector_serve	Sector Serve	\N	t	t	2026-03-03 12:55:25.026+01	2026-03-03 12:55:27.159+01	\N	01KJSRJ19GG9YPCRKHTB5N3C0G
01KJS35JKYBRFMZQH5AJJMWFXF	title_description_richtext_component	Title Description Richtext Component	\N	t	t	2026-03-03 06:36:39.038+01	2026-03-03 06:36:39.038+01	\N	\N
01KJSG0PQ80S3PC6CPFVK9RGGS	title_description_and_button	Title Description and Button	\N	t	t	2026-03-03 10:21:10.889+01	2026-03-03 10:21:10.889+01	\N	\N
01KJSSHYDY8NZ3JFASYNXKZ6C5	value_proposition	Value Proposition	\N	f	f	2026-03-03 13:07:53.022+01	2026-03-03 13:07:53.022+01	\N	01KJSRJ19GG9YPCRKHTB5N3C0G
01KJSW16P8QY69Q1F93PPH20JV	waste_management_services	Waste  Management Services		t	t	2026-03-03 13:51:10.152+01	2026-03-03 13:52:14.284+01	\N	01KJSVTKA866EPF6HEJJEQTN5K
01KJY6GATAFCTQQ0RN3K7NP7Z3	regulation_on_organic_waste	Regulation on Organic Waste	\N	t	f	2026-03-05 06:11:09.387+01	2026-03-05 06:11:12.559+01	\N	01KJY63MQ5VW84SEPT09HFGFCQ
01KJYA42WCPDWCFCJ38H26MT3S	code_interpret_way	 Code Interpret Way	\N	t	f	2026-03-05 07:14:22.348+01	2026-03-05 07:14:22.348+01	\N	\N
01KJYCAQDDECVSNQ2GM3BDPKQC	faq_subcategory	FAQ Sub-Category	\N	t	t	2026-03-05 07:52:57.134+01	2026-03-05 07:52:57.134+01	\N	01KJY9D0415VZW6ZTPZJY1P3TN
01KJYCJ0H96Y7WKF1H8Y4M6AJ9	find_your_waste_section	Find Your Waste Section	\N	t	t	2026-03-05 07:56:55.849+01	2026-03-05 08:43:31.312+01	\N	01KJY9D0415VZW6ZTPZJY1P3TN
01KJYCNP975JEKM0C1XWAPX81H	faq_category	FAQ Category	\N	t	t	2026-03-05 07:58:56.423+01	2026-03-05 07:58:56.423+01	\N	01KJY9D0415VZW6ZTPZJY1P3TN
01KKE62E7EG6NE9KCY6YC2NT0F	support_card	Support Card	\N	t	f	2026-03-11 11:11:25.038+01	2026-03-11 11:11:25.038+01	\N	01KKE61MV4HYMXKDV0FPMT875C
01KKE66AK4NRXH532E10SB959X	logo_text	Logo & Text	\N	t	t	2026-03-11 11:13:32.388+01	2026-03-11 11:13:32.388+01	\N	\N
01KKECQ0H41FYWVMSFF2TDGZWK	supporthelp_card	Support/help Card	\N	t	t	2026-03-11 13:07:30.597+01	2026-03-11 13:07:30.597+01	\N	\N
01KKECW38R6TX0072BQV90VD9P	secure_transition_card	Secure Transition Card	\N	t	f	2026-03-11 13:10:17.24+01	2026-03-11 13:10:20.366+01	\N	01KKECTXS4VF3WA1YD89M9M1NH
01KKEDYH2KT5ZD3QS4BP2EE13Q	information_card	Information Card	\N	t	f	2026-03-11 13:29:05.492+01	2026-03-11 13:29:05.492+01	\N	01KKECTXS4VF3WA1YD89M9M1NH
01KKEGSHXF8XM1RHJ0Y491G86G	hello	hello	\N	f	f	2026-03-11 14:18:48.239+01	2026-03-11 14:18:48.239+01	\N	\N
\.


--
-- Data for Name: cms_page; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cms_page (id, slug, title, description, meta, published, components, created_at, updated_at, deleted_at, status) FROM stdin;
01KJ4N067F33MBPAKE784NTYH3	footer	Footer		\N	f	\N	2026-02-23 08:04:13.807+01	2026-02-23 08:49:01.27+01	\N	published
01KJ4XE6NRW5R69Q0TPQP8R8XS	navbar	Navbar		\N	f	\N	2026-02-23 10:31:41.624+01	2026-02-23 10:34:34.394+01	\N	published
01KHX1CDH1GPT2B72EZTRA035A	home	Home Page		\N	f	\N	2026-02-20 09:06:41.953+01	2026-02-23 07:16:24.198+01	\N	published
01KJ55ZTCV430M6BK24F9DWHVS	about-us	About us		\N	f	\N	2026-02-23 13:01:07.483+01	2026-02-26 13:42:56.541+01	\N	published
01KJEYAZ2ZX2Q6THKT735KJK20	services	Services		\N	f	\N	2026-02-27 07:59:48.447+01	2026-02-27 10:20:15.088+01	\N	published
01KJPN62X5XJAZC73ASD4YRF9K	terms-conditions-page	Terms & conditions Page		\N	f	\N	2026-03-02 07:53:46.789+01	2026-03-02 08:11:44.29+01	\N	published
01KJPY6AC4BKWBM35MGTCQ4EJM	documents-page	Documents page		\N	f	\N	2026-03-02 10:31:11.62+01	2026-03-02 11:05:11.189+01	\N	published
01KJQ0GFW4754ZZWHTJ7PJ4JCS	legal-page	Legal Page		\N	f	\N	2026-03-02 11:11:42.084+01	2026-03-02 11:26:26.052+01	\N	published
01KJD12XY3FV2BVTD1WRJ1G7NP	contact-us	Contact Us		\N	f	\N	2026-02-26 14:09:21.988+01	2026-03-10 11:35:40.915+01	\N	published
01KJPWDWH30EB8T2TKCTEC9M9F	ewc-code-page	LER Code Page		\N	f	\N	2026-03-02 10:00:22.435+01	2026-03-11 10:50:25.533+01	\N	published
01KKE5KDNSHSJVJYWSMWAC67AP	payment	Payment		\N	f	\N	2026-03-11 11:03:12.953+01	2026-03-11 11:21:06.75+01	\N	published
01KKE4J2X8W9YH24NDVJ32DMW9	register	Register		\N	f	\N	2026-03-11 10:45:00.587+01	2026-03-11 11:21:15.387+01	\N	published
01KJFMJ5C93MSKTVV8A2859PKJ	check-out	Check Out		\N	f	\N	2026-02-27 14:28:12.938+01	2026-03-11 13:15:37.612+01	\N	draft
\.


--
-- Data for Name: cms_page_component; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cms_page_component (id, page_id, component_instance_id, "position", created_at, updated_at, deleted_at, page_section_id) FROM stdin;
01KJY55BG5NMA7F3FGJGF32Z3F	01KJPY6AC4BKWBM35MGTCQ4EJM	01KJY55BG09DJ6K8XGT4CXYZV0	0	2026-03-05 05:47:41.062+01	2026-03-05 05:47:41.062+01	\N	01KJY53TCFAGVAS4SQ0Q5W1R62
01KJY5SQ8V5FT2CP54PR115QF2	01KJQ0GFW4754ZZWHTJ7PJ4JCS	01KJY5SQ8JBWZDBN8J2RZ56S61	0	2026-03-05 05:58:48.475+01	2026-03-05 05:58:48.475+01	\N	01KJY5RAMNASGPQXYQCCJ5FAAD
01KJY6JKJYTPN8WC60XP6HHXTZ	01KJQ0GFW4754ZZWHTJ7PJ4JCS	01KJY6JKJP1J30NFANS9DNAFS6	0	2026-03-05 06:12:23.902+01	2026-03-05 06:12:23.902+01	\N	01KJY6JFNS73CVV8CTMWY2BPVW
01KJY9YGX67VGAVTJ91Y539343	01KJPWDWH30EB8T2TKCTEC9M9F	01KJY9YGWZ9JQN5PAXPF9AVAV4	0	2026-03-05 07:11:20.103+01	2026-03-05 07:11:20.103+01	\N	01KJY9RYJAYK8XHS5DMK7A7P85
01KJYAPGBPYWE8HW271VG3XQCS	01KJEYAZ2ZX2Q6THKT735KJK20	01KJYAPGBFCDHW1SS8RS0XR0HN	0	2026-03-05 07:24:25.974+01	2026-03-05 07:24:25.974+01	\N	01KJYAP32FT102DKM97BKDVB1V
01KJYCY04KXM1BB89XA6RWSGSB	01KJPWDWH30EB8T2TKCTEC9M9F	01KJYCY04CJBMN7YBJPX9YZ3AV	0	2026-03-05 08:03:28.659+01	2026-03-05 08:03:28.659+01	\N	01KJY9SGKGEPD06NX3T9XP6ETF
01KJ4F5GZVS3V3XSTYHBX30DEF	01KHX1CDH1GPT2B72EZTRA035A	01KJ4F5GZPJ5VEQ3E7712S4G0Z	0	2026-02-23 06:22:17.211+01	2026-02-23 06:22:17.211+01	\N	01KJ4F5BD6H6JZPF557C61SDX3
01KKE5S26WA2M7W370MDWTZQ06	01KKE5KDNSHSJVJYWSMWAC67AP	01KKE5S24C5MXCH4HH9X58TNGG	0	2026-03-11 11:06:17.82+01	2026-03-11 11:06:17.82+01	\N	01KKE5NCQ8166D6YTZJ202B8DY
01KKE6D5647R4XHZ1B15SF5TKS	01KKE5KDNSHSJVJYWSMWAC67AP	01KKE6D55GCJ893FGQ7NHWWKET	0	2026-03-11 11:17:16.228+01	2026-03-11 11:17:16.228+01	\N	01KKE5P4FTB8D6FCK40H8TA7ST
01KKECYRQK948WG2YQS5C26BWS	01KJFMJ5C93MSKTVV8A2859PKJ	01KKECYRQ8PCTRMMT1AJNBCYDD	0	2026-03-11 13:11:44.755+01	2026-03-11 13:11:48.649+01	\N	01KKECGH440CS674V9M9TDYJ1P
01KKGE1XV6XZ39BH8G2230XRMY	01KJEYAZ2ZX2Q6THKT735KJK20	01KKGE1XTQRT9S51KKX6MK5GN6	1	2026-03-12 08:09:25.735+01	2026-03-12 08:09:25.735+01	\N	01KJF1APJ9YXHHYBWWR8HQV46E
01KJF8MAEEGM9DG66GKRXVE76Y	01KJD12XY3FV2BVTD1WRJ1G7NP	01KJF8MAE9A9M7QMKYXNFK2Y1Q	0	2026-02-27 10:59:40.75+01	2026-02-27 10:59:40.75+01	\N	01KJD16TNK5XNCCA3CSACXAZQK
01KJ4NR6W3KJPE7494ZHE1ES9J	01KJ4N067F33MBPAKE784NTYH3	01KJ4NR6W0KKT1DFZH66WHVWFW	0	2026-02-23 08:17:20.899+01	2026-02-23 08:17:20.899+01	\N	01KJ4NR3JRT3BACN0QAQVFMW1A
01KJ4NRMMCR034R5EDZT64WTF7	01KJ4N067F33MBPAKE784NTYH3	01KJ4NRMM9G6KZTNMWNQ5JF2GR	0	2026-02-23 08:17:34.988+01	2026-02-23 08:17:34.988+01	\N	01KJ4NRGW8EYDNVQV03HSFS4YS
01KJ4NS5R4EGR3TY3J6KEM3YSG	01KJ4N067F33MBPAKE784NTYH3	01KJ4NS5R04PYFWJMA8RD4W3FT	0	2026-02-23 08:17:52.516+01	2026-02-23 08:17:52.516+01	\N	01KJ4NS2RJBXT0SA39JB3HJDWH
01KJPN9F9GW1Q9V5Z8Z5TZRVK4	01KJPN62X5XJAZC73ASD4YRF9K	01KJPN9F9BTG347JDCSD80K13T	0	2026-03-02 07:55:37.776+01	2026-03-02 07:55:37.776+01	\N	01KJPN7QVXC02N4VERXR7H66J9
01KJ4P5ASNVC0MEVFNK2YWDKS2	01KJ4N067F33MBPAKE784NTYH3	01KJ4P5ASJ8BQD4VKRP6FZXJJC	2	2026-02-23 08:24:30.901+01	2026-02-23 08:24:30.901+01	\N	01KJ4NSM1A7SS0XDSQRCTQJCFD
01KJPZ36JG250SRR0ASKE7KPV5	01KJPY6AC4BKWBM35MGTCQ4EJM	01KJPZ36JD848H5W9R7B3BFRF1	0	2026-03-02 10:46:58+01	2026-03-02 10:46:58+01	\N	01KJPZ2ZZZSSVWMGPT53NKZMEE
01KJ4XGFAPZQGNYHHR866D9P4F	01KJ4XE6NRW5R69Q0TPQP8R8XS	01KJ4XGFAKCS40XJT34KMXF40V	0	2026-02-23 10:32:56.022+01	2026-02-23 10:32:56.022+01	\N	01KJ4XG0Y2XC32XG55GQF2T4W7
01KJ4PT97R4KCC9W9EE6X4K4FB	01KJ4N067F33MBPAKE784NTYH3	01KJ4PT97PF8115T09Q2KJJMC3	0	2026-02-23 08:35:57.433+01	2026-02-23 08:39:20.259+01	\N	01KJ4NSZAVBYQFYWYVTGCJDKRJ
01KJCAZ2PQ5F776W9WYE0YHHT5	01KHX1CDH1GPT2B72EZTRA035A	01KJCAZ2PHX1AY8AXDWQR3BYEG	0	2026-02-26 07:42:47.127+01	2026-02-26 07:42:47.127+01	\N	01KJCARYSKHN5RCZA9DNZM414T
01KJCSWY8HFYVPDC2TB47NFEAR	01KHX1CDH1GPT2B72EZTRA035A	01KJCSWY8D040AXACY4HA9ZMVY	0	2026-02-26 12:03:45.681+01	2026-02-26 12:04:04.068+01	\N	01KJCPSX9179GDPGXWHNXEF9AQ
01KJCW0B98E7X9MKRN38TXKWW2	01KJ4XE6NRW5R69Q0TPQP8R8XS	01KJCW0B94TSR3B5Q0SCS1EE9D	0	2026-02-26 12:40:34.472+01	2026-02-26 12:40:34.472+01	\N	01KJCW00CF5D2PPXHGMPXC55XX
01KJCWC1F8XB67RH65FF9CQNN6	01KJ4XE6NRW5R69Q0TPQP8R8XS	01KJCWC1F4KDFR9S8PG6S46MZE	0	2026-02-26 12:46:57.64+01	2026-02-26 12:46:57.64+01	\N	01KJCWBXYRDTYMFH78APAYX0SP
01KJY58XCEW0QJ3X1K5QR4FZD0	01KJPY6AC4BKWBM35MGTCQ4EJM	01KJY58XC6K7V6S8A68DKZEN5R	0	2026-03-05 05:49:37.678+01	2026-03-05 05:49:37.678+01	\N	01KJY58N5K2A8NH57AEQ1H1FHR
01KJS1SSAWS2TW2KZKHZ9SJ8GF	01KHX1CDH1GPT2B72EZTRA035A	01KJS1SSAQW3C5HA0E3XKNDVPF	2	2026-03-03 06:12:44.124+01	2026-03-03 06:12:44.124+01	\N	01KJCQNQ3GWR39MJPGZ6YGX2V4
01KJS4EG3B1PCE62931D91S9SS	01KHX1CDH1GPT2B72EZTRA035A	01KJS4EG37Q100CC672JJ1VE92	0	2026-03-03 06:58:59.947+01	2026-03-03 06:59:03.931+01	\N	01KJCSD9K4JK30XY39CSCA8QRC
01KJS39T5BA09M1ZF97AJF603A	01KHX1CDH1GPT2B72EZTRA035A	01KJS39T56XJ320T5154EXAC09	1	2026-03-03 06:38:57.835+01	2026-03-03 06:59:03.936+01	\N	01KJCSD9K4JK30XY39CSCA8QRC
01KJY9SW1HJ60F0C2E568BQ69V	01KJPWDWH30EB8T2TKCTEC9M9F	01KJY9SW1DKFQ9DJW2STXVZ0MX	0	2026-03-05 07:08:47.665+01	2026-03-05 07:08:47.665+01	\N	01KJY9RH5T5NDP640KQT0SHNEE
01KJYAAFAYCH7FT7ZCZTR0JJYA	01KJPWDWH30EB8T2TKCTEC9M9F	01KJYAAFAQTADWJSA4SD8CDR7D	0	2026-03-05 07:17:51.71+01	2026-03-05 07:17:51.71+01	\N	01KJY9S8QY8PSP4CJR0K6RTX9B
01KJSG1YXSVFWP2WEE0MG3SZS1	01KHX1CDH1GPT2B72EZTRA035A	01KJSG1YXNHC6BH3CZ2KZS4QQ2	2	2026-03-03 10:21:52.057+01	2026-03-03 10:21:52.057+01	\N	01KJ4HH5GJFE662H4KASPW94FW
01KJSGNTXGTBWB5FCV1BJQ57FR	01KJ4N067F33MBPAKE784NTYH3	01KJSGNTX9WN58TYEPN0N8Y7JM	0	2026-03-03 10:32:43.312+01	2026-03-03 10:32:43.312+01	\N	01KJ4N0ZSWBKGQ5PBSZYXV40X1
01KJSGXAVS9X74PHEWHHJ772SS	01KJ4N067F33MBPAKE784NTYH3	01KJSGXAVMW9B15J495HXQGWP7	0	2026-03-03 10:36:49.017+01	2026-03-03 10:36:49.017+01	\N	01KJ4NB8PZP377XRTMREADRXYA
01KJSHYY30BK68ED4R1EGZT5E5	01KJ4N067F33MBPAKE784NTYH3	01KJSHYY2HX038RSEBXRNMXFSX	0	2026-03-03 10:55:10.048+01	2026-03-03 10:55:10.048+01	\N	01KJSHPZVNBY118C88V5KQQCRD
01KKE4KYZXCZEFRE8KY5R64R5V	01KKE4J2X8W9YH24NDVJ32DMW9	01KKE4KYZ4JY5DR8NJG7NHPN02	0	2026-03-11 10:46:02.109+01	2026-03-11 10:46:02.109+01	\N	01KKE4KG6CAZ18EP3R8AVCDBH2
01KKE5X1QHPNRTKXNM1X295651	01KKE5KDNSHSJVJYWSMWAC67AP	01KKE5X1QAADNXBAEVMQG37Y9S	0	2026-03-11 11:08:28.401+01	2026-03-11 11:08:28.401+01	\N	01KKE5NXS48RT15F7YY4BZDJ3J
01KKECS95ZXNMWE2FGZ75451S1	01KJFMJ5C93MSKTVV8A2859PKJ	01KKECS95BHZ5KHT30E2YECT2N	1	2026-03-11 13:08:44.991+01	2026-03-11 13:11:48.656+01	\N	01KKECGH440CS674V9M9TDYJ1P
01KJSJN8JVA9H1B7KWQE4MGMSV	01KJ55ZTCV430M6BK24F9DWHVS	01KJSJN8JRVN75N57Q1D0PHEPJ	0	2026-03-03 11:07:21.692+01	2026-03-03 11:07:21.692+01	\N	01KJCX8WTM2D2H3C9C7AAN7YCV
01KKEE03FTNB4QCEC1EJST5G1F	01KJFMJ5C93MSKTVV8A2859PKJ	01KKEE03F7AEAMM2NJCQSAH3PZ	0	2026-03-11 13:29:57.115+01	2026-03-11 13:29:57.115+01	\N	01KKED88T2EN4QPCV0010X0QGH
01KJSR31RP59JRDMTDM2CJ0Q1W	01KJ55ZTCV430M6BK24F9DWHVS	01KJSR31RBEQ9XHG1B5Z1TAAKV	2	2026-03-03 12:42:16.342+01	2026-03-03 12:42:16.342+01	\N	01KJCXE3TYCGH8PZW56A1T42FS
01KJSRZ3PNJKZJ0M5N6BR66TBP	01KJ55ZTCV430M6BK24F9DWHVS	01KJSRZ3P9J1C4TWY7ZT4Q52WW	0	2026-03-03 12:57:35.829+01	2026-03-03 12:57:35.829+01	\N	01KJSRYWGXNFGC000Y6N1X7JAS
01KJSSPPKAWRKA56J6C8JTHSRP	01KJ55ZTCV430M6BK24F9DWHVS	01KJSSPPK7J83NEVAH8N6CMA3D	0	2026-03-03 13:10:28.842+01	2026-03-03 13:10:28.842+01	\N	01KJCY9BW2Z3H4HA9G8BWE1QC4
01KJSTA254CRWT2KH2ZRJFXT30	01KJ55ZTCV430M6BK24F9DWHVS	01KJSTA24QGK8V23WQC93DP9XH	0	2026-03-03 13:21:03.268+01	2026-03-03 13:21:03.268+01	\N	01KJST8GM1B4SRE22ZD4KBR9F0
01KJSVVB78YF0C43K1QXBKKFEP	01KJEYAZ2ZX2Q6THKT735KJK20	01KJSVVB6ZK6RSQSBGHNX15Z3T	0	2026-03-03 13:47:58.184+01	2026-03-03 13:47:58.184+01	\N	01KJEYBQ7XR66Y5NSTYMXJWEKZ
01KJSW3YEYPHAN97N11DRGTMFQ	01KJEYAZ2ZX2Q6THKT735KJK20	01KJSW3YETFCMJ7NTCHWN4GX1P	0	2026-03-03 13:52:40.03+01	2026-03-03 13:52:40.03+01	\N	01KJSW0KYS21C21Z4RFSY8SRBP
01KJSX0P1V0TCEZWWFK3F6P35Y	01KJEYAZ2ZX2Q6THKT735KJK20	01KJSX0P1QHHK58RVKEYH6ZYTV	0	2026-03-03 14:08:21.691+01	2026-03-03 14:08:21.691+01	\N	01KJSX0AH7S8NEACB067G1MEEB
01KJSXGR3VY1XHJJRRN07R7MVJ	01KJEYAZ2ZX2Q6THKT735KJK20	01KJSXGR3P8X7016YG27DAZFS6	0	2026-03-03 14:17:08.091+01	2026-03-03 14:17:08.091+01	\N	01KJSXGG01DT9PQMZN012V4BG1
01KJY47SWE1D9M0P9HY31MVW38	01KJD12XY3FV2BVTD1WRJ1G7NP	01KJY47SVJ93WAJ9150W33Z8ZK	0	2026-03-05 05:31:32.75+01	2026-03-05 05:31:32.75+01	\N	01KJD13CVXC4HZ4M20YD3F7KFX
01KJY4ED98WRBGS1XABV0YYP5S	01KJPN62X5XJAZC73ASD4YRF9K	01KJY4ED8GG29RYT5AM2KFS7R9	0	2026-03-05 05:35:09.224+01	2026-03-05 05:35:09.224+01	\N	01KJY4E5Y6W6KFBETP1QD3CKKQ
\.


--
-- Data for Name: cms_page_section; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.cms_page_section (id, page_id, name, "position", created_at, updated_at, deleted_at, key) FROM stdin;
01KJD13CVXC4HZ4M20YD3F7KFX	01KJD12XY3FV2BVTD1WRJ1G7NP	Contact Hero	0	2026-02-26 14:09:37.277+01	2026-02-26 14:09:37.277+01	\N	contact-hero
01KJD16TNK5XNCCA3CSACXAZQK	01KJD12XY3FV2BVTD1WRJ1G7NP	Address Section	1	2026-02-26 14:11:29.715+01	2026-02-26 14:11:29.715+01	\N	address-section
01KJEYBQ7XR66Y5NSTYMXJWEKZ	01KJEYAZ2ZX2Q6THKT735KJK20	Service Hero	0	2026-02-27 08:00:13.181+01	2026-02-27 08:00:13.181+01	\N	service-hero
01KJ4F5BD6H6JZPF557C61SDX3	01KHX1CDH1GPT2B72EZTRA035A	BannerSection	0	2026-02-23 06:22:11.494+01	2026-02-23 07:45:22.761+01	\N	bannersection
01KJSW0KYS21C21Z4RFSY8SRBP	01KJEYAZ2ZX2Q6THKT735KJK20	Waste  Management	1	2026-03-03 13:50:50.969+01	2026-03-03 13:50:54.528+01	\N	waste-management
01KJ4NB8PZP377XRTMREADRXYA	01KJ4N067F33MBPAKE784NTYH3	FooterImage	7	2026-02-23 08:10:16.799+01	2026-03-03 10:50:52.517+01	\N	footerimage
01KJSRYWGXNFGC000Y6N1X7JAS	01KJ55ZTCV430M6BK24F9DWHVS	Sector We Serve	2	2026-03-03 12:57:28.477+01	2026-03-03 12:57:31.25+01	\N	sector-we-serve
01KJ4NSZAVBYQFYWYVTGCJDKRJ	01KJ4N067F33MBPAKE784NTYH3	SocialMedia	6	2026-02-23 08:18:18.715+01	2026-03-03 10:50:53.726+01	\N	socialmedia
01KJCY9BW2Z3H4HA9G8BWE1QC4	01KJ55ZTCV430M6BK24F9DWHVS	Our Vlaue Proposition	3	2026-02-26 13:20:27.138+01	2026-03-03 12:57:31.253+01	\N	our-vlaue-proposition
01KJ4XG0Y2XC32XG55GQF2T4W7	01KJ4XE6NRW5R69Q0TPQP8R8XS	LogoSection	0	2026-02-23 10:32:41.282+01	2026-02-23 10:32:41.282+01	\N	logosection
01KJF1APJ9YXHHYBWWR8HQV46E	01KJEYAZ2ZX2Q6THKT735KJK20	Certifications & Partnerships	5	2026-02-27 08:52:05.449+01	2026-02-27 08:52:05.449+01	\N	certifications--partnerships
01KJPN7QVXC02N4VERXR7H66J9	01KJPN62X5XJAZC73ASD4YRF9K	ContentSection	1	2026-03-02 07:54:41.021+01	2026-03-02 07:54:41.021+01	\N	contentsection
01KJ4HH5GJFE662H4KASPW94FW	01KHX1CDH1GPT2B72EZTRA035A	OrganicWasteMarketPlace	1	2026-02-23 07:03:35.826+01	2026-02-26 11:04:03.407+01	\N	organicwastemarketplace
01KJCARYSKHN5RCZA9DNZM414T	01KHX1CDH1GPT2B72EZTRA035A	WasteCategoriesSection	2	2026-02-26 07:39:26.515+01	2026-02-26 11:04:03.411+01	\N	wastecategoriessection
01KJCQNQ3GWR39MJPGZ6YGX2V4	01KHX1CDH1GPT2B72EZTRA035A	How it Works	4	2026-02-26 11:24:51.824+01	2026-02-26 11:24:51.824+01	\N	how-it-works
01KJCSD9K4JK30XY39CSCA8QRC	01KHX1CDH1GPT2B72EZTRA035A	Why Biomket?	5	2026-02-26 11:55:12.997+01	2026-02-26 12:04:29.655+01	\N	why-biomket
01KJ4N0ZSWBKGQ5PBSZYXV40X1	01KJ4N067F33MBPAKE784NTYH3	CallToAction	0	2026-02-23 08:04:39.996+01	2026-02-26 12:11:01.849+01	\N	wastemanagementdiv
01KJCW00CF5D2PPXHGMPXC55XX	01KJ4XE6NRW5R69Q0TPQP8R8XS	NavLinkSection	1	2026-02-26 12:40:23.311+01	2026-02-26 12:40:23.311+01	\N	navlinksection
01KJCWBXYRDTYMFH78APAYX0SP	01KJ4XE6NRW5R69Q0TPQP8R8XS	AuthSection	2	2026-02-26 12:46:54.04+01	2026-02-26 12:48:08.543+01	\N	authentication
01KJCX8WTM2D2H3C9C7AAN7YCV	01KJ55ZTCV430M6BK24F9DWHVS	PageHero	0	2026-02-26 13:02:43.156+01	2026-02-26 13:02:47.802+01	\N	pahehero
01KJCXE3TYCGH8PZW56A1T42FS	01KJ55ZTCV430M6BK24F9DWHVS	Who We Are	1	2026-02-26 13:05:34.174+01	2026-02-26 13:05:34.174+01	\N	who-we-are
01KJPZ2ZZZSSVWMGPT53NKZMEE	01KJPY6AC4BKWBM35MGTCQ4EJM	TransferInfoDetails	2	2026-03-02 10:46:51.263+01	2026-03-02 10:46:51.263+01	\N	transferinfodetails
01KJ4NSM1A7SS0XDSQRCTQJCFD	01KJ4N067F33MBPAKE784NTYH3	LegalRegulatons	5	2026-02-23 08:18:07.146+01	2026-03-03 10:50:54.595+01	\N	legalregulatons
01KJST8GM1B4SRE22ZD4KBR9F0	01KJ55ZTCV430M6BK24F9DWHVS	Our Team	4	2026-03-03 13:20:12.545+01	2026-03-03 13:20:12.545+01	\N	our-team
01KJCPSX9179GDPGXWHNXEF9AQ	01KHX1CDH1GPT2B72EZTRA035A	Waste Management	3	2026-02-26 11:09:40.641+01	2026-03-03 06:54:16.115+01	\N	waste-management
01KJ4NS2RJBXT0SA39JB3HJDWH	01KJ4N067F33MBPAKE784NTYH3	Copyright	4	2026-02-23 08:17:49.458+01	2026-03-03 10:50:55.732+01	\N	copyright
01KKE5NCQ8166D6YTZJ202B8DY	01KKE5KDNSHSJVJYWSMWAC67AP	What Happens Next?	1	2026-03-11 11:04:17.513+01	2026-03-11 11:04:17.513+01	\N	what-happens-next
01KJ4NRGW8EYDNVQV03HSFS4YS	01KJ4N067F33MBPAKE784NTYH3	Address	3	2026-02-23 08:17:31.144+01	2026-03-03 10:50:56.69+01	\N	address
01KJY53TCFAGVAS4SQ0Q5W1R62	01KJPY6AC4BKWBM35MGTCQ4EJM	Banner Section	0	2026-03-05 05:46:50.767+01	2026-03-05 05:46:57.117+01	\N	banner-section
01KJSHPZVNBY118C88V5KQQCRD	01KJ4N067F33MBPAKE784NTYH3	Footer logo	1	2026-03-03 10:50:49.717+01	2026-03-03 10:50:58.021+01	\N	footer-logo
01KKE5NXS48RT15F7YY4BZDJ3J	01KKE5KDNSHSJVJYWSMWAC67AP	Important Information	2	2026-03-11 11:04:34.98+01	2026-03-11 11:04:34.98+01	\N	important-information
01KJ4NR3JRT3BACN0QAQVFMW1A	01KJ4N067F33MBPAKE784NTYH3	FooterMenus	2	2026-02-23 08:17:17.528+01	2026-03-03 10:50:58.023+01	\N	footermenus
01KKE5P4FTB8D6FCK40H8TA7ST	01KKE5KDNSHSJVJYWSMWAC67AP	Need Help?	3	2026-03-11 11:04:41.85+01	2026-03-11 11:04:41.85+01	\N	need-help
01KJY58N5K2A8NH57AEQ1H1FHR	01KJPY6AC4BKWBM35MGTCQ4EJM	Transfer Requirements Section	1	2026-03-05 05:49:29.267+01	2026-03-05 05:49:30.607+01	\N	transfer-requirements-section
01KJY5RAMNASGPQXYQCCJ5FAAD	01KJQ0GFW4754ZZWHTJ7PJ4JCS	Banner Section	0	2026-03-05 05:58:02.773+01	2026-03-05 05:58:04.379+01	\N	banner-section
01KJY4E5Y6W6KFBETP1QD3CKKQ	01KJPN62X5XJAZC73ASD4YRF9K	Banner Section	0	2026-03-05 05:35:01.702+01	2026-03-05 05:35:04.53+01	\N	banner-section
01KJY6JFNS73CVV8CTMWY2BPVW	01KJQ0GFW4754ZZWHTJ7PJ4JCS	Regulation on Organic Waste	1	2026-03-05 06:12:19.897+01	2026-03-05 06:12:19.897+01	\N	regulation-on-organic-waste
01KJY9RH5T5NDP640KQT0SHNEE	01KJPWDWH30EB8T2TKCTEC9M9F	Banner Section	0	2026-03-05 07:08:03.771+01	2026-03-05 07:08:03.771+01	\N	banner-section
01KJY9RYJAYK8XHS5DMK7A7P85	01KJPWDWH30EB8T2TKCTEC9M9F	What are EWC codes?	1	2026-03-05 07:08:17.483+01	2026-03-05 07:08:17.483+01	\N	what-are-ewc-codes
01KJY9S8QY8PSP4CJR0K6RTX9B	01KJPWDWH30EB8T2TKCTEC9M9F	How to interpret	2	2026-03-05 07:08:27.902+01	2026-03-05 07:08:27.902+01	\N	how-to-interpret
01KJY9SGKGEPD06NX3T9XP6ETF	01KJPWDWH30EB8T2TKCTEC9M9F	Find your Waste	3	2026-03-05 07:08:35.952+01	2026-03-05 07:08:35.952+01	\N	find-your-waste
01KKED88T2EN4QPCV0010X0QGH	01KJFMJ5C93MSKTVV8A2859PKJ	Base Information	0	2026-03-11 13:16:56.13+01	2026-03-11 13:30:26.499+01	\N	payment-methods
01KJSXGG01DT9PQMZN012V4BG1	01KJEYAZ2ZX2Q6THKT735KJK20	Why Choose Us	4	2026-03-03 14:16:59.777+01	2026-03-05 07:24:15.192+01	\N	why-choose-us
01KJYAP32FT102DKM97BKDVB1V	01KJEYAZ2ZX2Q6THKT735KJK20	Proven Process	2	2026-03-05 07:24:12.367+01	2026-03-05 07:24:19.026+01	\N	proven-process
01KJSX0AH7S8NEACB067G1MEEB	01KJEYAZ2ZX2Q6THKT735KJK20	Industry Solutions	3	2026-03-03 14:08:09.895+01	2026-03-05 07:24:19.035+01	\N	industry-solutions
01KKE4KG6CAZ18EP3R8AVCDBH2	01KKE4J2X8W9YH24NDVJ32DMW9	Valorizing Your Waste Card	0	2026-03-11 10:45:46.956+01	2026-03-11 10:45:46.956+01	\N	valorizing-your-waste-card
01KKE5M4ESR2RW4QTWV6ZXQ4RV	01KKE5KDNSHSJVJYWSMWAC67AP	Banner Section	0	2026-03-11 11:03:36.281+01	2026-03-11 11:03:36.281+01	\N	banner-section
01KKECGH440CS674V9M9TDYJ1P	01KJFMJ5C93MSKTVV8A2859PKJ	Info cards	1	2026-03-11 13:03:58.212+01	2026-03-11 13:17:04.467+01	\N	secure-transaction
\.


--
-- Data for Name: contact_inquiry; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.contact_inquiry (id, name_or_company, email, phone, country, company, inquiry_type, privacy_accepted, created_at, updated_at, deleted_at, contact_name, industry_type, approximate_waste_volume, needs_description, communications_accepted) FROM stdin;
9322f4ec-ceb6-4929-9111-3534f7e7bcfa	Acme Inc	user@example.com	+1234567890	US	Optional company name	Company	t	2026-02-25 06:26:26.424+01	2026-02-25 06:26:26.424+01	\N	\N	\N	\N	\N	f
7442235d-7d52-4745-a6d7-a483ec3636b2	Acme Inc	user@example.com	+1234567890	US	Optional company name	Company	t	2026-02-25 06:27:23.014+01	2026-02-25 06:27:23.014+01	\N	\N	\N	\N	\N	f
97e1ba23-3078-421d-b55d-b27e41525fab	Acme Inc	user@example.com	+1234567890	US	Optional company name	Company	t	2026-02-27 07:43:26.777+01	2026-02-27 07:43:26.777+01	\N	\N	\N	\N	\N	f
4131e452-fa9e-4b56-97d9-c8a2eda490f1	Acme Inc	user@example.com	+1234567890	US	Optional company name	Company	t	2026-02-27 10:21:44.806+01	2026-02-27 10:21:44.806+01	\N	\N	\N	\N	\N	f
\.


--
-- Data for Name: credit_line; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.credit_line (id, cart_id, reference, reference_id, amount, raw_amount, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: currency; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.currency (code, symbol, symbol_native, decimal_digits, rounding, raw_rounding, name, created_at, updated_at, deleted_at) FROM stdin;
usd	$	$	2	0	{"value": "0", "precision": 20}	US Dollar	2026-02-18 08:49:10.232+01	2026-02-18 08:49:10.232+01	\N
cad	CA$	$	2	0	{"value": "0", "precision": 20}	Canadian Dollar	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
eur	€	€	2	0	{"value": "0", "precision": 20}	Euro	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
aed	AED	د.إ.‏	2	0	{"value": "0", "precision": 20}	United Arab Emirates Dirham	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
afn	Af	؋	0	0	{"value": "0", "precision": 20}	Afghan Afghani	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
all	ALL	Lek	0	0	{"value": "0", "precision": 20}	Albanian Lek	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
amd	AMD	դր.	0	0	{"value": "0", "precision": 20}	Armenian Dram	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
ars	AR$	$	2	0	{"value": "0", "precision": 20}	Argentine Peso	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
aud	AU$	$	2	0	{"value": "0", "precision": 20}	Australian Dollar	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
azn	man.	ман.	2	0	{"value": "0", "precision": 20}	Azerbaijani Manat	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bam	KM	KM	2	0	{"value": "0", "precision": 20}	Bosnia-Herzegovina Convertible Mark	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bdt	Tk	৳	2	0	{"value": "0", "precision": 20}	Bangladeshi Taka	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bgn	BGN	лв.	2	0	{"value": "0", "precision": 20}	Bulgarian Lev	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bhd	BD	د.ب.‏	3	0	{"value": "0", "precision": 20}	Bahraini Dinar	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bif	FBu	FBu	0	0	{"value": "0", "precision": 20}	Burundian Franc	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bnd	BN$	$	2	0	{"value": "0", "precision": 20}	Brunei Dollar	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bob	Bs	Bs	2	0	{"value": "0", "precision": 20}	Bolivian Boliviano	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
brl	R$	R$	2	0	{"value": "0", "precision": 20}	Brazilian Real	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bwp	BWP	P	2	0	{"value": "0", "precision": 20}	Botswanan Pula	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
byn	Br	руб.	2	0	{"value": "0", "precision": 20}	Belarusian Ruble	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
bzd	BZ$	$	2	0	{"value": "0", "precision": 20}	Belize Dollar	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
cdf	CDF	FrCD	2	0	{"value": "0", "precision": 20}	Congolese Franc	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
chf	CHF	CHF	2	0.05	{"value": "0.05", "precision": 20}	Swiss Franc	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
clp	CL$	$	0	0	{"value": "0", "precision": 20}	Chilean Peso	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
cny	CN¥	CN¥	2	0	{"value": "0", "precision": 20}	Chinese Yuan	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
cop	CO$	$	0	0	{"value": "0", "precision": 20}	Colombian Peso	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
crc	₡	₡	0	0	{"value": "0", "precision": 20}	Costa Rican Colón	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
cve	CV$	CV$	2	0	{"value": "0", "precision": 20}	Cape Verdean Escudo	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
czk	Kč	Kč	2	0	{"value": "0", "precision": 20}	Czech Republic Koruna	2026-02-18 08:49:10.233+01	2026-02-18 08:49:10.233+01	\N
djf	Fdj	Fdj	0	0	{"value": "0", "precision": 20}	Djiboutian Franc	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
dkk	Dkr	kr	2	0	{"value": "0", "precision": 20}	Danish Krone	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
dop	RD$	RD$	2	0	{"value": "0", "precision": 20}	Dominican Peso	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
dzd	DA	د.ج.‏	2	0	{"value": "0", "precision": 20}	Algerian Dinar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
eek	Ekr	kr	2	0	{"value": "0", "precision": 20}	Estonian Kroon	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
egp	EGP	ج.م.‏	2	0	{"value": "0", "precision": 20}	Egyptian Pound	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
ern	Nfk	Nfk	2	0	{"value": "0", "precision": 20}	Eritrean Nakfa	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
etb	Br	Br	2	0	{"value": "0", "precision": 20}	Ethiopian Birr	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
gbp	£	£	2	0	{"value": "0", "precision": 20}	British Pound Sterling	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
gel	GEL	GEL	2	0	{"value": "0", "precision": 20}	Georgian Lari	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
ghs	GH₵	GH₵	2	0	{"value": "0", "precision": 20}	Ghanaian Cedi	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
gnf	FG	FG	0	0	{"value": "0", "precision": 20}	Guinean Franc	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
gtq	GTQ	Q	2	0	{"value": "0", "precision": 20}	Guatemalan Quetzal	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
hkd	HK$	$	2	0	{"value": "0", "precision": 20}	Hong Kong Dollar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
hnl	HNL	L	2	0	{"value": "0", "precision": 20}	Honduran Lempira	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
hrk	kn	kn	2	0	{"value": "0", "precision": 20}	Croatian Kuna	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
huf	Ft	Ft	0	0	{"value": "0", "precision": 20}	Hungarian Forint	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
idr	Rp	Rp	0	0	{"value": "0", "precision": 20}	Indonesian Rupiah	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
ils	₪	₪	2	0	{"value": "0", "precision": 20}	Israeli New Sheqel	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
inr	Rs	₹	2	0	{"value": "0", "precision": 20}	Indian Rupee	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
iqd	IQD	د.ع.‏	0	0	{"value": "0", "precision": 20}	Iraqi Dinar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
irr	IRR	﷼	0	0	{"value": "0", "precision": 20}	Iranian Rial	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
isk	Ikr	kr	0	0	{"value": "0", "precision": 20}	Icelandic Króna	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
jmd	J$	$	2	0	{"value": "0", "precision": 20}	Jamaican Dollar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
jod	JD	د.أ.‏	3	0	{"value": "0", "precision": 20}	Jordanian Dinar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
jpy	¥	￥	0	0	{"value": "0", "precision": 20}	Japanese Yen	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
kes	Ksh	Ksh	2	0	{"value": "0", "precision": 20}	Kenyan Shilling	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
khr	KHR	៛	2	0	{"value": "0", "precision": 20}	Cambodian Riel	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
kmf	CF	FC	0	0	{"value": "0", "precision": 20}	Comorian Franc	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
krw	₩	₩	0	0	{"value": "0", "precision": 20}	South Korean Won	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
kwd	KD	د.ك.‏	3	0	{"value": "0", "precision": 20}	Kuwaiti Dinar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
kzt	KZT	тңг.	2	0	{"value": "0", "precision": 20}	Kazakhstani Tenge	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
lbp	LB£	ل.ل.‏	0	0	{"value": "0", "precision": 20}	Lebanese Pound	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
lkr	SLRs	SL Re	2	0	{"value": "0", "precision": 20}	Sri Lankan Rupee	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
ltl	Lt	Lt	2	0	{"value": "0", "precision": 20}	Lithuanian Litas	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
lvl	Ls	Ls	2	0	{"value": "0", "precision": 20}	Latvian Lats	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
lyd	LD	د.ل.‏	3	0	{"value": "0", "precision": 20}	Libyan Dinar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mad	MAD	د.م.‏	2	0	{"value": "0", "precision": 20}	Moroccan Dirham	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mdl	MDL	MDL	2	0	{"value": "0", "precision": 20}	Moldovan Leu	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mga	MGA	MGA	0	0	{"value": "0", "precision": 20}	Malagasy Ariary	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mkd	MKD	MKD	2	0	{"value": "0", "precision": 20}	Macedonian Denar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mmk	MMK	K	0	0	{"value": "0", "precision": 20}	Myanma Kyat	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mnt	MNT	₮	0	0	{"value": "0", "precision": 20}	Mongolian Tugrig	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mop	MOP$	MOP$	2	0	{"value": "0", "precision": 20}	Macanese Pataca	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mur	MURs	MURs	0	0	{"value": "0", "precision": 20}	Mauritian Rupee	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mwk	K	K	2	0	{"value": "0", "precision": 20}	Malawian Kwacha	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mxn	MX$	$	2	0	{"value": "0", "precision": 20}	Mexican Peso	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
myr	RM	RM	2	0	{"value": "0", "precision": 20}	Malaysian Ringgit	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
mzn	MTn	MTn	2	0	{"value": "0", "precision": 20}	Mozambican Metical	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
nad	N$	N$	2	0	{"value": "0", "precision": 20}	Namibian Dollar	2026-02-18 08:49:10.234+01	2026-02-18 08:49:10.234+01	\N
ngn	₦	₦	2	0	{"value": "0", "precision": 20}	Nigerian Naira	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
nio	C$	C$	2	0	{"value": "0", "precision": 20}	Nicaraguan Córdoba	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
nok	Nkr	kr	2	0	{"value": "0", "precision": 20}	Norwegian Krone	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
npr	NPRs	नेरू	2	0	{"value": "0", "precision": 20}	Nepalese Rupee	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
nzd	NZ$	$	2	0	{"value": "0", "precision": 20}	New Zealand Dollar	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
omr	OMR	ر.ع.‏	3	0	{"value": "0", "precision": 20}	Omani Rial	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
pab	B/.	B/.	2	0	{"value": "0", "precision": 20}	Panamanian Balboa	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
pen	S/.	S/.	2	0	{"value": "0", "precision": 20}	Peruvian Nuevo Sol	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
php	₱	₱	2	0	{"value": "0", "precision": 20}	Philippine Peso	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
pkr	PKRs	₨	0	0	{"value": "0", "precision": 20}	Pakistani Rupee	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
pln	zł	zł	2	0	{"value": "0", "precision": 20}	Polish Zloty	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
pyg	₲	₲	0	0	{"value": "0", "precision": 20}	Paraguayan Guarani	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
qar	QR	ر.ق.‏	2	0	{"value": "0", "precision": 20}	Qatari Rial	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
ron	RON	RON	2	0	{"value": "0", "precision": 20}	Romanian Leu	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
rsd	din.	дин.	0	0	{"value": "0", "precision": 20}	Serbian Dinar	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
rub	RUB	₽.	2	0	{"value": "0", "precision": 20}	Russian Ruble	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
rwf	RWF	FR	0	0	{"value": "0", "precision": 20}	Rwandan Franc	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
sar	SR	ر.س.‏	2	0	{"value": "0", "precision": 20}	Saudi Riyal	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
sdg	SDG	SDG	2	0	{"value": "0", "precision": 20}	Sudanese Pound	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
sek	Skr	kr	2	0	{"value": "0", "precision": 20}	Swedish Krona	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
sgd	S$	$	2	0	{"value": "0", "precision": 20}	Singapore Dollar	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
sos	Ssh	Ssh	0	0	{"value": "0", "precision": 20}	Somali Shilling	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
syp	SY£	ل.س.‏	0	0	{"value": "0", "precision": 20}	Syrian Pound	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
thb	฿	฿	2	0	{"value": "0", "precision": 20}	Thai Baht	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
tnd	DT	د.ت.‏	3	0	{"value": "0", "precision": 20}	Tunisian Dinar	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
top	T$	T$	2	0	{"value": "0", "precision": 20}	Tongan Paʻanga	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
tjs	TJS	с.	2	0	{"value": "0", "precision": 20}	Tajikistani Somoni	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
try	₺	₺	2	0	{"value": "0", "precision": 20}	Turkish Lira	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
ttd	TT$	$	2	0	{"value": "0", "precision": 20}	Trinidad and Tobago Dollar	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
twd	NT$	NT$	2	0	{"value": "0", "precision": 20}	New Taiwan Dollar	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
tzs	TSh	TSh	0	0	{"value": "0", "precision": 20}	Tanzanian Shilling	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
uah	₴	₴	2	0	{"value": "0", "precision": 20}	Ukrainian Hryvnia	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
ugx	USh	USh	0	0	{"value": "0", "precision": 20}	Ugandan Shilling	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
uyu	$U	$	2	0	{"value": "0", "precision": 20}	Uruguayan Peso	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
uzs	UZS	UZS	0	0	{"value": "0", "precision": 20}	Uzbekistan Som	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
vef	Bs.F.	Bs.F.	2	0	{"value": "0", "precision": 20}	Venezuelan Bolívar	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
vnd	₫	₫	0	0	{"value": "0", "precision": 20}	Vietnamese Dong	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
xaf	FCFA	FCFA	0	0	{"value": "0", "precision": 20}	CFA Franc BEAC	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
xof	CFA	CFA	0	0	{"value": "0", "precision": 20}	CFA Franc BCEAO	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
xpf	₣	₣	0	0	{"value": "0", "precision": 20}	CFP Franc	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
yer	YR	ر.ي.‏	0	0	{"value": "0", "precision": 20}	Yemeni Rial	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
zar	R	R	2	0	{"value": "0", "precision": 20}	South African Rand	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
zmk	ZK	ZK	0	0	{"value": "0", "precision": 20}	Zambian Kwacha	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
zwl	ZWL$	ZWL$	0	0	{"value": "0", "precision": 20}	Zimbabwean Dollar	2026-02-18 08:49:10.235+01	2026-02-18 08:49:10.235+01	\N
\.


--
-- Data for Name: customer; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.customer (id, company_name, first_name, last_name, email, phone, has_account, metadata, created_at, updated_at, deleted_at, created_by) FROM stdin;
cus_01KJ73NTS6CWGXRX122E0C6RZ1	\N	Raj	\N	raj@gmail.com	9006315248	t	{"privacy_policy_accepted": true}	2026-02-24 06:59:11.911+01	2026-02-24 06:59:11.911+01	\N	\N
cus_01KJ749TQBAVYCAZMYYBDTNGD8	Biomket Pvt Ltd	Rajesh	Kumar	rajesh.admin@example.com	+919876543210	t	{"privacy_policy_accepted": true}	2026-02-24 07:10:07.212+01	2026-02-24 08:29:18.51+01	\N	\N
cus_01KJ7WBJ3CV37TKPK9JTBHEGF5	\N	Heli	\N	h@gmail.com	\N	t	{"phone": "8675674564", "country": "in", "full_name": "Heli", "company_name": "", "privacy_policy_accepted": true, "terms_of_service_accepted": true}	2026-02-24 14:10:29.741+01	2026-02-24 14:10:29.741+01	\N	\N
cus_01KKGXWC4HASYZZXS5V54FHARX	GreenTech Solutions GmbH	Lukas	Müller	info@greentech-berlin.de	+4930123456	t	{"cif_nif": "DE112233445", "consents": {"accurate_info": true}, "has_nima": true, "nima_number": "NIMA-DE-4455", "company_role": "Waste Processor", "has_organic_auth": false, "nima_document_url": "greentech-nima-cert.png", "responsible_person_name": "Lukas Müller", "responsible_person_phone": "+4930123456", "organic_auth_document_url": null}	2026-03-12 12:46:00.979+01	2026-03-12 12:46:00.979+01	\N	\N
\.


--
-- Data for Name: customer_account_holder; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.customer_account_holder (customer_id, account_holder_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: customer_address; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.customer_address (id, customer_id, address_name, is_default_shipping, is_default_billing, company, first_name, last_name, address_1, address_2, city, country_code, province, postal_code, phone, metadata, created_at, updated_at, deleted_at) FROM stdin;
cuaddr_01KJ78Y5Q81R292HNYFT0PZSV4	cus_01KJ749TQBAVYCAZMYYBDTNGD8	Home	f	f		\N	\N	Shilp 	corporate	a	in	g	38005478	455654645	\N	2026-02-24 08:31:08.137+01	2026-02-24 08:31:08.137+01	\N
cuaddr_01KJ7WBJ3CXQ4WDMTWVZXAQ4BQ	cus_01KJ7WBJ3CV37TKPK9JTBHEGF5	\N	t	t	\N	\N	\N	\N	\N	\N	in	\N	\N	\N	\N	2026-02-24 14:10:29.741+01	2026-02-24 14:10:29.741+01	\N
cuaddr_01KKGXWC4KT20P0CPYP1N1RAA8	cus_01KKGXWC4HASYZZXS5V54FHARX	\N	t	t	\N	\N	\N	Friedrichstraße 101	\N	Berlin	de	Berlin	10117	\N	\N	2026-03-12 12:46:00.98+01	2026-03-12 12:46:00.98+01	\N
\.


--
-- Data for Name: customer_group; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.customer_group (id, name, metadata, created_by, created_at, updated_at, deleted_at) FROM stdin;
cusgroup_01KJ4KCPE37TC6E7J5R1HRP5YZ	test	\N	user_01KHR78EA4PBPS1X3YKBHP4W10	2026-02-23 07:36:06.467+01	2026-02-23 14:13:13.835+01	2026-02-23 14:13:13.834+01
\.


--
-- Data for Name: customer_group_customer; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.customer_group_customer (id, customer_id, customer_group_id, metadata, created_at, updated_at, created_by, deleted_at) FROM stdin;
\.


--
-- Data for Name: fulfillment; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.fulfillment (id, location_id, packed_at, shipped_at, delivered_at, canceled_at, data, provider_id, shipping_option_id, metadata, delivery_address_id, created_at, updated_at, deleted_at, marked_shipped_by, created_by, requires_shipping) FROM stdin;
\.


--
-- Data for Name: fulfillment_address; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.fulfillment_address (id, company, first_name, last_name, address_1, address_2, city, country_code, province, postal_code, phone, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: fulfillment_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.fulfillment_item (id, title, sku, barcode, quantity, raw_quantity, line_item_id, inventory_item_id, fulfillment_id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: fulfillment_label; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.fulfillment_label (id, tracking_number, tracking_url, label_url, fulfillment_id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: fulfillment_provider; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.fulfillment_provider (id, is_enabled, created_at, updated_at, deleted_at) FROM stdin;
manual_manual	t	2026-02-18 08:49:10.244+01	2026-02-18 08:49:10.244+01	\N
\.


--
-- Data for Name: fulfillment_set; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.fulfillment_set (id, name, type, metadata, created_at, updated_at, deleted_at) FROM stdin;
fuset_01KHR06AF6XK8T5103FKW12SQG	European Warehouse delivery	shipping	\N	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
\.


--
-- Data for Name: geo_zone; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.geo_zone (id, type, country_code, province_code, city, service_zone_id, postal_expression, metadata, created_at, updated_at, deleted_at) FROM stdin;
fgz_01KHR06AF5EYZJAQN99N94HYB2	country	gb	\N	\N	serzo_01KHR06AF5NZYZ4WC40FYTB14W	\N	\N	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
fgz_01KHR06AF52BRHN5CBMEHTEG6H	country	de	\N	\N	serzo_01KHR06AF5NZYZ4WC40FYTB14W	\N	\N	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
fgz_01KHR06AF5M7WZXMNMVSJPFTRH	country	dk	\N	\N	serzo_01KHR06AF5NZYZ4WC40FYTB14W	\N	\N	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
fgz_01KHR06AF5JASD64RQMVSGBVGB	country	se	\N	\N	serzo_01KHR06AF5NZYZ4WC40FYTB14W	\N	\N	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
fgz_01KHR06AF5S3KZ4ZN95GHNS3G1	country	fr	\N	\N	serzo_01KHR06AF5NZYZ4WC40FYTB14W	\N	\N	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
fgz_01KHR06AF5DTPKNW1XT2RNDN4Q	country	es	\N	\N	serzo_01KHR06AF5NZYZ4WC40FYTB14W	\N	\N	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
fgz_01KHR06AF5RBBVPE45ZCTTEZEY	country	it	\N	\N	serzo_01KHR06AF5NZYZ4WC40FYTB14W	\N	\N	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
\.


--
-- Data for Name: image; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.image (id, url, metadata, created_at, updated_at, deleted_at, rank, product_id) FROM stdin;
img_01KHR7D0583H5EXGNJFRSF30VW	https://biomket1.yourwebdemo.co.in/static/1771413340313-image.jpg	\N	2026-02-18 12:15:40.33+01	2026-03-12 11:30:47.515+01	2026-03-12 11:30:47.475+01	0	prod_01KHR7D0562FZ8W0Q6KG73WK03
uc5o7	https://biomket1.yourwebdemo.co.in/static/1773314488636-image.png	\N	2026-03-12 12:21:28.695+01	2026-03-12 12:21:28.695+01	\N	0	prod_01KKGVC5DV5MDRVHGSVGVF9QMF
img_01KHR06AKWZ6Z2CJGK636ZKQ6A	https://medusa-public-images.s3.eu-west-1.amazonaws.com/shorts-vintage-front.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:51.725+01	2026-03-12 12:48:51.692+01	0	prod_01KHR06AKQBWMZQDKM336Y6HFB
img_01KHR06AKX7FPAZ05HYF09RR2A	https://medusa-public-images.s3.eu-west-1.amazonaws.com/shorts-vintage-back.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:51.725+01	2026-03-12 12:48:51.692+01	1	prod_01KHR06AKQBWMZQDKM336Y6HFB
img_01KHR06AKWM7H17FC7YT1KEVB0	https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatpants-gray-front.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:54.562+01	2026-03-12 12:48:54.538+01	0	prod_01KHR06AKQDMAN8QQRS4E07ZT8
img_01KHR06AKWXHX0D2YBNWSDND9E	https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatpants-gray-back.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:54.562+01	2026-03-12 12:48:54.538+01	1	prod_01KHR06AKQDMAN8QQRS4E07ZT8
img_01KHR06AKV9D9VPPPES6HKZM1V	https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatshirt-vintage-front.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:57.598+01	2026-03-12 12:48:57.581+01	0	prod_01KHR06AKQDRQ7VRRW3R5F3Z0T
img_01KHR06AKVPBMQCH3TPWRN27FQ	https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatshirt-vintage-back.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:57.598+01	2026-03-12 12:48:57.581+01	1	prod_01KHR06AKQDRQ7VRRW3R5F3Z0T
img_01KHR06AKTR260ZAKXBQB1SPP0	https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-black-front.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	0	prod_01KHR06AKQYY80J14ZJVH6GEN7
img_01KHR06AKT96FMVME454XPPMQ5	https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-black-back.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	1	prod_01KHR06AKQYY80J14ZJVH6GEN7
img_01KHR06AKTK1T1A7X4EB7PKWHJ	https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-white-front.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	2	prod_01KHR06AKQYY80J14ZJVH6GEN7
img_01KHR06AKT8SJ5YAHHNVTK1FTB	https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-white-back.png	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	3	prod_01KHR06AKQYY80J14ZJVH6GEN7
\.


--
-- Data for Name: inventory_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.inventory_item (id, created_at, updated_at, deleted_at, sku, origin_country, hs_code, mid_code, material, weight, length, height, width, requires_shipping, description, title, thumbnail, metadata) FROM stdin;
iitem_01KKGVC5HBVMHA9VMVGDF1R8VA	2026-03-12 12:02:12.779+01	2026-03-12 12:02:12.779+01	\N	02-01-06	\N	\N	\N	\N	\N	\N	\N	\N	t	Default	Default	\N	\N
iitem_01KHR06APKC29088K5TYZQAVM5	2026-02-18 10:09:41.716+01	2026-03-12 12:48:51.611+01	2026-03-12 12:48:51.609+01	SHORTS-S	\N	\N	\N	\N	\N	\N	\N	\N	t	S	S	\N	\N
iitem_01KHR06APKCAZ95GRV0120DPBA	2026-02-18 10:09:41.716+01	2026-03-12 12:48:51.631+01	2026-03-12 12:48:51.609+01	SHORTS-M	\N	\N	\N	\N	\N	\N	\N	\N	t	M	M	\N	\N
iitem_01KHR06APKT9XXMAWM2VGRXZAZ	2026-02-18 10:09:41.716+01	2026-03-12 12:48:51.64+01	2026-03-12 12:48:51.609+01	SHORTS-L	\N	\N	\N	\N	\N	\N	\N	\N	t	L	L	\N	\N
iitem_01KHR06APK6TG2AGKH6GQS50E0	2026-02-18 10:09:41.716+01	2026-03-12 12:48:51.649+01	2026-03-12 12:48:51.609+01	SHORTS-XL	\N	\N	\N	\N	\N	\N	\N	\N	t	XL	XL	\N	\N
iitem_01KHR06APKYFVTBQCH499WTJ13	2026-02-18 10:09:41.716+01	2026-03-12 12:48:54.473+01	2026-03-12 12:48:54.473+01	SWEATPANTS-S	\N	\N	\N	\N	\N	\N	\N	\N	t	S	S	\N	\N
iitem_01KHR06APKRG3RC0PPE6T0FWMY	2026-02-18 10:09:41.716+01	2026-03-12 12:48:54.483+01	2026-03-12 12:48:54.473+01	SWEATPANTS-M	\N	\N	\N	\N	\N	\N	\N	\N	t	M	M	\N	\N
iitem_01KHR06APK8K6N9CJ1GGHFN6Q5	2026-02-18 10:09:41.716+01	2026-03-12 12:48:54.493+01	2026-03-12 12:48:54.473+01	SWEATPANTS-L	\N	\N	\N	\N	\N	\N	\N	\N	t	L	L	\N	\N
iitem_01KHR06APKJVEDC1BAN18HGJK5	2026-02-18 10:09:41.716+01	2026-03-12 12:48:54.501+01	2026-03-12 12:48:54.473+01	SWEATPANTS-XL	\N	\N	\N	\N	\N	\N	\N	\N	t	XL	XL	\N	\N
iitem_01KHR06APJ2G2SFDDQX6RC4WQN	2026-02-18 10:09:41.716+01	2026-03-12 12:48:57.518+01	2026-03-12 12:48:57.518+01	SWEATSHIRT-S	\N	\N	\N	\N	\N	\N	\N	\N	t	S	S	\N	\N
iitem_01KHR06APKVFFQYT0JKWC8GQ2S	2026-02-18 10:09:41.716+01	2026-03-12 12:48:57.527+01	2026-03-12 12:48:57.518+01	SWEATSHIRT-M	\N	\N	\N	\N	\N	\N	\N	\N	t	M	M	\N	\N
iitem_01KHR06APKKH2QFPTJ04KJ6D20	2026-02-18 10:09:41.716+01	2026-03-12 12:48:57.536+01	2026-03-12 12:48:57.518+01	SWEATSHIRT-L	\N	\N	\N	\N	\N	\N	\N	\N	t	L	L	\N	\N
iitem_01KHR06APKVC4S3PAJ73HT7PZM	2026-02-18 10:09:41.716+01	2026-03-12 12:48:57.544+01	2026-03-12 12:48:57.518+01	SWEATSHIRT-XL	\N	\N	\N	\N	\N	\N	\N	\N	t	XL	XL	\N	\N
iitem_01KHR06APJY2ST97MMCEHNRMXK	2026-02-18 10:09:41.716+01	2026-03-12 12:49:00.585+01	2026-03-12 12:49:00.585+01	SHIRT-S-BLACK	\N	\N	\N	\N	\N	\N	\N	\N	t	S / Black	S / Black	\N	\N
iitem_01KHR06APJ9AYB3JAFBB7YKE0E	2026-02-18 10:09:41.716+01	2026-03-12 12:49:00.591+01	2026-03-12 12:49:00.585+01	SHIRT-S-WHITE	\N	\N	\N	\N	\N	\N	\N	\N	t	S / White	S / White	\N	\N
iitem_01KHR06APJC2C16554MJ9DTDQ6	2026-02-18 10:09:41.716+01	2026-03-12 12:49:00.599+01	2026-03-12 12:49:00.585+01	SHIRT-M-BLACK	\N	\N	\N	\N	\N	\N	\N	\N	t	M / Black	M / Black	\N	\N
iitem_01KHR06APJGQ64AGY2EGPHXDAA	2026-02-18 10:09:41.716+01	2026-03-12 12:49:00.606+01	2026-03-12 12:49:00.585+01	SHIRT-M-WHITE	\N	\N	\N	\N	\N	\N	\N	\N	t	M / White	M / White	\N	\N
iitem_01KHR06APJJRGQP33GENPSVPF8	2026-02-18 10:09:41.716+01	2026-03-12 12:49:00.613+01	2026-03-12 12:49:00.585+01	SHIRT-L-BLACK	\N	\N	\N	\N	\N	\N	\N	\N	t	L / Black	L / Black	\N	\N
iitem_01KHR06APJSB6XFAPPWRWFCBH8	2026-02-18 10:09:41.716+01	2026-03-12 12:49:00.62+01	2026-03-12 12:49:00.585+01	SHIRT-L-WHITE	\N	\N	\N	\N	\N	\N	\N	\N	t	L / White	L / White	\N	\N
iitem_01KHR06APJTBYSW7ADMDNG6J1Z	2026-02-18 10:09:41.716+01	2026-03-12 12:49:00.629+01	2026-03-12 12:49:00.585+01	SHIRT-XL-BLACK	\N	\N	\N	\N	\N	\N	\N	\N	t	XL / Black	XL / Black	\N	\N
iitem_01KHR06APJ7CNMKTW0GYPQBPRM	2026-02-18 10:09:41.716+01	2026-03-12 12:49:00.635+01	2026-03-12 12:49:00.585+01	SHIRT-XL-WHITE	\N	\N	\N	\N	\N	\N	\N	\N	t	XL / White	XL / White	\N	\N
\.


--
-- Data for Name: inventory_level; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.inventory_level (id, created_at, updated_at, deleted_at, inventory_item_id, location_id, stocked_quantity, reserved_quantity, incoming_quantity, metadata, raw_stocked_quantity, raw_reserved_quantity, raw_incoming_quantity) FROM stdin;
ilev_01KKGVK5SVZETTDQ9TNV6JNQS9	2026-03-12 12:06:02.428+01	2026-03-12 12:06:28.413+01	\N	iitem_01KKGVC5HBVMHA9VMVGDF1R8VA	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000	0	0	\N	{"value": "1000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASFCVZS4SDPTRBGHM52	2026-02-18 10:09:41.808+01	2026-03-12 12:48:51.63+01	2026-03-12 12:48:51.609+01	iitem_01KHR06APKC29088K5TYZQAVM5	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASFNEGV6RN19W1CVS4W	2026-02-18 10:09:41.808+01	2026-03-12 12:48:51.639+01	2026-03-12 12:48:51.609+01	iitem_01KHR06APKCAZ95GRV0120DPBA	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASF27RXPP211KTK58QV	2026-02-18 10:09:41.808+01	2026-03-12 12:48:51.648+01	2026-03-12 12:48:51.609+01	iitem_01KHR06APKT9XXMAWM2VGRXZAZ	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASFW88GG1YN1GVZK19X	2026-02-18 10:09:41.808+01	2026-03-12 12:48:51.657+01	2026-03-12 12:48:51.609+01	iitem_01KHR06APK6TG2AGKH6GQS50E0	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASF0TNFKMHSMS0BQFDA	2026-02-18 10:09:41.808+01	2026-03-12 12:48:54.483+01	2026-03-12 12:48:54.473+01	iitem_01KHR06APKYFVTBQCH499WTJ13	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASFBDAHTY1JEYP2QRW9	2026-02-18 10:09:41.808+01	2026-03-12 12:48:54.493+01	2026-03-12 12:48:54.473+01	iitem_01KHR06APKRG3RC0PPE6T0FWMY	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASF0K97XJ8CFJCF9VNX	2026-02-18 10:09:41.808+01	2026-03-12 12:48:54.501+01	2026-03-12 12:48:54.473+01	iitem_01KHR06APK8K6N9CJ1GGHFN6Q5	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASF0YQGN4MK2ATV0HZV	2026-02-18 10:09:41.808+01	2026-03-12 12:48:54.51+01	2026-03-12 12:48:54.473+01	iitem_01KHR06APKJVEDC1BAN18HGJK5	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASE2VMHDW8TAQYCM0EA	2026-02-18 10:09:41.807+01	2026-03-12 12:48:57.526+01	2026-03-12 12:48:57.518+01	iitem_01KHR06APJ2G2SFDDQX6RC4WQN	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASFQN4DCYCEH3270D8F	2026-02-18 10:09:41.808+01	2026-03-12 12:48:57.535+01	2026-03-12 12:48:57.518+01	iitem_01KHR06APKVFFQYT0JKWC8GQ2S	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASFWZQGNJ1EQPK793MD	2026-02-18 10:09:41.808+01	2026-03-12 12:48:57.544+01	2026-03-12 12:48:57.518+01	iitem_01KHR06APKKH2QFPTJ04KJ6D20	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASFY4WHNNG12FPC4XRY	2026-02-18 10:09:41.808+01	2026-03-12 12:48:57.553+01	2026-03-12 12:48:57.518+01	iitem_01KHR06APKVC4S3PAJ73HT7PZM	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASEH9PYMMACHF7S16KX	2026-02-18 10:09:41.808+01	2026-03-12 12:49:00.591+01	2026-03-12 12:49:00.585+01	iitem_01KHR06APJY2ST97MMCEHNRMXK	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASEXNAMYP4PP7V8V2NN	2026-02-18 10:09:41.808+01	2026-03-12 12:49:00.599+01	2026-03-12 12:49:00.585+01	iitem_01KHR06APJ9AYB3JAFBB7YKE0E	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASEMT1SNAWYXYVZWPET	2026-02-18 10:09:41.808+01	2026-03-12 12:49:00.606+01	2026-03-12 12:49:00.585+01	iitem_01KHR06APJC2C16554MJ9DTDQ6	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASEB9TCXVSWR6VGS0EJ	2026-02-18 10:09:41.808+01	2026-03-12 12:49:00.613+01	2026-03-12 12:49:00.585+01	iitem_01KHR06APJGQ64AGY2EGPHXDAA	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASEDTXQSAG45G8C0NF5	2026-02-18 10:09:41.808+01	2026-03-12 12:49:00.619+01	2026-03-12 12:49:00.585+01	iitem_01KHR06APJJRGQP33GENPSVPF8	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASEZSETDT5FDDV4R3HN	2026-02-18 10:09:41.808+01	2026-03-12 12:49:00.628+01	2026-03-12 12:49:00.585+01	iitem_01KHR06APJSB6XFAPPWRWFCBH8	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASEG52G3Z0QADFEM03W	2026-02-18 10:09:41.808+01	2026-03-12 12:49:00.635+01	2026-03-12 12:49:00.585+01	iitem_01KHR06APJTBYSW7ADMDNG6J1Z	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
ilev_01KHR06ASE1CH3N0757EJE3RZF	2026-02-18 10:09:41.808+01	2026-03-12 12:49:00.642+01	2026-03-12 12:49:00.585+01	iitem_01KHR06APJ7CNMKTW0GYPQBPRM	sloc_01KHR06AECQ83WRB18QG1JFH8A	1000000	0	0	\N	{"value": "1000000", "precision": 20}	{"value": "0", "precision": 20}	{"value": "0", "precision": 20}
\.


--
-- Data for Name: invite; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.invite (id, email, accepted, token, expires_at, metadata, created_at, updated_at, deleted_at) FROM stdin;
invite_01KHR065HJR8GHYQSJCJX5RNK0	admin@medusa-test.com	f	eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6Imludml0ZV8wMUtIUjA2NUhKUjhHSFlRU0pDSlg1Uk5LMCIsImVtYWlsIjoiYWRtaW5AbWVkdXNhLXRlc3QuY29tIiwiaWF0IjoxNzcxNDA1Nzc2LCJleHAiOjE3NzE0OTIxNzYsImp0aSI6IjEzNDRjYzg4LWEyZmUtNDgyYi04YjMxLWQ0MmFjNDljZjFlMSJ9.KHrSyqZ7soKRFgzaQgMVf7QSNRlfytAO1KgEs5Z-3MA	2026-02-19 10:09:36.434+01	\N	2026-02-18 10:09:36.439+01	2026-02-18 10:15:58.54+01	2026-02-18 10:15:58.539+01
\.


--
-- Data for Name: link_module_migrations; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.link_module_migrations (id, table_name, link_descriptor, created_at) FROM stdin;
1	cart_payment_collection	{"toModel": "payment_collection", "toModule": "payment", "fromModel": "cart", "fromModule": "cart"}	2026-02-18 13:19:06.936092
2	cart_promotion	{"toModel": "promotions", "toModule": "promotion", "fromModel": "cart", "fromModule": "cart"}	2026-02-18 13:19:06.950772
3	customer_account_holder	{"toModel": "account_holder", "toModule": "payment", "fromModel": "customer", "fromModule": "customer"}	2026-02-18 13:19:06.958895
4	location_fulfillment_provider	{"toModel": "fulfillment_provider", "toModule": "fulfillment", "fromModel": "location", "fromModule": "stock_location"}	2026-02-18 13:19:06.966304
5	location_fulfillment_set	{"toModel": "fulfillment_set", "toModule": "fulfillment", "fromModel": "location", "fromModule": "stock_location"}	2026-02-18 13:19:06.97365
6	order_cart	{"toModel": "cart", "toModule": "cart", "fromModel": "order", "fromModule": "order"}	2026-02-18 13:19:06.981517
7	order_fulfillment	{"toModel": "fulfillments", "toModule": "fulfillment", "fromModel": "order", "fromModule": "order"}	2026-02-18 13:19:06.989397
8	order_payment_collection	{"toModel": "payment_collection", "toModule": "payment", "fromModel": "order", "fromModule": "order"}	2026-02-18 13:19:06.996754
9	order_promotion	{"toModel": "promotions", "toModule": "promotion", "fromModel": "order", "fromModule": "order"}	2026-02-18 13:19:07.004329
10	return_fulfillment	{"toModel": "fulfillments", "toModule": "fulfillment", "fromModel": "return", "fromModule": "order"}	2026-02-18 13:19:07.01189
11	product_sales_channel	{"toModel": "sales_channel", "toModule": "sales_channel", "fromModel": "product", "fromModule": "product"}	2026-02-18 13:19:07.019202
12	product_shipping_profile	{"toModel": "shipping_profile", "toModule": "fulfillment", "fromModel": "product", "fromModule": "product"}	2026-02-18 13:19:07.027643
13	product_variant_inventory_item	{"toModel": "inventory", "toModule": "inventory", "fromModel": "variant", "fromModule": "product"}	2026-02-18 13:19:07.035079
14	product_variant_price_set	{"toModel": "price_set", "toModule": "pricing", "fromModel": "variant", "fromModule": "product"}	2026-02-18 13:19:07.042423
15	publishable_api_key_sales_channel	{"toModel": "sales_channel", "toModule": "sales_channel", "fromModel": "api_key", "fromModule": "api_key"}	2026-02-18 13:19:07.050036
16	region_payment_provider	{"toModel": "payment_provider", "toModule": "payment", "fromModel": "region", "fromModule": "region"}	2026-02-18 13:19:07.058252
17	sales_channel_stock_location	{"toModel": "location", "toModule": "stock_location", "fromModel": "sales_channel", "fromModule": "sales_channel"}	2026-02-18 13:19:07.065839
18	shipping_option_price_set	{"toModel": "price_set", "toModule": "pricing", "fromModel": "shipping_option", "fromModule": "fulfillment"}	2026-02-18 13:19:07.073334
19	user_rbac_role	{"toModel": "rbac_role", "toModule": "rbac", "fromModel": "user", "fromModule": "user"}	2026-02-18 13:19:07.080841
191	product_product_waste_waste_attribute	{"toModel": "waste_attribute", "toModule": "waste", "fromModel": "product", "fromModule": "product"}	2026-02-25 17:11:54.74703
\.


--
-- Data for Name: location_fulfillment_provider; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.location_fulfillment_provider (stock_location_id, fulfillment_provider_id, id, created_at, updated_at, deleted_at) FROM stdin;
sloc_01KHTRJSA0DT0CQCF4YHNCYQ8N	manual_manual	locfp_01KHTRJSAF967XANN8Y5FC9092	2026-02-19 11:54:24.598066+01	2026-02-19 11:54:24.598066+01	\N
sloc_01KHR06AECQ83WRB18QG1JFH8A	manual_manual	locfp_01KKGY534GWQXFVMS76MQ5ZAQJ	2026-02-18 10:09:41.466236+01	2026-02-18 10:09:41.466236+01	\N
\.


--
-- Data for Name: location_fulfillment_set; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.location_fulfillment_set (stock_location_id, fulfillment_set_id, id, created_at, updated_at, deleted_at) FROM stdin;
sloc_01KHR06AECQ83WRB18QG1JFH8A	fuset_01KHR06AF6XK8T5103FKW12SQG	locfs_01KKGY5366RXW6GF3E2HMFX629	2026-02-18 10:09:41.493421+01	2026-02-18 10:09:41.493421+01	\N
\.


--
-- Data for Name: mikro_orm_migrations; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.mikro_orm_migrations (id, name, executed_at) FROM stdin;
1	Migration20240307161216	2026-02-18 08:49:00.728018+01
2	Migration20241210073813	2026-02-18 08:49:00.728018+01
3	Migration20250106142624	2026-02-18 08:49:00.728018+01
4	Migration20250120110820	2026-02-18 08:49:00.728018+01
5	Migration20240307132720	2026-02-18 08:49:00.873427+01
6	Migration20240719123015	2026-02-18 08:49:00.873427+01
7	Migration20241213063611	2026-02-18 08:49:00.873427+01
8	Migration20251010131115	2026-02-18 08:49:00.873427+01
9	InitialSetup20240401153642	2026-02-18 08:49:01.042758+01
10	Migration20240601111544	2026-02-18 08:49:01.042758+01
11	Migration202408271511	2026-02-18 08:49:01.042758+01
12	Migration20241122120331	2026-02-18 08:49:01.042758+01
13	Migration20241125090957	2026-02-18 08:49:01.042758+01
14	Migration20250411073236	2026-02-18 08:49:01.042758+01
15	Migration20250516081326	2026-02-18 08:49:01.042758+01
16	Migration20250910154539	2026-02-18 08:49:01.042758+01
17	Migration20250911092221	2026-02-18 08:49:01.042758+01
18	Migration20250929204438	2026-02-18 08:49:01.042758+01
19	Migration20251008132218	2026-02-18 08:49:01.042758+01
20	Migration20251011090511	2026-02-18 08:49:01.042758+01
21	Migration20230929122253	2026-02-18 08:49:01.3624+01
22	Migration20240322094407	2026-02-18 08:49:01.3624+01
23	Migration20240322113359	2026-02-18 08:49:01.3624+01
24	Migration20240322120125	2026-02-18 08:49:01.3624+01
25	Migration20240626133555	2026-02-18 08:49:01.3624+01
26	Migration20240704094505	2026-02-18 08:49:01.3624+01
27	Migration20241127114534	2026-02-18 08:49:01.3624+01
28	Migration20241127223829	2026-02-18 08:49:01.3624+01
29	Migration20241128055359	2026-02-18 08:49:01.3624+01
30	Migration20241212190401	2026-02-18 08:49:01.3624+01
31	Migration20250408145122	2026-02-18 08:49:01.3624+01
32	Migration20250409122219	2026-02-18 08:49:01.3624+01
33	Migration20251009110625	2026-02-18 08:49:01.3624+01
34	Migration20251112192723	2026-02-18 08:49:01.3624+01
35	Migration20240227120221	2026-02-18 08:49:01.682713+01
36	Migration20240617102917	2026-02-18 08:49:01.682713+01
37	Migration20240624153824	2026-02-18 08:49:01.682713+01
38	Migration20241211061114	2026-02-18 08:49:01.682713+01
39	Migration20250113094144	2026-02-18 08:49:01.682713+01
40	Migration20250120110700	2026-02-18 08:49:01.682713+01
41	Migration20250226130616	2026-02-18 08:49:01.682713+01
42	Migration20250508081510	2026-02-18 08:49:01.682713+01
43	Migration20250828075407	2026-02-18 08:49:01.682713+01
44	Migration20250909083125	2026-02-18 08:49:01.682713+01
45	Migration20250916120552	2026-02-18 08:49:01.682713+01
46	Migration20250917143818	2026-02-18 08:49:01.682713+01
47	Migration20250919122137	2026-02-18 08:49:01.682713+01
48	Migration20251006000000	2026-02-18 08:49:01.682713+01
49	Migration20251015113934	2026-02-18 08:49:01.682713+01
50	Migration20251107050148	2026-02-18 08:49:01.682713+01
51	Migration20240124154000	2026-02-18 08:49:01.96215+01
52	Migration20240524123112	2026-02-18 08:49:01.96215+01
53	Migration20240602110946	2026-02-18 08:49:01.96215+01
54	Migration20241211074630	2026-02-18 08:49:01.96215+01
55	Migration20251010130829	2026-02-18 08:49:01.96215+01
56	Migration20240115152146	2026-02-18 08:49:02.283005+01
57	Migration20240222170223	2026-02-18 08:49:02.376356+01
58	Migration20240831125857	2026-02-18 08:49:02.376356+01
59	Migration20241106085918	2026-02-18 08:49:02.376356+01
60	Migration20241205095237	2026-02-18 08:49:02.376356+01
61	Migration20241216183049	2026-02-18 08:49:02.376356+01
62	Migration20241218091938	2026-02-18 08:49:02.376356+01
63	Migration20250120115059	2026-02-18 08:49:02.376356+01
64	Migration20250212131240	2026-02-18 08:49:02.376356+01
65	Migration20250326151602	2026-02-18 08:49:02.376356+01
66	Migration20250508081553	2026-02-18 08:49:02.376356+01
67	Migration20251017153909	2026-02-18 08:49:02.376356+01
68	Migration20251208130704	2026-02-18 08:49:02.376356+01
69	Migration20240205173216	2026-02-18 08:49:02.594222+01
70	Migration20240624200006	2026-02-18 08:49:02.594222+01
71	Migration20250120110744	2026-02-18 08:49:02.594222+01
72	InitialSetup20240221144943	2026-02-18 08:49:02.702269+01
73	Migration20240604080145	2026-02-18 08:49:02.702269+01
74	Migration20241205122700	2026-02-18 08:49:02.702269+01
75	Migration20251015123842	2026-02-18 08:49:02.702269+01
76	InitialSetup20240227075933	2026-02-18 08:49:02.822227+01
77	Migration20240621145944	2026-02-18 08:49:02.822227+01
78	Migration20241206083313	2026-02-18 08:49:02.822227+01
79	Migration20251202184737	2026-02-18 08:49:02.822227+01
80	Migration20251212161429	2026-02-18 08:49:02.822227+01
81	Migration20240227090331	2026-02-18 08:49:02.953057+01
82	Migration20240710135844	2026-02-18 08:49:02.953057+01
83	Migration20240924114005	2026-02-18 08:49:02.953057+01
84	Migration20241212052837	2026-02-18 08:49:02.953057+01
85	InitialSetup20240228133303	2026-02-18 08:49:03.07948+01
86	Migration20240624082354	2026-02-18 08:49:03.07948+01
87	Migration20240225134525	2026-02-18 08:49:03.178739+01
88	Migration20240806072619	2026-02-18 08:49:03.178739+01
89	Migration20241211151053	2026-02-18 08:49:03.178739+01
90	Migration20250115160517	2026-02-18 08:49:03.178739+01
91	Migration20250120110552	2026-02-18 08:49:03.178739+01
92	Migration20250123122334	2026-02-18 08:49:03.178739+01
93	Migration20250206105639	2026-02-18 08:49:03.178739+01
94	Migration20250207132723	2026-02-18 08:49:03.178739+01
95	Migration20250625084134	2026-02-18 08:49:03.178739+01
96	Migration20250924135437	2026-02-18 08:49:03.178739+01
97	Migration20250929124701	2026-02-18 08:49:03.178739+01
98	Migration20240219102530	2026-02-18 08:49:03.382215+01
99	Migration20240604100512	2026-02-18 08:49:03.382215+01
100	Migration20240715102100	2026-02-18 08:49:03.382215+01
101	Migration20240715174100	2026-02-18 08:49:03.382215+01
102	Migration20240716081800	2026-02-18 08:49:03.382215+01
103	Migration20240801085921	2026-02-18 08:49:03.382215+01
104	Migration20240821164505	2026-02-18 08:49:03.382215+01
105	Migration20240821170920	2026-02-18 08:49:03.382215+01
106	Migration20240827133639	2026-02-18 08:49:03.382215+01
107	Migration20240902195921	2026-02-18 08:49:03.382215+01
108	Migration20240913092514	2026-02-18 08:49:03.382215+01
109	Migration20240930122627	2026-02-18 08:49:03.382215+01
110	Migration20241014142943	2026-02-18 08:49:03.382215+01
111	Migration20241106085223	2026-02-18 08:49:03.382215+01
112	Migration20241129124827	2026-02-18 08:49:03.382215+01
113	Migration20241217162224	2026-02-18 08:49:03.382215+01
114	Migration20250326151554	2026-02-18 08:49:03.382215+01
115	Migration20250522181137	2026-02-18 08:49:03.382215+01
116	Migration20250702095353	2026-02-18 08:49:03.382215+01
117	Migration20250704120229	2026-02-18 08:49:03.382215+01
118	Migration20250910130000	2026-02-18 08:49:03.382215+01
119	Migration20251016160403	2026-02-18 08:49:03.382215+01
120	Migration20251016182939	2026-02-18 08:49:03.382215+01
121	Migration20251017155709	2026-02-18 08:49:03.382215+01
122	Migration20251114100559	2026-02-18 08:49:03.382215+01
123	Migration20251125164002	2026-02-18 08:49:03.382215+01
124	Migration20251210112909	2026-02-18 08:49:03.382215+01
125	Migration20251210112924	2026-02-18 08:49:03.382215+01
126	Migration20251225120947	2026-02-18 08:49:03.382215+01
127	Migration20250717162007	2026-02-18 08:49:03.937231+01
128	Migration20240205025928	2026-02-18 08:49:04.030011+01
129	Migration20240529080336	2026-02-18 08:49:04.030011+01
130	Migration20241202100304	2026-02-18 08:49:04.030011+01
131	Migration20240214033943	2026-02-18 08:49:04.304357+01
132	Migration20240703095850	2026-02-18 08:49:04.304357+01
133	Migration20241202103352	2026-02-18 08:49:04.304357+01
134	Migration20240311145700_InitialSetupMigration	2026-02-18 08:49:04.439227+01
135	Migration20240821170957	2026-02-18 08:49:04.439227+01
136	Migration20240917161003	2026-02-18 08:49:04.439227+01
137	Migration20241217110416	2026-02-18 08:49:04.439227+01
138	Migration20250113122235	2026-02-18 08:49:04.439227+01
139	Migration20250120115002	2026-02-18 08:49:04.439227+01
140	Migration20250822130931	2026-02-18 08:49:04.439227+01
141	Migration20250825132614	2026-02-18 08:49:04.439227+01
142	Migration20251114133146	2026-02-18 08:49:04.439227+01
143	Migration20240509083918_InitialSetupMigration	2026-02-18 08:49:04.884822+01
144	Migration20240628075401	2026-02-18 08:49:04.884822+01
145	Migration20240830094712	2026-02-18 08:49:04.884822+01
146	Migration20250120110514	2026-02-18 08:49:04.884822+01
147	Migration20251028172715	2026-02-18 08:49:04.884822+01
148	Migration20251121123942	2026-02-18 08:49:04.884822+01
149	Migration20251121150408	2026-02-18 08:49:04.884822+01
150	Migration20231228143900	2026-02-18 08:49:05.357182+01
151	Migration20241206101446	2026-02-18 08:49:05.357182+01
152	Migration20250128174331	2026-02-18 08:49:05.357182+01
153	Migration20250505092459	2026-02-18 08:49:05.357182+01
154	Migration20250819104213	2026-02-18 08:49:05.357182+01
155	Migration20250819110924	2026-02-18 08:49:05.357182+01
156	Migration20250908080305	2026-02-18 08:49:05.357182+01
157	Migration20260219102229	2026-02-19 11:22:41.259862+01
158	Migration20260219120000	2026-02-19 13:52:13.928099+01
159	Migration20260219150000	2026-02-20 06:54:38.685388+01
160	Migration20260219160000	2026-02-20 07:58:33.634228+01
161	Migration20260219170000	2026-02-20 11:29:46.745401+01
162	Migration20260220100000	2026-02-25 06:25:46.783587+01
163	Migration20260219180000	2026-02-25 06:25:46.861126+01
164	Migration20260225100000	2026-02-25 06:54:07.248221+01
165	Migration20260224095835	2026-02-25 12:41:53.597681+01
166	Migration20260227113000	2026-03-02 05:47:51.648495+01
\.


--
-- Data for Name: notification; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.notification (id, "to", channel, template, data, trigger_type, resource_id, resource_type, receiver_id, original_notification_id, idempotency_key, external_id, provider_id, created_at, updated_at, deleted_at, status, "from", provider_data) FROM stdin;
\.


--
-- Data for Name: notification_provider; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.notification_provider (id, handle, name, is_enabled, channels, created_at, updated_at, deleted_at) FROM stdin;
local	local	local	t	{email}	2026-02-18 08:49:10.254+01	2026-02-24 10:16:21.736+01	\N
\.


--
-- Data for Name: order; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public."order" (id, region_id, display_id, customer_id, version, sales_channel_id, status, is_draft_order, email, currency_code, shipping_address_id, billing_address_id, no_notification, metadata, created_at, updated_at, deleted_at, canceled_at, custom_display_id, locale) FROM stdin;
\.


--
-- Data for Name: order_address; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_address (id, customer_id, company, first_name, last_name, address_1, address_2, city, country_code, province, postal_code, phone, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_cart; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_cart (order_id, cart_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_change; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_change (id, order_id, version, description, status, internal_note, created_by, requested_by, requested_at, confirmed_by, confirmed_at, declined_by, declined_reason, metadata, declined_at, canceled_by, canceled_at, created_at, updated_at, change_type, deleted_at, return_id, claim_id, exchange_id, carry_over_promotions) FROM stdin;
\.


--
-- Data for Name: order_change_action; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_change_action (id, order_id, version, ordering, order_change_id, reference, reference_id, action, details, amount, raw_amount, internal_note, applied, created_at, updated_at, deleted_at, return_id, claim_id, exchange_id) FROM stdin;
\.


--
-- Data for Name: order_claim; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_claim (id, order_id, return_id, order_version, display_id, type, no_notification, refund_amount, raw_refund_amount, metadata, created_at, updated_at, deleted_at, canceled_at, created_by) FROM stdin;
\.


--
-- Data for Name: order_claim_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_claim_item (id, claim_id, item_id, is_additional_item, reason, quantity, raw_quantity, note, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_claim_item_image; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_claim_item_image (id, claim_item_id, url, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_credit_line; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_credit_line (id, order_id, reference, reference_id, amount, raw_amount, metadata, created_at, updated_at, deleted_at, version) FROM stdin;
\.


--
-- Data for Name: order_exchange; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_exchange (id, order_id, return_id, order_version, display_id, no_notification, allow_backorder, difference_due, raw_difference_due, metadata, created_at, updated_at, deleted_at, canceled_at, created_by) FROM stdin;
\.


--
-- Data for Name: order_exchange_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_exchange_item (id, exchange_id, item_id, quantity, raw_quantity, note, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_fulfillment; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_fulfillment (order_id, fulfillment_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_item (id, order_id, version, item_id, quantity, raw_quantity, fulfilled_quantity, raw_fulfilled_quantity, shipped_quantity, raw_shipped_quantity, return_requested_quantity, raw_return_requested_quantity, return_received_quantity, raw_return_received_quantity, return_dismissed_quantity, raw_return_dismissed_quantity, written_off_quantity, raw_written_off_quantity, metadata, created_at, updated_at, deleted_at, delivered_quantity, raw_delivered_quantity, unit_price, raw_unit_price, compare_at_unit_price, raw_compare_at_unit_price) FROM stdin;
\.


--
-- Data for Name: order_line_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_line_item (id, totals_id, title, subtitle, thumbnail, variant_id, product_id, product_title, product_description, product_subtitle, product_type, product_collection, product_handle, variant_sku, variant_barcode, variant_title, variant_option_values, requires_shipping, is_discountable, is_tax_inclusive, compare_at_unit_price, raw_compare_at_unit_price, unit_price, raw_unit_price, metadata, created_at, updated_at, deleted_at, is_custom_price, product_type_id, is_giftcard) FROM stdin;
\.


--
-- Data for Name: order_line_item_adjustment; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_line_item_adjustment (id, description, promotion_id, code, amount, raw_amount, provider_id, created_at, updated_at, item_id, deleted_at, is_tax_inclusive, version) FROM stdin;
\.


--
-- Data for Name: order_line_item_tax_line; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_line_item_tax_line (id, description, tax_rate_id, code, rate, raw_rate, provider_id, created_at, updated_at, item_id, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_payment_collection; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_payment_collection (order_id, payment_collection_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_promotion; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_promotion (order_id, promotion_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_shipping; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_shipping (id, order_id, version, shipping_method_id, created_at, updated_at, deleted_at, return_id, claim_id, exchange_id) FROM stdin;
\.


--
-- Data for Name: order_shipping_method; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_shipping_method (id, name, description, amount, raw_amount, is_tax_inclusive, shipping_option_id, data, metadata, created_at, updated_at, deleted_at, is_custom_amount) FROM stdin;
\.


--
-- Data for Name: order_shipping_method_adjustment; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_shipping_method_adjustment (id, description, promotion_id, code, amount, raw_amount, provider_id, created_at, updated_at, shipping_method_id, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_shipping_method_tax_line; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_shipping_method_tax_line (id, description, tax_rate_id, code, rate, raw_rate, provider_id, created_at, updated_at, shipping_method_id, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_summary; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_summary (id, order_id, version, totals, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: order_transaction; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.order_transaction (id, order_id, version, amount, raw_amount, currency_code, reference, reference_id, created_at, updated_at, deleted_at, return_id, claim_id, exchange_id) FROM stdin;
\.


--
-- Data for Name: payment; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.payment (id, amount, raw_amount, currency_code, provider_id, data, created_at, updated_at, deleted_at, captured_at, canceled_at, payment_collection_id, payment_session_id, metadata) FROM stdin;
\.


--
-- Data for Name: payment_collection; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.payment_collection (id, currency_code, amount, raw_amount, authorized_amount, raw_authorized_amount, captured_amount, raw_captured_amount, refunded_amount, raw_refunded_amount, created_at, updated_at, deleted_at, completed_at, status, metadata) FROM stdin;
\.


--
-- Data for Name: payment_collection_payment_providers; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.payment_collection_payment_providers (payment_collection_id, payment_provider_id) FROM stdin;
\.


--
-- Data for Name: payment_provider; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.payment_provider (id, is_enabled, created_at, updated_at, deleted_at) FROM stdin;
pp_system_default	t	2026-02-18 08:49:10.248+01	2026-02-18 08:49:10.248+01	\N
\.


--
-- Data for Name: payment_session; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.payment_session (id, currency_code, amount, raw_amount, provider_id, data, context, status, authorized_at, payment_collection_id, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: price; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.price (id, title, price_set_id, currency_code, raw_amount, rules_count, created_at, updated_at, deleted_at, price_list_id, amount, min_quantity, max_quantity, raw_min_quantity, raw_max_quantity) FROM stdin;
price_01KHR06AHAZ3Y0DFEA61GGZNEF	\N	pset_01KHR06AHBHW0TCAFWJ4ANFZHE	usd	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.548+01	2026-02-18 10:09:41.548+01	\N	\N	10	\N	\N	\N	\N
price_01KHR06AHBJ0SRB4KRBN9QRZYN	\N	pset_01KHR06AHBHW0TCAFWJ4ANFZHE	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.548+01	2026-02-18 10:09:41.548+01	\N	\N	10	\N	\N	\N	\N
price_01KHR06AHBKXT1VJE6NHDY06MT	\N	pset_01KHR06AHBHW0TCAFWJ4ANFZHE	eur	{"value": "10", "precision": 20}	1	2026-02-18 10:09:41.548+01	2026-02-18 10:09:41.548+01	\N	\N	10	\N	\N	\N	\N
price_01KHR06AHB3FFS4HK20CG71MGZ	\N	pset_01KHR06AHCM19DJZ359VCGWRGB	usd	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.548+01	2026-02-18 10:09:41.549+01	\N	\N	10	\N	\N	\N	\N
price_01KHR06AHBAMX6T5EHPCP0HWB3	\N	pset_01KHR06AHCM19DJZ359VCGWRGB	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.549+01	2026-02-18 10:09:41.549+01	\N	\N	10	\N	\N	\N	\N
price_01KHR06AHC893WZ25C0N0TN2AV	\N	pset_01KHR06AHCM19DJZ359VCGWRGB	eur	{"value": "10", "precision": 20}	1	2026-02-18 10:09:41.549+01	2026-02-18 10:09:41.549+01	\N	\N	10	\N	\N	\N	\N
price_01KHR06AQGRZ4YZE3WN8HZYWPN	\N	pset_01KHR06AQGEGDFFSRPYHDTESZ6	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:54.568+01	2026-03-12 12:48:54.556+01	\N	10	\N	\N	\N	\N
price_01KHR06AQGGEDYNTY5DWSR24GQ	\N	pset_01KHR06AQGEGDFFSRPYHDTESZ6	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:54.568+01	2026-03-12 12:48:54.556+01	\N	15	\N	\N	\N	\N
price_01KHR06AQG9DATXJN48HKBD7ZQ	\N	pset_01KHR06AQGZENWAGB6094JW27K	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:54.583+01	2026-03-12 12:48:54.556+01	\N	10	\N	\N	\N	\N
price_01KHR06AQG0BYMFRS5FJAY36CM	\N	pset_01KHR06AQGZENWAGB6094JW27K	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:54.583+01	2026-03-12 12:48:54.556+01	\N	15	\N	\N	\N	\N
price_01KHR06AQGPDGTP4CS7JYZ28CZ	\N	pset_01KHR06AQHEAAH1F99DBC9XWQK	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:54.596+01	2026-03-12 12:48:54.556+01	\N	10	\N	\N	\N	\N
price_01KHR06AQH7T2YED7JYCMW0JWH	\N	pset_01KHR06AQHEAAH1F99DBC9XWQK	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:54.596+01	2026-03-12 12:48:54.556+01	\N	15	\N	\N	\N	\N
price_01KHR06AQFARNKBPS15TM52WN8	\N	pset_01KHR06AQFM5K3BXWRY6KKTK2S	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:57.618+01	2026-03-12 12:48:57.605+01	\N	10	\N	\N	\N	\N
price_01KHR06AQFKY676T6Q6P7SZGV3	\N	pset_01KHR06AQFM5K3BXWRY6KKTK2S	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:57.618+01	2026-03-12 12:48:57.605+01	\N	15	\N	\N	\N	\N
price_01KHR06AQF89TBAS00DYTMF1VJ	\N	pset_01KHR06AQG0BEGZJ6CDCHJA23R	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:57.638+01	2026-03-12 12:48:57.605+01	\N	10	\N	\N	\N	\N
price_01KHR06AQFBYENGZRH463VR8YW	\N	pset_01KHR06AQG0BEGZJ6CDCHJA23R	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:57.638+01	2026-03-12 12:48:57.605+01	\N	15	\N	\N	\N	\N
price_01KHR06AQGF3HM05N7M04DTHWM	\N	pset_01KHR06AQGQ10J73BPVQHNVJWE	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:57.651+01	2026-03-12 12:48:57.605+01	\N	10	\N	\N	\N	\N
price_01KHR06AQGD0S730JXFWSREPXM	\N	pset_01KHR06AQGQ10J73BPVQHNVJWE	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:57.651+01	2026-03-12 12:48:57.605+01	\N	15	\N	\N	\N	\N
price_01KHR06AQGE8H4N9MFT5MGQAAB	\N	pset_01KHR06AQG51FZ221Z2W7NG8NN	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:57.667+01	2026-03-12 12:48:57.605+01	\N	10	\N	\N	\N	\N
price_01KHR06AQGES4HGGF7BC3QQDFB	\N	pset_01KHR06AQG51FZ221Z2W7NG8NN	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:57.667+01	2026-03-12 12:48:57.605+01	\N	15	\N	\N	\N	\N
price_01KHR06AQDBEX850V3C3P69MRT	\N	pset_01KHR06AQDCW70NBSJNFTJZY4E	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.71+01	2026-03-12 12:49:00.699+01	\N	10	\N	\N	\N	\N
price_01KHR06AQDXRTZ1HVH8MMDQQ98	\N	pset_01KHR06AQDCW70NBSJNFTJZY4E	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.71+01	2026-03-12 12:49:00.699+01	\N	15	\N	\N	\N	\N
price_01KHR06AQEJEF913DAZSSJP9KP	\N	pset_01KHR06AQEREP9BVCV2H537WTN	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.725+01	2026-03-12 12:49:00.699+01	\N	10	\N	\N	\N	\N
price_01KHR06AQE06341C6K7AG9H10V	\N	pset_01KHR06AQEREP9BVCV2H537WTN	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.725+01	2026-03-12 12:49:00.699+01	\N	15	\N	\N	\N	\N
price_01KHR06AQEPVGHP8MXA63QVNWX	\N	pset_01KHR06AQE2AV8XF24CH37XAXE	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.735+01	2026-03-12 12:49:00.699+01	\N	10	\N	\N	\N	\N
price_01KHR06AQEEW7WTN70VXQDPSD3	\N	pset_01KHR06AQE2AV8XF24CH37XAXE	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.735+01	2026-03-12 12:49:00.699+01	\N	15	\N	\N	\N	\N
price_01KHR06AQE659M11VAWF15XS9X	\N	pset_01KHR06AQE2NH6WB4FEFBF4Q8Z	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.748+01	2026-03-12 12:49:00.699+01	\N	10	\N	\N	\N	\N
price_01KKGVC5J9KKD0EWGMG02GBBGJ	\N	pset_01KKGVC5JANNFM1NR09EZBXJG4	eur	{"value": "35", "precision": 20}	0	2026-03-12 12:02:12.81+01	2026-03-12 12:02:12.81+01	\N	\N	35	\N	\N	\N	\N
price_01KHR06AQH1K75NT3QC2QAW78Z	\N	pset_01KHR06AQHC33V82YKHCDD957V	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:51.746+01	2026-03-12 12:48:51.73+01	\N	10	\N	\N	\N	\N
price_01KHR06AQHPZC48NH91JFDD7M4	\N	pset_01KHR06AQHC33V82YKHCDD957V	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:51.746+01	2026-03-12 12:48:51.73+01	\N	15	\N	\N	\N	\N
price_01KHR06AQH8SNH3D02MRY6TETX	\N	pset_01KHR06AQHTM58ZH615FTZ4861	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:51.771+01	2026-03-12 12:48:51.73+01	\N	10	\N	\N	\N	\N
price_01KHR06AQHTH40E0JETYMECRH2	\N	pset_01KHR06AQHTM58ZH615FTZ4861	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:51.772+01	2026-03-12 12:48:51.73+01	\N	15	\N	\N	\N	\N
price_01KHR06AQHN9GBTD14RMZ8PYHH	\N	pset_01KHR06AQHY287CW6BFK1VE83F	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:51.785+01	2026-03-12 12:48:51.73+01	\N	10	\N	\N	\N	\N
price_01KHR06AQH64SRN55PGRBNPM01	\N	pset_01KHR06AQHY287CW6BFK1VE83F	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:51.785+01	2026-03-12 12:48:51.73+01	\N	15	\N	\N	\N	\N
price_01KHR06AQHHYJMYNPYTFV8C0QW	\N	pset_01KHR06AQJRVY5H5FFZ8R4BFKE	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:51.8+01	2026-03-12 12:48:51.73+01	\N	10	\N	\N	\N	\N
price_01KHR06AQJX6SXZRK9W36BRXF4	\N	pset_01KHR06AQJRVY5H5FFZ8R4BFKE	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:51.8+01	2026-03-12 12:48:51.73+01	\N	15	\N	\N	\N	\N
price_01KHR06AQH4JQ62CKNS8B9F73H	\N	pset_01KHR06AQHD6GHPANNCMJQDH7G	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:54.609+01	2026-03-12 12:48:54.556+01	\N	10	\N	\N	\N	\N
price_01KHR06AQH21A2AAEA8ZTYQTDD	\N	pset_01KHR06AQHD6GHPANNCMJQDH7G	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:48:54.609+01	2026-03-12 12:48:54.556+01	\N	15	\N	\N	\N	\N
price_01KHR06AQEJBZKPMWJPR1EGB5H	\N	pset_01KHR06AQE2NH6WB4FEFBF4Q8Z	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.748+01	2026-03-12 12:49:00.699+01	\N	15	\N	\N	\N	\N
price_01KHR06AQEBT2PPP9ZW6DD10PM	\N	pset_01KHR06AQE44WW72T7F88ZAVXW	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.762+01	2026-03-12 12:49:00.699+01	\N	10	\N	\N	\N	\N
price_01KHR06AQEH53WP7YPQJDQVVE1	\N	pset_01KHR06AQE44WW72T7F88ZAVXW	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.762+01	2026-03-12 12:49:00.699+01	\N	15	\N	\N	\N	\N
price_01KHR06AQF6VJGDT8SERF28PQ1	\N	pset_01KHR06AQFYBFXF1VK1JSGGEB7	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.772+01	2026-03-12 12:49:00.699+01	\N	10	\N	\N	\N	\N
price_01KHR06AQFNKPSQXMQJXN51DD9	\N	pset_01KHR06AQFYBFXF1VK1JSGGEB7	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.772+01	2026-03-12 12:49:00.699+01	\N	15	\N	\N	\N	\N
price_01KHR06AQFHRT4NC8A6T5NPN7W	\N	pset_01KHR06AQF7GYACQX11WYK2N8S	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.785+01	2026-03-12 12:49:00.699+01	\N	10	\N	\N	\N	\N
price_01KHR06AQFEM0A2HMDH4RR4PB6	\N	pset_01KHR06AQF7GYACQX11WYK2N8S	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.785+01	2026-03-12 12:49:00.699+01	\N	15	\N	\N	\N	\N
price_01KHR06AQFGKWJ42Y0KRSDTWHD	\N	pset_01KHR06AQFEQG6KMK7RMFP43EX	eur	{"value": "10", "precision": 20}	0	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.798+01	2026-03-12 12:49:00.699+01	\N	10	\N	\N	\N	\N
price_01KHR06AQFB2HC4Z6QHD2VVT8F	\N	pset_01KHR06AQFEQG6KMK7RMFP43EX	usd	{"value": "15", "precision": 20}	0	2026-02-18 10:09:41.747+01	2026-03-12 12:49:00.798+01	2026-03-12 12:49:00.699+01	\N	15	\N	\N	\N	\N
price_01KKGY53BCY6B4RXX6VQEHGZ4M	\N	pset_01KKGY53BD8F54YD24DKQWB921	eur	{"value": "3000", "precision": 20}	0	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	\N	3000	\N	\N	\N	\N
price_01KKGY53BDA1QMXEJ3WFF7JS6K	\N	pset_01KKGY53BD8F54YD24DKQWB921	eur	{"value": "3000", "precision": 20}	1	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	\N	3000	\N	\N	\N	\N
price_01KKGY53BD8NDX4CMNN61YNZZF	\N	pset_01KKGY53BDQA61GXCSTZADDE49	eur	{"value": "5000", "precision": 20}	0	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	\N	5000	\N	\N	\N	\N
price_01KKGY53BDCDHJ6DVPWW3M6Z49	\N	pset_01KKGY53BDQA61GXCSTZADDE49	eur	{"value": "5000", "precision": 20}	1	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	\N	5000	\N	\N	\N	\N
price_01KKGY53BDNRH30X99Z3YHM842	\N	pset_01KKGY53BERN5R1JVSN24024VX	eur	{"value": "12000", "precision": 20}	0	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	\N	12000	\N	\N	\N	\N
price_01KKGY53BEAK12DH2H95XPFWWB	\N	pset_01KKGY53BERN5R1JVSN24024VX	eur	{"value": "12000", "precision": 20}	1	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	\N	12000	\N	\N	\N	\N
\.


--
-- Data for Name: price_list; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.price_list (id, status, starts_at, ends_at, rules_count, title, description, type, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: price_list_rule; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.price_list_rule (id, price_list_id, created_at, updated_at, deleted_at, value, attribute) FROM stdin;
\.


--
-- Data for Name: price_preference; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.price_preference (id, attribute, value, is_tax_inclusive, created_at, updated_at, deleted_at) FROM stdin;
prpref_01KHR065GH3SFQTGEBERGXPAFJ	currency_code	eur	f	2026-02-18 10:09:36.401+01	2026-02-18 10:09:36.401+01	\N
prpref_01KHR06ADMT1GTMDGE9NFW0EWK	region_id	reg_01KHR06ACFBR6CGN33WGPFPJ65	f	2026-02-18 10:09:41.429+01	2026-02-18 10:09:41.429+01	\N
prpref_01KJ4J4VEJ1K0X7Q01PHA0M41K	currency_code	usd	f	2026-02-23 07:14:20.882+01	2026-02-23 07:14:20.882+01	\N
\.


--
-- Data for Name: price_rule; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.price_rule (id, value, priority, price_id, created_at, updated_at, deleted_at, attribute, operator) FROM stdin;
prule_01KHR06AHBTPZ4PHND92ZN8BQY	reg_01KHR06ACFBR6CGN33WGPFPJ65	0	price_01KHR06AHBKXT1VJE6NHDY06MT	2026-02-18 10:09:41.548+01	2026-02-18 10:09:41.548+01	\N	region_id	eq
prule_01KHR06AHCKSM4GNNPRWP44AJW	reg_01KHR06ACFBR6CGN33WGPFPJ65	0	price_01KHR06AHC893WZ25C0N0TN2AV	2026-02-18 10:09:41.549+01	2026-02-18 10:09:41.549+01	\N	region_id	eq
prule_01KKGY53BC8HZJRJG4QXSVC7QV	reg_01KHR06ACFBR6CGN33WGPFPJ65	0	price_01KKGY53BDA1QMXEJ3WFF7JS6K	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	region_id	eq
prule_01KKGY53BDP6N4SYYG880DY168	reg_01KHR06ACFBR6CGN33WGPFPJ65	0	price_01KKGY53BDCDHJ6DVPWW3M6Z49	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	region_id	eq
prule_01KKGY53BEHYVMFZEEN7BKAQRP	reg_01KHR06ACFBR6CGN33WGPFPJ65	0	price_01KKGY53BEAK12DH2H95XPFWWB	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N	region_id	eq
\.


--
-- Data for Name: price_set; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.price_set (id, created_at, updated_at, deleted_at) FROM stdin;
pset_01KHR06AHBHW0TCAFWJ4ANFZHE	2026-02-18 10:09:41.548+01	2026-02-18 10:09:41.548+01	\N
pset_01KHR06AHCM19DJZ359VCGWRGB	2026-02-18 10:09:41.548+01	2026-02-18 10:09:41.548+01	\N
pset_01KHR3QA58EVW64NKCM68QH9YV	2026-02-18 11:11:23.944+01	2026-02-18 11:15:53.303+01	2026-02-18 11:15:53.303+01
pset_01KHR7D06V8PW2VRA3MZXCQPZJ	2026-02-18 12:15:40.379+01	2026-03-12 11:30:47.507+01	2026-03-12 11:30:47.506+01
pset_01KKGVC5JANNFM1NR09EZBXJG4	2026-03-12 12:02:12.81+01	2026-03-12 12:02:12.81+01	\N
pset_01KHR06AQHC33V82YKHCDD957V	2026-02-18 10:09:41.746+01	2026-03-12 12:48:51.73+01	2026-03-12 12:48:51.73+01
pset_01KHR06AQHTM58ZH615FTZ4861	2026-02-18 10:09:41.746+01	2026-03-12 12:48:51.765+01	2026-03-12 12:48:51.73+01
pset_01KHR06AQHY287CW6BFK1VE83F	2026-02-18 10:09:41.746+01	2026-03-12 12:48:51.778+01	2026-03-12 12:48:51.73+01
pset_01KHR06AQJRVY5H5FFZ8R4BFKE	2026-02-18 10:09:41.746+01	2026-03-12 12:48:51.793+01	2026-03-12 12:48:51.73+01
pset_01KHR06AQGEGDFFSRPYHDTESZ6	2026-02-18 10:09:41.746+01	2026-03-12 12:48:54.556+01	2026-03-12 12:48:54.556+01
pset_01KHR06AQGZENWAGB6094JW27K	2026-02-18 10:09:41.746+01	2026-03-12 12:48:54.574+01	2026-03-12 12:48:54.556+01
pset_01KHR06AQHEAAH1F99DBC9XWQK	2026-02-18 10:09:41.746+01	2026-03-12 12:48:54.591+01	2026-03-12 12:48:54.556+01
pset_01KHR06AQHD6GHPANNCMJQDH7G	2026-02-18 10:09:41.746+01	2026-03-12 12:48:54.604+01	2026-03-12 12:48:54.556+01
pset_01KHR06AQFM5K3BXWRY6KKTK2S	2026-02-18 10:09:41.746+01	2026-03-12 12:48:57.605+01	2026-03-12 12:48:57.605+01
pset_01KHR06AQG0BEGZJ6CDCHJA23R	2026-02-18 10:09:41.746+01	2026-03-12 12:48:57.631+01	2026-03-12 12:48:57.605+01
pset_01KHR06AQGQ10J73BPVQHNVJWE	2026-02-18 10:09:41.746+01	2026-03-12 12:48:57.644+01	2026-03-12 12:48:57.605+01
pset_01KHR06AQG51FZ221Z2W7NG8NN	2026-02-18 10:09:41.746+01	2026-03-12 12:48:57.66+01	2026-03-12 12:48:57.605+01
pset_01KHR06AQDCW70NBSJNFTJZY4E	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.699+01	2026-03-12 12:49:00.699+01
pset_01KHR06AQEREP9BVCV2H537WTN	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.72+01	2026-03-12 12:49:00.699+01
pset_01KHR06AQE2AV8XF24CH37XAXE	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.731+01	2026-03-12 12:49:00.699+01
pset_01KHR06AQE2NH6WB4FEFBF4Q8Z	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.742+01	2026-03-12 12:49:00.699+01
pset_01KHR06AQE44WW72T7F88ZAVXW	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.755+01	2026-03-12 12:49:00.699+01
pset_01KHR06AQFYBFXF1VK1JSGGEB7	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.768+01	2026-03-12 12:49:00.699+01
pset_01KHR06AQF7GYACQX11WYK2N8S	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.78+01	2026-03-12 12:49:00.699+01
pset_01KHR06AQFEQG6KMK7RMFP43EX	2026-02-18 10:09:41.746+01	2026-03-12 12:49:00.793+01	2026-03-12 12:49:00.699+01
pset_01KKGY53BD8F54YD24DKQWB921	2026-03-12 12:50:46.894+01	2026-03-12 12:50:46.894+01	\N
pset_01KKGY53BDQA61GXCSTZADDE49	2026-03-12 12:50:46.894+01	2026-03-12 12:50:46.894+01	\N
pset_01KKGY53BERN5R1JVSN24024VX	2026-03-12 12:50:46.895+01	2026-03-12 12:50:46.895+01	\N
\.


--
-- Data for Name: product; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product (id, title, handle, subtitle, description, is_giftcard, status, thumbnail, weight, length, height, width, origin_country, hs_code, mid_code, material, collection_id, type_id, discountable, external_id, created_at, updated_at, deleted_at, metadata) FROM stdin;
prod_01KHR3QA2XDCPPBMPFK45KKH34	testProduct	testproduct			f	published	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t	\N	2026-02-18 11:11:23.872+01	2026-02-18 11:15:53.277+01	2026-02-18 11:15:53.275+01	\N
prod_01KHR06AKQBWMZQDKM336Y6HFB	Medusa Shorts	shorts	\N	Reimagine the feeling of classic shorts. With our cotton shorts, everyday essentials no longer have to be ordinary.	f	published	https://medusa-public-images.s3.eu-west-1.amazonaws.com/shorts-vintage-front.png	400	\N	\N	\N	\N	\N	\N	\N	\N	\N	t	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:51.693+01	2026-03-12 12:48:51.692+01	\N
prod_01KHR06AKQDMAN8QQRS4E07ZT8	Medusa Sweatpants	sweatpants	\N	Reimagine the feeling of classic sweatpants. With our cotton sweatpants, everyday essentials no longer have to be ordinary.	f	published	https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatpants-gray-front.png	400	\N	\N	\N	\N	\N	\N	\N	\N	\N	t	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:54.538+01	2026-03-12 12:48:54.538+01	\N
prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	Medusa Sweatshirt	sweatshirt	\N	Reimagine the feeling of a classic sweatshirt. With our cotton sweatshirt, everyday essentials no longer have to be ordinary.	f	published	https://medusa-public-images.s3.eu-west-1.amazonaws.com/sweatshirt-vintage-front.png	400	\N	\N	\N	\N	\N	\N	\N	\N	\N	t	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:57.582+01	2026-03-12 12:48:57.581+01	\N
prod_01KHR06AKQYY80J14ZJVH6GEN7	Medusa T-Shirt	t-shirt	\N	Reimagine the feeling of a classic T-shirt. With our cotton T-shirts, everyday essentials no longer have to be ordinary.	f	published	https://medusa-public-images.s3.eu-west-1.amazonaws.com/tee-black-front.png	400	\N	\N	\N	\N	\N	\N	\N	\N	\N	t	\N	2026-02-18 10:09:41.629+01	2026-03-12 12:49:00.667+01	2026-03-12 12:49:00.667+01	\N
prod_01KHR7D0562FZ8W0Q6KG73WK03	test	test	t	tesdfd	f	published	https://biomket1.yourwebdemo.co.in/static/1771413340313-image.jpg	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t	\N	2026-02-18 12:15:40.329+01	2026-03-12 11:30:47.479+01	2026-03-12 11:30:47.475+01	\N
prod_01KKGVC5DV5MDRVHGSVGVF9QMF	Organic Manure Compost	organic-manure-compost	\N	High-quality organic compost derived from livestock manure. Ideal for biogas production, composting facilities, and organic fertilizer manufacturing. Consistent quality with regular supply availability.	f	published	https://biomket1.yourwebdemo.co.in/static/1773314488636-image.png	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	t	\N	2026-03-12 12:02:12.67+01	2026-03-12 12:41:37.268+01	\N	{"Waste Type": "Animal Feces & Urine", "Availability": "In Stock", "Nitrogen (N)": "1.8-2.5%", "Organic Matter": "60-70%", "Potassium (K2O)": "2.0-2.8%", "Product Location": "Valencia, Spain Province of Valencia", "Supply Frequency": "Monthly Recurring", "Phosphorus (P2O5)": "1.2-1.8%", "Available Quantity": "500 tons/month", "technical_sheet_url": "/admin/upload/sample.pdf", "technical_sheet_type": "application/pdf", "recommended_applications": ["Biogas production plants", "Soil amendment operations", "Industrial composting facilities", "Organic fertilizer manufacturing"], "technical_sheet_filename": "sample.pdf", "technical_specifications": {"Code": "02 01 06 - Animal feces, urine and manure", "pH Level": "7.5 - 8.5", "Organic Matter": "≥ 60%", "Physical State": "Solid / Semi-solid", "Moisture Content": "35-45%", "Storage Requirements": "Covered outdoor storage", "Waste Classification": "Animal Waste - Non-hazardous"}}
\.


--
-- Data for Name: product_category; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_category (id, name, description, handle, mpath, is_active, is_internal, rank, parent_category_id, created_at, updated_at, deleted_at, metadata) FROM stdin;
pcat_01KHR06AKCG4M0SMRHDQ3QDE8G	Shirts		shirts	pcat_01KHR06AKCG4M0SMRHDQ3QDE8G	t	f	0	\N	2026-02-18 10:09:41.613+01	2026-02-18 10:09:41.613+01	\N	\N
pcat_01KHR06AKC71YSTRFERHN1EEV0	Sweatshirts		sweatshirts	pcat_01KHR06AKC71YSTRFERHN1EEV0	t	f	1	\N	2026-02-18 10:09:41.613+01	2026-02-18 10:09:41.613+01	\N	\N
pcat_01KHR06AKDX285J9XEYCNJ2R5R	Pants		pants	pcat_01KHR06AKDX285J9XEYCNJ2R5R	t	f	2	\N	2026-02-18 10:09:41.613+01	2026-02-18 10:09:41.613+01	\N	\N
pcat_01KHR06AKD1PNRSGV5S0VA0PNY	Merch		merch	pcat_01KHR06AKD1PNRSGV5S0VA0PNY	t	f	3	\N	2026-02-18 10:09:41.613+01	2026-02-18 10:09:41.613+01	\N	\N
pcat_01KKGV13KRBPWFR91F4YGEZSYD	ABP Category 3		abp-category-3	pcat_01KKGV13KRBPWFR91F4YGEZSYD	t	f	4	\N	2026-03-12 11:56:10.36+01	2026-03-12 11:56:10.36+01	\N	\N
pcat_01KKGV1N09PSJT2ZR2H5SHZHD5	Digestate		digestate	pcat_01KKGV1N09PSJT2ZR2H5SHZHD5	t	f	5	\N	2026-03-12 11:56:28.17+01	2026-03-12 11:56:28.17+01	\N	\N
pcat_01KKGV201SAE2BVJFMD7J4NJRY	Sewage Sludge		sewage-sludge	pcat_01KKGV201SAE2BVJFMD7J4NJRY	t	f	6	\N	2026-03-12 11:56:39.482+01	2026-03-12 11:56:39.482+01	\N	\N
pcat_01KKGV2D3XE13D7XECDBD2N573	OFMSW		ofmsw	pcat_01KKGV2D3XE13D7XECDBD2N573	t	f	7	\N	2026-03-12 11:56:52.862+01	2026-03-12 11:56:52.862+01	\N	\N
pcat_01KKGV2VD5MVF1QVAB8YS01CPV	Forestry Waste		forestry-waste	pcat_01KKGV2VD5MVF1QVAB8YS01CPV	t	f	8	\N	2026-03-12 11:57:07.493+01	2026-03-12 11:57:07.493+01	\N	\N
pcat_01KKGV36FQH6P3ZFS88MWJVNE4	Agricultural Waste		agricultural-waste	pcat_01KKGV36FQH6P3ZFS88MWJVNE4	t	f	9	\N	2026-03-12 11:57:18.839+01	2026-03-12 11:57:18.839+01	\N	\N
pcat_01KKGV40PRDCBHHZWDXGVBNV30	Livestock Waste		livestock-waste	pcat_01KKGV40PRDCBHHZWDXGVBNV30	t	f	10	\N	2026-03-12 11:57:45.688+01	2026-03-12 11:57:45.688+01	\N	\N
\.


--
-- Data for Name: product_category_product; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_category_product (product_id, product_category_id) FROM stdin;
prod_01KHR06AKQYY80J14ZJVH6GEN7	pcat_01KHR06AKCG4M0SMRHDQ3QDE8G
prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	pcat_01KHR06AKC71YSTRFERHN1EEV0
prod_01KHR06AKQDMAN8QQRS4E07ZT8	pcat_01KHR06AKDX285J9XEYCNJ2R5R
prod_01KHR06AKQBWMZQDKM336Y6HFB	pcat_01KHR06AKD1PNRSGV5S0VA0PNY
prod_01KKGVC5DV5MDRVHGSVGVF9QMF	pcat_01KKGV40PRDCBHHZWDXGVBNV30
\.


--
-- Data for Name: product_collection; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_collection (id, title, handle, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: product_option; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_option (id, title, product_id, metadata, created_at, updated_at, deleted_at) FROM stdin;
opt_01KHR3QA2Z2HJ7HDZN1EB68P2R	Default option	prod_01KHR3QA2XDCPPBMPFK45KKH34	\N	2026-02-18 11:11:23.873+01	2026-02-18 11:15:53.297+01	2026-02-18 11:15:53.275+01
opt_01KHR7D057GRMG5MWE275VFHRA	Default option	prod_01KHR7D0562FZ8W0Q6KG73WK03	\N	2026-02-18 12:15:40.329+01	2026-03-12 11:30:47.515+01	2026-03-12 11:30:47.475+01
opt_01KKGVC5DXZYPX5FRHN0X57K5B	Default option	prod_01KKGVC5DV5MDRVHGSVGVF9QMF	\N	2026-03-12 12:02:12.67+01	2026-03-12 12:02:12.67+01	\N
opt_01KHR06AKWDFBEA25ZP1M6BR45	Size	prod_01KHR06AKQBWMZQDKM336Y6HFB	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:51.725+01	2026-03-12 12:48:51.692+01
opt_01KHR06AKW540AEBBH4K0HE8RA	Size	prod_01KHR06AKQDMAN8QQRS4E07ZT8	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:54.562+01	2026-03-12 12:48:54.538+01
opt_01KHR06AKVFF46DGW93N95D982	Size	prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:57.598+01	2026-03-12 12:48:57.581+01
opt_01KHR06AKSC7N22XE3524PS8QT	Size	prod_01KHR06AKQYY80J14ZJVH6GEN7	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.689+01	2026-03-12 12:49:00.667+01
opt_01KHR06AKT3D25EYST12QPX50Q	Color	prod_01KHR06AKQYY80J14ZJVH6GEN7	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.689+01	2026-03-12 12:49:00.667+01
\.


--
-- Data for Name: product_option_value; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_option_value (id, value, option_id, metadata, created_at, updated_at, deleted_at) FROM stdin;
optval_01KHR3QA2Z9YA9JH85C116MH34	Default option value	opt_01KHR3QA2Z2HJ7HDZN1EB68P2R	\N	2026-02-18 11:11:23.873+01	2026-02-18 11:15:53.306+01	2026-02-18 11:15:53.275+01
optval_01KHR7D057F69N9VE6ATFG0846	Default option value	opt_01KHR7D057GRMG5MWE275VFHRA	\N	2026-02-18 12:15:40.329+01	2026-03-12 11:30:47.533+01	2026-03-12 11:30:47.475+01
optval_01KKGVC5DXFVYRHSYYSPMTJA6Q	Default option value	opt_01KKGVC5DXZYPX5FRHN0X57K5B	\N	2026-03-12 12:02:12.67+01	2026-03-12 12:02:12.67+01	\N
optval_01KHR06AKWZH3F1MPZX5XD716N	S	opt_01KHR06AKWDFBEA25ZP1M6BR45	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:51.751+01	2026-03-12 12:48:51.692+01
optval_01KHR06AKWP2M4EAHRN1C72PM2	M	opt_01KHR06AKWDFBEA25ZP1M6BR45	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:51.751+01	2026-03-12 12:48:51.692+01
optval_01KHR06AKWD1ST87ECBQG94GMV	L	opt_01KHR06AKWDFBEA25ZP1M6BR45	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:51.751+01	2026-03-12 12:48:51.692+01
optval_01KHR06AKWJKPBWJ9D255J4307	XL	opt_01KHR06AKWDFBEA25ZP1M6BR45	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:51.751+01	2026-03-12 12:48:51.692+01
optval_01KHR06AKW9GGF0JQSEXQBGKAG	S	opt_01KHR06AKW540AEBBH4K0HE8RA	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:54.58+01	2026-03-12 12:48:54.538+01
optval_01KHR06AKW826KC5C3TR40S1Z7	M	opt_01KHR06AKW540AEBBH4K0HE8RA	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:54.58+01	2026-03-12 12:48:54.538+01
optval_01KHR06AKWGF07FPGFM7ZK3HGQ	L	opt_01KHR06AKW540AEBBH4K0HE8RA	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:54.58+01	2026-03-12 12:48:54.538+01
optval_01KHR06AKWRZK3TTZWD2AK60QS	XL	opt_01KHR06AKW540AEBBH4K0HE8RA	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:54.58+01	2026-03-12 12:48:54.538+01
optval_01KHR06AKVS0GNP1KS827HJHTG	S	opt_01KHR06AKVFF46DGW93N95D982	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:57.613+01	2026-03-12 12:48:57.581+01
optval_01KHR06AKVFWE06A57XY23VKG7	M	opt_01KHR06AKVFF46DGW93N95D982	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:57.613+01	2026-03-12 12:48:57.581+01
optval_01KHR06AKVSVZX913VH47AY9NF	L	opt_01KHR06AKVFF46DGW93N95D982	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:57.613+01	2026-03-12 12:48:57.581+01
optval_01KHR06AKVEPWZ57WKTTQGGT9Q	XL	opt_01KHR06AKVFF46DGW93N95D982	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:48:57.613+01	2026-03-12 12:48:57.581+01
optval_01KHR06AKSGYA4QNQ55DSYZ4EB	S	opt_01KHR06AKSC7N22XE3524PS8QT	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.707+01	2026-03-12 12:49:00.667+01
optval_01KHR06AKSP9DM70QXMAHS9730	M	opt_01KHR06AKSC7N22XE3524PS8QT	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.707+01	2026-03-12 12:49:00.667+01
optval_01KHR06AKSSE3YNNMBQFS8CQHR	L	opt_01KHR06AKSC7N22XE3524PS8QT	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.707+01	2026-03-12 12:49:00.667+01
optval_01KHR06AKS1DAHRHH3ADASVVJD	XL	opt_01KHR06AKSC7N22XE3524PS8QT	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.707+01	2026-03-12 12:49:00.667+01
optval_01KHR06AKS36NNTWYJYZMWTEDS	Black	opt_01KHR06AKT3D25EYST12QPX50Q	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.707+01	2026-03-12 12:49:00.667+01
optval_01KHR06AKS09V7C9DDC0NFA197	White	opt_01KHR06AKT3D25EYST12QPX50Q	\N	2026-02-18 10:09:41.63+01	2026-03-12 12:49:00.707+01	2026-03-12 12:49:00.667+01
\.


--
-- Data for Name: product_product_waste_waste_attribute; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_product_waste_waste_attribute (product_id, waste_attribute_id, id, created_at, updated_at, deleted_at) FROM stdin;
prod_01KKGVC5DV5MDRVHGSVGVF9QMF	01KKGVQ9GA8GTWZBN4A642WAQA	link_01KKGVQ9GPM8DJ1YWSKSQZRZ8C	2026-03-12 12:08:17.302092+01	2026-03-12 12:08:17.302092+01	\N
\.


--
-- Data for Name: product_sales_channel; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_sales_channel (product_id, sales_channel_id, id, created_at, updated_at, deleted_at) FROM stdin;
prod_01KHR3QA2XDCPPBMPFK45KKH34	sc_01KHR065FHBMN74HAYAXNYR64M	prodsc_01KHR3QA3NFC5SH0KRRRGHCNZ0	2026-02-18 11:11:23.89374+01	2026-02-18 11:15:53.284+01	2026-02-18 11:15:53.284+01
prod_01KHR7D0562FZ8W0Q6KG73WK03	sc_01KHR065FHBMN74HAYAXNYR64M	prodsc_01KHR7D05RTWSP4JNJR8D971M7	2026-02-18 12:15:40.344601+01	2026-03-12 11:30:47.487+01	2026-03-12 11:30:47.485+01
prod_01KKGVC5DV5MDRVHGSVGVF9QMF	sc_01KHR065FHBMN74HAYAXNYR64M	prodsc_01KKGVC5F7ZW7A1MAG3RQJ2KZM	2026-03-12 12:02:12.710093+01	2026-03-12 12:02:12.710093+01	\N
prod_01KHR06AKQBWMZQDKM336Y6HFB	sc_01KHR065FHBMN74HAYAXNYR64M	prodsc_01KHR06AMTX7Q75MMZ42G97HFA	2026-02-18 10:09:41.657603+01	2026-03-12 12:48:51.701+01	2026-03-12 12:48:51.7+01
prod_01KHR06AKQDMAN8QQRS4E07ZT8	sc_01KHR065FHBMN74HAYAXNYR64M	prodsc_01KHR06AMS0JEHWYRT18NNW5JA	2026-02-18 10:09:41.657603+01	2026-03-12 12:48:54.544+01	2026-03-12 12:48:54.543+01
prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	sc_01KHR065FHBMN74HAYAXNYR64M	prodsc_01KHR06AMS54AK525XA81F6NSA	2026-02-18 10:09:41.657603+01	2026-03-12 12:48:57.587+01	2026-03-12 12:48:57.586+01
prod_01KHR06AKQYY80J14ZJVH6GEN7	sc_01KHR065FHBMN74HAYAXNYR64M	prodsc_01KHR06AMSD7F68Y3HWF25KZX9	2026-02-18 10:09:41.657603+01	2026-03-12 12:49:00.669+01	2026-03-12 12:49:00.669+01
\.


--
-- Data for Name: product_shipping_profile; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_shipping_profile (product_id, shipping_profile_id, id, created_at, updated_at, deleted_at) FROM stdin;
prod_01KKGVC5DV5MDRVHGSVGVF9QMF	sp_01KHQVJXQNA3H68YS4PSBZW71A	prodsp_01KKGVC5FVD4Q82EMB79T1KTXZ	2026-03-12 12:02:12.730905+01	2026-03-12 12:02:12.730905+01	\N
prod_01KHR06AKQBWMZQDKM336Y6HFB	sp_01KHQVJXQNA3H68YS4PSBZW71A	prodsp_01KHR06AN60GAXPD6C574NA31N	2026-02-18 10:09:41.669701+01	2026-03-12 12:48:51.705+01	2026-03-12 12:48:51.703+01
prod_01KHR06AKQDMAN8QQRS4E07ZT8	sp_01KHQVJXQNA3H68YS4PSBZW71A	prodsp_01KHR06AN6391XJAPRKDW7F5AF	2026-02-18 10:09:41.669701+01	2026-03-12 12:48:54.546+01	2026-03-12 12:48:54.545+01
prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	sp_01KHQVJXQNA3H68YS4PSBZW71A	prodsp_01KHR06AN5KYV310NMHTA60G9G	2026-02-18 10:09:41.669701+01	2026-03-12 12:48:57.589+01	2026-03-12 12:48:57.588+01
prod_01KHR06AKQYY80J14ZJVH6GEN7	sp_01KHQVJXQNA3H68YS4PSBZW71A	prodsp_01KHR06AN5YHG8NBSZSBTEWR9P	2026-02-18 10:09:41.669701+01	2026-03-12 12:49:00.672+01	2026-03-12 12:49:00.672+01
\.


--
-- Data for Name: product_tag; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_tag (id, value, metadata, created_at, updated_at, deleted_at) FROM stdin;
ptag_01KKGTY1PW17KJFRTHQ4EWH09X	ISO 14001	\N	2026-03-12 11:54:30.109+01	2026-03-12 11:54:30.109+01	\N
ptag_01KKGTYEX439M40BEZJDWE9N95	Organic Certified	\N	2026-03-12 11:54:43.621+01	2026-03-12 11:54:43.621+01	\N
ptag_01KKGTYYCG6N3R1N5AHQ79G4HP	Quality Assured	\N	2026-03-12 11:54:59.472+01	2026-03-12 11:54:59.472+01	\N
\.


--
-- Data for Name: product_tags; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_tags (product_id, product_tag_id) FROM stdin;
prod_01KKGVC5DV5MDRVHGSVGVF9QMF	ptag_01KKGTYYCG6N3R1N5AHQ79G4HP
\.


--
-- Data for Name: product_type; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_type (id, value, metadata, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: product_variant; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_variant (id, title, sku, barcode, ean, upc, allow_backorder, manage_inventory, hs_code, origin_country, mid_code, material, weight, length, height, width, metadata, variant_rank, product_id, created_at, updated_at, deleted_at, thumbnail) FROM stdin;
variant_01KHR3QA4K9G2QMVXEMMRP57A5	Default variant	\N	\N	\N	\N	f	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR3QA2XDCPPBMPFK45KKH34	2026-02-18 11:11:23.923+01	2026-02-18 11:15:53.297+01	2026-02-18 11:15:53.275+01	\N
variant_01KHR7D06C4S6D41ZEHW3605DQ	Default variant	\N	\N	\N	\N	f	f	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR7D0562FZ8W0Q6KG73WK03	2026-02-18 12:15:40.364+01	2026-03-12 11:30:47.514+01	2026-03-12 11:30:47.475+01	\N
variant_01KKGVC5GW8294W9CTFA2JQAQ3	Default	02-01-06	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KKGVC5DV5MDRVHGSVGVF9QMF	2026-03-12 12:02:12.764+01	2026-03-12 12:02:12.764+01	\N	\N
variant_01KHR06ANYH18M1132J9T5BKMG	S	SHORTS-S	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQBWMZQDKM336Y6HFB	2026-02-18 10:09:41.696+01	2026-03-12 12:48:51.725+01	2026-03-12 12:48:51.692+01	\N
variant_01KHR06ANZBHJBWSTRN7RSKE00	M	SHORTS-M	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQBWMZQDKM336Y6HFB	2026-02-18 10:09:41.696+01	2026-03-12 12:48:51.725+01	2026-03-12 12:48:51.692+01	\N
variant_01KHR06ANZJG6SDCAGCEW0WSE9	L	SHORTS-L	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQBWMZQDKM336Y6HFB	2026-02-18 10:09:41.696+01	2026-03-12 12:48:51.725+01	2026-03-12 12:48:51.692+01	\N
variant_01KHR06ANZK2BRYTDM0DVH557F	XL	SHORTS-XL	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQBWMZQDKM336Y6HFB	2026-02-18 10:09:41.696+01	2026-03-12 12:48:51.725+01	2026-03-12 12:48:51.692+01	\N
variant_01KHR06ANY2YH4SQPVGAN0RXF7	S	SWEATPANTS-S	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQDMAN8QQRS4E07ZT8	2026-02-18 10:09:41.696+01	2026-03-12 12:48:54.562+01	2026-03-12 12:48:54.538+01	\N
variant_01KHR06ANYE41S109PBPKEJHWD	M	SWEATPANTS-M	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQDMAN8QQRS4E07ZT8	2026-02-18 10:09:41.696+01	2026-03-12 12:48:54.562+01	2026-03-12 12:48:54.538+01	\N
variant_01KHR06ANYMEGZK7V9RRACB92J	L	SWEATPANTS-L	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQDMAN8QQRS4E07ZT8	2026-02-18 10:09:41.696+01	2026-03-12 12:48:54.562+01	2026-03-12 12:48:54.538+01	\N
variant_01KHR06ANYV0Y4KFANSDGJ7XWK	XL	SWEATPANTS-XL	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQDMAN8QQRS4E07ZT8	2026-02-18 10:09:41.696+01	2026-03-12 12:48:54.562+01	2026-03-12 12:48:54.538+01	\N
variant_01KHR06ANXDT3FX4HZJG9V3C40	S	SWEATSHIRT-S	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	2026-02-18 10:09:41.696+01	2026-03-12 12:48:57.597+01	2026-03-12 12:48:57.581+01	\N
variant_01KHR06ANYBYKYXH9MNF8SW5XB	M	SWEATSHIRT-M	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	2026-02-18 10:09:41.696+01	2026-03-12 12:48:57.598+01	2026-03-12 12:48:57.581+01	\N
variant_01KHR06ANY33QAWES4G46GY76D	L	SWEATSHIRT-L	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	2026-02-18 10:09:41.696+01	2026-03-12 12:48:57.598+01	2026-03-12 12:48:57.581+01	\N
variant_01KHR06ANYJT4AWX0TD2F3DBJ3	XL	SWEATSHIRT-XL	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQDRQ7VRRW3R5F3Z0T	2026-02-18 10:09:41.696+01	2026-03-12 12:48:57.598+01	2026-03-12 12:48:57.581+01	\N
variant_01KHR06ANWBC2RBEAKD9NGM3TP	S / Black	SHIRT-S-BLACK	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQYY80J14ZJVH6GEN7	2026-02-18 10:09:41.695+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	\N
variant_01KHR06ANW7FBZWPJ6XX6E5M7A	S / White	SHIRT-S-WHITE	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQYY80J14ZJVH6GEN7	2026-02-18 10:09:41.696+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	\N
variant_01KHR06ANXE5BSBRJ0GS3V9MDE	M / Black	SHIRT-M-BLACK	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQYY80J14ZJVH6GEN7	2026-02-18 10:09:41.696+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	\N
variant_01KHR06ANXNNXAC32Q4EC2CC9X	M / White	SHIRT-M-WHITE	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQYY80J14ZJVH6GEN7	2026-02-18 10:09:41.696+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	\N
variant_01KHR06ANXPYEPX97NWJWASQNR	L / Black	SHIRT-L-BLACK	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQYY80J14ZJVH6GEN7	2026-02-18 10:09:41.696+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	\N
variant_01KHR06ANX3TWVWCKWEZZ9JS71	L / White	SHIRT-L-WHITE	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQYY80J14ZJVH6GEN7	2026-02-18 10:09:41.696+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	\N
variant_01KHR06ANX6MPYDJBCQZZCD4N6	XL / Black	SHIRT-XL-BLACK	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQYY80J14ZJVH6GEN7	2026-02-18 10:09:41.696+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	\N
variant_01KHR06ANX9H1FM0TBY2XGVGGC	XL / White	SHIRT-XL-WHITE	\N	\N	\N	f	t	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	prod_01KHR06AKQYY80J14ZJVH6GEN7	2026-02-18 10:09:41.696+01	2026-03-12 12:49:00.688+01	2026-03-12 12:49:00.667+01	\N
\.


--
-- Data for Name: product_variant_inventory_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_variant_inventory_item (variant_id, inventory_item_id, id, required_quantity, created_at, updated_at, deleted_at) FROM stdin;
variant_01KKGVC5GW8294W9CTFA2JQAQ3	iitem_01KKGVC5HBVMHA9VMVGDF1R8VA	pvitem_01KKGVC5HWXB2GM0F79TCXPW8Z	1	2026-03-12 12:02:12.796392+01	2026-03-12 12:02:12.796392+01	\N
variant_01KHR06ANYH18M1132J9T5BKMG	iitem_01KHR06APKC29088K5TYZQAVM5	pvitem_01KHR06AQ3H2KEQRYWFGP5ZHZS	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:51.67+01	2026-03-12 12:48:51.668+01
variant_01KHR06ANZBHJBWSTRN7RSKE00	iitem_01KHR06APKCAZ95GRV0120DPBA	pvitem_01KHR06AQ358C9F511RP0F9JAB	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:51.67+01	2026-03-12 12:48:51.668+01
variant_01KHR06ANZJG6SDCAGCEW0WSE9	iitem_01KHR06APKT9XXMAWM2VGRXZAZ	pvitem_01KHR06AQ3C8CEP50M0932AXKB	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:51.67+01	2026-03-12 12:48:51.668+01
variant_01KHR06ANZK2BRYTDM0DVH557F	iitem_01KHR06APK6TG2AGKH6GQS50E0	pvitem_01KHR06AQ3F86Y6SNKJWQP75YQ	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:51.67+01	2026-03-12 12:48:51.668+01
variant_01KHR06ANY2YH4SQPVGAN0RXF7	iitem_01KHR06APKYFVTBQCH499WTJ13	pvitem_01KHR06AQ3K9NXTKSPSE0CM96B	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:54.519+01	2026-03-12 12:48:54.518+01
variant_01KHR06ANYE41S109PBPKEJHWD	iitem_01KHR06APKRG3RC0PPE6T0FWMY	pvitem_01KHR06AQ3J094B6XTTNBJVSC2	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:54.519+01	2026-03-12 12:48:54.518+01
variant_01KHR06ANYMEGZK7V9RRACB92J	iitem_01KHR06APK8K6N9CJ1GGHFN6Q5	pvitem_01KHR06AQ37R207M19JE8SJSFJ	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:54.519+01	2026-03-12 12:48:54.518+01
variant_01KHR06ANYV0Y4KFANSDGJ7XWK	iitem_01KHR06APKJVEDC1BAN18HGJK5	pvitem_01KHR06AQ36GJ6XZS8YTFZTC91	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:54.519+01	2026-03-12 12:48:54.518+01
variant_01KHR06ANXDT3FX4HZJG9V3C40	iitem_01KHR06APJ2G2SFDDQX6RC4WQN	pvitem_01KHR06AQ24JRT0853HCCHWE6G	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:57.561+01	2026-03-12 12:48:57.561+01
variant_01KHR06ANYBYKYXH9MNF8SW5XB	iitem_01KHR06APKVFFQYT0JKWC8GQ2S	pvitem_01KHR06AQ2A8YYYN4BQ8E8RWBR	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:57.561+01	2026-03-12 12:48:57.561+01
variant_01KHR06ANY33QAWES4G46GY76D	iitem_01KHR06APKKH2QFPTJ04KJ6D20	pvitem_01KHR06AQ36VD2HH00C22T2NH8	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:57.561+01	2026-03-12 12:48:57.561+01
variant_01KHR06ANYJT4AWX0TD2F3DBJ3	iitem_01KHR06APKVC4S3PAJ73HT7PZM	pvitem_01KHR06AQ3D07QDYP919V8WJH4	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:48:57.561+01	2026-03-12 12:48:57.561+01
variant_01KHR06ANWBC2RBEAKD9NGM3TP	iitem_01KHR06APJY2ST97MMCEHNRMXK	pvitem_01KHR06AQ1EC1AQQHSDS18BNP6	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:49:00.65+01	2026-03-12 12:49:00.649+01
variant_01KHR06ANW7FBZWPJ6XX6E5M7A	iitem_01KHR06APJ9AYB3JAFBB7YKE0E	pvitem_01KHR06AQ2FFWJHFJZKSD6CGKJ	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:49:00.65+01	2026-03-12 12:49:00.649+01
variant_01KHR06ANXE5BSBRJ0GS3V9MDE	iitem_01KHR06APJC2C16554MJ9DTDQ6	pvitem_01KHR06AQ2ZTE3R4QFXTJ3VGJ9	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:49:00.65+01	2026-03-12 12:49:00.649+01
variant_01KHR06ANXNNXAC32Q4EC2CC9X	iitem_01KHR06APJGQ64AGY2EGPHXDAA	pvitem_01KHR06AQ2Q3XZWSE4QJ94TZE4	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:49:00.65+01	2026-03-12 12:49:00.649+01
variant_01KHR06ANXPYEPX97NWJWASQNR	iitem_01KHR06APJJRGQP33GENPSVPF8	pvitem_01KHR06AQ2ATMJKZ1XFYETT2AN	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:49:00.65+01	2026-03-12 12:49:00.649+01
variant_01KHR06ANX3TWVWCKWEZZ9JS71	iitem_01KHR06APJSB6XFAPPWRWFCBH8	pvitem_01KHR06AQ2F10E6WAYH63CX39Q	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:49:00.65+01	2026-03-12 12:49:00.649+01
variant_01KHR06ANX6MPYDJBCQZZCD4N6	iitem_01KHR06APJTBYSW7ADMDNG6J1Z	pvitem_01KHR06AQ2HND3XHCTCQMY13GD	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:49:00.65+01	2026-03-12 12:49:00.649+01
variant_01KHR06ANX9H1FM0TBY2XGVGGC	iitem_01KHR06APJ7CNMKTW0GYPQBPRM	pvitem_01KHR06AQ2VWMJ7M940AYT7X9Q	1	2026-02-18 10:09:41.730031+01	2026-03-12 12:49:00.65+01	2026-03-12 12:49:00.649+01
\.


--
-- Data for Name: product_variant_option; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_variant_option (variant_id, option_value_id) FROM stdin;
variant_01KHR06ANWBC2RBEAKD9NGM3TP	optval_01KHR06AKSGYA4QNQ55DSYZ4EB
variant_01KHR06ANWBC2RBEAKD9NGM3TP	optval_01KHR06AKS36NNTWYJYZMWTEDS
variant_01KHR06ANW7FBZWPJ6XX6E5M7A	optval_01KHR06AKSGYA4QNQ55DSYZ4EB
variant_01KHR06ANW7FBZWPJ6XX6E5M7A	optval_01KHR06AKS09V7C9DDC0NFA197
variant_01KHR06ANXE5BSBRJ0GS3V9MDE	optval_01KHR06AKSP9DM70QXMAHS9730
variant_01KHR06ANXE5BSBRJ0GS3V9MDE	optval_01KHR06AKS36NNTWYJYZMWTEDS
variant_01KHR06ANXNNXAC32Q4EC2CC9X	optval_01KHR06AKSP9DM70QXMAHS9730
variant_01KHR06ANXNNXAC32Q4EC2CC9X	optval_01KHR06AKS09V7C9DDC0NFA197
variant_01KHR06ANXPYEPX97NWJWASQNR	optval_01KHR06AKSSE3YNNMBQFS8CQHR
variant_01KHR06ANXPYEPX97NWJWASQNR	optval_01KHR06AKS36NNTWYJYZMWTEDS
variant_01KHR06ANX3TWVWCKWEZZ9JS71	optval_01KHR06AKSSE3YNNMBQFS8CQHR
variant_01KHR06ANX3TWVWCKWEZZ9JS71	optval_01KHR06AKS09V7C9DDC0NFA197
variant_01KHR06ANX6MPYDJBCQZZCD4N6	optval_01KHR06AKS1DAHRHH3ADASVVJD
variant_01KHR06ANX6MPYDJBCQZZCD4N6	optval_01KHR06AKS36NNTWYJYZMWTEDS
variant_01KHR06ANX9H1FM0TBY2XGVGGC	optval_01KHR06AKS1DAHRHH3ADASVVJD
variant_01KHR06ANX9H1FM0TBY2XGVGGC	optval_01KHR06AKS09V7C9DDC0NFA197
variant_01KHR06ANXDT3FX4HZJG9V3C40	optval_01KHR06AKVS0GNP1KS827HJHTG
variant_01KHR06ANYBYKYXH9MNF8SW5XB	optval_01KHR06AKVFWE06A57XY23VKG7
variant_01KHR06ANY33QAWES4G46GY76D	optval_01KHR06AKVSVZX913VH47AY9NF
variant_01KHR06ANYJT4AWX0TD2F3DBJ3	optval_01KHR06AKVEPWZ57WKTTQGGT9Q
variant_01KHR06ANY2YH4SQPVGAN0RXF7	optval_01KHR06AKW9GGF0JQSEXQBGKAG
variant_01KHR06ANYE41S109PBPKEJHWD	optval_01KHR06AKW826KC5C3TR40S1Z7
variant_01KHR06ANYMEGZK7V9RRACB92J	optval_01KHR06AKWGF07FPGFM7ZK3HGQ
variant_01KHR06ANYV0Y4KFANSDGJ7XWK	optval_01KHR06AKWRZK3TTZWD2AK60QS
variant_01KHR06ANYH18M1132J9T5BKMG	optval_01KHR06AKWZH3F1MPZX5XD716N
variant_01KHR06ANZBHJBWSTRN7RSKE00	optval_01KHR06AKWP2M4EAHRN1C72PM2
variant_01KHR06ANZJG6SDCAGCEW0WSE9	optval_01KHR06AKWD1ST87ECBQG94GMV
variant_01KHR06ANZK2BRYTDM0DVH557F	optval_01KHR06AKWJKPBWJ9D255J4307
variant_01KHR3QA4K9G2QMVXEMMRP57A5	optval_01KHR3QA2Z9YA9JH85C116MH34
variant_01KHR7D06C4S6D41ZEHW3605DQ	optval_01KHR7D057F69N9VE6ATFG0846
variant_01KKGVC5GW8294W9CTFA2JQAQ3	optval_01KKGVC5DXFVYRHSYYSPMTJA6Q
\.


--
-- Data for Name: product_variant_price_set; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_variant_price_set (variant_id, price_set_id, id, created_at, updated_at, deleted_at) FROM stdin;
variant_01KHR3QA4K9G2QMVXEMMRP57A5	pset_01KHR3QA58EVW64NKCM68QH9YV	pvps_01KHR3QA5Y3FRXGFR5YNN3SPT6	2026-02-18 11:11:23.967307+01	2026-02-18 11:15:53.283+01	2026-02-18 11:15:53.282+01
variant_01KHR7D06C4S6D41ZEHW3605DQ	pset_01KHR7D06V8PW2VRA3MZXCQPZJ	pvps_01KHR7D076ERDH9KNKYJG3MSCD	2026-02-18 12:15:40.390338+01	2026-03-12 11:30:47.491+01	2026-03-12 11:30:47.49+01
variant_01KKGVC5GW8294W9CTFA2JQAQ3	pset_01KKGVC5JANNFM1NR09EZBXJG4	pvps_01KKGVC5KQ5ZRR4SBB4Q126HVD	2026-03-12 12:02:12.855344+01	2026-03-12 12:02:12.855344+01	\N
variant_01KHR06ANYH18M1132J9T5BKMG	pset_01KHR06AQHC33V82YKHCDD957V	pvps_01KHR06ARGB6CEGD5TR23ZZRBE	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:51.698+01	2026-03-12 12:48:51.697+01
variant_01KHR06ANZBHJBWSTRN7RSKE00	pset_01KHR06AQHTM58ZH615FTZ4861	pvps_01KHR06ARGH6BTHBFJNEE6V7HD	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:51.698+01	2026-03-12 12:48:51.697+01
variant_01KHR06ANZJG6SDCAGCEW0WSE9	pset_01KHR06AQHY287CW6BFK1VE83F	pvps_01KHR06ARGPKF4WYPFCBAVQP38	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:51.698+01	2026-03-12 12:48:51.697+01
variant_01KHR06ANZK2BRYTDM0DVH557F	pset_01KHR06AQJRVY5H5FFZ8R4BFKE	pvps_01KHR06ARG2BEGCBHG720YJTJ1	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:51.698+01	2026-03-12 12:48:51.697+01
variant_01KHR06ANY2YH4SQPVGAN0RXF7	pset_01KHR06AQGEGDFFSRPYHDTESZ6	pvps_01KHR06ARGQN0JM9XFQWXR64B7	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:54.541+01	2026-03-12 12:48:54.541+01
variant_01KHR06ANYE41S109PBPKEJHWD	pset_01KHR06AQGZENWAGB6094JW27K	pvps_01KHR06ARG18NRBR479CXARCZV	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:54.541+01	2026-03-12 12:48:54.541+01
variant_01KHR06ANYMEGZK7V9RRACB92J	pset_01KHR06AQHEAAH1F99DBC9XWQK	pvps_01KHR06ARGMSVHGAVJ2BF1S39C	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:54.541+01	2026-03-12 12:48:54.541+01
variant_01KHR06ANYV0Y4KFANSDGJ7XWK	pset_01KHR06AQHD6GHPANNCMJQDH7G	pvps_01KHR06ARGQ9BGRXXTEFJ6KPWN	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:54.541+01	2026-03-12 12:48:54.541+01
variant_01KHR06ANXDT3FX4HZJG9V3C40	pset_01KHR06AQFM5K3BXWRY6KKTK2S	pvps_01KHR06ARGN127WKK277BG7YMS	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:57.585+01	2026-03-12 12:48:57.585+01
variant_01KHR06ANYBYKYXH9MNF8SW5XB	pset_01KHR06AQG0BEGZJ6CDCHJA23R	pvps_01KHR06ARGPS57B8SKQTF0E3C3	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:57.585+01	2026-03-12 12:48:57.585+01
variant_01KHR06ANY33QAWES4G46GY76D	pset_01KHR06AQGQ10J73BPVQHNVJWE	pvps_01KHR06ARGTPQ9E3H5MGWAEKP9	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:57.585+01	2026-03-12 12:48:57.585+01
variant_01KHR06ANYJT4AWX0TD2F3DBJ3	pset_01KHR06AQG51FZ221Z2W7NG8NN	pvps_01KHR06ARGDJ7FWVX9H59CFH73	2026-02-18 10:09:41.775423+01	2026-03-12 12:48:57.585+01	2026-03-12 12:48:57.585+01
variant_01KHR06ANWBC2RBEAKD9NGM3TP	pset_01KHR06AQDCW70NBSJNFTJZY4E	pvps_01KHR06ARFHDXVN7F5TFZ1YHST	2026-02-18 10:09:41.775423+01	2026-03-12 12:49:00.671+01	2026-03-12 12:49:00.67+01
variant_01KHR06ANW7FBZWPJ6XX6E5M7A	pset_01KHR06AQEREP9BVCV2H537WTN	pvps_01KHR06ARFDFFGMA5QY6ZXPRH0	2026-02-18 10:09:41.775423+01	2026-03-12 12:49:00.671+01	2026-03-12 12:49:00.67+01
variant_01KHR06ANXE5BSBRJ0GS3V9MDE	pset_01KHR06AQE2AV8XF24CH37XAXE	pvps_01KHR06ARFNBSMVJ082WMR8F07	2026-02-18 10:09:41.775423+01	2026-03-12 12:49:00.671+01	2026-03-12 12:49:00.67+01
variant_01KHR06ANXNNXAC32Q4EC2CC9X	pset_01KHR06AQE2NH6WB4FEFBF4Q8Z	pvps_01KHR06ARF17PKQR9G19FWY1XK	2026-02-18 10:09:41.775423+01	2026-03-12 12:49:00.671+01	2026-03-12 12:49:00.67+01
variant_01KHR06ANXPYEPX97NWJWASQNR	pset_01KHR06AQE44WW72T7F88ZAVXW	pvps_01KHR06ARFXVGT5P8TQ0K79XJZ	2026-02-18 10:09:41.775423+01	2026-03-12 12:49:00.671+01	2026-03-12 12:49:00.67+01
variant_01KHR06ANX3TWVWCKWEZZ9JS71	pset_01KHR06AQFYBFXF1VK1JSGGEB7	pvps_01KHR06ARGBR0CTWHJHTCVMF02	2026-02-18 10:09:41.775423+01	2026-03-12 12:49:00.671+01	2026-03-12 12:49:00.67+01
variant_01KHR06ANX6MPYDJBCQZZCD4N6	pset_01KHR06AQF7GYACQX11WYK2N8S	pvps_01KHR06ARG95HAKBXFJ76DKNX7	2026-02-18 10:09:41.775423+01	2026-03-12 12:49:00.671+01	2026-03-12 12:49:00.67+01
variant_01KHR06ANX9H1FM0TBY2XGVGGC	pset_01KHR06AQFEQG6KMK7RMFP43EX	pvps_01KHR06ARGXA2DV5CZC0TF1SBT	2026-02-18 10:09:41.775423+01	2026-03-12 12:49:00.671+01	2026-03-12 12:49:00.67+01
\.


--
-- Data for Name: product_variant_product_image; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.product_variant_product_image (id, variant_id, image_id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: promotion; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.promotion (id, code, campaign_id, is_automatic, type, created_at, updated_at, deleted_at, status, is_tax_inclusive, "limit", used, metadata) FROM stdin;
\.


--
-- Data for Name: promotion_application_method; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.promotion_application_method (id, value, raw_value, max_quantity, apply_to_quantity, buy_rules_min_quantity, type, target_type, allocation, promotion_id, created_at, updated_at, deleted_at, currency_code) FROM stdin;
\.


--
-- Data for Name: promotion_campaign; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.promotion_campaign (id, name, description, campaign_identifier, starts_at, ends_at, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: promotion_campaign_budget; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.promotion_campaign_budget (id, type, campaign_id, "limit", raw_limit, used, raw_used, created_at, updated_at, deleted_at, currency_code, attribute) FROM stdin;
\.


--
-- Data for Name: promotion_campaign_budget_usage; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.promotion_campaign_budget_usage (id, attribute_value, used, budget_id, raw_used, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: promotion_promotion_rule; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.promotion_promotion_rule (promotion_id, promotion_rule_id) FROM stdin;
\.


--
-- Data for Name: promotion_rule; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.promotion_rule (id, description, attribute, operator, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: promotion_rule_value; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.promotion_rule_value (id, promotion_rule_id, value, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: provider_identity; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.provider_identity (id, entity_id, provider, auth_identity_id, user_metadata, provider_metadata, created_at, updated_at, deleted_at) FROM stdin;
01KHR0HTMQ90X5580Z4X6SNJV9	divy.panchal@hexagoninfosoft.in	emailpass	authid_01KHR0HTMRVTE59CTZR79WECQ9	\N	{"password": "c2NyeXB0AA8AAAAIAAAAAViZuLvs80KOj9+tr7Ditzdtf3PvuMOfR6iXFQqIM8aVUVPa5oasMNNvEn1d6mey1gyDH5zC3MgHlAF1qFCLJshwQF0wxlqlTkX2JyTnK4Qp"}	2026-02-18 10:15:58.489+01	2026-02-18 10:15:58.489+01	\N
01KHR78ECFW3TX7REG6YKHFYTC	rajesh.kumar@hexagoninfosoft.in	emailpass	authid_01KHR78ECG93KBD6FMBYQ18J0C	\N	{"password": "c2NyeXB0AA8AAAAIAAAAAYDl5DUlqINXNVNEfACumGsZoWfbFuPLscv2kH1GmKkyK2E7MnJt2GS+8izMq/tVcxZBmT1jCQKEolDPpqOU6XMXCGjp97KPXnrD98dxwFmh"}	2026-02-18 12:13:11.057+01	2026-02-18 12:13:11.057+01	\N
01KJ73NTRJWBPYFP7EYHWWQ8SQ	raj@gmail.com	emailpass	authid_01KJ73NTRK01VREM6180A18SXV	\N	{"password": "c2NyeXB0AA8AAAAIAAAAAVN5DBt3lGdy/gaZlNUd9JkgvQyV6oQuKzwkDdRoBxIMtoW8VdRi/KwbVQnsBo7CP1MGYC/iKR5qDm+eMAr5aj10qlkHk81orlsK9zPvA6Te"}	2026-02-24 06:59:11.891+01	2026-02-24 06:59:11.891+01	\N
01KJ749TPWQDSY6WC4JCQBC4QD	rajesh.admin@example.com	emailpass	authid_01KJ749TPX48999KTHHFHHF4AX	\N	{"password": "c2NyeXB0AA8AAAAIAAAAAR+z5wYiQTAqXtyGkgvOn2BWhbpDfO/SUy4crVKc+icgfeytICVr5V8Di0013wlwCGjQ2/oOmEeYLLBWD6Yn0HPr2B0pC7jJKluLSa06oZH9"}	2026-02-24 07:10:07.197+01	2026-02-24 07:10:07.197+01	\N
01KJ7WBJ2HRDFEFQAQMRJRSQ80	h@gmail.com	emailpass	authid_01KJ7WBJ2JGD2PZ6NFZT12BQDY	\N	{"password": "c2NyeXB0AA8AAAAIAAAAASRyzMz6DAsgKgzHkttGVHK2DSci+WxixxiOgowCKHwBzVNh2X8BdXKt2HSadHvP1tQTAayerMbHc7R7NUWOJT5fuNA7bCKwCUpTeEqILFEp"}	2026-02-24 14:10:29.715+01	2026-02-24 14:10:29.715+01	\N
01KKGXWC3GWY1FKSPHGV3RG4MT	info@greentech-berlin.de	emailpass	authid_01KKGXWC3HZFTJQSW7BXV9J3D0	\N	{"password": "c2NyeXB0AA8AAAAIAAAAASJr6hJsj42ivmwHqYW30gVWTP/2DTd7S+l/dOCrrXZ9fwIRQZL1kyjTsf0bMpJ9iCqXsPsrS+nTxGf8Ve/Wsq9j3fAWcXNCPXY/zEZ0akMb"}	2026-03-12 12:46:00.945+01	2026-03-12 12:46:00.945+01	\N
01KM5MB1E89Q5XD29X7CS4P8ZJ	admin@biomket.com	emailpass	authid_01KM5MB1EA8FR281WXK9MZ8357	\N	{"password": "c2NyeXB0AA8AAAAIAAAAAeUD9G/8SDDMK+jYxGUyrarNDRabHwGjCmgQ8KGk6f6bJQJeEt2C/MFuZ77mBWMOZW68hpfVhTN7RTpJ0fhfY5X3dRdGWQgMgFGbdtMXmJ4T"}	2026-03-20 13:43:18.859+01	2026-03-20 13:43:18.859+01	\N
\.


--
-- Data for Name: publishable_api_key_sales_channel; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.publishable_api_key_sales_channel (publishable_key_id, sales_channel_id, id, created_at, updated_at, deleted_at) FROM stdin;
apk_01KHR065GXGW5JTCAGEG5RQN1R	sc_01KHR065FHBMN74HAYAXNYR64M	pksc_01KKGY537C1WB7KASCCRGB7R9Y	2026-02-18 10:09:36.421841+01	2026-02-18 10:09:36.421841+01	\N
\.


--
-- Data for Name: refund; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.refund (id, amount, raw_amount, payment_id, created_at, updated_at, deleted_at, created_by, metadata, refund_reason_id, note) FROM stdin;
\.


--
-- Data for Name: refund_reason; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.refund_reason (id, label, description, metadata, created_at, updated_at, deleted_at, code) FROM stdin;
refr_01KHQVJNP7D2KDXWRMZDYAREY4	Shipping Issue	Refund due to lost, delayed, or misdelivered shipment	\N	2026-02-18 08:49:03.178739+01	2026-02-18 08:49:03.178739+01	\N	shipping_issue
refr_01KHQVJNP71RTMSKV45TD38VEX	Customer Care Adjustment	Refund given as goodwill or compensation for inconvenience	\N	2026-02-18 08:49:03.178739+01	2026-02-18 08:49:03.178739+01	\N	customer_care_adjustment
refr_01KHQVJNP8K9WGAQ9DVP0E6WK5	Pricing Error	Refund to correct an overcharge, missing discount, or incorrect price	\N	2026-02-18 08:49:03.178739+01	2026-02-18 08:49:03.178739+01	\N	pricing_error
\.


--
-- Data for Name: region; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.region (id, name, currency_code, metadata, created_at, updated_at, deleted_at, automatic_taxes) FROM stdin;
reg_01KHR06ACFBR6CGN33WGPFPJ65	Europe	eur	\N	2026-02-18 10:09:41.4+01	2026-02-18 10:09:41.4+01	\N	t
\.


--
-- Data for Name: region_country; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.region_country (iso_2, iso_3, num_code, name, display_name, region_id, metadata, created_at, updated_at, deleted_at) FROM stdin;
af	afg	004	AFGHANISTAN	Afghanistan	\N	\N	2026-02-18 08:49:10.191+01	2026-02-18 08:49:10.192+01	\N
al	alb	008	ALBANIA	Albania	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
dz	dza	012	ALGERIA	Algeria	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
as	asm	016	AMERICAN SAMOA	American Samoa	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
ad	and	020	ANDORRA	Andorra	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
ao	ago	024	ANGOLA	Angola	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
ai	aia	660	ANGUILLA	Anguilla	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
aq	ata	010	ANTARCTICA	Antarctica	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
ag	atg	028	ANTIGUA AND BARBUDA	Antigua and Barbuda	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
ar	arg	032	ARGENTINA	Argentina	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
am	arm	051	ARMENIA	Armenia	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
aw	abw	533	ARUBA	Aruba	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
au	aus	036	AUSTRALIA	Australia	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
at	aut	040	AUSTRIA	Austria	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
az	aze	031	AZERBAIJAN	Azerbaijan	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bs	bhs	044	BAHAMAS	Bahamas	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bh	bhr	048	BAHRAIN	Bahrain	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bd	bgd	050	BANGLADESH	Bangladesh	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bb	brb	052	BARBADOS	Barbados	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
by	blr	112	BELARUS	Belarus	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
be	bel	056	BELGIUM	Belgium	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bz	blz	084	BELIZE	Belize	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bj	ben	204	BENIN	Benin	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bm	bmu	060	BERMUDA	Bermuda	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bt	btn	064	BHUTAN	Bhutan	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bo	bol	068	BOLIVIA	Bolivia	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bq	bes	535	BONAIRE, SINT EUSTATIUS AND SABA	Bonaire, Sint Eustatius and Saba	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
ba	bih	070	BOSNIA AND HERZEGOVINA	Bosnia and Herzegovina	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bw	bwa	072	BOTSWANA	Botswana	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bv	bvd	074	BOUVET ISLAND	Bouvet Island	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
br	bra	076	BRAZIL	Brazil	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
io	iot	086	BRITISH INDIAN OCEAN TERRITORY	British Indian Ocean Territory	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bn	brn	096	BRUNEI DARUSSALAM	Brunei Darussalam	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bg	bgr	100	BULGARIA	Bulgaria	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bf	bfa	854	BURKINA FASO	Burkina Faso	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
bi	bdi	108	BURUNDI	Burundi	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
kh	khm	116	CAMBODIA	Cambodia	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cm	cmr	120	CAMEROON	Cameroon	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
ca	can	124	CANADA	Canada	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cv	cpv	132	CAPE VERDE	Cape Verde	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
ky	cym	136	CAYMAN ISLANDS	Cayman Islands	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cf	caf	140	CENTRAL AFRICAN REPUBLIC	Central African Republic	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
td	tcd	148	CHAD	Chad	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cl	chl	152	CHILE	Chile	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cn	chn	156	CHINA	China	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cx	cxr	162	CHRISTMAS ISLAND	Christmas Island	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cc	cck	166	COCOS (KEELING) ISLANDS	Cocos (Keeling) Islands	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
co	col	170	COLOMBIA	Colombia	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
km	com	174	COMOROS	Comoros	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cg	cog	178	CONGO	Congo	\N	\N	2026-02-18 08:49:10.193+01	2026-02-18 08:49:10.193+01	\N
cd	cod	180	CONGO, THE DEMOCRATIC REPUBLIC OF THE	Congo, the Democratic Republic of the	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ck	cok	184	COOK ISLANDS	Cook Islands	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
cr	cri	188	COSTA RICA	Costa Rica	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ci	civ	384	COTE D'IVOIRE	Cote D'Ivoire	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
hr	hrv	191	CROATIA	Croatia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
cu	cub	192	CUBA	Cuba	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
cw	cuw	531	CURAÇAO	Curaçao	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
cy	cyp	196	CYPRUS	Cyprus	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
cz	cze	203	CZECH REPUBLIC	Czech Republic	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
dj	dji	262	DJIBOUTI	Djibouti	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
dm	dma	212	DOMINICA	Dominica	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
do	dom	214	DOMINICAN REPUBLIC	Dominican Republic	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ec	ecu	218	ECUADOR	Ecuador	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
eg	egy	818	EGYPT	Egypt	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
sv	slv	222	EL SALVADOR	El Salvador	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gq	gnq	226	EQUATORIAL GUINEA	Equatorial Guinea	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
er	eri	232	ERITREA	Eritrea	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ee	est	233	ESTONIA	Estonia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
et	eth	231	ETHIOPIA	Ethiopia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
fk	flk	238	FALKLAND ISLANDS (MALVINAS)	Falkland Islands (Malvinas)	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
fo	fro	234	FAROE ISLANDS	Faroe Islands	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
fj	fji	242	FIJI	Fiji	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
fi	fin	246	FINLAND	Finland	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gf	guf	254	FRENCH GUIANA	French Guiana	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
pf	pyf	258	FRENCH POLYNESIA	French Polynesia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
tf	atf	260	FRENCH SOUTHERN TERRITORIES	French Southern Territories	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ga	gab	266	GABON	Gabon	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gm	gmb	270	GAMBIA	Gambia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ge	geo	268	GEORGIA	Georgia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gh	gha	288	GHANA	Ghana	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gi	gib	292	GIBRALTAR	Gibraltar	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gr	grc	300	GREECE	Greece	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gl	grl	304	GREENLAND	Greenland	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gd	grd	308	GRENADA	Grenada	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gp	glp	312	GUADELOUPE	Guadeloupe	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gu	gum	316	GUAM	Guam	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gt	gtm	320	GUATEMALA	Guatemala	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gg	ggy	831	GUERNSEY	Guernsey	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gn	gin	324	GUINEA	Guinea	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gw	gnb	624	GUINEA-BISSAU	Guinea-Bissau	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
gy	guy	328	GUYANA	Guyana	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ht	hti	332	HAITI	Haiti	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
hm	hmd	334	HEARD ISLAND AND MCDONALD ISLANDS	Heard Island And Mcdonald Islands	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
va	vat	336	HOLY SEE (VATICAN CITY STATE)	Holy See (Vatican City State)	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
hn	hnd	340	HONDURAS	Honduras	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
hk	hkg	344	HONG KONG	Hong Kong	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
hu	hun	348	HUNGARY	Hungary	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
is	isl	352	ICELAND	Iceland	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
in	ind	356	INDIA	India	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
id	idn	360	INDONESIA	Indonesia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ir	irn	364	IRAN, ISLAMIC REPUBLIC OF	Iran, Islamic Republic of	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
iq	irq	368	IRAQ	Iraq	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ie	irl	372	IRELAND	Ireland	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
im	imn	833	ISLE OF MAN	Isle Of Man	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
il	isr	376	ISRAEL	Israel	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
jm	jam	388	JAMAICA	Jamaica	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
jp	jpn	392	JAPAN	Japan	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
je	jey	832	JERSEY	Jersey	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
jo	jor	400	JORDAN	Jordan	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
kz	kaz	398	KAZAKHSTAN	Kazakhstan	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ke	ken	404	KENYA	Kenya	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ki	kir	296	KIRIBATI	Kiribati	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
kp	prk	408	KOREA, DEMOCRATIC PEOPLE'S REPUBLIC OF	Korea, Democratic People's Republic of	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
kr	kor	410	KOREA, REPUBLIC OF	Korea, Republic of	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
xk	xkx	900	KOSOVO	Kosovo	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
kw	kwt	414	KUWAIT	Kuwait	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
kg	kgz	417	KYRGYZSTAN	Kyrgyzstan	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
la	lao	418	LAO PEOPLE'S DEMOCRATIC REPUBLIC	Lao People's Democratic Republic	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
lv	lva	428	LATVIA	Latvia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
lb	lbn	422	LEBANON	Lebanon	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ls	lso	426	LESOTHO	Lesotho	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
lr	lbr	430	LIBERIA	Liberia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ly	lby	434	LIBYA	Libya	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
li	lie	438	LIECHTENSTEIN	Liechtenstein	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
lt	ltu	440	LITHUANIA	Lithuania	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
lu	lux	442	LUXEMBOURG	Luxembourg	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mo	mac	446	MACAO	Macao	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mg	mdg	450	MADAGASCAR	Madagascar	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mw	mwi	454	MALAWI	Malawi	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
my	mys	458	MALAYSIA	Malaysia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mv	mdv	462	MALDIVES	Maldives	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ml	mli	466	MALI	Mali	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mt	mlt	470	MALTA	Malta	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mh	mhl	584	MARSHALL ISLANDS	Marshall Islands	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mq	mtq	474	MARTINIQUE	Martinique	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mr	mrt	478	MAURITANIA	Mauritania	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mu	mus	480	MAURITIUS	Mauritius	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
yt	myt	175	MAYOTTE	Mayotte	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mx	mex	484	MEXICO	Mexico	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
fm	fsm	583	MICRONESIA, FEDERATED STATES OF	Micronesia, Federated States of	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
md	mda	498	MOLDOVA, REPUBLIC OF	Moldova, Republic of	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mc	mco	492	MONACO	Monaco	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mn	mng	496	MONGOLIA	Mongolia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
me	mne	499	MONTENEGRO	Montenegro	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ms	msr	500	MONTSERRAT	Montserrat	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ma	mar	504	MOROCCO	Morocco	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mz	moz	508	MOZAMBIQUE	Mozambique	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mm	mmr	104	MYANMAR	Myanmar	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
na	nam	516	NAMIBIA	Namibia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
nr	nru	520	NAURU	Nauru	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
np	npl	524	NEPAL	Nepal	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
nl	nld	528	NETHERLANDS	Netherlands	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
nc	ncl	540	NEW CALEDONIA	New Caledonia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
nz	nzl	554	NEW ZEALAND	New Zealand	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ni	nic	558	NICARAGUA	Nicaragua	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ne	ner	562	NIGER	Niger	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ng	nga	566	NIGERIA	Nigeria	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
nu	niu	570	NIUE	Niue	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
nf	nfk	574	NORFOLK ISLAND	Norfolk Island	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mk	mkd	807	NORTH MACEDONIA	North Macedonia	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
mp	mnp	580	NORTHERN MARIANA ISLANDS	Northern Mariana Islands	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
no	nor	578	NORWAY	Norway	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
om	omn	512	OMAN	Oman	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
pk	pak	586	PAKISTAN	Pakistan	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
pw	plw	585	PALAU	Palau	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
ps	pse	275	PALESTINIAN TERRITORY, OCCUPIED	Palestinian Territory, Occupied	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
pa	pan	591	PANAMA	Panama	\N	\N	2026-02-18 08:49:10.194+01	2026-02-18 08:49:10.194+01	\N
pg	png	598	PAPUA NEW GUINEA	Papua New Guinea	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
py	pry	600	PARAGUAY	Paraguay	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
pe	per	604	PERU	Peru	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ph	phl	608	PHILIPPINES	Philippines	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
pn	pcn	612	PITCAIRN	Pitcairn	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
pl	pol	616	POLAND	Poland	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
pt	prt	620	PORTUGAL	Portugal	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
pr	pri	630	PUERTO RICO	Puerto Rico	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
qa	qat	634	QATAR	Qatar	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
re	reu	638	REUNION	Reunion	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ro	rom	642	ROMANIA	Romania	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ru	rus	643	RUSSIAN FEDERATION	Russian Federation	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
rw	rwa	646	RWANDA	Rwanda	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
bl	blm	652	SAINT BARTHÉLEMY	Saint Barthélemy	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sh	shn	654	SAINT HELENA	Saint Helena	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
kn	kna	659	SAINT KITTS AND NEVIS	Saint Kitts and Nevis	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
lc	lca	662	SAINT LUCIA	Saint Lucia	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
mf	maf	663	SAINT MARTIN (FRENCH PART)	Saint Martin (French part)	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
pm	spm	666	SAINT PIERRE AND MIQUELON	Saint Pierre and Miquelon	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
vc	vct	670	SAINT VINCENT AND THE GRENADINES	Saint Vincent and the Grenadines	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ws	wsm	882	SAMOA	Samoa	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sm	smr	674	SAN MARINO	San Marino	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
st	stp	678	SAO TOME AND PRINCIPE	Sao Tome and Principe	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sa	sau	682	SAUDI ARABIA	Saudi Arabia	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sn	sen	686	SENEGAL	Senegal	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
rs	srb	688	SERBIA	Serbia	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sc	syc	690	SEYCHELLES	Seychelles	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sl	sle	694	SIERRA LEONE	Sierra Leone	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sg	sgp	702	SINGAPORE	Singapore	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sx	sxm	534	SINT MAARTEN	Sint Maarten	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sk	svk	703	SLOVAKIA	Slovakia	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
si	svn	705	SLOVENIA	Slovenia	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sb	slb	090	SOLOMON ISLANDS	Solomon Islands	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
so	som	706	SOMALIA	Somalia	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
za	zaf	710	SOUTH AFRICA	South Africa	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
gs	sgs	239	SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS	South Georgia and the South Sandwich Islands	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ss	ssd	728	SOUTH SUDAN	South Sudan	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
lk	lka	144	SRI LANKA	Sri Lanka	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sd	sdn	729	SUDAN	Sudan	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sr	sur	740	SURINAME	Suriname	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sj	sjm	744	SVALBARD AND JAN MAYEN	Svalbard and Jan Mayen	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sz	swz	748	SWAZILAND	Swaziland	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ch	che	756	SWITZERLAND	Switzerland	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
sy	syr	760	SYRIAN ARAB REPUBLIC	Syrian Arab Republic	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tw	twn	158	TAIWAN, PROVINCE OF CHINA	Taiwan, Province of China	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tj	tjk	762	TAJIKISTAN	Tajikistan	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tz	tza	834	TANZANIA, UNITED REPUBLIC OF	Tanzania, United Republic of	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
th	tha	764	THAILAND	Thailand	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tl	tls	626	TIMOR LESTE	Timor Leste	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tg	tgo	768	TOGO	Togo	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tk	tkl	772	TOKELAU	Tokelau	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
to	ton	776	TONGA	Tonga	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tt	tto	780	TRINIDAD AND TOBAGO	Trinidad and Tobago	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tn	tun	788	TUNISIA	Tunisia	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tr	tur	792	TURKEY	Turkey	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tm	tkm	795	TURKMENISTAN	Turkmenistan	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tc	tca	796	TURKS AND CAICOS ISLANDS	Turks and Caicos Islands	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
tv	tuv	798	TUVALU	Tuvalu	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ug	uga	800	UGANDA	Uganda	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ua	ukr	804	UKRAINE	Ukraine	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ae	are	784	UNITED ARAB EMIRATES	United Arab Emirates	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
us	usa	840	UNITED STATES	United States	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
um	umi	581	UNITED STATES MINOR OUTLYING ISLANDS	United States Minor Outlying Islands	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
uy	ury	858	URUGUAY	Uruguay	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
uz	uzb	860	UZBEKISTAN	Uzbekistan	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
vu	vut	548	VANUATU	Vanuatu	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ve	ven	862	VENEZUELA	Venezuela	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
vn	vnm	704	VIET NAM	Viet Nam	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
vg	vgb	092	VIRGIN ISLANDS, BRITISH	Virgin Islands, British	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
vi	vir	850	VIRGIN ISLANDS, U.S.	Virgin Islands, U.S.	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
wf	wlf	876	WALLIS AND FUTUNA	Wallis and Futuna	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
eh	esh	732	WESTERN SAHARA	Western Sahara	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ye	yem	887	YEMEN	Yemen	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
zm	zmb	894	ZAMBIA	Zambia	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
zw	zwe	716	ZIMBABWE	Zimbabwe	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
ax	ala	248	ÅLAND ISLANDS	Åland Islands	\N	\N	2026-02-18 08:49:10.195+01	2026-02-18 08:49:10.195+01	\N
dk	dnk	208	DENMARK	Denmark	reg_01KHR06ACFBR6CGN33WGPFPJ65	\N	2026-02-18 08:49:10.194+01	2026-02-18 10:09:41.401+01	\N
fr	fra	250	FRANCE	France	reg_01KHR06ACFBR6CGN33WGPFPJ65	\N	2026-02-18 08:49:10.194+01	2026-02-18 10:09:41.401+01	\N
de	deu	276	GERMANY	Germany	reg_01KHR06ACFBR6CGN33WGPFPJ65	\N	2026-02-18 08:49:10.194+01	2026-02-18 10:09:41.401+01	\N
it	ita	380	ITALY	Italy	reg_01KHR06ACFBR6CGN33WGPFPJ65	\N	2026-02-18 08:49:10.194+01	2026-02-18 10:09:41.401+01	\N
es	esp	724	SPAIN	Spain	reg_01KHR06ACFBR6CGN33WGPFPJ65	\N	2026-02-18 08:49:10.195+01	2026-02-18 10:09:41.401+01	\N
se	swe	752	SWEDEN	Sweden	reg_01KHR06ACFBR6CGN33WGPFPJ65	\N	2026-02-18 08:49:10.195+01	2026-02-18 10:09:41.401+01	\N
gb	gbr	826	UNITED KINGDOM	United Kingdom	reg_01KHR06ACFBR6CGN33WGPFPJ65	\N	2026-02-18 08:49:10.195+01	2026-02-18 10:09:41.401+01	\N
\.


--
-- Data for Name: region_payment_provider; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.region_payment_provider (region_id, payment_provider_id, id, created_at, updated_at, deleted_at) FROM stdin;
reg_01KHR06ACFBR6CGN33WGPFPJ65	pp_system_default	regpp_01KHR06ADPQXYQV6CVMNKDQH69	2026-02-18 10:09:41.42877+01	2026-02-18 10:09:41.42877+01	\N
\.


--
-- Data for Name: reservation_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.reservation_item (id, created_at, updated_at, deleted_at, line_item_id, location_id, quantity, external_id, description, created_by, metadata, inventory_item_id, allow_backorder, raw_quantity) FROM stdin;
\.


--
-- Data for Name: return; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.return (id, order_id, claim_id, exchange_id, order_version, display_id, status, no_notification, refund_amount, raw_refund_amount, metadata, created_at, updated_at, deleted_at, received_at, canceled_at, location_id, requested_at, created_by) FROM stdin;
\.


--
-- Data for Name: return_fulfillment; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.return_fulfillment (return_id, fulfillment_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: return_item; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.return_item (id, return_id, reason_id, item_id, quantity, raw_quantity, received_quantity, raw_received_quantity, note, metadata, created_at, updated_at, deleted_at, damaged_quantity, raw_damaged_quantity) FROM stdin;
\.


--
-- Data for Name: return_reason; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.return_reason (id, value, label, description, metadata, parent_return_reason_id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: sales_channel; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.sales_channel (id, name, description, is_disabled, metadata, created_at, updated_at, deleted_at) FROM stdin;
sc_01KHR065FHBMN74HAYAXNYR64M	Default Sales Channel	Created by Medusa	f	\N	2026-02-18 10:09:36.37+01	2026-02-18 10:09:36.37+01	\N
\.


--
-- Data for Name: sales_channel_stock_location; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.sales_channel_stock_location (sales_channel_id, stock_location_id, id, created_at, updated_at, deleted_at) FROM stdin;
sc_01KHR065FHBMN74HAYAXNYR64M	sloc_01KHR06AECQ83WRB18QG1JFH8A	scloc_01KKGY536JC0F3PPC3MPVKNTX9	2026-02-18 10:09:41.584612+01	2026-02-18 10:09:41.584612+01	\N
\.


--
-- Data for Name: script_migrations; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.script_migrations (id, script_name, created_at, finished_at) FROM stdin;
1	migrate-product-shipping-profile.js	2026-02-18 08:49:11.516657+01	2026-02-18 08:49:11.547778+01
2	migrate-tax-region-provider.js	2026-02-18 08:49:11.550395+01	2026-02-18 08:49:11.558646+01
\.


--
-- Data for Name: service_zone; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.service_zone (id, name, metadata, fulfillment_set_id, created_at, updated_at, deleted_at) FROM stdin;
serzo_01KHR06AF5NZYZ4WC40FYTB14W	Europe	\N	fuset_01KHR06AF6XK8T5103FKW12SQG	2026-02-18 10:09:41.478+01	2026-02-18 10:09:41.478+01	\N
\.


--
-- Data for Name: shipping_option; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.shipping_option (id, name, price_type, service_zone_id, shipping_profile_id, provider_id, data, metadata, shipping_option_type_id, created_at, updated_at, deleted_at) FROM stdin;
so_01KKGY53A9V2KFJHFB1YVA8RMW	Economy Transport	flat	serzo_01KHR06AF5NZYZ4WC40FYTB14W	sp_01KHQVJXQNA3H68YS4PSBZW71A	manual_manual	\N	{"display_price": "€30.00", "transport_type": "economy", "delivery_window": "5-7 days"}	sotype_01KKGY53A8KT09T8EZN0KCRS7E	2026-03-12 12:50:46.859+01	2026-03-12 12:50:46.859+01	\N
so_01KKGY53AA14FFHYQCRKB7PB3C	Standard Transport	flat	serzo_01KHR06AF5NZYZ4WC40FYTB14W	sp_01KHQVJXQNA3H68YS4PSBZW71A	manual_manual	\N	{"display_price": "€50.00", "transport_type": "standard", "delivery_window": "2-3 days"}	sotype_01KKGY53A9W6TDRH91HCC0YPDR	2026-03-12 12:50:46.859+01	2026-03-12 12:50:46.859+01	\N
so_01KKGY53AAV5W4REVZGNNM427T	Express Transport	flat	serzo_01KHR06AF5NZYZ4WC40FYTB14W	sp_01KHQVJXQNA3H68YS4PSBZW71A	manual_manual	\N	{"display_price": "€120.00", "transport_type": "express", "delivery_window": "24 hours"}	sotype_01KKGY53AA5GFW531WYD8N5C8X	2026-03-12 12:50:46.859+01	2026-03-12 12:50:46.859+01	\N
\.


--
-- Data for Name: shipping_option_price_set; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.shipping_option_price_set (shipping_option_id, price_set_id, id, created_at, updated_at, deleted_at) FROM stdin;
so_01KHR06AGSTMG1ADY51Q9Y6CM5	pset_01KHR06AHBHW0TCAFWJ4ANFZHE	sops_01KHR06AJ93CSGD6MYSVYBPPST	2026-02-18 10:09:41.577622+01	2026-02-18 10:09:41.577622+01	\N
so_01KHR06AGSKZPAHVRDVAA9MDFK	pset_01KHR06AHCM19DJZ359VCGWRGB	sops_01KHR06AJ9FWC4QHAWK16T2QE9	2026-02-18 10:09:41.577622+01	2026-02-18 10:09:41.577622+01	\N
so_01KKGY53A9V2KFJHFB1YVA8RMW	pset_01KKGY53BD8F54YD24DKQWB921	sops_01KKGY53CZR9JZSKJ0Q4R7PC36	2026-03-12 12:50:46.943404+01	2026-03-12 12:50:46.943404+01	\N
so_01KKGY53AA14FFHYQCRKB7PB3C	pset_01KKGY53BDQA61GXCSTZADDE49	sops_01KKGY53D0QZPDKKHSQ6SE5SNR	2026-03-12 12:50:46.943404+01	2026-03-12 12:50:46.943404+01	\N
so_01KKGY53AAV5W4REVZGNNM427T	pset_01KKGY53BERN5R1JVSN24024VX	sops_01KKGY53D00STC7X34KJDKENN4	2026-03-12 12:50:46.943404+01	2026-03-12 12:50:46.943404+01	\N
\.


--
-- Data for Name: shipping_option_rule; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.shipping_option_rule (id, attribute, operator, value, shipping_option_id, created_at, updated_at, deleted_at) FROM stdin;
sorul_01KKGY53A9CA0Q3662QJ4PHSTR	enabled_in_store	eq	"true"	so_01KKGY53A9V2KFJHFB1YVA8RMW	2026-03-12 12:50:46.859+01	2026-03-12 12:50:46.859+01	\N
sorul_01KKGY53A9GEQD3Q70K1DGC4Q1	is_return	eq	"false"	so_01KKGY53A9V2KFJHFB1YVA8RMW	2026-03-12 12:50:46.86+01	2026-03-12 12:50:46.86+01	\N
sorul_01KKGY53A9Z73QPQCKD1DSDC27	enabled_in_store	eq	"true"	so_01KKGY53AA14FFHYQCRKB7PB3C	2026-03-12 12:50:46.86+01	2026-03-12 12:50:46.86+01	\N
sorul_01KKGY53A9H09P4DRE268XB1JX	is_return	eq	"false"	so_01KKGY53AA14FFHYQCRKB7PB3C	2026-03-12 12:50:46.86+01	2026-03-12 12:50:46.86+01	\N
sorul_01KKGY53AAACJ2SA1WR2BD0PC5	enabled_in_store	eq	"true"	so_01KKGY53AAV5W4REVZGNNM427T	2026-03-12 12:50:46.86+01	2026-03-12 12:50:46.86+01	\N
sorul_01KKGY53AABSWBZPBEWEE6P439	is_return	eq	"false"	so_01KKGY53AAV5W4REVZGNNM427T	2026-03-12 12:50:46.86+01	2026-03-12 12:50:46.86+01	\N
\.


--
-- Data for Name: shipping_option_type; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.shipping_option_type (id, label, description, code, created_at, updated_at, deleted_at) FROM stdin;
sotype_01KHR06AGR9GN6ARAPWQT6361A	Standard	Ship in 2-3 days.	standard	2026-02-18 10:09:41.53+01	2026-02-18 10:09:41.53+01	\N
sotype_01KHR06AGSH5063BT39KSDP2AT	Express	Ship in 24 hours.	express	2026-02-18 10:09:41.53+01	2026-02-18 10:09:41.53+01	\N
sotype_01KKGY53A8KT09T8EZN0KCRS7E	Economy	5-7 business days delivery	biomket_economy	2026-03-12 12:50:46.859+01	2026-03-12 12:50:46.859+01	\N
sotype_01KKGY53A9W6TDRH91HCC0YPDR	Standard	2-3 business days delivery	biomket_standard	2026-03-12 12:50:46.859+01	2026-03-12 12:50:46.859+01	\N
sotype_01KKGY53AA5GFW531WYD8N5C8X	Express	24 hour express delivery	biomket_express	2026-03-12 12:50:46.859+01	2026-03-12 12:50:46.859+01	\N
\.


--
-- Data for Name: shipping_profile; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.shipping_profile (id, name, type, metadata, created_at, updated_at, deleted_at) FROM stdin;
sp_01KHQVJXQNA3H68YS4PSBZW71A	Default Shipping Profile	default	\N	2026-02-18 08:49:11.541+01	2026-02-18 08:49:11.541+01	\N
sp_01KKGZ21DKJ9KHWPZ0WVCSQKQB	Europe	1	\N	2026-03-12 13:06:35.188+01	2026-03-12 13:06:45.611+01	2026-03-12 13:06:45.611+01
\.


--
-- Data for Name: stock_location; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.stock_location (id, created_at, updated_at, deleted_at, name, address_id, metadata) FROM stdin;
sloc_01KHR06AECQ83WRB18QG1JFH8A	2026-02-18 10:09:41.452+01	2026-02-18 10:09:41.452+01	\N	European Warehouse	laddr_01KHR06AEBMCQQ32E1BRJDK6MB	\N
sloc_01KHTRJSA0DT0CQCF4YHNCYQ8N	2026-02-19 11:54:24.576+01	2026-02-19 11:54:24.576+01	\N	European Warehouse	laddr_01KHTRJSA0RHN8TERKNN4KP3E5	\N
\.


--
-- Data for Name: stock_location_address; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.stock_location_address (id, created_at, updated_at, deleted_at, address_1, address_2, company, city, country_code, phone, province, postal_code, metadata) FROM stdin;
laddr_01KHR06AEBMCQQ32E1BRJDK6MB	2026-02-18 10:09:41.452+01	2026-02-18 10:09:41.452+01	\N		\N	\N	Copenhagen	DK	\N	\N	\N	\N
laddr_01KHTRJSA0RHN8TERKNN4KP3E5	2026-02-19 11:54:24.576+01	2026-02-19 11:54:24.576+01	\N		\N	\N	Copenhagen	DK	\N	\N	\N	\N
\.


--
-- Data for Name: store; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.store (id, name, default_sales_channel_id, default_region_id, default_location_id, metadata, created_at, updated_at, deleted_at) FROM stdin;
store_01KHR065G0Y73F8NKWAZJB8T7Y	Biomket	sc_01KHR065FHBMN74HAYAXNYR64M	\N	sloc_01KHR06AECQ83WRB18QG1JFH8A	\N	2026-02-18 10:09:36.38311+01	2026-02-18 10:09:36.38311+01	\N
\.


--
-- Data for Name: store_currency; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.store_currency (id, currency_code, is_default, store_id, created_at, updated_at, deleted_at) FROM stdin;
stocur_01KKGY53119HBXRW6SY7BM9589	eur	t	store_01KHR065G0Y73F8NKWAZJB8T7Y	2026-03-12 12:50:46.552665+01	2026-03-12 12:50:46.552665+01	\N
stocur_01KKGY5311WNTR13Z33QAR6Q18	usd	f	store_01KHR065G0Y73F8NKWAZJB8T7Y	2026-03-12 12:50:46.552665+01	2026-03-12 12:50:46.552665+01	\N
\.


--
-- Data for Name: store_locale; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.store_locale (id, locale_code, store_id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: tax_provider; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.tax_provider (id, is_enabled, created_at, updated_at, deleted_at) FROM stdin;
tp_system	t	2026-02-18 08:49:10.247+01	2026-02-18 08:49:10.247+01	\N
\.


--
-- Data for Name: tax_rate; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.tax_rate (id, rate, code, name, is_default, is_combinable, tax_region_id, metadata, created_at, updated_at, created_by, deleted_at) FROM stdin;
\.


--
-- Data for Name: tax_rate_rule; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.tax_rate_rule (id, tax_rate_id, reference_id, reference, metadata, created_at, updated_at, created_by, deleted_at) FROM stdin;
\.


--
-- Data for Name: tax_region; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.tax_region (id, provider_id, country_code, province_code, parent_id, metadata, created_at, updated_at, created_by, deleted_at) FROM stdin;
txreg_01KHR06ADZNTKV0T2MZWJEWSVQ	tp_system	gb	\N	\N	\N	2026-02-18 10:09:41.44+01	2026-02-18 10:09:41.44+01	\N	\N
txreg_01KHR06ADZ1GTWDD72AA1JT7FB	tp_system	de	\N	\N	\N	2026-02-18 10:09:41.44+01	2026-02-18 10:09:41.44+01	\N	\N
txreg_01KHR06ADZT466NEDS17WJGF96	tp_system	dk	\N	\N	\N	2026-02-18 10:09:41.44+01	2026-02-18 10:09:41.44+01	\N	\N
txreg_01KHR06ADZCSTSS2M4R4871FY8	tp_system	se	\N	\N	\N	2026-02-18 10:09:41.44+01	2026-02-18 10:09:41.44+01	\N	\N
txreg_01KHR06ADZ9C1FY39SD8QX4R0K	tp_system	fr	\N	\N	\N	2026-02-18 10:09:41.44+01	2026-02-18 10:09:41.44+01	\N	\N
txreg_01KHR06AE00BDWJD3F8YCVF5B8	tp_system	es	\N	\N	\N	2026-02-18 10:09:41.44+01	2026-02-18 10:09:41.44+01	\N	\N
txreg_01KHR06AE0HEAEAD64GEM6YQ3Q	tp_system	it	\N	\N	\N	2026-02-18 10:09:41.44+01	2026-02-18 10:09:41.44+01	\N	\N
\.


--
-- Data for Name: user; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public."user" (id, first_name, last_name, email, avatar_url, metadata, created_at, updated_at, deleted_at) FROM stdin;
user_01KM5MB17TG6KEQMX4VDSXF5EJ	Admin	Biomket	admin@biomket.com	\N	\N	2026-03-20 13:43:18.65+01	2026-03-20 13:43:46.157+01	\N
\.


--
-- Data for Name: user_preference; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.user_preference (id, user_id, key, value, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: user_rbac_role; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.user_rbac_role (user_id, rbac_role_id, id, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: view_configuration; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.view_configuration (id, entity, name, user_id, is_system_default, configuration, created_at, updated_at, deleted_at) FROM stdin;
\.


--
-- Data for Name: waste_attribute; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.waste_attribute (id, code, location, created_at, updated_at, deleted_at) FROM stdin;
01KKGVQ9GA8GTWZBN4A642WAQA	02 01 06	Valencia, Spain	2026-03-12 12:08:17.291+01	2026-03-12 12:08:17.291+01	\N
\.


--
-- Data for Name: workflow_execution; Type: TABLE DATA; Schema: public; Owner: biomket
--

COPY public.workflow_execution (id, workflow_id, transaction_id, execution, context, state, created_at, updated_at, deleted_at, retention_time, run_id) FROM stdin;
\.


--
-- Name: link_module_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: biomket
--

SELECT pg_catalog.setval('public.link_module_migrations_id_seq', 251, true);


--
-- Name: mikro_orm_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: biomket
--

SELECT pg_catalog.setval('public.mikro_orm_migrations_id_seq', 166, true);


--
-- Name: order_change_action_ordering_seq; Type: SEQUENCE SET; Schema: public; Owner: biomket
--

SELECT pg_catalog.setval('public.order_change_action_ordering_seq', 1, false);


--
-- Name: order_claim_display_id_seq; Type: SEQUENCE SET; Schema: public; Owner: biomket
--

SELECT pg_catalog.setval('public.order_claim_display_id_seq', 1, false);


--
-- Name: order_display_id_seq; Type: SEQUENCE SET; Schema: public; Owner: biomket
--

SELECT pg_catalog.setval('public.order_display_id_seq', 1, false);


--
-- Name: order_exchange_display_id_seq; Type: SEQUENCE SET; Schema: public; Owner: biomket
--

SELECT pg_catalog.setval('public.order_exchange_display_id_seq', 1, false);


--
-- Name: return_display_id_seq; Type: SEQUENCE SET; Schema: public; Owner: biomket
--

SELECT pg_catalog.setval('public.return_display_id_seq', 1, false);


--
-- Name: script_migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: biomket
--

SELECT pg_catalog.setval('public.script_migrations_id_seq', 2, true);


--
-- Name: account_holder account_holder_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.account_holder
    ADD CONSTRAINT account_holder_pkey PRIMARY KEY (id);


--
-- Name: api_key api_key_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.api_key
    ADD CONSTRAINT api_key_pkey PRIMARY KEY (id);


--
-- Name: application_method_buy_rules application_method_buy_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.application_method_buy_rules
    ADD CONSTRAINT application_method_buy_rules_pkey PRIMARY KEY (application_method_id, promotion_rule_id);


--
-- Name: application_method_target_rules application_method_target_rules_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.application_method_target_rules
    ADD CONSTRAINT application_method_target_rules_pkey PRIMARY KEY (application_method_id, promotion_rule_id);


--
-- Name: auth_identity auth_identity_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.auth_identity
    ADD CONSTRAINT auth_identity_pkey PRIMARY KEY (id);


--
-- Name: capture capture_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.capture
    ADD CONSTRAINT capture_pkey PRIMARY KEY (id);


--
-- Name: cart_address cart_address_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_address
    ADD CONSTRAINT cart_address_pkey PRIMARY KEY (id);


--
-- Name: cart_line_item_adjustment cart_line_item_adjustment_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_line_item_adjustment
    ADD CONSTRAINT cart_line_item_adjustment_pkey PRIMARY KEY (id);


--
-- Name: cart_line_item cart_line_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_line_item
    ADD CONSTRAINT cart_line_item_pkey PRIMARY KEY (id);


--
-- Name: cart_line_item_tax_line cart_line_item_tax_line_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_line_item_tax_line
    ADD CONSTRAINT cart_line_item_tax_line_pkey PRIMARY KEY (id);


--
-- Name: cart_payment_collection cart_payment_collection_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_payment_collection
    ADD CONSTRAINT cart_payment_collection_pkey PRIMARY KEY (cart_id, payment_collection_id);


--
-- Name: cart cart_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart
    ADD CONSTRAINT cart_pkey PRIMARY KEY (id);


--
-- Name: cart_promotion cart_promotion_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_promotion
    ADD CONSTRAINT cart_promotion_pkey PRIMARY KEY (cart_id, promotion_id);


--
-- Name: cart_shipping_method_adjustment cart_shipping_method_adjustment_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_shipping_method_adjustment
    ADD CONSTRAINT cart_shipping_method_adjustment_pkey PRIMARY KEY (id);


--
-- Name: cart_shipping_method cart_shipping_method_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_shipping_method
    ADD CONSTRAINT cart_shipping_method_pkey PRIMARY KEY (id);


--
-- Name: cart_shipping_method_tax_line cart_shipping_method_tax_line_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_shipping_method_tax_line
    ADD CONSTRAINT cart_shipping_method_tax_line_pkey PRIMARY KEY (id);


--
-- Name: cms_component_definition cms_component_definition_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cms_component_definition
    ADD CONSTRAINT cms_component_definition_pkey PRIMARY KEY (id);


--
-- Name: cms_component_field cms_component_field_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cms_component_field
    ADD CONSTRAINT cms_component_field_pkey PRIMARY KEY (id);


--
-- Name: cms_component_folder cms_component_folder_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cms_component_folder
    ADD CONSTRAINT cms_component_folder_pkey PRIMARY KEY (id);


--
-- Name: cms_component_instance cms_component_instance_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cms_component_instance
    ADD CONSTRAINT cms_component_instance_pkey PRIMARY KEY (id);


--
-- Name: cms_component_type cms_component_type_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cms_component_type
    ADD CONSTRAINT cms_component_type_pkey PRIMARY KEY (id);


--
-- Name: cms_page_component cms_page_component_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cms_page_component
    ADD CONSTRAINT cms_page_component_pkey PRIMARY KEY (id);


--
-- Name: cms_page cms_page_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cms_page
    ADD CONSTRAINT cms_page_pkey PRIMARY KEY (id);


--
-- Name: cms_page_section cms_page_section_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cms_page_section
    ADD CONSTRAINT cms_page_section_pkey PRIMARY KEY (id);


--
-- Name: contact_inquiry contact_inquiry_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.contact_inquiry
    ADD CONSTRAINT contact_inquiry_pkey PRIMARY KEY (id);


--
-- Name: credit_line credit_line_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.credit_line
    ADD CONSTRAINT credit_line_pkey PRIMARY KEY (id);


--
-- Name: currency currency_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.currency
    ADD CONSTRAINT currency_pkey PRIMARY KEY (code);


--
-- Name: customer_account_holder customer_account_holder_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.customer_account_holder
    ADD CONSTRAINT customer_account_holder_pkey PRIMARY KEY (customer_id, account_holder_id);


--
-- Name: customer_address customer_address_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.customer_address
    ADD CONSTRAINT customer_address_pkey PRIMARY KEY (id);


--
-- Name: customer_group_customer customer_group_customer_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.customer_group_customer
    ADD CONSTRAINT customer_group_customer_pkey PRIMARY KEY (id);


--
-- Name: customer_group customer_group_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.customer_group
    ADD CONSTRAINT customer_group_pkey PRIMARY KEY (id);


--
-- Name: customer customer_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.customer
    ADD CONSTRAINT customer_pkey PRIMARY KEY (id);


--
-- Name: fulfillment_address fulfillment_address_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment_address
    ADD CONSTRAINT fulfillment_address_pkey PRIMARY KEY (id);


--
-- Name: fulfillment_item fulfillment_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment_item
    ADD CONSTRAINT fulfillment_item_pkey PRIMARY KEY (id);


--
-- Name: fulfillment_label fulfillment_label_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment_label
    ADD CONSTRAINT fulfillment_label_pkey PRIMARY KEY (id);


--
-- Name: fulfillment fulfillment_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment
    ADD CONSTRAINT fulfillment_pkey PRIMARY KEY (id);


--
-- Name: fulfillment_provider fulfillment_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment_provider
    ADD CONSTRAINT fulfillment_provider_pkey PRIMARY KEY (id);


--
-- Name: fulfillment_set fulfillment_set_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment_set
    ADD CONSTRAINT fulfillment_set_pkey PRIMARY KEY (id);


--
-- Name: geo_zone geo_zone_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.geo_zone
    ADD CONSTRAINT geo_zone_pkey PRIMARY KEY (id);


--
-- Name: image image_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.image
    ADD CONSTRAINT image_pkey PRIMARY KEY (id);


--
-- Name: inventory_item inventory_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.inventory_item
    ADD CONSTRAINT inventory_item_pkey PRIMARY KEY (id);


--
-- Name: inventory_level inventory_level_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.inventory_level
    ADD CONSTRAINT inventory_level_pkey PRIMARY KEY (id);


--
-- Name: invite invite_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.invite
    ADD CONSTRAINT invite_pkey PRIMARY KEY (id);


--
-- Name: link_module_migrations link_module_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.link_module_migrations
    ADD CONSTRAINT link_module_migrations_pkey PRIMARY KEY (id);


--
-- Name: link_module_migrations link_module_migrations_table_name_key; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.link_module_migrations
    ADD CONSTRAINT link_module_migrations_table_name_key UNIQUE (table_name);


--
-- Name: location_fulfillment_provider location_fulfillment_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.location_fulfillment_provider
    ADD CONSTRAINT location_fulfillment_provider_pkey PRIMARY KEY (stock_location_id, fulfillment_provider_id);


--
-- Name: location_fulfillment_set location_fulfillment_set_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.location_fulfillment_set
    ADD CONSTRAINT location_fulfillment_set_pkey PRIMARY KEY (stock_location_id, fulfillment_set_id);


--
-- Name: mikro_orm_migrations mikro_orm_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.mikro_orm_migrations
    ADD CONSTRAINT mikro_orm_migrations_pkey PRIMARY KEY (id);


--
-- Name: notification notification_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.notification
    ADD CONSTRAINT notification_pkey PRIMARY KEY (id);


--
-- Name: notification_provider notification_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.notification_provider
    ADD CONSTRAINT notification_provider_pkey PRIMARY KEY (id);


--
-- Name: order_address order_address_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_address
    ADD CONSTRAINT order_address_pkey PRIMARY KEY (id);


--
-- Name: order_cart order_cart_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_cart
    ADD CONSTRAINT order_cart_pkey PRIMARY KEY (order_id, cart_id);


--
-- Name: order_change_action order_change_action_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_change_action
    ADD CONSTRAINT order_change_action_pkey PRIMARY KEY (id);


--
-- Name: order_change order_change_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_change
    ADD CONSTRAINT order_change_pkey PRIMARY KEY (id);


--
-- Name: order_claim_item_image order_claim_item_image_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_claim_item_image
    ADD CONSTRAINT order_claim_item_image_pkey PRIMARY KEY (id);


--
-- Name: order_claim_item order_claim_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_claim_item
    ADD CONSTRAINT order_claim_item_pkey PRIMARY KEY (id);


--
-- Name: order_claim order_claim_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_claim
    ADD CONSTRAINT order_claim_pkey PRIMARY KEY (id);


--
-- Name: order_credit_line order_credit_line_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_credit_line
    ADD CONSTRAINT order_credit_line_pkey PRIMARY KEY (id);


--
-- Name: order_exchange_item order_exchange_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_exchange_item
    ADD CONSTRAINT order_exchange_item_pkey PRIMARY KEY (id);


--
-- Name: order_exchange order_exchange_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_exchange
    ADD CONSTRAINT order_exchange_pkey PRIMARY KEY (id);


--
-- Name: order_fulfillment order_fulfillment_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_fulfillment
    ADD CONSTRAINT order_fulfillment_pkey PRIMARY KEY (order_id, fulfillment_id);


--
-- Name: order_item order_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_item
    ADD CONSTRAINT order_item_pkey PRIMARY KEY (id);


--
-- Name: order_line_item_adjustment order_line_item_adjustment_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_line_item_adjustment
    ADD CONSTRAINT order_line_item_adjustment_pkey PRIMARY KEY (id);


--
-- Name: order_line_item order_line_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_line_item
    ADD CONSTRAINT order_line_item_pkey PRIMARY KEY (id);


--
-- Name: order_line_item_tax_line order_line_item_tax_line_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_line_item_tax_line
    ADD CONSTRAINT order_line_item_tax_line_pkey PRIMARY KEY (id);


--
-- Name: order_payment_collection order_payment_collection_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_payment_collection
    ADD CONSTRAINT order_payment_collection_pkey PRIMARY KEY (order_id, payment_collection_id);


--
-- Name: order order_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public."order"
    ADD CONSTRAINT order_pkey PRIMARY KEY (id);


--
-- Name: order_promotion order_promotion_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_promotion
    ADD CONSTRAINT order_promotion_pkey PRIMARY KEY (order_id, promotion_id);


--
-- Name: order_shipping_method_adjustment order_shipping_method_adjustment_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_shipping_method_adjustment
    ADD CONSTRAINT order_shipping_method_adjustment_pkey PRIMARY KEY (id);


--
-- Name: order_shipping_method order_shipping_method_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_shipping_method
    ADD CONSTRAINT order_shipping_method_pkey PRIMARY KEY (id);


--
-- Name: order_shipping_method_tax_line order_shipping_method_tax_line_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_shipping_method_tax_line
    ADD CONSTRAINT order_shipping_method_tax_line_pkey PRIMARY KEY (id);


--
-- Name: order_shipping order_shipping_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_shipping
    ADD CONSTRAINT order_shipping_pkey PRIMARY KEY (id);


--
-- Name: order_summary order_summary_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_summary
    ADD CONSTRAINT order_summary_pkey PRIMARY KEY (id);


--
-- Name: order_transaction order_transaction_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_transaction
    ADD CONSTRAINT order_transaction_pkey PRIMARY KEY (id);


--
-- Name: payment_collection_payment_providers payment_collection_payment_providers_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment_collection_payment_providers
    ADD CONSTRAINT payment_collection_payment_providers_pkey PRIMARY KEY (payment_collection_id, payment_provider_id);


--
-- Name: payment_collection payment_collection_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment_collection
    ADD CONSTRAINT payment_collection_pkey PRIMARY KEY (id);


--
-- Name: payment payment_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment
    ADD CONSTRAINT payment_pkey PRIMARY KEY (id);


--
-- Name: payment_provider payment_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment_provider
    ADD CONSTRAINT payment_provider_pkey PRIMARY KEY (id);


--
-- Name: payment_session payment_session_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment_session
    ADD CONSTRAINT payment_session_pkey PRIMARY KEY (id);


--
-- Name: price_list price_list_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price_list
    ADD CONSTRAINT price_list_pkey PRIMARY KEY (id);


--
-- Name: price_list_rule price_list_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price_list_rule
    ADD CONSTRAINT price_list_rule_pkey PRIMARY KEY (id);


--
-- Name: price price_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price
    ADD CONSTRAINT price_pkey PRIMARY KEY (id);


--
-- Name: price_preference price_preference_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price_preference
    ADD CONSTRAINT price_preference_pkey PRIMARY KEY (id);


--
-- Name: price_rule price_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price_rule
    ADD CONSTRAINT price_rule_pkey PRIMARY KEY (id);


--
-- Name: price_set price_set_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price_set
    ADD CONSTRAINT price_set_pkey PRIMARY KEY (id);


--
-- Name: product_category product_category_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_category
    ADD CONSTRAINT product_category_pkey PRIMARY KEY (id);


--
-- Name: product_category_product product_category_product_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_category_product
    ADD CONSTRAINT product_category_product_pkey PRIMARY KEY (product_id, product_category_id);


--
-- Name: product_collection product_collection_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_collection
    ADD CONSTRAINT product_collection_pkey PRIMARY KEY (id);


--
-- Name: product_option product_option_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_option
    ADD CONSTRAINT product_option_pkey PRIMARY KEY (id);


--
-- Name: product_option_value product_option_value_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_option_value
    ADD CONSTRAINT product_option_value_pkey PRIMARY KEY (id);


--
-- Name: product product_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product
    ADD CONSTRAINT product_pkey PRIMARY KEY (id);


--
-- Name: product_product_waste_waste_attribute product_product_waste_waste_attribute_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_product_waste_waste_attribute
    ADD CONSTRAINT product_product_waste_waste_attribute_pkey PRIMARY KEY (product_id, waste_attribute_id);


--
-- Name: product_sales_channel product_sales_channel_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_sales_channel
    ADD CONSTRAINT product_sales_channel_pkey PRIMARY KEY (product_id, sales_channel_id);


--
-- Name: product_shipping_profile product_shipping_profile_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_shipping_profile
    ADD CONSTRAINT product_shipping_profile_pkey PRIMARY KEY (product_id, shipping_profile_id);


--
-- Name: product_tag product_tag_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_tag
    ADD CONSTRAINT product_tag_pkey PRIMARY KEY (id);


--
-- Name: product_tags product_tags_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_tags
    ADD CONSTRAINT product_tags_pkey PRIMARY KEY (product_id, product_tag_id);


--
-- Name: product_type product_type_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_type
    ADD CONSTRAINT product_type_pkey PRIMARY KEY (id);


--
-- Name: product_variant_inventory_item product_variant_inventory_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant_inventory_item
    ADD CONSTRAINT product_variant_inventory_item_pkey PRIMARY KEY (variant_id, inventory_item_id);


--
-- Name: product_variant_option product_variant_option_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant_option
    ADD CONSTRAINT product_variant_option_pkey PRIMARY KEY (variant_id, option_value_id);


--
-- Name: product_variant product_variant_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant
    ADD CONSTRAINT product_variant_pkey PRIMARY KEY (id);


--
-- Name: product_variant_price_set product_variant_price_set_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant_price_set
    ADD CONSTRAINT product_variant_price_set_pkey PRIMARY KEY (variant_id, price_set_id);


--
-- Name: product_variant_product_image product_variant_product_image_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant_product_image
    ADD CONSTRAINT product_variant_product_image_pkey PRIMARY KEY (id);


--
-- Name: promotion_application_method promotion_application_method_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_application_method
    ADD CONSTRAINT promotion_application_method_pkey PRIMARY KEY (id);


--
-- Name: promotion_campaign_budget promotion_campaign_budget_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_campaign_budget
    ADD CONSTRAINT promotion_campaign_budget_pkey PRIMARY KEY (id);


--
-- Name: promotion_campaign_budget_usage promotion_campaign_budget_usage_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_campaign_budget_usage
    ADD CONSTRAINT promotion_campaign_budget_usage_pkey PRIMARY KEY (id);


--
-- Name: promotion_campaign promotion_campaign_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_campaign
    ADD CONSTRAINT promotion_campaign_pkey PRIMARY KEY (id);


--
-- Name: promotion promotion_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion
    ADD CONSTRAINT promotion_pkey PRIMARY KEY (id);


--
-- Name: promotion_promotion_rule promotion_promotion_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_promotion_rule
    ADD CONSTRAINT promotion_promotion_rule_pkey PRIMARY KEY (promotion_id, promotion_rule_id);


--
-- Name: promotion_rule promotion_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_rule
    ADD CONSTRAINT promotion_rule_pkey PRIMARY KEY (id);


--
-- Name: promotion_rule_value promotion_rule_value_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_rule_value
    ADD CONSTRAINT promotion_rule_value_pkey PRIMARY KEY (id);


--
-- Name: provider_identity provider_identity_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.provider_identity
    ADD CONSTRAINT provider_identity_pkey PRIMARY KEY (id);


--
-- Name: publishable_api_key_sales_channel publishable_api_key_sales_channel_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.publishable_api_key_sales_channel
    ADD CONSTRAINT publishable_api_key_sales_channel_pkey PRIMARY KEY (publishable_key_id, sales_channel_id);


--
-- Name: refund refund_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.refund
    ADD CONSTRAINT refund_pkey PRIMARY KEY (id);


--
-- Name: refund_reason refund_reason_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.refund_reason
    ADD CONSTRAINT refund_reason_pkey PRIMARY KEY (id);


--
-- Name: region_country region_country_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.region_country
    ADD CONSTRAINT region_country_pkey PRIMARY KEY (iso_2);


--
-- Name: region_payment_provider region_payment_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.region_payment_provider
    ADD CONSTRAINT region_payment_provider_pkey PRIMARY KEY (region_id, payment_provider_id);


--
-- Name: region region_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.region
    ADD CONSTRAINT region_pkey PRIMARY KEY (id);


--
-- Name: reservation_item reservation_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.reservation_item
    ADD CONSTRAINT reservation_item_pkey PRIMARY KEY (id);


--
-- Name: return_fulfillment return_fulfillment_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.return_fulfillment
    ADD CONSTRAINT return_fulfillment_pkey PRIMARY KEY (return_id, fulfillment_id);


--
-- Name: return_item return_item_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.return_item
    ADD CONSTRAINT return_item_pkey PRIMARY KEY (id);


--
-- Name: return return_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.return
    ADD CONSTRAINT return_pkey PRIMARY KEY (id);


--
-- Name: return_reason return_reason_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.return_reason
    ADD CONSTRAINT return_reason_pkey PRIMARY KEY (id);


--
-- Name: sales_channel sales_channel_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.sales_channel
    ADD CONSTRAINT sales_channel_pkey PRIMARY KEY (id);


--
-- Name: sales_channel_stock_location sales_channel_stock_location_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.sales_channel_stock_location
    ADD CONSTRAINT sales_channel_stock_location_pkey PRIMARY KEY (sales_channel_id, stock_location_id);


--
-- Name: script_migrations script_migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.script_migrations
    ADD CONSTRAINT script_migrations_pkey PRIMARY KEY (id);


--
-- Name: service_zone service_zone_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.service_zone
    ADD CONSTRAINT service_zone_pkey PRIMARY KEY (id);


--
-- Name: shipping_option shipping_option_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option
    ADD CONSTRAINT shipping_option_pkey PRIMARY KEY (id);


--
-- Name: shipping_option_price_set shipping_option_price_set_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option_price_set
    ADD CONSTRAINT shipping_option_price_set_pkey PRIMARY KEY (shipping_option_id, price_set_id);


--
-- Name: shipping_option_rule shipping_option_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option_rule
    ADD CONSTRAINT shipping_option_rule_pkey PRIMARY KEY (id);


--
-- Name: shipping_option_type shipping_option_type_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option_type
    ADD CONSTRAINT shipping_option_type_pkey PRIMARY KEY (id);


--
-- Name: shipping_profile shipping_profile_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_profile
    ADD CONSTRAINT shipping_profile_pkey PRIMARY KEY (id);


--
-- Name: stock_location_address stock_location_address_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.stock_location_address
    ADD CONSTRAINT stock_location_address_pkey PRIMARY KEY (id);


--
-- Name: stock_location stock_location_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.stock_location
    ADD CONSTRAINT stock_location_pkey PRIMARY KEY (id);


--
-- Name: store_currency store_currency_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.store_currency
    ADD CONSTRAINT store_currency_pkey PRIMARY KEY (id);


--
-- Name: store_locale store_locale_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.store_locale
    ADD CONSTRAINT store_locale_pkey PRIMARY KEY (id);


--
-- Name: store store_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.store
    ADD CONSTRAINT store_pkey PRIMARY KEY (id);


--
-- Name: tax_provider tax_provider_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.tax_provider
    ADD CONSTRAINT tax_provider_pkey PRIMARY KEY (id);


--
-- Name: tax_rate tax_rate_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.tax_rate
    ADD CONSTRAINT tax_rate_pkey PRIMARY KEY (id);


--
-- Name: tax_rate_rule tax_rate_rule_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.tax_rate_rule
    ADD CONSTRAINT tax_rate_rule_pkey PRIMARY KEY (id);


--
-- Name: tax_region tax_region_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.tax_region
    ADD CONSTRAINT tax_region_pkey PRIMARY KEY (id);


--
-- Name: user user_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public."user"
    ADD CONSTRAINT user_pkey PRIMARY KEY (id);


--
-- Name: user_preference user_preference_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.user_preference
    ADD CONSTRAINT user_preference_pkey PRIMARY KEY (id);


--
-- Name: user_rbac_role user_rbac_role_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.user_rbac_role
    ADD CONSTRAINT user_rbac_role_pkey PRIMARY KEY (user_id, rbac_role_id);


--
-- Name: view_configuration view_configuration_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.view_configuration
    ADD CONSTRAINT view_configuration_pkey PRIMARY KEY (id);


--
-- Name: waste_attribute waste_attribute_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.waste_attribute
    ADD CONSTRAINT waste_attribute_pkey PRIMARY KEY (id);


--
-- Name: workflow_execution workflow_execution_pkey; Type: CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.workflow_execution
    ADD CONSTRAINT workflow_execution_pkey PRIMARY KEY (workflow_id, transaction_id, run_id);


--
-- Name: IDX_account_holder_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_account_holder_deleted_at" ON public.account_holder USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_account_holder_id_5cb3a0c0; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_account_holder_id_5cb3a0c0" ON public.customer_account_holder USING btree (account_holder_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_account_holder_provider_id_external_id_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_account_holder_provider_id_external_id_unique" ON public.account_holder USING btree (provider_id, external_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_api_key_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_api_key_deleted_at" ON public.api_key USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_api_key_redacted; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_api_key_redacted" ON public.api_key USING btree (redacted) WHERE (deleted_at IS NULL);


--
-- Name: IDX_api_key_revoked_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_api_key_revoked_at" ON public.api_key USING btree (revoked_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_api_key_token_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_api_key_token_unique" ON public.api_key USING btree (token);


--
-- Name: IDX_api_key_type; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_api_key_type" ON public.api_key USING btree (type);


--
-- Name: IDX_application_method_allocation; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_application_method_allocation" ON public.promotion_application_method USING btree (allocation);


--
-- Name: IDX_application_method_target_type; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_application_method_target_type" ON public.promotion_application_method USING btree (target_type);


--
-- Name: IDX_application_method_type; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_application_method_type" ON public.promotion_application_method USING btree (type);


--
-- Name: IDX_auth_identity_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_auth_identity_deleted_at" ON public.auth_identity USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_campaign_budget_type; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_campaign_budget_type" ON public.promotion_campaign_budget USING btree (type);


--
-- Name: IDX_capture_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_capture_deleted_at" ON public.capture USING btree (deleted_at);


--
-- Name: IDX_capture_payment_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_capture_payment_id" ON public.capture USING btree (payment_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_address_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_address_deleted_at" ON public.cart_address USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_billing_address_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_billing_address_id" ON public.cart USING btree (billing_address_id) WHERE ((deleted_at IS NULL) AND (billing_address_id IS NOT NULL));


--
-- Name: IDX_cart_credit_line_reference_reference_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_credit_line_reference_reference_id" ON public.credit_line USING btree (reference, reference_id) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_currency_code; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_currency_code" ON public.cart USING btree (currency_code);


--
-- Name: IDX_cart_customer_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_customer_id" ON public.cart USING btree (customer_id) WHERE ((deleted_at IS NULL) AND (customer_id IS NOT NULL));


--
-- Name: IDX_cart_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_deleted_at" ON public.cart USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_id_-4a39f6c9; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_id_-4a39f6c9" ON public.cart_payment_collection USING btree (cart_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_id_-71069c16; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_id_-71069c16" ON public.order_cart USING btree (cart_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_id_-a9d4a70b; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_id_-a9d4a70b" ON public.cart_promotion USING btree (cart_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_line_item_adjustment_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_line_item_adjustment_deleted_at" ON public.cart_line_item_adjustment USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_line_item_adjustment_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_line_item_adjustment_item_id" ON public.cart_line_item_adjustment USING btree (item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_line_item_cart_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_line_item_cart_id" ON public.cart_line_item USING btree (cart_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_line_item_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_line_item_deleted_at" ON public.cart_line_item USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_line_item_tax_line_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_line_item_tax_line_deleted_at" ON public.cart_line_item_tax_line USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_line_item_tax_line_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_line_item_tax_line_item_id" ON public.cart_line_item_tax_line USING btree (item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_region_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_region_id" ON public.cart USING btree (region_id) WHERE ((deleted_at IS NULL) AND (region_id IS NOT NULL));


--
-- Name: IDX_cart_sales_channel_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_sales_channel_id" ON public.cart USING btree (sales_channel_id) WHERE ((deleted_at IS NULL) AND (sales_channel_id IS NOT NULL));


--
-- Name: IDX_cart_shipping_address_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_shipping_address_id" ON public.cart USING btree (shipping_address_id) WHERE ((deleted_at IS NULL) AND (shipping_address_id IS NOT NULL));


--
-- Name: IDX_cart_shipping_method_adjustment_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_shipping_method_adjustment_deleted_at" ON public.cart_shipping_method_adjustment USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_shipping_method_adjustment_shipping_method_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_shipping_method_adjustment_shipping_method_id" ON public.cart_shipping_method_adjustment USING btree (shipping_method_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_shipping_method_cart_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_shipping_method_cart_id" ON public.cart_shipping_method USING btree (cart_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cart_shipping_method_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_shipping_method_deleted_at" ON public.cart_shipping_method USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_shipping_method_tax_line_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_shipping_method_tax_line_deleted_at" ON public.cart_shipping_method_tax_line USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_cart_shipping_method_tax_line_shipping_method_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cart_shipping_method_tax_line_shipping_method_id" ON public.cart_shipping_method_tax_line USING btree (shipping_method_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_category_handle_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_category_handle_unique" ON public.product_category USING btree (handle) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cms_component_definition_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cms_component_definition_deleted_at" ON public.cms_component_definition USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cms_component_definition_key; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_cms_component_definition_key" ON public.cms_component_definition USING btree (key) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cms_component_field_type; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cms_component_field_type" ON public.cms_component_field USING btree (component_type_id);


--
-- Name: IDX_cms_component_instance_type; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cms_component_instance_type" ON public.cms_component_instance USING btree (component_type_id);


--
-- Name: IDX_cms_component_type_folder; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cms_component_type_folder" ON public.cms_component_type USING btree (folder_id);


--
-- Name: IDX_cms_component_type_name; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_cms_component_type_name" ON public.cms_component_type USING btree (name) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cms_page_component_page; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cms_page_component_page" ON public.cms_page_component USING btree (page_id);


--
-- Name: IDX_cms_page_component_section; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cms_page_component_section" ON public.cms_page_component USING btree (page_section_id);


--
-- Name: IDX_cms_page_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cms_page_deleted_at" ON public.cms_page USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_cms_page_section_page; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_cms_page_section_page" ON public.cms_page_section USING btree (page_id);


--
-- Name: IDX_collection_handle_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_collection_handle_unique" ON public.product_collection USING btree (handle) WHERE (deleted_at IS NULL);


--
-- Name: IDX_credit_line_cart_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_credit_line_cart_id" ON public.credit_line USING btree (cart_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_credit_line_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_credit_line_deleted_at" ON public.credit_line USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_customer_address_customer_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_customer_address_customer_id" ON public.customer_address USING btree (customer_id);


--
-- Name: IDX_customer_address_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_customer_address_deleted_at" ON public.customer_address USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_customer_address_unique_customer_billing; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_customer_address_unique_customer_billing" ON public.customer_address USING btree (customer_id) WHERE (is_default_billing = true);


--
-- Name: IDX_customer_address_unique_customer_shipping; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_customer_address_unique_customer_shipping" ON public.customer_address USING btree (customer_id) WHERE (is_default_shipping = true);


--
-- Name: IDX_customer_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_customer_deleted_at" ON public.customer USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_customer_email_has_account_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_customer_email_has_account_unique" ON public.customer USING btree (email, has_account) WHERE (deleted_at IS NULL);


--
-- Name: IDX_customer_group_customer_customer_group_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_customer_group_customer_customer_group_id" ON public.customer_group_customer USING btree (customer_group_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_customer_group_customer_customer_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_customer_group_customer_customer_id" ON public.customer_group_customer USING btree (customer_id);


--
-- Name: IDX_customer_group_customer_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_customer_group_customer_deleted_at" ON public.customer_group_customer USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_customer_group_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_customer_group_deleted_at" ON public.customer_group USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_customer_group_name_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_customer_group_name_unique" ON public.customer_group USING btree (name) WHERE (deleted_at IS NULL);


--
-- Name: IDX_customer_id_5cb3a0c0; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_customer_id_5cb3a0c0" ON public.customer_account_holder USING btree (customer_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_deleted_at_-1d67bae40; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-1d67bae40" ON public.publishable_api_key_sales_channel USING btree (deleted_at);


--
-- Name: IDX_deleted_at_-1e5992737; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-1e5992737" ON public.location_fulfillment_provider USING btree (deleted_at);


--
-- Name: IDX_deleted_at_-31ea43a; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-31ea43a" ON public.return_fulfillment USING btree (deleted_at);


--
-- Name: IDX_deleted_at_-4a39f6c9; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-4a39f6c9" ON public.cart_payment_collection USING btree (deleted_at);


--
-- Name: IDX_deleted_at_-71069c16; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-71069c16" ON public.order_cart USING btree (deleted_at);


--
-- Name: IDX_deleted_at_-71518339; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-71518339" ON public.order_promotion USING btree (deleted_at);


--
-- Name: IDX_deleted_at_-a9d4a70b; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-a9d4a70b" ON public.cart_promotion USING btree (deleted_at);


--
-- Name: IDX_deleted_at_-e88adb96; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-e88adb96" ON public.location_fulfillment_set USING btree (deleted_at);


--
-- Name: IDX_deleted_at_-e8d2543e; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_-e8d2543e" ON public.order_fulfillment USING btree (deleted_at);


--
-- Name: IDX_deleted_at_17a262437; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_17a262437" ON public.product_shipping_profile USING btree (deleted_at);


--
-- Name: IDX_deleted_at_17b4c4e35; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_17b4c4e35" ON public.product_variant_inventory_item USING btree (deleted_at);


--
-- Name: IDX_deleted_at_1c934dab0; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_1c934dab0" ON public.region_payment_provider USING btree (deleted_at);


--
-- Name: IDX_deleted_at_20b454295; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_20b454295" ON public.product_sales_channel USING btree (deleted_at);


--
-- Name: IDX_deleted_at_26d06f470; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_26d06f470" ON public.sales_channel_stock_location USING btree (deleted_at);


--
-- Name: IDX_deleted_at_52b23597; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_52b23597" ON public.product_variant_price_set USING btree (deleted_at);


--
-- Name: IDX_deleted_at_5cb3a0c0; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_5cb3a0c0" ON public.customer_account_holder USING btree (deleted_at);


--
-- Name: IDX_deleted_at_64ff0c4c; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_64ff0c4c" ON public.user_rbac_role USING btree (deleted_at);


--
-- Name: IDX_deleted_at_9c6589bf; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_9c6589bf" ON public.product_product_waste_waste_attribute USING btree (deleted_at);


--
-- Name: IDX_deleted_at_ba32fa9c; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_ba32fa9c" ON public.shipping_option_price_set USING btree (deleted_at);


--
-- Name: IDX_deleted_at_f42b9949; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_deleted_at_f42b9949" ON public.order_payment_collection USING btree (deleted_at);


--
-- Name: IDX_fulfillment_address_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_address_deleted_at" ON public.fulfillment_address USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_fulfillment_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_deleted_at" ON public.fulfillment USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_fulfillment_id_-31ea43a; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_id_-31ea43a" ON public.return_fulfillment USING btree (fulfillment_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_id_-e8d2543e; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_id_-e8d2543e" ON public.order_fulfillment USING btree (fulfillment_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_item_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_item_deleted_at" ON public.fulfillment_item USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_fulfillment_item_fulfillment_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_item_fulfillment_id" ON public.fulfillment_item USING btree (fulfillment_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_item_inventory_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_item_inventory_item_id" ON public.fulfillment_item USING btree (inventory_item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_item_line_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_item_line_item_id" ON public.fulfillment_item USING btree (line_item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_label_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_label_deleted_at" ON public.fulfillment_label USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_fulfillment_label_fulfillment_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_label_fulfillment_id" ON public.fulfillment_label USING btree (fulfillment_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_location_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_location_id" ON public.fulfillment USING btree (location_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_provider_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_provider_deleted_at" ON public.fulfillment_provider USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_provider_id_-1e5992737; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_provider_id_-1e5992737" ON public.location_fulfillment_provider USING btree (fulfillment_provider_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_set_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_set_deleted_at" ON public.fulfillment_set USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_fulfillment_set_id_-e88adb96; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_set_id_-e88adb96" ON public.location_fulfillment_set USING btree (fulfillment_set_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_set_name_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_fulfillment_set_name_unique" ON public.fulfillment_set USING btree (name) WHERE (deleted_at IS NULL);


--
-- Name: IDX_fulfillment_shipping_option_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_fulfillment_shipping_option_id" ON public.fulfillment USING btree (shipping_option_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_geo_zone_city; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_geo_zone_city" ON public.geo_zone USING btree (city) WHERE ((deleted_at IS NULL) AND (city IS NOT NULL));


--
-- Name: IDX_geo_zone_country_code; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_geo_zone_country_code" ON public.geo_zone USING btree (country_code) WHERE (deleted_at IS NULL);


--
-- Name: IDX_geo_zone_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_geo_zone_deleted_at" ON public.geo_zone USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_geo_zone_province_code; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_geo_zone_province_code" ON public.geo_zone USING btree (province_code) WHERE ((deleted_at IS NULL) AND (province_code IS NOT NULL));


--
-- Name: IDX_geo_zone_service_zone_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_geo_zone_service_zone_id" ON public.geo_zone USING btree (service_zone_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_id_-1d67bae40; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-1d67bae40" ON public.publishable_api_key_sales_channel USING btree (id);


--
-- Name: IDX_id_-1e5992737; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-1e5992737" ON public.location_fulfillment_provider USING btree (id);


--
-- Name: IDX_id_-31ea43a; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-31ea43a" ON public.return_fulfillment USING btree (id);


--
-- Name: IDX_id_-4a39f6c9; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-4a39f6c9" ON public.cart_payment_collection USING btree (id);


--
-- Name: IDX_id_-71069c16; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-71069c16" ON public.order_cart USING btree (id);


--
-- Name: IDX_id_-71518339; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-71518339" ON public.order_promotion USING btree (id);


--
-- Name: IDX_id_-a9d4a70b; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-a9d4a70b" ON public.cart_promotion USING btree (id);


--
-- Name: IDX_id_-e88adb96; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-e88adb96" ON public.location_fulfillment_set USING btree (id);


--
-- Name: IDX_id_-e8d2543e; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_-e8d2543e" ON public.order_fulfillment USING btree (id);


--
-- Name: IDX_id_17a262437; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_17a262437" ON public.product_shipping_profile USING btree (id);


--
-- Name: IDX_id_17b4c4e35; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_17b4c4e35" ON public.product_variant_inventory_item USING btree (id);


--
-- Name: IDX_id_1c934dab0; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_1c934dab0" ON public.region_payment_provider USING btree (id);


--
-- Name: IDX_id_20b454295; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_20b454295" ON public.product_sales_channel USING btree (id);


--
-- Name: IDX_id_26d06f470; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_26d06f470" ON public.sales_channel_stock_location USING btree (id);


--
-- Name: IDX_id_52b23597; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_52b23597" ON public.product_variant_price_set USING btree (id);


--
-- Name: IDX_id_5cb3a0c0; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_5cb3a0c0" ON public.customer_account_holder USING btree (id);


--
-- Name: IDX_id_64ff0c4c; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_64ff0c4c" ON public.user_rbac_role USING btree (id);


--
-- Name: IDX_id_9c6589bf; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_9c6589bf" ON public.product_product_waste_waste_attribute USING btree (id);


--
-- Name: IDX_id_ba32fa9c; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_ba32fa9c" ON public.shipping_option_price_set USING btree (id);


--
-- Name: IDX_id_f42b9949; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_id_f42b9949" ON public.order_payment_collection USING btree (id);


--
-- Name: IDX_image_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_image_deleted_at" ON public.image USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_image_product_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_image_product_id" ON public.image USING btree (product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_inventory_item_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_inventory_item_deleted_at" ON public.inventory_item USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_inventory_item_id_17b4c4e35; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_inventory_item_id_17b4c4e35" ON public.product_variant_inventory_item USING btree (inventory_item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_inventory_item_sku; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_inventory_item_sku" ON public.inventory_item USING btree (sku) WHERE (deleted_at IS NULL);


--
-- Name: IDX_inventory_level_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_inventory_level_deleted_at" ON public.inventory_level USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_inventory_level_inventory_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_inventory_level_inventory_item_id" ON public.inventory_level USING btree (inventory_item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_inventory_level_location_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_inventory_level_location_id" ON public.inventory_level USING btree (location_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_inventory_level_location_id_inventory_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_inventory_level_location_id_inventory_item_id" ON public.inventory_level USING btree (inventory_item_id, location_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_invite_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_invite_deleted_at" ON public.invite USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_invite_email_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_invite_email_unique" ON public.invite USING btree (email) WHERE (deleted_at IS NULL);


--
-- Name: IDX_invite_token; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_invite_token" ON public.invite USING btree (token) WHERE (deleted_at IS NULL);


--
-- Name: IDX_line_item_adjustment_promotion_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_line_item_adjustment_promotion_id" ON public.cart_line_item_adjustment USING btree (promotion_id) WHERE ((deleted_at IS NULL) AND (promotion_id IS NOT NULL));


--
-- Name: IDX_line_item_product_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_line_item_product_id" ON public.cart_line_item USING btree (product_id) WHERE ((deleted_at IS NULL) AND (product_id IS NOT NULL));


--
-- Name: IDX_line_item_product_type_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_line_item_product_type_id" ON public.order_line_item USING btree (product_type_id) WHERE ((deleted_at IS NULL) AND (product_type_id IS NOT NULL));


--
-- Name: IDX_line_item_tax_line_tax_rate_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_line_item_tax_line_tax_rate_id" ON public.cart_line_item_tax_line USING btree (tax_rate_id) WHERE ((deleted_at IS NULL) AND (tax_rate_id IS NOT NULL));


--
-- Name: IDX_line_item_variant_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_line_item_variant_id" ON public.cart_line_item USING btree (variant_id) WHERE ((deleted_at IS NULL) AND (variant_id IS NOT NULL));


--
-- Name: IDX_notification_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_notification_deleted_at" ON public.notification USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_notification_idempotency_key_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_notification_idempotency_key_unique" ON public.notification USING btree (idempotency_key) WHERE (deleted_at IS NULL);


--
-- Name: IDX_notification_provider_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_notification_provider_deleted_at" ON public.notification_provider USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_notification_provider_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_notification_provider_id" ON public.notification USING btree (provider_id);


--
-- Name: IDX_notification_receiver_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_notification_receiver_id" ON public.notification USING btree (receiver_id);


--
-- Name: IDX_option_product_id_title_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_option_product_id_title_unique" ON public.product_option USING btree (product_id, title) WHERE (deleted_at IS NULL);


--
-- Name: IDX_option_value_option_id_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_option_value_option_id_unique" ON public.product_option_value USING btree (option_id, value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_address_customer_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_address_customer_id" ON public.order_address USING btree (customer_id);


--
-- Name: IDX_order_address_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_address_deleted_at" ON public.order_address USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_billing_address_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_billing_address_id" ON public."order" USING btree (billing_address_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_change_action_claim_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_action_claim_id" ON public.order_change_action USING btree (claim_id) WHERE ((claim_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_change_action_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_action_deleted_at" ON public.order_change_action USING btree (deleted_at);


--
-- Name: IDX_order_change_action_exchange_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_action_exchange_id" ON public.order_change_action USING btree (exchange_id) WHERE ((exchange_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_change_action_order_change_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_action_order_change_id" ON public.order_change_action USING btree (order_change_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_change_action_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_action_order_id" ON public.order_change_action USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_change_action_ordering; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_action_ordering" ON public.order_change_action USING btree (ordering) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_change_action_return_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_action_return_id" ON public.order_change_action USING btree (return_id) WHERE ((return_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_change_change_type; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_change_type" ON public.order_change USING btree (change_type);


--
-- Name: IDX_order_change_claim_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_claim_id" ON public.order_change USING btree (claim_id) WHERE ((claim_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_change_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_deleted_at" ON public.order_change USING btree (deleted_at);


--
-- Name: IDX_order_change_exchange_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_exchange_id" ON public.order_change USING btree (exchange_id) WHERE ((exchange_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_change_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_order_id" ON public.order_change USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_change_order_id_version; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_order_id_version" ON public.order_change USING btree (order_id, version);


--
-- Name: IDX_order_change_return_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_return_id" ON public.order_change USING btree (return_id) WHERE ((return_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_change_status; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_status" ON public.order_change USING btree (status) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_change_version; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_change_version" ON public.order_change USING btree (order_id, version) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_claim_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_deleted_at" ON public.order_claim USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_claim_display_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_display_id" ON public.order_claim USING btree (display_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_claim_item_claim_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_item_claim_id" ON public.order_claim_item USING btree (claim_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_claim_item_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_item_deleted_at" ON public.order_claim_item USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_claim_item_image_claim_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_item_image_claim_item_id" ON public.order_claim_item_image USING btree (claim_item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_claim_item_image_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_item_image_deleted_at" ON public.order_claim_item_image USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_order_claim_item_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_item_item_id" ON public.order_claim_item USING btree (item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_claim_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_order_id" ON public.order_claim USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_claim_return_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_claim_return_id" ON public.order_claim USING btree (return_id) WHERE ((return_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_credit_line_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_credit_line_deleted_at" ON public.order_credit_line USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_order_credit_line_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_credit_line_order_id" ON public.order_credit_line USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_credit_line_order_id_version; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_credit_line_order_id_version" ON public.order_credit_line USING btree (order_id, version) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_currency_code; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_currency_code" ON public."order" USING btree (currency_code) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_custom_display_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_order_custom_display_id" ON public."order" USING btree (custom_display_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_customer_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_customer_id" ON public."order" USING btree (customer_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_deleted_at" ON public."order" USING btree (deleted_at);


--
-- Name: IDX_order_display_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_display_id" ON public."order" USING btree (display_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_exchange_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_exchange_deleted_at" ON public.order_exchange USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_exchange_display_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_exchange_display_id" ON public.order_exchange USING btree (display_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_exchange_item_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_exchange_item_deleted_at" ON public.order_exchange_item USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_exchange_item_exchange_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_exchange_item_exchange_id" ON public.order_exchange_item USING btree (exchange_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_exchange_item_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_exchange_item_item_id" ON public.order_exchange_item USING btree (item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_exchange_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_exchange_order_id" ON public.order_exchange USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_exchange_return_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_exchange_return_id" ON public.order_exchange USING btree (return_id) WHERE ((return_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_id_-71069c16; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_id_-71069c16" ON public.order_cart USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_id_-71518339; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_id_-71518339" ON public.order_promotion USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_id_-e8d2543e; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_id_-e8d2543e" ON public.order_fulfillment USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_id_f42b9949; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_id_f42b9949" ON public.order_payment_collection USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_is_draft_order; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_is_draft_order" ON public."order" USING btree (is_draft_order) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_item_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_item_deleted_at" ON public.order_item USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_order_item_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_item_item_id" ON public.order_item USING btree (item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_item_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_item_order_id" ON public.order_item USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_item_order_id_version; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_item_order_id_version" ON public.order_item USING btree (order_id, version) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_line_item_adjustment_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_line_item_adjustment_item_id" ON public.order_line_item_adjustment USING btree (item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_line_item_product_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_line_item_product_id" ON public.order_line_item USING btree (product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_line_item_tax_line_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_line_item_tax_line_item_id" ON public.order_line_item_tax_line USING btree (item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_line_item_variant_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_line_item_variant_id" ON public.order_line_item USING btree (variant_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_region_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_region_id" ON public."order" USING btree (region_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_sales_channel_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_sales_channel_id" ON public."order" USING btree (sales_channel_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_shipping_address_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_address_id" ON public."order" USING btree (shipping_address_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_shipping_claim_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_claim_id" ON public.order_shipping USING btree (claim_id) WHERE ((claim_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_shipping_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_deleted_at" ON public.order_shipping USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_order_shipping_exchange_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_exchange_id" ON public.order_shipping USING btree (exchange_id) WHERE ((exchange_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_shipping_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_item_id" ON public.order_shipping USING btree (shipping_method_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_shipping_method_adjustment_shipping_method_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_method_adjustment_shipping_method_id" ON public.order_shipping_method_adjustment USING btree (shipping_method_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_shipping_method_shipping_option_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_method_shipping_option_id" ON public.order_shipping_method USING btree (shipping_option_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_shipping_method_tax_line_shipping_method_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_method_tax_line_shipping_method_id" ON public.order_shipping_method_tax_line USING btree (shipping_method_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_shipping_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_order_id" ON public.order_shipping USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_shipping_order_id_version; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_order_id_version" ON public.order_shipping USING btree (order_id, version) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_shipping_return_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_return_id" ON public.order_shipping USING btree (return_id) WHERE ((return_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_shipping_shipping_method_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_shipping_shipping_method_id" ON public.order_shipping USING btree (shipping_method_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_summary_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_summary_deleted_at" ON public.order_summary USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_order_summary_order_id_version; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_summary_order_id_version" ON public.order_summary USING btree (order_id, version) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_transaction_claim_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_transaction_claim_id" ON public.order_transaction USING btree (claim_id) WHERE ((claim_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_transaction_currency_code; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_transaction_currency_code" ON public.order_transaction USING btree (currency_code) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_transaction_exchange_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_transaction_exchange_id" ON public.order_transaction USING btree (exchange_id) WHERE ((exchange_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_order_transaction_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_transaction_order_id" ON public.order_transaction USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_transaction_order_id_version; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_transaction_order_id_version" ON public.order_transaction USING btree (order_id, version) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_transaction_reference_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_transaction_reference_id" ON public.order_transaction USING btree (reference_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_order_transaction_return_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_order_transaction_return_id" ON public.order_transaction USING btree (return_id) WHERE ((return_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_payment_collection_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_collection_deleted_at" ON public.payment_collection USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_payment_collection_id_-4a39f6c9; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_collection_id_-4a39f6c9" ON public.cart_payment_collection USING btree (payment_collection_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_payment_collection_id_f42b9949; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_collection_id_f42b9949" ON public.order_payment_collection USING btree (payment_collection_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_payment_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_deleted_at" ON public.payment USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_payment_payment_collection_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_payment_collection_id" ON public.payment USING btree (payment_collection_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_payment_payment_session_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_payment_session_id" ON public.payment USING btree (payment_session_id);


--
-- Name: IDX_payment_payment_session_id_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_payment_payment_session_id_unique" ON public.payment USING btree (payment_session_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_payment_provider_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_provider_deleted_at" ON public.payment_provider USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_payment_provider_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_provider_id" ON public.payment USING btree (provider_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_payment_provider_id_1c934dab0; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_provider_id_1c934dab0" ON public.region_payment_provider USING btree (payment_provider_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_payment_session_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_session_deleted_at" ON public.payment_session USING btree (deleted_at);


--
-- Name: IDX_payment_session_payment_collection_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_payment_session_payment_collection_id" ON public.payment_session USING btree (payment_collection_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_currency_code; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_currency_code" ON public.price USING btree (currency_code) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_deleted_at" ON public.price USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_price_list_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_list_deleted_at" ON public.price_list USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_price_list_id_status_starts_at_ends_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_list_id_status_starts_at_ends_at" ON public.price_list USING btree (id, status, starts_at, ends_at) WHERE ((deleted_at IS NULL) AND (status = 'active'::text));


--
-- Name: IDX_price_list_rule_attribute; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_list_rule_attribute" ON public.price_list_rule USING btree (attribute) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_list_rule_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_list_rule_deleted_at" ON public.price_list_rule USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_price_list_rule_price_list_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_list_rule_price_list_id" ON public.price_list_rule USING btree (price_list_id) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_price_list_rule_value; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_list_rule_value" ON public.price_list_rule USING gin (value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_preference_attribute_value; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_price_preference_attribute_value" ON public.price_preference USING btree (attribute, value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_preference_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_preference_deleted_at" ON public.price_preference USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_price_price_list_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_price_list_id" ON public.price USING btree (price_list_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_price_set_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_price_set_id" ON public.price USING btree (price_set_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_rule_attribute; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_rule_attribute" ON public.price_rule USING btree (attribute) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_rule_attribute_value; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_rule_attribute_value" ON public.price_rule USING btree (attribute, value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_rule_attribute_value_price_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_rule_attribute_value_price_id" ON public.price_rule USING btree (attribute, value, price_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_rule_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_rule_deleted_at" ON public.price_rule USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_price_rule_operator; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_rule_operator" ON public.price_rule USING btree (operator);


--
-- Name: IDX_price_rule_operator_value; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_rule_operator_value" ON public.price_rule USING btree (operator, value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_rule_price_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_rule_price_id" ON public.price_rule USING btree (price_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_rule_price_id_attribute_operator_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_price_rule_price_id_attribute_operator_unique" ON public.price_rule USING btree (price_id, attribute, operator) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_set_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_set_deleted_at" ON public.price_set USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_price_set_id_52b23597; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_set_id_52b23597" ON public.product_variant_price_set USING btree (price_set_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_price_set_id_ba32fa9c; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_price_set_id_ba32fa9c" ON public.shipping_option_price_set USING btree (price_set_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_category_parent_category_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_category_parent_category_id" ON public.product_category USING btree (parent_category_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_category_path; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_category_path" ON public.product_category USING btree (mpath) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_collection_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_collection_deleted_at" ON public.product_collection USING btree (deleted_at);


--
-- Name: IDX_product_collection_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_collection_id" ON public.product USING btree (collection_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_deleted_at" ON public.product USING btree (deleted_at);


--
-- Name: IDX_product_handle_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_product_handle_unique" ON public.product USING btree (handle) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_id_17a262437; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_id_17a262437" ON public.product_shipping_profile USING btree (product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_id_20b454295; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_id_20b454295" ON public.product_sales_channel USING btree (product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_id_9c6589bf; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_id_9c6589bf" ON public.product_product_waste_waste_attribute USING btree (product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_image_rank; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_image_rank" ON public.image USING btree (rank) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_image_rank_product_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_image_rank_product_id" ON public.image USING btree (rank, product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_image_url; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_image_url" ON public.image USING btree (url) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_image_url_rank_product_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_image_url_rank_product_id" ON public.image USING btree (url, rank, product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_option_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_option_deleted_at" ON public.product_option USING btree (deleted_at);


--
-- Name: IDX_product_option_product_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_option_product_id" ON public.product_option USING btree (product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_option_value_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_option_value_deleted_at" ON public.product_option_value USING btree (deleted_at);


--
-- Name: IDX_product_option_value_option_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_option_value_option_id" ON public.product_option_value USING btree (option_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_status; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_status" ON public.product USING btree (status) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_tag_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_tag_deleted_at" ON public.product_tag USING btree (deleted_at);


--
-- Name: IDX_product_type_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_type_deleted_at" ON public.product_type USING btree (deleted_at);


--
-- Name: IDX_product_type_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_type_id" ON public.product USING btree (type_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_barcode_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_product_variant_barcode_unique" ON public.product_variant USING btree (barcode) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_variant_deleted_at" ON public.product_variant USING btree (deleted_at);


--
-- Name: IDX_product_variant_ean_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_product_variant_ean_unique" ON public.product_variant USING btree (ean) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_id_product_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_variant_id_product_id" ON public.product_variant USING btree (id, product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_product_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_variant_product_id" ON public.product_variant USING btree (product_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_product_image_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_variant_product_image_deleted_at" ON public.product_variant_product_image USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_product_image_image_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_variant_product_image_image_id" ON public.product_variant_product_image USING btree (image_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_product_image_variant_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_product_variant_product_image_variant_id" ON public.product_variant_product_image USING btree (variant_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_sku_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_product_variant_sku_unique" ON public.product_variant USING btree (sku) WHERE (deleted_at IS NULL);


--
-- Name: IDX_product_variant_upc_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_product_variant_upc_unique" ON public.product_variant USING btree (upc) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_application_method_currency_code; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_application_method_currency_code" ON public.promotion_application_method USING btree (currency_code) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_promotion_application_method_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_application_method_deleted_at" ON public.promotion_application_method USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_application_method_promotion_id_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_promotion_application_method_promotion_id_unique" ON public.promotion_application_method USING btree (promotion_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_campaign_budget_campaign_id_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_promotion_campaign_budget_campaign_id_unique" ON public.promotion_campaign_budget USING btree (campaign_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_campaign_budget_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_campaign_budget_deleted_at" ON public.promotion_campaign_budget USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_campaign_budget_usage_attribute_value_budget_id_u; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_promotion_campaign_budget_usage_attribute_value_budget_id_u" ON public.promotion_campaign_budget_usage USING btree (attribute_value, budget_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_campaign_budget_usage_budget_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_campaign_budget_usage_budget_id" ON public.promotion_campaign_budget_usage USING btree (budget_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_campaign_budget_usage_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_campaign_budget_usage_deleted_at" ON public.promotion_campaign_budget_usage USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_campaign_campaign_identifier_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_promotion_campaign_campaign_identifier_unique" ON public.promotion_campaign USING btree (campaign_identifier) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_campaign_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_campaign_deleted_at" ON public.promotion_campaign USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_campaign_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_campaign_id" ON public.promotion USING btree (campaign_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_deleted_at" ON public.promotion USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_id_-71518339; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_id_-71518339" ON public.order_promotion USING btree (promotion_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_id_-a9d4a70b; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_id_-a9d4a70b" ON public.cart_promotion USING btree (promotion_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_is_automatic; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_is_automatic" ON public.promotion USING btree (is_automatic) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_rule_attribute; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_attribute" ON public.promotion_rule USING btree (attribute);


--
-- Name: IDX_promotion_rule_attribute_operator; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_attribute_operator" ON public.promotion_rule USING btree (attribute, operator) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_rule_attribute_operator_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_attribute_operator_id" ON public.promotion_rule USING btree (operator, attribute, id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_rule_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_deleted_at" ON public.promotion_rule USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_rule_operator; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_operator" ON public.promotion_rule USING btree (operator);


--
-- Name: IDX_promotion_rule_value_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_value_deleted_at" ON public.promotion_rule_value USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_rule_value_promotion_rule_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_value_promotion_rule_id" ON public.promotion_rule_value USING btree (promotion_rule_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_rule_value_rule_id_value; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_value_rule_id_value" ON public.promotion_rule_value USING btree (promotion_rule_id, value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_rule_value_value; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_rule_value_value" ON public.promotion_rule_value USING btree (value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_status; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_status" ON public.promotion USING btree (status) WHERE (deleted_at IS NULL);


--
-- Name: IDX_promotion_type; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_promotion_type" ON public.promotion USING btree (type);


--
-- Name: IDX_provider_identity_auth_identity_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_provider_identity_auth_identity_id" ON public.provider_identity USING btree (auth_identity_id);


--
-- Name: IDX_provider_identity_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_provider_identity_deleted_at" ON public.provider_identity USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_provider_identity_provider_entity_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_provider_identity_provider_entity_id" ON public.provider_identity USING btree (entity_id, provider);


--
-- Name: IDX_publishable_key_id_-1d67bae40; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_publishable_key_id_-1d67bae40" ON public.publishable_api_key_sales_channel USING btree (publishable_key_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_rbac_role_id_64ff0c4c; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_rbac_role_id_64ff0c4c" ON public.user_rbac_role USING btree (rbac_role_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_refund_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_refund_deleted_at" ON public.refund USING btree (deleted_at);


--
-- Name: IDX_refund_payment_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_refund_payment_id" ON public.refund USING btree (payment_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_refund_reason_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_refund_reason_deleted_at" ON public.refund_reason USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_refund_refund_reason_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_refund_refund_reason_id" ON public.refund USING btree (refund_reason_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_region_country_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_region_country_deleted_at" ON public.region_country USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_region_country_region_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_region_country_region_id" ON public.region_country USING btree (region_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_region_country_region_id_iso_2_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_region_country_region_id_iso_2_unique" ON public.region_country USING btree (region_id, iso_2);


--
-- Name: IDX_region_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_region_deleted_at" ON public.region USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_region_id_1c934dab0; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_region_id_1c934dab0" ON public.region_payment_provider USING btree (region_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_reservation_item_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_reservation_item_deleted_at" ON public.reservation_item USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_reservation_item_inventory_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_reservation_item_inventory_item_id" ON public.reservation_item USING btree (inventory_item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_reservation_item_line_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_reservation_item_line_item_id" ON public.reservation_item USING btree (line_item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_reservation_item_location_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_reservation_item_location_id" ON public.reservation_item USING btree (location_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_claim_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_claim_id" ON public.return USING btree (claim_id) WHERE ((claim_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_return_display_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_display_id" ON public.return USING btree (display_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_exchange_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_exchange_id" ON public.return USING btree (exchange_id) WHERE ((exchange_id IS NOT NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_return_id_-31ea43a; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_id_-31ea43a" ON public.return_fulfillment USING btree (return_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_item_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_item_deleted_at" ON public.return_item USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_item_item_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_item_item_id" ON public.return_item USING btree (item_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_item_reason_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_item_reason_id" ON public.return_item USING btree (reason_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_item_return_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_item_return_id" ON public.return_item USING btree (return_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_order_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_order_id" ON public.return USING btree (order_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_reason_parent_return_reason_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_reason_parent_return_reason_id" ON public.return_reason USING btree (parent_return_reason_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_return_reason_value; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_return_reason_value" ON public.return_reason USING btree (value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_sales_channel_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_sales_channel_deleted_at" ON public.sales_channel USING btree (deleted_at);


--
-- Name: IDX_sales_channel_id_-1d67bae40; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_sales_channel_id_-1d67bae40" ON public.publishable_api_key_sales_channel USING btree (sales_channel_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_sales_channel_id_20b454295; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_sales_channel_id_20b454295" ON public.product_sales_channel USING btree (sales_channel_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_sales_channel_id_26d06f470; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_sales_channel_id_26d06f470" ON public.sales_channel_stock_location USING btree (sales_channel_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_service_zone_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_service_zone_deleted_at" ON public.service_zone USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_service_zone_fulfillment_set_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_service_zone_fulfillment_set_id" ON public.service_zone USING btree (fulfillment_set_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_service_zone_name_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_service_zone_name_unique" ON public.service_zone USING btree (name) WHERE (deleted_at IS NULL);


--
-- Name: IDX_shipping_method_adjustment_promotion_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_method_adjustment_promotion_id" ON public.cart_shipping_method_adjustment USING btree (promotion_id) WHERE ((deleted_at IS NULL) AND (promotion_id IS NOT NULL));


--
-- Name: IDX_shipping_method_option_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_method_option_id" ON public.cart_shipping_method USING btree (shipping_option_id) WHERE ((deleted_at IS NULL) AND (shipping_option_id IS NOT NULL));


--
-- Name: IDX_shipping_method_tax_line_tax_rate_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_method_tax_line_tax_rate_id" ON public.cart_shipping_method_tax_line USING btree (tax_rate_id) WHERE ((deleted_at IS NULL) AND (tax_rate_id IS NOT NULL));


--
-- Name: IDX_shipping_option_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_deleted_at" ON public.shipping_option USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_shipping_option_id_ba32fa9c; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_id_ba32fa9c" ON public.shipping_option_price_set USING btree (shipping_option_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_shipping_option_provider_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_provider_id" ON public.shipping_option USING btree (provider_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_shipping_option_rule_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_rule_deleted_at" ON public.shipping_option_rule USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_shipping_option_rule_shipping_option_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_rule_shipping_option_id" ON public.shipping_option_rule USING btree (shipping_option_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_shipping_option_service_zone_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_service_zone_id" ON public.shipping_option USING btree (service_zone_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_shipping_option_shipping_option_type_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_shipping_option_type_id" ON public.shipping_option USING btree (shipping_option_type_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_shipping_option_shipping_profile_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_shipping_profile_id" ON public.shipping_option USING btree (shipping_profile_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_shipping_option_type_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_option_type_deleted_at" ON public.shipping_option_type USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_shipping_profile_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_profile_deleted_at" ON public.shipping_profile USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_shipping_profile_id_17a262437; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_shipping_profile_id_17a262437" ON public.product_shipping_profile USING btree (shipping_profile_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_shipping_profile_name_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_shipping_profile_name_unique" ON public.shipping_profile USING btree (name) WHERE (deleted_at IS NULL);


--
-- Name: IDX_single_default_region; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_single_default_region" ON public.tax_rate USING btree (tax_region_id) WHERE ((is_default = true) AND (deleted_at IS NULL));


--
-- Name: IDX_stock_location_address_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_stock_location_address_deleted_at" ON public.stock_location_address USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_stock_location_address_id_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_stock_location_address_id_unique" ON public.stock_location USING btree (address_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_stock_location_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_stock_location_deleted_at" ON public.stock_location USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_stock_location_id_-1e5992737; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_stock_location_id_-1e5992737" ON public.location_fulfillment_provider USING btree (stock_location_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_stock_location_id_-e88adb96; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_stock_location_id_-e88adb96" ON public.location_fulfillment_set USING btree (stock_location_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_stock_location_id_26d06f470; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_stock_location_id_26d06f470" ON public.sales_channel_stock_location USING btree (stock_location_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_store_currency_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_store_currency_deleted_at" ON public.store_currency USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_store_currency_store_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_store_currency_store_id" ON public.store_currency USING btree (store_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_store_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_store_deleted_at" ON public.store USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_store_locale_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_store_locale_deleted_at" ON public.store_locale USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_store_locale_store_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_store_locale_store_id" ON public.store_locale USING btree (store_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_tag_value_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_tag_value_unique" ON public.product_tag USING btree (value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_tax_provider_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_provider_deleted_at" ON public.tax_provider USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_tax_rate_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_rate_deleted_at" ON public.tax_rate USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_tax_rate_rule_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_rate_rule_deleted_at" ON public.tax_rate_rule USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_tax_rate_rule_reference_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_rate_rule_reference_id" ON public.tax_rate_rule USING btree (reference_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_tax_rate_rule_tax_rate_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_rate_rule_tax_rate_id" ON public.tax_rate_rule USING btree (tax_rate_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_tax_rate_rule_unique_rate_reference; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_tax_rate_rule_unique_rate_reference" ON public.tax_rate_rule USING btree (tax_rate_id, reference_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_tax_rate_tax_region_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_rate_tax_region_id" ON public.tax_rate USING btree (tax_region_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_tax_region_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_region_deleted_at" ON public.tax_region USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_tax_region_parent_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_region_parent_id" ON public.tax_region USING btree (parent_id);


--
-- Name: IDX_tax_region_provider_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_tax_region_provider_id" ON public.tax_region USING btree (provider_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_tax_region_unique_country_nullable_province; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_tax_region_unique_country_nullable_province" ON public.tax_region USING btree (country_code) WHERE ((province_code IS NULL) AND (deleted_at IS NULL));


--
-- Name: IDX_tax_region_unique_country_province; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_tax_region_unique_country_province" ON public.tax_region USING btree (country_code, province_code) WHERE (deleted_at IS NULL);


--
-- Name: IDX_type_value_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_type_value_unique" ON public.product_type USING btree (value) WHERE (deleted_at IS NULL);


--
-- Name: IDX_unique_promotion_code; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_unique_promotion_code" ON public.promotion USING btree (code) WHERE (deleted_at IS NULL);


--
-- Name: IDX_user_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_user_deleted_at" ON public."user" USING btree (deleted_at) WHERE (deleted_at IS NOT NULL);


--
-- Name: IDX_user_email_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_user_email_unique" ON public."user" USING btree (email) WHERE (deleted_at IS NULL);


--
-- Name: IDX_user_id_64ff0c4c; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_user_id_64ff0c4c" ON public.user_rbac_role USING btree (user_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_user_preference_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_user_preference_deleted_at" ON public.user_preference USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_user_preference_user_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_user_preference_user_id" ON public.user_preference USING btree (user_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_user_preference_user_id_key_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_user_preference_user_id_key_unique" ON public.user_preference USING btree (user_id, key) WHERE (deleted_at IS NULL);


--
-- Name: IDX_variant_id_17b4c4e35; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_variant_id_17b4c4e35" ON public.product_variant_inventory_item USING btree (variant_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_variant_id_52b23597; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_variant_id_52b23597" ON public.product_variant_price_set USING btree (variant_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_view_configuration_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_view_configuration_deleted_at" ON public.view_configuration USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_view_configuration_entity_is_system_default; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_view_configuration_entity_is_system_default" ON public.view_configuration USING btree (entity, is_system_default) WHERE (deleted_at IS NULL);


--
-- Name: IDX_view_configuration_entity_user_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_view_configuration_entity_user_id" ON public.view_configuration USING btree (entity, user_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_view_configuration_user_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_view_configuration_user_id" ON public.view_configuration USING btree (user_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_waste_attribute_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_waste_attribute_deleted_at" ON public.waste_attribute USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_waste_attribute_id_9c6589bf; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_waste_attribute_id_9c6589bf" ON public.product_product_waste_waste_attribute USING btree (waste_attribute_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_deleted_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_deleted_at" ON public.workflow_execution USING btree (deleted_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_id" ON public.workflow_execution USING btree (id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_retention_time_updated_at_state; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_retention_time_updated_at_state" ON public.workflow_execution USING btree (retention_time, updated_at, state) WHERE ((deleted_at IS NULL) AND (retention_time IS NOT NULL));


--
-- Name: IDX_workflow_execution_run_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_run_id" ON public.workflow_execution USING btree (run_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_state; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_state" ON public.workflow_execution USING btree (state) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_state_updated_at; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_state_updated_at" ON public.workflow_execution USING btree (state, updated_at) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_transaction_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_transaction_id" ON public.workflow_execution USING btree (transaction_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_updated_at_retention_time; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_updated_at_retention_time" ON public.workflow_execution USING btree (updated_at, retention_time) WHERE ((deleted_at IS NULL) AND (retention_time IS NOT NULL) AND ((state)::text = ANY (ARRAY[('done'::character varying)::text, ('failed'::character varying)::text, ('reverted'::character varying)::text])));


--
-- Name: IDX_workflow_execution_workflow_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_workflow_id" ON public.workflow_execution USING btree (workflow_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_workflow_id_transaction_id; Type: INDEX; Schema: public; Owner: biomket
--

CREATE INDEX "IDX_workflow_execution_workflow_id_transaction_id" ON public.workflow_execution USING btree (workflow_id, transaction_id) WHERE (deleted_at IS NULL);


--
-- Name: IDX_workflow_execution_workflow_id_transaction_id_run_id_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX "IDX_workflow_execution_workflow_id_transaction_id_run_id_unique" ON public.workflow_execution USING btree (workflow_id, transaction_id, run_id) WHERE (deleted_at IS NULL);


--
-- Name: idx_script_name_unique; Type: INDEX; Schema: public; Owner: biomket
--

CREATE UNIQUE INDEX idx_script_name_unique ON public.script_migrations USING btree (script_name);


--
-- Name: tax_rate_rule FK_tax_rate_rule_tax_rate_id; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.tax_rate_rule
    ADD CONSTRAINT "FK_tax_rate_rule_tax_rate_id" FOREIGN KEY (tax_rate_id) REFERENCES public.tax_rate(id) ON DELETE CASCADE;


--
-- Name: tax_rate FK_tax_rate_tax_region_id; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.tax_rate
    ADD CONSTRAINT "FK_tax_rate_tax_region_id" FOREIGN KEY (tax_region_id) REFERENCES public.tax_region(id) ON DELETE CASCADE;


--
-- Name: tax_region FK_tax_region_parent_id; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.tax_region
    ADD CONSTRAINT "FK_tax_region_parent_id" FOREIGN KEY (parent_id) REFERENCES public.tax_region(id) ON DELETE CASCADE;


--
-- Name: tax_region FK_tax_region_provider_id; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.tax_region
    ADD CONSTRAINT "FK_tax_region_provider_id" FOREIGN KEY (provider_id) REFERENCES public.tax_provider(id) ON DELETE SET NULL;


--
-- Name: application_method_buy_rules application_method_buy_rules_application_method_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.application_method_buy_rules
    ADD CONSTRAINT application_method_buy_rules_application_method_id_foreign FOREIGN KEY (application_method_id) REFERENCES public.promotion_application_method(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: application_method_buy_rules application_method_buy_rules_promotion_rule_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.application_method_buy_rules
    ADD CONSTRAINT application_method_buy_rules_promotion_rule_id_foreign FOREIGN KEY (promotion_rule_id) REFERENCES public.promotion_rule(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: application_method_target_rules application_method_target_rules_application_method_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.application_method_target_rules
    ADD CONSTRAINT application_method_target_rules_application_method_id_foreign FOREIGN KEY (application_method_id) REFERENCES public.promotion_application_method(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: application_method_target_rules application_method_target_rules_promotion_rule_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.application_method_target_rules
    ADD CONSTRAINT application_method_target_rules_promotion_rule_id_foreign FOREIGN KEY (promotion_rule_id) REFERENCES public.promotion_rule(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: capture capture_payment_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.capture
    ADD CONSTRAINT capture_payment_id_foreign FOREIGN KEY (payment_id) REFERENCES public.payment(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cart cart_billing_address_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart
    ADD CONSTRAINT cart_billing_address_id_foreign FOREIGN KEY (billing_address_id) REFERENCES public.cart_address(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: cart_line_item_adjustment cart_line_item_adjustment_item_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_line_item_adjustment
    ADD CONSTRAINT cart_line_item_adjustment_item_id_foreign FOREIGN KEY (item_id) REFERENCES public.cart_line_item(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cart_line_item cart_line_item_cart_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_line_item
    ADD CONSTRAINT cart_line_item_cart_id_foreign FOREIGN KEY (cart_id) REFERENCES public.cart(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cart_line_item_tax_line cart_line_item_tax_line_item_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_line_item_tax_line
    ADD CONSTRAINT cart_line_item_tax_line_item_id_foreign FOREIGN KEY (item_id) REFERENCES public.cart_line_item(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cart cart_shipping_address_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart
    ADD CONSTRAINT cart_shipping_address_id_foreign FOREIGN KEY (shipping_address_id) REFERENCES public.cart_address(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: cart_shipping_method_adjustment cart_shipping_method_adjustment_shipping_method_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_shipping_method_adjustment
    ADD CONSTRAINT cart_shipping_method_adjustment_shipping_method_id_foreign FOREIGN KEY (shipping_method_id) REFERENCES public.cart_shipping_method(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cart_shipping_method cart_shipping_method_cart_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_shipping_method
    ADD CONSTRAINT cart_shipping_method_cart_id_foreign FOREIGN KEY (cart_id) REFERENCES public.cart(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cart_shipping_method_tax_line cart_shipping_method_tax_line_shipping_method_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.cart_shipping_method_tax_line
    ADD CONSTRAINT cart_shipping_method_tax_line_shipping_method_id_foreign FOREIGN KEY (shipping_method_id) REFERENCES public.cart_shipping_method(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: credit_line credit_line_cart_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.credit_line
    ADD CONSTRAINT credit_line_cart_id_foreign FOREIGN KEY (cart_id) REFERENCES public.cart(id) ON UPDATE CASCADE;


--
-- Name: customer_address customer_address_customer_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.customer_address
    ADD CONSTRAINT customer_address_customer_id_foreign FOREIGN KEY (customer_id) REFERENCES public.customer(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: customer_group_customer customer_group_customer_customer_group_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.customer_group_customer
    ADD CONSTRAINT customer_group_customer_customer_group_id_foreign FOREIGN KEY (customer_group_id) REFERENCES public.customer_group(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: customer_group_customer customer_group_customer_customer_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.customer_group_customer
    ADD CONSTRAINT customer_group_customer_customer_id_foreign FOREIGN KEY (customer_id) REFERENCES public.customer(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: fulfillment fulfillment_delivery_address_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment
    ADD CONSTRAINT fulfillment_delivery_address_id_foreign FOREIGN KEY (delivery_address_id) REFERENCES public.fulfillment_address(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: fulfillment_item fulfillment_item_fulfillment_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment_item
    ADD CONSTRAINT fulfillment_item_fulfillment_id_foreign FOREIGN KEY (fulfillment_id) REFERENCES public.fulfillment(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: fulfillment_label fulfillment_label_fulfillment_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment_label
    ADD CONSTRAINT fulfillment_label_fulfillment_id_foreign FOREIGN KEY (fulfillment_id) REFERENCES public.fulfillment(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: fulfillment fulfillment_provider_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment
    ADD CONSTRAINT fulfillment_provider_id_foreign FOREIGN KEY (provider_id) REFERENCES public.fulfillment_provider(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: fulfillment fulfillment_shipping_option_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.fulfillment
    ADD CONSTRAINT fulfillment_shipping_option_id_foreign FOREIGN KEY (shipping_option_id) REFERENCES public.shipping_option(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: geo_zone geo_zone_service_zone_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.geo_zone
    ADD CONSTRAINT geo_zone_service_zone_id_foreign FOREIGN KEY (service_zone_id) REFERENCES public.service_zone(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: image image_product_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.image
    ADD CONSTRAINT image_product_id_foreign FOREIGN KEY (product_id) REFERENCES public.product(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: inventory_level inventory_level_inventory_item_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.inventory_level
    ADD CONSTRAINT inventory_level_inventory_item_id_foreign FOREIGN KEY (inventory_item_id) REFERENCES public.inventory_item(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: notification notification_provider_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.notification
    ADD CONSTRAINT notification_provider_id_foreign FOREIGN KEY (provider_id) REFERENCES public.notification_provider(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: order order_billing_address_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public."order"
    ADD CONSTRAINT order_billing_address_id_foreign FOREIGN KEY (billing_address_id) REFERENCES public.order_address(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: order_change_action order_change_action_order_change_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_change_action
    ADD CONSTRAINT order_change_action_order_change_id_foreign FOREIGN KEY (order_change_id) REFERENCES public.order_change(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_change order_change_order_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_change
    ADD CONSTRAINT order_change_order_id_foreign FOREIGN KEY (order_id) REFERENCES public."order"(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_credit_line order_credit_line_order_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_credit_line
    ADD CONSTRAINT order_credit_line_order_id_foreign FOREIGN KEY (order_id) REFERENCES public."order"(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_item order_item_item_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_item
    ADD CONSTRAINT order_item_item_id_foreign FOREIGN KEY (item_id) REFERENCES public.order_line_item(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_item order_item_order_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_item
    ADD CONSTRAINT order_item_order_id_foreign FOREIGN KEY (order_id) REFERENCES public."order"(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_line_item_adjustment order_line_item_adjustment_item_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_line_item_adjustment
    ADD CONSTRAINT order_line_item_adjustment_item_id_foreign FOREIGN KEY (item_id) REFERENCES public.order_line_item(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_line_item_tax_line order_line_item_tax_line_item_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_line_item_tax_line
    ADD CONSTRAINT order_line_item_tax_line_item_id_foreign FOREIGN KEY (item_id) REFERENCES public.order_line_item(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_line_item order_line_item_totals_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_line_item
    ADD CONSTRAINT order_line_item_totals_id_foreign FOREIGN KEY (totals_id) REFERENCES public.order_item(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order order_shipping_address_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public."order"
    ADD CONSTRAINT order_shipping_address_id_foreign FOREIGN KEY (shipping_address_id) REFERENCES public.order_address(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: order_shipping_method_adjustment order_shipping_method_adjustment_shipping_method_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_shipping_method_adjustment
    ADD CONSTRAINT order_shipping_method_adjustment_shipping_method_id_foreign FOREIGN KEY (shipping_method_id) REFERENCES public.order_shipping_method(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_shipping_method_tax_line order_shipping_method_tax_line_shipping_method_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_shipping_method_tax_line
    ADD CONSTRAINT order_shipping_method_tax_line_shipping_method_id_foreign FOREIGN KEY (shipping_method_id) REFERENCES public.order_shipping_method(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_shipping order_shipping_order_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_shipping
    ADD CONSTRAINT order_shipping_order_id_foreign FOREIGN KEY (order_id) REFERENCES public."order"(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_summary order_summary_order_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_summary
    ADD CONSTRAINT order_summary_order_id_foreign FOREIGN KEY (order_id) REFERENCES public."order"(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: order_transaction order_transaction_order_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.order_transaction
    ADD CONSTRAINT order_transaction_order_id_foreign FOREIGN KEY (order_id) REFERENCES public."order"(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: payment_collection_payment_providers payment_collection_payment_providers_payment_col_aa276_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment_collection_payment_providers
    ADD CONSTRAINT payment_collection_payment_providers_payment_col_aa276_foreign FOREIGN KEY (payment_collection_id) REFERENCES public.payment_collection(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: payment_collection_payment_providers payment_collection_payment_providers_payment_pro_2d555_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment_collection_payment_providers
    ADD CONSTRAINT payment_collection_payment_providers_payment_pro_2d555_foreign FOREIGN KEY (payment_provider_id) REFERENCES public.payment_provider(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: payment payment_payment_collection_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment
    ADD CONSTRAINT payment_payment_collection_id_foreign FOREIGN KEY (payment_collection_id) REFERENCES public.payment_collection(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: payment_session payment_session_payment_collection_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.payment_session
    ADD CONSTRAINT payment_session_payment_collection_id_foreign FOREIGN KEY (payment_collection_id) REFERENCES public.payment_collection(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: price_list_rule price_list_rule_price_list_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price_list_rule
    ADD CONSTRAINT price_list_rule_price_list_id_foreign FOREIGN KEY (price_list_id) REFERENCES public.price_list(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: price price_price_list_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price
    ADD CONSTRAINT price_price_list_id_foreign FOREIGN KEY (price_list_id) REFERENCES public.price_list(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: price price_price_set_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price
    ADD CONSTRAINT price_price_set_id_foreign FOREIGN KEY (price_set_id) REFERENCES public.price_set(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: price_rule price_rule_price_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.price_rule
    ADD CONSTRAINT price_rule_price_id_foreign FOREIGN KEY (price_id) REFERENCES public.price(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_category product_category_parent_category_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_category
    ADD CONSTRAINT product_category_parent_category_id_foreign FOREIGN KEY (parent_category_id) REFERENCES public.product_category(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_category_product product_category_product_product_category_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_category_product
    ADD CONSTRAINT product_category_product_product_category_id_foreign FOREIGN KEY (product_category_id) REFERENCES public.product_category(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_category_product product_category_product_product_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_category_product
    ADD CONSTRAINT product_category_product_product_id_foreign FOREIGN KEY (product_id) REFERENCES public.product(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product product_collection_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product
    ADD CONSTRAINT product_collection_id_foreign FOREIGN KEY (collection_id) REFERENCES public.product_collection(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: product_option product_option_product_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_option
    ADD CONSTRAINT product_option_product_id_foreign FOREIGN KEY (product_id) REFERENCES public.product(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_option_value product_option_value_option_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_option_value
    ADD CONSTRAINT product_option_value_option_id_foreign FOREIGN KEY (option_id) REFERENCES public.product_option(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_tags product_tags_product_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_tags
    ADD CONSTRAINT product_tags_product_id_foreign FOREIGN KEY (product_id) REFERENCES public.product(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_tags product_tags_product_tag_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_tags
    ADD CONSTRAINT product_tags_product_tag_id_foreign FOREIGN KEY (product_tag_id) REFERENCES public.product_tag(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product product_type_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product
    ADD CONSTRAINT product_type_id_foreign FOREIGN KEY (type_id) REFERENCES public.product_type(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: product_variant_option product_variant_option_option_value_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant_option
    ADD CONSTRAINT product_variant_option_option_value_id_foreign FOREIGN KEY (option_value_id) REFERENCES public.product_option_value(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_variant_option product_variant_option_variant_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant_option
    ADD CONSTRAINT product_variant_option_variant_id_foreign FOREIGN KEY (variant_id) REFERENCES public.product_variant(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_variant product_variant_product_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant
    ADD CONSTRAINT product_variant_product_id_foreign FOREIGN KEY (product_id) REFERENCES public.product(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: product_variant_product_image product_variant_product_image_image_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.product_variant_product_image
    ADD CONSTRAINT product_variant_product_image_image_id_foreign FOREIGN KEY (image_id) REFERENCES public.image(id) ON DELETE CASCADE;


--
-- Name: promotion_application_method promotion_application_method_promotion_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_application_method
    ADD CONSTRAINT promotion_application_method_promotion_id_foreign FOREIGN KEY (promotion_id) REFERENCES public.promotion(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: promotion_campaign_budget promotion_campaign_budget_campaign_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_campaign_budget
    ADD CONSTRAINT promotion_campaign_budget_campaign_id_foreign FOREIGN KEY (campaign_id) REFERENCES public.promotion_campaign(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: promotion_campaign_budget_usage promotion_campaign_budget_usage_budget_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_campaign_budget_usage
    ADD CONSTRAINT promotion_campaign_budget_usage_budget_id_foreign FOREIGN KEY (budget_id) REFERENCES public.promotion_campaign_budget(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: promotion promotion_campaign_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion
    ADD CONSTRAINT promotion_campaign_id_foreign FOREIGN KEY (campaign_id) REFERENCES public.promotion_campaign(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: promotion_promotion_rule promotion_promotion_rule_promotion_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_promotion_rule
    ADD CONSTRAINT promotion_promotion_rule_promotion_id_foreign FOREIGN KEY (promotion_id) REFERENCES public.promotion(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: promotion_promotion_rule promotion_promotion_rule_promotion_rule_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_promotion_rule
    ADD CONSTRAINT promotion_promotion_rule_promotion_rule_id_foreign FOREIGN KEY (promotion_rule_id) REFERENCES public.promotion_rule(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: promotion_rule_value promotion_rule_value_promotion_rule_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.promotion_rule_value
    ADD CONSTRAINT promotion_rule_value_promotion_rule_id_foreign FOREIGN KEY (promotion_rule_id) REFERENCES public.promotion_rule(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: provider_identity provider_identity_auth_identity_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.provider_identity
    ADD CONSTRAINT provider_identity_auth_identity_id_foreign FOREIGN KEY (auth_identity_id) REFERENCES public.auth_identity(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: refund refund_payment_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.refund
    ADD CONSTRAINT refund_payment_id_foreign FOREIGN KEY (payment_id) REFERENCES public.payment(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: region_country region_country_region_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.region_country
    ADD CONSTRAINT region_country_region_id_foreign FOREIGN KEY (region_id) REFERENCES public.region(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: reservation_item reservation_item_inventory_item_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.reservation_item
    ADD CONSTRAINT reservation_item_inventory_item_id_foreign FOREIGN KEY (inventory_item_id) REFERENCES public.inventory_item(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: return_reason return_reason_parent_return_reason_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.return_reason
    ADD CONSTRAINT return_reason_parent_return_reason_id_foreign FOREIGN KEY (parent_return_reason_id) REFERENCES public.return_reason(id);


--
-- Name: service_zone service_zone_fulfillment_set_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.service_zone
    ADD CONSTRAINT service_zone_fulfillment_set_id_foreign FOREIGN KEY (fulfillment_set_id) REFERENCES public.fulfillment_set(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: shipping_option shipping_option_provider_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option
    ADD CONSTRAINT shipping_option_provider_id_foreign FOREIGN KEY (provider_id) REFERENCES public.fulfillment_provider(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: shipping_option_rule shipping_option_rule_shipping_option_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option_rule
    ADD CONSTRAINT shipping_option_rule_shipping_option_id_foreign FOREIGN KEY (shipping_option_id) REFERENCES public.shipping_option(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: shipping_option shipping_option_service_zone_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option
    ADD CONSTRAINT shipping_option_service_zone_id_foreign FOREIGN KEY (service_zone_id) REFERENCES public.service_zone(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: shipping_option shipping_option_shipping_option_type_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option
    ADD CONSTRAINT shipping_option_shipping_option_type_id_foreign FOREIGN KEY (shipping_option_type_id) REFERENCES public.shipping_option_type(id) ON UPDATE CASCADE;


--
-- Name: shipping_option shipping_option_shipping_profile_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.shipping_option
    ADD CONSTRAINT shipping_option_shipping_profile_id_foreign FOREIGN KEY (shipping_profile_id) REFERENCES public.shipping_profile(id) ON UPDATE CASCADE ON DELETE SET NULL;


--
-- Name: stock_location stock_location_address_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.stock_location
    ADD CONSTRAINT stock_location_address_id_foreign FOREIGN KEY (address_id) REFERENCES public.stock_location_address(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: store_currency store_currency_store_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.store_currency
    ADD CONSTRAINT store_currency_store_id_foreign FOREIGN KEY (store_id) REFERENCES public.store(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: store_locale store_locale_store_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: biomket
--

ALTER TABLE ONLY public.store_locale
    ADD CONSTRAINT store_locale_store_id_foreign FOREIGN KEY (store_id) REFERENCES public.store(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- PostgreSQL database dump complete
--

\unrestrict fzET4pnkyb0QNVsfxvBzvGfhzOt1kJUUw1sJD9NNngq9mgWlXq3bCZBwDij9Eib

