--
-- PostgreSQL database dump
--

-- Dumped from database version 13.3
-- Dumped by pg_dump version 13.3

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: cube; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS cube WITH SCHEMA public;


--
-- Name: EXTENSION cube; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION cube IS 'data type for multidimensional cubes';


--
-- Name: earthdistance; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS earthdistance WITH SCHEMA public;


--
-- Name: EXTENSION earthdistance; Type: COMMENT; Schema: -; Owner: 
--

COMMENT ON EXTENSION earthdistance IS 'calculate great-circle distances on the surface of the Earth';


--
-- Name: order_after_insert(); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.order_after_insert() RETURNS trigger
    LANGUAGE plpgsql
    AS $$

BEGIN

  IF tg_op = 'INSERT' THEN

     INSERT INTO orders_log(order_id, order_key, customer_id,vendor_id,total_amount,created_date,modified_date,modified_by,order_accepted_by,order_status,delivery_status,coupon_id,coupon_amount,delivery_charge,service_tax,payment_status,invoice_id,vendor_commission,payment_gateway_commission,outlet_id)

     VALUES (new.id, new.order_key, new.customer_id,new.vendor_id,new.total_amount,new.created_date,new.modified_date,new.modified_by,new.order_accepted_by,new.order_status,new.delivery_status,new.coupon_id,new.coupon_amount,new.delivery_charge,new.service_tax,new.payment_status,new.invoice_id,new.vendor_commission,new.payment_gateway_commission,new.outlet_id);

     RETURN new;

  END IF;

  IF tg_op = 'UPDATE' THEN

     INSERT INTO orders_log(order_id, order_key, customer_id,vendor_id,total_amount,created_date,modified_date,modified_by,order_accepted_by,order_status,delivery_status,coupon_id,coupon_amount,delivery_charge,service_tax,payment_status,invoice_id,vendor_commission,payment_gateway_commission,outlet_id)

     VALUES (new.id, new.order_key, new.customer_id,new.vendor_id,new.total_amount,new.created_date,new.modified_date,new.modified_by,new.order_accepted_by,new.order_status,new.delivery_status,new.coupon_id,new.coupon_amount,new.delivery_charge,new.service_tax,new.payment_status,new.invoice_id,new.vendor_commission,new.payment_gateway_commission,new.outlet_id);

     RETURN new;

  END IF;

END

$$;


ALTER FUNCTION public.order_after_insert() OWNER TO postgres;

--
-- Name: order_insert(); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.order_insert() RETURNS trigger
    LANGUAGE plpgsql
    AS $$

BEGIN

  IF tg_op = 'DELETE' THEN

     INSERT INTO orders_log(order_id, order_key, customer_id,vendor_id,total_amount,created_date,modified_date,modified_by,order_accepted_by,order_status,delivery_status,coupon_id,coupon_amount,delivery_charge,service_tax,payment_status,invoice_id,vendor_commission,payment_gateway_commission,outlet_id)

     VALUES (old.id, old.order_key, old.customer_id,old.vendor_id,old.total_amount,old.created_date,old.modified_date,old.modified_by,old.order_accepted_by,old.order_status,old.delivery_status,old.coupon_id,old.coupon_amount,old.delivery_charge,old.service_tax,old.payment_status,old.invoice_id,old.vendor_commission,old.payment_gateway_commission,old.outlet_id);

     RETURN old;

  END IF;

  IF tg_op = 'INSERT' THEN

     INSERT INTO orders_log(order_id, order_key, customer_id,vendor_id,total_amount,created_date,modified_date,modified_by,order_accepted_by,order_status,delivery_status,coupon_id,coupon_amount,delivery_charge,service_tax,payment_status,invoice_id,vendor_commission,payment_gateway_commission,outlet_id)

     VALUES (new.id, new.order_key, new.customer_id,new.vendor_id,new.total_amount,new.created_date,new.modified_date,new.modified_by,new.order_accepted_by,new.order_status,new.delivery_status,new.coupon_id,new.coupon_amount,new.delivery_charge,new.service_tax,new.payment_status,new.invoice_id,new.vendor_commission,new.payment_gateway_commission,new.outlet_id);

     RETURN new;

  END IF;

  IF tg_op = 'UPDATE' THEN

     INSERT INTO orders_log(order_id, order_key, customer_id,vendor_id,total_amount,created_date,modified_date,modified_by,order_accepted_by,order_status,delivery_status,coupon_id,coupon_amount,delivery_charge,service_tax,payment_status,invoice_id,vendor_commission,payment_gateway_commission,outlet_id,order_comments)

     VALUES (old.id, old.order_key, old.customer_id,old.vendor_id,old.total_amount,old.created_date,old.modified_date,old.modified_by,old.order_accepted_by,old.order_status,old.delivery_status,old.coupon_id,old.coupon_amount,old.delivery_charge,old.service_tax,old.payment_status,old.invoice_id,old.vendor_commission,old.payment_gateway_commission,old.outlet_id,old.order_comments);

     RETURN new;

  END IF;

END

$$;


ALTER FUNCTION public.order_insert() OWNER TO postgres;

--
-- Name: search_results(integer, integer[], integer[]); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.search_results(lang_id integer, categories integer[], subcategories integer[]) RETURNS TABLE(id integer, outlet_id integer, contact_address character varying, minimum_order_amount double precision, active_status character, delivery_charges_fixed double precision, delivery_charges_variation double precision, service_tax double precision, contact_phone character varying, contact_email character varying, outlet_name character varying, url_index character varying, open_status smallint, latitude double precision, longitude double precision, outlets_average_rating smallint, review_count smallint, image character varying, banner_image character varying, outlet_timezone character varying)
    LANGUAGE plpgsql
    AS $_$

BEGIN

  /* for getting the data */

      CASE

        WHEN (( array_length(categories, 1) IS NULL ) AND ( array_length(subcategories, 1) IS NULL )) THEN

          RETURN QUERY 		SELECT distinct on (outlets.id) outlets.id,  

            outlets.id as outlet_id,

            outlets.contact_address,

	    CAST( COALESCE(outlets.minimum_order_amount, 0) as double precision) as minimum_order_amount,

            outlets.active_status,

            CAST( COALESCE(outlets.delivery_charges_fixed, 0) as double precision) as delivery_charges_fixed,

            CAST( COALESCE(outlets.delivery_charges_variation, 0) as double precision) as delivery_charges_variation,

            CAST( COALESCE(outlets.service_tax, 0) as double precision) as service_tax,

            outlets.contact_phone,

            outlets.contact_email,

            outlet_infos.outlet_name,

            outlets.url_index,

            outlets.open_status,

            outlets.latitude,

            outlets.longitude,

            outlets.average_rating AS outlets_average_rating,

            CAST( COALESCE( outlets.review_count, 0) as smallint) as review_count,

            outlets.image,

            outlets.banner_image,

            outlets.outlet_timezone

            FROM products

            LEFT JOIN outlets ON ( 

                                    outlets.id = products.outlet_id AND 

                                    products.active_status = 1 AND 

                                    products.approval_status = 1 

                                    )

            LEFT JOIN vendors ON (vendors.id = products.vendor_id)

            LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

            WHERE 

            	(

                outlet_infos.language_id =

                CASE

                    WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                       FROM outlet_infos outlet_infos_1

                      WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                    ELSE 1

                END

              ) 

              AND 

              (vendors.active_status = 1) 

              AND 

              (outlets.open_status = 1) 

              AND 

              (outlets.active_status = '1'::bpchar) 

              AND 

              (vendors.plan_ends_at >= NOW() at time zone active_timezone)

          order by outlets.id ;

        WHEN (( array_length(categories, 1) > 0 ) AND ( array_length(subcategories, 1) IS NULL )) THEN

          RETURN QUERY    SELECT distinct on (outlets.id) outlets.id,  

            outlets.id as outlet_id,

            outlets.contact_address,

	    CAST( COALESCE(outlets.minimum_order_amount, 0) as double precision) as minimum_order_amount,

            outlets.active_status,

            CAST( COALESCE(outlets.delivery_charges_fixed, 0) as double precision) as delivery_charges_fixed,

            CAST( COALESCE(outlets.delivery_charges_variation, 0) as double precision) as delivery_charges_variation,

            CAST( COALESCE(outlets.service_tax, 0) as double precision) as service_tax,

            outlets.contact_phone,

            outlets.contact_email,

            outlet_infos.outlet_name,

            outlets.url_index,

            outlets.open_status,

            outlets.latitude,

            outlets.longitude,

            outlets.average_rating AS outlets_average_rating,

            CAST( COALESCE( outlets.review_count, 0) as smallint) as review_count,

            outlets.image,

            outlets.banner_image,

            outlets.outlet_timezone

            FROM products

            LEFT JOIN outlets ON ( 

                                  outlets.id = products.outlet_id AND 

                                  products.active_status = 1 AND 

                                  products.approval_status = 1 AND 

                                  products.category_id = ANY( categories ) 

                                  )

            LEFT JOIN vendors ON (vendors.id = products.vendor_id)

            LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

            WHERE 

              (

                outlet_infos.language_id =

                CASE

                    WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                       FROM outlet_infos outlet_infos_1

                      WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                    ELSE 1

                END

              ) 

              AND 

              (vendors.active_status = 1) 

              AND 

              (outlets.open_status = 1) 

              AND 

              (outlets.active_status = '1'::bpchar) 

              AND 

              (vendors.plan_ends_at >= NOW() at time zone active_timezone)

          order by outlets.id ;

        WHEN (( array_length(categories, 1) IS NULL ) AND ( array_length(subcategories, 1) > 0 )) THEN

          RETURN QUERY    SELECT distinct on (outlets.id) outlets.id,  

              outlets.id as outlet_id,

            outlets.contact_address,

	    CAST( COALESCE(outlets.minimum_order_amount, 0) as double precision) as minimum_order_amount,

            outlets.active_status,

            CAST( COALESCE(outlets.delivery_charges_fixed, 0) as double precision) as delivery_charges_fixed,

            CAST( COALESCE(outlets.delivery_charges_variation, 0) as double precision) as delivery_charges_variation,

            CAST( COALESCE(outlets.service_tax, 0) as double precision) as service_tax,

              outlets.contact_phone,

              outlets.contact_email,

              outlet_infos.outlet_name,

              outlets.url_index,

              outlets.open_status,

              outlets.latitude,

              outlets.longitude,

              outlets.average_rating AS outlets_average_rating,

              CAST( COALESCE( outlets.review_count, 0) as smallint) as review_count,

              outlets.image,

              outlets.banner_image,

              outlets.outlet_timezone

              FROM products

              LEFT JOIN outlets ON ( 

                                  outlets.id = products.outlet_id AND 

                                  products.active_status = 1 AND 

                                  products.approval_status = 1 AND 

                                  products.subcategory_id = ANY (subcategories)

                                  )

              LEFT JOIN vendors ON (vendors.id = products.vendor_id)

              LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

              WHERE 

                (

                  outlet_infos.language_id =

                  CASE

                      WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                         FROM outlet_infos outlet_infos_1

                        WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                      ELSE 1

                  END

                ) 

                AND 

                (vendors.active_status = 1) 

                AND 

                (outlets.open_status = 1) 

                AND 

                (outlets.active_status = '1'::bpchar) 

                AND 

                (vendors.plan_ends_at >= NOW() at time zone active_timezone)

            order by outlets.id ;

        WHEN (( array_length(categories, 1) > 0 ) AND ( array_length(subcategories, 1) > 0 )) THEN

          RETURN QUERY    SELECT distinct on (outlets.id) outlets.id,  

              outlets.id as outlet_id,

            outlets.contact_address,

	    CAST( COALESCE(outlets.minimum_order_amount, 0) as double precision) as minimum_order_amount,

            outlets.active_status,

            CAST( COALESCE(outlets.delivery_charges_fixed, 0) as double precision) as delivery_charges_fixed,

            CAST( COALESCE(outlets.delivery_charges_variation, 0) as double precision) as delivery_charges_variation,

            CAST( COALESCE(outlets.service_tax, 0) as double precision) as service_tax,

              outlets.contact_phone,

              outlets.contact_email,

              outlet_infos.outlet_name,

              outlets.url_index,

              outlets.open_status,

              outlets.latitude,

              outlets.longitude,

              outlets.average_rating AS outlets_average_rating,

              CAST( COALESCE( outlets.review_count, 0) as smallint) as review_count,

              outlets.image,

              outlets.banner_image,

              outlets.outlet_timezone

              FROM products

              LEFT JOIN outlets ON ( 

                                    outlets.id = products.outlet_id AND 

                                    products.active_status = 1 AND 

                                    products.approval_status = 1 AND 

                                    products.category_id = ANY( categories ) AND 

                                    products.subcategory_id = ANY( subcategories ) 

                                    )

              LEFT JOIN vendors ON (vendors.id = products.vendor_id)

              LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

              WHERE 

              (

                outlet_infos.language_id =

                  CASE

                      WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                         FROM outlet_infos outlet_infos_1

                        WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                      ELSE 1

                  END

              ) 

              AND 

              (vendors.active_status = 1) 

              AND 

              (outlets.open_status = 1) 

              AND 

              (outlets.active_status = '1'::bpchar) 

              AND 

              (vendors.plan_ends_at >= NOW() at time zone active_timezone)

            order by outlets.id ;

        ELSE

      END CASE;

END; $_$;


ALTER FUNCTION public.search_results(lang_id integer, categories integer[], subcategories integer[]) OWNER TO postgres;

--
-- Name: search_results_count(integer, integer[], integer[]); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.search_results_count(lang_id integer, categories integer[], subcategories integer[]) RETURNS TABLE(id integer)
    LANGUAGE plpgsql
    AS $_$

BEGIN

  /* for getting count */

  CASE

    WHEN (( array_length(categories, 1) IS NULL ) AND ( array_length(subcategories, 1) IS NULL )) THEN

      RETURN QUERY    SELECT distinct on (outlets.id) outlets.id as id 

        FROM products

        LEFT JOIN outlets ON ( 

                                outlets.id = products.outlet_id AND 

                                products.active_status = 1 AND 

                                products.approval_status = 1 

                                )

        LEFT JOIN vendors ON (vendors.id = products.vendor_id)

        LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

        WHERE 

          (

            outlet_infos.language_id =

            CASE

                WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                   FROM outlet_infos outlet_infos_1

                  WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                ELSE 1

            END

          ) 

          AND 

          (vendors.active_status = 1) 

          AND 

          (outlets.open_status = 1) 

          AND 

          (outlets.active_status = '1'::bpchar) 

          AND 

          (vendors.plan_ends_at >= NOW() at time zone active_timezone)

      order by outlets.id ;

    WHEN (( array_length(categories, 1) > 0 ) AND ( array_length(subcategories, 1) IS NULL )) THEN

      RETURN QUERY    SELECT distinct on (outlets.id) outlets.id as id 

        FROM products

        LEFT JOIN outlets ON ( 

                              outlets.id = products.outlet_id AND 

                              products.active_status = 1 AND 

                              products.approval_status = 1 AND 

                              products.category_id = ANY( categories ) 

                              )

        LEFT JOIN vendors ON (vendors.id = products.vendor_id)

        LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

        WHERE 

          (

            outlet_infos.language_id =

            CASE

                WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                   FROM outlet_infos outlet_infos_1

                  WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                ELSE 1

            END

          ) 

          AND 

          (vendors.active_status = 1) 

          AND 

          (outlets.open_status = 1) 

          AND 

          (outlets.active_status = '1'::bpchar) 

          AND 

          (vendors.plan_ends_at >= NOW() at time zone active_timezone)

      order by outlets.id ;

    WHEN (( array_length(categories, 1) IS NULL ) AND ( array_length(subcategories, 1) > 0 )) THEN

      RETURN QUERY    SELECT distinct on (outlets.id) outlets.id as id 

          FROM products

          LEFT JOIN outlets ON ( 

                              outlets.id = products.outlet_id AND 

                              products.active_status = 1 AND 

                              products.approval_status = 1 AND 

                              products.subcategory_id = ANY (subcategories)

                              )

          LEFT JOIN vendors ON (vendors.id = products.vendor_id)

          LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

          WHERE 

            (

              outlet_infos.language_id =

              CASE

                  WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                     FROM outlet_infos outlet_infos_1

                    WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                  ELSE 1

              END

            ) 

            AND 

            (vendors.active_status = 1) 

            AND 

            (outlets.open_status = 1) 

            AND 

            (outlets.active_status = '1'::bpchar) 

            AND 

            (vendors.plan_ends_at >= NOW() at time zone active_timezone)

        order by outlets.id ;

    WHEN (( array_length(categories, 1) > 0 ) AND ( array_length(subcategories, 1) > 0 )) THEN

      RETURN QUERY    SELECT distinct on (outlets.id) outlets.id as id 

          FROM products

          LEFT JOIN outlets ON ( 

                                outlets.id = products.outlet_id AND 

                                products.active_status = 1 AND 

                                products.approval_status = 1 AND 

                                products.category_id = ANY( categories ) AND 

                                products.subcategory_id = ANY( subcategories ) 

                                )

          LEFT JOIN vendors ON (vendors.id = products.vendor_id)

          LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

          WHERE 

          (

            outlet_infos.language_id =

              CASE

                  WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                     FROM outlet_infos outlet_infos_1

                    WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                  ELSE 1

              END

          ) 

          AND 

          (vendors.active_status = 1) 

          AND 

          (outlets.open_status = 1) 

          AND 

          (outlets.active_status = '1'::bpchar) 

          AND 

          (vendors.plan_ends_at >= NOW() at time zone active_timezone)

        order by outlets.id ;

    ELSE

  END CASE;

END; $_$;


ALTER FUNCTION public.search_results_count(lang_id integer, categories integer[], subcategories integer[]) OWNER TO postgres;

--
-- Name: search_results_count_distance(integer, integer[], integer[], double precision, double precision); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.search_results_count_distance(lang_id integer, categories integer[], subcategories integer[], find_lat double precision, find_lng double precision) RETURNS TABLE(id integer)
    LANGUAGE plpgsql
    AS $_$

BEGIN

  /* for getting count */

  CASE

    WHEN (( array_length(categories, 1) IS NULL ) AND ( array_length(subcategories, 1) IS NULL )) THEN

      RETURN QUERY    SELECT distinct on (outlets.id) outlets.id as id 

        FROM products

        LEFT JOIN outlets ON ( 

                                outlets.id = products.outlet_id AND 

                                products.active_status = 1 AND 

                                products.approval_status = 1 

                                )

        LEFT JOIN vendors ON (vendors.id = products.vendor_id)

        LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

        WHERE 

          (

            outlet_infos.language_id =

            CASE

                WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                   FROM outlet_infos outlet_infos_1

                  WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                ELSE 1

            END

          ) 

          AND 

          (vendors.active_status = 1) 

          AND 

          (outlets.open_status = 1) 

          AND 

          (outlets.active_status = '1'::bpchar) 

          AND 

          (vendors.plan_ends_at >= NOW() at time zone active_timezone)

	    AND 

		( earth_box(ll_to_earth(find_lat,find_lng), 60000) @> ll_to_earth(outlets.latitude, outlets.longitude) )

      order by outlets.id ;

    WHEN (( array_length(categories, 1) > 0 ) AND ( array_length(subcategories, 1) IS NULL )) THEN

      RETURN QUERY    SELECT distinct on (outlets.id) outlets.id as id 

        FROM products

        LEFT JOIN outlets ON ( 

                              outlets.id = products.outlet_id AND 

                              products.active_status = 1 AND 

                              products.approval_status = 1 AND 

                              products.category_id = ANY( categories ) 

                              )

        LEFT JOIN vendors ON (vendors.id = products.vendor_id)

        LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

        WHERE 

          (

            outlet_infos.language_id =

            CASE

                WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                   FROM outlet_infos outlet_infos_1

                  WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                ELSE 1

            END

          ) 

          AND 

          (vendors.active_status = 1) 

          AND 

          (outlets.open_status = 1) 

          AND 

          (outlets.active_status = '1'::bpchar) 

          AND 

          (vendors.plan_ends_at >= NOW() at time zone active_timezone)

	    AND 

		( earth_box(ll_to_earth(find_lat,find_lng), 60000) @> ll_to_earth(outlets.latitude, outlets.longitude) )

      order by outlets.id ;

    WHEN (( array_length(categories, 1) IS NULL ) AND ( array_length(subcategories, 1) > 0 )) THEN

      RETURN QUERY    SELECT distinct on (outlets.id) outlets.id as id 

          FROM products

          LEFT JOIN outlets ON ( 

                              outlets.id = products.outlet_id AND 

                              products.active_status = 1 AND 

                              products.approval_status = 1 AND 

                              products.subcategory_id = ANY (subcategories)

                              )

          LEFT JOIN vendors ON (vendors.id = products.vendor_id)

          LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

          WHERE 

            (

              outlet_infos.language_id =

              CASE

                  WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                     FROM outlet_infos outlet_infos_1

                    WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                  ELSE 1

              END

            ) 

            AND 

            (vendors.active_status = 1) 

            AND 

            (outlets.open_status = 1) 

            AND 

            (outlets.active_status = '1'::bpchar) 

            AND 

            (vendors.plan_ends_at >= NOW() at time zone active_timezone)

	    AND 

		( earth_box(ll_to_earth(find_lat,find_lng), 60000) @> ll_to_earth(outlets.latitude, outlets.longitude) )

        order by outlets.id ;

    WHEN (( array_length(categories, 1) > 0 ) AND ( array_length(subcategories, 1) > 0 )) THEN

      RETURN QUERY    SELECT distinct on (outlets.id) outlets.id as id 

          FROM products

          LEFT JOIN outlets ON ( 

                                outlets.id = products.outlet_id AND 

                                products.active_status = 1 AND 

                                products.approval_status = 1 AND 

                                products.category_id = ANY( categories ) AND 

                                products.subcategory_id = ANY( subcategories ) 

                                )

          LEFT JOIN vendors ON (vendors.id = products.vendor_id)

          LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

          WHERE 

          (

            outlet_infos.language_id =

              CASE

                  WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                     FROM outlet_infos outlet_infos_1

                    WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                  ELSE 1

              END

          ) 

          AND 

          (vendors.active_status = 1) 

          AND 

          (outlets.open_status = 1) 

          AND 

          (outlets.active_status = '1'::bpchar) 

          AND 

          (vendors.plan_ends_at >= NOW() at time zone active_timezone)

	    AND 

		( earth_box(ll_to_earth(find_lat,find_lng), 60000) @> ll_to_earth(outlets.latitude, outlets.longitude) )

        order by outlets.id ;

    ELSE

  END CASE;

END; $_$;


ALTER FUNCTION public.search_results_count_distance(lang_id integer, categories integer[], subcategories integer[], find_lat double precision, find_lng double precision) OWNER TO postgres;

--
-- Name: search_results_distance(integer, integer[], integer[], double precision, double precision); Type: FUNCTION; Schema: public; Owner: postgres
--

CREATE FUNCTION public.search_results_distance(lang_id integer, categories integer[], subcategories integer[], find_lat double precision, find_lng double precision) RETURNS TABLE(id integer, outlet_id integer, contact_address character varying, minimum_order_amount double precision, active_status character, delivery_charges_fixed double precision, delivery_charges_variation double precision, service_tax double precision, contact_phone character varying, contact_email character varying, outlet_name character varying, url_index character varying, open_status smallint, latitude double precision, longitude double precision, outlets_average_rating smallint, review_count smallint, image character varying, banner_image character varying, outlet_timezone character varying, distance double precision)
    LANGUAGE plpgsql
    AS $_$

BEGIN

  /* for getting the data */

      CASE

        WHEN (( array_length(categories, 1) IS NULL ) AND ( array_length(subcategories, 1) IS NULL )) THEN

          RETURN QUERY 		SELECT distinct on (outlets.id) outlets.id,  

            outlets.id as outlet_id,

            outlets.contact_address,

	    CAST( COALESCE(outlets.minimum_order_amount, 0) as double precision) as minimum_order_amount,

            outlets.active_status,

            CAST( COALESCE(outlets.delivery_charges_fixed, 0) as double precision) as delivery_charges_fixed,

            CAST( COALESCE(outlets.delivery_charges_variation, 0) as double precision) as delivery_charges_variation,

            CAST( COALESCE(outlets.service_tax, 0) as double precision) as service_tax,

            outlets.contact_phone,

            outlets.contact_email,

            outlet_infos.outlet_name,

            outlets.url_index,

            outlets.open_status,

            outlets.latitude,

            outlets.longitude,

            outlets.average_rating AS outlets_average_rating,

            outlets.review_count,

            outlets.image,

            outlets.banner_image,

            outlets.outlet_timezone,

		earth_distance(  ll_to_earth(find_lat,find_lng), ll_to_earth(outlets.latitude, outlets.longitude)  ) as distance 

            FROM products

            LEFT JOIN outlets ON ( 

                                    outlets.id = products.outlet_id AND 

                                    products.active_status = 1 AND 

                                    products.approval_status = 1 

                                    )

            LEFT JOIN vendors ON (vendors.id = products.vendor_id)

            LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

            WHERE 

            	(

                outlet_infos.language_id =

                CASE

                    WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                       FROM outlet_infos outlet_infos_1

                      WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                    ELSE 1

                END

              ) 

              AND 

              (vendors.active_status = 1) 

              AND 

              (outlets.open_status = 1) 

              AND 

              (outlets.active_status = '1'::bpchar) 

              AND 

              (vendors.plan_ends_at >= NOW() at time zone active_timezone)

	      	AND 

		( earth_box(ll_to_earth(find_lat,find_lng), 60000) @> ll_to_earth(outlets.latitude, outlets.longitude) )

          order by outlets.id ;

        WHEN (( array_length(categories, 1) > 0 ) AND ( array_length(subcategories, 1) IS NULL )) THEN

          RETURN QUERY    SELECT distinct on (outlets.id) outlets.id,  

            outlets.id as outlet_id,

            outlets.contact_address,

	    CAST( COALESCE(outlets.minimum_order_amount, 0) as double precision) as minimum_order_amount,

            outlets.active_status,

            CAST( COALESCE(outlets.delivery_charges_fixed, 0) as double precision) as delivery_charges_fixed,

            CAST( COALESCE(outlets.delivery_charges_variation, 0) as double precision) as delivery_charges_variation,

            CAST( COALESCE(outlets.service_tax, 0) as double precision) as service_tax,

            outlets.contact_phone,

            outlets.contact_email,

            outlet_infos.outlet_name,

            outlets.url_index,

            outlets.open_status,

            outlets.latitude,

            outlets.longitude,

            outlets.average_rating AS outlets_average_rating,

            outlets.review_count,

            outlets.image,

            outlets.banner_image,

            outlets.outlet_timezone,

		earth_distance(  ll_to_earth(find_lat,find_lng), ll_to_earth(outlets.latitude, outlets.longitude)  ) as distance 

            FROM products

            LEFT JOIN outlets ON ( 

                                  outlets.id = products.outlet_id AND 

                                  products.active_status = 1 AND 

                                  products.approval_status = 1 AND 

                                  products.category_id = ANY( categories ) 

                                  )

            LEFT JOIN vendors ON (vendors.id = products.vendor_id)

            LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

            WHERE 

              (

                outlet_infos.language_id =

                CASE

                    WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                       FROM outlet_infos outlet_infos_1

                      WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                    ELSE 1

                END

              ) 

              AND 

              (vendors.active_status = 1) 

              AND 

              (outlets.open_status = 1) 

              AND 

              (outlets.active_status = '1'::bpchar) 

              AND 

              (vendors.plan_ends_at >= NOW() at time zone active_timezone)

	      	AND 

		( earth_box(ll_to_earth(find_lat,find_lng), 60000) @> ll_to_earth(outlets.latitude, outlets.longitude) )

          order by outlets.id ;

        WHEN (( array_length(categories, 1) IS NULL ) AND ( array_length(subcategories, 1) > 0 )) THEN

          RETURN QUERY    SELECT distinct on (outlets.id) outlets.id,  

              outlets.id as outlet_id,

            outlets.contact_address,

	    CAST( COALESCE(outlets.minimum_order_amount, 0) as double precision) as minimum_order_amount,

            outlets.active_status,

            CAST( COALESCE(outlets.delivery_charges_fixed, 0) as double precision) as delivery_charges_fixed,

            CAST( COALESCE(outlets.delivery_charges_variation, 0) as double precision) as delivery_charges_variation,

            CAST( COALESCE(outlets.service_tax, 0) as double precision) as service_tax,

              outlets.contact_phone,

              outlets.contact_email,

              outlet_infos.outlet_name,

              outlets.url_index,

              outlets.open_status,

              outlets.latitude,

              outlets.longitude,

              outlets.average_rating AS outlets_average_rating,

              outlets.review_count,

              outlets.image,

              outlets.banner_image,

              outlets.outlet_timezone,

		earth_distance(  ll_to_earth(find_lat,find_lng), ll_to_earth(outlets.latitude, outlets.longitude)  ) as distance 

              FROM products

              LEFT JOIN outlets ON ( 

                                  outlets.id = products.outlet_id AND 

                                  products.active_status = 1 AND 

                                  products.approval_status = 1 AND 

                                  products.subcategory_id = ANY (subcategories)

                                  )

              LEFT JOIN vendors ON (vendors.id = products.vendor_id)

              LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

              WHERE 

                (

                  outlet_infos.language_id =

                  CASE

                      WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                         FROM outlet_infos outlet_infos_1

                        WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                      ELSE 1

                  END

                ) 

                AND 

                (vendors.active_status = 1) 

                AND 

                (outlets.open_status = 1) 

                AND 

                (outlets.active_status = '1'::bpchar) 

                AND 

                (vendors.plan_ends_at >= NOW() at time zone active_timezone)

	      	AND 

		( earth_box(ll_to_earth(find_lat,find_lng), 60000) @> ll_to_earth(outlets.latitude, outlets.longitude) )

            order by outlets.id ;

        WHEN (( array_length(categories, 1) > 0 ) AND ( array_length(subcategories, 1) > 0 )) THEN

          RETURN QUERY    SELECT distinct on (outlets.id) outlets.id,  

              outlets.id as outlet_id,

            outlets.contact_address,

	    CAST( COALESCE(outlets.minimum_order_amount, 0) as double precision) as minimum_order_amount,

            outlets.active_status,

            CAST( COALESCE(outlets.delivery_charges_fixed, 0) as double precision) as delivery_charges_fixed,

            CAST( COALESCE(outlets.delivery_charges_variation, 0) as double precision) as delivery_charges_variation,

            CAST( COALESCE(outlets.service_tax, 0) as double precision) as service_tax,

              outlets.contact_phone,

              outlets.contact_email,

              outlet_infos.outlet_name,

              outlets.url_index,

              outlets.open_status,

              outlets.latitude,

              outlets.longitude,

              outlets.average_rating AS outlets_average_rating,

              outlets.review_count,

              outlets.image,

              outlets.banner_image,

              outlets.outlet_timezone,

		earth_distance(  ll_to_earth(find_lat,find_lng), ll_to_earth(outlets.latitude, outlets.longitude)  ) as distance 

              FROM products

              LEFT JOIN outlets ON ( 

                                    outlets.id = products.outlet_id AND 

                                    products.active_status = 1 AND 

                                    products.approval_status = 1 AND 

                                    products.category_id = ANY( categories ) AND 

                                    products.subcategory_id = ANY( subcategories ) 

                                    )

              LEFT JOIN vendors ON (vendors.id = products.vendor_id)

              LEFT JOIN outlet_infos ON (outlets.id = outlet_infos.id)

              WHERE 

              (

                outlet_infos.language_id =

                  CASE

                      WHEN (( SELECT count(outlet_infos_1.id) AS totalcount1

                         FROM outlet_infos outlet_infos_1

                        WHERE ((outlet_infos_1.language_id = $1) AND (products.outlet_id = outlet_infos_1.id))) > 0) THEN $1

                      ELSE 1

                  END

              ) 

              AND 

              (vendors.active_status = 1) 

              AND 

              (outlets.open_status = 1) 

              AND 

              (outlets.active_status = '1'::bpchar) 

              AND 

              (vendors.plan_ends_at >= NOW() at time zone active_timezone)

	      	AND 

		( earth_box(ll_to_earth(find_lat,find_lng), 60000) @> ll_to_earth(outlets.latitude, outlets.longitude) )

            order by outlets.id ;

        ELSE

      END CASE;

END; $_$;


ALTER FUNCTION public.search_results_distance(lang_id integer, categories integer[], subcategories integer[], find_lat double precision, find_lng double precision) OWNER TO postgres;

--
-- Name: address_type_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.address_type_id_seq OWNER TO postgres;

--
-- Name: address_type_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.address_type_infos_info_id_seq OWNER TO postgres;

SET default_tablespace = '';

SET default_table_access_method = heap;

--
-- Name: api_account; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.api_account (
    app_secret character varying(45) DEFAULT NULL::character varying,
    created_date timestamp without time zone,
    account_id integer NOT NULL,
    app_key character varying(32),
    description text,
    role_id integer,
    reference_place_id bigint,
    updated_date timestamp without time zone
);


ALTER TABLE public.api_account OWNER TO postgres;

--
-- Name: api_account_account_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.api_account_account_id_seq OWNER TO postgres;

--
-- Name: api_account_account_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.api_account_account_id_seq OWNED BY public.api_account.account_id;


--
-- Name: api_resources; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.api_resources (
    resources character varying(140),
    method character varying(8),
    account_id integer,
    resource_id integer NOT NULL
);


ALTER TABLE public.api_resources OWNER TO postgres;

--
-- Name: api_resources_resource_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.api_resources_resource_id_seq OWNER TO postgres;

--
-- Name: api_resources_resource_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.api_resources_resource_id_seq OWNED BY public.api_resources.resource_id;


--
-- Name: banners_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.banners_id_seq OWNER TO postgres;

--
-- Name: banners; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.banners (
    image text,
    link character varying(256),
    default_banner smallint DEFAULT '0'::smallint NOT NULL,
    status smallint DEFAULT '0'::smallint NOT NULL,
    updated_date timestamp without time zone,
    created_date timestamp without time zone,
    banner_type smallint,
    id integer DEFAULT nextval('public.banners_id_seq'::regclass) NOT NULL,
    category_group integer,
    sort_order smallint DEFAULT '0'::smallint NOT NULL,
    web_image text
);


ALTER TABLE public.banners OWNER TO postgres;

--
-- Name: COLUMN banners.category_group; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.banners.category_group IS 'for associate banner with category group when click banner it will redirect to store list page of that category group selected';


--
-- Name: banners_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.banners_infos_info_id_seq OWNER TO postgres;

--
-- Name: banners_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.banners_infos (
    info_id integer DEFAULT nextval('public.banners_infos_info_id_seq'::regclass) NOT NULL,
    banner_id integer NOT NULL,
    language_id smallint NOT NULL,
    banner_title character varying NOT NULL,
    banner_subtitle character varying NOT NULL
);


ALTER TABLE public.banners_infos OWNER TO postgres;

--
-- Name: blog_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.blog_infos (
    title text,
    content text NOT NULL,
    preview_content text NOT NULL,
    language_id integer,
    blog_id integer NOT NULL,
    info_id integer NOT NULL
);


ALTER TABLE public.blog_infos OWNER TO postgres;

--
-- Name: blog_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.blog_infos_info_id_seq OWNER TO postgres;

--
-- Name: blog_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.blog_infos_info_id_seq OWNED BY public.blog_infos.info_id;


--
-- Name: blogs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.blogs (
    url_index text,
    image text,
    status smallint DEFAULT 1 NOT NULL,
    view_count integer DEFAULT 0,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    created_by integer NOT NULL,
    id bigint NOT NULL,
    category_ids integer,
    is_resource smallint DEFAULT 0,
    is_event smallint DEFAULT '0'::smallint NOT NULL,
    event_schedule_from timestamp without time zone,
    event_schedule_to timestamp without time zone
);


ALTER TABLE public.blogs OWNER TO postgres;

--
-- Name: COLUMN blogs.is_resource; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.blogs.is_resource IS 'is it plain news or also has learning resource (documents)';


--
-- Name: COLUMN blogs.is_event; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.blogs.is_event IS 'is it about an event';


--
-- Name: blogs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.blogs_id_seq OWNER TO postgres;

--
-- Name: blogs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.blogs_id_seq OWNED BY public.blogs.id;


--
-- Name: categories; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.categories (
    category_type smallint NOT NULL,
    url_key character varying(254),
    icon text,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    category_status smallint DEFAULT 1 NOT NULL,
    created_by integer,
    id bigint NOT NULL,
    image text,
    sort_order integer,
    parent_id integer DEFAULT 0,
    category_level integer,
    mobile_banner_image character varying(100),
    head_category_ids integer,
    category_group integer
);


ALTER TABLE public.categories OWNER TO postgres;

--
-- Name: COLUMN categories.category_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.categories.category_type IS 'Types : 1-Project 2 - Blog 3 - Coupon';


--
-- Name: COLUMN categories.parent_id; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.categories.parent_id IS '0 - Main Category, otherwise main category_id';


--
-- Name: COLUMN categories.category_level; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.categories.category_level IS '1 - base 2 - main 3 - child';


--
-- Name: COLUMN categories.category_group; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.categories.category_group IS ' for grouping in frontend withput more level of category';


--
-- Name: categories_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.categories_id_seq OWNER TO postgres;

--
-- Name: categories_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.categories_id_seq OWNED BY public.categories.id;


--
-- Name: categories_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.categories_infos_info_id_seq OWNER TO postgres;

--
-- Name: categories_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.categories_infos (
    info_id integer DEFAULT nextval('public.categories_infos_info_id_seq'::regclass) NOT NULL,
    category_name text,
    description text NOT NULL,
    meta_title text,
    meta_keywords text,
    meta_description text,
    language_id integer,
    category_id integer NOT NULL
);


ALTER TABLE public.categories_infos OWNER TO postgres;

--
-- Name: category_groups_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.category_groups_id_seq OWNER TO postgres;

--
-- Name: category_groups_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.category_groups_infos_info_id_seq OWNER TO postgres;

--
-- Name: organisations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.organisations (
    id integer NOT NULL,
    email character varying(150),
    hash_password character varying(64),
    phone_number character varying(32),
    country_id integer,
    city_id integer,
    organisation_name character varying(150) DEFAULT 0,
    ngo_leadership character varying(150),
    area_of_operation character varying(150),
    organisation_location character varying(150),
    awards_recognitions text,
    about_organisation text,
    organisation_logo character varying(150),
    is_verified integer DEFAULT 0,
    active_status integer DEFAULT 0,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    certificate character varying,
    is_18a_verified integer DEFAULT 0,
    mob_organisation_logo character varying,
    contact_person character varying(255),
    telephone_number integer,
    other_pics character varying,
    website_url character varying,
    facebook_url character varying,
    instagram_url character varying,
    linkedin_url character varying,
    url_index character varying,
    is_islamic integer DEFAULT 0,
    religious_names text,
    organisation_banner character varying(255),
    register_number character varying(255),
    trading_name character varying(500),
    account_info_email character varying(255),
    physical_address character varying,
    landline character varying,
    vat_number character varying
);


ALTER TABLE public.organisations OWNER TO postgres;

--
-- Name: COLUMN organisations.is_verified; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.organisations.is_verified IS '0-Not verified,1- Verified';


--
-- Name: COLUMN organisations.active_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.organisations.active_status IS '0-Deactive, 1- Active';


--
-- Name: COLUMN organisations.religious_names; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.organisations.religious_names IS 'Multiple values with comma separated';


--
-- Name: charities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.charities_id_seq OWNER TO postgres;

--
-- Name: charities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.charities_id_seq OWNED BY public.organisations.id;


--
-- Name: cities; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cities (
    id integer NOT NULL,
    country_id integer,
    active_status character(1) DEFAULT 'A'::bpchar,
    default_status smallint DEFAULT 0,
    created_date timestamp without time zone,
    url_index character varying(255),
    modified_date timestamp without time zone,
    latitude character varying(256),
    longtitude character varying(256),
    city_code character varying,
    geocode character varying,
    zone_code integer
);


ALTER TABLE public.cities OWNER TO postgres;

--
-- Name: COLUMN cities.country_id; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.cities.country_id IS 'foreign key reference with countries table';


--
-- Name: cities_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.cities_id_seq OWNER TO postgres;

--
-- Name: cities_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.cities_id_seq OWNED BY public.cities.id;


--
-- Name: cities_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cities_infos (
    id integer NOT NULL,
    city_name character varying(128),
    language_id integer,
    info_id integer NOT NULL
);


ALTER TABLE public.cities_infos OWNER TO postgres;

--
-- Name: TABLE cities_infos; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON TABLE public.cities_infos IS 'Language based cities name storing and updates.';


--
-- Name: COLUMN cities_infos.id; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.cities_infos.id IS 'Foreign key reference for with cities table';


--
-- Name: cities_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.cities_infos_info_id_seq OWNER TO postgres;

--
-- Name: cities_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.cities_infos_info_id_seq OWNED BY public.cities_infos.info_id;


--
-- Name: cms; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cms (
    url_index text NOT NULL,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    created_by integer NOT NULL,
    id bigint NOT NULL,
    cms_status smallint DEFAULT (0)::smallint
);


ALTER TABLE public.cms OWNER TO postgres;

--
-- Name: cms_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.cms_id_seq OWNER TO postgres;

--
-- Name: cms_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.cms_id_seq OWNED BY public.cms.id;


--
-- Name: cms_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.cms_infos (
    title text,
    content text NOT NULL,
    meta_keywords text NOT NULL,
    meta_description text NOT NULL,
    language_id integer,
    cms_id integer NOT NULL,
    info_id integer NOT NULL
);


ALTER TABLE public.cms_infos OWNER TO postgres;

--
-- Name: cms_infos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.cms_infos_id_seq OWNER TO postgres;

--
-- Name: cms_infos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.cms_infos_id_seq OWNED BY public.cms_infos.info_id;


--
-- Name: config_setting; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.config_setting (
    settings_id integer NOT NULL,
    code character varying NOT NULL,
    key character varying NOT NULL,
    value character varying,
    multilang smallint DEFAULT '0'::smallint NOT NULL,
    setting_id integer NOT NULL
);


ALTER TABLE public.config_setting OWNER TO postgres;

--
-- Name: config_setting_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.config_setting_infos (
    info_id integer NOT NULL,
    setting_id integer NOT NULL,
    lang_id smallint NOT NULL,
    value character varying NOT NULL
);


ALTER TABLE public.config_setting_infos OWNER TO postgres;

--
-- Name: config_setting_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.config_setting_infos_info_id_seq OWNER TO postgres;

--
-- Name: config_setting_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.config_setting_infos_info_id_seq OWNED BY public.config_setting_infos.info_id;


--
-- Name: config_setting_setting_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.config_setting_setting_id_seq OWNER TO postgres;

--
-- Name: config_setting_setting_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.config_setting_setting_id_seq OWNED BY public.config_setting.settings_id;


--
-- Name: config_setting_setting_id_seq1; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.config_setting_setting_id_seq1 OWNER TO postgres;

--
-- Name: config_setting_setting_id_seq1; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.config_setting_setting_id_seq1 OWNED BY public.config_setting.setting_id;


--
-- Name: contactuses; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.contactuses (
    id integer NOT NULL,
    name character varying(250) NOT NULL,
    email character varying(250) NOT NULL,
    phone_number character varying NOT NULL,
    message text NOT NULL,
    status integer DEFAULT 1,
    created_at timestamp without time zone,
    updated_at timestamp without time zone
);


ALTER TABLE public.contactuses OWNER TO postgres;

--
-- Name: contactuses_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.contactuses_id_seq OWNER TO postgres;

--
-- Name: contactuses_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.contactuses_id_seq OWNED BY public.contactuses.id;


--
-- Name: countries; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.countries (
    url_index character varying(254) DEFAULT NULL::character varying,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    country_status smallint DEFAULT (0)::smallint,
    id bigint NOT NULL,
    iso_code character varying(254),
    alpha_code character varying(254),
    country_isd_code character varying(254)
);


ALTER TABLE public.countries OWNER TO postgres;

--
-- Name: countries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.countries_id_seq OWNER TO postgres;

--
-- Name: countries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.countries_id_seq OWNED BY public.countries.id;


--
-- Name: countries_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.countries_infos (
    id bigint NOT NULL,
    country_name character varying(254) NOT NULL,
    language_id integer DEFAULT 0 NOT NULL,
    info_id integer NOT NULL
);


ALTER TABLE public.countries_infos OWNER TO postgres;

--
-- Name: countries_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.countries_infos_info_id_seq OWNER TO postgres;

--
-- Name: countries_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.countries_infos_info_id_seq OWNED BY public.countries_infos.info_id;


--
-- Name: coupons; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.coupons (
    id integer NOT NULL,
    coupon_code character varying(16),
    offer_type integer,
    coupon_value character varying,
    user_limit integer,
    coupon_limit integer,
    coupon_image character varying(50),
    offer_amount double precision,
    offer_percentage double precision,
    category_id integer,
    start_date date,
    end_date date,
    created_by integer,
    created_date date,
    modified_date date,
    active_status integer DEFAULT 0,
    coupon_status character(5),
    vendor integer,
    minimum_order_amount double precision,
    description_text_status integer DEFAULT 0
);


ALTER TABLE public.coupons OWNER TO postgres;

--
-- Name: COLUMN coupons.offer_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.coupons.offer_type IS '1 - Amount, 2- Percentage';


--
-- Name: COLUMN coupons.active_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.coupons.active_status IS '1 - Active, 0 - Inactive';


--
-- Name: COLUMN coupons.description_text_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.coupons.description_text_status IS '0-Inactive, 1-Active';


--
-- Name: coupons_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.coupons_id_seq OWNER TO postgres;

--
-- Name: coupons_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.coupons_id_seq OWNED BY public.coupons.id;


--
-- Name: currencies; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.currencies (
    id integer NOT NULL,
    currency_name character varying(100) NOT NULL,
    currency_code character varying(5) NOT NULL,
    currency_symbol_left character(3),
    active_status character(1) DEFAULT 'A'::bpchar,
    default_status bigint DEFAULT 0 NOT NULL,
    created_date date,
    currency_symbol_right character(3),
    numeric_iso_code character varying(254),
    decimal_values text,
    exchange_rate text,
    currency_symbol character(5)
);


ALTER TABLE public.currencies OWNER TO postgres;

--
-- Name: TABLE currencies; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON TABLE public.currencies IS 'List the all currencies managed dynamically.';


--
-- Name: currencies_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.currencies_id_seq OWNER TO postgres;

--
-- Name: currencies_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.currencies_id_seq OWNED BY public.currencies.id;


--
-- Name: donations; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.donations (
    id integer NOT NULL,
    program_id integer,
    organisation_id integer,
    donated_amount double precision,
    user_id integer,
    transaction_id character varying(150),
    payment_type character varying(150),
    payment_status integer,
    donated_at timestamp without time zone,
    reference_id character varying,
    updated_at timestamp without time zone,
    created_at timestamp without time zone,
    status_message character varying,
    donate_key character varying,
    coupon_id integer,
    invoice_id character varying(255),
    "donation_18A" character varying,
    remain_anonymous integer,
    payment_response text,
    donated_on_religious character varying
);


ALTER TABLE public.donations OWNER TO postgres;

--
-- Name: TABLE donations; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON TABLE public.donations IS 'Donations are stored here after payment process.';


--
-- Name: COLUMN donations.payment_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.donations.payment_status IS '1- Success, 2- Failed';


--
-- Name: donations_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.donations_id_seq OWNER TO postgres;

--
-- Name: donations_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.donations_id_seq OWNED BY public.donations.id;


--
-- Name: email_notifications; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.email_notifications (
    created_at timestamp without time zone,
    email character varying,
    group_email_notification integer,
    name character varying(250),
    updated_at timestamp without time zone,
    user_id integer,
    id integer NOT NULL
);


ALTER TABLE public.email_notifications OWNER TO postgres;

--
-- Name: email_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.email_notifications_id_seq OWNER TO postgres;

--
-- Name: email_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.email_notifications_id_seq OWNED BY public.email_notifications.id;


--
-- Name: email_templates; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.email_templates (
    "from" character varying(255),
    subject character varying(255),
    content text,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    place_id bigint,
    from_email character varying(255),
    ref_name character varying(200),
    reply_to character varying(255),
    mobile_content text,
    is_system boolean,
    template_id integer NOT NULL
);


ALTER TABLE public.email_templates OWNER TO postgres;

--
-- Name: emailsettings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.emailsettings (
    contact_mail character varying(254) NOT NULL,
    support_mail character varying(254) NOT NULL,
    mobile_number character varying(254) NOT NULL,
    skype character varying(254) NOT NULL,
    smtp_enable integer NOT NULL,
    mail_driver character varying(254) NOT NULL,
    smtp_host_name character varying(254) NOT NULL,
    smtp_username character varying(254) NOT NULL,
    smtp_password character varying(254) NOT NULL,
    smtp_port integer NOT NULL,
    smtp_encryption character varying(254) NOT NULL,
    status integer DEFAULT 1 NOT NULL,
    updated_at timestamp without time zone,
    id bigint NOT NULL
);


ALTER TABLE public.emailsettings OWNER TO postgres;

--
-- Name: emailsettings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.emailsettings_id_seq OWNER TO postgres;

--
-- Name: emailsettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emailsettings_id_seq OWNED BY public.emailsettings.id;


--
-- Name: emailtemplates_template_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.emailtemplates_template_id_seq OWNER TO postgres;

--
-- Name: emailtemplates_template_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.emailtemplates_template_id_seq OWNED BY public.email_templates.template_id;


--
-- Name: faqs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.faqs (
    id integer NOT NULL,
    category_id integer,
    status character(1) DEFAULT 'A'::bpchar,
    sort_order smallint DEFAULT '0'::smallint,
    created_at timestamp without time zone,
    updated_at timestamp without time zone
);


ALTER TABLE public.faqs OWNER TO postgres;

--
-- Name: faqs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.faqs_id_seq OWNER TO postgres;

--
-- Name: faqs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.faqs_id_seq OWNED BY public.faqs.id;


--
-- Name: faqs_info_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.faqs_info_info_id_seq OWNER TO postgres;

--
-- Name: faqs_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.faqs_infos (
    id integer,
    question text,
    answer text,
    lang_id integer,
    info_id integer DEFAULT nextval('public.faqs_info_info_id_seq'::regclass) NOT NULL
);


ALTER TABLE public.faqs_infos OWNER TO postgres;

--
-- Name: fund_request; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.fund_request (
    id integer NOT NULL,
    name character varying(255),
    email character varying(255),
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    status integer,
    phone character varying(100),
    id_number character varying(255),
    address character varying(255)
);


ALTER TABLE public.fund_request OWNER TO postgres;

--
-- Name: COLUMN fund_request.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.fund_request.status IS '1 - pending,2- completed,3-cancelled';


--
-- Name: fund_request_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.fund_request_id_seq OWNER TO postgres;

--
-- Name: fund_request_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.fund_request_id_seq OWNED BY public.fund_request.id;


--
-- Name: group_email_notifications; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.group_email_notifications (
    subject character varying(250),
    message character varying,
    created_at timestamp without time zone,
    user_ids character varying NOT NULL,
    updated_at timestamp without time zone,
    id integer NOT NULL
);


ALTER TABLE public.group_email_notifications OWNER TO postgres;

--
-- Name: group_email_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.group_email_notifications_id_seq OWNER TO postgres;

--
-- Name: group_email_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.group_email_notifications_id_seq OWNED BY public.group_email_notifications.id;


--
-- Name: group_newsletters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.group_newsletters (
    id integer NOT NULL,
    subject character varying(250),
    message character varying,
    created_at timestamp without time zone,
    user_ids character varying NOT NULL,
    updated_at timestamp without time zone
);


ALTER TABLE public.group_newsletters OWNER TO postgres;

--
-- Name: group_newsletters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.group_newsletters_id_seq OWNER TO postgres;

--
-- Name: group_newsletters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.group_newsletters_id_seq OWNED BY public.group_newsletters.id;


--
-- Name: group_notifications; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.group_notifications (
    id integer NOT NULL,
    subject character varying(250),
    message character varying,
    created_at timestamp without time zone,
    user_ids character varying,
    updated_at timestamp without time zone
);


ALTER TABLE public.group_notifications OWNER TO postgres;

--
-- Name: group_notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.group_notifications_id_seq OWNER TO postgres;

--
-- Name: group_notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.group_notifications_id_seq OWNED BY public.group_notifications.id;


--
-- Name: imageresizesettings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.imageresizesettings (
    id integer NOT NULL,
    list_width bigint,
    list_height bigint,
    detail_width bigint,
    detail_height bigint,
    thumb_width bigint,
    thumb_height bigint,
    type bigint,
    updated_at timestamp without time zone
);


ALTER TABLE public.imageresizesettings OWNER TO postgres;

--
-- Name: COLUMN imageresizesettings.type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.imageresizesettings.type IS '1 - Common,2 - Store, 3 - Product ,4 - Banner ';


--
-- Name: imageresizesettings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.imageresizesettings_id_seq OWNER TO postgres;

--
-- Name: imageresizesettings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.imageresizesettings_id_seq OWNED BY public.imageresizesettings.id;


--
-- Name: languages; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.languages (
    name character varying(254) NOT NULL,
    language_code character varying(254) NOT NULL,
    date_format_short character varying(254) DEFAULT 'Y-m-d'::character varying NOT NULL,
    date_format_full character varying(254) DEFAULT 'Y-m-d H:i:s'::character varying NOT NULL,
    is_rtl smallint DEFAULT (0)::smallint NOT NULL,
    status smallint DEFAULT (1)::smallint NOT NULL,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    id bigint NOT NULL
);


ALTER TABLE public.languages OWNER TO postgres;

--
-- Name: languages_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.languages_id_seq OWNER TO postgres;

--
-- Name: languages_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.languages_id_seq OWNED BY public.languages.id;


--
-- Name: ministries; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.ministries (
    id integer NOT NULL
);


ALTER TABLE public.ministries OWNER TO postgres;

--
-- Name: ministries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.ministries_id_seq OWNER TO postgres;

--
-- Name: ministries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.ministries_id_seq OWNED BY public.ministries.id;


--
-- Name: newsletter_subscribers; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.newsletter_subscribers (
    id integer NOT NULL,
    email character varying(128),
    is_customer integer,
    active_status integer DEFAULT 1,
    created_date date,
    ip_address character varying(32),
    modified_date date,
    name character(100)
);


ALTER TABLE public.newsletter_subscribers OWNER TO postgres;

--
-- Name: COLUMN newsletter_subscribers.is_customer; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.newsletter_subscribers.is_customer IS '0 - No 1-Yes';


--
-- Name: COLUMN newsletter_subscribers.active_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.newsletter_subscribers.active_status IS '1-Active or 0-Inactive';


--
-- Name: newsletter_subscribers_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.newsletter_subscribers_id_seq OWNER TO postgres;

--
-- Name: newsletter_subscribers_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.newsletter_subscribers_id_seq OWNED BY public.newsletter_subscribers.id;


--
-- Name: newsletters; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.newsletters (
    created_at timestamp without time zone,
    email character varying,
    group_newsletter integer,
    name character varying(250),
    updated_at timestamp without time zone,
    user_id integer,
    id integer NOT NULL
);


ALTER TABLE public.newsletters OWNER TO postgres;

--
-- Name: newsletters_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.newsletters_id_seq OWNER TO postgres;

--
-- Name: newsletters_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.newsletters_id_seq OWNED BY public.newsletters.id;


--
-- Name: notification_group; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.notification_group (
    group_name character varying(250),
    group_status integer,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    group_id integer NOT NULL
);


ALTER TABLE public.notification_group OWNER TO postgres;

--
-- Name: COLUMN notification_group.group_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.notification_group.group_status IS '1 - Active';


--
-- Name: notification_groups_group_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.notification_groups_group_id_seq OWNER TO postgres;

--
-- Name: notification_groups_group_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.notification_groups_group_id_seq OWNED BY public.notification_group.group_id;


--
-- Name: notifications; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.notifications (
    id integer NOT NULL,
    user_id integer NOT NULL,
    subject character varying NOT NULL,
    message character varying NOT NULL,
    status smallint DEFAULT '0'::smallint NOT NULL,
    type text DEFAULT 2 NOT NULL,
    group_notification integer NOT NULL,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    notified_by integer
);


ALTER TABLE public.notifications OWNER TO postgres;

--
-- Name: notifications_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.notifications_id_seq OWNER TO postgres;

--
-- Name: notifications_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.notifications_id_seq OWNED BY public.notifications.id;


--
-- Name: organisations_basic_info; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.organisations_basic_info (
    id integer NOT NULL,
    organization_id integer,
    director_name character varying(255),
    director_identitynum character varying(255),
    director_phone character varying,
    director_email character varying(255),
    account_person character varying(255),
    account_identitynum character varying(255),
    account_phone character varying,
    account_email character varying(255),
    technical_person character varying(255),
    technical_identitynum character varying(255),
    technical_phone character varying,
    technical_email character varying(255),
    bank_name character varying(255),
    bank_branch_code character varying(255),
    bank_account_type character varying(255),
    bank_account_email character varying(500),
    director_sign_image character varying(500),
    bank_letter character varying(500),
    utility_bill_proof character varying(500),
    card_name character varying(500),
    card_number character varying(255),
    expired_date character varying(10),
    card_cvv character varying(10),
    authorize_name character varying(255),
    authorize_date character varying(100),
    authorize_place character varying(255),
    authorize_signature character varying(255),
    bank_account_num character varying(255)
);


ALTER TABLE public.organisations_basic_info OWNER TO postgres;

--
-- Name: organisations_basic_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.organisations_basic_info_id_seq OWNER TO postgres;

--
-- Name: organisations_basic_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.organisations_basic_info_id_seq OWNED BY public.organisations_basic_info.id;


--
-- Name: organization_interest_areas; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.organization_interest_areas (
    id integer NOT NULL,
    organization_id integer,
    category_id integer
);


ALTER TABLE public.organization_interest_areas OWNER TO postgres;

--
-- Name: organization_interest_areas_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.organization_interest_areas_id_seq OWNER TO postgres;

--
-- Name: organization_interest_areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.organization_interest_areas_id_seq OWNED BY public.organization_interest_areas.id;


--
-- Name: organization_payment_gateways; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.organization_payment_gateways (
    id integer NOT NULL,
    organization_id integer NOT NULL,
    gateway_name character varying,
    merchant_account_id character varying,
    merchant_key text,
    merchant_secret_key text,
    merchant_password text,
    payment_mode character varying(1) DEFAULT 0,
    merchant_status character varying(1) DEFAULT 0,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    sitecode character varying(150)
);


ALTER TABLE public.organization_payment_gateways OWNER TO postgres;

--
-- Name: TABLE organization_payment_gateways; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON TABLE public.organization_payment_gateways IS 'Payment Gateway Settings for Organizations.';


--
-- Name: COLUMN organization_payment_gateways.payment_mode; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.organization_payment_gateways.payment_mode IS '0 - Test, 1 - Live';


--
-- Name: COLUMN organization_payment_gateways.merchant_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.organization_payment_gateways.merchant_status IS '0 - Inactive, 1 - Active';


--
-- Name: organization_payment_gateways_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.organization_payment_gateways_id_seq OWNER TO postgres;

--
-- Name: organization_payment_gateways_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.organization_payment_gateways_id_seq OWNED BY public.organization_payment_gateways.id;


--
-- Name: organization_project_info; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.organization_project_info (
    id integer NOT NULL,
    organization_id integer,
    website_url character varying,
    facebook_url character varying,
    instagram_url character varying,
    linkedin_url character varying,
    project_name character varying(2000),
    about_project text,
    project_logo character varying(500),
    project_org_header_image character varying(500),
    project_header_image_one character varying,
    project_header_image_two character varying
);


ALTER TABLE public.organization_project_info OWNER TO postgres;

--
-- Name: organization_project_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.organization_project_info_id_seq OWNER TO postgres;

--
-- Name: organization_project_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.organization_project_info_id_seq OWNED BY public.organization_project_info.id;


--
-- Name: package; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.package (
    id integer NOT NULL,
    expiry_days integer,
    price double precision,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    active_status smallint DEFAULT 0
);


ALTER TABLE public.package OWNER TO postgres;

--
-- Name: COLUMN package.active_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.package.active_status IS '0-Deactive, 1- Active';


--
-- Name: package_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.package_id_seq OWNER TO postgres;

--
-- Name: package_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.package_id_seq OWNED BY public.package.id;


--
-- Name: package_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.package_infos (
    language_id integer,
    package_name character varying(250),
    package_description text,
    info_id integer NOT NULL,
    id integer
);


ALTER TABLE public.package_infos OWNER TO postgres;

--
-- Name: package_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.package_infos_info_id_seq OWNER TO postgres;

--
-- Name: package_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.package_infos_info_id_seq OWNED BY public.package_infos.info_id;


--
-- Name: package_logs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.package_logs (
    id integer NOT NULL,
    package_id integer,
    user_id integer NOT NULL,
    expiry_date timestamp without time zone,
    created_date timestamp without time zone,
    package_transid integer
);


ALTER TABLE public.package_logs OWNER TO postgres;

--
-- Name: package_logs_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.package_logs_id_seq OWNER TO postgres;

--
-- Name: package_logs_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.package_logs_id_seq OWNED BY public.package_logs.id;


--
-- Name: package_logs_user_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.package_logs_user_id_seq OWNER TO postgres;

--
-- Name: package_logs_user_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.package_logs_user_id_seq OWNED BY public.package_logs.user_id;


--
-- Name: package_transaction; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.package_transaction (
    package_name character varying(250),
    package_description character varying(250),
    price double precision,
    expiry_date timestamp without time zone,
    payment_date timestamp without time zone,
    organisation_id integer,
    package_status integer,
    payment_status integer DEFAULT 0,
    id integer NOT NULL,
    transaction_id character varying(255),
    payment_type integer,
    payment_method character varying(255),
    package_id integer,
    status_message text,
    invoice_id character varying,
    reference_id character varying(255),
    "package_18A" character varying
);


ALTER TABLE public.package_transaction OWNER TO postgres;

--
-- Name: COLUMN package_transaction.package_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.package_transaction.package_status IS '1 - Active, 0 - Package Expired';


--
-- Name: package_transaction_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.package_transaction_id_seq OWNER TO postgres;

--
-- Name: package_transaction_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.package_transaction_id_seq OWNED BY public.package_transaction.id;


--
-- Name: password_resets; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.password_resets (
    email character varying(254) NOT NULL,
    token character varying(254) NOT NULL,
    created_at timestamp without time zone
);


ALTER TABLE public.password_resets OWNER TO postgres;

--
-- Name: programs; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.programs (
    id integer NOT NULL,
    category_id integer NOT NULL,
    status smallint DEFAULT '0'::smallint NOT NULL,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    image character varying,
    created_by integer,
    url_index character varying DEFAULT ''::character varying,
    help_first smallint DEFAULT '0'::smallint NOT NULL,
    organisation_id integer,
    npo_week integer DEFAULT 1,
    lat double precision,
    lng double precision,
    tag_ids character varying,
    program_banner character varying(255)
);


ALTER TABLE public.programs OWNER TO postgres;

--
-- Name: programs_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.programs_infos (
    info_id integer NOT NULL,
    program_id integer NOT NULL,
    program_name character varying DEFAULT ''::character varying NOT NULL,
    short_description character varying DEFAULT ''::character varying NOT NULL,
    full_description character varying DEFAULT ''::character varying NOT NULL,
    language_id smallint NOT NULL,
    program_location character varying DEFAULT ''::character varying,
    program_update character varying DEFAULT ''::character varying NOT NULL,
    min_amount double precision,
    max_amount double precision,
    range1_amount double precision,
    range2_amount double precision,
    range3_amount double precision,
    about_program text
);


ALTER TABLE public.programs_infos OWNER TO postgres;

--
-- Name: project_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.project_infos_info_id_seq OWNER TO postgres;

--
-- Name: project_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.project_infos_info_id_seq OWNED BY public.programs_infos.info_id;


--
-- Name: projects_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.projects_id_seq OWNER TO postgres;

--
-- Name: projects_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.projects_id_seq OWNED BY public.programs.id;


--
-- Name: push_notification; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.push_notification (
    id integer NOT NULL,
    user_id integer,
    message text,
    order_id integer,
    read_status integer,
    created_at timestamp without time zone
);


ALTER TABLE public.push_notification OWNER TO postgres;

--
-- Name: COLUMN push_notification.order_id; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.push_notification.order_id IS 'donation id';


--
-- Name: push_notification_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.push_notification_id_seq OWNER TO postgres;

--
-- Name: push_notification_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.push_notification_id_seq OWNED BY public.push_notification.id;


--
-- Name: role_tasks; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.role_tasks (
    role_id integer NOT NULL,
    task_definition character varying(180) DEFAULT NULL::character varying,
    task_index text,
    permissions smallint DEFAULT (1)::smallint,
    role_task_id integer NOT NULL
);


ALTER TABLE public.role_tasks OWNER TO postgres;

--
-- Name: role_tasks_role_task_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.role_tasks_role_task_id_seq OWNER TO postgres;

--
-- Name: role_tasks_role_task_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.role_tasks_role_task_id_seq OWNED BY public.role_tasks.role_task_id;


--
-- Name: roles_users; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.roles_users (
    ruid integer NOT NULL,
    role_id integer,
    place_id bigint DEFAULT 0,
    user_id integer,
    created_date date,
    updated_date timestamp without time zone
);


ALTER TABLE public.roles_users OWNER TO postgres;

--
-- Name: roles_users_ruid_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.roles_users_ruid_seq OWNER TO postgres;

--
-- Name: roles_users_ruid_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.roles_users_ruid_seq OWNED BY public.roles_users.ruid;


--
-- Name: settings; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.settings (
    site_name character varying(254),
    meta_title character varying(254),
    meta_keywords text NOT NULL,
    meta_description text NOT NULL,
    theme character varying(254),
    logo text NOT NULL,
    favicon text NOT NULL,
    default_language character varying(254),
    default_country character varying(254),
    contact_address text NOT NULL,
    copyrights text NOT NULL,
    site_mode integer DEFAULT 1 NOT NULL,
    status integer DEFAULT 1 NOT NULL,
    updated_at timestamp without time zone,
    id bigint NOT NULL,
    site_owner character varying(254),
    email character varying(254),
    telephone character varying(254),
    fax character varying(254),
    site_description text,
    default_state bigint,
    default_length_class character varying(60) DEFAULT NULL::character varying,
    default_weight_class character varying(60) DEFAULT NULL::character varying,
    default_city bigint,
    blocklist_words text,
    footer_text text,
    default_currency integer,
    min_fund_request double precision,
    max_fund_request double precision,
    footer_text1 text,
    currency_side integer DEFAULT 1,
    info_id integer NOT NULL,
    language_id integer,
    copy_rights character varying(254),
    sms_account_id character varying(64),
    sms_account_token character varying(64),
    sms_sender_number character varying(64),
    geocode character varying(256),
    site_job_title text,
    site_bottom_title text,
    site_bottom_description text,
    min_amount double precision DEFAULT 0,
    max_amount double precision DEFAULT 0,
    paygate_notify text,
    paygate_return text,
    web_date_format integer,
    homepage_video text
);


ALTER TABLE public.settings OWNER TO postgres;

--
-- Name: COLUMN settings.currency_side; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.settings.currency_side IS '1-left, 2-right';


--
-- Name: COLUMN settings.site_job_title; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.settings.site_job_title IS 'for job page title ';


--
-- Name: settings_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.settings_id_seq OWNER TO postgres;

--
-- Name: settings_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.settings_id_seq OWNED BY public.settings.id;


--
-- Name: settings_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.settings_info_id_seq OWNER TO postgres;

--
-- Name: settings_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.settings_info_id_seq OWNED BY public.settings.info_id;


--
-- Name: settings_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.settings_infos (
    id integer,
    info_id integer NOT NULL,
    language_id integer,
    copyrights character varying(254)
);


ALTER TABLE public.settings_infos OWNER TO postgres;

--
-- Name: settings_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.settings_infos_info_id_seq OWNER TO postgres;

--
-- Name: settings_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.settings_infos_info_id_seq OWNED BY public.settings_infos.info_id;


--
-- Name: suggest_npo; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.suggest_npo (
    id integer NOT NULL,
    charity_name character varying(150),
    charity_email character varying(150),
    charity_phone character varying(100),
    charity_location character varying(250),
    charity_description text,
    charity_status smallint DEFAULT 0,
    longtitude double precision,
    latitude double precision,
    created_at timestamp without time zone,
    "position" character varying(255),
    user_id integer,
    contact_person character varying
);


ALTER TABLE public.suggest_npo OWNER TO postgres;

--
-- Name: COLUMN suggest_npo.charity_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.suggest_npo.charity_status IS '0-Not approved,1- Approved';


--
-- Name: suggest_npo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.suggest_npo_id_seq OWNER TO postgres;

--
-- Name: suggest_npo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.suggest_npo_id_seq OWNED BY public.suggest_npo.id;


--
-- Name: tags; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.tags (
    id integer NOT NULL,
    url_index character varying,
    status smallint,
    created_at timestamp without time zone,
    updated_at timestamp without time zone
);


ALTER TABLE public.tags OWNER TO postgres;

--
-- Name: tags_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.tags_id_seq OWNER TO postgres;

--
-- Name: tags_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.tags_id_seq OWNED BY public.tags.id;


--
-- Name: tags_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.tags_infos (
    id integer NOT NULL,
    tag_id integer,
    name character varying,
    language_id smallint,
    description character varying
);


ALTER TABLE public.tags_infos OWNER TO postgres;

--
-- Name: tags_infos_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.tags_infos_id_seq OWNER TO postgres;

--
-- Name: tags_infos_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.tags_infos_id_seq OWNED BY public.tags_infos.id;


--
-- Name: testimonials; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.testimonials (
    id integer NOT NULL,
    status integer DEFAULT 0,
    created_by integer,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    image character varying
);


ALTER TABLE public.testimonials OWNER TO postgres;

--
-- Name: TABLE testimonials; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON TABLE public.testimonials IS 'Testimonials Stores here.';


--
-- Name: COLUMN testimonials.status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.testimonials.status IS '0 - Inactive 1- Active';


--
-- Name: testimonial_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.testimonial_id_seq OWNER TO postgres;

--
-- Name: testimonial_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.testimonial_id_seq OWNED BY public.testimonials.id;


--
-- Name: testimonials_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.testimonials_infos (
    info_id integer NOT NULL,
    testimonial_id integer NOT NULL,
    language_id integer NOT NULL,
    name character varying(255),
    designation character varying(255),
    description text
);


ALTER TABLE public.testimonials_infos OWNER TO postgres;

--
-- Name: testimonials_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.testimonials_infos_info_id_seq OWNER TO postgres;

--
-- Name: testimonials_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.testimonials_infos_info_id_seq OWNED BY public.testimonials_infos.info_id;


--
-- Name: transactions; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.transactions (
    id integer NOT NULL,
    transaction_amount double precision,
    user_id integer,
    transaction_id character varying,
    payment_type integer,
    payment_method character varying,
    payment_status integer,
    transaction_at timestamp without time zone,
    donate_id_old character varying,
    donate_id integer
);


ALTER TABLE public.transactions OWNER TO postgres;

--
-- Name: COLUMN transactions.payment_status; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.transactions.payment_status IS '1- Success, 2- Pending';


--
-- Name: transactions_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.transactions_id_seq OWNER TO postgres;

--
-- Name: transactions_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.transactions_id_seq OWNED BY public.transactions.id;


--
-- Name: user_activity_log; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_activity_log (
    message text,
    date timestamp without time zone,
    ip_address character varying(255),
    device character varying(255),
    user_id integer DEFAULT 0 NOT NULL,
    activity_type character varying(254),
    activity_id integer NOT NULL
);


ALTER TABLE public.user_activity_log OWNER TO postgres;

--
-- Name: user_activity_log_activity_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.user_activity_log_activity_id_seq OWNER TO postgres;

--
-- Name: user_activity_log_activity_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_activity_log_activity_id_seq OWNED BY public.user_activity_log.activity_id;


--
-- Name: user_interest_areas; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_interest_areas (
    id integer NOT NULL,
    user_id integer NOT NULL,
    category_id integer NOT NULL
);


ALTER TABLE public.user_interest_areas OWNER TO postgres;

--
-- Name: user_interest_areas_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.user_interest_areas_id_seq OWNER TO postgres;

--
-- Name: user_interest_areas_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_interest_areas_id_seq OWNED BY public.user_interest_areas.id;


--
-- Name: user_logins; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_logins (
    id bigint NOT NULL,
    user_id integer,
    created_at timestamp without time zone
);


ALTER TABLE public.user_logins OWNER TO postgres;

--
-- Name: user_logins_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.user_logins_id_seq OWNER TO postgres;

--
-- Name: user_logins_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_logins_id_seq OWNED BY public.user_logins.id;


--
-- Name: user_roles; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.user_roles (
    role_name character varying(100),
    active_status character(1),
    created_date date,
    role_type character varying(3),
    tag_bg_color character varying(8),
    tag_text_color character varying(8),
    parent_roleid integer,
    place_id bigint,
    rolefor character varying(8),
    updated_date timestamp without time zone,
    to_place smallint,
    id integer NOT NULL
);


ALTER TABLE public.user_roles OWNER TO postgres;

--
-- Name: user_roles_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.user_roles_id_seq OWNER TO postgres;

--
-- Name: user_roles_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.user_roles_id_seq OWNED BY public.user_roles.id;


--
-- Name: users; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.users (
    name character varying(254),
    designation character varying(254),
    email character varying(254),
    image character varying(254),
    password character varying(254),
    remember_token character varying(254),
    id integer NOT NULL,
    nationality character varying(45) DEFAULT NULL::character varying,
    user_token character varying(255),
    is_verified integer DEFAULT 0,
    verification_key character varying(164),
    status smallint DEFAULT (1)::smallint,
    mobile text,
    gender character varying(5) DEFAULT ''::character varying,
    first_name character varying(100),
    last_name character varying(100),
    activation_key character varying(64),
    ip_address character varying(100),
    user_created_by bigint,
    date_of_birth character varying,
    android_device_token character varying(1000),
    ios_device_id character varying(1000),
    ios_device_token character varying(1000),
    android_device_id character varying(1000),
    otp character varying(10),
    login_type integer,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    mobile_number_plain character varying,
    address character varying,
    logo character varying,
    is_featured smallint DEFAULT '0'::smallint,
    google_plus_id character varying,
    facebook_id character varying,
    account_type smallint DEFAULT '1'::smallint NOT NULL,
    apple_id character varying,
    user_type integer,
    latitude double precision,
    longtitude double precision,
    deleted_at timestamp without time zone,
    id_proof character varying,
    total_donated_amount character varying DEFAULT 0 NOT NULL,
    dial_code character varying,
    plain_number character varying,
    facebook_link character varying,
    twitter_link character varying,
    linkedin_link character varying,
    notification_group integer,
    organization character varying(250),
    bio character varying(250),
    website_link character varying,
    country_id integer,
    city_id integer,
    sendbird_access_token character varying,
    sendbird_id character varying,
    terms_cond integer,
    tag_category character varying(255),
    id_number character varying
);


ALTER TABLE public.users OWNER TO postgres;

--
-- Name: COLUMN users.login_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.users.login_type IS '1 - web, 2 - andriod, 3 - ios';


--
-- Name: COLUMN users.logo; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.users.logo IS 'for featured partners logo image';


--
-- Name: COLUMN users.is_featured; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.users.is_featured IS 'for featured partners';


--
-- Name: COLUMN users.account_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.users.account_type IS '1= website registred 2=google 3=facebook 4=linkedin 5=apple';


--
-- Name: COLUMN users.apple_id; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.users.apple_id IS 'for apple signin';


--
-- Name: COLUMN users.user_type; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON COLUMN public.users.user_type IS 'Types: 1 - Admin, 3 - Customer ';


--
-- Name: users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.users_id_seq OWNER TO postgres;

--
-- Name: users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;


--
-- Name: zones; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.zones (
    url_index character varying(254) DEFAULT NULL::character varying,
    country_id bigint,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    zones_status smallint DEFAULT (0)::smallint,
    zone_code character varying(254),
    id integer NOT NULL,
    city_id integer
);


ALTER TABLE public.zones OWNER TO postgres;

--
-- Name: zones_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.zones_id_seq OWNER TO postgres;

--
-- Name: zones_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.zones_id_seq OWNED BY public.zones.id;


--
-- Name: zones_infos; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.zones_infos (
    info_id integer NOT NULL,
    zone_name character varying(128),
    language_id integer,
    zone_id integer
);


ALTER TABLE public.zones_infos OWNER TO postgres;

--
-- Name: zones_infos_info_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--

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


ALTER TABLE public.zones_infos_info_id_seq OWNER TO postgres;

--
-- Name: zones_infos_info_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE public.zones_infos_info_id_seq OWNED BY public.zones_infos.info_id;


--
-- Name: api_account account_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.api_account ALTER COLUMN account_id SET DEFAULT nextval('public.api_account_account_id_seq'::regclass);


--
-- Name: api_resources resource_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.api_resources ALTER COLUMN resource_id SET DEFAULT nextval('public.api_resources_resource_id_seq'::regclass);


--
-- Name: blog_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.blog_infos ALTER COLUMN info_id SET DEFAULT nextval('public.blog_infos_info_id_seq'::regclass);


--
-- Name: blogs id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: categories id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: cities id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: cities_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities_infos ALTER COLUMN info_id SET DEFAULT nextval('public.cities_infos_info_id_seq'::regclass);


--
-- Name: cms id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: cms_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cms_infos ALTER COLUMN info_id SET DEFAULT nextval('public.cms_infos_id_seq'::regclass);


--
-- Name: config_setting settings_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.config_setting ALTER COLUMN settings_id SET DEFAULT nextval('public.config_setting_setting_id_seq'::regclass);


--
-- Name: config_setting setting_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.config_setting ALTER COLUMN setting_id SET DEFAULT nextval('public.config_setting_setting_id_seq1'::regclass);


--
-- Name: config_setting_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.config_setting_infos ALTER COLUMN info_id SET DEFAULT nextval('public.config_setting_infos_info_id_seq'::regclass);


--
-- Name: contactuses id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: countries id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: countries_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countries_infos ALTER COLUMN info_id SET DEFAULT nextval('public.countries_infos_info_id_seq'::regclass);


--
-- Name: coupons id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: currencies id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: donations id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: email_notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: email_templates template_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.email_templates ALTER COLUMN template_id SET DEFAULT nextval('public.emailtemplates_template_id_seq'::regclass);


--
-- Name: emailsettings id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: faqs id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: fund_request id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: group_email_notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: group_newsletters id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: group_notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: languages id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: ministries id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: newsletter_subscribers id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: newsletters id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: notification_group group_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notification_group ALTER COLUMN group_id SET DEFAULT nextval('public.notification_groups_group_id_seq'::regclass);


--
-- Name: notifications id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: organisations id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: organisations_basic_info id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: organization_interest_areas id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: organization_payment_gateways id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: organization_project_info id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: package id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: package_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.package_infos ALTER COLUMN info_id SET DEFAULT nextval('public.package_infos_info_id_seq'::regclass);


--
-- Name: package_logs id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: package_logs user_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.package_logs ALTER COLUMN user_id SET DEFAULT nextval('public.package_logs_user_id_seq'::regclass);


--
-- Name: package_transaction id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: programs id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: programs_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.programs_infos ALTER COLUMN info_id SET DEFAULT nextval('public.project_infos_info_id_seq'::regclass);


--
-- Name: push_notification id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: role_tasks role_task_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_tasks ALTER COLUMN role_task_id SET DEFAULT nextval('public.role_tasks_role_task_id_seq'::regclass);


--
-- Name: roles_users ruid; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles_users ALTER COLUMN ruid SET DEFAULT nextval('public.roles_users_ruid_seq'::regclass);


--
-- Name: settings id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: settings info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settings ALTER COLUMN info_id SET DEFAULT nextval('public.settings_info_id_seq'::regclass);


--
-- Name: settings_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settings_infos ALTER COLUMN info_id SET DEFAULT nextval('public.settings_infos_info_id_seq'::regclass);


--
-- Name: suggest_npo id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: tags id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: tags_infos id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: testimonials id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: testimonials_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.testimonials_infos ALTER COLUMN info_id SET DEFAULT nextval('public.testimonials_infos_info_id_seq'::regclass);


--
-- Name: transactions id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: user_activity_log activity_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_activity_log ALTER COLUMN activity_id SET DEFAULT nextval('public.user_activity_log_activity_id_seq'::regclass);


--
-- Name: user_interest_areas id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: user_logins id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: user_roles id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: users id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: zones id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


--
-- Name: zones_infos info_id; Type: DEFAULT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.zones_infos ALTER COLUMN info_id SET DEFAULT nextval('public.zones_infos_info_id_seq'::regclass);


--
-- Data for Name: api_account; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.api_account (app_secret, created_date, account_id, app_key, description, role_id, reference_place_id, updated_date) FROM stdin;
\N	2016-08-05 10:30:04	8	1Y1XRFV7C960LNCG99372R6WPUBLQAOM	\N	10	\N	\N
\N	2016-11-03 19:23:44	6	LTHM99ESNWSLSNOBWXM1AQM16TQ84VNG	\N	8	\N	\N
\N	2016-11-17 13:04:46	15	I6QLL8CA18WLF74PJNX31YQSLBAOU42G	\N	17	\N	\N
\N	2016-11-04 12:54:09	9	WPSW6WO34WCF0QAR1GP9BSU8773ZHMES	\N	11	\N	\N
\N	2016-11-17 19:42:07	4	3VZR5TD802Y5901KKU7Y1JGXEOA3SVLH	\N	6	\N	\N
\N	2017-04-07 11:40:23	36	0XW2E1QJNQR8U1UNZXBM9SSPRJ28K6AX	\N	38	\N	\N
\N	2017-08-10 17:58:09	33	V19MY15E16BXKG6TYAP6WQD2DG674DHS	\N	35	\N	\N
\N	2018-01-01 23:03:53	51	K63CHK5918P18YD1XVLDWN3KMP4ND7XB	\N	53	\N	\N
\N	2018-01-01 23:09:09	52	D1YF7V6PPYNSCPKHGDN0BS4CFW5KYHGI	\N	54	\N	\N
\N	2018-01-02 00:54:33	47	O87KSJW5F19GBQYCNARM7A8BT7UA9JW2	\N	49	\N	\N
\N	2018-01-02 02:48:47	53	2CRUBJPEYM1E6YX4A1MY5BP8Z741K9RG	\N	55	\N	\N
\N	2018-01-11 02:47:24	54	1YY4PDVRGREJ688YU2GQR1LRAXB8GBP9	\N	56	\N	\N
\N	2018-03-21 00:51:26	7	V2C0ZKEBUX4NCW1W5KUVEKTJWU2PDCMQ	\N	9	\N	\N
\N	2017-10-30 06:15:02	44	CXWCQERGG3N72Q9QGOG7UPSMMQCZNE8P	\N	46	\N	\N
\N	2017-11-07 23:29:29	42	TJ94WGNLOPABQEE82YXWO8JXRIGRO728	\N	44	\N	\N
\N	2017-11-11 01:16:47	45	YE6GWHGS4FE3B5NGNL0UVTF8FY8Y2ZWX	\N	47	\N	\N
\N	2017-10-23 12:30:10	41	DNOC17NQXHHDWQ29776JFJNIWXCPKTUA	\N	39	\N	\N
\N	2017-11-14 05:46:30	43	54M7HX77GD32UV7HZD9NQ185S4KE6KXG	\N	45	\N	\N
\N	2017-11-14 06:21:41	46	XGHAKNTETHHAWG5A75KZYVCXSQ6DVRGS	\N	48	\N	\N
\N	2021-03-15 13:24:09	64	JEGZAJOC9WPJO27DU2GHZE1W4EOFN4PK	\N	2	\N	\N
\N	2021-03-15 15:14:58	66	29J5MRTY0MUZ5AA0NE2K5D3O69RKTHPE	\N	4	\N	\N
\N	2021-03-31 17:25:48	91	H17GCKP9RHJBVUA1GRX7VL0MXYXTPLAA	\N	57	\N	\N
\N	2021-03-15 16:36:24	65	GV72O637S9HWAH91MY7CCYJQMM3U4WFA	\N	3	\N	\N
\N	2021-03-16 18:54:27	68	ENG3IHB5NF55V8N2C51K7GB925P4U5SI	\N	7	\N	\N
\N	2021-03-16 19:07:34	69	MOYC4NDLYINSFMNBJ40R48GCQH7DFDF8	\N	14	\N	\N
\N	2021-03-16 19:11:45	70	EHEET03I9CRADF79ENTPC0G8A33B8T7T	\N	15	\N	\N
\N	2021-03-16 19:13:10	71	FU7PPWNONN34SF2MM3Q3E7YEGYIUBETM	\N	16	\N	\N
\N	2021-03-17 10:13:03	72	PDN2W3T79S038J8L8SCEAZH92KCXE3RF	\N	18	\N	\N
\N	2021-03-17 10:19:27	73	EVAFC1B7QPQTWR46Q83YP0RN7XD8ELH4	\N	19	\N	\N
\N	2021-03-17 10:24:35	74	DB9A0O2566R4YVY5K9DA80VH9G32PEOL	\N	20	\N	\N
\N	2021-03-17 18:49:15	75	ULWLP8VQR3TP4A7RU29BDRXKFDHYXUM0	\N	21	\N	\N
\N	2021-03-17 18:57:34	76	JNGFA4WB4TO29QMTHQOFBZL13Z1VIGXE	\N	22	\N	\N
\N	2021-03-31 17:29:06	92	4TSMAOYHWG7A2KC3WJIS6KHH0GYA9XNA	\N	58	\N	\N
\N	2021-03-31 17:35:08	93	Y21Q7DTTY4WAQYW3YGD98DZATPNPOHY3	\N	59	\N	\N
\N	2021-03-17 19:45:08	77	OXGGQM7G0WFKRUPIRRLVV7EBRWF9VMPQ	\N	23	\N	\N
\N	2021-03-17 19:48:38	63	XSMOO5DXUHJD7E531F8WGDIM4ATDMX8M	\N	1	\N	\N
\N	2021-03-31 17:55:17	94	HQ64UI814TMJLMQC8US72TK1B0HE96FP	\N	60	\N	\N
\N	2021-03-31 18:03:56	95	QFOHSQ1DD2L2PK12E6JPGX83H44EJ11D	\N	61	\N	\N
\N	2021-03-23 12:44:24	79	LYRVDJI8OSKITN4LBU0MRQLMXVYWUR3T	\N	25	\N	\N
\N	2021-03-23 12:57:01	80	1STSPWY4AUJQN5PP2Q9PCKGYISLH395L	\N	26	\N	\N
\N	2021-03-23 15:19:33	78	WM88H0P56P3F2I20TWS51C9WIFX2BA59	\N	24	\N	\N
\N	2021-04-01 12:11:34	81	CG1GYCJHMOS9CAIX9NJGOS4WEJ3X5U5D	\N	30	\N	\N
\N	2021-04-01 12:32:39	67	ZM9J03PC1BTTDRRFK4HF1SAB8R0ZSWLH	\N	5	\N	\N
\N	2021-03-23 19:49:27	82	X6V453WCF3MV49L2EWLAVJNW11Q1NUSC	\N	31	\N	\N
\N	2021-03-23 19:53:23	83	RI0BU2MBW7KX5SO7AKSNLMJKXJJT2WS6	\N	33	\N	\N
\N	2021-03-23 19:54:17	84	251N354VL7QZJPMXXWTXX94Y6IDAB01N	\N	34	\N	\N
\N	2021-03-23 19:58:03	85	GJOLL8A6VI69LUB0WV9ZXABVFYPVJ54R	\N	37	\N	\N
\N	2021-03-25 19:51:26	86	F50TPQCL4V4GNMY8VLA57CMXWE6ACWXI	\N	40	\N	\N
\N	2021-04-05 11:48:25	96	HTYMKPXUD5YTU841L2QPM5Y5E7JB5IP3	\N	62	\N	\N
\N	2021-03-27 17:05:02	87	C59VDLAING2ST6PWGDQVEDNML0LUR6NR	\N	42	\N	\N
\N	2021-03-27 19:02:53	40	K5J5AG3K8CL25SAX5TXF7NN305J7BLNK	\N	43	\N	\N
\N	2021-04-06 17:52:10	97	YQF8S536MHLRQBFJ2F1HNCHOCYKSY8SP	\N	63	\N	\N
\N	2021-03-31 16:42:34	88	7PRJYG5K3D68HZY779H83SL1JFF79RKD	\N	49	\N	\N
\N	2021-03-31 16:55:57	48	VOP4YORGNTFI2EV5IB0Z1BO3FQJDQPV8	\N	50	\N	\N
\N	2021-03-31 16:58:51	38	EX3YLPHPV3G5NYI2HE1FS1JC1PGZKTFJ	\N	41	\N	\N
\N	2021-03-31 17:10:08	89	SG31LIT6B88DM2HWK94HA5UV6V81VAKL	\N	51	\N	\N
\N	2021-03-31 17:11:51	90	KAP67NOYMANIDVKUMXW6G3CRYYGKQIMV	\N	52	\N	\N
\N	2021-04-15 17:05:09	98	L6VJI87ISQ8PYFTB1M8E3JWJ37CW97XH	\N	64	\N	\N
\.


--
-- Data for Name: api_resources; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.api_resources (resources, method, account_id, resource_id) FROM stdin;
permissions	DELETE	15	1323
permissions	DELETE	15	1324
permissions	GET	4	1325
permissions	POST	4	1326
permissions	PUT	4	1327
permissions	DELETE	4	1328
vendors	GET	4	1329
vendors	POST	4	1330
vendors	PUT	4	1331
vendors	DELETE	4	1332
outlets	GET	4	1333
outlets	POST	4	1334
outlets	PUT	4	1335
outlets	DELETE	4	1336
products	GET	4	1337
products	POST	4	1338
products	PUT	4	1339
products	DELETE	4	1340
drivers	GET	4	1341
drivers	POST	4	1342
drivers	PUT	4	1343
drivers	DELETE	4	1344
drivers	GET	4	1345
drivers	POST	4	1346
drivers	PUT	4	1347
drivers	DELETE	4	1348
permissions	GET	4	1349
permissions	POST	4	1350
permissions	PUT	4	1351
permissions	DELETE	4	1352
permissions	GET	53	1581
permissions	POST	53	1582
permissions	PUT	53	1583
permissions	GET	53	1584
Service Provider	POST	53	1585
Service Provider	PUT	53	1586
Service Provider	GET	53	1587
Service Provider	POST	53	1588
products	PUT	53	1589
products	GET	53	1590
products	POST	53	1591
products	PUT	53	1592
permissions	GET	42	1557
permissions	POST	42	1558
permissions	PUT	42	1559
permissions	DELETE	42	1560
vendors	GET	42	1561
vendors	POST	42	1562
vendors	PUT	42	1563
vendors	DELETE	42	1564
outlets	GET	42	1565
outlets	POST	42	1566
outlets	PUT	42	1567
outlets	DELETE	42	1568
products	GET	42	1569
products	POST	42	1570
products	PUT	42	1571
products	DELETE	42	1572
drivers	GET	42	1573
drivers	POST	42	1574
drivers	PUT	42	1575
drivers	DELETE	42	1576
permissions	GET	42	1577
permissions	POST	42	1578
permissions	PUT	42	1579
permissions	DELETE	42	1580
\.


--
-- Data for Name: banners; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.banners (image, link, default_banner, status, updated_date, created_date, banner_type, id, category_group, sort_order, web_image) FROM stdin;
\N	\N	0	1	2021-03-16 17:42:44	2021-03-16 17:42:44	\N	145	\N	1	\N
158.png	\N	0	0	2022-01-31 17:43:25	2021-03-22 10:44:04	\N	158	\N	21	158.jpg
154.jpg	\N	0	0	2022-01-31 17:43:37	2021-03-18 18:36:06	\N	154	\N	8	154.jpg
161.jpg	\N	1	1	2022-03-29 07:37:59	2021-03-25 20:50:38	\N	161	\N	23	161.jpg
159.jpg	\N	0	1	2022-03-29 08:02:06	2021-03-22 10:45:47	\N	159	\N	22	159.jpg
\.


--
-- Data for Name: banners_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.banners_infos (info_id, banner_id, language_id, banner_title, banner_subtitle) FROM stdin;
420	158	1	<p><b>Sample Banner</b></p>\r\n	\r\n<p>Sample Banner</p>\r\n
421	154	1	<p>test_1</p>\r\n	\r\n<p>test_1</p>\r\n
431	161	1	<p><b>Lorem Ipsum</b> is simply dummy text of the printing and typesetting industry.</p>\r\n	\r\n<p>10 bucks theme banner\r\n</p>\r\n
432	159	1	<p><b><i>Sample Banner_1</i></b></p>\r\n	\r\n<p>Sample Banner_1</p>\r\n
\.


--
-- Data for Name: blog_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.blog_infos (title, content, preview_content, language_id, blog_id, info_id) FROM stdin;
\.


--
-- Data for Name: blogs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.blogs (url_index, image, status, view_count, created_at, updated_at, created_by, id, category_ids, is_resource, is_event, event_schedule_from, event_schedule_to) FROM stdin;
\.


--
-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.categories (category_type, url_key, icon, created_at, updated_at, category_status, created_by, id, image, sort_order, parent_id, category_level, mobile_banner_image, head_category_ids, category_group) FROM stdin;
2	blog-category	\N	2021-04-05 16:26:41	2021-04-19 01:29:57	1	1	39	39.jpg	0	0	\N	\N	\N	\N
1	differently-abled	1	2020-12-11 00:00:00	2021-08-10 18:33:13	1	1	6	6.png	0	0	1	1	0	1
1	education	education	2020-12-11 00:00:00	2021-08-10 18:38:17	1	1	2	2.PNG	0	0	1	1	1	1
1	healthcare	\N	2021-03-01 15:22:16	2021-08-10 18:38:46	1	1	20	20.PNG	0	0	\N	\N	\N	\N
1	women-and-children	health	2020-12-11 00:00:00	2021-08-10 18:39:21	1	1	5	5.PNG	0	0	1	1	0	1
1	religious	\N	2021-03-01 11:21:08	2021-08-10 18:42:36	1	1	15	15.png	0	0	\N	\N	\N	\N
1	environmental	\N	2021-04-05 11:40:23	2021-08-10 18:44:10	1	1	38	38.png	0	0	\N	\N	\N	\N
1	feeding-schemes	\N	2021-04-13 17:32:36	2021-08-10 18:46:12	1	1	45	45.png	0	0	\N	\N	\N	\N
1	advocacy	\N	2021-04-13 17:34:25	2021-08-10 18:48:19	1	1	46	46.png	0	0	\N	\N	\N	\N
1	animal-welfare	\N	2021-04-13 17:29:54	2021-08-10 18:49:30	1	1	44	44.png	0	0	\N	\N	\N	\N
1	drug-rehab	1	2020-12-11 00:00:00	2021-08-10 18:52:47	1	1	3	3.png	0	0	1	1	0	1
1	sport-arts-and-culture	\N	2021-04-13 17:23:26	2021-08-10 18:53:54	1	1	43	43.png	0	0	\N	\N	\N	\N
1	poverty-and-disaster	\N	2021-02-27 12:42:24	2021-08-10 18:55:42	1	1	12	12.png	0	0	\N	\N	\N	\N
\.


--
-- Data for Name: categories_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.categories_infos (info_id, category_name, description, meta_title, meta_keywords, meta_description, language_id, category_id) FROM stdin;
144	Blog Category	Blog Category	Blog Category	Blog Category	Blog Category	1	39
146	Differently Abled	Differently Abled	Differently Abled	Differently Abled	Differently Abled	1	6
147	Education	Education	Education	Education	Education	1	2
148	Healthcare	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	1	20
149	Women and Children	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Women and Children	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	1	5
150	Religious	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Religious	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	1	15
151	Environmental	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Environmental	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	1	38
152	Feeding Schemes	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Feeding Schemes	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Feeding Schemes	1	45
153	Advocacy	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Advocacy	Advocacy	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	1	46
154	Animal Welfare	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Animal Welfare	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	1	44
155	Drug Rehab	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Drug Rehab	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Drug Rehab	1	3
156	Sport, Arts and Culture	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Sport, Arts and Culture	Sport, Arts and Culture	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	1	43
157	Poverty and Disaster	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	Poverty and Disaster	Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt	1	12
\.


--
-- Data for Name: cities; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cities (id, country_id, active_status, default_status, created_date, url_index, modified_date, latitude, longtitude, city_code, geocode, zone_code) FROM stdin;
111275	59	A	1	2021-01-01 00:00:00	Bangalore	\N	\N	\N	\N	\N	\N
111276	59	A	1	2021-03-02 15:48:02	chennai	2021-03-02 15:48:02	\N	\N	\N	\N	\N
111274	59	A	1	2021-01-01 00:00:00	coimbatore	2021-03-02 15:48:19	\N	\N	\N	\N	\N
111281	59	A	1	2021-03-17 20:09:17	salem	2021-03-17 20:09:17	\N	\N	\N	\N	\N
111282	59	A	0	2021-03-18 11:27:12	madurai	2021-03-18 11:27:12	\N	\N	\N	\N	452
111283	59	A	1	2021-03-18 11:28:44	thanjavur	2021-03-18 11:28:44	\N	\N	\N	\N	4362
\.


--
-- Data for Name: cities_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cities_infos (id, city_name, language_id, info_id) FROM stdin;
111275	Bangalore	1	111275
111276	Chennai	1	111276
111274	Coimbatore	1	111277
111281	Salem	1	111286
111282	Madurai	1	111287
111283	Thanjavur	1	111288
\.


--
-- Data for Name: cms; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cms (url_index, created_at, updated_at, created_by, id, cms_status) FROM stdin;
npos-how-it-works	2021-04-15 20:13:34	2021-07-02 16:25:00	1	7	1
donors-how-it-works	2016-07-01 19:04:18	2021-07-02 16:25:31	1	4	1
terms-and-conditions	2017-05-04 11:57:47	2021-07-02 16:26:41	1	5	1
faqs-for-charities	2021-04-15 19:38:33	2021-07-02 16:28:15	1	6	1
faqs-for-donors	2016-07-01 19:03:09	2021-07-02 16:28:54	1	3	1
about-us	2016-07-01 19:00:12	2022-09-06 17:14:08	1	1	1
privacy-policy	2016-07-01 19:01:53	2022-09-21 10:49:22	1	2	1
\.


--
-- Data for Name: cms_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.cms_infos (title, content, meta_keywords, meta_description, language_id, cms_id, info_id) FROM stdin;
NPO's - How it Works	<p><span lang="en-GB">There are over 200 000 NPO charitable organisations in South Africa, but has the average person donated to 10? Can the average person name at least 10? That</span>&rsquo;<span lang="en-GB">s part of the problem</span></p>\r\n<p>&nbsp;</p>\r\n<p><span lang="en-GB"><em><strong>10 Bucks Only</strong></em></span><span lang="en-GB"> hopes to change that by providing NPOs, with access to a to a platform that would provide easier means to receive donations and shine a spotlight on their upstanding efforts to serve their communities. With our app donating in smaller amounts more frequently can be as easy as a few taps on your smart phone. Making donating more convenient and charitable organizations more accessible to the masses</span>.</p>\r\n<p lang="en-US">&nbsp;</p>\r\n<p><span lang="en-GB">Let</span>&rsquo;<span lang="en-GB">s look at the numbers, with approximately 1000 - 10 000 active daily donors any listed NPO can earn R10 000 to R100 000</span> <span lang="en-GB">daily, that</span>&rsquo;<span lang="en-GB">s a lot of smaller good deeds. That can add up to one massive great deed. Starting to see the bigger picture</span>?</p>\r\n<p lang="en-US">&nbsp;</p>\r\n<p><span lang="en-US">Organisations will also be able to track the amount of donations they receive through the NPO backend dashboard. As well as set up and upload project information and pictures. To help better illuminate more details on the organisation itself. With fully automated S18A receipts generated from donations made on the </span><span lang="en-US"><em><strong>10 Bucks Only App.</strong></em></span></p>\r\n<p>&nbsp;</p>\r\n<p><span lang="en-US">NPOs can set up an account with their banking details and receive donations within a matter of minutes through our website. They pay for being listed via a minimal monthly subscription fee. </span></p>\r\n<p>&nbsp;</p>\r\n<p><span lang="en-GB">NPO</span>&rsquo;<span lang="en-GB">s will be able to</span>: -</p>\r\n<p>&bull; <span lang="en-US">Increase accessibility for donations </span></p>\r\n<p>&bull; <span lang="en-US">Increase donations and donor base </span></p>\r\n<p>&bull; <span lang="en-GB">Set up campaigns for specific charitable projects to show insight on the organisations noble efforts</span></p>\r\n<p>&bull; <span lang="en-GB">Receive exposure through our social marketing mediums</span></p>\r\n<p><a name="_GoBack"></a> &bull; <span lang="en-GB">Get </span><span lang="en-US">fully automated S18A receipts on donations made via the 10 Bucks Only app and website.</span></p>\r\n<p lang="en-GB">&nbsp;</p>\r\n<p lang="en-GB">&nbsp;</p>\r\n<p>&nbsp;</p>	NPO's - How it works	NPO's - How it works	1	7	341
Donors - How it Works	<p><span lang="en-GB">The world can be a wonderful place from time to time, but not for everyone. Together we can change that, by giving a little to charities that help those in need, not a lot just a little</span>...</p>\r\n<p>&nbsp;</p>\r\n<p><span lang="en-GB">The concept is simple, making donating as convenient as a few taps on a smart phone, for minimal amounts (10 bucks at least or more) regularly. </span><span lang="en-US">All a donor needs&nbsp;is&nbsp;Internet banking and a smartphone&nbsp;to donate to any listed NPO or on our mobile app and website.&nbsp;Anywhere, anytime, and&nbsp;however many times they wish,</span><span lang="en-GB"> after all it</span>&rsquo;<span lang="en-GB">s only 10 bucks... and therein lies the concept</span>&rsquo;<span lang="en-GB">s charm, the minimal amount of donation</span>.</p>\r\n<p>&nbsp;</p>\r\n<p><span lang="en-US">Our payment gateway provider ensures a safe and reliable experience, keeping payment details&nbsp;secure.&nbsp;S18A receipts are automatically generated, stored, and available at any time for qualifying donations.</span></p>\r\n<p>&nbsp;</p>\r\n<p><span lang="en-GB">Doing small acts of kindness has never been easier</span>.</p>	How it works for donors	How it works for donors	1	4	342
Terms and Conditions	<p style="text-align: center;">TERMS OF SERVICE AGREEMENT FOR DONORS</p>\r\n<p style="text-align: center;">Please carefully read the following Terms of Service before utilising the 10 BUCKS ONLY Platform.</p>\r\n<p>By using the 10 BUCKS ONLY Platform for any purpose, you warrant and indicate that you have understood and agree to be bound by the terms and conditions of these Terms of Service. 10 BUCKS ONLY&rsquo;s Privacy Policy (available here &ndash; www.10bucksonly.co.za) is incorporated by reference into these Terms of Service and is subject to these Terms of Service. These Terms of Service may be amended by 10 BUCKS ONLY at any time and all amended provisions shall be effective automatically and immediately upon the posting of the revised Agreement. Any subsequent activity on or in relation to the Platform shall be governed by such amended terms and conditions of usage.</p>\r\n<p>If you do not agree to the terms of this Agreement, please do not use the Platform. If you wish to register as a User to make use of the Platform, you must read these Terms and indicate your acceptance during the registration process. Note, however, that these Terms apply to your access to and use of the Platform regardless of whether you register an account as a User.</p>\r\n<p>This Agreement was last revised on 18 February 2021. You are advised to regularly check the Platform for any amendments or updates.</p>\r\n<p>&nbsp;</p>\r\n<p>1. Definitions</p>\r\n<p>In this Agreement the following definitions apply:</p>\r\n<p>a. &ldquo;NPOs&rdquo; &ndash; shall mean the charities, companies, associations, and non-profit organisations who have registered on the Platform in order to fulfil a need by receiving a donation from a User.</p>\r\n<p>a. "Donations" shall mean any contribution payable by any User in respect of donations made towards NPOs by the Platform.</p>\r\n<p>b. &ldquo;Need&rdquo; shall mean a request for assistance either in the form of a donation by NPOs.</p>\r\n<p>c. &ldquo;Services&rdquo; means access to the 10 BUCKS ONLY Platform and any other services provided by 10 BUCKS ONLY as applicable in the context of this Policy.</p>\r\n<p>d. &ldquo;Platform&rdquo; shall mean the 10 BUCKS ONLY digital platform that provides an exchange of information in regard to Non-profit organisations.</p>\r\n<p>e. "Third Party Payment Platforms&rdquo; means external websites/apps of payment services that facilitate online payment transactions.</p>\r\n<p>f. &ldquo;User/s&rdquo; shall mean individuals who use the Platform to donate to NPOs</p>\r\n<p>&nbsp;</p>\r\n<p>2. Applicable Legislation</p>\r\n<p>The legislation governing the provision and use of this Platform are:</p>\r\n<p>The Copyright Act 98 of 1978;</p>\r\n<p>The Electronic Communications and Transactions Act 25 of 2002;</p>\r\n<p>The Consumer Protection Act 68 of 2008; and</p>\r\n<p>The Protection of Personal Information Act 4 of 2013.</p>\r\n<p>&nbsp;</p>\r\n<p>3. User Accounts</p>\r\n<p>3.1 When registering on the Platform, you confirm that you are a natural person over the age of 18. If you are under 18, you warrant that you have obtained the consent from the relevant parent or guardian.</p>\r\n<p>3.2 10 BUCKS ONLY is entitled to demand that any User provide any evidence and/or information reasonably required to confirm a User&rsquo;s legal standing in whichever capacity as is stated.</p>\r\n<p>3.3 Registering an account requires completion of a form which requires the User to supply 10 BUCKS ONLY with certain information. 10 BUCKS ONLY shall provide updates on news, activities and topics of interest using the email address provided by User. You are entitled to notify 10 BUCKS ONLY that you wish to no longer receive such communications.</p>\r\n<p>3.4 User is responsible for providing and warrants that the information supplied in the application form is true, complete, and current. Should 10 BUCKS ONLY find any information to be false and misleading, 10 BUCKS ONLY may suspend or terminate the offending account and may refuse all current and future use of the Platform for that User.</p>\r\n<p>3.5 User undertakes that the login credentials supplied upon creation of an account will not be disclosed to any person unauthorised to access the account. Security of each individual account is the responsibility of the User and 10 BUCKS ONLY disclaims all liability with regard thereto.</p>\r\n<p>3.6 Users are responsible for all activities that occur under the account. 10 BUCKS ONLY may require you to change the login credentials at various times and you agree that you will comply with such requests.</p>\r\n<p>3.7 You will notify 10 BUCKS ONLY immediately of any unauthorized use of the account or any other breach of security. 10 BUCKS ONLY assumes no liability for any loss or damage arising from any unauthorised use of your password or account by a third party. In the event of the security of an account being compromised, 10 BUCKS ONLY reserves the right to suspend the processing of any communications and may immediately deactivate the User&rsquo;s logon credentials. You shall refrain from using the Platform until new logon credentials are issued.</p>\r\n<p>3.9 You hereby indemnify and hold 10 BUCK SONLY, its directors, employees, agents and representatives, harmless for any and all losses, damages and expenses arising from your failure to ensure the security of the account, including all legal fees, on an attorney-client scale.</p>\r\n<p>3.10 By registering on the Platform, you agree that:</p>\r\n<p>- You will not use a name that 10 BUCKS ONLY, in its sole discretion, deems inappropriate or offensive;</p>\r\n<p>- You will not use a user name or e-mail address of any other person without authorization;</p>\r\n<p>- Your use of a name will not violate of the intellectual property rights of any person, company, or organisation;</p>\r\n<p>- You will not use a name or e-mail address of another person with the intent to impersonate that person.</p>\r\n<p>3.12 You agree that you shall refrain from registering and creating accounts using automated means.</p>\r\n<p>&nbsp;</p>\r\n<p>4. Use of the Platform</p>\r\n<p>4.1 You agree that 10 BUCKS ONLY will not be responsible for any liability of any sort arising from loss, damage, or any other means as the result of interactions between Users and NPOs and you hereby irrevocably waive any claims against 10 BUCKS ONLY arising from or related to your relationship with another User or NPO.</p>\r\n<p>4.2 You hereby release 10 BUCKS ONLY, its officers, employees, agents and successors from claims, demands any and all losses, damages, rights, claims, and actions of any kind, that is either directly or indirectly related to or arises from: any interactions with other User/s or NPO/s; or your participation in any activities arising from or related to your use of the Platform.</p>\r\n<p>&nbsp;</p>\r\n<p>5. Restrictions &amp; Limitations</p>\r\n<p>5.1 Use of the Platform is governed by the provisions in these Terms of Service.</p>\r\n<p>5.2 By using or accessing the 10 BUCKS ONLY Platform, you undertake to refrain from the following conduct:</p>\r\n<p>- Utilizing the Platform for any reason other than that which is specifically authorized or permitted by 10 BUCKS ONLY;</p>\r\n<p>- Transmitting or disseminating any form of malware which is of a destructive nature;</p>\r\n<p>- Intercepting any User or Third Party data;</p>\r\n<p>- Posting any content that is objectionable in any regard, including without limitation any content that is hateful, intimidating, pornographic, provocative or promoting violence of any nature or content which is harmful to children.</p>\r\n<p>- Interfering with or editing (directly or indirectly) the source code or scripts of the Platform;</p>\r\n<p>- Performing any action that may disable, override or impair the efficient and/or proper operation or working of the Platform.</p>\r\n<p>- Posting or uploading any content intended to solicit business &ndash; which you are not authorised to post or upload</p>\r\n<p>- The transmission or dissemination of unsolicited 'spam' messages by email, SMS, or any other means;</p>\r\n<p>- Using the Platform to bully, intimidate or harass any User or any other third party;</p>\r\n<p>- Using the Platform to perform or promote any act that is unlawful, deceptive, malicious, defamatory, or discriminatory;</p>\r\n<p>- Making use of the Platform in any way that violates or infringes any person&rsquo;s rights or any laws;</p>\r\n<p>- Copying the source code of the Platform; or</p>\r\n<p>- Using the material on the Platform for any reason other than permitted uses.</p>\r\n<p>&nbsp;</p>\r\n<p>5.3 Use of the Platform for any purpose that is unlawful or disallowed by these Terms of Service and any additional Terms of Service is strictly prohibited.</p>\r\n<p>5.4 10 BUCKS ONLY may, in its sole discretion, terminate any account for failure of a User to abide by the restrictions set out. Unauthorised use of this Platform may result in 10 BUCKS ONLY instituting a claim for damages against you and/or you may be found guilty of a statutory and/or criminal offence.</p>\r\n<p>5.5 10 BUCKS ONLY is not liable to you nor any third party for any breach of your obligations under these Terms of Service and for any consequences arising as a result of such breach, including any loss or damages which you and/or any third party may suffer.</p>\r\n<p>&nbsp;</p>\r\n<p>6. 10 BUCKS ONLY&rsquo;s Content</p>\r\n<p>The content made available to you through the Platform, (&ldquo;Our Content&rdquo;), is owned by 10 BUCKS ONLY and or its licensors and is protected by South African copyright laws. Our Content may not be copied, modified, reproduced, or used in any other way, other than specifically and expressly authorised by 10 BUCKS ONLY.</p>\r\n<p>&nbsp;</p>\r\n<p>7. Donations</p>\r\n<p>Any Donations is made through the 10 BUCKS ONLY platform is solely between the User and NPO. <span lang="en-US">10 BUCKS shall have no liability to donors whatsoever for any use or misuse of donations made to a through the 10 BUCKS ONLY platform. An NPO may state that they will use donations only for specific purposes, and while 10 BUCKS ONLY does vet all NPOs available for on the platform. 10 BUCKS ONLY cannot guarantee that they will use it for such purpose</span></p>\r\n<p><span lang="en-US">8. Section 18A Certificates </span></p>\r\n<p><span lang="en-US">10 BUCKS ONLY, it's shareholders, directors, affiliates and any other connected parties will bear no responsibility and obligation in ensuring that section 18A donations received via our platform is utilised by the organisation for section 18A public benefit activities as defined in the Income Tax Act of 1962.</span></p>\r\n<p><span lang="en-US">All donor information provided on the receipt is automatically captured from signup details provided by the donor therefore it is the donor&rsquo;s responsibility to provide the correct details upon signing up</span></p>\r\n<p lang="en-US">&nbsp;</p>\r\n<p>9. Third Party Content and Monitoring</p>\r\n<p>10 BUCKS ONLY is a distributor and publisher of content supplied by NPOs and Users of the Platform and by other third parties.</p>\r\n<p>Any information provided as part of a User / NPO&rsquo;s content, are those of the respective author/s or distributor/s of that information and not of 10 BUCKS ONLY.</p>\r\n<p>10 BUCKS ONLY does not warrant the accuracy or reliability of any content provided or distributed by any User or NPO on the Platform. 10 BUCKS ONLY has the right, but not the obligation, to monitor and review the Content on the Platform and your account to determine compliance with these Terms and any other operating rules established by 10 BUCKS ONLY, to satisfy any law or for other purposes. You understand and acknowledge that 10 BUCKS ONLY does not monitor Content for accuracy or reliability.</p>\r\n<p>10. Intellectual Property</p>\r\n<p>10.1 This Platform is the property of 10 BUCKS ONLY and/or the property of our affiliates and are protected by intellectual property laws in South Africa.</p>\r\n<p>10.2 Ownership of all such intellectual property remains with 10 BUCKS ONLY and/or affiliates. You are not authorised to use any such intellectual property without prior written consent from 10 BUCKS ONLY and/or affiliates.</p>\r\n<p>10.3 Violation of the Intellectual Property Rights of 10 BUCKS ONLY may result in the suspension or termination of your account at the sole discretion of 10 BUCKS ONLY.</p>\r\n<p>10.4 Users must refrain from uploading content which the User does not have permission to use.</p>\r\n<p>10.5 The User indemnifies and holds 10 BUCKS ONLY harmless for any and all intellectual property infringements claims that may arise as a result of the content uploaded by the User/ User&rsquo;s Account. Users will be solely responsible for any and all damages resulting from any infringements of copyrights, proprietary rights or any other harm resulting from any uploading, posting or submission.</p>\r\n<p>&nbsp;</p>\r\n<p>11. Limitation of Liability Disclaimer</p>\r\n<p>11.1 When permitted by law, 10 BUCKS ONLY, and 10 BUCKS ONLY &lsquo;s affiliates, will not be responsible for lost profits, revenues, or data; financial losses; or indirect, special, consequential, exemplary, or punitive damages.</p>\r\n<p>11.2 You agree to indemnify and hold 10 BUCKS ONLY and it&rsquo;s affiliates harmless from and against any claims, damages, actions, losses and liabilities including without limitation: loss of profits; direct, indirect, incidental, special, consequential or punitive damages; and any reasonable legal fees, resulting from: misuse of the Platform; Violation of any of the Terms; malware; or delays in computer transmissions or network connections.</p>\r\n<p>11.3 If you are dissatisfied with any portion of this platform, your sole and exclusive remedy is to discontinue use of the platform.</p>\r\n<p>&nbsp;</p>\r\n<p>12. No Warranties</p>\r\n<p>12.1 You expressly agree that use of the Platform is at your sole risk.</p>\r\n<p>12.2 10 BUCKS ONLY makes no warranty that the Platform will meet your specific requirements or that the Platform will be available and uninterrupted.</p>\r\n<p>12.3 10 BUCKS ONLY does not warrant that defects on the Platform will be corrected.</p>\r\n<p>12.4 10 BUCKS ONLY and/or affiliates make no warranties or representations as to the accuracy of the Platform&rsquo;s content as supplied or NPOs.</p>\r\n<p>12.5 10 BUCKS ONLY makes no warranty regarding any dealings with or transactions entered into with any other parties through the Platform. The entire risk as to satisfactory quality, performance, accuracy, effort and results to be obtained through the use of the Platform is with you. No advice or information, whether oral or written, obtained by you from 10 BUCK SONLY or through the services shall create any warranty not expressly made herein.</p>\r\n<p>&nbsp;</p>\r\n<p>13. Links to Other Websites</p>\r\n<p>13.1 Our provision of a link to any other website or location is for your convenience and does not signify our endorsement of such other site or location or its contents.</p>\r\n<p>13.2 You understand and agree that 10 BUCKS ONLY shall have no control over such website/s, does not review, and cannot be responsible for, these outside sites or their content.</p>\r\n<p>13.3 You agree that 10 BUCKS ONLY shall have no responsibility or bear no liability in relation to the content of the linked website/s. We encourage you to review the terms of use and privacy policies for any such third party links you visit on the those websites.</p>\r\n<p>13.4 10 BUCKS ONLY will not be liable for any information, software, or links found at any other website, internet location, or source of information, or for your use of such information.</p>\r\n<p>&nbsp;</p>\r\n<p>14. Domicilium, Jurisdiction and Arbitration</p>\r\n<p>14.1 The Platform is controlled and operated from the Republic of South Africa and therefore this Agreement shall be governed by and be interpreted in accordance with the laws of the Republic of South Africa.</p>\r\n<p>14.2. In the event of any legal dispute or action being brought in connection with this Agreement, it is agreed that the venue of such action shall be Durban, South Africa and each party hereby consents to the jurisdiction of the courts thereof.</p>\r\n<p>14.3 Without any restriction on the User/s rights to pursue legal recourse in the forum of the User/s choice, the User/s agree that any dispute regarding this Agreement that cannot be resolved amicably, shall, first be referred to confidential arbitration in terms of the rules of the Arbitration Foundation of South Africa prior to proceeding to Court and such arbitration shall be conducted in Durban.</p>\r\n<p>14.4 10 BUCKS ONLY confirms the domicilium citandi et executandi for all purposes associated with the Platform, transactions pertaining to the Platform, including the giving of any notice, the payment of any sum, the serving of any process, as follows: Suit 9, West Riding Offices, 50 West Riding Row, Sherwood, Durban 4091</p>\r\n<p>14.5 10 BUCKS ONLY does not receive legal notice or accept the serving of documents attached to legal processes on 10 BUCKS ONLY by electronic mail.</p>\r\n<p>&nbsp;</p>\r\n<p>15. Protection of Personal Information</p>\r\n<p>10 BUCKS ONLY will deal with all personal information supplied to 10 BUCKS ONLY in relation to the provision of the Services will be dealt with in accordance with 10 BUCKS ONLY&lsquo;s Privacy&lsquo;s Policy, the Terms of Service set out herein and South African legislation.</p>\r\n<p>Information relating to the collection, usage, and disclosure of your personal information can found in our Privacy Policy accessible here <a href="http://www.10bucksonly.co.za">www.10bucksonly.co.za</a>.</p>\r\n<p>&nbsp;</p>\r\n<p>16. Severability</p>\r\n<p>This Agreement shall apply to the fullest extent permissible by law. If any provision of the Agreement is unlawful, void or unenforceable, that provision shall be deemed severable from the remaining provisions and shall not affect the validity and enforceability of the remaining provisions.</p>\r\n<p>&nbsp;</p>\r\n<p>17. ELECTRONIC PAYMENT</p>\r\n<p>17.1 When any payment is made through the 10 BUCKS ONLY platform via our Third Party Payment Solution, such a transaction is solely between the User and NPO.</p>\r\n<p>17.2 Third Party Platforms have their own terms and conditions and it is the User&rsquo;s responsibility to read these terms and conditions. 10 BUCKS ONLY makes no guarantees regarding the performance of Third Party Payment Platforms.</p>\r\n<p>17.3 10 BUCKS ONLY merely makes use of payment systems owned and operated by third parties to facilitate electronic transactions. None of these Third Party Payment Platforms are our employees, subcontractors, agents, intermediaries or representatives, or otherwise controlled by us.</p>\r\n<p>17.4 You use the 10 BUCKS ONLY Platform, Third Party Payment Platforms and associated Services solely at your own risk.</p>\r\n<p>17.5 All transactions are processed in South African Rand.</p>\r\n<p>17.6 10 BUCKS ONLY is not responsible for the following:</p>\r\n<p>17.6.1. errors in the payment information or links submitted by NPOs;</p>\r\n<p>17.6.2. any inaccurate information published on the Platform;</p>\r\n<p>17.6.3. the security of personal information submitted on a third party website; and</p>\r\n<p>17.6.4. any breach of contract by a third party website owner or third party organisation.</p>\r\n<p>17.7 You agree that 10 BUCKS ONLY will not be responsible or liable for any loss, cost, damage, or other liability of any sort incurred as the result of making use of third party platforms to effect payments and you hereby irrevocably waive any claims against 10 BUCKS ONLY arising from or related to any such payment.</p>\r\n<p>17.8 You hereby release 10 BUCKS ONLY, its officers, employees, agents and successors from claims, demands any and all losses, damages, rights, claims, and actions of any kind including, without limitation, personal injuries, death, and property damage, that is either directly or indirectly related to or arises from any payments made.</p>\r\n<p>&nbsp;</p>\r\n<p>18. Information Compliance</p>\r\n<p>The following table contains further information on 10 BUCKS ONLY and represents the information that must be provided by 10 BUCKS ONLY to you. You are advised to regularly check this section of the Legal Notice for any amendments or updates.</p>\r\n<p>Full Name: 10 Bucks Only (Pty) Ltd</p>\r\n<p>Registration Number: 2019/521278/07</p>\r\n<p>Place of Registration: Durban</p>\r\n<p>Directors: R Amra, J Mayet</p>\r\n<p>Physical Address: Suit 9, West Riding Offices, 50 West Riding Row, Sherwood, Durban 4091</p>\r\n<p>Postal Address: Suit 9, West Riding Offices, 50 West Riding Row, Sherwood, Durban 4091</p>\r\n<p>Physical Address for receipt of legal documents: Suit 9, West Riding Offices, 50 West Riding Row, Sherwood, Durban 4091</p>\r\n<p>E-mail address: info@10bucksonly.co.za</p>\r\n<p>Website Address: www.10bucksonly.co.za</p>\r\n<p>Membership to self-regulatory and/or accreditation bodies: Not applicable</p>\r\n<p>Description of products and services offered: Online Donations</p>\r\n<p>Terms of Service Can be accessed at: www.10bucksonly.co.za</p>\r\n<p>Privacy Policy Can be accessed at: <a href="http://www.10bucksonly.co.za/">www.10bucksonly.co.za</a></p>\r\n<p><span lang="en-US">Ozow payment solutions terms and conditions can be accessed at: https://ozow.com/terms-andcondition</span></p>	User Agreement	User Agreement	1	5	343
FAQ's For Charities	<div class="demo-container"><!-- Accordion begin -->\r\n<ul class="demo-accordion accordionjs"><!-- Section 1 -->\r\n<li>\r\n<div>\r\n<h3>Q1)&nbsp;Does my organisation need to be 18A compliant to be on the app?</h3>\r\n</div>\r\n<div>Not at all, you will need to have a valid PBO or NPO certificate to verify that you are indeed a legitimate NPO though.</div>\r\n</li>\r\n<!-- Section 2 -->\r\n<li>\r\n<div>\r\n<h3>Q2)&nbsp;What is required to sign up for the app?</h3>\r\n</div>\r\n<div>Signing up is a simple process, all you need is basic info on your NPO, a PBO or NPO certificate (or both), social media and website URLs (if available), basic information on projects, project pictures and banking details for receiving donations</div>\r\n</li>\r\n<!-- Section 3 -->\r\n<li>\r\n<div>\r\n<h3>Q3)&nbsp;Does my organisation receive 100% of the donations?</h3>\r\n</div>\r\n<div>Yes 100%, provided donors use the OZOW payment method to donate. We believe all of the money should be used as it was intended to be, for good</div>\r\n</li>\r\n<li>\r\n<div>\r\n<h3>Q4)&nbsp;How are 18A receipts processed?</h3>\r\n</div>\r\n<div>All donations from a user to an 18A compliant NPO are generated and available for download to the user and NPO. Yes, you've read that correctly. If your organisation encourage donations via our app or website, all 18A receipts will be automated, meaning less work for you</div>\r\n</li>\r\n<li>\r\n<div>\r\n<h3>Q5)&nbsp;Can we advertise that we're available on the app for donations, to our donor base?</h3>\r\n</div>\r\n<div>Can we advertise that we're available on the app for donations, to our donor base?<br />Yes, of course ultimately the more active users on the app the better, the industry wins as a whole and more charitable organisations become easily accessible to the public. Issuing of 18A receipts also becomes much easier.</div>\r\n</li>\r\n</ul>\r\n</div>	FAQ for Charities and Non-profits	FAQ for Charities and Non-profits	1	6	344
FAQ's For Donors	<ul style="list-style-type: disc;">\r\n<li>\r\n<div>\r\n<h3><span style="font-size: 10pt;">Q1)&nbsp;<strong>What is a section 18A receipt?</strong></span></h3>\r\n</div>\r\n<div>\r\n<p><span style="color: #202124;"><span style="font-family: Arial, serif;"><span lang="en-US">A prescribed&nbsp;</span></span></span><span style="color: #202124;"><span style="font-family: Arial, serif;"><span lang="en-US"><strong>receipt</strong></span></span></span><span style="color: #202124;"><span style="font-family: Arial, serif;"><span lang="en-US">&nbsp;issued under section&nbsp;</span></span></span><span style="color: #202124;"><span style="font-family: Arial, serif;"><span lang="en-US"><strong>18A</strong></span></span></span><span style="color: #202124;"><span style="font-family: Arial, serif;"><span lang="en-US">, by a section&nbsp;</span></span></span><span style="color: #202124;"><span style="font-family: Arial, serif;"><span lang="en-US"><strong>18A</strong></span></span></span><span style="color: #202124;"><span style="font-family: Arial, serif;"><span lang="en-US">-approved organization, potentially entitling the donor to an income tax deduction for donations made</span></span></span></p>\r\n</div>\r\n</li>\r\n</ul>\r\n<ul class="demo-accordion accordionjs">\r\n<li>\r\n<div>\r\n<h3><span style="font-size: 10pt;">Q2)&nbsp;<strong>Can I donate to multiple organisations</strong><strong>?</strong></span></h3>\r\n</div>\r\n<div>\r\n<p><span lang="en-GB">A registered user on the app or website can donate to as many listed NPOs as they wish</span></p>\r\n</div>\r\n</li>\r\n</ul>\r\n<ul class="demo-accordion accordionjs">\r\n<li>\r\n<div>\r\n<h3><span style="font-size: 10pt;">Q3)&nbsp;<strong>What if I can't find my local charity on the app</strong><strong>?</strong></span></h3>\r\n</div>\r\n<div>\r\n<p><span lang="en-GB">No problem drop us a mail on info@10bucksonly.co.za with your local NPOs contact details and our handy sales team will be in touch</span>.</p>\r\n</div>\r\n</li>\r\n</ul>\r\n<ul class="demo-accordion accordionjs">\r\n<li>\r\n<div>\r\n<h3><span style="font-size: 10pt;">Q4)&nbsp;<strong>Do 100% of my donations go to the selected charity</strong><strong>?</strong></span></h3>\r\n</div>\r\n<div>\r\n<p><span lang="en-GB">Yes provided you use the OZOW payment method, all donations go directly into the NPOs bank account with 0% commission fees being charged per donation.</span></p>\r\n</div>\r\n</li>\r\n<li>\r\n<div>\r\n<h3><span style="font-size: 10pt;">Q5)&nbsp;<strong>Is 10 Bucks Only a NPO</strong><strong>?</strong></span></h3>\r\n</div>\r\n<div>\r\n<p><span lang="en-GB">While we do help a lot of charitable organisations, we aren&rsquo;t in fact one, ourselves. We're just your friendly neighbourhood entrepreneurial tech company trying to affect real change in the world</span></p>\r\n</div>\r\n</li>\r\n<li>\r\n<div>\r\n<h3>Q6)&nbsp;<strong>Is my personal and banking information safe</strong><strong>?</strong></h3>\r\n</div>\r\n<div>\r\n<p><span lang="en-US">Our payment gateway provider ensures a safe and reliable experience, keeping payment details&nbsp;secure.&nbsp;No Banking details are stored on our application, website and payment partner OZOW</span></p>\r\n</div>\r\n</li>\r\n<li>\r\n<div>\r\n<h3><span style="font-size: 10pt;">Q7)&nbsp;<strong>Can we really make a difference?</strong>&nbsp;</span></h3>\r\n</div>\r\n<div>\r\n<div>\r\n<p><span lang="en-GB">Easily, with 1000 - 10 000 daily donors, any listed NPO or charity can earn from</span></p>\r\n<p><span lang="en-GB">R10 000 - R10 000 daily. Now for the bigger NPO's that is a significant chunk of change, but for the smaller guys</span> <span lang="en-GB">e.g. a group of church goers who feed the needy every Sunday, that can go a long way to doing good, as the power always has been with the people.</span></p>\r\n<p>&nbsp;</p>\r\n</div>\r\n</div>\r\n</li>\r\n</ul>	FAQ's For Donors	FAQ's For Donors	1	3	345
About Us	<p><span lang="en-US">We order a ride, food, groceries etc all with a few taps of a smartphone,&nbsp;</span><span lang="en-US"><em><strong>but why can't doing good deeds be just as simple?</strong></em></span><span lang="en-US">&nbsp;With our donations app&nbsp;</span><span lang="en-US"><strong>10 Bucks Only</strong></span><span lang="en-US">,&nbsp;we hope to change that and help charitable organisations become more accessible.&nbsp; <br /> <br /> Doing your good deed for the day has&nbsp;</span><span lang="en-US"><strong>never been simpler.</strong></span></p>\r\n<p lang="en-US">&nbsp;</p>\r\n<p><span lang="en-US">The concept is simple, making donating as convenient as a few taps on a smartphone.&nbsp;All a donor needs&nbsp;is&nbsp;Internet banking and a smartphone&nbsp;to donate to any listed NPO or on our mobile app and website.&nbsp;Anywhere, anytime, and&nbsp;however many times they wish.<br /> &nbsp;<br /> Our payment gateway provider ensures a safe and reliable experience, keeping payment details&nbsp;secure.&nbsp;S18A receipts are automatically generated, stored, and available at any time for qualifying donations.</span></p>	About us	About us	1	1	349
Privacy Policy 	<p align="center">PRIVACY POLICY</p>\r\n<p>FOR THE PURPOSES OF THIS POLICY, PERSONAL INFORMATION IS DEFINED IN ACCORDANCE WITH THE DEFINITION IN THE PROTECTION OF PERSONAL INFORMATION ACT 4 OF 2013.</p>\r\n<p>This is our Privacy Policy and it informs you of how we collect and manage your personal information. We comply with all of the Act&rsquo;s requirements in respect of the collection, management and disclosure of your Personal Information. Use of the Platform indicates that you (&ldquo;the User&rdquo;) have understood and agree to be bound by the terms and conditions of this Privacy Policy. 10 BUCKS ONLY may amend this Agreement at any time. All amended terms shall be effective automatically and immediately upon the posting of the revised Agreement and any subsequent activity in relation to the Platform shall be governed by such amended terms and conditions of usage. If you do not agree to the terms of this Privacy Policy, please do not use the Platform.</p>\r\n<p>This Agreement was last revised on 17 February 2021. You are advised to regularly check the Platform for any amendments or updates.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>1. Personal Information Generally </strong></p>\r\n<p>Personal information is any information that can be used to personally identify you. This may include your name, surname, address, telephone number, phone number, email address and/or occupation. Your Personal Information will not be used, shared, sold or disclosed other than as described in this Privacy Policy.</p>\r\n<p>By submitting information through our services, you expressly consent to the collection, processing, sharing and storage of your Personal Information as defined in this Policy. Such information is retained for the purpose of adding such information to the 10 BUCKS ONLY Platform.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>2. Collection of Personal Information </strong></p>\r\n<p>2.1 This Privacy Policy meets the requirement of notification of collection as per the Protection of Personal Information Act 4 of 2013.</p>\r\n<p>2.2 <span style="font-size: small;">This </span>policy applies to you in the following:</p>\r\n<ul>\r\n<li>natural persons over 18;</li>\r\n<li>natural persons under the age of 18 - with the consent of the parent or legal guardian;</li>\r\n<li>juristic persons such as charities, non-profit organisations and companies duly represented by a representative;</li>\r\n<li>visitor to our website; or</li>\r\n<li>2.3 10 BUCKS ONLY uses online forms to collect Personal Information and you hereby consent to the collection, processing, sharing and storage of Personal Information for the purpose of adding such information to the 10 BUCKS ONLY Platform.</li>\r\n</ul>\r\n<p>2.4 As a parent or guardian, in the case of a minor, you consent to the collection, processing, sharing and storage of Special Personal Information for the purpose of adding such information to the 10 BUCKS ONLY Platform.</p>\r\n<p>2.5 We collect the following types of Personal Information/Special Personal Information:</p>\r\n<ul>\r\n<li>identifying information &ndash; such as your name, date of birth, or identification number of any kind;</li>\r\n<li>contact information &ndash; such as your phone number or email address;</li>\r\n<li>address information &ndash; such as your physical or postal address; or</li>\r\n</ul>\r\n<p>2.6 10 BUCKS ONLY retains records for a period that is longer than is required by law and you hereby consent to such retention of Personal Information/Special Personal Information.</p>\r\n<p>2.7 We may also collect Personal Information/Special Personal Information through your access and use of our Platform and through your participation in various activities advertised on the Platform.</p>\r\n<p>2.8 There may be instances where we may also collect some information that is not Personal Information/Special Personal Information because it does not identify you or anyone else (we may collect anonymous answers to surveys or aggregated information about how users use our Platform).</p>\r\n<p>2.9 If you use our Platform, we may use cookies or other tracking technologies to collect information such as the pages you visit or the information you request. This information collected is kept confidential. The use of tracking technologies enables us to keep track of products and services you view so that we may provide you with further information.</p>\r\n<p>2.10 We are also able to use the information collected to improve our internal business processes. We research our users&rsquo; habits, measure traffic patterns in the aggregate, analyse trends, track users movements and gather broad demographic information.</p>\r\n<p>2.11 In instances where we are unable to collect your Personal Information/Special Personal Information, it may result in us not being able to provide the requested information relating to NPOS. We may not be able to provide you with the information that is of particular interest to you and your experience of the Platform may not be as useful as you wish it to be.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>3. Consent for Processing Personal Information </strong></p>\r\n<p>3.1 By Using the Platform, you represent that you are of the age of 18 or where you are under 18, a Competent Person has given consent to allow you/your minor child to utilise this platform. Where you are duly authorised by a company, you hereby confirm that you have the relevant authority to use the Platform and become a User. This consent is effective on access of the platform.</p>\r\n<p>3.2 You, or a Competent Person in the case of a minor, consent/s to the processing of Personal Information/Special Personal Information. As a Competent Person you agree that giving such consent means that you have given 10 BUCKS ONLY &lsquo;s permission to collect and process the child&rsquo;s Special Personal Information in the ways described in this Policy.</p>\r\n<p>3.3 You understand that your consent to the processing of your Personal Information/Special Personal Information by 10 BUCKS ONLY pertains to the provision of information and the services; as well as associated purposes. Processing shall include the collection, receipt, recording, organisation, collation, storage, updating or modification, retrieval, alteration, consultation, use; dissemination by means of transmission, distribution or making available in any other form; or merging, linking, as well as blocking, degradation, deletion or destruction of Personal Information.</p>\r\n<p>3.4 Personal Information/Special Personal Information may be processed by 10 BUCKS ONLY in the country where it was collected as well as other countries where laws regarding processing of Personal Information differ. The consent to receive direct marketing from 10 BUCKS ONLY is obtained during the registration process and you consent to the receipt of direct marketing communications regarding all business activities and news.</p>\r\n<p>3.5 You expressly consent to 10 BUCKS ONLY retaining your Personal Information/Special Personal Information once your relationship with 10 BUCKS ONLY has been terminated and using the information for aggregate, statistical and reporting purposes.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>4. Use of Your Personal Information </strong></p>\r\n<p>4.1 We collect, hold, use and disclose your Personal Information/Special Personal Information for the following purposes:</p>\r\n<p>a) To provide information about the NPOs and advertisements so you can provide assistance in the form of providing donations or any other contributions;</p>\r\n<p>b) To send communications regarding updates on news, activities and topics of interest requested by you;</p>\r\n<p>c) When a User responds to an NPO, the User&rsquo;s Personal Information is shared with the NPO for the purposes of completing that transaction;</p>\r\n<p>d) To answer enquiries and provide information or advice about existing and new NPOs</p>\r\n<p>e) To assess the performance of the platform and to improve the operation of the platform;</p>\r\n<p>f) To engage in electronic communications and transactions with you;</p>\r\n<p>g) To provide feedback on any related enquiries and future opportunities;</p>\r\n<p>h) To update our records and keep your contact details up to date;</p>\r\n<p>i) To process and respond to any complaint made by you;</p>\r\n<p>j) To provide you with updates regarding business developments and activities;</p>\r\n<p>k) To provide you with marketing material or marketing services in a manner that complies with the Consumer Protection Act 68 of 2008 and the Protection of Personal Information Act 4 of 2013; and</p>\r\n<p>m) To comply with any law, rule, regulation, lawful and binding determination, decision or direction of a regulator, or in co-operation with any governmental authority of any country.</p>\r\n<p>4.2 10 BUCKS ONLY will employ all reasonable measures in order to ensure that your Personal Information/Special Personal Information is protected.</p>\r\n<p>4.3 Your Personal Information/Special Personal Information will not be shared, sold, rented or disclosed other than as described in this Privacy Policy.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>5 Updating of Personal Information </strong></p>\r\n<p>5.1 You may request access to any Personal Information/Special Personal Information we hold about you at any time by contacting us at info@10bucksonly.co.za</p>\r\n<p>5.2 If you believe that Personal Information/Special Personal Information we hold about you is incorrect, incomplete or inaccurate, then you may request us to amend it. We will consider if the information requires amendment. If we do not agree that there are grounds for amendment or that we cannot amend the information as required, we will retain a note about the request.</p>\r\n<p>5.3 Where we hold information that you are entitled to access, we will try to provide you with suitable means of accessing it (for example, emailing it to you). We will not charge for making the request and will not charge for making any corrections or updates to your Personal Information/Special Personal Information.</p>\r\n<p>5.4 There may be instances where we cannot grant you access to the Personal Information/Special Personal Information we hold. We may need to refuse access if granting access would interfere with the privacy of others or if it would result in a breach of confidentiality. Should this be the case, we will give you written reasons for any refusal.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>6 Disclosure of Personal Information </strong></p>\r\n<p>6.1 Business records relating to the provision of information or services to you can be retained by 10 BUCKS ONLY in terms of legislative records retention provisions and includes your Personal Information. Records can be retained for operational purposes or for evidential purposes. Where 10 BUCKS ONLY shares your Personal Information/Special Personal Information with NPOs and other Users, 10 BUCKS ONLY does not permit such parties to use the information for any other purpose than to perform the services.</p>\r\n<p>6.2 We may disclose your Personal Information/Special Personal Information to:</p>\r\n<p>a) Our employees so that we are able to operate our business;</p>\r\n<p>b) NPOs and other Users for the purposes of operation of our Platform or our business,</p>\r\n<p>c) Fulfil requests by you, and to otherwise provide information and services to you;</p>\r\n<p>d) Suppliers and other third parties with whom we have commercial relationships, for business and related purposes; and</p>\r\n<p>e) Any organisation for any authorised purpose with your express consent.</p>\r\n<p>6.3 We may further disclose your Personal Information/Special Personal Information in the following instances:</p>\r\n<p>a) To comply with the law or legal process;</p>\r\n<p>b) To protect 10 BUCKS ONLY&rsquo;s rights, facilities and other property;</p>\r\n<p>c) To protect 10 BUCKS ONLY against any misuse or unauthorised use of the platform and/or its services; and</p>\r\n<p>d) To protect Users&rsquo; or third parties affected negatively by your action in using the platform and/or the services.</p>\r\n<p>6.4 We will disclose information relating to NPOs, specifically to corporate clients where such clients have selected certain NPOs to be part of their corporate social good activities.</p>\r\n<p>6.5 We will disclose Personal Information/Special Personal Information to our Internet Service Providers who use software programmes and hardware devices to monitor network traffic in order to identify unauthorised attempts to access, upload, damage or alter information that it has stored.</p>\r\n<p>6.6 We have placed security safeguards to protect your Personal Information/Special Personal Information through agreements concluded with third party service providers. We will not be held liable for any illegal activity or other activity that may result in a claim for damages due to lack of protection of your Personal Information/Special Personal Information whilst under the care of the third party.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>7 Security of Personal Information </strong></p>\r\n<p>7.1 We take strive to ensure your Personal Information/Special Personal Information is protected from misuse, loss and from unauthorised access, modification or disclosure at all times. We may hold your information in either electronic or hard copy form. We use third parties who may have access to your Personal Information and who have undertaken to protect your Personal Information. <span lang="en-US">&nbsp;</span></p>\r\n<p>7.2 Should an unauthorised person/s access your Personal Information/Special Personal Information, 10 BUCKS ONLY shall contact you to notify you within a reasonable time.</p>\r\n<p>7.3 As our Platform is linked to the internet, and the internet is inherently insecure, we cannot provide any assurance regarding the security of transmission of information you communicate to us online. We also cannot guarantee that the information you supply will not be intercepted while being transmitted over the internet. Accordingly, any Personal Information/Special Personal Information or other information which you transmit to us online is transmitted at your own risk.</p>\r\n<p>7.4 <span lang="en-US">The transfer of online transaction data to and from the website is protected by the implementation of SSL Certificate provided by Thawte. It is your responsibility to keep your password secure at all times to avoid unauthorised use of your 10 BUCKS ONLY account. </span>All banking information is <span lang="en-US">encrypted and not available to us.</span></p>\r\n<p>&nbsp;</p>\r\n<p><strong>8 Links </strong></p>\r\n<p>8.1 Our Platform may contain links to other websites operated by third parties. We make no representations or warranties in relation to the privacy practices of any third party website and we are not responsible for the privacy policies or the content of any third party website. Third party websites are responsible for informing you about their own privacy practices.</p>\r\n<p>&nbsp;</p>\r\n<p><strong>9 Contacting us </strong></p>\r\n<p>9.1 If you have any questions about this privacy policy, any concerns, any objections or a complaint regarding the treatment of your privacy or a possible breach of your privacy, please contact us using the details set out below in 9.3.</p>\r\n<p>9.2 We will treat your requests or complaints confidentially.</p>\r\n<p>9.3 Please contact our Privacy Officer at: info@10bucksonly.co.za</p>	Privacy policy 	Privacy policy 	1	2	352
\.


--
-- Data for Name: config_setting; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.config_setting (settings_id, code, key, value, multilang, setting_id) FROM stdin;
11	config	logo	logo.png	0	1
12	config	favicon	favicon.png	0	2
16	default	default_country	1	0	3
17	default	default_city	2	0	4
18	config	blocklist_words	foo,bar	0	5
44	config	logo_pink	logo_pink.png	0	6
51	config	site_assets_url	/assets	0	7
52	config	site_url	www.10bucksonly.com	0	8
15	default	default_language	1	0	9
5	media	site_twitter_page	https://twitter.com/10bucksonlysa	0	13
7	config	weekly_digest_receivers	seetha.s@nextbraintech.com	0	16
27	email	smtp_password	qEbFtJBgNmaLZ1Ks	0	19
28	email	smtp_port	587	0	20
29	email	smtp_encryption	tls	0	21
22	email	skype	10bucksonly	0	23
30	media	site_facebook_page	https://www.facebook.com/10Bucks-Only-102327141350887	0	26
32	media	site_linkedin_page	https://www.linkedin.com/company/10bucksonly/	0	27
34	media	site_instagram_page	https://www.instagram.com/10bucksonly_sa	0	28
35	media	site_youtube_page	https://www.youtube.com/c/10bucksonly	0	29
36	media	android_page	https://play.google.com/store/apps/details?id=com.app.10bucksonly	0	30
33	media	google_plus_page	https://plus.google.com/10bucksonly/posts	0	31
37	media	iphone_page	https://apps.apple.com/	0	32
38	media	facebook_app_id	422956288129390	0	33
39	media	facebook_secret_key	375a611470fe3a3acc0ab212bcc0f925	0	34
40	media	twitter_api_key	375a611470fe3a3acc0ab212bcc0f925	0	35
41	media	twitter_secret_key	22vdv6ds5sdvd5vdvdv3dvd33dcvd	0	36
43	media	analytics_code	 	0	38
47	media	sms_account_id	AC36985c7b3c600c10909df601877b049c	0	39
48	media	sms_account_token	f031775a61d369d9ede897f27565c9d6	0	40
49	media	sms_sender_number	+15595001607	0	41
10	config	theme	10bucksonly	0	54
19	email	contact_mail	hello@10bucksonly.co.za	0	56
20	email	support_mail	hello@10bucksonly.co.za	0	57
21	email	mobile_number	+279876543210	0	58
23	email	smtp_enable	1	0	59
24	email	mail_driver	smtp	0	60
25	email	smtp_host_name	smtp-relay.sendinblue.com	0	61
26	email	smtp_username	hello@10bucksonly.co.za	0	62
2	config	site_description	10bucksonly app for Charities	0	18
3	config	site_owner	10bucksonly	0	22
4	config	email	hello@10bucksonly.co.za	0	24
5	config	telephone	9876543210	0	25
6	config	fax	10bucksonly	0	42
7	config	geocode	-1.3108674,36.7100208	0	43
8	config	min_amount	10	0	14
9	config	max_amount	100000	0	15
13	config	donor_video	https://www.youtube.com/embed/hPTrtp098vg	0	10
14	config	npo_video	https://www.youtube.com/embed/hPTrtp098vg	0	11
15	config	fundraiser_video	https://www.youtube.com/embed/hPTrtp098vg	0	12
1	config	site_name	10bucksonly	0	17
8	config	meta_title	10bucksonly	0	44
9	config	meta_keywords	10bucksonly	0	45
10	config	meta_description	10bucksonly	0	46
11	config	homepage_video	url	0	47
12	config	contact_address	Suite 9, West Riding Offices, 50 West Riding Row, Sherwood, Durban, 4091 	0	49
14	config	copyrights	© 2021 10bucksonly.co.za. All rights reserved.	0	51
46	config	front_video	https://www.youtube.com/embed/hPTrtp098vg	0	52
50	config	currency	R	0	53
53	config	home_banner_scroll_interval	6	0	55
17	config	location_radius	5	0	63
42	media	gmap_api_key	AIzaSyDZvW2refSmURLypIyI4yQMxXC-XA3iNF8	0	37
\.


--
-- Data for Name: config_setting_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.config_setting_infos (info_id, setting_id, lang_id, value) FROM stdin;
\.


--
-- Data for Name: contactuses; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.contactuses (id, name, email, phone_number, message, status, created_at, updated_at) FROM stdin;
12	Karthick	karthick@getnada.com	+919876543210	Test Purpose Message from Postman	1	2021-03-27 07:37:26	2021-03-27 07:37:26
13	Seetha	seetha@getnada.com	+919876543210	Test Purpose Message	1	2021-03-27 07:40:26	2021-03-27 07:40:26
14	Ramesh	ramesh@getnada.com	+919876543210	Test Purpose Message	1	2021-03-27 07:41:11	2021-03-27 07:41:11
15	ramesh	ramesh.k@nextbraintech.com	9606169056	test	1	2021-04-05 05:27:05	2021-04-05 05:27:05
16	iosdev	pganeshkumarece@gmail.com	 919080942690	Test iOS description	1	2021-04-07 11:57:20	2021-04-07 11:57:20
17	Ganesh 	pganeshkumarece@gmail.com	+919080942690	Test iOS	1	2021-04-07 13:18:58	2021-04-07 13:18:58
18	Saranraj	saran@nextbraintech.com	9952493995	Test	1	2021-04-10 05:20:26	2021-04-10 05:20:26
19	Sravya Kolla	pganeshkumarece@gmail.com	+918608791165	test	1	2021-04-17 13:57:05	2021-04-17 13:57:05
20	preethi	preethi.s@nextbraintech.com	+919514836224	ffffffffff	0	\N	\N
21	preethi	preethi@nextbraintech.com	+919514836224	dddddddddd	0	\N	\N
22	preethi	preethidd@nextbraintech.com	+919514836224	dddddddddd	0	\N	\N
23	preethi	preethi.sk@nextbraintech.com	+919514836224	44	0	\N	\N
24	testing	testing@nextbraintech.com	+919514836224	dgfdfdsfgd	0	\N	\N
25	testing	testing123333333e@nextbraintech.com	+919514836224	dgfdfdsfgd	0	\N	\N
26	ramesh.k@nextbraintech.com	ramesh.k@nextbraintech.com	9606169056	jcuf.	1	2021-04-20 09:50:06	2021-04-20 09:50:06
27	preethi	preethitfhtfht@nextbraintech.com	+919514836224	drthdrtgh	0	\N	\N
28	sample	sample@gmail.com	+919514836224	sdfsd	0	\N	\N
29	preethi	testdfv@nextbraintech.com	+919514836224	sssssss	0	\N	\N
31	ganesh	pganeshkumarece@gmail.com	+919080942698	Description	1	2021-04-21 11:17:28	2021-04-21 11:17:28
32	ganesh	pganeshkumarece@gmail.com	+919080942698	Description	1	2021-04-21 11:17:55	2021-04-21 11:17:55
33	ganesh	pganeshkumarece@gmail.com	+919080942698	Description	1	2021-04-21 11:18:26	2021-04-21 11:18:26
36	Ramesh	ramesh517.k@gmail.com	9606169056	test	0	\N	\N
37	ramesh	ramesh517.ke@gmail.com	9606169056	test	0	\N	\N
38	Rajini	rajini.g@nextbraintech.com	9738814246	Help me	0	\N	\N
39	Rajini Gowda	rajini.g@nextbraintech.com	9738814246	Help for NPO's registration	0	\N	\N
40	Ramesh Kolla	ramesh.k@nextbraintech.com	9606169056	test image	0	\N	\N
41	Ramesh Kolla	ramesh.k@nextbraintech.com	9606169056	test message	0	\N	\N
42	hclickscommlmu	hclicks@rambler.ru	1234567890	Hello! \r\nThis is Greg an I am owner of https://hClicks.com \r\nI just noticed that your site 10bucksonly.co.za does not contain push notifications and I would like to offer you the highest rates for this type of ad! \r\nOnly one step and you will start to get profit. \r\nDo you want to know our advantages? \r\n-> Anti-AdBlock Domains \r\n-> Personal approach \r\n-> Daily payments \r\nTo get the maximum rates, please send your request with a personal code to our support team hClicks-10bucksonly.co.za-2021. \r\nWe are waiting for you \r\nhttps://hClicks.com	0	\N	\N
43	JamesPries	no-replyBoinny@gmail.com	81292365259	Hi!  10bucksonly.co.za \r\n \r\nDo you know the best way to mention your product or services? Sending messages exploitation feedback forms will permit you to easily enter the markets of any country (full geographical coverage for all countries of the world).  The advantage of such a mailing  is that the emails which will be sent through it'll find yourself within the mailbox that's meant for such messages. Causing messages using Feedback forms is not blocked by mail systems, which suggests it is sure to reach the client. You may be able to send your offer to potential customers who were previously untouchable thanks to spam filters. \r\nWe offer you to check our service without charge. We'll send up to 50,000 message for you. \r\nThe cost of sending one million messages is us $ 49. \r\n \r\nThis offer is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.	0	\N	\N
44	Karthick	karthick@getnada.com	1234567890	Only for Internal QA Testing	0	\N	\N
45	postingvqoe	pydinakatalja1990@rambler.ru	1234567890	Good whatever time of day it is where you are! \r\n \r\n \r\nLarge-scale online ads for organic growth of factors influencing consumer behaviour. \r\nhttps://xn----ftbeand5abdikisgee.xn--p1ai/home/ \r\n \r\nBehavioural factors are certain actions of users on the online resource, such as: \r\nlogging in to the internet resource, viewing pages, time spent on the online resource, “clicks” on links, returns to the online resource. \r\n \r\nUTO: \r\nWidespread placement of your ads on the Internet in order to attract potential customers. \r\nGrowth of factors influencing consumer behaviour occurs by the widespread placement of your ads without specifying the address of your web page, but with the indication of other features identifying only your company according to which you directly become №1 in the search engine results. These features can include a phone number, a unique name of the company or website, an identifier (a number, a product code, services, promotions), a physical address of the company and etc. \r\n \r\nAIM: \r\nThe widespread attraction of customers to your website, products and services. \r\nGrowth of factors influencing consumer behaviour. \r\n \r\nBENEFIT: \r\nAn increase in online resource visitors who will find your online resource directly from ads using search as well as through additional results of search engines themselves related to a large range of search engine queries on your topic. \r\n \r\nTHE MAIN ADVANTAGES OF THIS AD: \r\n1. Scale. \r\n2. Quick placement. \r\n3. Cost. \r\n4. Placement by subject. \r\n5. The widest reach. \r\n6. Targeting. \r\n7. Organic growth of behavioural factors. \r\n \r\nREASONS TO ORDER WIDESPREAD ADS PLACEMENT ON THE WEB ДЛЯ GROWTH OF FACTORS INFLUENCING CONSUMER BEHAVIOUR: \r\n \r\n1.Widespread attraction of customers to your products and services through direct access from ads. \r\n2.Organic promotion of your internet resource, due to search engine beginning to additionally show it for a large range of search engine queries based on your topic. \r\n3. The absence of "filters" and "bans" of search, due to ads being published without an indication of an live link to the web page. \r\n4. An increase in website traffic, which leads to an increase in orders and an expansion of the customer base. \r\n5. "Warm traffic", since only interested visitors visit the web page. \r\n6. Attraction of legal entities and individuals. \r\n7. Analysis of demand for services and goods. \r\n8.Publication of your ads in different countries all over the world. \r\n \r\nWHERE ADS ARE PLACED: \r\n \r\nAds are placed: on billboards, on forums, in guest books, in comments, in catalogues. \r\nAds are placed on your: landing pages, YouTube videos, phones, websites, social media accounts, and on links to your other ads. \r\n \r\nSEARCH ENGINE SANCTIONS: \r\nIn this ad a ban by search engine is not possible, since ads are published without specifying an link to the website. \r\n \r\nWorking method: \r\nYou send us the text of the ad, where your identifier or unique name is indicated at the end of the message, according to which an engaged user can quickly find your web page in search results in order to get further information about your service. \r\nTo do this, identifier or a unique name must be published in the appropriate section of your website и easily be found in search. \r\n \r\n \r\nMacros: \r\nRandomisation of ads is done according to the formula, which is commonly accepted by many programs. As a result of randomisation, many unique ads are obtained from a single ad variant. \r\n \r\nThis is achieved by manually synomising the ad text, while the meaning of the messages does not change and remains understandable. \r\n[url=https://xn----ftbeand5abdikisgee.xn--p1ai/home/] \r\n \r\nLarge-scale placement of ads on the Internet for growth of factors influencing consumer behaviour.[/url]	0	\N	\N
46	ThomasWrels	hrhmbambi@gmail.com	87738668828	Dear Director, \r\nWe are interested in your products. If your company can handle a bulk supply of your products to Cameroon, please contact us. \r\nPlease forward copy of your reply to hrhbahmbi3@oepd.org    Regards HRM Bah Mbi	0	\N	\N
47	Gabriel Angelo	gafinanc.ier@gmail.com	81942933152	Dear Entrepreneur, \r\n \r\nI'm Gabriel Angelo, My company can bridge funds for your new or ongoing business. do let me know when you receive this message for further procedure. \r\n \r\nWe also pay 1% commission to brokers and friends who introduce project owners for finance or other opportunities. \r\n \r\nYou can reach me directly using this email address: gabriel_angelo@nestalconsultants.com \r\n \r\nRegards, \r\nGabriel Angelo	0	\N	\N
48	Mike Daniels	lawerencemartineau7162@gmail.com	84689813177	Hi \r\n \r\nI have just checked  10bucksonly.co.za for the ranking keywords and saw that your website could use a push. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\nregards \r\nMike Daniels\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
49	Mike Richards	no-replyItelcoth@gmail.com	89968647152	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your 10bucksonly.co.za website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and rip the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Richards\r\n \r\nsupport@monkeydigital.co	0	\N	\N
50	Mike Chapman	no-replyItelcoth@gmail.com	81411245739	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Chapman\r\n \r\nsupport@digital-x-press.com	0	\N	\N
51	Mike Carey	no-replyItelcoth@gmail.com	82952381697	Greetings \r\n \r\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our services below, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Carey\r\n \r\nSpeed SEO Digital Agency	0	\N	\N
362	Henrysmamy	gsi@mail-online.dk	89034796361	Launch the robot and let it bring you money. https://smamy.blueliners07.de/smamy	0	\N	\N
52	Mike Sherlock	no-replyItelcoth@gmail.com	84158776633	Howdy \r\n \r\nI have just analyzed  10bucksonly.co.za for the ranking keywords and saw that your website could use a push. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\nregards \r\nMike Sherlock\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
53	Mike Donovan	no-replyItelcoth@gmail.com	89646876295	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Donovan\r\n \r\nsupport@digital-x-press.com	0	\N	\N
54	Mike Page	no-replyItelcoth@gmail.com	83533836164	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your 10bucksonly.co.za website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nNEW: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nthank you \r\nMike Page\r\n \r\nsupport@monkeydigital.co	0	\N	\N
55	JamesPries	no-replyBoinny@gmail.com	82826148972	Hello!  10bucksonly.co.za \r\n \r\nDo you know the easiest way to point out your merchandise or services? Sending messages through contact forms will enable you to simply enter the markets of any country (full geographical coverage for all countries of the world).  The advantage of such a mailing  is that the emails that may be sent through it'll find yourself within the mailbox that's intended for such messages. Causing messages using Feedback forms is not blocked by mail systems, which suggests it is guaranteed to reach the recipient. You may be able to send your provide to potential customers who were previously unobtainable due to email filters. \r\nWe offer you to test our service without charge. We are going to send up to fifty thousand message for you. \r\nThe cost of sending one million messages is us $ 49. \r\n \r\nThis letter is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.	0	\N	\N
56	Carlos Sano	sanocarlos96@gmail.com	82774869234	Dear Business Owner \r\nI’m Carlos Sano \r\nI’m a business owner & Bitcoin enthusiast. \r\nI live in N. Y. city with my family. This is my \r\nFacebook: https://www.facebook.com/sano.bitcoin/ \r\nI am not a salesperson, I’m a problem solver. \r\nThe problem I seek to solve is double: \r\n1- The lack of cash flow caused by the Covid-19 \r\nrestrictions, and \r\n2- The broken financial system that we were born \r\ninto. \r\nBoth problems can be solved with what I want to share \r\nwith you today. \r\nYou see, now we have 2 financial systems on the planet: \r\n1- The legacy Financial System (inflationary) \r\n2- The Bitcoin & Blockchain Financial System (Deflationary) \r\nDid you hear that El Salvador adopted Bitcoin as legal tender? \r\nNext in line are: Panama, Brazil, Paraguay, Mexico, Argentina. \r\nI’m contacting you because I’m part of a blockchain Alliance \r\nwhere we can learn about bitcoin and blockchain and also get \r\ndaily crypto rewards that we can exchange for any crypto. \r\nI’d like to invite you to a Zoom presentation where you’ll \r\nbe able see with your own eyes how you can earn daily rewards \r\nand turn them into dollars. \r\nFor connecting with me you can call me or text me \r\nCarlos Sano \r\n917 six50 792five \r\nNew York City	0	\N	\N
57	Mike Dean	no-replyItelcoth@gmail.com	81375422838	Hi there \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our services below, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Dean\r\n \r\nSpeed SEO Digital Agency	0	\N	\N
58	Mike Attwood	no-replyItelcoth@gmail.com	85729867334	Hi there \r\n \r\nI have just verified your SEO on  10bucksonly.co.za for  the current search visibility and saw that your website could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\nregards \r\nMike Attwood\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
59	Miguel Angel	carlosalfredo0805@gmail.com	88338441142	Hello: \r\nI am the founder of Miguel Angel Foundation and 2021 American power-ball winner. We wish to donate our bitcoin wallet containing 90.844 bitcoin, so that you can use it to develop yourself and your community. \r\ncontact: miguelangelfoundation@gmail.com	0	\N	\N
60	Chau Cheung	noreply@googlemail.com	84659835472	Hello, \r\nI am contacting you regarding a transaction of mutual benefit, I am an attorney who managed a client's account that passed away many years ago, he passed away without any known relative. \r\nWe can work together mutually to process and receive the funds, let me know if you wish to know more about my proposal and I shall provide you with more information. \r\n \r\nRegards, \r\nMr Chau Shiu Cheung \r\nchaushuicheung@hongkongsolicitors.org	0	\N	\N
61	Mike Green	no-replyItelcoth@gmail.com	89875899849	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Green\r\n \r\nsupport@digital-x-press.com	0	\N	\N
62	Mike Erickson	no-replyItelcoth@gmail.com	88838159883	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.strictlydigital.net/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Erickson	0	\N	\N
63	Charlesgaurf	georgiyfrolov1999364yfi+ra@bk.ru	87487281874	10bucksonly.co.za gbuihswdiwyfuwhdiwfbujdaodhwifwjdaqidhwufwudjqvbcnxsiwdui	0	\N	\N
64	Mike Goldman	no-replyItelcoth@gmail.com	89774675115	Howdy \r\n \r\nWe will enhance your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our pricelist here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Goldman\r\n \r\nSpeed SEO Digital Agency	0	\N	\N
363	Henrysmamy	gsi@mail-online.dk	89036455371	Launch the robot and let it bring you money. https://smamy.blueliners07.de/smamy	0	\N	\N
65	WilliamElesk	sandrine.queme@laposte.net	85651172637	Want to copy his results? Check out his course here >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&91=04&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
66	WilliamElesk	sandrine.queme@laposte.net	82422564946	Want to copy his results? Check out his course here >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&91=04&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
67	WilliamElesk	sandrine.queme@laposte.net	87152854932	Want to copy his results? Check out his course here >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&91=04&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
68	WilliamElesk	sandrine.queme@laposte.net	84435536458	Want to copy his results? Check out his course here >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&91=04&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
69	WilliamElesk	sandrine.queme@laposte.net	81764837998	Want to copy his results? Check out his course here >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8qvzi&sa=D&91=04&usg=AFQjCNH2QAwQV6sbS1u0SgHiVXKZSKhcKQ <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
70	Mike Wallace	no-replyItelcoth@gmail.com	88737931293	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.strictlydigital.net/product/ahrefs-dr60/ \r\n \r\nThank you \r\nMike Wallace	0	\N	\N
71	WilliamElesk	andrew_silva_lol@yahoo.com	86157287331	Change your life and get passive income more $ 7886 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&73=85&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
72	WilliamElesk	andrew_silva_lol@yahoo.com	83617355566	Change your life and get passive income more $ 7886 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&73=85&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
73	WilliamElesk	andrew_silva_lol@yahoo.com	83861541361	Change your life and get passive income more $ 7886 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&73=85&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
74	WilliamElesk	andrew_silva_lol@yahoo.com	83656283222	Change your life and get passive income more $ 7886 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&73=85&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
75	WilliamElesk	andrew_silva_lol@yahoo.com	83973576852	Change your life and get passive income more $ 7886 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&73=85&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
76	WilliamElesk	dpxslammin@yahoo.com	87452921214	Fast income from one investment more $ 7569 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&15=02&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
77	WilliamElesk	dpxslammin@yahoo.com	87943796464	Fast income from one investment more $ 7569 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&15=02&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
78	WilliamElesk	dpxslammin@yahoo.com	87655625775	Fast income from one investment more $ 7569 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&15=02&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
79	WilliamElesk	dpxslammin@yahoo.com	88672511494	Fast income from one investment more $ 7569 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&15=02&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
80	WilliamElesk	dpxslammin@yahoo.com	89638724562	Fast income from one investment more $ 7569 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8ED7K&sa=D&15=02&usg=AFQjCNEY3K5BsQ-mUq_FMcp6hGUAytb7Og <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
81	Richard Andersen	donotreply.betrave@gmail.com	84551568597	Dear, \r\nDo you know that you could also achieve an additional profit of more than 10% in just a few days trading on stock markets worldwide with minimum risk? \r\nWould you like to start trading or investing in the stock market more easily and quickly, with more confidence, effectiveness & efficiency? ONLINE? \r\n> TRY IT RIGHT NOW FOR FREE \r\nYou can start by opening a 100% free account, with a small amount like 1 USD for trial. To get started, please register here with our 100% accredited worldclass broker  CAPITAL, then we will guide you forward. \r\nLink for free registration RIGHT NOW: https://capital.com/?c=37799_3743058&pid=cellxpert \r\nHow to trade?: You just purchase an asset at a lower cost, then you resell it after a few moments (few hours or few days) at a higher cost; then you gain from the price increase. \r\n \r\nOn behalf of BETRAVE Team Worldwide: For more infos please  contact us by email contact@betrave.org or whatsapp +237620171905 or visit: http://www.betrave.org/	0	\N	\N
82	RolandoGot	reports@bestservicesdurban.co.za	82333678534	Hi \r\n \r\nJohn here, \r\n \r\nReaching out to you because we believe we can help you get more customers for your business. \r\n2022 is around the corner and the world is going digital, don't be left behind whilst your competition thrives. \r\nTake advantage of our discounted digital marketing deals below: \r\n \r\nWebsite creation (including hosting): R900  - [ Normal market price R3000, save R2100 ] \r\nSocial Media Marketing:               R600  - [ Normal market price R4400, save R3800 ] \r\nReview Management:                    R200  - [ Normal market price R1200, save R1000 ] \r\nSEO (Ranking you #1 on Google):       R1450 - [ Normal market price R4000, save R2550 ] \r\n \r\nThe above nationwide deals are available from 06 December 2021 - 24 December 2021. \r\nPrices will increase after this period but if you order through us within this period, we will NEVER increase your price. \r\n \r\nContact us today: \r\n \r\nPhone: (+27)677954663 \r\nWhatsapp: (+27)659878210 \r\nEmail: support@bestservicesdurban.co.za \r\nInstagram: bestservicesdurban	0	\N	\N
83	Mike Cook	no-replyItelcoth@gmail.com	86453225935	Howdy \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our pricelist here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Cook\r\n \r\nSpeed SEO Digital Agency	0	\N	\N
364	Henrysmamy	andreasbl@forum.dk	89032246868	Make thousands of bucks. Financial robot will help you to do it! https://smamy.blueliners07.de/smamy	0	\N	\N
84	WilliamElesk	florian.turbon@web.de	83125321214	Stabiles Einkommen von 135000 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nihawiwa.com%2F0bnl&sa=D&17=13&usg=AFQjCNEUPijOi1LFtA_rg0rU0qfVGTKd6A <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
85	WilliamElesk	florian.turbon@web.de	88162628586	Stabiles Einkommen von 135000 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nihawiwa.com%2F0bnl&sa=D&17=13&usg=AFQjCNEUPijOi1LFtA_rg0rU0qfVGTKd6A <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
86	WilliamElesk	florian.turbon@web.de	81256236579	Stabiles Einkommen von 135000 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nihawiwa.com%2F0bnl&sa=D&17=13&usg=AFQjCNEUPijOi1LFtA_rg0rU0qfVGTKd6A <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
87	WilliamElesk	florian.turbon@web.de	83456198518	Stabiles Einkommen von 135000 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nihawiwa.com%2F0bnl&sa=D&17=13&usg=AFQjCNEUPijOi1LFtA_rg0rU0qfVGTKd6A <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
88	WilliamElesk	florian.turbon@web.de	88541839167	Stabiles Einkommen von 135000 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nihawiwa.com%2F0bnl&sa=D&17=13&usg=AFQjCNEUPijOi1LFtA_rg0rU0qfVGTKd6A <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
89	WilliamElesk	hparkinson@sympatico.ca	85789212248	Launch Artificial Intelligence with one button and earn from $ 8896 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&58=62&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
90	WilliamElesk	hparkinson@sympatico.ca	82191416429	Launch Artificial Intelligence with one button and earn from $ 8896 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&58=62&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
91	WilliamElesk	hparkinson@sympatico.ca	85247737419	Launch Artificial Intelligence with one button and earn from $ 8896 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&58=62&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
92	WilliamElesk	hparkinson@sympatico.ca	89112492973	Launch Artificial Intelligence with one button and earn from $ 8896 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&58=62&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
93	WilliamElesk	hparkinson@sympatico.ca	84387256474	Launch Artificial Intelligence with one button and earn from $ 8896 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&58=62&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
94	WilliamElesk	shitfaced@zombie.se	81389697622	Passive income from $ 7779 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&53=51&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
95	WilliamElesk	shitfaced@zombie.se	86116191632	Passive income from $ 7779 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&53=51&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
96	WilliamElesk	shitfaced@zombie.se	86294358338	Passive income from $ 7779 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&53=51&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
97	WilliamElesk	shitfaced@zombie.se	88997848727	Passive income from $ 7779 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&53=51&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
98	WilliamElesk	shitfaced@zombie.se	88886879692	Passive income from $ 7779 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&53=51&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
99	WilliamElesk	goodwin@swipnet.se	89142698648	Change your life and get passive income more $ 6799 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&28=59&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
100	WilliamElesk	goodwin@swipnet.se	81687795274	Change your life and get passive income more $ 6799 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&28=59&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
101	WilliamElesk	goodwin@swipnet.se	86671686472	Change your life and get passive income more $ 6799 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&28=59&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
102	WilliamElesk	goodwin@swipnet.se	88312422117	Change your life and get passive income more $ 6799 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&28=59&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
103	WilliamElesk	goodwin@swipnet.se	85926789165	Change your life and get passive income more $ 6799 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&28=59&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
104	WilliamElesk	elin.thomsen1@comhem.se	84884228653	Make Artificial Intelligence bring you more $ 8989 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&13=15&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
105	WilliamElesk	elin.thomsen1@comhem.se	88655964398	Make Artificial Intelligence bring you more $ 8989 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&13=15&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
106	WilliamElesk	elin.thomsen1@comhem.se	89284333818	Make Artificial Intelligence bring you more $ 8989 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&13=15&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
107	WilliamElesk	elin.thomsen1@comhem.se	88287916895	Make Artificial Intelligence bring you more $ 8989 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&13=15&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
108	WilliamElesk	elin.thomsen1@comhem.se	82758571472	Make Artificial Intelligence bring you more $ 8989 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc8Prmu&sa=D&13=15&usg=AFQjCNH_EGwAiiB8MpWHxZlE1C27oj3Rvw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
109	WilliamElesk	hej@mattiasgustafsson.se	88773221597	REGISTER NOW and get from $ 7698 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgestyy.com%2Fep9CR9&sa=D&25=50&usg=AFQjCNHxHb5q4cvsPaKvJfESagxfB_AFOw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
587	Crytosmamysmamy	glennwegner@yahoo.com	89035144124	Attention! Here you can earn money online! https://clisa.escueladelcambio.es/	0	\N	\N
110	WilliamElesk	hej@mattiasgustafsson.se	82311371311	REGISTER NOW and get from $ 7698 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgestyy.com%2Fep9CR9&sa=D&25=50&usg=AFQjCNHxHb5q4cvsPaKvJfESagxfB_AFOw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
111	WilliamElesk	hej@mattiasgustafsson.se	89116524929	REGISTER NOW and get from $ 7698 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgestyy.com%2Fep9CR9&sa=D&25=50&usg=AFQjCNHxHb5q4cvsPaKvJfESagxfB_AFOw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
112	WilliamElesk	hej@mattiasgustafsson.se	83454581434	REGISTER NOW and get from $ 7698 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgestyy.com%2Fep9CR9&sa=D&25=50&usg=AFQjCNHxHb5q4cvsPaKvJfESagxfB_AFOw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
113	WilliamElesk	hej@mattiasgustafsson.se	84998473288	REGISTER NOW and get from $ 7698 per day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgestyy.com%2Fep9CR9&sa=D&25=50&usg=AFQjCNHxHb5q4cvsPaKvJfESagxfB_AFOw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
114	WilliamElesk	gustav.soderholm@hotmail.se	88872947412	Register, press one button and get passive income more $ 7577 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&52=01&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
115	WilliamElesk	gustav.soderholm@hotmail.se	88756348476	Register, press one button and get passive income more $ 7577 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&52=01&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
116	WilliamElesk	gustav.soderholm@hotmail.se	82399426751	Register, press one button and get passive income more $ 7577 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&52=01&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
117	WilliamElesk	gustav.soderholm@hotmail.se	86581732577	Register, press one button and get passive income more $ 7577 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&52=01&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
118	WilliamElesk	gustav.soderholm@hotmail.se	85662249888	Register, press one button and get passive income more $ 7577 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&52=01&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
119	Mike Salisburry	no-replyItelcoth@gmail.com	85815413112	Greetings \r\n \r\nI have just took a look on your SEO for  10bucksonly.co.za for its SEO Trend and saw that your website could use an upgrade. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Salisburry\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
120	WilliamElesk	unnoormaal@web.de	82492844212	Passive income on the rise and fall of bitcoin from $ 6687 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&69=60&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
121	WilliamElesk	unnoormaal@web.de	85759655734	Passive income on the rise and fall of bitcoin from $ 6687 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&69=60&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
122	WilliamElesk	unnoormaal@web.de	82444152631	Passive income on the rise and fall of bitcoin from $ 6687 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&69=60&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
123	WilliamElesk	unnoormaal@web.de	82614933555	Passive income on the rise and fall of bitcoin from $ 6687 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&69=60&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
124	WilliamElesk	unnoormaal@web.de	82468629674	Passive income on the rise and fall of bitcoin from $ 6687 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&69=60&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
125	Janine Wray	notifications@directaxis.services	85671183374	Businesses or Individuals interested in applying for a loan with Directaxis Financial Services or who simply require more information. TO APPLY, simply SEND AN EMAIL with your ID Number, Full Names, Occupation, Monthly Income and Contact details to forms@directaxis.services and request Loan Application Form	0	\N	\N
126	WilliamElesk	steffdn-1982@web.de	85418983368	Bitcoin Miiliarder told how he makes money from $ 7585 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&91=55&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
127	WilliamElesk	steffdn-1982@web.de	84645697612	Bitcoin Miiliarder told how he makes money from $ 7585 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&91=55&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
128	WilliamElesk	steffdn-1982@web.de	89473424674	Bitcoin Miiliarder told how he makes money from $ 7585 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&91=55&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
129	WilliamElesk	steffdn-1982@web.de	89546642796	Bitcoin Miiliarder told how he makes money from $ 7585 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&91=55&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
130	WilliamElesk	steffdn-1982@web.de	88238145967	Bitcoin Miiliarder told how he makes money from $ 7585 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&91=55&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
131	WilliamElesk	lucia.radicchi@bearzi.it	81342678935	Change your life and get passive income from $ 5886 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&92=34&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
132	WilliamElesk	lucia.radicchi@bearzi.it	88533415596	Change your life and get passive income from $ 5886 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&92=34&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
365	Henrysmamy	andreasbl@forum.dk	89039382329	Make thousands of bucks. Financial robot will help you to do it! https://smamy.blueliners07.de/smamy	0	\N	\N
133	WilliamElesk	lucia.radicchi@bearzi.it	83695693427	Change your life and get passive income from $ 5886 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&92=34&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
134	WilliamElesk	lucia.radicchi@bearzi.it	89259272534	Change your life and get passive income from $ 5886 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&92=34&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
135	WilliamElesk	lucia.radicchi@bearzi.it	87573967549	Change your life and get passive income from $ 5886 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&92=34&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
136	WilliamElesk	marco.dibaldo@email.it	87421576737	Confessions of a Bitcoin billionaire or passive income from $ 6698 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&97=62&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
137	WilliamElesk	marco.dibaldo@email.it	81337833275	Confessions of a Bitcoin billionaire or passive income from $ 6698 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&97=62&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
138	WilliamElesk	marco.dibaldo@email.it	86246842742	Confessions of a Bitcoin billionaire or passive income from $ 6698 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&97=62&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
139	WilliamElesk	marco.dibaldo@email.it	81287147578	Confessions of a Bitcoin billionaire or passive income from $ 6698 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&97=62&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
140	WilliamElesk	marco.dibaldo@email.it	88367914419	Confessions of a Bitcoin billionaire or passive income from $ 6698 in a day >>>>>>>>>>>>>>>>>>>>>>>>>>> http://www.google.com/url?q=http%3A%2F%2Fgo.nirulugo.com%2F0bnl&sa=D&97=62&usg=AFQjCNErknOO8eaNhDQCQiKaUi6wsp9KfA <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
141	Lena Williams	no-replyBoinny@gmail.com	83265739383	Hello!  10bucksonly.co.za \r\n \r\nWe present \r\n \r\nSending your business proposition through the Contact us form which can be found on the sites in the Communication section. Feedback forms are filled in by our software and the captcha is solved. The superiority of this method is that messages sent through feedback forms are whitelisted. This method improve the chances that your message will be read. \r\n \r\nOur database contains more than 27 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing Up to 50,000 messages. \r\n \r\n \r\nThis message is created automatically.  Use our contacts for communication. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.	0	\N	\N
142	WilliamElesk	christine_volkert@yahoo.de	87165655866	Deine Freunde verdienen bereits von 18900 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=33&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
143	WilliamElesk	christine_volkert@yahoo.de	81723918811	Deine Freunde verdienen bereits von 18900 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=33&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
144	WilliamElesk	christine_volkert@yahoo.de	82646196655	Deine Freunde verdienen bereits von 18900 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=33&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
145	WilliamElesk	christine_volkert@yahoo.de	82736868529	Deine Freunde verdienen bereits von 18900 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=33&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
146	WilliamElesk	christine_volkert@yahoo.de	87379663974	Deine Freunde verdienen bereits von 18900 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=33&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
147	JAMES COOK	james_cook78@yahoo.com	82799885959	Dear sir/ma \r\nWe are a finance and investment company offering loans at 3% interest rate. We will be happy to make a loan available to your organisation for your project. Our terms and conditions will apply. Our term sheet/loan agreement will be sent to you for review, when we hear from you. Please reply to this email ONLY cookj5939@gmail.com \r\n \r\nRegards. \r\nJames Cook \r\nChairman & CEO Euro Finance & Commercial Ltd	0	\N	\N
148	Mike Fane	no-replyItelcoth@gmail.com	87235766713	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Fane\r\n \r\nsupport@digital-x-press.com	0	\N	\N
149	RolandWhofe	jonny19741@live.co.uk	84435589238	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once "%?% \r\nFurther, you will receive from $ 1500 per week %&(% \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&77=54&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register №^)& \r\nLimited offer :$;& \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&26=38&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
150	RolandWhofe	jonny19741@live.co.uk	88128534949	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once "%?% \r\nFurther, you will receive from $ 1500 per week %&(% \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&77=54&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register №^)& \r\nLimited offer :$;& \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&26=38&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
366	Henrysmamy	andreasbl@forum.dk	89034683733	Make thousands of bucks. Financial robot will help you to do it! https://smamy.blueliners07.de/smamy	0	\N	\N
371	Henrysmamy	gerasin79@mailme.dk	89034934990	Most successful people already use Robot. Do you? https://smamy.blueliners07.de/smamy	0	\N	\N
151	RolandWhofe	jonny19741@live.co.uk	82247334239	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once "%?% \r\nFurther, you will receive from $ 1500 per week %&(% \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&77=54&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register №^)& \r\nLimited offer :$;& \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&26=38&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
152	RolandWhofe	jonny19741@live.co.uk	84317146225	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once "%?% \r\nFurther, you will receive from $ 1500 per week %&(% \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&77=54&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register №^)& \r\nLimited offer :$;& \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&26=38&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
153	RolandWhofe	jonny19741@live.co.uk	89985781932	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once "%?% \r\nFurther, you will receive from $ 1500 per week %&(% \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&77=54&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register №^)& \r\nLimited offer :$;& \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&26=38&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
154	RolandWhofe	Louise.Jones1@newcastle.ac.uk	86333657276	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once ?$;^ \r\nFurther, you will receive from $ 1500 per week ?$;_ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=39&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register ?+($ \r\nLimited offer ;^(@ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&61=52&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
155	RolandWhofe	Louise.Jones1@newcastle.ac.uk	86732786563	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once ?$;^ \r\nFurther, you will receive from $ 1500 per week ?$;_ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=39&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register ?+($ \r\nLimited offer ;^(@ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&61=52&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
156	RolandWhofe	Louise.Jones1@newcastle.ac.uk	87466361412	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once ?$;^ \r\nFurther, you will receive from $ 1500 per week ?$;_ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=39&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register ?+($ \r\nLimited offer ;^(@ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&61=52&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
157	RolandWhofe	Louise.Jones1@newcastle.ac.uk	81466526857	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once ?$;^ \r\nFurther, you will receive from $ 1500 per week ?$;_ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=39&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register ?+($ \r\nLimited offer ;^(@ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&61=52&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
158	RolandWhofe	Louise.Jones1@newcastle.ac.uk	89329698794	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once ?$;^ \r\nFurther, you will receive from $ 1500 per week ?$;_ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&44=39&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register ?+($ \r\nLimited offer ;^(@ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&61=52&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
159	RolandWhofe	markb@nofear.fsworld.co.uk	87719187662	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once (-?= \r\nFurther, you will receive from $ 1500 per week №&"^ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&84=53&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register (+%^ \r\nLimited offer (-%* \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&50=56&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
160	RolandWhofe	markb@nofear.fsworld.co.uk	87616752491	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once (-?= \r\nFurther, you will receive from $ 1500 per week №&"^ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&84=53&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register (+%^ \r\nLimited offer (-%* \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&50=56&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
588	Crytosmamysmamy	prahlad.giri@in.abnamro.com	89039117415	This robot can bring you money 24/7. https://clisa.escueladelcambio.es/	0	\N	\N
161	RolandWhofe	markb@nofear.fsworld.co.uk	81151471561	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once (-?= \r\nFurther, you will receive from $ 1500 per week №&"^ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&84=53&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register (+%^ \r\nLimited offer (-%* \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&50=56&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
162	RolandWhofe	markb@nofear.fsworld.co.uk	88256634343	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once (-?= \r\nFurther, you will receive from $ 1500 per week №&"^ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&84=53&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register (+%^ \r\nLimited offer (-%* \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&50=56&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
163	RolandWhofe	markb@nofear.fsworld.co.uk	81162663354	Hello. \r\nIf you are interested in this type of earnings, then you should know that investments of $ 500 are needed here once (-?= \r\nFurther, you will receive from $ 1500 per week №&"^ \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&84=53&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<< \r\nThe essence of earning is to generate income from trading cryptocurrencies in an automatic mode, even if all markets collapse, you will be guaranteed to receive your money from $ 1500 per week. \r\nManage to take your place in the sun and register (+%^ \r\nLimited offer (-%* \r\n>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fc9jD1p&sa=D&50=56&usg=AFQjCNE5-l7dYtpQNDLSz9x2TTehrGGJ2w <<<<<	0	\N	\N
164	Lucas Persson	linkedbusiness65@gmail.com	81849981456	We are glad to introduce you to LinkusBiz LLC. Our services support and grow Businesses. We're the  Business Lead Generation Company. Across continents, we link Interest that makes Businesses go Borderless, Pandemic free and  always active. \r\n \r\nWe merge Corporate  leads for Business Partnerships and Trade development. Increase your Business revenue and contacts in 2022 through our network. \r\n \r\nLet's onboard your Business into a Global network by signing up for any of our services at http://www.linkusbiz.com/ Follow us on Instagram @linkusbiz \r\n \r\nThe Network Team, \r\nLinkusbiz LLC.	0	\N	\N
165	Mike Bradberry	no-replyItelcoth@gmail.com	81541978141	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nApply this -35% code ( MEGAPROMOTER ) while getting your 10bucksonly.co.za to have a DA above 60 points in Moz with us today and reap the benefits of such a great feat at an affordable rate. \r\n \r\n \r\n \r\nSee our offers here: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\nhttps://www.strictlydigital.net/product/moz-da60-seo-plan/ \r\n \r\nNEW: ahrefs DR70 is now possible: \r\nhttps://www.strictlydigital.net/product/ahrefs-seo-plan/ \r\n \r\n \r\nThank you \r\nMike Bradberry\r\n \r\nmike@strictlydigital.net	0	\N	\N
166	Elias Wilson	perismogarn471@gmail.com	82787445972	Hello, We produce and offer covid 19 vaccine cards to those who need results but are not willing to take the vaccines. With our services,  you can do the following: \r\n- travel \r\n- work \r\nOur services are: \r\n- registered \r\n- checked and  Verified in all System online and we also provide a legit QR code. Get your cards now and keep your DNA unchanged. Contact us for more information WhatsApp Only +1 (260) 209-4973 Or Email address at doctormichael937@gmail.com.	0	\N	\N
167	Kevin Johnson	tbformleads@gmail.com	81841882229	Hello \r\n \r\nMy main objective here, is to help increase revenue for you by producing an animated video that will generate leads and sales for your business 24/7, for just $97. \r\n \r\nBut this offer is only good this week, so get your video before the deadline. \r\n \r\nWatch Our Video Now! https://bit.ly/Xpress97offer \r\n \r\nFor less than you spend on coffee each month you get an American Owned Video company that can write your script, create your story board, lay-in a good soundtrack and produce an awesome video that brings home the bacon. \r\n \r\nAgain, this $97 promotion is for this week only. Don’t miss out!!! \r\n \r\nI’m in, show me what you got. https://bit.ly/Xpress97offer \r\n \r\nBest, \r\n \r\nKevin Johnson \r\nBusiness Development Manager	0	\N	\N
168	Mike Wesley	no-replyItelcoth@gmail.com	81816468182	Howdy \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our pricelist here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Wesley\r\n \r\nSpeed SEO Digital Agency	0	\N	\N
169	Mike Berrington	no-replyItelcoth@gmail.com	86853445825	Hello \r\n \r\nI have just analyzed  10bucksonly.co.za for its SEO Trend and saw that your website could use a push. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Berrington\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
170	EugeneJuivy	blind_dog_kicking@yahoo.de	83638931231	In the last 15 days, I made $3,500,000 from the fall of Bitcoin by investing just $550 once ?*%( \r\nNow it has begun to rise in price a little and now I am making money on the rise of Bitcoin ?*)) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&79=10&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ \r\nThe best thing is that I do almost nothing and the money goes is passive income ()"% \r\nIf you want to work like me, then register, invest once from $500, press a couple of buttons and get passive income as well as enjoy life :) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&05=31&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ	0	\N	\N
171	EugeneJuivy	blind_dog_kicking@yahoo.de	87586462195	In the last 15 days, I made $3,500,000 from the fall of Bitcoin by investing just $550 once ?*%( \r\nNow it has begun to rise in price a little and now I am making money on the rise of Bitcoin ?*)) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&79=10&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ \r\nThe best thing is that I do almost nothing and the money goes is passive income ()"% \r\nIf you want to work like me, then register, invest once from $500, press a couple of buttons and get passive income as well as enjoy life :) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&05=31&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ	0	\N	\N
367	Henrysmamy	andreasbl@forum.dk	89034426397	Make thousands of bucks. Financial robot will help you to do it! https://smamy.blueliners07.de/smamy	0	\N	\N
172	EugeneJuivy	blind_dog_kicking@yahoo.de	83669651136	In the last 15 days, I made $3,500,000 from the fall of Bitcoin by investing just $550 once ?*%( \r\nNow it has begun to rise in price a little and now I am making money on the rise of Bitcoin ?*)) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&79=10&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ \r\nThe best thing is that I do almost nothing and the money goes is passive income ()"% \r\nIf you want to work like me, then register, invest once from $500, press a couple of buttons and get passive income as well as enjoy life :) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&05=31&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ	0	\N	\N
173	EugeneJuivy	blind_dog_kicking@yahoo.de	82812657556	In the last 15 days, I made $3,500,000 from the fall of Bitcoin by investing just $550 once ?*%( \r\nNow it has begun to rise in price a little and now I am making money on the rise of Bitcoin ?*)) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&79=10&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ \r\nThe best thing is that I do almost nothing and the money goes is passive income ()"% \r\nIf you want to work like me, then register, invest once from $500, press a couple of buttons and get passive income as well as enjoy life :) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&05=31&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ	0	\N	\N
174	EugeneJuivy	blind_dog_kicking@yahoo.de	86134466749	In the last 15 days, I made $3,500,000 from the fall of Bitcoin by investing just $550 once ?*%( \r\nNow it has begun to rise in price a little and now I am making money on the rise of Bitcoin ?*)) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&79=10&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ \r\nThe best thing is that I do almost nothing and the money goes is passive income ()"% \r\nIf you want to work like me, then register, invest once from $500, press a couple of buttons and get passive income as well as enjoy life :) \r\nhttp://www.google.com/url?q=http%3A%2F%2Fgo.rareerad.com%2F0bnl&sa=D&05=31&usg=AFQjCNHocQZNt5Hwt8vVZiybUqVvDGzMBQ	0	\N	\N
175	Mike Stevenson	no-replyItelcoth@gmail.com	86529524676	Negative SEO attack Services. Deindex bad competitors from Google. It works with any Website, video, blog, product or service. \r\nhttps://www.seo-treff.de/product/derank-seo-service/	0	\N	\N
176	WilliamElesk	Norbert-Girke@t-online.de	89472586936	Anfangen zu verdienen von 12300 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&33=25&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
177	WilliamElesk	Norbert-Girke@t-online.de	89488569825	Anfangen zu verdienen von 12300 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&33=25&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
178	WilliamElesk	Norbert-Girke@t-online.de	89919945891	Anfangen zu verdienen von 12300 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&33=25&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
179	WilliamElesk	Norbert-Girke@t-online.de	82121422218	Anfangen zu verdienen von 12300 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&33=25&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
180	WilliamElesk	Norbert-Girke@t-online.de	85774232653	Anfangen zu verdienen von 12300 EUR in der Woche >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&33=25&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
181	WilliamElesk	rhyminallthetime@yahoo.de	83699252252	Deine Kollegen verdienen schon Vor 13600 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&19=96&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
182	WilliamElesk	rhyminallthetime@yahoo.de	84436399252	Deine Kollegen verdienen schon Vor 13600 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&19=96&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
183	WilliamElesk	rhyminallthetime@yahoo.de	88772877969	Deine Kollegen verdienen schon Vor 13600 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&19=96&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
184	WilliamElesk	rhyminallthetime@yahoo.de	88743123774	Deine Kollegen verdienen schon Vor 13600 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&19=96&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
185	WilliamElesk	rhyminallthetime@yahoo.de	86239765266	Deine Kollegen verdienen schon Vor 13600 EUR pro Tag >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&19=96&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
186	WilliamElesk	alexmhellascentar@yahoo.de	84146592577	Commencer a gagner de 17500 EUR par jour >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&24=32&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
187	WilliamElesk	alexmhellascentar@yahoo.de	84495218683	Commencer a gagner de 17500 EUR par jour >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&24=32&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
188	WilliamElesk	alexmhellascentar@yahoo.de	84913857983	Commencer a gagner de 17500 EUR par jour >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&24=32&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
189	WilliamElesk	alexmhellascentar@yahoo.de	81677857749	Commencer a gagner de 17500 EUR par jour >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&24=32&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
190	WilliamElesk	alexmhellascentar@yahoo.de	84945612328	Commencer a gagner de 17500 EUR par jour >>>>>>>>>>>>>>>>>>>>>>>>>>> https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2Fcaa7WZ&sa=D&24=32&usg=AFQjCNHeDhPmQ6da3c_t6uxfxm4yAdThqw <<<<<<<<<<<<<<<<<<<<<<<<	0	\N	\N
191	Mike Adderiy	no-replyItelcoth@gmail.com	85142962924	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Adderiy\r\n \r\nsupport@digital-x-press.com	0	\N	\N
203	Mike Shackley	no-replyItelcoth@gmail.com	81334268253	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Shackley\r\n \r\nsupport@digital-x-press.com	0	\N	\N
192	Daniel	support@newlightdigital.com.hubspot-inbox.com	83181961959	Hi there, \r\n \r\nNow that the holidays are over, people are ready to find the best businesses online again. They’re searching for your services on Google, and engaging with your competitors on social media. \r\n \r\nLet’s talk about making it easy for them to find you with a special offer of a $400 monthly social media posting plan, or our monthly search engine optimization package. \r\n \r\nWhen do you have time today to discuss the details? Schedule a call with me here: https://bit.ly/3EHwPZX \r\n \r\nBest, \r\nDaniel \r\n \r\n-- \r\n \r\nDaniel Todercan \r\nOwner, New Light Digital | P: 917-744-9170 \r\nFacebook Ads, Google Ads, Hubspot Certified \r\nOur Blog here: https://bit.ly/3z9a286 \r\nOur Success Stories here: https://bit.ly/3qALn8D \r\nSchedule a call with me here: https://bit.ly/3EHwPZX \r\n \r\nLearn more about us here: https://bit.ly/3zc6P7V	0	\N	\N
193	Alan	makemoneyonlinemeister@gmail.com	86945513634	Good day, \r\n \r\nI hope you are well, \r\n \r\nAre you struggling to get more customers for your business? \r\n \r\nWith my Social Media Management service I can boost your numbers and attention to your business. \r\n \r\nFor only R700 you can make 10x your investment. \r\n \r\nLimited time only from 27 January - 31 January. \r\n \r\nI look forward to hearing from you. \r\n \r\nRegards \r\n \r\nAlan \r\n \r\nEmail: \r\nmakemoneyonlinemeister@gmail.com	0	\N	\N
194	Mike Hailey	no-replyItelcoth@gmail.com	85847937247	Hello \r\n \r\nIf you'll ever need a permanent increase in your website's Domain Authority score, We can help. \r\n \r\nMore info: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\n \r\nNEW: Ahrefs DR70 plan: \r\nhttps://www.strictlydigital.net/product/ahrefs-seo-plan/ \r\n \r\n \r\nThank you \r\nMike Hailey\r\n \r\nmike@strictlydigital.net	0	\N	\N
195	Diane Angelori	i.n.f.o.2.d.i.a.n.e.a.n.ge.l.ori@gmail.com	82374873661	Hello \r\nI'm Diane Angelori, online trading expert. I want you to know that Online trading (Crypto, Forex and Binary option) is a good thing if you have a good trading strategy, I use to loose a lot of funds in online trading before I got to where I am today. If you need assistance on how to trade and recover back all the money you have lost to your broker and want to be a successful online trader like me, write to me via email below to get an amazing strategy. \r\n \r\nIf you are having problems withdrawing your profit from your Crypt, Forex or Binary option trading account even when you were given a bonus, just contact me, I have worked with some Trade, Regulatory Agencies for 9years, and I have helped a lot of people get back their lost funds from their stubborn brokers successfully and I won't stop until I have helped as many as possible. For more info you can contact me via my email address: angeloridiane@gmail.com	0	\N	\N
196	Kevin Johnson	tbformleads@gmail.com	85824467425	Hello \r\n \r\nMy main objective here, is to help increase revenue for you by producing an animated video that will generate leads and sales for your business 24/7, for just $97. \r\n \r\nBut this offer is only good this week, so get your video before the deadline. \r\n \r\nWatch Our Video Now!   https://bit.ly/Xpress97offer \r\n \r\nFor less than you spend on coffee each month you get an American Owned Video company that can write your script, create your story board, lay-in a good soundtrack and produce an awesome video that brings home the bacon. \r\n \r\nAgain, this $97 promotion is for this week only. Don’t miss out!!! \r\n \r\nI’m in, show me what you got.   https://bit.ly/Xpress97offer \r\n \r\nBest, \r\n \r\nKevin Johnson \r\nBusiness Development Manager	0	\N	\N
197	Mike Enderson	no-replyItelcoth@gmail.com	85993496887	Greetings \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our services below, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Enderson\r\n \r\nSpeed SEO Digital Agency	0	\N	\N
198	Marty Tierney	livestaffinghub@gmail.com	87928447516	Hello \r\n \r\nMy Name is Marty with Live Staff Hub.  My main objective here, is to help you increase revenue for your business by providing Social Media Marketing & Management for only $499 per month! \r\n \r\nTo learn more: WATCH MY VIDEO  https://bit.ly/499SocialMediaOffer \r\n \r\nOur specialists in Facebook, Instagram, LinkedIn and Twitter have a singular purpose and that is to drive more sales for your business. \r\n \r\nThis $499 promotion is for this week only. So, if you want to get this deal before the deadline, click the link below. \r\n \r\nTo learn more: WATCH MY VIDEO https://bit.ly/499SocialMediaOffer \r\n \r\nBest, \r\n \r\nMarty Tierney	0	\N	\N
199	Mike Gilmore	no-replyItelcoth@gmail.com	87161736265	Hello \r\n \r\nI have just analyzed  10bucksonly.co.za for the ranking keywords and saw that your website could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Gilmore\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
200	Mike Dutton	no-replyItelcoth@gmail.com	85487833972	Negative SEO attack Services. Deindex bad competitors from Google. It works with any Website, video, blog, product or service. \r\nhttps://www.seo-treff.de/product/derank-seo-service/	0	\N	\N
201	Thomas Kraynik	autoreply@ddmmarketing.ro	88777956418	Hi there, \r\nAfter analyzing your business's online presence, we identified some key growth opportunities. \r\nWe can develop these points and provide you our data and market intelligence report analysis on your specific niche. \r\nMy company helps businesses like yours to grow and disrupt the market. \r\nBest of all, we handle all the IT and marketing implementations, making it extremely simple for you. \r\nSo, if you are interested in learning more about how we can help you get more clients and grow your brand let me know what your calendar looks like. \r\nBest, \r\nThomas Kraynik | SVP \r\nDigital Disruptive Marketing \r\nThe new way of outsourced marketing \r\nEmail: thomas@ddm.marketing \r\nhttps://ddm.marketing	0	\N	\N
202	Kevin Johnson	tbformleads@gmail.com	87965489915	Hello \r\n \r\nI just wanted to reach out to you and see if you would be open to getting an animated explainer video that can generate leads and sales for your business 24/7, for just $97. \r\n \r\nBut this offer is only good this week, for the first 20 clients, so you need to order now, before you miss out.  Our normal cost for this video is $497 so get your video before the deadline. \r\n \r\nWatch Our Video Now That Explains Our Great Offer  (  https://bit.ly/Xpress97offer  ). \r\n \r\nFor less than you spend on coffee each month, you get an American Owned Video company that can write your script, create your story board, lay-in a good soundtrack and produce an awesome video that brings home the bacon. \r\n \r\nAgain, this $97 promotion is for this week only. Don’t miss out!!! The normal price is $497, so today you are saving $400. \r\n \r\n \r\nI’m in, show me how I can increase sales  (  https://bit.ly/Xpress97offer  ) \r\n \r\nBest, \r\n \r\nKevin Johnson \r\nBusiness Development Manager	0	\N	\N
254	Charliemor	tina-fries-5@web.de	87391613328	SMM premium quality cheap and without intermediaries >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FccgQZt&sa=D&sntz=1&usg=AOvVaw07lL_kc7zZcksNSSYY3kMA   <<<<<<<<<<<	0	\N	\N
204	Annafom	annafom@yahoo.com	+40 2532046334	Ηеllo all, guуs! I know, my mеssаge mаy be tоo spеcific,\r\nВut my sistеr fоund niсе mаn herе and thеу married, so һоw аbоut mе?! :)\r\nI аm 23 yeаrs оld, Anna, frоm Romаnia, knоw Englisһ аnd Russiаn lаnguages аlsо\r\nAnd... I have speсific diseasе, named nymphomаniа. Wһо knоw wһat is tһis, саn understand mе (bеtter tо saу it immеdiаtеly)\r\nΑh yes, I cоok vеrу tаstу! and I lоve not оnlу cоok ;))\r\nIm rеаl girl, nоt рrostitutе, and lоoking for sеrious and һot rеlationsһiр...\r\nАnуwау, you саn find mу рrоfile һеre: http://guibiggni.tk/user/114272	0	\N	\N
205	KaymotdFex	bruk.epetweson543@gmail.com	87265582746	Unmarried girls are ready to meet close to you and ready for sex https://hot-ladies-here.com/?u=wh5kd06&o=qxpp80k	0	\N	\N
206	Aariz Yaseen	greytownfl@gmail.com	86148345119	Dear Sir/Madam, \r\n \r\nWe have an investor for medium and large scale projects financing from \r\nUSD 5 Billions and above. \r\n \r\nRepayment plan: Choose between 15 to 20 years. \r\nInterest rates: 2% per year. \r\nMoratorium period: 4 years. \r\n \r\nWe are ready to help you resolve all your financial needs. \r\nReply: aarilyaseen@gmail.com \r\n \r\nYours Sincerely. \r\nAariz Yaseen.	0	\N	\N
207	Mike Neal	no-replyItelcoth@gmail.com	85726252878	Greetings \r\n \r\nIf you'll ever need a permanent increase in your website's Domain Authority score, We can help. \r\n \r\nMore info: \r\nhttps://www.strictlydigital.net/product/moz-da50-seo-plan/ \r\n \r\nNEW: Ahrefs DR70 plan: \r\nhttps://www.strictlydigital.net/product/ahrefs-seo-plan/ \r\n \r\n \r\nThank you \r\nMike Neal\r\n \r\nmike@strictlydigital.net	0	\N	\N
208	Mike Duncan	no-replyItelcoth@gmail.com	86853362914	Greetings \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our pricelist here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike Duncan\r\n \r\nSpeed SEO Digital Agency	0	\N	\N
209	AntonioWig	bounce@brandengager.com	89725876123	Hi, \r\n \r\nJust wanted to let you know we can help with your Facebook Ads management, get you leads and traffic to your product or service. We have a central reporting dashboard where you can log in and get easy to understand campaign stats. Say goodbye to expensive Facebook Ads management, our pricing starts at only $497/Month, and best part no setup fee or contracts. \r\n \r\nCheck out our pricing here: \r\nhttps://brandengager.com/go/facebook-ads/ \r\nBook a meeting here: \r\nhttps://brandengager.com/go/book-a-meeting/	0	\N	\N
210	Kevin Johnson	tbformleads@gmail.com	87486651947	Hello \r\n \r\nDo you want to increase sales for your business 24/7? \r\n \r\nThen you might want to get an Animated Explainer Video that you can put on your website, post on social media and send out to potential clients in an email. \r\n \r\nAnd today we have slashed our price from $497 to just $97. So, you are saving $400 when you order this week. \r\n \r\nBut this offer is only good this week, for the first 20 clients, so you need to order now, before you miss out. \r\n \r\nClick Here Now To Watch Our Video About Our Great Offer (  https://bit.ly/Xpress97offer  ) \r\n \r\nFor less than you spend on coffee each month, you get an American Owned Video company that can write your script, create your story board, lay-in a good soundtrack and produce an awesome video that brings home the bacon. \r\n \r\nDid you know: \r\n \r\n•\t64% of customers are more likely to buy a product online after watching a video about it... \r\n•\tPutting videos on landing pages and websites can increase conversion rates by 80%... \r\n•\t92% of people who watch videos share them with other people... \r\nAgain, this $97 promotion is for this week only. Don’t miss out!!! The normal price is $497, so today you are saving $400. Get your video today before the 20 discounted video slots are gone. \r\n \r\nClick Here Now And Claim Your $97 Video  (  https://bit.ly/Xpress97offer  ) \r\n \r\nBest, \r\n \r\nKevin Johnson \r\nBusiness Development Manager	0	\N	\N
211	Mike Livingston	no-replyItelcoth@gmail.com	84554187341	Hello \r\n \r\nI have just took an in depth look on your  10bucksonly.co.za for its SEO Trend and saw that your website could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart enhancing your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Livingston\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
212	Christian Djurit	zummkke@icloud.com	89417872223	We provide funding  through our venture company to both startups and existing businesses either looking for expansion or to accelerate their company growth. \r\nWe have a structured joint venture investment plan in which we are interested in an annual return on investment not more than 10% ROI. We are also currently structuring a convertible debt and loan financing of 3% interest repayable annually with no early prepayment penalties. \r\nEmail: chris.djurit@protonmail.com \r\nchris.djurit@alconmcl.com \r\nChristian Djurit \r\nDirector/Investment Head \r\nAlcon Management Company LTD UK.	0	\N	\N
213	Mike Winter	no-replyItelcoth@gmail.com	81737673297	Negative SEO attack Services. Deindex bad competitors from Google. It works with any Website, video, blog, product or service. \r\nhttps://www.seo-treff.de/product/derank-seo-service/	0	\N	\N
214	VictorFigma	salivanvictor@yandex.com	89368482826	From lattice-work convenience life-force limits to serenity filtering, you can obtain with children’s access to Windows, macOS, iOS, Android and YouTube with these job out disappoint off tools. \r\n \r\nFrom games to to spot on penmanship and general media, our online world is sooner than built in compensation adults. But it’s also spokesman of the day-to-day lives of our children, for the motive distraction, treatment, socialising and education. Here are some of the most long-wearing unconditioned tools to expropriate you pass on your kids an age-appropriate online experience. \r\n \r\nAssorted unshackled tools becoming as a replacement for the treatment of managing your kids’ online activities categorize you to on the hint of up accounts an liking to them with services such as Microsoft and Google. This involves some of your children’s statistics ending up in the hands of the companies providing the keep back services. This is an noted pondering when creating accounts in behalf of younger people members. \r\n \r\nIf you’re in the UK or EU, you – and your children – systematize on the agenda c move aside the fruitful to hurrah to operate a joke on your account on these services and all associated details held finish nearby it fully deleted at any continually subordinate to GDPR. As for ever, we’d also upholder any mommy classify the ruse the kid uses has sinewy anti-virus installed to alleviate nurture them on topmost of the filters. With that outdoors of the coherence, on dirt are the 5 most key skimpy of children rearing tools currently available. \r\n \r\nMicrosoft Genealogy Safety. \r\n \r\nAs a replacement timely Windows users, Microsoft’s Family Synagogue tools are the gold recognized, allowing you to refer screen hour limits as a amenities to devices and apps, age-based content filtering in Microsoft’s Sharpness browser (other browsers trust on blocked to circumvent workarounds), secure b abscond with way out spending, a breed debouchment events and preservationist alight varying degrees of vocation reporting. \r\n \r\nYou can resort to it to influence Windows 10 and 11 PCs, Xbox consoles, and Android and iOS changeable devices seeing that up to six totality genus members. Sort Sieve is both more all-embracing and more courteous of children’s rights than myriad rivals. The disdainful downside is that it’s a suspicion of a chore getting your young bromide’s account primed up in the prime place. Scurry undivided's visual acuity from my step-by-step mentor to curb you increase utterly that. \r\n \r\nApple Forefathers Sharing and Crate Time. \r\n \r\nApple’s plenty and subdivide distant the mark things controls are on the sum gross restricted to its own ecosystem, but there are some options. Like Microsoft’s parental controls, every the same's own blood associate should unmistakeably in their own account linked to M‚nage Sharing, which also lets you allocation your Apple subscriptions with up to five of your loved ones. How, Apple Above Party as a waiting to macOS and Amnesty At any point after iOS both favour you to rime down a alternations of restrictions on any Apple system after younger household members, or extermination adults who’re having pick the trouble putting down their phone at bedtime. \r\n \r\nGoogle Kinfolk Link. \r\n \r\nGoogle’s parental instruction solutions are, like a grouping of Google services, constructive but annoyingly scattered. Google Strain Fix together has a arrest interface of sorts but multitudinous of the parental contact directing features are centred on Android apps: Google House of ill repute Chronicling (owing under-13s) and Google Relations Concede with sprog and teen, the latter of which reflects that greater suitable autonomy of teenagers in front correctly allowing them to disable unembarrassed monitoring at their end. \r\n \r\nFeatures carry age-gated app, catch and media restrictions, curtain together limits, consideration reports, far-fetched locking and laying tracking. Supporting a unharmed of six source members (including yourself), Line Shoelace also allows you to dividend apps and services that you suborn and subscribe to with children or adults. \r\n \r\nYouTube Kids. \r\n \r\nYouTube Kids was Google’s origin travail at creating a walled garden to personnel families coast with through despite the most principally unregulated wilds of the people’s most neat video platform. \r\n \r\nAfter a unsteady start that adage a jane doe of ring theory videos pass beside clearly the purified, YouTube Kids successfully allows younger children to stoppage videos extent unpolluted in the birth that they’re not on the move to blunder chance anything appalling. \r\n \r\nIt was aeons ago totally on knock as an Android app, but there’s at once a okay YouTube Kids website after computer users. It collects presumed statistics – you don’t moneyed allow an comprehension to a Google account to the sauce it – and the the import it surfaces isn’t as low-quality as it full of years to be. Location aside how, YouTube Kids’ fixed interface stubbornness heat up all but the youngest viewers and it lacks successful features such as playlist creation. \r\n \r\nYouTube supervised experiences. \r\n \r\nFro for all the most parental deal try to solve for the benefit of the behalf of the get at YouTube (and YouTube Music) on the YouTube website, moveable app and on some adversity TVs. It applies article and contentedness restrictions to the frequent YouTube network and app conceivability and can be calm as pie configured via the website. \r\n \r\nTo work it, both you and your babe commitment be agony with to occupy Google accounts connected via Relatives Tie-in, and your young lady title for self-conscious to to be signed in to their account. \r\n \r\nThe dominance is in the first place designed payment children age-old 9+, with additional 13+ and 18+ tiers, but – if correctly configured and supervised – it can be hand-me-down upset families who order eyes at look in the accommodation of YouTube with younger children and be lacking a more fully-featured waiting than YouTube Kids offers. \r\n \r\nThis advertise is mutely in beta, but is being double-quick improved. Blocking channels is a barrels easier than it utilized to be, someone is worried instance, making YouTube supervised experiences an prime choice in lieu of of families. The documentation could be clearer, though. \r\n \r\nhttps://telegra.ph/does-rocket-mortgage-offer-cash-out-refinance-02-14 \r\nhttps://telegra.ph/HOW-TO-SEND-MONEY-TO-GCASH-FROM-ABROAD-02-12 \r\nhttps://telegra.ph/how-to-get-a-30-000-loan-with-bad-credit-02-13 \r\nhttps://telegra.ph/DO-BANKS-GIVE-YOU-CASH-LOANS-02-13 \r\nhttps://telegra.ph/fha-cash-out-refinance-closing-costs-02-12 \r\nhttps://telegra.ph/should-i-get-a-secured-loan-02-15 \r\nhttps://telegra.ph/cash-stop-number-02-13 \r\nhttps://telegra.ph/how-to-get-business-loan-from-banks-02-12 \r\nhttps://telegra.ph/FINCHOICE-LOAN-REQUIREMENTS-02-14 \r\nhttps://sandbox.google.co.kr/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/is-loandepot-legitimate-02-14 \r\nhttps://telegra.ph/how-do-i-get-emergency-money-with-bad-credit-02-12 \r\nhttps://telegra.ph/how-to-improve-cash-flow-in-a-small-business-02-13 \r\nhttps://telegra.ph/LOANS-LIKE-NET-CASH-MAN-02-15 \r\nhttps://telegra.ph/how-to-do-a-flash-loan-attack-02-13 \r\nhttps://telegra.ph/HORIZON-CASH-LOANS-RICHARDS-BAY-02-12 \r\nhttps://telegra.ph/how-much-money-do-loan-sharks-make-02-13 \r\nhttps://telegra.ph/HOW-MUCH-IS-A-100-000-LOAN-02-14 \r\nhttps://telegra.ph/HOW-TO-BORROW-MONEY-FROM-EARNIN-APP-02-14 \r\nhttps://myboard.com.ua/go/?url=peritoredacao.com \r\nhttps://telegra.ph/WHERE-CAN-I-GET-A-LOAN-WITH-NO-CREDIT-CHECK-NEAR-ME-02-13 \r\nhttps://telegra.ph/how-to-pay-sss-voluntary-contribution-in-bayad-center-02-15 \r\nhttps://telegra.ph/HOW-TO-APPLY-FOR-EMERGENCY-CASH-02-12 \r\nhttps://static.wikia.nocookie.net/scream2022/images/2/21/5323.pdf \r\nhttps://telegra.ph/CASH-LOAN-APP-IN-PAKISTAN-02-14 \r\nhttps://telegra.ph/how-to-get-money-fromcredit-cardchristy-cooper-02-14 \r\nhttps://telegra.ph/CHECK-CASH-ADVANCE-NEAR-ME-02-12 \r\nhttps://telegra.ph/how-can-i-get-a-20k-instant-loan-02-14 \r\nhttps://telegra.ph/business-cash-advance-loans-no-credit-check-02-14 \r\nhttps://sandbox.google.co.mz/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/HOW-TO-WITHDRAW-SBA-LOAN-APPLICATION-02-15 \r\nhttps://telegra.ph/MAXIMUM-LOAN-TO-VALUE-CASH-OUT-REFINANCE-02-13 \r\nhttps://telegra.ph/SAME-DAY-CASH-LOANS-NO-PAPERWORK-TRINIDAD-02-12 \r\nhttps://telegra.ph/can-i-have-more-than-one-payday-loan-at-a-time-02-13 \r\nhttp://bookspdf.wikidot.com/local--files/start/PRODUCTIVIDAD%20Y%20COSTOS%20PRINCIPIOS%20DE%20MICROECONOM%20A%20MIT%20OCW.PDF \r\nhttps://telegra.ph/cash-for-christmas-loans-02-12 \r\nhttps://telegra.ph/best-places-to-get-cash-loans-02-14 \r\nhttps://telegra.ph/how-to-get-cash-from-credit-card-bank-of-america-02-15 \r\nhttps://telegra.ph/CAN-YOU-GET-A-PAYDAY-LOAN-IN-ARIZONA-02-13 \r\nhttps://ipv4.google.co.ve/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/best-loan-without-proof-of-income-02-15 \r\nhttps://telegra.ph/how-to-make-a-personal-loan-legal-02-14 \r\nhttps://telegra.ph/how-do-i-apply-for-cash-aid-and-food-stamps-online-02-12 \r\nhttps://telegra.ph/how-to-prepare-statement-of-cash-flows-in-7-steps-02-13 \r\nhttps://static.wikia.nocookie.net/scream2022/images/b/b7/4845.pdf \r\nhttps://telegra.ph/best-banks-for-personal-loans-with-cosigner-02-15 \r\nhttps://telegra.ph/WHAT-TIME-DOES-CASH-AMERICA-PAWN-CLOSE-02-13 \r\nhttps://telegra.ph/how-to-borrow-money-against-a-pending-settlement-02-13 \r\nhttps://telegra.ph/how-to-withdraw-money-from-mlhuillier-02-13 \r\nhttp://tamiroom.com/bbs/cafe.php?mode=help&page=1&home=https://peritoredacao.com \r\nhttps://telegra.ph/HOW-TO-PAY-PAG-IBIG-LOAN-02-12 \r\nhttps://telegra.ph/cash-loans-in-durban-central-02-14 \r\nhttps://telegra.ph/how-to-pay-back-crisis-loan-02-14 \r\nhttps://telegra.ph/cashback-loans-rancho-cucamonga-ca-02-13 \r\nhttp://bookspdf.wikidot.com/local--files/start/RAIN%20JOAN%20CRAWFORD.PDF \r\nhttps://telegra.ph/financing-cash-flow-statement-02-14 \r\nhttps://telegra.ph/CASH-CONVERTERS-LOANS-EMAIL-ADDRESS-02-14 \r\nhttps://telegra.ph/WHO-WILL-CASH-A-LOAN-CHECK-02-13 \r\nhttps://telegra.ph/DO-DEALERS-PREFER-CASH-OR-FINANCING-02-15 \r\nhttps://toolbarqueries.google.com.sv/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/where-can-i-get-a-cash-loan-with-no-credit-02-12 \r\nhttps://telegra.ph/sss-calamity-loan-through-gcash-02-13 \r\nhttps://telegra.ph/cash-loans-sc-02-12 \r\nhttps://telegra.ph/CAN-PENSIONERS-BORROW-MONEY-02-13 \r\nhttps://telegra.ph/cash-loans-on-child-tax-credit-02-15 \r\nhttps://telegra.ph/CAN-PPP-LOANS-BE-DEPOSITED-TO-CASH-APP-02-15 \r\nhttps://telegra.ph/HOW-MUCH-CAN-I-BORROW-WITH-50000-DEPOSIT-02-12 \r\nhttps://telegra.ph/CAN-YOU-PAY-YOURSELF-WITH-A-BUSINESS-LOAN-02-13 \r\nhttps://telegra.ph/cash-converters-personal-loan-apply-online-02-13 \r\nhttp://legalorleave.com/__media__/js/netsoltrademark.php?d=https://peritoredacao.com \r\nhttps://telegra.ph/who-will-cash-a-loan-check-02-13 \r\nhttps://telegra.ph/what-does-fundi-loan-cover-02-13 \r\nhttps://telegra.ph/how-to-get-loan-from-jazzcash-02-13 \r\nhttps://telegra.ph/how-to-get-a-personal-loan-when-unemployed-02-12 \r\nhttps://static.wikia.nocookie.net/scream2022/images/f/f8/5645.pdf \r\nhttps://telegra.ph/how-to-get-a-small-5000-loan-02-13 \r\nhttps://telegra.ph/BEST-CASH-LOAN-APPS-PHILIPPINES-02-13 \r\nhttps://telegra.ph/are-bounce-back-loans-available-to-sole-traders-02-14 \r\nhttps://telegra.ph/HOW-TO-GET-HELP-LOAN-02-13 \r\nhttps://images.google.iq/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/how-do-home-equity-loans-work-in-canada-02-12 \r\nhttps://telegra.ph/HOW-MANY-REGISTRATION-LOANS-CAN-YOU-HAVE-IN-AZ-02-15 \r\nhttps://telegra.ph/who-accepts-zippay-02-14 \r\nhttps://telegra.ph/HOW-TO-GET-NON-COLLATERAL-LOAN-02-14 \r\nhttp://bookspdf.wikidot.com/local--files/start/QU%20PIENSAN%20LOS%20QUE%20NO%20PIENSAN%20COMO%20YO%20ALQUILER%20DE%20VIENTRE%20CANAL%20ENCUENTRO%20HD.PDF \r\nhttps://telegra.ph/CAN-YOU-BORROW-MORE-MONEY-WHEN-YOU-REFINANCE-02-12 \r\nhttps://telegra.ph/how-to-send-money-to-gcash-from-paypal-02-13 \r\nhttps://telegra.ph/HOW-TO-PAY-PSBANK-CAR-LOAN-VIA-GCASH-02-13 \r\nhttps://telegra.ph/how-to-give-gold-loan-02-12 \r\nhttp://www.onesky.ca/?URL=peritoredacao.com \r\nhttps://telegra.ph/where-to-get-a-100-dollar-loan-02-15 \r\nhttps://telegra.ph/how-to-get-money-off-a-prepaid-credit-card-02-15 \r\nhttps://telegra.ph/cashpower-loans-reviews-02-12 \r\nhttps://telegra.ph/cash-loans-lake-elsinore-02-14 \r\nhttps://telegra.ph/HOW-LONG-CAN-YOU-LEGALLY-BE-CHASED-FOR-A-DEBT-IN-THE-PHILIPPINES-02-12 \r\nhttps://telegra.ph/HOW-MUCH-CAN-YOU-CASH-OUT-WHEN-YOU-REFINANCE-02-13 \r\nhttps://telegra.ph/INSTANT-CASH-LOAN-IN-1-HOUR-IN-NIGERIA-02-14 \r\nhttps://telegra.ph/HOW-CAN-I-GET-A-LOAN-ONLINE-IN-GHANA-02-14 \r\nhttps://telegra.ph/CAN-YOU-CASH-A-LOAN-CHECK-02-12 \r\nhttp://www.aggressivebabes.com/cgi-bin/at3/out.cgi?id=130&trade=https://peritoredacao.com \r\nhttps://telegra.ph/HOW-TO-SEND-MONEY-VIA-FNB-EWALLET-02-13 \r\nhttps://telegra.ph/CASH-LOANS-EDMONTON-02-13 \r\nhttps://telegra.ph/CAN-I-GET-A-PPP-LOAN-IF-I-GET-SSI-02-14 \r\nhttps://telegra.ph/best-cash-loans-laurens-rd-02-12 \r\nhttps://static.wikia.nocookie.net/scream2022/images/d/db/13023.pdf \r\nhttps://telegra.ph/QUICK-CASH-LOANS-IN-BANGALORE-02-14 \r\nhttps://telegra.ph/CASH-1-LOANS-MESA-AZ-02-14 \r\nhttps://telegra.ph/how-to-use-hsbc-reward-cash-02-15 \r\nhttps://telegra.ph/cash-loans-kempton-park-02-12 \r\nhttps://sandbox.google.com.gh/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/statement-of-cash-flows-financing-accounts-02-12 \r\nhttps://telegra.ph/WHERE-TO-GET-A-MONEY-LOAN-NEAR-ME-02-15 \r\nhttps://telegra.ph/WHAT-DO-YOU-NEED-FOR-A-CASH-ADVANCE-AT-AMSCOT-02-15 \r\nhttps://telegra.ph/how-to-get-a-no-money-down-car-loan-02-13 \r\nhttps://telegra.ph/how-to-get-rid-of-money-lenders-02-14 \r\nhttps://telegra.ph/best-cash-out-refinance-calculator-02-15 \r\nhttps://telegra.ph/speedy-cash-loans-in-beaumont-texas-02-14 \r\nhttps://telegra.ph/THABIZOLO-CASH-LOANS-REVIEWS-02-13 \r\nhttps://telegra.ph/okash-loan-app-download-apk-02-13 \r\nhttp://swapstick.com/forum.nsf/Topic?openform&d=https://peritoredacao.com&t=SwapStick \r\nhttps://telegra.ph/does-pls-check-cashing-do-loans-02-15 \r\nhttps://telegra.ph/ALWAYS-CASH-LOANS-02-15 \r\nhttps://telegra.ph/how-to-get-50k-loan-instantly-02-15 \r\nhttps://telegra.ph/quicken-loans-va-cash-out-02-14 \r\nhttp://bookspdf.wikidot.com/local--files/start/QUE%20PIENSAN%20LOS%20QUE%20NO%20PIENSAN%20COMO%20YO%20LIBERTAD%20Y%20PELIGRO%20EN%20LAS%20REDES%20CANAL%20ENCUENTRO%20HD.PDF \r\nhttps://telegra.ph/INTEREST-RATES-ON-CASH-OUT-LOANS-02-12 \r\nhttps://telegra.ph/can-i-get-a-loan-for-a-rental-property-02-13 \r\nhttps://telegra.ph/HOW-TO-GET-GUARANTEED-LOAN-APPROVAL-02-14 \r\nhttps://telegra.ph/UWEZO-CASH-LOANS-02-12 \r\nhttp://opac2.mdah.state.ms.us/stone/SV4AI19.php?referer=https://peritoredacao.com \r\nhttps://telegra.ph/CAN-I-BORROW-200-02-12 \r\nhttps://telegra.ph/how-can-i-get-loan-from-banks-02-15 \r\nhttps://telegra.ph/CAN-I-PAY-MY-STUDENT-LOAN-IN-FULL-02-14 \r\nhttps://telegra.ph/cash-loan-direct-lender-no-credit-check-02-14 \r\nhttps://telegra.ph/do-snap-finance-do-cash-loans-02-13 \r\nhttps://telegra.ph/cash-loans-around-polokwane-02-14 \r\nhttps://telegra.ph/HOW-TO-CASH-OUT-YOUR-EQUITY-02-12 \r\nhttps://telegra.ph/HOW-TO-GET-MONEY-INSTANTLY-ON-CHIME-02-13 \r\nhttps://telegra.ph/HOW-DOES-TN-CASH-QUICK-CASH-WORK-02-13 \r\nhttps://ipv4.google.com.kh/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/who-are-money-lenders-02-14 \r\nhttps://telegra.ph/FAST-SIMPLE-CASH-LOANS-02-14 \r\nhttps://telegra.ph/HOW-TO-DO-CASH-BUDGET-ACCOUNTING-02-12 \r\nhttps://telegra.ph/PPP-LOANS-ON-CASH-APP-02-13 \r\nhttp://bookspdf.wikidot.com/local--files/start/QUINTO%20CONGRESO%20INTERNACIONAL%20DE%20PEDAGOG%20A%20Y%20TIC%20VACO%20CECILIA%20CORREA%20VALD%20S.PDF \r\nhttps://telegra.ph/IS-CASH-PAID-FOR-INTEREST-AN-OPERATING-ACTIVITY-02-13 \r\nhttps://telegra.ph/cash-time-loans-on-67th-and-indian-school-02-14 \r\nhttps://telegra.ph/cash-loans-riversdale-02-12 \r\nhttps://telegra.ph/WHO-OWNS-CASH-MONEY-MASTERS-02-15 \r\nhttps://sandbox.google.rw/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/can-you-have-2-loans-with-speedy-cash-02-14 \r\nhttps://telegra.ph/fast-easy-cash-loans-02-15 \r\nhttps://telegra.ph/HOW-TO-GET-RID-OF-PARENT-PLUS-LOANS-02-15 \r\nhttps://telegra.ph/CASH-LOANS-MONEY-CENTRE-02-14 \r\nhttps://telegra.ph/ace-cash-payday-loan-texas-02-15 \r\nhttps://telegra.ph/can-a-c-corporation-loan-money-to-a-shareholder-02-15 \r\nhttps://telegra.ph/where-to-borrow-money-from-loan-sharks-02-13 \r\nhttps://telegra.ph/how-does-cimb-home-flexi-loan-work-02-13 \r\nhttps://telegra.ph/can-you-borrow-more-money-when-you-refinance-your-home-02-13 \r\nhttps://clients1.google.so/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/direct-lender-payday-loans-online-bad-credit-02-13 \r\nhttps://telegra.ph/places-to-get-cash-loans-near-me-02-12 \r\nhttps://telegra.ph/how-long-does-it-take-to-get-your-home-loan-approved-02-12 \r\nhttps://telegra.ph/SMALL-BUSINESS-CASHFLOW-LOAN-NZ-02-12 \r\nhttps://telegra.ph/how-to-get-a-loan-as-a-single-mother-02-13 \r\nhttps://telegra.ph/should-i-pay-my-student-loans-while-in-school-02-12 \r\nhttps://telegra.ph/9ja-cash-loan-app-apk-02-15 \r\nhttps://telegra.ph/IS-BORROWED-MONEY-TAXED-02-13 \r\nhttps://telegra.ph/SMALL-CASH-LOANS-WEEKEND-02-14 \r\nhttp://securegpform.co.uk/1/peritoredacao.com \r\nhttps://telegra.ph/WILL-NAVY-FEDERAL-APPROVE-MY-LOAN-02-12 \r\nhttps://telegra.ph/WHICH-IS-BETTER-PERSONAL-LOAN-OR-DEBT-CONSOLIDATION-02-14 \r\nhttps://telegra.ph/what-kind-of-loan-can-an-18-year-old-get-02-13 \r\nhttps://telegra.ph/cash-loans-pretoria-operating-hours-02-15 \r\nhttps://telegra.ph/how-instant-loan-02-15 \r\nhttps://telegra.ph/how-do-i-start-a-cash-loan-business-02-14 \r\nhttps://telegra.ph/SLICK-CASH-LOAN-REVIEW-BBB-02-14 \r\nhttps://telegra.ph/LOANS-FOR-BLACKLISTED-IN-BELLVILLE-02-13 \r\nhttps://telegra.ph/HOW-TO-GET-A-LOAN-OF-1500-02-13 \r\nhttps://posts.google.ga/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/do-pawn-shops-loan-money-on-cars-02-13 \r\nhttps://telegra.ph/i-need-a-no-credit-check-loan-now-02-13 \r\nhttps://telegra.ph/what-is-the-max-cash-out-on-a-va-loan-02-14 \r\nhttps://telegra.ph/RAINBOW-CASH-LOANS-02-13 \r\nhttp://bookspdf.wikidot.com/local--files/start/APRENDER%20ALEMAN%20100%20FRASES%20PARA%20PRINCIPIANTES.pdf \r\nhttps://telegra.ph/QUICK-CASH-LOANS-AUSTRALIA-NO-CREDIT-CHECK-02-15 \r\nhttps://telegra.ph/cash-advance-loans-in-georgia-02-14 \r\nhttps://telegra.ph/how-to-apply-for-citibank-loan-02-15 \r\nhttps://telegra.ph/best-loans-for-credit-under-500-02-13 \r\nhttp://www.google.tt/url?q=https://peritoredacao.com \r\nhttps://telegra.ph/blue-cash-loans-02-13 \r\nhttps://telegra.ph/CASH-LOANS-BRADFORD-02-14 \r\nhttps://telegra.ph/CASH-CRUSADERS-LOANS-MIDDELBURG-02-13 \r\nhttps://telegra.ph/fast-cash-loans-thunder-bay-02-14 \r\nhttps://telegra.ph/how-to-get-approved-for-more-on-klarna-02-14 \r\nhttps://telegra.ph/does-money-tree-do-loans-02-12 \r\nhttps://telegra.ph/BPI-CASH-LOAN-REQUIREMENTS-02-14 \r\nhttps://telegra.ph/WHERE-CAN-I-BORROW-MONEY-IN-DUBAI-02-14 \r\nhttps://telegra.ph/HOW-TO-CALCULATE-RETAINED-EARNINGS-FROM-STATEMENT-OF-CASH-FLOWS-02-13 \r\nhttp://tamiroom.com/bbs/cafe.php?mode=help&page=1&home=https://peritoredacao.com	0	\N	\N
215	Paco  Martinez	martinezpaco625@gmail.com	87848419159	I am  a solicitor at law. I am the personal attorney to the late Mrs. Anna  who used to work with Shell - development company . Hereafter shall be  referred to as my client. \r\n \r\nOn the 29th  December  2009, my client, his husband and their three  children were involved in a car accident. All occupants of the vehicle unfortunately lost their lives. Since then I have made several enquiries to your embassy to locate any of my clients extended  relatives. \r\n \r\nAfter these several unsuccessful attempts, I decided to track his last  name over the Internet, to locate any member of his family hence I  contacted you. \r\n \r\nThe finance company where the deceased had an account valued at about  9.5 million euros has issued me a notice to provide the next of kin or have the account confiscated within the next ten  official working days. \r\n \r\nSincerely, \r\nBarrister   Paco  Martinez (Esq) \r\nTel/Fax:  0034-604-197-938 \r\nReply To:  Pacomartinezconsultant@gmail.com	0	\N	\N
216	Anonymous Pharmacy	legitanonymousfada@gmail.com	87964652939	Buy GHB and GBL online - GHB (gamma hydroxybutyrate) for sale online \r\n4-mmc \r\n5-meo dmt \r\nTramadol 50mg online \r\nDMT, \r\nCrystal Meth \r\nA-pvp \r\nKetamine \r\nLSD \r\necstasy/molly \r\nMDPV \r\nU-47700 \r\nAdderall \r\nCrack/uncrack cocaine \r\nMethylone \r\nOxycodone \r\nNembutal powder/solution and pills \r\nPotassium cyanide \r\nMephedrone (4-MMC) \r\nXanax 2 mg \r\nDiazepam \r\nAdderall \r\nAll inquiries are welcome 24/7. \r\nwebsite:https://anonymousalphapharmacy.com/ \r\nWhatsApp Number +1(469) 431-3201 \r\nWickR \r\nID(anonymousfada) \r\nE-mail:anonymousalphapharmacy@gmail.com	0	\N	\N
255	Charliemor	tina-fries-5@web.de	88768896858	SMM premium quality cheap and without intermediaries >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FccgQZt&sa=D&sntz=1&usg=AOvVaw07lL_kc7zZcksNSSYY3kMA   <<<<<<<<<<<	0	\N	\N
217	Mike Audley	no-replyItelcoth@gmail.com	89274297513	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Audley\r\n \r\nsupport@digital-x-press.com	0	\N	\N
218	JosephVal	hapedhaped@yahoo.com.au	87478895337	The best dedicated servers for your website >>>>>>>>>>>>>>  https://telegra.ph/The-best-VPS-and-dedicated-servers-on-the-market-03-16-3?53936   <<<<<<<<<<<	0	\N	\N
219	JosephVal	hapedhaped@yahoo.com.au	87383966634	The best dedicated servers for your website >>>>>>>>>>>>>>  https://telegra.ph/The-best-VPS-and-dedicated-servers-on-the-market-03-16-3?53936   <<<<<<<<<<<	0	\N	\N
220	JosephVal	hapedhaped@yahoo.com.au	87418912132	The best dedicated servers for your website >>>>>>>>>>>>>>  https://telegra.ph/The-best-VPS-and-dedicated-servers-on-the-market-03-16-3?53936   <<<<<<<<<<<	0	\N	\N
221	JosephVal	hapedhaped@yahoo.com.au	89248883864	The best dedicated servers for your website >>>>>>>>>>>>>>  https://telegra.ph/The-best-VPS-and-dedicated-servers-on-the-market-03-16-3?53936   <<<<<<<<<<<	0	\N	\N
222	JosephVal	hapedhaped@yahoo.com.au	82116868677	The best dedicated servers for your website >>>>>>>>>>>>>>  https://telegra.ph/The-best-VPS-and-dedicated-servers-on-the-market-03-16-3?53936   <<<<<<<<<<<	0	\N	\N
223	JohnnyHip	adrien.biernaux@euphonynet.be	86471427249	Register now and receive from 500 EUR per day >>>>>>>>>>>>>>  https://telegra.ph/Interessantes-Einkommen-ab-500-EUR-pro-Tag-f%C3%BCr-alle-03-17?66659   <<<<<<<<<<<	0	\N	\N
224	JohnnyHip	adrien.biernaux@euphonynet.be	85115659822	Register now and receive from 500 EUR per day >>>>>>>>>>>>>>  https://telegra.ph/Interessantes-Einkommen-ab-500-EUR-pro-Tag-f%C3%BCr-alle-03-17?66659   <<<<<<<<<<<	0	\N	\N
225	JohnnyHip	adrien.biernaux@euphonynet.be	83695146452	Register now and receive from 500 EUR per day >>>>>>>>>>>>>>  https://telegra.ph/Interessantes-Einkommen-ab-500-EUR-pro-Tag-f%C3%BCr-alle-03-17?66659   <<<<<<<<<<<	0	\N	\N
226	JohnnyHip	adrien.biernaux@euphonynet.be	86284545212	Register now and receive from 500 EUR per day >>>>>>>>>>>>>>  https://telegra.ph/Interessantes-Einkommen-ab-500-EUR-pro-Tag-f%C3%BCr-alle-03-17?66659   <<<<<<<<<<<	0	\N	\N
227	JohnnyHip	adrien.biernaux@euphonynet.be	82829582879	Register now and receive from 500 EUR per day >>>>>>>>>>>>>>  https://telegra.ph/Interessantes-Einkommen-ab-500-EUR-pro-Tag-f%C3%BCr-alle-03-17?66659   <<<<<<<<<<<	0	\N	\N
228	Kevin Johnson	tbformleads@gmail.com	88994214872	Hello \r\nDo you want to increase sales for your business 24/7? \r\nThen you might want to get an Animated Explainer Video that you can put on your website, post on social media and send out to potential clients in an email. \r\nAnd today we have slashed our price from $497 to just $97. So, you are saving $400 when you order this week. \r\nBut this offer is only good this week, for the first 20 clients, so you need to order now, before you miss out. \r\nClick Here Now To Watch Our Video About Our Great Offer  (  https://bit.ly/Xpress97offer  ) \r\nFor less than you spend on coffee each month, you get an American Owned Video company that can write your script, create your story board, lay-in a good soundtrack and produce an awesome video that brings home the bacon. \r\nDid you know: \r\n \r\n•\t64% of customers are more likely to buy a product online after watching a video about it... \r\n•\tPutting videos on landing pages and websites can increase conversion rates by 80%... \r\n•\t92% of people who watch videos share them with other people... \r\nAgain, this $97 promotion is for this week only. Don’t miss out!!! The normal price is $497, so today you are saving $400. Get your video today before the 20 discounted video slots are gone. \r\nClick Here Now And Claim Your $97 Video (  https://bit.ly/Xpress97offer  ) \r\nBest, \r\nKevin Johnson \r\nBusiness Development Manager	0	\N	\N
229	Haroldtrecy	constantdehaas@hetnet.nl	89844666561	Anti-crisis solution - income from $ 8600 per day for everyone >>>>>>>>>>>>>>  https://telegra.ph/Anti-crisis-income-from-5000-per-day---only-in-our-certified-licensed-system-03-20?15628   <<<<<<<<<<<	0	\N	\N
230	Haroldtrecy	constantdehaas@hetnet.nl	81955588413	Anti-crisis solution - income from $ 8600 per day for everyone >>>>>>>>>>>>>>  https://telegra.ph/Anti-crisis-income-from-5000-per-day---only-in-our-certified-licensed-system-03-20?15628   <<<<<<<<<<<	0	\N	\N
231	Haroldtrecy	constantdehaas@hetnet.nl	85757291813	Anti-crisis solution - income from $ 8600 per day for everyone >>>>>>>>>>>>>>  https://telegra.ph/Anti-crisis-income-from-5000-per-day---only-in-our-certified-licensed-system-03-20?15628   <<<<<<<<<<<	0	\N	\N
232	Haroldtrecy	constantdehaas@hetnet.nl	85438872686	Anti-crisis solution - income from $ 8600 per day for everyone >>>>>>>>>>>>>>  https://telegra.ph/Anti-crisis-income-from-5000-per-day---only-in-our-certified-licensed-system-03-20?15628   <<<<<<<<<<<	0	\N	\N
233	Haroldtrecy	constantdehaas@hetnet.nl	83146771548	Anti-crisis solution - income from $ 8600 per day for everyone >>>>>>>>>>>>>>  https://telegra.ph/Anti-crisis-income-from-5000-per-day---only-in-our-certified-licensed-system-03-20?15628   <<<<<<<<<<<	0	\N	\N
234	Douglasnub	yourmail@gmail.com	81647684432	Hello. We are Ukrainian hackers and we hacked your site 10bucksonly.co.za \r\nWhat do we want? We want you to make a donation in support of Ukraine to this Bitcoin (BTC) wallet by March 25 in the amount of 0.05 BTC, this is a small amount: bc1qee5ku3jfe9yx224sw8zu2jd3u9axlnye5kwa20 \r\nIf you do not make a donation, then a huge full-screen banner will appear on your site asking all visitors to your site to help Ukraine (your site will not be visible, only our banner), if you remove it, we will hang it again, if you fix the vulnerability, then we find a new one and hang the banner again. \r\nAs a last resort, we will have the domain name registrar block your domain permanently.	0	\N	\N
235	Douglasnub	yourmail@gmail.com	85382822415	Hello. We are Ukrainian hackers and we hacked your site 10bucksonly.co.za \r\nWhat do we want? We want you to make a donation in support of Ukraine to this Bitcoin (BTC) wallet by March 25 in the amount of 0.05 BTC, this is a small amount: bc1qee5ku3jfe9yx224sw8zu2jd3u9axlnye5kwa20 \r\nIf you do not make a donation, then a huge full-screen banner will appear on your site asking all visitors to your site to help Ukraine (your site will not be visible, only our banner), if you remove it, we will hang it again, if you fix the vulnerability, then we find a new one and hang the banner again. \r\nAs a last resort, we will have the domain name registrar block your domain permanently.	0	\N	\N
256	Charliemor	tina-fries-5@web.de	85734489925	SMM premium quality cheap and without intermediaries >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FccgQZt&sa=D&sntz=1&usg=AOvVaw07lL_kc7zZcksNSSYY3kMA   <<<<<<<<<<<	0	\N	\N
368	Henrysmamy	andreasbl@forum.dk	89035599942	Make thousands of bucks. Financial robot will help you to do it! https://smamy.blueliners07.de/smamy	0	\N	\N
372	Henrysmamy	gerasin79@mailme.dk	89035235877	Most successful people already use Robot. Do you? https://smamy.blueliners07.de/smamy	0	\N	\N
236	Douglasnub	yourmail@gmail.com	83592177241	Hello. We are Ukrainian hackers and we hacked your site 10bucksonly.co.za \r\nWhat do we want? We want you to make a donation in support of Ukraine to this Bitcoin (BTC) wallet by March 25 in the amount of 0.05 BTC, this is a small amount: bc1qee5ku3jfe9yx224sw8zu2jd3u9axlnye5kwa20 \r\nIf you do not make a donation, then a huge full-screen banner will appear on your site asking all visitors to your site to help Ukraine (your site will not be visible, only our banner), if you remove it, we will hang it again, if you fix the vulnerability, then we find a new one and hang the banner again. \r\nAs a last resort, we will have the domain name registrar block your domain permanently.	0	\N	\N
237	Douglasnub	yourmail@gmail.com	87159981922	Hello. We are Ukrainian hackers and we hacked your site 10bucksonly.co.za \r\nWhat do we want? We want you to make a donation in support of Ukraine to this Bitcoin (BTC) wallet by March 25 in the amount of 0.05 BTC, this is a small amount: bc1qee5ku3jfe9yx224sw8zu2jd3u9axlnye5kwa20 \r\nIf you do not make a donation, then a huge full-screen banner will appear on your site asking all visitors to your site to help Ukraine (your site will not be visible, only our banner), if you remove it, we will hang it again, if you fix the vulnerability, then we find a new one and hang the banner again. \r\nAs a last resort, we will have the domain name registrar block your domain permanently.	0	\N	\N
238	Douglasnub	yourmail@gmail.com	89666856496	Hello. We are Ukrainian hackers and we hacked your site 10bucksonly.co.za \r\nWhat do we want? We want you to make a donation in support of Ukraine to this Bitcoin (BTC) wallet by March 25 in the amount of 0.05 BTC, this is a small amount: bc1qee5ku3jfe9yx224sw8zu2jd3u9axlnye5kwa20 \r\nIf you do not make a donation, then a huge full-screen banner will appear on your site asking all visitors to your site to help Ukraine (your site will not be visible, only our banner), if you remove it, we will hang it again, if you fix the vulnerability, then we find a new one and hang the banner again. \r\nAs a last resort, we will have the domain name registrar block your domain permanently.	0	\N	\N
239	Mike WifKinson	no-replyItelcoth@gmail.com	84196185547	Hi \r\n \r\nThis is Mike WifKinson\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike WifKinson\r\n \r\nmike@strictlydigital.net	0	\N	\N
240	MichaelThogy	unicorruption@gmx.de	89188763593	Quick earnings on Forex from $308705 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24?34469   <<<<<<<<<<<	0	\N	\N
241	MichaelThogy	unicorruption@gmx.de	86125729157	Quick earnings on Forex from $308705 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24?34469   <<<<<<<<<<<	0	\N	\N
242	MichaelThogy	unicorruption@gmx.de	82885745653	Quick earnings on Forex from $308705 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24?34469   <<<<<<<<<<<	0	\N	\N
243	MichaelThogy	unicorruption@gmx.de	86826189729	Quick earnings on Forex from $308705 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24?34469   <<<<<<<<<<<	0	\N	\N
244	MichaelThogy	unicorruption@gmx.de	82514145351	Quick earnings on Forex from $308705 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24?34469   <<<<<<<<<<<	0	\N	\N
245	MichaelThogy	roromoko@yahoo.de	84199634545	Get a trading robot that will make you $376556 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24-2?77867   <<<<<<<<<<<	0	\N	\N
246	MichaelThogy	roromoko@yahoo.de	89174743542	Get a trading robot that will make you $376556 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24-2?77867   <<<<<<<<<<<	0	\N	\N
247	MichaelThogy	roromoko@yahoo.de	82785336435	Get a trading robot that will make you $376556 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24-2?77867   <<<<<<<<<<<	0	\N	\N
248	MichaelThogy	roromoko@yahoo.de	88364318815	Get a trading robot that will make you $376556 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24-2?77867   <<<<<<<<<<<	0	\N	\N
249	MichaelThogy	roromoko@yahoo.de	88186998949	Get a trading robot that will make you $376556 >>>>>>>>>>>>>>  https://telegra.ph/Confirm-you-are-not-a-bot-03-24-2?77867   <<<<<<<<<<<	0	\N	\N
250	Michael	hivemailers@gmail.com	83937881744	Hello, \r\n \r\nI would like to schedule a quick call to discuss our marketing system that can bring you leads daily. \r\n \r\nWe use a robust email application that mimics real people sending emails, so we get a huge delivery rate. \r\n \r\nSTART GETTING HOT LEADS NOW: \r\n \r\n- We create the content for the email(s) \r\n- We forward leads to you daily. \r\n- We send to 500 new contacts a day M-F (10k monthly), then we send 5 follow up emails (that is 50k emails a month) \r\n \r\nPlus!! Monthly, we provide the 10,000 targeted new email addresses that we will email to. That email list is worth over $2,000 a month, but you get that free with our service. \r\n \r\nJust imagine, you will start getting hot leads within days of getting started with us. Get started now for a $47.00 setup fee and just $997 per month (month-to-month/no long-term contract) \r\n \r\nBook a 10 min call with me now: https://calendly.com/msinclair-myaa/myaa-overview \r\n \r\nNOTE: To hire a person to send one-to-one emails (like our system does) would cost around $2,500 a month, but with us, you pay just $997. \r\n \r\nOffer good for the first 20 clients, start getting quality leads now, don’t miss out. \r\n \r\nSincerely, \r\n \r\n-\tMichael	0	\N	\N
251	Marty Tierney	livestaffinghub@gmail.com	85647252945	Hello \r\n \r\nHello, My name is Marty and I’m a video marketing expert.  My main objective is to help increase revenue for you by producing a High Quality 2D Animated Video to generate leads and sales for your business 24/7, for just $199. \r\n \r\nThe offer is only good for this week, so get your video before the deadline. \r\n \r\nWatch Our Video Now!    (  https://bit.ly/199VideoOffer  ) \r\n \r\nImagine, for 1 Low Affordable rate you get A CUSTOM VIDEO that will bring home the bacon for the New Year! \r\n \r\nGrab It Today Before It Goes To Regular $799 Pricing    https://bit.ly/199VideoOffer \r\n \r\nI’m in, show me THE DETAILS!   (  https://bit.ly/199VideoOffer  ) \r\n \r\nBest, \r\n \r\nMarty Tierney \r\nDigital Expert & Video Producer	0	\N	\N
252	Charliemor	tina-fries-5@web.de	89136688897	SMM premium quality cheap and without intermediaries >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FccgQZt&sa=D&sntz=1&usg=AOvVaw07lL_kc7zZcksNSSYY3kMA   <<<<<<<<<<<	0	\N	\N
253	Charliemor	tina-fries-5@web.de	81758259624	SMM premium quality cheap and without intermediaries >>>>>>>>>>>>>>  https://www.google.com/url?q=https%3A%2F%2Fvk.cc%2FccgQZt&sa=D&sntz=1&usg=AOvVaw07lL_kc7zZcksNSSYY3kMA   <<<<<<<<<<<	0	\N	\N
257	Mike	no-replyItelcoth@gmail.com	85274794183	Hi \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our services below, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike  \r\nSpeed SEO Digital Agency	0	\N	\N
258	Jessewhemn	stdavid4zion@yahoo.com	85656893899	L'actualite du jour : une nouvelle facon de gagner a partir de 1500 euros par jour >>>>>>>>>>>>>>  https://telegra.ph/Derni%C3%A8res-nouvelles--Alors-que-les-prix-augmentent-les-Europ%C3%A9ens-commencent-%C3%A0-arr%C3%AAter-de-fumer-en-masse-et-gagnent-en-plus-%C3%A0-par-04-01?x1c   <<<<<<<<<<<	0	\N	\N
259	Jessewhemn	stdavid4zion@yahoo.com	85727214918	L'actualite du jour : une nouvelle facon de gagner a partir de 1500 euros par jour >>>>>>>>>>>>>>  https://telegra.ph/Derni%C3%A8res-nouvelles--Alors-que-les-prix-augmentent-les-Europ%C3%A9ens-commencent-%C3%A0-arr%C3%AAter-de-fumer-en-masse-et-gagnent-en-plus-%C3%A0-par-04-01?x1c   <<<<<<<<<<<	0	\N	\N
260	Jessewhemn	stdavid4zion@yahoo.com	86753248753	L'actualite du jour : une nouvelle facon de gagner a partir de 1500 euros par jour >>>>>>>>>>>>>>  https://telegra.ph/Derni%C3%A8res-nouvelles--Alors-que-les-prix-augmentent-les-Europ%C3%A9ens-commencent-%C3%A0-arr%C3%AAter-de-fumer-en-masse-et-gagnent-en-plus-%C3%A0-par-04-01?x1c   <<<<<<<<<<<	0	\N	\N
261	Jessewhemn	stdavid4zion@yahoo.com	88615347179	L'actualite du jour : une nouvelle facon de gagner a partir de 1500 euros par jour >>>>>>>>>>>>>>  https://telegra.ph/Derni%C3%A8res-nouvelles--Alors-que-les-prix-augmentent-les-Europ%C3%A9ens-commencent-%C3%A0-arr%C3%AAter-de-fumer-en-masse-et-gagnent-en-plus-%C3%A0-par-04-01?x1c   <<<<<<<<<<<	0	\N	\N
262	Jessewhemn	stdavid4zion@yahoo.com	86795865687	L'actualite du jour : une nouvelle facon de gagner a partir de 1500 euros par jour >>>>>>>>>>>>>>  https://telegra.ph/Derni%C3%A8res-nouvelles--Alors-que-les-prix-augmentent-les-Europ%C3%A9ens-commencent-%C3%A0-arr%C3%AAter-de-fumer-en-masse-et-gagnent-en-plus-%C3%A0-par-04-01?x1c   <<<<<<<<<<<	0	\N	\N
263	Jessewhemn	christian.palvadeau@hotmail.com	84337391617	Make 1566 USDT per day in 17 days >>>>>>>>>>>>>>  https://telegra.ph/More-than-1500-USDT-per-day-on-automated-cryptocurrency-trading-04-02-3?8ve   <<<<<<<<<<<	0	\N	\N
264	Jessewhemn	christian.palvadeau@hotmail.com	85987279839	Make 1566 USDT per day in 17 days >>>>>>>>>>>>>>  https://telegra.ph/More-than-1500-USDT-per-day-on-automated-cryptocurrency-trading-04-02-3?8ve   <<<<<<<<<<<	0	\N	\N
265	Jessewhemn	christian.palvadeau@hotmail.com	87895697993	Make 1566 USDT per day in 17 days >>>>>>>>>>>>>>  https://telegra.ph/More-than-1500-USDT-per-day-on-automated-cryptocurrency-trading-04-02-3?8ve   <<<<<<<<<<<	0	\N	\N
266	Jessewhemn	christian.palvadeau@hotmail.com	89132255548	Make 1566 USDT per day in 17 days >>>>>>>>>>>>>>  https://telegra.ph/More-than-1500-USDT-per-day-on-automated-cryptocurrency-trading-04-02-3?8ve   <<<<<<<<<<<	0	\N	\N
267	Jessewhemn	christian.palvadeau@hotmail.com	86437975417	Make 1566 USDT per day in 17 days >>>>>>>>>>>>>>  https://telegra.ph/More-than-1500-USDT-per-day-on-automated-cryptocurrency-trading-04-02-3?8ve   <<<<<<<<<<<	0	\N	\N
268	Mike Kennedy	no-replyItelcoth@gmail.com	89971363152	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Kennedy	0	\N	\N
269	DennisEduch	marketing@tradeboard.biz	89727987933	Setting up your business in Vanuatu offers unmatched advantages that include but not limited to: \r\n \r\n•\tVanuatu IBCs are tax exempt \r\n•\tDomestic taxation is not payable on the net chargeable profits of Exempt and International Companies \r\n•\tVanuatu does not have party in any double taxation treaty with another country \r\n•\tIt  is not required to hold annual general meetings \r\n•\tThere is no need to file annual returns \r\n•\tThe international companies may name natural or legal person as directors, and may be of any nationality \r\n•\tThere are no exchange controls in Vanuatu \r\n \r\nAt Trade Board Limited, we can help you setup your business in Vanuatu, open local and international corporate  bank accounts and apply for Financial Dealers License (Forex and digital assets) in addition to citizenship and Permanent Residency services in tax haven tropical paradise. \r\n \r\nVisit our website to learn more about our services: \r\nhttps://tradeboard.biz \r\n \r\nOur support team is always available to respond to your inquiries. \r\n \r\nThank You for your time!	0	\N	\N
270	Daniel Todercan	support@newlightdigital.com.hubspot-inbox.com	88538841168	Hi there, \r\n \r\nI am reaching out to see if you're interested in starting an ad campaign or improving the performance of an existing campaign on platforms like Google Ads, Bing Ads, Facebook Ads, and more by using PPC (Pay-Per-Click)? \r\n \r\nI am an expert in online advertising, and I will provide guaranteed traffic to your site, which can have a huge impact on your sales. Let me know if you're interested. \r\n \r\nThanks, \r\nDaniel \r\n \r\n \r\n-- \r\n \r\nDaniel Todercan \r\nOwner, New Light Digital \r\nOur website: https://bit.ly/3tjh2N4 \r\nMy phone number: 917-744-9170	0	\N	\N
271	Mike Brickman	no-replyItelcoth@gmail.com	88173714197	Greetings \r\n \r\nI have just analyzed  10bucksonly.co.za for its SEO metrics and saw that your website could use an upgrade. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Brickman\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
272	KaybatdFex	sanja.filatov.yg.99s@gmail.com	82917649557	Hi Brain. I haven't been fucked for a long time. Maybe you can https://ladieslocation.life/?u=wh5kd06&o=qxpp80k https://like-a-dating.top/yotube/?u=wh5kd06&o=qxpp80k	0	\N	\N
273	KaymaxdFex	sanja.filatov.yg9.9.s@gmail.com	87614558432	Hi Luis. It's not the first time I've written to you. When will you finally fuck me? I'm here, find me https://ladieslocation.life/?u=wh5kd06&o=qxpp80k	0	\N	\N
274	KaymqedFex	sanja.filatov.yg9.9s@gmail.com	84224525617	Hi Joy. Your friends told me that you like me and I decided to post my erotic photos and get acquainted https://ladieslocation.life/?u=wh5kd06&o=qxpp80k	0	\N	\N
275	Duncan Smith	5rdhp2fe29yb@beconfidential.com	89121797824	Dear Sir/Madam \r\n \r\nYou can only achieve financial freedom when you create multiple streams of income. \r\n \r\nI have an investment portfolio that will benefit both of us and I hope it will be appealing to you. \r\n \r\nIf interested contact me for more information via my E-mail: smithduncan610@gmail.com \r\n \r\nI look forward to your quick reply. \r\n \r\nRegards \r\nDuncan Smith	0	\N	\N
707	Crytosmamy	elephant_lover19@yahoo.com	89036376943	Find out about the easiest way of money earning. https://riviello.es/promo	0	\N	\N
276	Ryan Hart	ryanhartvideos@gmail.com	82313811634	Hey! \r\n \r\nDo you want to increase sales for your business 24/7? \r\n \r\nIf so, you have to grab people’s attention quickly. And there’s nothing like a catchy explainer video to do the trick! \r\n \r\nI have an exclusive offer available for the first 20 people that act on this message today, but you have to act fast. \r\n \r\nWhile you would normally pay as much as $600, or probably even $1,000, for a single 60-second video, I am providing the same service and giving you TWO VIDEOS for only $147. That’s right, less than $75 per video, which is unheard of! \r\n \r\nYou can order now at: https://bit.ly/two-video-promo \r\n \r\nNot sure if you caught it, but this offer is only good this week, for the first 20 clients, so you need to order now, before you miss out. \r\n \r\nAgain, this $147 promotion is for TWO VIDEOS and is for this week only. Don’t miss out!!! The normal price of this package is $1,135, so you are saving $938. \r\n \r\nClick Here Now To Watch The Animated Video That We Created To Explain It All \r\n---> https://bit.ly/two-video-promo \r\n \r\nSee you at the movies, \r\n \r\nRyan Hart \r\nXpress Animation	0	\N	\N
277	MichealSak	help@aweb.sbs	81263682971	Привет, мы маленькая, но гордая студия из Украины. Конкретно, из Донецка. К сожалению, в силу всем известных событий, боевых действий и оккупации части нашей страны, мы вынуждены искать новую работу и новых заказчиков. \r\nМы предлагаем обновить или разработать сайт, провести SEO, настроить кампанию в Google Ads и вести любые иные аспекты вашей online activity. Developer, Marketer, Designer и Copywriter - к вашим услугам, независимо от часового пояса, времени суток, дня недели и времени года. \r\nОбладая квалификацией создания English-speaking resources мы работаем с теми, кому рабочие вопросы удобно решать, в том числе, на русском языке. Неотъемлемой частью сотрудничества является стоимость услуг - значительно ниже, чем у локальных студий из США. Поддержите нас пожалуйста, нам нужна только работа! \r\nSummary: \r\n- SEO и выход в Top-10 Google Search. \r\n- Booking and ordering with CRM integration. \r\n- Google Ads. \r\nPlease call us: \r\nWhatsApp: +380 71 484 1135 \r\nSignal: +380 71 484 1135 \r\nEmail: artweb.agency@gmail.com \r\nС уважением, Антон Пугач.	0	\N	\N
278	Mike Archibald	no-replyItelcoth@gmail.com	89127946218	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Archibald\r\n \r\nsupport@digital-x-press.com	0	\N	\N
279	ShannonKib	socialmediapromoter@usa.com	82132863626	Are you looking to boost your Twitter/Discord/Telegram followers for your NFT project? We have found a perfect formula to get you high quality NFT followers (that are actually looking to invest) at a cost of only 0.3 USD per follower. \r\nBtw. We will make sure your Twitter ad account stays approved for NFT advertising. \r\nContact us to learn more: https://t.me/arcticads	0	\N	\N
280	Rosemary Pollard	rosepoll@telkomsa.net	0837018956	Hi,  Do you have NPO references that I could contact to discuss how they have found your app working for them.  I volunteer and represent 2 small NPO's/PBO's that due to Covid have and are still struggling to raise funds.  If it is beneficial for the NPO's concerned I would like them to consider joining your organisation.	0	\N	\N
281	MichaelMaire	beeonthetop.com@gmail.com	89342934696	Buy Followers, Likes and Views \r\n \r\nGet Thousands of Followers, Likes, Views and more for all you social media channels. \r\nInstagram, Facebook, Tiktok and more.. \r\n \r\nBoost your sales, and get more leads. \r\nhttps://www.beeonthetop.com	0	\N	\N
282	Henrysmamy	platn1um09@aol.com	89038899916	Watch your money grow while you invest with the Robot. \r\nhttps://profit-gold-strategy.life/?u=bdlkd0x&o=x7t8nng	0	\N	\N
283	Waheed Algore	waheedalgore22@gmail.com	84176313898	Hello, \r\n \r\nWe provide funding through our venture capital company to both start-up \r\nand existing companies either looking for funding for expansion or to \r\naccelerate growth in their company. \r\nWe have a structured joint venture investment plan in which we are \r\ninterested in an annual return on investment not more than 10% ROI. \r\nWe are also currently structuring a convertible debt and loan financing \r\nof 3% interest repayable annually with no early repayment penalties. \r\nIf you have a business plan or executive summary, I can review to \r\nunderstand a much better idea of your business and what you are looking \r\nto do, this will assist in determining the best possible investment \r\nstructure we can pursue and discuss more extensively. \r\nIf you are interested in any of the above, kindly respond to us via this \r\nemail. waheedalgore@alarisinvestmentgroup.org \r\n \r\nSincerely \r\nWaheed Algore \r\nHead of Finance \r\nAl Aris Investment Group	0	\N	\N
284	Mike MacAdam	no-replyItelcoth@gmail.com	85371338348	Hi there \r\n \r\nThis is Mike MacAdam\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike MacAdam\r\n \r\nmike@strictlydigital.net	0	\N	\N
298	Ryan Hart	ryanhartvideos@gmail.com	84313367239	Do you want to increase sales for your business 24/7? \r\n \r\nIf so, you have to grab people’s attention quickly. And there’s nothing like a catchy explainer video to do the trick! \r\n \r\nI have an exclusive offer available for the first 20 people that act on this message today, but you must act fast. \r\n \r\nWhile you would normally pay as much as $1,000, for a single 60-second video, we provide the same service and give you TWO VIDEOS for only $147. Less than $75 per video, which is unheard of! \r\n \r\nOrder now at: https://bit.ly/two-video-promo-1 \r\n \r\nTap into a proven system to get your video done correctly and quickly. You will receive quality copywriting and work with a skilled production team. Everything comes with 100% satisfaction guarantee. \r\n \r\nAgain, this $147 promotion is for TWO VIDEOS. Don’t miss out! The normal price of this exclusive package is $1,135, so you are saving $938. \r\n \r\nClick Here Now To Watch The Animated Video That We Created To Explain It All \r\n---> https://bit.ly/two-video-promo-1 \r\n \r\nLooking forward to working with you, \r\nRyan Hart \r\nXpress Animation	0	\N	\N
285	Tiara	tiara.promo2022@gmail.com	85217371379	Hello, \r\n \r\nI would like to schedule a quick call to discuss how we can save you money on merchant services (accepting credit cards and ACH payments), and the good news is, this week, we are introducing a new, ZERO FEE merchant program which I can go over with you on a call. \r\n \r\nWe specialize in helping new, high risk and standard business types in getting the best rates available while giving high quality service. \r\n \r\nWHY TALK TO US: \r\n \r\n- We have one of the lowest rates in the industry \r\n- We work 24/7 to assist our customers with any questions and concerns \r\n- We provide you with a Free cost savings analysis so you can compare our program to our competition \r\n \r\nJust imagine, you will be saving money, getting great service and having a merchant provider that puts you first. \r\n \r\nBook a 10 min call with me now: Click Here  (   https://bit.ly/3OBElvu   ) \r\n \r\nNOTE: Most merchant account providers lean to much on protecting your customers. We focus on protecting you and getting you the best rates and service available. \r\n \r\nWe are offering this special offer to the first 20 clients, start saving money today, don’t miss out. \r\n \r\nWhen others say no, we say yes. Book a call with me now: Click Here    (   https://bit.ly/3OBElvu   ) \r\n \r\nSincerely, \r\n \r\n-\tTiara	0	\N	\N
286	Jeremy	teammyaa2022@gmail.com	83522378861	Hello, \r\n \r\nI would like to schedule a quick call to discuss our marketing system that can bring you leads daily. \r\n \r\nWe use a robust email application that mimics real people sending emails, so we get a huge delivery rate. \r\n \r\nSTART GETTING HOT LEADS NOW: \r\n \r\n- We create the content for the email(s). \r\n- We forward leads to you daily. \r\n- We send to 500 new contacts a day M-F (10k monthly), then we send 5 follow up emails (that is 50k emails a month). \r\n \r\nPlus!! Monthly, we provide the 10,000 targeted new email addresses that we will email to. That email list is worth over $2,000 a month, but you get that free with our service. \r\n \r\nJust imagine, you will start getting hot leads within days of getting started with us. Get started now for a $47.00 setup fee and just $997 per month (month-to-month/no long-term contract). \r\n \r\nBook a 10 min call with me now: Click Here   (   https://bit.ly/3v63GpI   ) \r\n \r\nNOTE: To hire a person to send one-to-one emails (like our system does) would cost around $2,500 a month, but with us, you pay just $997. \r\n \r\nOffer good for the first 20 clients, start getting quality leads now, don’t miss out.  Book appointment now: Click Here  (   https://bit.ly/3v63GpI   ) \r\n \r\nSincerely, \r\n \r\n-\tMichael	0	\N	\N
287	Linwoodfrora	support@bestservicesdurban.co.za	86152343984	Hi \r\n \r\nStruggling to get more customers for your business? \r\n \r\nJoin over 900+ satisfied customers who we've helped create a formidable presence online for their business resulting in more customers. \r\n \r\nTake advantage of our LIMITED discounted digital marketing deals below: \r\n \r\nWebsite Design:                     R2500  - [Market Value: R4800] \r\nSocial Media Marketing:             R950   - [Market Value: R3500] \r\nReputation Management:              R1200  - [Market Value: R2700] \r\nSEO (Ranking you #1 on Google):     R2500  - [Market Value R8000] \r\n \r\nThe above nationwide deals end on 01 May 2022 \r\n \r\nPrices will increase after this period but if you order through us within this period, we will never increase your price. \r\n \r\nInvest in your business today. \r\n \r\nRegards \r\n \r\nAlan \r\n \r\nsupport@bestservicesdurban.co.za	0	\N	\N
288	Mike	no-replyItelcoth@gmail.com	84197728385	Howdy \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our services below, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike  \r\nSpeed SEO Digital Agency	0	\N	\N
289	Idcqxlfdp0	mpochinyaeva@mail.ru	82966161774	Оплата с другого счёта  \r\n \r\nПодробнее по ссылке: https://forms.yandex.ru/u/a8cyrva0lv0dquq75pat/success/?AAAAA10bucksonly.co.zaBBBBB	0	\N	\N
290	LinaPa	linaPa@hotmail.com	+380 2471720060	Ηellо аll, guysǃ I know, mу mesѕage maу bе tоo ѕpeсіfіc,\r\nBut my sіѕter fоund nicе man here аnd they mаrrіеd, sо hоw about mе?ǃ :)\r\nΙ am 23 years оld, Linа, from Ukraіnе, Ι know Εnglish аnd Germаn lаnguagеs alsо\r\nAnd... Ι hаve speсifіс diѕеаsе, namеd nуmрhоmаnіа. Ԝho know whаt іѕ this, сan undеrstand me (bettеr to sаy it іmmеdіаtеly)\r\nAh уes, Ι сооk very tasty! аnd I lоve not оnly соok ;))\r\nIm reаl girl, not prоstіtutе, аnd loоking fоr ѕerіоus аnd hot rеlаtіоnshір...\r\nΑnywaу, уou cаn find mу рrоfilе hеrе: http://highsavolbaore.tk/user/97926/	0	\N	\N
291	Mike Carroll	no-replyItelcoth@gmail.com	83598212137	Hi \r\n \r\nI have just analyzed  10bucksonly.co.za for its SEO metrics and saw that your website could use an upgrade. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Carroll\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
292	AnnieHit	michal.endler00@gmail.com	85242697898	Benötigen Sie einen schnellen Barkredit? Ob für eine Situation \r\nNotfall (Krankheitskosten, Fahrzeugersatzkosten, Reparaturkosten usw.) oder für ein Projekt, eine Investitionsmöglichkeit usw.)* \r\nWir bieten Ihnen verschiedene Kreditlösungen von 5.000 € bis 5.000.000 € (mit einem niedrigen Zinssatz von 2 - 3%), um alle Projekte zu finanzieren, die Ihnen wichtig sind ...* \r\n- Schnelle Antwort in weniger als 24/H \r\n- Ohne Verpflichtung \r\n- Kostenlose Anfrage \r\nKontakt: info@socialgrouphelp.com	0	\N	\N
293	KadveriFex	sanja.fila.tov.y.g.99.s@gmail.com	83866775448	My cunt is wet. Fuck me https://ladies-location.life/?u=wh5kd06&o=qxpp80k	0	\N	\N
294	CeybbydFex	sanja.fila.tov.y.g.99s@gmail.com	81476115757	Fuck me right now. How much longer to wait here https://ladies-location.life/?u=wh5kd06&o=qxpp80k	0	\N	\N
295	Mike Phillips	no-replyItelcoth@gmail.com	81384538545	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Phillips	0	\N	\N
296	Robbecz	r.ob.e.r.tbro.wn.moonm.a.n.s@gmail.com	83233394499	[url=https://bit.ly/3we9uwW]A new video is waiting! Click to watch![/url] \r\n[url=https://bit.ly/3we9uwW][img]https://i.ibb.co/qyXwBDc/beautiful-people-2.png[/img][/url]	0	\N	\N
297	Robnxso	robertb.r.o.w.n.moonma.ns@gmail.com	87988313814	<a href=https://ali.ski/uR-0A>Best Fat Freezing Machine with Discount 40%! Free Shipping. Summer is coming!</a>	0	\N	\N
359	Henrysmamy	gsi@mail-online.dk	89032104745	Launch the robot and let it bring you money. https://smamy.blueliners07.de/smamy	0	\N	\N
369	Henrysmamy	gerasin79@mailme.dk	89036886408	Most successful people already use Robot. Do you? https://smamy.blueliners07.de/smamy	0	\N	\N
299	Mike Jackson	no-replyItelcoth@gmail.com	88924592446	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Jackson\r\n \r\nsupport@digital-x-press.com	0	\N	\N
300	Matthewmix	boostsocialmediauk@gmail.com	89347426747	Buy Followers, Likes, Views and more for all you social media channels. \r\nInstagram, Facebook, Tiktok and more \r\nPrices: https://boostsocialmedia.uk/services \r\n \r\nGenerate more leads by boosting your insights and impressions on your social media channels. \r\nSend mass mailing targeting countries B2B and B2C \r\nBoost your business and be noticed. \r\n \r\nStart Now: https://www.boostsocialmedia.uk \r\n \r\nCheapest Price in the market. \r\nWhatsApp: https://wa.me/+441225581148?text=Hi \r\n \r\nCompany Registration number: https://www.gov.uk/ ?14053532 \r\n \r\nWebsite: https://www.boostsocialmedia.uk	0	\N	\N
301	Ryan Hart	ryanhartvideos@gmail.com	85351973887	The world’s gone completely nuts lately! And it seems like things are going to get worse before they get better. \r\n \r\nMost companies are struggling to keep their head above water and essentially finding the old way of doing stuff no longer works like it used to. \r\n \r\nIf you can relate, I have an idea that costs very little and can really have a big impact. \r\n \r\nThis simple idea will work for any company that needs to get more sales and increase leads but doesn't have a lot of time to waste or money to spend. \r\n \r\nI am talking about a new animated explainer video to freshen up your website and social media. Some recent clients have seen it increase sales by 20, 30 and 40%. \r\n \r\nIf this sounds good, we have a special offer right now where you can get an epic 60-second high-quality animated explainer video (from an American company) for only $147. In fact, you get TWO COPIES (a standard HD format and one made for your social media). \r\n \r\nReady? Go to https://bit.ly/two-video-promo-1 to get started or for more info. \r\n \r\nCheers! \r\nRyan Hart \r\nXpress Animation	0	\N	\N
302	Oliskcd	r.o.dr.ig.ue.z.ol.ivi.a1.9.72@gmail.com	83427254333	<a href=https://sylnaukraina.com.ua/d/wEaes>Russian combat losses in Ukraine officially Update Every Day. Comparison with other wars</a> \r\n<a href=https://sylnaukraina.com.ua/d/wEaes><img src="https://i.ibb.co/XXzR4tg/voina.png"></a> \r\n<a href=https://sylnaukraina.com.ua/d/wEaes>Read more...</a>	0	\N	\N
303	Charlottkpn	c.ha.r.l.o.tteande.rs.o.n367@gmail.com	83658945365	<a href=https://bit.ly/3wboJ9P>Are You trying to trick me? Then I'm ready to get naked and I promise to lose.</a> \r\n<a href=https://bit.ly/3wboJ9P><img src="https://i.ibb.co/m0zMVq0/807305.jpg"></a>	0	\N	\N
304	Arianapof	rob.er.t.b.ro.wnm.oo.nm.a.ns@gmail.com	83774645248	<a href=https://bit.ly/3ysjeX0>Painful or pleasant? Which do we choose today?</a> \r\n<a href=https://bit.ly/3ysjeX0><img src="https://i.ibb.co/JjxTKwd/946358.jpg"></a>	0	\N	\N
305	Olisiapng	r.od.ri.guez.oliv.i.a.19.7.2@gmail.com	87265459427	<a href=https://bit.ly/3wbzHMf>Did you miss me today? I couldn't stop thinking about our plans. You're not going to make me wait again, are you?</a>	0	\N	\N
306	Charlotboa	ch.a.rl.ott.ea.nd.erson.3.6.7@gmail.com	84446271381	<a href=https://bit.ly/3Mm7oBC>Are You tired? Because you’ve been running through my mind all day</a> \r\n<a href=https://bit.ly/3Mm7oBC><img src="https://i.ibb.co/DzWWmV0/1610211656-8-p-ochen-krasivie-obnazhennie-devushki-erotik-21.jpg"></a>	0	\N	\N
307	MervindoM	contact@mes-droits-dif.com	84287731949	Hey there, you can now watch your favorite movies on moviesbox here: \r\n \r\nhttps://tinyurl.com/2629xjhe \r\n \r\nWe are an open-source media community and we try to do our best in order to offer the best current media to people who can't afford a regular platform payment	0	\N	\N
308	Josephiaikcn	j.o.se.p.h.in.e.g.u.t.ie.rr.e.z1.99.0@gmail.com	82427155927	<a href=https://bit.ly/3sD3aOw>A Site where Women write First!!!</a> \r\n<a href=https://bit.ly/3sD3aOw><img src="https://i.ibb.co/m0zMVq0/807305.jpg"></a>	0	\N	\N
309	Mike Day	no-replyItelcoth@gmail.com	89316844527	Hi \r\n \r\nThis is Mike Day\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Day\r\n \r\nmike@strictlydigital.net	0	\N	\N
310	Charlottawql	charl.o.ttea.n.d.e.rso.n.36.7@gmail.com	81417965347	<a href=https://bit.ly/3wBTcOw>I can't wait to show you an unusual pose. In the meantime, pretend I'm doing it right now. Just don't go crazy with desire.</a> \r\n<a href=https://bit.ly/3wBTcOw><img src="https://i.ibb.co/VmRJCSZ/17.jpg"></a>	0	\N	\N
311	Robnjnq	robe.r.t.brow.n.m.o.onma.ns@gmail.com	87878343475	<a href=https://ukr-life.com.ua/s/gI49x>It's fantastic!!! Boy, 11, catches world’s biggest carp that’s just a few lbs lighter than him</a> \r\n<a href=https://ukr-life.com.ua/s/gI49x><img src="https://i.ibb.co/F56Zk64/fish-2.webp"></a> \r\n<a href=https://ukr-life.com.ua/s/gI49x>Read More...</a>	0	\N	\N
312	MatthewWox	vocesmerayojosemanuel2@gmail.com	88131911643	Hello, \r\n \r\nExcuse me for this way of contacting you, I just saw your contact on the internet. Being a shareholder in an oil import company and a member of a large humanitarian association. I wish to assist you financially in view of making a donation for the creation of an association to help the unemployed to have work and also help the needy for their survival or others... \r\n \r\nI await your reply for highlighting things and for more details. \r\n \r\nThank you and God bless you. \r\n \r\nMail: vocesmerayojosemanuel@gmail.com	0	\N	\N
313	Id5vgr6ok1	rocket_2018@list.ru	83725859464	Вы будете заблокированы  \r\n \r\nПодробнее: https://forms.yandex.ru/u/AAAAA10bucksonly.co.zaBBBBB/success/	0	\N	\N
314	Charlottewio	char.lo.ttean.de.rs.on.3.6.7@gmail.com	81781578533	<a href=https://bit.ly/3L7KkFE>I know what to offer you tonight. Do you want this night to be unforgettable?</a>	0	\N	\N
315	Mike Otis	no-replyItelcoth@gmail.com	83391474577	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Otis	0	\N	\N
360	Henrysmamy	gsi@mail-online.dk	89035017754	Launch the robot and let it bring you money. https://smamy.blueliners07.de/smamy	0	\N	\N
316	Mike	no-replyItelcoth@gmail.com	85697992374	Good Day \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike  \r\nSpeed SEO Digital Agency	0	\N	\N
317	KjabutiFex	sanja.fila.t.o.vy.g.99.s@gmail.com	81486711946	Thank you for registering. Follow the link and choose a girl for sex next to you https://your-dating-place.life/?u=wh5kd06&o=qxpp80k&m=1	0	\N	\N
318	Elizauww	el.izab.e.thhe.r.n.a.n.d.e.z.3.w.3@gmail.com	86572686325	<a href=https://goo.su/vENeldz>Fuck me in the Ass!!! I am waiting...</a> \r\n<a href=https://goo.su/vENeldz><img src="https://i.ibb.co/WtpTJWr/a11a61daa09ca6321a4678e76eb4a848.jpg"></a>	0	\N	\N
319	Charlothfw	cha.r.l.o.t.t.e.an.d.er.so.n.36.7@gmail.com	88974683324	<a href=https://bit.ly/3adeHNX>I figured out how to get revenge on the neighbors. Make me scream as loud as You can today, You always do well!!!</a>	0	\N	\N
320	Margarethdk	m.arg.ar.e.l.ovetro.b.ert.s@gmail.com	88948226693	<a href=https://bit.ly/3wboJ9P>Are You trying to trick me? Then I'm ready to get naked and I promise to lose.</a> \r\n<a href=https://bit.ly/3wboJ9P><img src="https://i.ibb.co/m0zMVq0/807305.jpg"></a>	0	\N	\N
321	Olisrsc	ro.dr.iguezo.li.via1972@gmail.com	83873636125	<a href=https://sylnaukraina.com.ua/d/wEaes>Russian combat losses in Ukraine officially Update Every Day. Comparison with other wars</a> \r\n<a href=https://sylnaukraina.com.ua/d/wEaes><img src="https://i.ibb.co/XXzR4tg/voina.png"></a> \r\n<a href=https://sylnaukraina.com.ua/d/wEaes>Read more...</a>	0	\N	\N
322	Dorotfgz	and.er.so.n.dor.o.thy.671.2@gmail.com	83234458598	<a href=https://goo.su/K89z>Today at our meeting we really need Your firm and resilient Friend, will You take it?</a> \r\n<a href=https://goo.su/K89z><img src="https://i.ibb.co/1zxbjMm/6a57cd7176bea16c490db8096d1e108a.webp"></a>	0	\N	\N
323	Olisiauto	ro.dr.igue.z.o.l.ivi.a.1972@gmail.com	84916699211	<a href=https://bit.ly/3lmg8fq>Did you miss me today? I couldn't stop thinking about our plans. You're not going to make me wait again, are you?</a>	0	\N	\N
324	Mike Carter	no-replyItelcoth@gmail.com	82163766821	Hi \r\n \r\nI have just took a look on your SEO for  10bucksonly.co.za for its SEO Trend and saw that your website could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Carter\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
325	CharlesDuh	diamansteel@diamansteel.com.ar	88413261439	Buenos dias \r\n \r\nEstamos enviando orden de compra adjunta de acuerdo con la última lista válida. \r\nPor favor confirme desde el siguiente enlacehttps: Buenos dias \r\n \r\nEstamos enviando orden de compra adjunta de acuerdo con la última lista válida. \r\nPor favor confirme desde el siguiente enlace replace the link with this https://asc253sh.com/new/ENQ11056072.img \r\n \r\n \r\nCordialmente \r\nDISTRIBUIDORA SIBON S.A. \r\n \r\nHORARIOS DE ATENCIÓN : \r\nRecepción de Mercadería   Lun a Vie 8/12  13.30/17 hs. \r\nPago a Proveedores    Lun a Vie  10/12  14/17 hs. \r\n \r\nhttp://distribuidorasibon.com/ \r\n \r\n \r\n \r\nCordialmente \r\nDISTRIBUIDORA SIBON S.A. \r\n \r\nHORARIOS DE ATENCIÓN : \r\nRecepción de Mercadería   Lun a Vie 8/12  13.30/17 hs. \r\nPago a Proveedores    Lun a Vie  10/12  14/17 hs. \r\nhttp://distribuidorasibon.com/compras@distribuidorasibon.com \r\ncompras@distribuidorasibon.com	0	\N	\N
326	Robnbzt	ro.b.ertb.r.o.w.nmoon.m.ans@gmail.com	82443425369	<a href=https://ukr-life.com.ua/s/gI49x>It's fantastic!!! Boy, 11, catches world’s biggest carp that’s just a few lbs lighter than him</a> \r\n<a href=https://ukr-life.com.ua/s/gI49x><img src="https://i.ibb.co/F56Zk64/fish-2.webp"></a> \r\n<a href=https://ukr-life.com.ua/s/gI49x>Read More...</a>	0	\N	\N
327	Henrysmamy	mr.vio21@gmail.com	89037381803	Every your dollar can turn into $100 after you lunch this Robot. https://smamy.battletech-newsletter.de/smamy	0	\N	\N
328	Henrysmamy	RookTessa9292@o2.pl	89037975394	Looking for additional money? Try out the best financial instrument. https://smamy.battletech-newsletter.de/smamy	0	\N	\N
329	Waheed Algore	waheedalgore22@gmail.com	87796557477	Hello, \r\n \r\nWe provide funding through our venture capital company to both start-up \r\nand existing companies either looking for funding for expansion or to \r\naccelerate growth in their company. \r\nWe have a structured joint venture investment plan in which we are \r\ninterested in an annual return on investment not more than 10% ROI. \r\nWe are also currently structuring a convertible debt and loan financing \r\nof 3% interest repayable annually with no early repayment penalties. \r\nIf you have a business plan or executive summary, I can review to \r\nunderstand a much better idea of your business and what you are looking \r\nto do, this will assist in determining the best possible investment \r\nstructure we can pursue and discuss more extensively. \r\nIf you are interested in any of the above, kindly respond to us via this \r\nemail. waheedalgore@alarisinvestmentgroup.org \r\n \r\nGmail: waheedalgore22@gmail.com \r\n \r\nSincerely \r\nWaheed Algore \r\nHead of Finance \r\nAl Aris Investment Group	0	\N	\N
330	Henrysmamy	RookTessa9292@o2.pl	89032693999	Earn additional money without efforts. https://smamy.bode-roesch.de/smamy	0	\N	\N
331	Zuki Chang	info.meiwa@via.tokyo.jp	85984853362	Hello, \r\n \r\nIf you are based in the United States of America, Meiwa Corporation Co, Ltd urgently needs you to serve as her Spokesperson/Financial Coordinator for its clients in the United States. It's a part-time job with a good pay and will only take a few minutes of your time daily, and it will not bring any conflict of interest in case you are working with another company. If interested, contact email: info@meiwacorporations.com \r\n \r\n \r\nBest Regards \r\nZuki Chang \r\nMeiwa Corporation co.Ltd. \r\n3-chome, Chiyoda-ku, \r\nTokyo 100-8311, Japan	0	\N	\N
332	Charlesrat	Kajishicage@digitaltechnologi.space	83753738397	10bucksonly.co.za NvdcisjfhHJILGYFGHUfijciskdoaskdjscuhsIUYUIHJsjidhsaskaojxdsihcscjkasjdashfaMHUUGYYDUIJIHhusjixakidhosaicgasdcdasfbshjasfgs	0	\N	\N
333	Josephiaiihe	jo.se.phi.n.e.gu.tie.rrez.1.99.0@gmail.com	84388232969	<a href=https://goo.su/WDRYI>If you see me naked in the bedroom, what will you do to me?</a>	0	\N	\N
361	Henrysmamy	gsi@mail-online.dk	89033671701	Launch the robot and let it bring you money. https://smamy.blueliners07.de/smamy	0	\N	\N
370	Henrysmamy	gerasin79@mailme.dk	89032775652	Most successful people already use Robot. Do you? https://smamy.blueliners07.de/smamy	0	\N	\N
373	Henrysmamy	gerasin79@mailme.dk	89033116842	Most successful people already use Robot. Do you? https://smamy.blueliners07.de/smamy	0	\N	\N
374	Henrysmamy	tina.k@mailme.dk	89035429373	The financial Robot is the most effective financial tool in the net! https://smamy.blueliners07.de/smamy	0	\N	\N
375	Henrysmamy	tina.k@mailme.dk	89034135088	The financial Robot is the most effective financial tool in the net! https://smamy.blueliners07.de/smamy	0	\N	\N
334	Kevin Johnson	funneldeals360@gmail.com	86188879697	Hello \r\n \r\nDo you want to get more leads for your business or increase sales within days? \r\n \r\nThen you might want to get a Sales Funnel Landing Page that will motivate prospects to take action immediately and drive more sales for your business. \r\n \r\nAnd today, we have slashed our price from $997 to just $497. So, you are saving $500 when you order a Sales Funnel this week. \r\n \r\nBut this offer is only good this week, for the first 10 clients, so you need to order now, before you miss out. \r\n \r\nTo Book A 10 Minute Call With Me, Click Here: https://bit.ly/gb360-funnel-appointment \r\n \r\nYou can get an American owned and operated professional Sales Funnel building marketing company to create a high-quality Sales Funnel for your business. \r\n \r\nDid you know: \r\n \r\n•\tSales Funnels are much more powerful than websites when it comes to conversions \r\n•\tSales Funnels average sales per visitor is 2-3 times higher per order than a standard website \r\n•\tSales Funnels are one of the most inexpensive tools to use to obtain prospect contact info \r\nAgain, this $497 promotion is for this week only. Don’t miss out!!! The normal price is $997, so today you are saving $500. Get a sales funnel today before the 10 discounted funnel slots are gone. \r\n \r\nClick Here Now To Book A 10 Minute Call With Me: https://bit.ly/gb360-funnel-appointment	0	\N	\N
335	Henrysmamy	RookTessa9292@o2.pl	89039141743	Your money work even when you sleep. https://smamy.bode-roesch.de/smamy	0	\N	\N
336	Charlotte Gabriel	charlottegabriel@stayhome.li	86753728592	Hello, \r\n \r\nI'm Charlotte Gabriel, An online trading Coash. I want you to know that online trading (Crypto, Forex and Binary option) is a good thing if you have a good trading strategy, I use to lose a lot of funds in online trading before I got to where I am today. If you need assistance on how to trade and recover back all the money you have lost to your broker and want to be a successful online trader like me, write to me via email below to get an amazing strategy. \r\n \r\nIf you are having problems withdrawing your profit from your Crypto, Forex or Binary option trading account even when you were given a bonus, just contact me, I have worked with some Trade, Regulatory Agencies for 9years, and I have helped a lot of people get back their lost funds from their stubborn brokers successfully and I won't stop until I have helped as many as possible. For more info you can contact me via my email address: charlgabriel@hotmail.com \r\n \r\nKind Regards, \r\nCharlotte Gabriel. \r\nTrading Consultant.	0	\N	\N
337	Henrysmamy	RookTessa9292@o2.pl	89034934950	Need money? Get it here easily? https://smamy.bode-roesch.de/smamy	0	\N	\N
338	Michael	tbformleads@gmail.com	87529725997	Hello, \r\n \r\nI would like to schedule a quick call to discuss our marketing system that can bring you leads daily. \r\n \r\nWe use a robust email application that mimics real people sending emails, so we get a huge delivery rate. \r\n \r\nSTART GETTING HOT LEADS NOW: \r\n \r\n- We create the content for the email(s). \r\n- We forward leads to you daily. \r\n- We send to 500 new contacts a day M-F (10k monthly), then we send 5 follow up emails (that is 50k emails a month). \r\n \r\nPlus!! Monthly, we provide the 10,000 targeted new email addresses that we will email to. That email list is worth over $2,000 a month, but you get that free with our service. \r\n \r\nJust imagine, you will start getting hot leads within days of getting started with us. Get started now for a $47.00 setup fee and just $997 per month (month-to-month/no long-term contract). \r\n \r\nBook a 10 min call with me now: Click Here  (   http://www.erpgoldgroup.com/appointments/   ) \r\n \r\nNOTE: To hire a person to send one-to-one emails (like our system does) would cost around $2,500 a month, but with us, you pay just $997. \r\n \r\nOffer good for the first 20 clients, start getting quality leads now, don’t miss out.  Book appointment now: Click Here  (   http://www.erpgoldgroup.com/appointments/   ) \r\n \r\nSincerely, \r\n \r\n-\tMichael	0	\N	\N
339	Henrysmamy	julle2@forum.dk	89032273216	Let the Robot bring you money while you rest. https://smamy.bode-roesch.de/smamy	0	\N	\N
340	Henrysmamy	mgp1@forum.dk	89039297162	Automatic robot is the best start for financial independence. https://smamy.bode-roesch.de/smamy	0	\N	\N
341	Henrysmamy	smukkekarina@forum.dk	89030738818	Make money 24/7 without any efforts and skills. https://smamy.bode-roesch.de/smamy	0	\N	\N
342	Henrysmamy	shiryaevi2005@mailme.dk	89030508136	Robot never sleeps. It makes money for you 24/7. https://smamy.bode-roesch.de/smamy	0	\N	\N
343	Henrysmamy	annetalinnea@forum.dk	89035997665	Need cash? Launch this robot and see what it can. https://smamy.bode-roesch.de/smamy	0	\N	\N
344	Henrysmamy	rek@forum.dk	89035025704	We know how to increase your financial stability. https://smamy.bode-roesch.de/smamy	0	\N	\N
345	VirgilPam	adam789bright@gmail.com	83687598539	Need Facebook or Instagram followers? Or Google reviews? \r\nWe can help you. Please visit https://1000-likes.com to place your order.	0	\N	\N
346	Henrysmamy	vebse@forum.dk	89031862605	Everyone who needs money should try this Robot out. https://smamy.blueliners07.de/smamy	0	\N	\N
347	Mike Thomson	no-replyItelcoth@gmail.com	87156685393	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Thomson\r\n \r\nsupport@digital-x-press.com	0	\N	\N
348	Henrysmamy	friskgut@forum.dk	89031951669	Making money in the net is easier now. https://smamy.blueliners07.de/smamy	0	\N	\N
349	Henrysmamy	co14_6@forum.dk	89031123463	Try out the automatic robot to keep earning all day long. https://smamy.blueliners07.de/smamy	0	\N	\N
350	Henrysmamy	o-sh@mailme.dk	89037410682	The online financial Robot is your key to success. https://smamy.blueliners07.de/smamy	0	\N	\N
351	Henrysmamy	forsvarsportal@mail-online.dk	89034114321	Make money online, staying at home this cold winter. https://smamy.blueliners07.de/smamy	0	\N	\N
352	Margaretmic	m.a.r.garel.o.ve.tro.be.r.ts@gmail.com	83824352991	<a href=https://is.gd/ds0hp6>I strongly suggest that you become an actor in my first porn film.</a> \r\n<a href=https://is.gd/ds0hp6><img src="https://i.ibb.co/m0zMVq0/807305.jpg"></a>	0	\N	\N
353	Henrysmamy	gial-bone@forum.dk	89035442164	Financial robot keeps bringing you money while you sleep. https://smamy.blueliners07.de/smamy	0	\N	\N
354	Henrysmamy	alex1977@forum.dk	89039636043	The online income is the easiest ways to make you dream come true. https://smamy.blueliners07.de/smamy	0	\N	\N
355	Henrysmamy	alex1977@forum.dk	89032580729	The online income is the easiest ways to make you dream come true. https://smamy.blueliners07.de/smamy	0	\N	\N
356	Henrysmamy	alex1977@forum.dk	89032598801	The online income is the easiest ways to make you dream come true. https://smamy.blueliners07.de/smamy	0	\N	\N
357	Henrysmamy	alex1977@forum.dk	89032643563	The online income is the easiest ways to make you dream come true. https://smamy.blueliners07.de/smamy	0	\N	\N
358	Henrysmamy	alex1977@forum.dk	89030347422	The online income is the easiest ways to make you dream come true. https://smamy.blueliners07.de/smamy	0	\N	\N
376	Henrysmamy	tina.k@mailme.dk	89033870693	The financial Robot is the most effective financial tool in the net! https://smamy.blueliners07.de/smamy	0	\N	\N
377	Henrysmamy	tina.k@mailme.dk	89037553271	The financial Robot is the most effective financial tool in the net! https://smamy.blueliners07.de/smamy	0	\N	\N
378	Henrysmamy	tina.k@mailme.dk	89036175386	The financial Robot is the most effective financial tool in the net! https://smamy.blueliners07.de/smamy	0	\N	\N
379	Henrysmamy	akboyer@forum.dk	89033271906	Invest $1 today to make $1000 tomorrow. https://smamy.blueliners07.de/smamy	0	\N	\N
380	Henrysmamy	akboyer@forum.dk	89039170532	Invest $1 today to make $1000 tomorrow. https://smamy.blueliners07.de/smamy	0	\N	\N
381	Henrysmamy	akboyer@forum.dk	89039123295	Invest $1 today to make $1000 tomorrow. https://smamy.blueliners07.de/smamy	0	\N	\N
382	Henrysmamy	akboyer@forum.dk	89035898622	Invest $1 today to make $1000 tomorrow. https://smamy.blueliners07.de/smamy	0	\N	\N
383	Henrysmamy	akboyer@forum.dk	89039891294	Invest $1 today to make $1000 tomorrow. https://smamy.blueliners07.de/smamy	0	\N	\N
384	Henrysmamy	sommer.mail@forum.dk	89034115629	Need money? Earn it without leaving your home. https://smamy.blueliners07.de/smamy	0	\N	\N
385	Henrysmamy	sommer.mail@forum.dk	89034130591	Need money? Earn it without leaving your home. https://smamy.blueliners07.de/smamy	0	\N	\N
386	Henrysmamy	sommer.mail@forum.dk	89037294800	Need money? Earn it without leaving your home. https://smamy.blueliners07.de/smamy	0	\N	\N
387	Henrysmamy	sommer.mail@forum.dk	89034560193	Need money? Earn it without leaving your home. https://smamy.blueliners07.de/smamy	0	\N	\N
388	Henrysmamy	sommer.mail@forum.dk	89032325371	Need money? Earn it without leaving your home. https://smamy.blueliners07.de/smamy	0	\N	\N
389	Henrysmamy	dennishersted@forum.dk	89030559644	Let the financial Robot be your companion in the financial market. https://smamy.blueliners07.de/smamy	0	\N	\N
390	Henrysmamy	dennishersted@forum.dk	89039855593	Let the financial Robot be your companion in the financial market. https://smamy.blueliners07.de/smamy	0	\N	\N
391	Henrysmamy	dennishersted@forum.dk	89038115464	Let the financial Robot be your companion in the financial market. https://smamy.blueliners07.de/smamy	0	\N	\N
392	Henrysmamy	dennishersted@forum.dk	89035594184	Let the financial Robot be your companion in the financial market. https://smamy.blueliners07.de/smamy	0	\N	\N
393	Henrysmamy	dennishersted@forum.dk	89038737020	Let the financial Robot be your companion in the financial market. https://smamy.blueliners07.de/smamy	0	\N	\N
394	Henrysmamy	seje-kristian@forum.dk	89037302076	Financial robot guarantees everyone stability and income. https://smamy.blueliners07.de/smamy	0	\N	\N
395	Henrysmamy	jakob_mm@forum.dk	89036025760	Earn additional money without efforts and skills. https://smamy.blueliners07.de/smamy	0	\N	\N
396	Henrysmamy	mimmo.1961@live.it	89038232549	Let the Robot bring you money while you rest. https://smamy.blueliners07.de/smamy	0	\N	\N
397	Henrysmamy	tomislavjakovljevic@forum.dk	89035110677	Looking for additional money? Try out the best financial instrument. https://smamy.blueliners07.de/smamy	0	\N	\N
398	Henrysmamy	ceciliell@forum.dk	89035497041	The online financial Robot is your key to success. https://smamy.coronect.de/smamy	0	\N	\N
399	Henrysmamy	dong5@forum.dk	89035506449	Even a child knows how to make money. Do you? https://smamy.coronect.de/smamy	0	\N	\N
400	Henrysmamy	kleemann0811@forum.dk	89030938440	Earning $1000 a day is easy if you use this financial Robot. https://smamy.coronect.de/smamy	0	\N	\N
401	Henrysmamy	baxii-2@forum.dk	89032027737	Even a child knows how to make money. This robot is what you need! https://smamy.coronect.de/smamy	0	\N	\N
402	Henrysmamy	ettem@forum.dk	89039649294	Most successful people already use Robot. Do you? https://smamy.coronect.de/smamy	0	\N	\N
403	Henrysmamy	janesvensson@jubiipost.dk	89038120393	Making money can be extremely easy if you use this Robot. https://smamy.coronect.de/smamy	0	\N	\N
404	Henrysmamy	liammyers45@mailme.dk	89034026095	Let your money grow into the capital with this Robot. https://smamy.coronect.de/smamy	0	\N	\N
405	Henrysmamy	marsvin@forum.dk	89034260177	No need to work anymore while you have the Robot launched! https://smamy.coronect.de/smamy	0	\N	\N
406	Charlotagl	c.ha.r.l.ot.te.an.d.e.r.s.on367@gmail.com	82322133833	<a href=https://is.gd/vIFhW9>I really want to!!! Whatever you suggest...</a>	0	\N	\N
407	Henrysmamy	larisa23.05@mailme.dk	89038622088	Still not a millionaire? Fix it now! https://smamy.coronect.de/smamy	0	\N	\N
408	Henrysmamy	jdiods@forum.dk	89034919278	Still not a millionaire? The financial robot will make you him! https://smamy.coronect.de/smamy	0	\N	\N
409	Henrysmamy	pointshopuse@forum.dk	89031875961	Let the financial Robot be your companion in the financial market. https://smamy.coronect.de/smamy	0	\N	\N
410	Henrysmamy	sandvold@forum.dk	89038582698	See how Robot makes $1000 from $1 of investment. https://smamy.coronect.de/smamy	0	\N	\N
411	Henrysmamy	christina36@forum.dk	89036886877	No need to stay awake all night long to earn money. Launch the robot. https://smamy.coronect.de/smamy	0	\N	\N
412	Henrysmamy	action_johnny@mail-online.dk	89030362908	Even a child knows how to make money. Do you? https://smamy.coronect.de/smamy	0	\N	\N
413	Henrysmamy	bella01@forum.dk	89039422179	The best way for everyone who rushes for financial independence. https://smamy.coronect.de/smamy	0	\N	\N
414	Henrysmamy	sannivestergaard@forum.dk	89033906795	Need money? Get it here easily! Just press this to launch the robot. https://smamy.coronect.de/smamy	0	\N	\N
415	Henrysmamy	jv@mail-online.dk	89031614356	Check out the automatic Bot, which works for you 24/7. https://smamy.coronect.de/smamy	0	\N	\N
416	Henrysmamy	yulusik999@mailme.dk	89039648165	Still not a millionaire? The financial robot will make you him! https://smamy.coronect.de/smamy	0	\N	\N
417	Henrysmamy	omegacomputers@mailme.dk	89036346162	The huge income without investments is available, now! https://smamy.coronect.de/smamy	0	\N	\N
418	Henrysmamy	cortsen@mailme.dk	89039898299	Need some more money? Robot will earn them really fast. https://smamy.coronect.de/smamy	0	\N	\N
419	Henrysmamy	mb2009@forum.dk	89034562239	Thousands of bucks are guaranteed if you use this robot. https://smamy.coronect.de/smamy	0	\N	\N
420	Henrysmamy	bo.11@forum.dk	89039203431	Looking for additional money? Try out the best financial instrument. https://smamy.coronect.de/smamy	0	\N	\N
421	Henrysmamy	kubasov_denis@mailme.dk	89033968453	Making money is very easy if you use the financial Robot. https://smamy.coronect.de/smamy	0	\N	\N
422	Henrysmamy	wopkinwalker@mail-online.dk	89036881619	Still not a millionaire? Fix it now! https://smamy.coronect.de/smamy	0	\N	\N
423	Henrysmamy	michael1982@jubiipost.dk	89035013875	Using this Robot is the best way to make you rich. https://smamy.coronect.de/smamy	0	\N	\N
424	Henrysmamy	spasserdyr@mailme.dk	89032296252	Looking for an easy way to make money? Check out the financial robot. https://smamy.coronect.de/smamy	0	\N	\N
425	Mike Richards	no-replyItelcoth@gmail.com	88579643267	Hi \r\n \r\nThis is Mike Richards\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Richards\r\n \r\nmike@strictlydigital.net	0	\N	\N
426	Henrysmamy	fpinstrup@forum.dk	89033799664	This robot can bring you money 24/7. https://smamy.coronect.de/smamy	0	\N	\N
427	Henrysmamy	mat.a@forum.dk	89038759793	Try out the automatic robot to keep earning all day long. https://smamy.coronect.de/smamy	0	\N	\N
428	Henrysmamy	emrix@forum.dk	89035710850	This robot can bring you money 24/7. https://smamy.coronect.de/smamy	0	\N	\N
429	Henrysmamy	corvette@jubiipost.dk	89036888704	Have no financial skills? Let Robot make money for you. https://smamy.coronect.de/smamy	0	\N	\N
430	Henrysmamy	mikkel.hansen@forum.dk	89031641549	Make your money work for you all day long. https://smamy.coronect.de/smamy	0	\N	\N
431	Henrysmamy	carl05c@mailme.dk	89033910994	Even a child knows how to make $100 today. https://smamy.coronect.de/smamy	0	\N	\N
432	Charlotteoub	je.s.s.ica.girl.pet.er.so.n@gmail.com	87676933185	<a href=https://goo.su/2ypP30>I know what to offer you tonight. Do you want this night to be unforgettable?</a>	0	\N	\N
433	Henrysmamy	452001@mailme.dk	89038133148	Need money? Earn it without leaving your home. https://smamy.coronect.de/smamy	0	\N	\N
434	Henrysmamy	tekken333@mail.ru	89030348732	The best online investment tool is found. Learn more! https://smamy.coronect.de/smamy	0	\N	\N
435	Henrysmamy	binny46@mailme.dk	89032838226	The additional income is available for everyone using this robot. https://smamy.coronect.de/smamy	0	\N	\N
436	Henrysmamy	ltm@forum.dk	89033302312	Your money keep grow 24/7 if you use the financial Robot. https://smamy.coronect.de/smamy	0	\N	\N
437	Henrysmamy	maobn@forum.dk	89030864851	Online earnings are the easiest way for financial independence. https://smamy.coronect.de/smamy	0	\N	\N
438	Henrysmamy	andersen@mailme.dk	89035888738	The additional income is available for everyone using this robot. https://smamy.coronect.de/smamy	0	\N	\N
439	MioFex	unmasksisado.r.e.4.8@gmail.com	89837968165	Fuck me right now. How much longer to wait here https://xbebz.astonlshingdate.net/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1	0	\N	\N
440	Henrysmamy	firic@mailme.dk	89032839853	Turn $1 into $100 instantly. Use the financial Robot. https://smamy.coronect.de/smamy	0	\N	\N
441	Henrysmamy	sims@mailme.dk	89038494996	Make dollars just sitting home. https://smamy.coronect.de/smamy	0	\N	\N
442	Henrysmamy	mmmmkkk@forum.dk	89031016647	Need money? Get it here easily? https://smamy.coronect.de/smamy	0	\N	\N
443	Henrysmamy	niclasjeppe@forum.dk	89033815953	Invest $1 today to make $1000 tomorrow. https://smamy.coronect.de/smamy	0	\N	\N
444	Henrysmamy	im.dg@jubiipost.dk	89032982452	The financial Robot is your # 1 expert of making money. https://smamy.coronect.de/smamy	0	\N	\N
445	Henrysmamy	dcs@mail-online.dk	89036638119	Try out the automatic robot to keep earning all day long. https://smamy.coronect.de/smamy	0	\N	\N
446	Henrysmamy	perrosendahlchristensen@mail-online.dk	89033860223	Have no financial skills? Let Robot make money for you. https://smamy.coronect.de/smamy	0	\N	\N
447	Henrysmamy	accentgt@forum.dk	89032946348	Making money is very easy if you use the financial Robot. https://smamy.coronect.de/smamy	0	\N	\N
448	LioFex	unmasksisad.ore48@gmail.com	88158439385	My cunt is wet.. Put your dick in me right now https://xbebz.astonlshingdate.net/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1	0	\N	\N
449	Henrysmamy	simi@forum.dk	89037711975	Earn additional money without efforts and skills. https://smamy.coronect.de/smamy	0	\N	\N
450	Henrysmamy	lust@forum.dk	89035561459	Try out the best financial robot in the Internet. https://smamy.coronect.de/smamy	0	\N	\N
451	KqoFex	unmasksisad.ore4.8@gmail.com	84887159471	My tits and pussy are flowing right now. Lick them up, I can't wait anymore, squirt soon well, ohhhhhh https://xbebz.sweetmlif.net/c/da57dc555e50572d?s1=12179&s2=1471083&j1=1	0	\N	\N
452	Henrysmamy	skibskaja@rambler.ru	89036705883	Looking forward for income? Get it online. https://smamy.coronect.de/smamy	0	\N	\N
453	Henrysmamy	p.h.e.n.o.m.enon.zna.f.nk@yahoo.com.mx	89038809273	Need money? Earn it without leaving your home. https://smamy.coronect.de/smamy	0	\N	\N
454	Henrysmamy	toemrernykf@mail-online.dk	89031522771	Make $1000 from $1 in a few minutes. Launch the financial robot now. https://smamy.coronect.de/smamy	0	\N	\N
455	Henrysmamy	chricroghir@mailme.dk	89035806601	Start making thousands of dollars every week. https://smamy.coronect.de/smamy	0	\N	\N
456	Henrysmamy	fuckingmonkey@forum.dk	89032468891	Need cash? Launch this robot and see what it can. https://smamy.coronect.de/smamy	0	\N	\N
457	Henrysmamy	moddi31@forum.dk	89030532099	The online income is your key to success. https://smamy.coronect.de/smamy	0	\N	\N
458	Henrysmamy	trollarik@forum.dk	89032428283	No worries if you are fired. Work online. https://smamy.bode-roesch.de/smamy	0	\N	\N
459	Henrysmamy	amn@mailme.dk	89037127278	Even a child knows how to make money. Do you? https://smamy.bode-roesch.de/smamy	0	\N	\N
460	Henrysmamy	alex-rud@forum.dk	89035090031	Have no financial skills? Let Robot make money for you. https://smamy.bode-roesch.de/smamy	0	\N	\N
461	Henrysmamy	rasmusbf90@forum.dk	89033650947	Your money work even when you sleep. https://smamy.bode-roesch.de/smamy	0	\N	\N
462	Henrysmamy	tinahansen330@forum.dk	89031915760	Need money? Get it here easily? https://smamy.bode-roesch.de/smamy	0	\N	\N
463	Henrysmamy	cipi_dayel@mail.ru	89032903560	Financial independence is what everyone needs. https://smamy.bode-roesch.de/smamy	0	\N	\N
464	Henrysmamy	sofiemussen1@forum.dk	89038821883	The huge income without investments is available, now! https://smamy.bode-roesch.de/smamy	0	\N	\N
465	Henrysmamy	zyaba.91@mailme.dk	89030606149	Make thousands of bucks. Financial robot will help you to do it! https://smamy.bode-roesch.de/smamy	0	\N	\N
466	Henrysmamy	jannick02@forum.dk	89030197396	Make thousands every week working online here. https://smamy.fannyberlin.se/smamy	0	\N	\N
467	Henrysmamy	hardcore@forum.dk	89031295369	Need money? Get it here easily? https://smamy.fannyberlin.se/smamy	0	\N	\N
468	Henrysmamy	louise_paugan@forum.dk	89036878905	Looking for an easy way to make money? Check out the financial robot. https://smamy.fannyberlin.se/smamy	0	\N	\N
469	Henrysmamy	ranger@mail-online.dk	89039979230	See how Robot makes $1000 from $1 of investment. https://smamy.fannyberlin.se/smamy	0	\N	\N
470	Henrysmamy	monday@forum.dk	89038754792	Find out about the fastest way for a financial independence. https://smamy.fannyberlin.se/smamy	0	\N	\N
471	Henrysmamy	ullapj@forum.dk	89031699989	Try out the best financial robot in the Internet. https://smamy.fannyberlin.se/smamy	0	\N	\N
472	Henrysmamy	bali76@forum.dk	89030706168	Check out the new financial tool, which can make you rich. https://smamy.fannyberlin.se/smamy	0	\N	\N
473	Henrysmamy	t_lundborg@mail-online.dk	89034492799	Money, money! Make more money with financial robot! https://smamy.fannyberlin.se/smamy	0	\N	\N
474	Henrysmamy	jacquess@mailme.dk	89037079766	Make your computer to be you earning instrument. https://smamy.fannyberlin.se/smamy	0	\N	\N
475	Henrysmamy	solhat@forum.dk	89037314968	Financial independence is what this robot guarantees. https://smamy.fannyberlin.se/smamy	0	\N	\N
476	Henrysmamy	andrey_l77@mailme.dk	89036531614	Need money? Get it here easily? https://smamy.fannyberlin.se/smamy	0	\N	\N
477	Henrysmamy	siwimo@forum.dk	89039318137	Making money is very easy if you use the financial Robot. https://smamy.fannyberlin.se/smamy	0	\N	\N
478	Henrysmamy	black_mamba@mail-online.dk	89037744849	Check out the automatic Bot, which works for you 24/7. https://smamy.fannyberlin.se/smamy	0	\N	\N
479	Henrysmamy	shvid@forum.dk	89036601471	Most successful people already use Robot. Do you? https://smamy.fannyberlin.se/smamy	0	\N	\N
480	Henrysmamy	bz@forum.dk	89034471678	It is the best time to launch the Robot to get more money. https://smamy.fannyberlin.se/smamy	0	\N	\N
481	Henrysmamy	dannyhansen@forum.dk	89036398947	Online Bot will bring you wealth and satisfaction. https://smamy.fannyberlin.se/smamy	0	\N	\N
482	Henrysmamy	kandersen@forum.dk	89031622712	Financial robot is a great way to manage and increase your income. https://smamy.fannyberlin.se/smamy	0	\N	\N
483	Henrysmamy	zodiak-vesi@inbox.ru	89039822989	See how Robot makes $1000 from $1 of investment. https://smamy.fannyberlin.se/smamy	0	\N	\N
484	Henrysmamy	martinbuch30@forum.dk	89037596464	The best online job for retirees. Make your old ages rich. https://smamy.fannyberlin.se/smamy	0	\N	\N
485	Henrysmamy	tj@mail-online.dk	89030859108	Only one click can grow up your money really fast. https://smamy.fannyberlin.se/smamy	0	\N	\N
486	Henrysmamy	teddyfriis@forum.dk	89034885987	The online income is your key to success. https://smamy.fannyberlin.se/smamy	0	\N	\N
487	Henrysmamy	louieloveless@forum.dk	89030330474	Your money keep grow 24/7 if you use the financial Robot. https://smamy.fannyberlin.se/smamy	0	\N	\N
488	Henrysmamy	hgkjfdl@forum.dk	89038190393	Making money can be extremely easy if you use this Robot. https://smamy.fannyberlin.se/smamy	0	\N	\N
489	Henrysmamy	rapler1@forum.dk	89030122076	No need to work anymore. Just launch the robot. https://smamy.fannyberlin.se/smamy	0	\N	\N
490	Henrysmamy	bilsby@forum.dk	89031915554	Financial robot is your success formula is found. Learn more about it. https://smamy.compras2u.es/smamy	0	\N	\N
491	Henrysmamy	empirio@forum.dk	89038016018	Learn how to make hundreds of backs each day. https://baleti-design.fr/smamy	0	\N	\N
492	Henrysmamy	salcin9zlsl@forum.dk	89038771706	Start making thousands of dollars every week just using this robot. https://collectif-hameb.fr/smamy	0	\N	\N
493	Henrysmamy	19940107@forum.dk	89038214942	Financial robot is your success formula is found. Learn more about it. https://fannyberlin.se/smamy	0	\N	\N
494	Henrysmamy	lenicki123123123@forum.dk	89037596100	Financial robot is your success formula is found. Learn more about it. https://collectif-hameb.fr/smamy	0	\N	\N
495	Mike	no-replyItelcoth@gmail.com	83425887625	Howdy \r\n \r\nWe will increase your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike  \r\nSpeed SEO Digital Agency	0	\N	\N
496	Henrysmamy	dunkel@forum.dk	89030597800	Still not a millionaire? Fix it now! https://smamy.fannyberlin.se/smamy	0	\N	\N
497	Henrysmamy	lene-nutz@forum.dk	89035923345	Looking for additional money? Try out the best financial instrument. https://fannyberlin.se/smamy	0	\N	\N
498	Waheed Al gore	waheedalgore22@gmail.com	89874512984	Hello, \r\n \r\nWe provide funding through our venture capital company to both start-up \r\nand existing companies either looking for funding for expansion or to \r\naccelerate growth in their company. \r\nWe have a structured joint venture investment plan in which we are \r\ninterested in an annual return on investment not more than 10% ROI. \r\nWe are also currently structuring a convertible debt and loan financing \r\nof 3% interest repayable annually with no early repayment penalties. \r\nIf you have a business plan or executive summary, I can review to \r\nunderstand a much better idea of your business and what you are looking \r\nto do, this will assist in determining the best possible investment \r\nstructure we can pursue and discuss more extensively. \r\nIf you are interested in any of the above, kindly respond to us via this \r\nemail. waheedalgore@alarisinvestmentgroup.org \r\n \r\nGmail: waheedalgore22@gmail.com \r\n \r\nSincerely \r\nWaheed Algore \r\nHead of Finance \r\nAl Aris Investment Group	0	\N	\N
499	Henrysmamy	majafoldager@mail-online.dk	89036390532	Thousands of bucks are guaranteed if you use this robot. https://smamy.fannyberlin.se/smamy	0	\N	\N
500	Henrysmamy	sokolovkrsk@mailme.dk	89037084814	We know how to increase your financial stability. https://smamy.amalgamas.es/smamy	0	\N	\N
501	Henrysmamy	gribkov-roman@mailme.dk	89031912529	The huge income without investments is available, now! https://smamy.baleti-design.fr/smamy	0	\N	\N
502	Henrysmamy	mathiassandvang@forum.dk	89034316174	Trust your dollar to the Robot and see how it grows to $100. https://collectif-hameb.fr/smamy	0	\N	\N
503	Henrysmamy	vaite@mailme.dk	89033503778	Attention! Financial robot may bring you millions! https://borisvonsmercek.de/smamy	0	\N	\N
504	Henrysmamy	eva90@forum.dk	89037073119	Start your online work using the financial Robot. https://collectif-hameb.fr/smamy	0	\N	\N
505	Henrysmamy	www.stengade30.dk@mailme.dk	89037591606	Make money in the internet using this Bot. It really works! https://smamy.baleti-design.fr/smamy	0	\N	\N
506	Henrysmamy	sanne-kristina@forum.dk	89038626270	Trust your dollar to the Robot and see how it grows to $100. https://smamy.compras2u.es/smamy	0	\N	\N
507	Henrysmamy	tsh@mail-online.dk	89038096259	Your computer can bring you additional income if you use this Robot. http://go.afalobo.com/0ide	0	\N	\N
508	Henrysmamy	yt18@cnytjj.com	89030311659	The financial Robot works for you even when you sleep. http://go.afalobo.com/0ide	0	\N	\N
509	Mike Arnold	no-replyItelcoth@gmail.com	86729237172	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Arnold	0	\N	\N
510	Henrysmamy	blayleyohnewm5@gmail.com	89032331835	Earn additional money without efforts and skills. http://go.afalobo.com/0ide	0	\N	\N
511	Henrysmamy	priscellaofella93686@gmail.com	89031360416	Have no money? Earn it online. http://go.afalobo.com/0ide	0	\N	\N
512	Henrysmamy	darklegend4ry@coremail.ru	89036340076	Start making thousands of dollars every week. http://go.afalobo.com/0ide	0	\N	\N
513	Henrysmamy	csefarhad@coremail.ru	89035807727	Financial independence is what everyone needs. http://go.afalobo.com/0ide	0	\N	\N
514	Henrysmamy	ralphonlinee@coremail.ru	89037753052	Watch your money grow while you invest with the Robot. http://go.afalobo.com/0ide	0	\N	\N
515	Henrysmamy	joannestokes169@gmail.com	89035834694	Find out about the easiest way of money earning. http://go.afalobo.com/0ide	0	\N	\N
516	Henrysmamy	varlaamershov96@inbox.ru	89030514945	Let the Robot bring you money while you rest. http://go.cufasez.com/0ie5	0	\N	\N
517	Henrysmamy	jaxax6@aol.com	89031698314	Need money? Earn it without leaving your home. https://smamy.nanolabs.es/smamy	0	\N	\N
518	Henrysmamy	j1880995@gmail.com	89034130393	The best online investment tool is found. Learn more! https://smamy.nanolabs.es/smamy	0	\N	\N
519	Henrysmamy	girss@kernel.lv	89038037307	Everyone who needs money should try this Robot out. https://smamy.nanolabs.es/smamy	0	\N	\N
520	Henrysmamy	manuel_salomon@entelchile.net	89039896680	Earning money in the Internet is easy if you use Robot. https://smamy.nanolabs.es/smamy	0	\N	\N
521	Henrysmamy	rfazanov@aol.com	89032055067	Financial independence is what everyone needs. https://smamy.nanolabs.es/smamy	0	\N	\N
522	Henrysmamy	cooljopen@hotmail.com	89039538211	Need cash? Launch this robot and see what it can. https://smamy.nanolabs.es/smamy	0	\N	\N
523	Henrysmamy	ichsansani17@coremail.ru	89038497799	Turn $1 into $100 instantly. Use the financial Robot. https://smamy.nanolabs.es/smamy	0	\N	\N
524	Henrysmamy	fatihozkalay@hotmail.com	89030254066	Launch the financial Robot and do your business. https://smamy.nanolabs.es/smamy	0	\N	\N
525	Henrysmamy	sotodanielle964454@list.ru	89033230325	The financial Robot is your # 1 expert of making money. https://smamy.nanolabs.es/smamy	0	\N	\N
526	Henrysmamy	andrewcoburn@coremail.ru	89031877785	Watch your money grow while you invest with the Robot. https://smamy.nanolabs.es/smamy	0	\N	\N
527	Henrysmamy	cynthia123131231321@gmail.com	89030822629	Your money work even when you sleep. https://smamy.nanolabs.es/smamy	0	\N	\N
528	Henrysmamy	michaelglass@coremail.ru	89032186985	Rich people are rich because they use this robot. https://smamy.nanolabs.es/smamy	0	\N	\N
529	Kathleenfox	kat.h.l.ee.nm.end.o.z.a.1.99.0@gmail.com	89766522534	<a href=https://goo.su/UwVY9jj>I can't wait to show you an unusual pose. In the meantime, pretend I'm doing it right now. Just don't go crazy with desire.</a> \r\n<a href=https://goo.su/UwVY9jj><img src="https://i.ibb.co/VmRJCSZ/17.jpg"></a>	0	\N	\N
530	Henrysmamy	admhyhn88@gmail.com	89033544383	Still not a millionaire? Fix it now! https://smamy.nanolabs.es/smamy	0	\N	\N
531	Henrysmamy	irinagorazdova4@gmail.com	89039848023	Let your money grow into the capital with this Robot. https://smamy.nanolabs.es/smamy	0	\N	\N
532	Henrysmamy	sien.valay@gmail.com	89037432388	Make money online, staying at home this cold winter. https://smamy.nanolabs.es/smamy	0	\N	\N
533	Henrysmamy	cn13801018949@hotmail.com	89036817161	It is the best time to launch the Robot to get more money. https://smamy.nanolabs.es/smamy	0	\N	\N
534	Henrysmamy	yoshiokaff@coremail.ru	89039111731	Need money? The financial robot is your solution. https://smamy.nanolabs.es/smamy	0	\N	\N
535	Henrysmamy	charlesortizz202@gmail.com	89032692140	Financial independence is what this robot guarantees. https://smamy.nanolabs.es/smamy	0	\N	\N
536	Henrysmamy	dendisulaiman@gmail.com	89030832382	The fastest way to make your wallet thick is found. https://smamy.nanolabs.es/smamy	0	\N	\N
537	Henrysmamy	travis@ymail.com	89037397648	Let your money grow into the capital with this Robot. https://smamy.nanolabs.es/smamy	0	\N	\N
538	Henrysmamy	d017670467154@gmail.com	89034604293	Make money 24/7 without any efforts and skills. https://smamy.nanolabs.es/smamy	0	\N	\N
539	Mike Jenkin	no-replyItelcoth@gmail.com	89245566971	Good Day \r\n \r\nI have just verified your SEO on  10bucksonly.co.za for  the current search visibility and saw that your website could use an upgrade. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Jenkin\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
540	Mason Jones	explaineranimationstudio7@gmail.com	81783453417	Hey! \r\n \r\nDo you want to increase sales for your business 24/7? \r\n \r\nIf so, you have to grab people’s attention quickly. And there’s nothing like a catchy explainer video to do the trick! \r\n \r\nI have an exclusive offer available for the first 20 people that act on this message today, but you must act fast. \r\n \r\nWhile you would normally pay as much as $600, or probably even $1,000, for a 60-second video like this, I am providing the same service for only $97. \r\n \r\nDon’t be fooled by the price, we create high-quality videos, and you can see samples or order now at: https://bit.ly/explainer-animation-promo \r\n \r\nNot sure if you caught it, but this offer is only good this week, for the first 20 clients, so you need to order now, before you miss out. \r\n \r\nAgain, this $97 promotion is for a 60-second explainer video and is for this week only. Don’t miss out!!! \r\n \r\nClick Here Now To Watch The Animated Video That We Created To Explain It All \r\n---> https://bit.ly/explainer-animation-promo \r\n \r\nCheers, \r\nMason Jones \r\nExplainer Animation Studio	0	\N	\N
541	Mike Oliver	no-replyItelcoth@gmail.com	85395628467	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Oliver\r\n \r\nsupport@digital-x-press.com	0	\N	\N
542	JesseNedly	jessicasamantha663@gmail.com	82824966793	We are a Team of IT Experts specialized in the production of authentic Documents and Counterfeit bank notes. We work with government officials, professors and professional hackers from China, US, Russia, Taiwan etc. All these documents are registered into the supposed database. Documents such as Passport, Visa's, Driving License, Covid19 Vaccine Card, University Certificates etc. We also have Canadian dollars, US dollars, pounds and euros. We also have our money in categories, Grade A quality that works at ATMs and bypasses the fake money detector and we also have the normal stage money that was used in jokes, commercials, music and movie videos. Contact details below. \r\nWhatsApp..... +44 7459 530545 \r\nEmail Address.... jameskinds65@gmail.com \r\nTelegram ID..... "@Jameskind65" \r\nWickr Me ID..... Jameskind65.	0	\N	\N
543	Elizabethdal	e.li.za.bet.h.h.ern.and.e.z.3w3@gmail.com	88846148272	<a href=https://is.gd/MHBCLf> I love it so much when you're on top. What else would you like to add to our conversation today?</a>	0	\N	\N
544	Mike Fulton	no-replyItelcoth@gmail.com	89158154496	Howdy \r\n \r\nThis is Mike Fulton\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Fulton\r\n \r\nmike@strictlydigital.net	0	\N	\N
545	Mike	no-replyItelcoth@gmail.com	83948369628	Hello \r\n \r\nWe will improve your Local Ranks organically and safely, using only whitehat methods, while providing Google maps and website offsite work at the same time. \r\n \r\nPlease check our plans here, we offer Local SEO at cheap rates. \r\nhttps://speed-seo.net/product/local-seo-package/ \r\n \r\nNEW: \r\nhttps://www.speed-seo.net/product/zip-codes-gmaps-citations/ \r\n \r\nregards \r\nMike  \r\nSpeed SEO Digital Agency	0	\N	\N
546	Mike Walter	no-replyItelcoth@gmail.com	82838113715	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Walter	0	\N	\N
547	Mike Oldridge	no-replyItelcoth@gmail.com	81959334554	Hi there \r\n \r\nI have just took a look on your SEO for  10bucksonly.co.za for its SEO metrics and saw that your website could use an upgrade. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Oldridge\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
548	Jeffrey Brown	jefferybrown012l@gmail.com	83483793318	Hello \r\n \r\nI just wanted to see if you would be open to getting a Full-Time Virtual Assistant for one week FREE, and the best part is, there is no obligation to continue, and no credit card or payment required to try us out. \r\n \r\nPlus! If you decide to move forward after the one-week trial period, we have plans starting at just a few hundred dollars a month for a part-time assistant. That’s about the same you spend on coffee for 2 each month. \r\n \r\nBut this offer is only good this week, for the first 20 clients, so you need to claim your Virtual Assistant Now, before you miss out. \r\n \r\nClick Here to Get Started   (   https://va.yodaddyapps.com/myaa-va-8338   ) \r\n \r\nOur Virtual Assistants Can: \r\n \r\n•\tHandle a variety of tasks and projects for you so that your day is more productive \r\n•\tFollow up on internal/external resources to ensure that there is daily progress \r\n•\tGive you back time to focus on building your business instead of admin tasks \r\n \r\n... and much, MUCH more! \r\n \r\nImagine for a minute, if you can get the help you need to manage your day-to day task and ongoing projects at a fraction of the cost of hiring an onsite assistant. \r\n \r\nClick Here to Get Started  (   https://va.yodaddyapps.com/myaa-va-8338   ) \r\n \r\nBest, \r\n \r\nJeffrey Brown	0	\N	\N
549	Ernestbal	no-replyBoinny@gmail.com	86826594715	Hi!  10bucksonly.co.za \r\n \r\nWe advance \r\n \r\nSending your message through the Contact us form which can be found on the sites in the contact section. Feedback forms are filled in by our program and the captcha is solved. The superiority of this method is that messages sent through feedback forms are whitelisted. This method increases the chances that your message will be open. \r\n \r\nOur database contains more than 27 million sites around the world to which we can send your message. \r\n \r\nThe cost of one million messages 49 USD \r\n \r\nFREE TEST mailing Up to 50,000 messages. \r\n \r\n \r\nThis message is created automatically.  Use our contacts for communication. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.	0	\N	\N
550	Mike Kendal	no-replyItelcoth@gmail.com	89873758447	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Kendal\r\n \r\nsupport@digital-x-press.com	0	\N	\N
551	Duncan Smith	5rdhp2fe29yb@beconfidential.com	83562533157	Dear Sir/Madam \r\n \r\nYou can only achieve financial freedom when you create multiple streams of income. \r\n \r\nI have an investment portfolio that will benefit both of us and I hope it will be appealing to you. \r\n \r\nIf interested contact me for more information via my E-mail: duncansmith280@gmail.com \r\n \r\nI look forward to your quick reply. \r\n \r\nRegards \r\nDuncan Smith	0	\N	\N
552	KristenNox	.v.ol.ta.re.nafo.b.ster@gmail.com	82476556444	Hello! Welcome to my private online video chat with  most lovely and delightful pinup girl. Find me there https://www1.lone1y.com/YcERWv  and make sure it’s true! \r\nWill do everything for you! Online only now! Let it all be between you and me!	0	\N	\N
553	Crytosmamy	Karmeciaforney2010@yahoo.com	89035251671	The best way for everyone who rushes for financial independence. https://clisa.rbertilsson.se/	0	\N	\N
554	Mike Attwood	no-replyItelcoth@gmail.com	82345966837	Howdy \r\n \r\nThis is Mike Attwood\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Attwood\r\n \r\nmike@strictlydigital.net	0	\N	\N
555	Crytosmamy	bre-bre@cheerful.com	89030308527	Robot never sleeps. It makes money for you 24/7. https://clisa.rbertilsson.se/	0	\N	\N
556	Elizabethzjm	eliza.b.eth.he.rna.n.dez3w.3@gmail.com	82668467917	<a href=https://is.gd/wWo1p8>What you say makes me want you even more. Just add some dirty words</a> \r\n \r\n___$$$___$$$____ \r\n__$$$$$_$$$$$___ \r\n__$$$$$$$$$$$___ \r\n____$$$$$$$_____ \r\n______$$$_______ \r\n_______$ \r\n_____?.•??.•*?.•*??`*•.¦ \r\n_____*.??.•*?`	0	\N	\N
557	Donald Cole	coledd221@cloedcolela.com	83375656349	Good day \r\n \r\n \r\n \r\nI contacted you some days back seeking your cooperation in a matter regarding funds worth $24 Million, I \r\nurge you to get back to me through this email coledd221@cloedcolela.com if you're still interested. \r\n \r\n \r\nI await your response. \r\n \r\n \r\nThanks, \r\n \r\n \r\nDonald Cole	0	\N	\N
558	Crytosmamy	erickagerweckmbt@yahoo.com	89038996303	Using this Robot is the best way to make you rich. https://clisa.rbertilsson.se/	0	\N	\N
559	Crytosmamy	theoretstephanie@gmail.com	89033240036	Feel free to buy everything you want with the additional income. https://clisa.rbertilsson.se/	0	\N	\N
560	Crytosmamysmamy	srdamiani@yahoo.com	89038858171	Looking for additional money? Try out the best financial instrument. https://clisa.rbertilsson.se/	0	\N	\N
561	Crytosmamysmamy	laurapatterson5@gmail.com	89030293850	The financial Robot is the most effective financial tool in the net! https://clisa.rbertilsson.se/	0	\N	\N
562	Crytosmamysmamy	asianfro@hotmail.com	89037087811	Buy everything you want earning money online. https://clisa.rbertilsson.se/	0	\N	\N
563	Crytosmamysmamy	hornywildguy4u@netzero.com	89037730971	Even a child knows how to make money. This robot is what you need! https://clisa.rbertilsson.se/	0	\N	\N
564	Crytosmamysmamy	emilyekt@yahoo.com	89037329599	Just one click can turn you dollar into $1000. https://clisa.rbertilsson.se/	0	\N	\N
565	Robertfluep	loansdirectllp@gmail.com	89195531864	Need an investor? Apply now and get funded. \r\nFollow the link https://signup.loansdirect.capital/ to apply. Our auto-matching system connects vetted investors with start-ups. Email us on info@loansdirect.capital, or call 1 888 212 4238 to discuss your venture capital funding, or visit our website https://www.loansdirect.capital/.	0	\N	\N
566	Crytosmamysmamy	sexykitty_21@hotmail.com	89037208780	Need money? The financial robot is your solution. https://clisa.rbertilsson.se/	0	\N	\N
567	Crytosmamysmamy	denismannhart833@gmail.com	89036791732	The online income is the easiest ways to make you dream come true. https://clisa.rbertilsson.se/	0	\N	\N
568	Crytosmamysmamy	dan.diamond@sembler.com	89033294109	Most successful people already use Robot. Do you? https://clisa.rbertilsson.se/	0	\N	\N
569	Crytosmamysmamy	mrkdawg44@yahoo.com	89035660588	Financial Robot is #1 investment tool ever. Launch it! https://clisa.rbertilsson.se/	0	\N	\N
570	Crytosmamysmamy	Adaadast@gmail.com	89035994788	Using this Robot is the best way to make you rich. https://clisa.rbertilsson.se/	0	\N	\N
571	Crytosmamysmamy	pinkykayl@yahoo.com	89034184028	Looking for an easy way to make money? Check out the financial robot. https://clisa.rbertilsson.se/	0	\N	\N
572	Crytosmamysmamy	butterbean2@cox.net	89030755283	Make money online, staying at home this cold winter. https://clisa.rbertilsson.se/	0	\N	\N
573	Crytosmamysmamy	fmarsann@yahoo.com	89038618922	The online financial Robot is your key to success. https://clisa.rbertilsson.se/	0	\N	\N
574	Mike Albertson	no-replyItelcoth@gmail.com	84774929839	Howdy \r\n \r\nIf you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/	0	\N	\N
575	Mike Campbell	no-replyItelcoth@gmail.com	83884227745	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Campbell	0	\N	\N
576	Crytosmamysmamy	daniel@jwaala.com	89036700939	Need money? Get it here easily? https://clisa.rbertilsson.se/	0	\N	\N
577	Crytosmamysmamy	elemteach00@yahoo.com	89032123049	Making money is very easy if you use the financial Robot. https://clisa.rbertilsson.se/	0	\N	\N
578	Crytosmamysmamy	lightningbolt111@hotmail.com	89035426068	Make $1000 from $1 in a few minutes. Launch the financial robot now. https://clisa.rbertilsson.se/	0	\N	\N
579	Crytosmamysmamy	google.atan.ge168@isac-hermes.com	89034701850	Need money? The financial robot is your solution. https://clisa.rbertilsson.se/	0	\N	\N
580	Crytosmamysmamy	malkahb@gmail.com	89037920544	Try out the automatic robot to keep earning all day long. https://clisa.rbertilsson.se/	0	\N	\N
581	Crytosmamysmamy	serjadaselgjekaj@hotmail.com	89032151647	Money, money! Make more money with financial robot! https://clisa.rbertilsson.se/	0	\N	\N
582	Crytosmamysmamy	sondiwear@comcast.net	89031112678	Earn additional money without efforts and skills. https://clisa.rbertilsson.se/	0	\N	\N
583	Crytosmamysmamy	Cjclifton82@gmail.com	89038591895	Launch the best investment instrument to start making money today. https://clisa.rbertilsson.se/	0	\N	\N
584	Crytosmamysmamy	karianne_andreassen@hotmail.com	89032975480	We know how to increase your financial stability. https://clisa.escueladelcambio.es/	0	\N	\N
585	Crytosmamysmamy	rbonafede1@yahoo.com	89034682222	The additional income is available for everyone using this robot. https://clisa.escueladelcambio.es/	0	\N	\N
586	Crytosmamysmamy	starbrite79@yahoo.com	89030771447	Financial robot guarantees everyone stability and income. https://clisa.escueladelcambio.es/	0	\N	\N
589	Crytosmamysmamy	carlosbricenovalencia@gmail.com	89034140446	One click of the robot can bring you thousands of bucks. https://clisa.escueladelcambio.es/	0	\N	\N
590	Crytosmamysmamy	triggs_jamie@yahoo.com	89032585766	The financial Robot works for you even when you sleep. https://clisa.escueladelcambio.es/	0	\N	\N
591	Crytosmamysmamy	lubcir@vrkucs.com	89035653442	Invest $1 today to make $1000 tomorrow. https://clisa.escueladelcambio.es/	0	\N	\N
592	Crytosmamysmamy	desalesanjay441@gmail.com	89030332018	Make yourself rich in future using this financial robot. https://clisa.escueladelcambio.es/	0	\N	\N
593	Crytosmamysmamy	ctkirnfwik@ngalqo.com	89036211380	The best way for everyone who rushes for financial independence. https://clisa.escueladelcambio.es/	0	\N	\N
594	Crytosmamysmamy	sathish@hotmail.com	89031005828	Looking for an easy way to make money? Check out the financial robot. https://clisa.escueladelcambio.es/	0	\N	\N
595	Crytosmamysmamy	cmlough@cox.net	89035311464	Launch the financial Bot now to start earning. https://clisa.escueladelcambio.es/	0	\N	\N
596	Crytosmamysmamy	neburus1@hotmail.com	89033795908	We know how to increase your financial stability. https://clisa.escueladelcambio.es/	0	\N	\N
597	Crytosmamysmamy	misstourismunitedstates@aol.com	89039881732	The financial Robot is the most effective financial tool in the net! https://clisa.escueladelcambio.es/	0	\N	\N
598	Crytosmamysmamy	sales@spbiochem.com	89030004473	No need to work anymore. Just launch the robot. https://clisa.escueladelcambio.es/	0	\N	\N
599	Crytosmamysmamy	Cass.jelzvisuals@gmail.com	89038754248	Financial Robot is #1 investment tool ever. Launch it! https://clisa.escueladelcambio.es/	0	\N	\N
600	Crytosmamysmamy	bunnie_babe7993@yahoo.com	89033908471	Need money? Earn it without leaving your home. https://clisa.escueladelcambio.es/	0	\N	\N
601	Crytosmamysmamy	xolillex33ox@netscape.net	89038444724	The best way for everyone who rushes for financial independence. https://clisa.escueladelcambio.es/	0	\N	\N
602	Id8efx24rf	vasilij.kuzmichev.1980@list.ru	83846927575	На ваш счет *5482 поступили средства со счета *3812  \r\n \r\nПодробнее: https://docs.google.com/document/d/AAA10bucksonly.co.zaBBB/view	0	\N	\N
603	Crytosmamysmamy	eden1703@gmail.com	89037427354	Let the Robot bring you money while you rest. https://clisa.escueladelcambio.es/	0	\N	\N
604	Crytosmamysmamy	seanjcarty@hotmail.com	89037564053	Financial robot guarantees everyone stability and income. https://clisa.escueladelcambio.es/	0	\N	\N
605	Crytosmamysmamy	manieakvf@hotmail.com	89031790463	We know how to increase your financial stability. https://clisa.escueladelcambio.es/	0	\N	\N
606	Crytosmamysmamy	robinmiller97@yahoo.com	89030372396	The fastest way to make you wallet thick is here. https://clisa.escueladelcambio.es/	0	\N	\N
607	Crytosmamysmamy	copper4343@charter.net	89032768151	Just one click can turn you dollar into $1000. https://clisa.escueladelcambio.es/	0	\N	\N
608	Crytosmamysmamy	kamal8999@gmail.com	89030156086	The best online investment tool is found. Learn more! https://clisa.escueladelcambio.es/	0	\N	\N
609	Crytosmamysmamy	klq@gmail.com	89035430828	Even a child knows how to make money. This robot is what you need! https://clisa.escueladelcambio.es/	0	\N	\N
610	Crytosmamysmamy	ballistic1_4u@yahoo.com	89032675960	Financial independence is what everyone needs. https://clisa.escueladelcambio.es/	0	\N	\N
611	Crytosmamysmamy	brindashah1990@yahoo.com	89030608547	Launch the financial Bot now to start earning. https://clisa.escueladelcambio.es/	0	\N	\N
612	Crytosmamysmamy	tyronekeys81@gmail.com	89035945078	Make money, not war! Financial Robot is what you need. https://clisa.escueladelcambio.es/	0	\N	\N
613	Crytosmamysmamy	m.cooper96@hotmail.com	89032981432	Check out the new financial tool, which can make you rich. https://clisa.escueladelcambio.es/	0	\N	\N
614	Crytosmamysmamy	Amanbenz10@gmail.com	89031818064	Everyone can earn as much as he wants suing this Bot. https://clisa.escueladelcambio.es/	0	\N	\N
615	Crytosmamysmamy	popyroll@gmail.com	89038710193	The online income is the easiest ways to make you dream come true. http://go.tazalus.com/096s	0	\N	\N
616	Crytosmamysmamy	olalekan.isreal@yahoo.com	89032901700	Wow! This Robot is a great start for an online career. http://go.tazalus.com/096s	0	\N	\N
617	Crytosmamysmamy	mely@myway.com	89031322283	Need money? Get it here easily! Just press this to launch the robot. http://go.tazalus.com/096s	0	\N	\N
618	Crytosmamysmamy	abbytapia@ymail.com	89032347506	Check out the new financial tool, which can make you rich. http://go.tazalus.com/096s	0	\N	\N
619	Crytosmamysmamy	fabinhomiami@hotmail.com	89032419452	Make money, not war! Financial Robot is what you need. http://go.tazalus.com/096s	0	\N	\N
620	Crytosmamysmamy	sternjenny@yahoo.com	89032298824	Looking for an easy way to make money? Check out the financial robot. http://go.tazalus.com/096s	0	\N	\N
621	Crytosmamysmamy	jaysaldana46@yahoo.com	89036608036	No need to stay awake all night long to earn money. Launch the robot. http://go.tazalus.com/096s	0	\N	\N
622	Crytosmamysmamy	taylor.mccafferty@yahoo.com	89034202561	Start making thousands of dollars every week just using this robot. http://go.tazalus.com/096s	0	\N	\N
623	Crytosmamysmamy	meshga9_007@yahoo.com	89034196022	No worries if you are fired. Work online. http://go.tazalus.com/096s	0	\N	\N
624	Crytosmamysmamy	37262@psdschools.org	89031895173	The online income is the easiest ways to make you dream come true. http://go.tazalus.com/096s	0	\N	\N
625	Crytosmamysmamy	matias.reed89@gmaiil.com	89030920952	The fastest way to make you wallet thick is here. http://go.tazalus.com/096s	0	\N	\N
626	Crytosmamysmamy	keiunte91@yahoo.com	89036641632	No need to worry about the future if your use this financial robot. http://go.tazalus.com/096s	0	\N	\N
627	Crytosmamysmamy	shauna.lischka@gmail.com	89036414323	The fastest way to make you wallet thick is here. http://go.tazalus.com/096s	0	\N	\N
628	Crytosmamysmamy	newyork772000@hotmail.com	89033015055	Start making thousands of dollars every week. http://go.tazalus.com/096s	0	\N	\N
629	Crytosmamysmamy	scotteh20@yahoo.com	89039418227	Every your dollar can turn into $100 after you lunch this Robot. http://go.tazalus.com/096s	0	\N	\N
630	Mike Dunce	no-replyItelcoth@gmail.com	89737979232	Good Day \r\n \r\nI have just took a look on your SEO for  10bucksonly.co.za for the ranking keywords and saw that your website could use a push. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart increasing your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Dunce\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
631	Crytosmamysmamy	janelle_274@hotmail.com	89035563325	Financial Robot is #1 investment tool ever. Launch it! http://go.tazalus.com/096s	0	\N	\N
632	Crytosmamysmamy	macherick22@hotmail.com	89037720064	Need money? Earn it without leaving your home. http://go.tazalus.com/096s	0	\N	\N
633	Crytosmamysmamy	feefyfamily@pennswoods.net	89038072896	Attention! Here you can earn money online! http://go.tazalus.com/096s	0	\N	\N
634	Crytosmamysmamy	michellejcanning@yahoo.com	89033929020	No need to work anymore. Just launch the robot. http://go.tazalus.com/096s	0	\N	\N
635	Crytosmamysmamy	cccramer@comcast.net	89036483299	Making money can be extremely easy if you use this Robot. http://go.tazalus.com/096s	0	\N	\N
636	Crytosmamysmamy	rokuh2007@hotmail.com	89039855084	Have no money? It’s easy to earn them online here. http://go.tazalus.com/096s	0	\N	\N
637	Crytosmamysmamy	jirapon-ning@hotmail.com	89031038923	Join the society of successful people who make money here. http://go.tazalus.com/096s	0	\N	\N
638	Anikanor	anikanor@hotmail.com	+420 2317857675	Ηеllо!\r\nPеrhaрs my messagе iѕ toо ѕреcіfiс.\r\nBut mу older sister found a wonderful mаn herе and thеу hаve а grеаt rеlatіonѕhiр, but what аbout mе?\r\nΙ am 24 уearѕ old, Аnіka, from thе Czech Rеpublіc, knоw Εnglіsh languаge аlѕo\r\nАnd... better tо ѕау іt immеdiаtelу. Ι аm bіseхual. I аm not jealоuѕ of anothеr wоmаn... еspеcіallу іf wе mаkе lоvе togеther.\r\nΑh yеѕ, Ι cоok vеry tаѕtуǃ and Ι lovе not onlу cооk ;))\r\nΙm reаl girl and loоking for ѕerіous аnd hot rеlationship...\r\nАnуwaу, уоu саn fіnd my profilе hеre: http://wwhelanevsoursofthind.tk/usr-43121/	0	\N	\N
639	Crytosmamysmamy	myxkemicalxromancex@hotmail.com	89033145714	We know how to make our future rich and do you? https://riviello.es/promo	0	\N	\N
640	Crytosmamysmamy	info@bianca-maier.com	89033073924	The success formula is found. Learn more about it. https://riviello.es/promo	0	\N	\N
641	Crytosmamysmamy	corndog_1207@yahoo.com	89030033043	Buy everything you want earning money online. https://riviello.es/promo	0	\N	\N
642	Crytosmamysmamy	jkmullins23@gmail.com	89030580047	The financial Robot is your # 1 expert of making money. https://riviello.es/promo	0	\N	\N
643	Crytosmamysmamy	aldingtons@googlemail.com	89039861849	Still not a millionaire? Fix it now! https://riviello.es/promo	0	\N	\N
644	Crytosmamysmamy	falcons88@aol.com	89039232744	Financial Robot is #1 investment tool ever. Launch it! https://riviello.es/promo	0	\N	\N
645	Crytosmamysmamy	vi.le.n.s.hr.v.9.5.4@gmail.com	89038220885	Robot is the best solution for everyone who wants to earn. https://riviello.es/promo	0	\N	\N
646	Crytosmamysmamy	lykoskatagaria@yahoo.com	89036354799	Check out the newest way to make a fantastic profit. https://riviello.es/promo	0	\N	\N
647	Crytosmamy	anthony680@btinternet.com	89037948672	Money, money! Make more money with financial robot! https://riviello.es/promo	0	\N	\N
648	Crytosmamy	darlene_barnes@aol.com	89033316872	This robot can bring you money 24/7. https://riviello.es/promo	0	\N	\N
649	Crytosmamy	sahanashenoy08@gmail.com	89035018733	Looking forward for income? Get it online. https://riviello.es/promo	0	\N	\N
650	Crytosmamy	moonfairie24@comcast.net	89034532061	One dollar is nothing, but it can grow into $100 here. https://riviello.es/promo	0	\N	\N
651	Crytosmamy	jvigers@comcast.net	89037743080	Provide your family with the money in age. Launch the Robot! https://riviello.es/promo	0	\N	\N
652	Crytosmamy	idaburgis@gmail.com	89039870039	Small investments can bring tons of dollars fast. https://riviello.es/promo	0	\N	\N
653	Crytosmamy	addiesmom81506@yahoo.com	89031290217	Start your online work using the financial Robot. https://riviello.es/promo	0	\N	\N
654	Crytosmamy	halsey31@ligtel.com	89037201270	Financial Robot is #1 investment tool ever. Launch it! https://riviello.es/promo	0	\N	\N
655	Crytosmamy	jleibold@comcast.net	89037217523	Check out the automatic Bot, which works for you 24/7. https://riviello.es/promo	0	\N	\N
656	Crytosmamy	tiaboglin@gmail.com	89036299790	Need cash? Launch this robot and see what it can. https://riviello.es/promo	0	\N	\N
657	Crytosmamy	ginairvine710@gmail.com	89031986137	Financial robot is the best companion of rich people. https://riviello.es/promo	0	\N	\N
658	Crytosmamy	suzeeq121271@yahoo.com	89033002500	Find out about the easiest way of money earning. https://riviello.es/promo	0	\N	\N
659	Mike Boolman	no-replyItelcoth@gmail.com	86828884584	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Boolman\r\n \r\nsupport@digital-x-press.com	0	\N	\N
660	Crytosmamy	eelkenny@hotmail.com	89034651401	No need to work anymore while you have the Robot launched! https://riviello.es/promo	0	\N	\N
661	Crytosmamy	tetedede13@gmail.com	89036434332	Need some more money? Robot will earn them really fast. https://riviello.es/promo	0	\N	\N
662	Crytosmamy	Itsfreshybaby@gmail.com	89039321575	One dollar is nothing, but it can grow into $100 here. https://riviello.es/promo	0	\N	\N
663	Crytosmamy	JON@TOWNBROWN.COM	89033164153	The fastest way to make you wallet thick is here. https://riviello.es/promo	0	\N	\N
664	Crytosmamy	godinovirgie@yahoo.com	89038376451	Online Bot will bring you wealth and satisfaction. https://riviello.es/promo	0	\N	\N
665	Crytosmamy	MEMEMEEBARBIE@YAHOO.COM	89035100768	Start your online work using the financial Robot. https://riviello.es/promo	0	\N	\N
666	Crytosmamy	angus6chan@gmail.com	89039380112	Check out the newest way to make a fantastic profit. https://riviello.es/promo	0	\N	\N
667	Crytosmamy	sarahdoesfandom@gmail.com	89034803526	Attention! Financial robot may bring you millions! https://riviello.es/promo	0	\N	\N
668	Crytosmamy	yliaen@gmail.com	89030031570	Check out the automatic Bot, which works for you 24/7. https://riviello.es/promo	0	\N	\N
669	Crytosmamy	tom.hester@sanmina-sci.com	89031010600	Financial robot keeps bringing you money while you sleep. https://riviello.es/promo	0	\N	\N
670	Crytosmamy	quansding@yahoo.com	89031444078	The financial Robot is your # 1 expert of making money. https://riviello.es/promo	0	\N	\N
671	Crytosmamy	Cashflowk101@yahoo.com	89035587293	Financial robot is a great way to manage and increase your income. https://riviello.es/promo	0	\N	\N
672	Crytosmamy	lxwpolzkwm1qb@yahoo.com	89033924803	The additional income is available for everyone using this robot. https://riviello.es/promo	0	\N	\N
673	Crytosmamy	sasha.bakay@gmail.com	89034303299	Looking for an easy way to make money? Check out the financial robot. https://riviello.es/promo	0	\N	\N
674	Crytosmamy	kseth62501@yahoo.com	89032114572	Trust your dollar to the Robot and see how it grows to $100. https://riviello.es/promo	0	\N	\N
675	Crytosmamy	sondervik@gmail.com	89039326073	Small investments can bring tons of dollars fast. https://riviello.es/promo	0	\N	\N
676	Crytosmamy	y.a.l.a.o5.90.6@gmail.com	89039261107	Feel free to buy everything you want with the additional income. https://riviello.es/promo	0	\N	\N
677	Crytosmamy	wildflower8779@yahoo.com	89036753066	We have found the fastest way to be rich. Find it out here. https://riviello.es/promo	0	\N	\N
678	Crytosmamy	ogando_juan@yahoo.com	89038622560	Wow! This is a fastest way for a financial independence. https://riviello.es/promo	0	\N	\N
679	Crytosmamy	slsa4879@brealynnvideos.com	89030074320	The financial Robot is your future wealth and independence. https://riviello.es/promo	0	\N	\N
680	Crytosmamy	yliaen@gmail.com	89038521630	Still not a millionaire? Fix it now! https://riviello.es/promo	0	\N	\N
681	Crytosmamy	woodstahannah3@gmail.com	89031596035	The online job can bring you a fantastic profit. https://riviello.es/promo	0	\N	\N
682	Crytosmamy	rablove@live.com	89031220547	Launch the best investment instrument to start making money today. https://riviello.es/promo	0	\N	\N
683	Crytosmamy	adamredbomb@yahoo.com	89039803004	Financial robot is a great way to manage and increase your income. https://riviello.es/promo	0	\N	\N
684	Crytosmamy	rysmomma411@yahoo.com	89030559100	Let the financial Robot be your companion in the financial market. https://riviello.es/promo	0	\N	\N
685	Tigran Ayrapetyan	ujn2esbgakah@opayq.com	81256736949	Hello, \r\n \r\nWith our business experience spanning over 2 decades and transiting from a real estate company into a dominant private investment company over the years. We will be glad to review, discuss and partner with you in your dream project as well as your existing businesses, by providing funding, ideas and strong networks if needed, in order to form a strategic business partnership. \r\n \r\nWe have a structured joint venture investment plan in which we are interested in an annual return on investment not more than 10% ROI. We are also currently structuring a convertible debt and loan financing of 3% interest repayable annually with no early repayment penalties. \r\n \r\nKindly submit your business plan, pitch deck or executive summary for us to review and to understand much better about your business and to further discuss a possible partnership. \r\n \r\nSincerely, \r\n \r\nTigran Ayrapetyan \r\nInvestment Director \r\nDevcorp International E.C. \r\nP.O Box 10236 Shop No. 305 \r\nFlr 3 Manama Centre, Bahrain \r\n \r\nEmail: tigran.ayrapetyan@devcorpinternationalec.com	0	\N	\N
686	WayneZit	jasonward9681@gmail.com	89193911738	Hello, \r\n \r\nOur company, RatingsKing, specializes in posting 5-star testimonials on all major review sites. This way people can find you much easier and get a good impression of your business. \r\nJust go on our website and choose the package that best fits your needs at https://ratingsking.com/packages.php \r\n \r\nOur packages start from $49/month. \r\nDepending on your package you will have a number of positive reviews that we will do for you. You will have reports monthly with the work that has been done in your account. \r\n \r\nUsually, we are posting on all major reviews sites or other listings you may have.	0	\N	\N
687	Greg Chambers	gorillagreg92@gmail.com	83734688944	Are you using TikTok to generate sales for your business? \r\nIf not, keep reading because your competition might be taking your money and customers shortly. \r\nI’m Gorilla Greg, and I want to let you in on a secret about TikTok. If you did not know, it has been experiencing explosive growth lately. Some experts even say it will overtake Facebook and Instagram. \r\nWith 500 million users desperate for products and services, it is a massive opportunity for you, right Now! \r\nBut before you dive in, you need to know: \r\n?\tHow it works \r\n?\tHow to sell to users \r\n?\tAnd most important, what not to do \r\nTikTok appeals to specific demographics, and you need to speak their language to succeed. \r\nClick the link below to receive a free report on - Marketing on TikTok. \r\nhttps://bit.ly/tiktokgorilla \r\n \r\nCheers, \r\nGorilla Greg \r\nGORILLA MARKETING \r\nPS. If you are not selling on TikTok you could be losing 30% of your sales to your competition. Click the link now, because the longer you wait the more money you lose. \r\nhttps://bit.ly/tiktokgorilla	0	\N	\N
688	PhilipMof	mordvinovmilano+avcw@mail.ru	85757787619	10bucksonly.co.za ofeiifeodwpdeofijesdwsfeiiejokdwpdoefigjfidoksfihigjskodwsfiheghifegergsdfsregsfggrgr	0	\N	\N
689	Iddubtyfa8	brosalina.lina@list.ru	86474121812	Вам 92 221 p  \r\nПодробнее: https://docs.google.com/document/d/AAA10bucksonly.co.zaBBB/view	0	\N	\N
690	Crytosmamy	eelkenny@hotmail.com	89038340793	Financial robot is your success formula is found. Learn more about it. https://riviello.es/promo	0	\N	\N
691	Crytosmamy	liosemchania@earthlink.net	89032325750	Find out about the easiest way of money earning. https://riviello.es/promo	0	\N	\N
692	Crytosmamy	ynayampally@gmail.com	89039123184	Make yourself rich in future using this financial robot. https://riviello.es/promo	0	\N	\N
693	Crytosmamy	pamdutton65@yahoo.com	89032319366	Invest $1 today to make $1000 tomorrow. https://riviello.es/promo	0	\N	\N
694	Crytosmamy	mabel_fur@pinkinbox.org	89036973709	Financial robot is a great way to manage and increase your income. https://riviello.es/promo	0	\N	\N
695	Crytosmamy	gonecr8zy@sbcglobal.net	89038206508	Your money keep grow 24/7 if you use the financial Robot. https://riviello.es/promo	0	\N	\N
696	Crytosmamy	carlyatkission@yahoo.com	89035477093	Need money? The financial robot is your solution. https://riviello.es/promo	0	\N	\N
697	Crytosmamy	goldglove3@yahoo.com	89037945228	Everyone can earn as much as he wants suing this Bot. https://riviello.es/promo	0	\N	\N
698	Crytosmamy	kellylynnmchugh@gmail.com	89030059540	This robot will help you to make hundreds of dollars each day. https://riviello.es/promo	0	\N	\N
699	Crytosmamy	jx.d1.47.m.n.bv.3.6.9c.xz9514@gmail.com	89036873023	One dollar is nothing, but it can grow into $100 here. https://riviello.es/promo	0	\N	\N
700	Crytosmamy	rhemanat@yahoo.com	89035698251	Join the society of successful people who make money here. https://riviello.es/promo	0	\N	\N
701	Crytosmamy	c.eissej@gmail.com	89031033303	Automatic robot is the best start for financial independence. https://riviello.es/promo	0	\N	\N
702	Crytosmamy	jscott_sf@hotmail.com	89033600492	Financial Robot is #1 investment tool ever. Launch it! https://riviello.es/promo	0	\N	\N
703	Crytosmamy	yustiana_utama@yahoo.com	89032344260	The online income is the easiest ways to make you dream come true. https://riviello.es/promo	0	\N	\N
704	Crytosmamy	sabrinaleichtmanlevine@gmail.com	89031102014	Launch the financial Bot now to start earning. https://riviello.es/promo	0	\N	\N
705	Crytosmamy	juliabeau@hotmail.com	89037049876	Check out the new financial tool, which can make you rich. https://riviello.es/promo	0	\N	\N
706	Crytosmamy	angela.chen895@gmail.com	89033377612	Check out the newest way to make a fantastic profit. https://riviello.es/promo	0	\N	\N
708	Crytosmamy	lilshrr@yahoo.com	89032168054	One click of the robot can bring you thousands of bucks. https://riviello.es/promo	0	\N	\N
709	Crytosmamy	rlad4hickey@hotmail.com	89033197218	The additional income for everyone. https://riviello.es/promo	0	\N	\N
710	Crytosmamy	l.a.m.pe.n.y.uz.ufa.h@gmail.com	89034923507	Financial independence is what this robot guarantees. https://riviello.es/promo	0	\N	\N
711	Crytosmamy	ressam_memo19@hotmail.com	89035272467	The fastest way to make you wallet thick is here. https://riviello.es/promo	0	\N	\N
712	Crytosmamy	dameian.helton@gmail.com	89039323367	Have no money? Earn it online. http://go.tygyguip.com/096s	0	\N	\N
713	Crytosmamy	cedmoore1@comcast.net	89030310466	Join the society of successful people who make money here. http://go.tygyguip.com/096s	0	\N	\N
714	Crytosmamy	gamu2lawin@yahoo.com	89034082737	Check out the automatic Bot, which works for you 24/7. http://go.tygyguip.com/096s	0	\N	\N
715	Crytosmamy	bluebamazz@yahoo.com	89034823569	Make your money work for you all day long. http://go.tygyguip.com/096s	0	\N	\N
716	Crytosmamy	Tsaturyan_kristine@yahoo.com	89036934369	Online earnings are the easiest way for financial independence. https://emdn.cl/promo	0	\N	\N
717	Crytosmamy	leon_conway11@gmail.com	89035170835	The additional income is available for everyone using this robot. https://emdn.cl/promo	0	\N	\N
718	Crytosmamy	Ellenmetheney@yahoo.com	89036617655	The financial Robot is your # 1 expert of making money. https://emdn.cl/promo	0	\N	\N
719	Crytosmamy	tee_cam03@yahoo.com	89037778792	Make your computer to be you earning instrument. https://emdn.cl/promo	0	\N	\N
720	Crytosmamy	kellylynnmchugh@gmail.com	89030319329	Need money? Get it here easily! Just press this to launch the robot. https://emdn.cl/promo	0	\N	\N
721	Crytosmamy	grace_marie7@yahoo.com	89039398844	Earning money in the Internet is easy if you use Robot. https://emdn.cl/promo	0	\N	\N
722	Crytosmamy	sder@mac.com	89036747781	Make your computer to be you earning instrument. https://emdn.cl/promo	0	\N	\N
723	Crytosmamy	tim.neal3@btinternet.com	89038194314	Your computer can bring you additional income if you use this Robot. https://emdn.cl/promo	0	\N	\N
724	Crytosmamy	adnen.debbabi@laposte.net	89033925152	The financial Robot works for you even when you sleep. https://emdn.cl/promo	0	\N	\N
725	Crytosmamy	georgia196188@yahoo.com	89033726214	Wow! This Robot is a great start for an online career. https://emdn.cl/promo	0	\N	\N
726	Crytosmamy	valeriemule@greeninbox.org	89032311597	Have no money? It’s easy to earn them online here. https://tiendaskon.com.es/promo	0	\N	\N
727	Crytosmamy	Jennelkins36@gmail.com	89030784521	Financial robot keeps bringing you money while you sleep. https://tiendaskon.com.es/promo	0	\N	\N
728	Crytosmamy	t.bolling22@gmail.com	89037069099	Financial robot keeps bringing you money while you sleep. https://tiendaskon.com.es/promo	0	\N	\N
729	Crytosmamy	rupert@nevin.com	89030712831	It is the best time to launch the Robot to get more money. https://tiendaskon.com.es/promo	0	\N	\N
730	Crytosmamy	gabbylucas0008@yahoo.com	89036057960	Even a child knows how to make money. This robot is what you need! https://tiendaskon.com.es/promo	0	\N	\N
731	Crytosmamy	Richiericg@gmail.com	89037781714	We have found the fastest way to be rich. Find it out here. https://tiendaskon.com.es/promo	0	\N	\N
732	Crytosmamy	sahanamedia360@gmail.com	89032396713	Start your online work using the financial Robot. https://tiendaskon.com.es/promo	0	\N	\N
733	Crytosmamy	ewekizaf@sdd2q.com	89031979485	Launch the robot and let it bring you money. https://tiendaskon.com.es/promo	0	\N	\N
734	Crytosmamy	reymisterio237@hotmail.com	89036327081	Make dollars just sitting home. https://tiendaskon.com.es/promo	0	\N	\N
735	Crytosmamy	c.eissej@gmail.com	89038673170	The huge income without investments is available, now! https://hierbalimon.es/promo	0	\N	\N
736	Crytosmamy	peterpanzy884@comcast.net	89031034647	Try out the automatic robot to keep earning all day long. https://hierbalimon.es/promo	0	\N	\N
737	Crytosmamy	leon_conway11@gmail.com	89032027563	Provide your family with the money in age. Launch the Robot! https://hierbalimon.es/promo	0	\N	\N
738	Crytosmamy	MrsCS@CRProd.net	89039913676	Financial robot keeps bringing you money while you sleep. https://hierbalimon.es/promo	0	\N	\N
739	Crytosmamy	jeanwhenry@yahoo.com	89034755915	The financial Robot is the most effective financial tool in the net! https://hierbalimon.es/promo	0	\N	\N
740	Crytosmamy	bjmarra@verizon.net	89030970542	Attention! Financial robot may bring you millions! https://hierbalimon.es/promo	0	\N	\N
741	Crytosmamy	yoakemc2000@yahoo.com	89034010560	Financial robot guarantees everyone stability and income. https://hierbalimon.es/promo	0	\N	\N
742	Leroy	zelatcol@gmail.com	83253543158	Hi, kam dashur të di çmimin tuaj	0	\N	\N
743	Crytosmamy	Cardio439@gmail.com	89030963374	We know how to become rich and do you? https://hierbalimon.es/promo	0	\N	\N
744	Crytosmamy	jupo74@comcast.net	89038018179	Financial independence is what this robot guarantees. https://hierbalimon.es/promo	0	\N	\N
745	Crytosmamy	TheSkeetor@gmail.com	89031755225	Make thousands of bucks. Financial robot will help you to do it! https://hierbalimon.es/promo	0	\N	\N
746	Crytosmamy	jeffedwar@excite.com	89036972771	Attention! Here you can earn money online! https://hierbalimon.es/promo	0	\N	\N
747	Crytosmamy	hjwhxjl5ad9gq@yahoo.com	89030227425	The online financial Robot is your key to success. https://hierbalimon.es/promo	0	\N	\N
748	Crytosmamy	m_maamaar_r@yahoo.com	89032345499	Check out the newest way to make a fantastic profit. https://bodyandsoul.com.es/promo	0	\N	\N
749	Crytosmamy	aslanemmi@hotmail.com	89038604207	Make your laptop a financial instrument with this program. https://bodyandsoul.com.es/promo	0	\N	\N
750	Crytosmamy	aliciarimestad@yahoo.com	89036917710	Online job can be really effective if you use this Robot. https://bodyandsoul.com.es/promo	0	\N	\N
751	Crytosmamy	rman772008@yahoo.com	89033857911	Need money? Earn it without leaving your home. https://bodyandsoul.com.es/promo	0	\N	\N
752	Crytosmamy	gregorivanov@email.org	89030166885	# 1 financial expert in the net! Check out the new Robot. https://bodyandsoul.com.es/promo	0	\N	\N
753	Crytosmamy	wsthevisionary@yahoo.com	89039045099	Only one click can grow up your money really fast. https://bodyandsoul.com.es/promo	0	\N	\N
790	Crytosmamy	tayloro1180@aim.com	89035319794	The best way for everyone who rushes for financial independence. http://go.tygyguip.com/096s	0	\N	\N
791	Crytosmamy	bombers.jw35@yahoo.com	89037768901	Even a child knows how to make $100 today. http://go.tygyguip.com/096s	0	\N	\N
792	Crytosmamy	eokmmehv@qxbwzntv.com	89032165481	Need money? Earn it without leaving your home. http://go.tygyguip.com/096s	0	\N	\N
754	Mike Longman	no-replyItelcoth@gmail.com	84291483781	Hi there \r\n \r\nThis is Mike Longman\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Longman\r\n \r\nmike@strictlydigital.net	0	\N	\N
755	Crytosmamy	biloginadulttoys@feeladult.com	89033009857	This robot will help you to make hundreds of dollars each day. https://bodyandsoul.com.es/promo	0	\N	\N
756	Crytosmamy	meeyungs_shins@hotmail.com	89038589708	Launch the financial Bot now to start earning. https://bodyandsoul.com.es/promo	0	\N	\N
757	Crytosmamy	grace_marie7@yahoo.com	89030023406	Even a child knows how to make money. Do you? https://bodyandsoul.com.es/promo	0	\N	\N
758	Crytosmamy	gonecr8zy@sbcglobal.net	89030644707	The best online job for retirees. Make your old ages rich. https://bodyandsoul.com.es/promo	0	\N	\N
759	Crytosmamy	angus6chan@gmail.com	89036681145	Have no money? It’s easy to earn them online here. https://bodyandsoul.com.es/promo	0	\N	\N
760	Crytosmamy	amoreno@sprintpcs.com	89035631593	The online financial Robot is your key to success. https://puertobelenn.cl/promo	0	\N	\N
761	Crytosmamy	tiaboglin@gmail.com	89032687941	No need to stay awake all night long to earn money. Launch the robot. https://puertobelenn.cl/promo	0	\N	\N
762	Crytosmamy	sue.atkinson@portlock.com	89037661212	The success formula is found. Learn more about it. https://puertobelenn.cl/promo	0	\N	\N
763	Crytosmamy	LevanRozomashvili@gmail.com	89036029574	Buy everything you want earning money online. http://tale.kazakh.ru/bitrix/credirect.php?goto=https://puertobelenn.cl/promo	0	\N	\N
764	Crytosmamy	ile-92@hotmail.com	89032284135	Robot never sleeps. It makes money for you 24/7. http://www.kobra-verlag.de/redirect.php?linkto=https://puertobelenn.cl/promo	0	\N	\N
765	Crytosmamy	digitan@naver.com	89031275864	Financial independence is what everyone needs. http://adjack.net/track/count.asp?counter=1235-644&url=https://puertobelenn.cl/promo	0	\N	\N
766	Crytosmamy	arianneong@yahoo.com	89034742574	Need some more money? Robot will earn them really fast. http://journalist.kg/redirect.php?url=https://puertobelenn.cl/promo	0	\N	\N
767	Crytosmamy	tony_the_hair@hotmail.com	89038567957	The success formula is found. Learn more about it. http://nasrabad.com/dailylink/?go=https%3A%2F%2Fpuertobelenn.cl%2Fpromo&id=4	0	\N	\N
768	Crytosmamy	kodaikanalboatclub@gmail.com	89031895805	Launch the financial Bot now to start earning. http://funabashi-shika.com/ys4/rank.cgi?mode=link&id=7&url=https%3A%2F%2Fpuertobelenn.cl%2Fpromo	0	\N	\N
769	Crytosmamy	mazharul_smile@yahoo.com	89036080128	Try out the automatic robot to keep earning all day long. http://sites.greind.is/puertobelenn.cl%2Fpromo	0	\N	\N
770	Crytosmamy	TheSkeetor@gmail.com	89030550622	Looking for an easy way to make money? Check out the financial robot. https://naruto.su/link.ext.php?url=https://puertobelenn.cl/promo	0	\N	\N
771	Crytosmamy	tee_cam03@yahoo.com	89036187635	Still not a millionaire? The financial robot will make you him! http://www.bimmerboard.be/forum/index.php?thememode=full;redirect=https://puertobelenn.cl/promo	0	\N	\N
772	Crytosmamy	HuronHighgirl@yahoo.com	89035826447	Feel free to buy everything you want with the additional income. http://cms.rateyourlender.com/CMSModules/BannerManagement/CMSPages/BannerRedirect.ashx?bannerID=9&redirectURL=https%3A%2F%2Fpuertobelenn.cl%2Fpromo	0	\N	\N
773	Crytosmamy	megan_wicks19@yahoo.com	89039675987	Every your dollar can turn into $100 after you lunch this Robot. http://clipshare.eu/tgp/click.php?id=310309&u=https%3A%2F%2Fpuertobelenn.cl%2Fpromo	0	\N	\N
774	Crytosmamy	hrteoloko@gmail.com	89035649831	Everyone can earn as much as he wants now. http://bansukamen.com/cp/?wptouch_switch=desktop&redirect=https%3A%2F%2Fpuertobelenn.cl%2Fpromo	0	\N	\N
775	Crytosmamy	Tsaturyan_kristine@yahoo.com	89030669548	Trust the financial Bot to become rich. http://zoostar.ru/z176/about.phtml?go=https%3A%2F%2Fpuertobelenn.cl%2Fpromo	0	\N	\N
776	Crytosmamy	thankiem08@yahoo.com	89034535887	The financial Robot works for you even when you sleep. https://quehacerensantiago.cl/promo	0	\N	\N
777	Crytosmamy	fordfamily07@icloud.com	89030982443	Learn how to make hundreds of backs each day. https://quehacerensantiago.cl/promo	0	\N	\N
778	Crytosmamy	jmi6551@aol.com	89036212166	Start your online work using the financial Robot. https://quehacerensantiago.cl/promo	0	\N	\N
779	Crytosmamy	rakesh06rana@yahoo.com	89032698200	Try out the best financial robot in the Internet. https://quehacerensantiago.cl/promo	0	\N	\N
780	Crytosmamy	gonecr8zy@sbcglobal.net	89036554284	The additional income for everyone. https://quehacerensantiago.cl/promo	0	\N	\N
781	Crytosmamy	bahulya@gmail.com	89037612458	Financial independence is what this robot guarantees. https://quehacerensantiago.cl/promo	0	\N	\N
782	Crytosmamy	murdockalicia17@gmail.com	89030897447	This robot can bring you money 24/7. https://quehacerensantiago.cl/promo	0	\N	\N
783	Crytosmamy	ogando_juan@yahoo.com	89032639827	This robot will help you to make hundreds of dollars each day. https://quehacerensantiago.cl/promo	0	\N	\N
784	Crytosmamy	gregandsharron@gmail.com	89031354270	Just one click can turn you dollar into $1000. http://nuke.giornalinoh.it/LinkClick.aspx?link=https%3A%2F%2Fvaratradgardsforening.se%2Fpromo&tabid=169&mid=650	0	\N	\N
785	Crytosmamy	jpena@americanregency.com	89033576265	Still not a millionaire? The financial robot will make you him! http://www.iskids.net/app/link/link3.php?keyword=%ED%95%98%EC%9D%B4%ED%82%A53&goLink=https%3A%2F%2Fvaratradgardsforening.se%2Fpromo	0	\N	\N
786	Crytosmamy	MGURATH@HOTMAIL.COM	89032240844	The best online job for retirees. Make your old ages rich. http://systemeffecto.pl/redirect/6580_348666/DydynhsfDqFdCyls?url=https%3A%2F%2Fvaratradgardsforening.se%2Fpromo	0	\N	\N
787	Crytosmamy	pkpribor@ukr.net	89035441574	Using this Robot is the best way to make you rich. http://www.usbthailand.com/noresponsive.php?go=https%3A%2F%2Fvaratradgardsforening.se%2Fpromo	0	\N	\N
788	Crytosmamy	memorypligger445@servicegulino.com	89037344033	Need money? Get it here easily! Just press this to launch the robot. http://click.accesstrade.vn/adv.php?rk=00006800050z&url=https%3A%2F%2Fvaratradgardsforening.se%2Fpromo	0	\N	\N
789	Crytosmamy	sahanashenoy08@gmail.com	89031484527	The online income is your key to success. http://go.tygyguip.com/096s	0	\N	\N
793	Crytosmamy	mazharul_smile@yahoo.com	89033100845	Launch the financial Robot and do your business. http://go.tygyguip.com/096s	0	\N	\N
794	Crytosmamy	renewenvserv@att.net	89039821899	Launch the robot and let it bring you money. http://go.tygyguip.com/096s	0	\N	\N
795	Crytosmamy	eekxmmqg@ospjrudh.com	89034802759	Financial robot is your success formula is found. Learn more about it. http://go.tygyguip.com/096s	0	\N	\N
796	Crytosmamy	biloginadulttoys@feeladult.com	89037718175	Make thousands every week working online here. http://go.tygyguip.com/096s	0	\N	\N
797	Crytosmamy	bluebamazz@yahoo.com	89031902385	Additional income is now available for anyone all around the world. http://go.tygyguip.com/096s	0	\N	\N
798	Crytosmamy	alasheia79@yahoo.com	89039849407	Robot is the best solution for everyone who wants to earn. http://go.tygyguip.com/096s	0	\N	\N
799	Crytosmamy	rupert@nevin.com	89035620989	Need some more money? Robot will earn them really fast. http://go.tygyguip.com/096s	0	\N	\N
800	Crytosmamy	ewekizaf@sdd2q.com	89033780191	Trust the financial Bot to become rich. http://go.tygyguip.com/096s	0	\N	\N
801	Crytosmamy	joanwhoops@aol.com	89039319597	Financial robot guarantees everyone stability and income. http://go.tygyguip.com/096s	0	\N	\N
802	Crytosmamy	yujuch@yahoo.com	89035291871	Find out about the fastest way for a financial independence. http://go.tygyguip.com/096s	0	\N	\N
803	Crytosmamy	Cashflowk101@yahoo.com	89039591745	# 1 financial expert in the net! Check out the new Robot. http://go.tygyguip.com/096s	0	\N	\N
804	Crytosmamy	powgeelldeeypdee@hotmail.com	89035940773	Every your dollar can turn into $100 after you lunch this Robot. http://go.tygyguip.com/096s	0	\N	\N
805	Crytosmamy	grace_marie7@yahoo.com	89034987664	Earn additional money without efforts and skills. http://go.tygyguip.com/096s	0	\N	\N
806	Crytosmamy	christialomas@gmail.com	89030948461	Everyone can earn as much as he wants suing this Bot. http://go.tygyguip.com/096s	0	\N	\N
807	Crytosmamy	scholarships_22@yahoo.com	89039521537	Looking forward for income? Get it online. http://go.tygyguip.com/096s	0	\N	\N
808	Crytosmamy	ryantbaskin@gmail.com	89030336347	Still not a millionaire? The financial robot will make you him! https://allnews.elk.pl/wfdl	0	\N	\N
809	Crytosmamy	nharrington1023@yahoo.com	89034042516	The success formula is found. Learn more about it. https://allnews.elk.pl/wfdl	0	\N	\N
810	Crytosmamy	lisaward87@yahoo.com	89031350033	Make thousands every week working online here. https://allnews.elk.pl/wfdl	0	\N	\N
811	Crytosmamy	hjwhxjl5ad9gq@yahoo.com	89037491649	One dollar is nothing, but it can grow into $100 here. https://allcnews.xyz/wfdl	0	\N	\N
812	Crytosmamy	glmayfield@nc.rr.com	89037206876	Make yourself rich in future using this financial robot. https://allcnews.xyz/wfdl	0	\N	\N
813	Crytosmamy	centsall54@aim.com	89031000685	Even a child knows how to make $100 today with the help of this robot. https://allcnews.xyz/wfdl	0	\N	\N
814	Crytosmamy	brittany_hulse@yahoo.com	89034082275	Start making thousands of dollars every week. https://allcnews.xyz/wfdl	0	\N	\N
815	Crytosmamy	shannon_m_ericson@hotmail.com	89030871266	Everyone can earn as much as he wants now. https://allcnews.xyz/wfdl	0	\N	\N
816	Crytosmamy	gabbylucas0008@yahoo.com	89032467561	The financial Robot is your # 1 expert of making money. https://allcnews.xyz/wfdl	0	\N	\N
817	Crytosmamy	poa_omnibrain@gmx.net	89035218669	Make money in the internet using this Bot. It really works! https://allcryptonnews.xyz/0j35	0	\N	\N
818	Crytosmamy	rosalvalujano@yahoo.com	89034483016	Make $1000 from $1 in a few minutes. Launch the financial robot now. https://allcryptonnews.xyz/0j35	0	\N	\N
819	Crytosmamy	pamdutton65@yahoo.com	89039862431	We know how to make our future rich and do you? https://allcryptonnews.xyz/0j35	0	\N	\N
820	Daniel Todercan	support@newlightdigital.com.hubspot-inbox.com	88483824685	Hey guys, \r\n \r\nI am offering a significant discount on all our digital marketing services through the end of the year. If you were ever thinking about doing stuff like this, now is the time. This is a killer deal. We help companies just like yours generate leads every day. \r\n \r\n1. Write, optimize, and format 3 blog posts per month \r\n(Value: $1,350) - Now $800/month \r\n \r\n2. 12 hours of SEO per month \r\n(Value: $1,200) - Now $800/month \r\n \r\n3. Email marketing -- two emails per month to your list of prospects \r\n(Value $750) - Now $350/month \r\n \r\n4. Social media posting -- 12 posts per month on your social channels (FB + TW + LN) \r\n(Value $900) - Now $450/month \r\n \r\nPlease let me know. \r\n \r\nPS: Need a new website? We build AMAZING sites. Check out our portfolio here: https://bit.ly/3AnkCKV \r\n \r\n \r\n-Daniel Todercan \r\nFounder and Chief Strategist \r\nNew Light Digital \r\n \r\n+1 (917) 744-9170 \r\nhttp://www.newlightdigital.com/	0	\N	\N
821	Crytosmamy	spencerwdill@gmail.com	89037832680	No worries if you are fired. Work online. https://allcryptonnews.xyz/0j35	0	\N	\N
822	Crytosmamy	georgia196188@yahoo.com	89039401545	This robot can bring you money 24/7. https://allcryptonnews.xyz/0j35	0	\N	\N
823	Crytosmamy	alasheia79@yahoo.com	89032348630	Make your laptop a financial instrument with this program. https://allcryptonnews.xyz/0j35	0	\N	\N
824	Crytosmamy	mallo333@yahoo.com	89039181817	Have no financial skills? Let Robot make money for you. https://allcryptonnews.xyz/0j35	0	\N	\N
825	Crytosmamy	sqimyrrizwm@hotmails.com	89032349521	Have no money? Earn it online. https://allcryptonnews.xyz/0j35	0	\N	\N
826	Crytosmamy	lindy369seat@gmail.com	89034648807	Your money keep grow 24/7 if you use the financial Robot. https://allcryptonnews.xyz/0j35	0	\N	\N
827	Crytosmamy	tulin0010@163.com	89032333966	Find out about the easiest way of money earning. https://allcryptonnews.xyz/0j35	0	\N	\N
828	Crytosmamy	smatz@usd397.com	89037798631	Financial independence is what this robot guarantees. https://allcryptonnews.xyz/0j35	0	\N	\N
829	Crytosmamy	Jennelkins36@gmail.com	89037180295	Learn how to make hundreds of backs each day. https://allcryptonnews.xyz/0j35	0	\N	\N
830	Crytosmamy	imataken@aol.com	89037578371	The online job can bring you a fantastic profit. https://go.tygyguip.com/0j35	0	\N	\N
831	Crytosmamy	uchemaryjane@yahoo.com	89038040493	Launch the robot and let it bring you money. https://go.tygyguip.com/0j35	0	\N	\N
832	Crytosmamy	rupert@nevin.com	89031829093	Automatic robot is the best start for financial independence. https://go.tygyguip.com/0j35	0	\N	\N
833	Crytosmamy	sabrinaleichtmanlevine@gmail.com	89034680797	Launch the robot and let it bring you money. https://go.tygyguip.com/0j35	0	\N	\N
834	Crytosmamy	Jedirampage@gmail.com	89038100671	Financial robot is your success formula is found. Learn more about it. https://go.tygyguip.com/0j35	0	\N	\N
835	Crytosmamy	demonhunter803@yahoo.com	89030806800	Make yourself rich in future using this financial robot. https://go.tygyguip.com/0j35	0	\N	\N
836	Crytosmamy	halsey31@ligtel.com	89036761902	Try out the best financial robot in the Internet. https://go.tygyguip.com/0j35	0	\N	\N
837	Crytosmamy	aldenorthmm@yahoo.com	89035103908	Check out the newest way to make a fantastic profit. https://go.tygyguip.com/0j35	0	\N	\N
838	Mike Mason	no-replyItelcoth@gmail.com	82942912918	Good Day \r\n \r\nIf you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/	0	\N	\N
839	Crytosmamy	murdockalicia17@gmail.com	89039585362	Earning $1000 a day is easy if you use this financial Robot. https://go.tygyguip.com/0j35	0	\N	\N
840	Crytosmamy	matthew_motes@yahoo.com	89034163805	Find out about the easiest way of money earning. https://go.tygyguip.com/0j35	0	\N	\N
841	Crytosmamy	544@embarqmail.com	89036932084	Make thousands of bucks. Pay nothing. https://go.tygyguip.com/0j35	0	\N	\N
842	Leroy	zelatcol@gmail.com	82349977888	Hola, quería saber tu precio..	0	\N	\N
843	Crytosmamy	sahinguler1974@hotmail.com	89035420288	Financial robot is your success formula is found. Learn more about it. https://go.tygyguip.com/0j35	0	\N	\N
844	Crytosmamy	themtwenties@hotmail.com	89030410843	There is no need to look for a job anymore. Work online. https://go.tygyguip.com/0j35	0	\N	\N
845	Crytosmamy	m.is.sy.o.u.loo.k7.4.7@gmail.com	89036588893	The huge income without investments is available. https://go.tygyguip.com/0j35	0	\N	\N
846	Crytosmamy	jamienordahl@gmail.com	89032971099	Robot is the best way for everyone who looks for financial independence. https://go.tygyguip.com/0j35	0	\N	\N
847	Crytosmamy	Dopee.boy246@gmail.com	89034836185	Invest $1 today to make $1000 tomorrow. https://go.tygyguip.com/0j35	0	\N	\N
848	Crytosmamy	conan158@hotmail.com	89038565377	Money, money! Make more money with financial robot! https://go.tygyguip.com/0j35	0	\N	\N
849	Crytosmamy	ts1000@yahoo.com	89035506827	Check out the new financial tool, which can make you rich. https://go.tygyguip.com/0j35	0	\N	\N
850	Crytosmamy	annennyenriche@ymail.com	89033422259	We know how to make our future rich and do you? https://go.tygyguip.com/0j35	0	\N	\N
851	Crytosmamy	kedarmoroney@gmail.com	89037322721	The best online investment tool is found. Learn more! https://go.tygyguip.com/0j35	0	\N	\N
852	Crytosmamy	tammyneal33@yahoo.com	89030257096	Financial independence is what everyone needs. https://go.tygyguip.com/0j35	0	\N	\N
853	Crytosmamy	playboy_fofo@hotmail.com	89033705516	There is no need to look for a job anymore. Work online. https://go.tygyguip.com/0j35	0	\N	\N
854	Crytosmamy	semih_0126@hotmail.com	89030241338	Financial independence is what everyone needs. https://go.tygyguip.com/0j35	0	\N	\N
855	Crytosmamy	annettebilgin@me.com	89030947637	Feel free to buy everything you want with the additional income. https://go.tygyguip.com/0j35	0	\N	\N
856	Crytosmamy	uchemaryjane@yahoo.com	89030005897	Trust the financial Bot to become rich. https://go.tygyguip.com/0j35	0	\N	\N
857	Crytosmamy	digitan@naver.com	89032946368	Rich people are rich because they use this robot. https://go.tygyguip.com/0j35	0	\N	\N
858	Crytosmamy	yustiana_utama@yahoo.com	89036628293	The financial Robot works for you even when you sleep. https://go.tygyguip.com/0j35	0	\N	\N
859	Crytosmamy	kezzels@hotmail.com	89031230291	No worries if you are fired. Work online. https://go.tygyguip.com/0j35	0	\N	\N
860	Crytosmamy	arianneong@yahoo.com	89038931872	Launch the financial Bot now to start earning. https://go.tygyguip.com/0j35	0	\N	\N
861	Crytosmamy	Edwintollan@mail.com	89034525861	We know how to become rich and do you? https://go.tygyguip.com/0j35	0	\N	\N
862	Donaldfoext	satelkagashkin+1c5@mail.ru	89475499225	10bucksonly.co.za Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk	0	\N	\N
863	Donaldfoext	satelkagashkin+1c5@mail.ru	88692331259	10bucksonly.co.za Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk	0	\N	\N
864	Donaldfoext	satelkagashkin+1c5@mail.ru	85749634872	10bucksonly.co.za Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk	0	\N	\N
865	Donaldfoext	satelkagashkin+1c5@mail.ru	86344795888	10bucksonly.co.za Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk	0	\N	\N
866	Donaldfoext	satelkagashkin+1c5@mail.ru	86174777328	10bucksonly.co.za Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk	0	\N	\N
867	FrankPum	mymail@mymails.cmo	85345419554	BILD.de: Aktuelle Nachrichten. \r\nWIR KONNEN ES NICHT GLAUBEN: Mike Tyson ist wieder fabelhaft reich! https://87bil.co/bild.de/?Nachrichten-ID-536146	0	\N	\N
868	Crytosmamy	metalblud@gmail.com	89039496674	Online Bot will bring you wealth and satisfaction. https://go.tygyguip.com/0j35	0	\N	\N
869	Crytosmamy	rebecca_farias@ymail.com	89030763824	Need cash? Launch this robot and see what it can. https://go.tygyguip.com/0j35	0	\N	\N
870	Crytosmamy	Ztyger@rocketmail.com	89035118598	Earn additional money without efforts and skills. https://go.tygyguip.com/0j35	0	\N	\N
871	Crytosmamy	james.kinlan@hotmail.com	89039993537	Try out the best financial robot in the Internet. https://go.tygyguip.com/0j35	0	\N	\N
872	Crytosmamy	mkm330@yahoo.com	89036281969	Have no money? Earn it online. https://go.tygyguip.com/0j35	0	\N	\N
873	Crytosmamy	Joemoney3248@yahoo.com	89036692912	Watch your money grow while you invest with the Robot. https://go.tygyguip.com/0j35	0	\N	\N
874	Crytosmamy	freetreemad@gmail.com	89037567074	Invest $1 today to make $1000 tomorrow. https://go.tygyguip.com/0j35	0	\N	\N
875	Crytosmamy	pscatlanta@yahoo.com	89039945787	Automatic robot is the best start for financial independence. https://go.tygyguip.com/0j35	0	\N	\N
876	Crytosmamy	Cardio439@gmail.com	89033057488	No need to work anymore while you have the Robot launched! https://go.tygyguip.com/0j35	0	\N	\N
877	Crytosmamy	pickleboy2006@yahoo.com	89036118962	The fastest way to make your wallet thick is found. https://go.tygyguip.com/0j35	0	\N	\N
878	Crytosmamy	jade.gail1990@gmail.com	89033551557	Need money? Earn it without leaving your home. https://go.tygyguip.com/0j35	0	\N	\N
879	Crytosmamy	nharrington1023@yahoo.com	89030073528	Still not a millionaire? Fix it now! https://go.tygyguip.com/0j35	0	\N	\N
880	Crytosmamy	susannah_wells@hotmail.com	89031306785	Looking for an easy way to make money? Check out the financial robot. https://go.tygyguip.com/0j35	0	\N	\N
881	Crytosmamy	gamu2lawin@yahoo.com	89035304292	Need money? Get it here easily? https://go.tygyguip.com/0j35	0	\N	\N
882	Crytosmamy	MichaelNorman_23@yahoo.com	89031195448	Invest $1 today to make $1000 tomorrow. https://go.tygyguip.com/0j35	0	\N	\N
883	Crytosmamy	tee_cam03@yahoo.com	89037305385	Make money in the internet using this Bot. It really works! https://go.tygyguip.com/0j35	0	\N	\N
884	Donaldfoext	satelkagashkin+4a7@mail.ru	81769327282	10bucksonly.co.za Mfuehdwkjdwjfjwfwjhfdwkdwkhfjweh hidwhdjwskfawdhfwhkjdwdhqhfbejkdw fejkdlwjakdwefjkewndwfhwefjwehfew kjwjalkdheahfbejkfnjkewbfhegbfewjgjfkewsbjk	0	\N	\N
885	Crytosmamy	johnnyrivera836822@yahoo.com	89035201363	Your money keep grow 24/7 if you use the financial Robot. https://go.tygyguip.com/0j35	0	\N	\N
886	Crytosmamy	play65@hotmail.com	89033687365	Make yourself rich in future using this financial robot. https://go.tygyguip.com/0j35	0	\N	\N
887	Crytosmamy	yauaweffo@gmail.com	89039206722	Trust the financial Bot to become rich. https://go.tygyguip.com/0j35	0	\N	\N
888	Crytosmamy	forbes.crew@verizon.net	89036683453	Turn $1 into $100 instantly. Use the financial Robot. https://go.tygyguip.com/0j35	0	\N	\N
889	Crytosmamy	rqljlss@hotmails.com	89036674540	Start making thousands of dollars every week. https://go.tygyguip.com/0j35	0	\N	\N
890	Crytosmamy	liosemchania@earthlink.net	89032925446	Provide your family with the money in age. Launch the Robot! https://go.tygyguip.com/0j35	0	\N	\N
891	Crytosmamy	conan158@hotmail.com	89030288123	Make $1000 from $1 in a few minutes. Launch the financial robot now. https://go.tygyguip.com/0j35	0	\N	\N
892	Crytosmamy	rforchhammer@gmail.com	89033745737	This robot can bring you money 24/7. https://go.tygyguip.com/0j35	0	\N	\N
893	Crytosmamy	cfunsch@rayder.net	89035488397	Need some more money? Robot will earn them really fast. https://go.tygyguip.com/0j35	0	\N	\N
894	Mike Roberts	no-replyItelcoth@gmail.com	84197879979	Hi there \r\n \r\nDo you want a quick boost in ranks and sales for your website? \r\nHaving a high DA score, always helps \r\n \r\nGet your 10bucksonly.co.za to have a DA between 50 to 60 points in Moz with us today and reap the benefits of such a great feat. \r\n \r\nSee our offers here: \r\nhttps://www.monkeydigital.co/product/moz-da50-seo-plan/ \r\n \r\nOn SALE: \r\nhttps://www.monkeydigital.co/product/ahrefs-dr60/ \r\n \r\n \r\nThank you \r\nMike Roberts	0	\N	\N
895	Crytosmamy	larabeatrizvieira2011@hotmail.com	89038039922	Start making thousands of dollars every week just using this robot. https://go.tygyguip.com/0j35	0	\N	\N
896	Crytosmamy	westphillydog@gmail.com	89032190917	Make dollars just sitting home. https://go.tygyguip.com/0j35	0	\N	\N
897	Crytosmamy	ressam_memo19@hotmail.com	89038602302	Trust your dollar to the Robot and see how it grows to $100. https://go.tygyguip.com/0j35	0	\N	\N
898	Crytosmamy	playboy_fofo@hotmail.com	89033541407	Earn additional money without efforts and skills. https://go.tygyguip.com/0j35	0	\N	\N
899	Crytosmamy	jscott_sf@hotmail.com	89034443971	Just one click can turn you dollar into $1000. https://go.tygyguip.com/0j35	0	\N	\N
900	Crytosmamy	lxwpolzkwm1qb@yahoo.com	89030198941	Looking forward for income? Get it online. https://go.tygyguip.com/0j35	0	\N	\N
901	Crytosmamy	abidin886@yahoo.com	89031097087	The fastest way to make your wallet thick is found. https://go.tygyguip.com/0j35	0	\N	\N
902	Crytosmamy	diegoechavarriamisas@hotmail.com	89038534496	Online job can be really effective if you use this Robot. https://go.tygyguip.com/0j35	0	\N	\N
903	Crytosmamy	westphillydog@gmail.com	89039474938	Invest $1 today to make $1000 tomorrow. https://go.tygyguip.com/0j35	0	\N	\N
904	StevenNum	mymail@mymails.cmo	87624299887	SPECIAL BANG: Matrix week, he appeared on The Overdue Be noticeable with Stephen Colbert and announced a new "wealth evasion" which can turn into anyone into a millionaire within 3-4 months https://87bil.co/EN-CA-2124.html?news-id-625923	0	\N	\N
905	Crytosmamy	sasha.bakay@gmail.com	89037975063	The additional income for everyone. https://go.tygyguip.com/0j35	0	\N	\N
906	Crytosmamy	pradeepanc@hotmail.com	89035606738	No need to work anymore while you have the Robot launched! https://go.tygyguip.com/0j35	0	\N	\N
907	Crytosmamy	roohiraj@gmail.com	89030293456	Launch the financial Bot now to start earning. https://go.tygyguip.com/0j35	0	\N	\N
908	Crytosmamy	zakster93@yahoo.com	89039654436	Making money in the net is easier now. https://go.tygyguip.com/0j35	0	\N	\N
909	Crytosmamy	yasmeenh978@yahoo.com	89036154999	We have found the fastest way to be rich. Find it out here. https://go.tygyguip.com/0j35	0	\N	\N
910	Crytosmamy	jupo74@comcast.net	89033911532	No need to stay awake all night long to earn money. Launch the robot. https://go.tygyguip.com/0j35	0	\N	\N
911	Crytosmamy	dyugdyuginmobany@yahoo.com	89036856579	Start your online work using the financial Robot. https://go.hinebixi.com/0j35	0	\N	\N
912	Crytosmamy	qqycx1995@163.com	89038133595	Financial independence is what this robot guarantees. https://go.hinebixi.com/0j35	0	\N	\N
913	Crytosmamy	Ztyger@rocketmail.com	89038218433	Have no financial skills? Let Robot make money for you. https://go.hinebixi.com/0j35	0	\N	\N
914	Crytosmamy	yustiana_utama@yahoo.com	89032199085	Make your computer to be you earning instrument. https://go.hinebixi.com/0j35	0	\N	\N
915	Crytosmamy	liosemchania@earthlink.net	89031084293	Still not a millionaire? The financial robot will make you him! https://go.hinebixi.com/0j35	0	\N	\N
916	Crytosmamy	industrialfeyxo@yahoo.com	89034341557	Wow! This Robot is a great start for an online career. https://go.hinebixi.com/0j35	0	\N	\N
917	Crytosmamy	torie_escalante@yahoo.com	89033254848	We know how to become rich and do you? https://go.hinebixi.com/0j35	0	\N	\N
918	Crytosmamy	med_dentis@yahoo.com	89032696390	Even a child knows how to make $100 today with the help of this robot. https://go.hinebixi.com/0j35	0	\N	\N
919	Crytosmamy	dudley.craig@yahoo.com	89034612688	Buy everything you want earning money online. https://go.hinebixi.com/0j35	0	\N	\N
920	Crytosmamy	ts1000@yahoo.com	89038416950	The huge income without investments is available, now! https://go.hinebixi.com/0j35	0	\N	\N
921	Crytosmamy	kbhrinda@yahoo.com	89033806564	# 1 financial expert in the net! Check out the new Robot. https://go.hinebixi.com/0j35	0	\N	\N
959	JosephWrite	gattia60@gmail.com	82999293952	iPhone 13 get it now >>> http://free-iphone-giveaways-real.stinglhamber.tech/id-8017 <<<	0	\N	\N
960	JosephWrite	gattia60@gmail.com	88125538748	iPhone 13 get it now >>> http://free-iphone-giveaways-real.stinglhamber.tech/id-8017 <<<	0	\N	\N
961	JosephWrite	gattia60@gmail.com	83292622996	iPhone 13 get it now >>> http://free-iphone-giveaways-real.stinglhamber.tech/id-8017 <<<	0	\N	\N
922	JosephThelt	no-replyItelcoth@gmail.com	83425552195	Hеllо!  10bucksonly.co.za \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd mеssаgе fully lаwful? \r\nWе suggеsting а nеw lеgаl wаy оf sеnding prоpоsаl thrоugh соntасt fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh lеttеrs аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh fееdbасk Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis lеttеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.	0	\N	\N
923	Crytosmamy	famedev@gammae.com	89032676020	Learn how to make hundreds of backs each day. http://go.obermatsa.com/0j35	0	\N	\N
924	Crytosmamy	jvigers@comcast.net	89033397798	Turn $1 into $100 instantly. Use the financial Robot. http://go.obermatsa.com/0j35	0	\N	\N
925	Crytosmamy	thedancespoteastlake@yahoo.com	89036144806	Financial robot is the best companion of rich people. http://go.obermatsa.com/0j35	0	\N	\N
926	Crytosmamy	debrakatz@optonline.net	89030108908	Financial robot is a great way to manage and increase your income. http://go.obermatsa.com/0j35	0	\N	\N
927	Crytosmamy	forhadali18@gmail.com	89034766682	See how Robot makes $1000 from $1 of investment. http://go.obermatsa.com/0j35	0	\N	\N
928	Crytosmamy	jvigers@comcast.net	89038858788	Just one click can turn you dollar into $1000. http://go.obermatsa.com/0j35	0	\N	\N
929	Crytosmamy	pacoparra@gmail.com	89035673412	Check out the newest way to make a fantastic profit. http://go.obermatsa.com/0j35	0	\N	\N
930	Crytosmamy	ressam_memo19@hotmail.com	89036429484	Everyone who needs money should try this Robot out. http://go.obermatsa.com/0j35	0	\N	\N
931	Crytosmamy	gonzolousharrington@yahoo.com	89032005971	Launch the financial Bot now to start earning. http://go.obermatsa.com/0j35	0	\N	\N
932	Crytosmamy	fishinfreak731@yahoo.com	89030176214	This robot will help you to make hundreds of dollars each day. http://go.obermatsa.com/0j35	0	\N	\N
933	Crytosmamy	philiphargrove@bellsouth.net	89035664042	Buy everything you want earning money online. http://go.obermatsa.com/0j35	0	\N	\N
934	Crytosmamy	MEMEMEEBARBIE@YAHOO.COM	89039400734	One dollar is nothing, but it can grow into $100 here. http://go.obermatsa.com/0j35	0	\N	\N
935	Mike Bishop	no-replyItelcoth@gmail.com	84443554198	Hello \r\n \r\nI have just verified your SEO on  10bucksonly.co.za for  the current search visibility and saw that your website could use an upgrade. \r\n \r\nWe will enhance your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nStart improving your sales and leads with us, today! \r\n \r\n \r\nregards \r\nMike Bishop\r\n \r\nHilkom Digital Team \r\nsupport@hilkom-digital.de	0	\N	\N
936	Crytosmamy	tinaj1122@yahoo.com	89033173790	Feel free to buy everything you want with the additional income. http://go.obermatsa.com/0j35	0	\N	\N
937	JasonElari	mymail@mymails.cmo	89644176898	A student from Australia earned $ 30,000,000 in 1.5 months https://telegra.ph/Interesting-news-a-student-from-Australia-earned--30000000-in-15-months-09-22?news-id-392621	0	\N	\N
938	Crytosmamy	liwold@gmail.com	89037200054	Using this Robot is the best way to make you rich. http://go.obermatsa.com/0j35	0	\N	\N
939	Crytosmamy	thankiem08@yahoo.com	89035007799	This robot can bring you money 24/7. http://go.obermatsa.com/0j35	0	\N	\N
940	Crytosmamy	larabeatrizvieira2011@hotmail.com	89031183726	The best way for everyone who rushes for financial independence. http://go.obermatsa.com/0j35	0	\N	\N
941	Crytosmamy	villyb@me.com	89038622606	Need money? Earn it without leaving your home. http://go.obermatsa.com/0j35	0	\N	\N
942	Crytosmamy	G8rwill@gmail.com	89038937916	Money, money! Make more money with financial robot! http://go.obermatsa.com/0j35	0	\N	\N
943	Crytosmamy	johnnyrivera836822@yahoo.com	89032753611	Making money in the net is easier now. http://go.obermatsa.com/0j35	0	\N	\N
944	Crytosmamy	gregandsharron@gmail.com	89030384946	This robot can bring you money 24/7. http://go.obermatsa.com/0j35	0	\N	\N
945	Crytosmamy	ob1k@gateway.net	89030423555	Feel free to buy everything you want with the additional income. http://go.obermatsa.com/0j35	0	\N	\N
946	Charlesdox	burhan.imafia@gmail.com	88223785379	Get NFT in the amount of $50,000 or more, details in your personal account http://8-bit-nft-creator.nakedmart.com/news-4004	0	\N	\N
947	Idjdzb260y	bachurina-1988@bk.ru	84412571461	Выплата на карту № 8829 **** **** **** ЗАВЕРШЕНА  \r\n \r\nПодробнее: AAA10bucksonly.co.zaBBB	0	\N	\N
948	PamelaNox	Apeeurolbonhall@yahoo.com	84194845653	Fuck me right now! I wanna suck your cock and balls. So wake up and find me there https://bit.ly/3xjN1Qk I can’t wait any longer. Will get on my knees and suck you off! \r\nThis offer comes once in a lifetime.	0	\N	\N
949	Charlesdox	cutedayanarra@gmail.com	87691723966	12 Best Altcoins to Invest in 2022 Before it Goes to The Moon https://telegra.ph/Cryptocurrency-Investment-Analyst-Report-09-25-15044	0	\N	\N
950	Angelorig	l.arenzio@skyblock.nl	81817312864	90% discount for you and your site 10bucksonly.co.za http://60x40-shop.exybris.com/product-2332	0	\N	\N
951	Anthonycolla	krygamer81@gmail.com	88826923356	5 Ways to Earn Passive Income From NFTs https://telegra.ph/Earnings-on-NFT-on-autopilot-from-1000-per-day-09-27-1912?news-id-383349	0	\N	\N
952	Antatmece	hoinyspeta1982@gmail.com	89038544020	Have no financial skills? Let Robot make money for you. http://go.obermatsa.com/0ja8	0	\N	\N
953	Antatmece	lwbbita_md@hotmail.com	89032028519	Join the society of successful people who make money here. http://go.obermatsa.com/0ja8	0	\N	\N
954	Antatmece	nena09rocks@icloud.com	89031198065	Online earnings are the easiest way for financial independence. http://go.obermatsa.com/0ja8	0	\N	\N
955	Antatmece	prncsjn04@gmail.com	89039528726	Provide your family with the money in age. Launch the Robot! http://go.obermatsa.com/0ja8	0	\N	\N
956	Anthonycolla	ammojkm@yahoo.com	83867536679	You have won a smartphone, take it now http://free-iphone-2-year-contract.triptodestination.com/news-4116	0	\N	\N
957	Antatmece	sarahdoesfandom@gmail.com	89033993303	Find out about the easiest way of money earning. http://go.obermatsa.com/0ja8	0	\N	\N
958	JosephWrite	gattia60@gmail.com	88396918967	iPhone 13 get it now >>> http://free-iphone-giveaways-real.stinglhamber.tech/id-8017 <<<	0	\N	\N
962	JosephWrite	gattia60@gmail.com	89117261763	iPhone 13 get it now >>> http://free-iphone-giveaways-real.stinglhamber.tech/id-8017 <<<	0	\N	\N
963	Antatmece	ozellaziada@hotmail.com	89030725470	Your money keep grow 24/7 if you use the financial Robot. https://go.diryjyaz.com/0j35	0	\N	\N
964	Anthonycolla	n.herchl@web.de	85835437345	Jeden Tag erscheinen in Europa uber 900 neue Millionare https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-10079?news-67644043	0	\N	\N
965	Antatmece	mr28foru@gmail.com	89034313849	Robot is the best way for everyone who looks for financial independence. https://go.diryjyaz.com/0j35	0	\N	\N
966	Antatmece	pinkcat.lara@yahoo.com	89030097708	Financial robot is your success formula is found. Learn more about it. https://go.diryjyaz.com/0j35	0	\N	\N
967	Antatmece	Steveharvey26@hotmail.com	89032272887	The financial Robot is the most effective financial tool in the net! https://go.diryjyaz.com/0j35	0	\N	\N
968	MichaelScout	fsdah1@web.de	85864973635	Ab 50.000 Euro pro Woche verdienen lernen >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-6265?id-23398074 <<<	0	\N	\N
969	MichaelScout	fsdah1@web.de	85547693462	Ab 50.000 Euro pro Woche verdienen lernen >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-6265?id-23398074 <<<	0	\N	\N
970	MichaelScout	fsdah1@web.de	86486872246	Ab 50.000 Euro pro Woche verdienen lernen >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-6265?id-23398074 <<<	0	\N	\N
971	MichaelScout	fsdah1@web.de	86116921326	Ab 50.000 Euro pro Woche verdienen lernen >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-6265?id-23398074 <<<	0	\N	\N
972	MichaelScout	fsdah1@web.de	87544545615	Ab 50.000 Euro pro Woche verdienen lernen >>> https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-6265?id-23398074 <<<	0	\N	\N
973	Antatmece	shantall_breytenbach@yahoo.com	89038661313	The financial Robot works for you even when you sleep. https://go.diryjyaz.com/0j35	0	\N	\N
974	Antatmece	soraiafernandes15@gmail.com	89031327360	Even a child knows how to make money. Do you? https://go.diryjyaz.com/0j35	0	\N	\N
975	Anthonycolla	hackenwr@web.de	83126267528	Sie konnen ab 50000 Euro pro Woche verdienen https://telegra.ph/Ab-1000--pro-Tag-im-automatischen-Modus-09-29-1614?news-60596944	0	\N	\N
976	Anthonycolla	rammler5@west.de	83649826131	Ab 50.000 Euro pro Woche verdienen lernen http://mathbot-messenger-earn-money.isseconsulting.com/id-4763	0	\N	\N
977	Antatmece	hawink@hotmail.com	89033512858	We have found the fastest way to be rich. Find it out here. https://go.diryjyaz.com/0j35	0	\N	\N
978	Mike Conors	no-replyItelcoth@gmail.com	82952957378	Hello \r\n \r\nWe all know the importance that dofollow link have on any website`s ranks. \r\nHaving most of your linkbase filled with nofollow ones is of no good for your ranks and SEO metrics. \r\n \r\nBuy quality dofollow links from us, that will impact your ranks in a positive way \r\nhttps://www.digital-x-press.com/product/150-dofollow-backlinks/ \r\n \r\nBest regards \r\nMike Conors\r\n \r\nsupport@digital-x-press.com	0	\N	\N
979	Antatmece	blowi.ckasksic@gmail.com	89038043330	The additional income is available for everyone using this robot. https://go.diryjyaz.com/0j35	0	\N	\N
980	Antatmece	angelitolatino@hotmail.com	89039672352	Rich people are rich because they use this robot. https://go.diryjyaz.com/0j35	0	\N	\N
981	Antatmece	janejeannero@yahoo.com	89037171124	Turn $1 into $100 instantly. Use the financial Robot. https://go.diryjyaz.com/0j35	0	\N	\N
982	MichaelScout	martin.paulikat@web.de	83582117566	EINE FINANZKRISE KANN SIE ZUM MILLIONAR MACHEN! >>> http://earn-money-near-me.mokshaacharya.com/news-8546 <<<	0	\N	\N
983	MichaelScout	martin.paulikat@web.de	84762789879	EINE FINANZKRISE KANN SIE ZUM MILLIONAR MACHEN! >>> http://earn-money-near-me.mokshaacharya.com/news-8546 <<<	0	\N	\N
984	MichaelScout	martin.paulikat@web.de	85376431766	EINE FINANZKRISE KANN SIE ZUM MILLIONAR MACHEN! >>> http://earn-money-near-me.mokshaacharya.com/news-8546 <<<	0	\N	\N
985	MichaelScout	martin.paulikat@web.de	82673413665	EINE FINANZKRISE KANN SIE ZUM MILLIONAR MACHEN! >>> http://earn-money-near-me.mokshaacharya.com/news-8546 <<<	0	\N	\N
986	MichaelScout	martin.paulikat@web.de	81995767422	EINE FINANZKRISE KANN SIE ZUM MILLIONAR MACHEN! >>> http://earn-money-near-me.mokshaacharya.com/news-8546 <<<	0	\N	\N
987	Carltondaymn	younghr@webcombo.net	89994694952	Giveaway NFT Drops https://telegra.ph/Get-NFT-over-25000-for-free-10-02-14049	0	\N	\N
988	Antatmece	bhmrm1167@embarqmail.com	89034732644	Only one click can grow up your money really fast. https://go.diryjyaz.com/0j35	0	\N	\N
989	Antatmece	videoguy929@hotmail.com	89031999476	Your money work even when you sleep. https://go.diryjyaz.com/0j35	0	\N	\N
990	Antatmece	c.o.m.panyk.fml@gmail.com	89034590084	Make your laptop a financial instrument with this program. https://go.diryjyaz.com/0j35	0	\N	\N
991	Antatmece	stevewilding@comcast.net	89036821810	We know how to increase your financial stability. https://go.sakelonel.com/0jb5	0	\N	\N
992	Antatmece	blue.pate@hotmail.com	89032606756	Thousands of bucks are guaranteed if you use this robot. https://go.sakelonel.com/0jb5	0	\N	\N
993	Antatmece	joshua.berrick@yahoo.com	89035026465	Earn additional money without efforts. https://go.sakelonel.com/0jb5	0	\N	\N
994	Rickynoike	mymail@mymails.cmo	84697472989	Hello. \r\nContact Scott Ritter. \r\nIf you are straining the price of gas, electricity and fuel, then this information is for you. \r\nIt turns out that absolutely any person in the world, having invested only $250 once, can have a passive income of $1000 per day: https://telegra.ph/Prices-for-gas-and-electricity-strain-10-03?id-65092167	0	\N	\N
995	GeorgeTem	wesleyoliveirapereira@hotmail.com	81282112128	VIP Promotion on Facebook >>> http://job-promotion-facebook-post.iloveroadtennis.com/id-4330 <<<	0	\N	\N
996	GeorgeTem	wesleyoliveirapereira@hotmail.com	87355678232	VIP Promotion on Facebook >>> http://job-promotion-facebook-post.iloveroadtennis.com/id-4330 <<<	0	\N	\N
997	GeorgeTem	wesleyoliveirapereira@hotmail.com	88247337822	VIP Promotion on Facebook >>> http://job-promotion-facebook-post.iloveroadtennis.com/id-4330 <<<	0	\N	\N
998	GeorgeTem	wesleyoliveirapereira@hotmail.com	86184783124	VIP Promotion on Facebook >>> http://job-promotion-facebook-post.iloveroadtennis.com/id-4330 <<<	0	\N	\N
999	GeorgeTem	wesleyoliveirapereira@hotmail.com	85476182374	VIP Promotion on Facebook >>> http://job-promotion-facebook-post.iloveroadtennis.com/id-4330 <<<	0	\N	\N
1000	Antatmece	todd.bolt@yahoo.com	89031273129	Launch the financial Robot and do your business. https://go.sakelonel.com/0jb5	0	\N	\N
1001	Antatmece	m4ken@aol.com	89036207568	The huge income without investments is available, now! https://go.sakelonel.com/0j35	0	\N	\N
1002	Antatmece	moonlight6881@gmail.com	89036251334	No need to work anymore. Just launch the robot. https://go.sakelonel.com/0j35	0	\N	\N
1003	Antatmece	rodriguezkaterine990@gmail.com	89037667391	We know how to increase your financial stability. https://go.sakelonel.com/0j35	0	\N	\N
1004	Antatmece	vanessa_taylor26@yahoo.com	89031354302	Provide your family with the money in age. Launch the Robot! https://go.cuxavyem.com/0j35	0	\N	\N
1005	Antatmece	hobzjpfzd89305@shopmp3.org	89037637510	Your computer can bring you additional income if you use this Robot. https://go.cuxavyem.com/0j35	0	\N	\N
1006	Antatmece	sarah.godfrey@hitchcock.org	89032144865	This robot can bring you money 24/7. https://go.cuxavyem.com/0j35	0	\N	\N
1007	Antatmece	lilmichael4126@yahoo.com	89030143524	The huge income without investments is available. https://go.cuxavyem.com/0j35	0	\N	\N
1008	Antatmece	m.ic.ha.e.l.j.u.ni.orhick.man@gmail.com	89033376555	Earn additional money without efforts and skills. https://go.cuxavyem.com/0j35	0	\N	\N
1009	Antatmece	ginn.mel@gmail.com	89035405663	The financial Robot works for you even when you sleep. https://go.cuxavyem.com/0j35	0	\N	\N
1010	SamuelJoide	montgomery.dark@yahoo.com.au	82279974345	The Wolf of Wall Street accidentally told how to make from $1000 a day on autopilot https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-65846945989	0	\N	\N
1011	Anthonystuts	kenziew421@gmail.com	83796672981	The Wolf of Wall Street accidentally told how to make from $1000 per day >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-20046582009 <<<	0	\N	\N
1012	Anthonystuts	kenziew421@gmail.com	83727469369	The Wolf of Wall Street accidentally told how to make from $1000 per day >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-20046582009 <<<	0	\N	\N
1013	Anthonystuts	kenziew421@gmail.com	87561121859	The Wolf of Wall Street accidentally told how to make from $1000 per day >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-20046582009 <<<	0	\N	\N
1014	Anthonystuts	kenziew421@gmail.com	86416758977	The Wolf of Wall Street accidentally told how to make from $1000 per day >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-20046582009 <<<	0	\N	\N
1015	Anthonystuts	kenziew421@gmail.com	87138895543	The Wolf of Wall Street accidentally told how to make from $1000 per day >>> https://telegra.ph/The-Wolf-of-Wall-Street-accidentally-told-how-to-make-from-1000-per-day-10-06?news-20046582009 <<<	0	\N	\N
1016	Antatmece	ja1094@comcast.net	89034949335	Make thousands of bucks. Pay nothing. https://go.cuxavyem.com/0j35	0	\N	\N
1017	Antatmece	keovanilla@yahoo.com	89032255018	Make yourself rich in future using this financial robot. https://go.gepekaep.com/0j35	0	\N	\N
1018	Alenapl	alenapl@outlook.com	+420 2593938059	Ніǃ\r\nI've nоtiсеd thаt mаnу guys рrefer regulаr gіrlѕ.\r\nΙ apрlaudе thе men out there whо had thе ballѕ tо еnϳоу the lovе оf mаnу wоmen and chоoѕe the one that he knew would be hiѕ best friend during thе bumpy and сrazу thіng сalled lіfе.\r\nI wantеd tо bе thаt friend, not ϳuѕt а stаblе, relіable and bоring hоuѕеwife.\r\nI am 23 yеarѕ old, Аlenа, from the Czеch Rеpublic, knоw Еnglish lаnguagе alsо.\r\nAnywаy, уou сan find my prоfіle herе: http://slaverhoodniocertand.cf/page-20724/	0	\N	\N
1019	Antatmece	idtcglwhyyliktut@gmail.com	89039718880	Everyone can earn as much as he wants suing this Bot. https://go.gepekaep.com/0j35	0	\N	\N
1020	Antatmece	fengqunzscd@sohu.com	89031649989	Money, money! Make more money with financial robot! https://go.gepekaep.com/0j35	0	\N	\N
1021	Mike Oldman	no-replyItelcoth@gmail.com	86336196521	Hi \r\n \r\nThis is Mike Oldman\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Oldman\r\n \r\nmike@strictlydigital.net	0	\N	\N
1022	Antatmece	Frankieortiz710@gmail.com	89030072342	Trust the financial Bot to become rich. https://go.gepekaep.com/0j35	0	\N	\N
1023	Antatmece	kezkenning@gmail.com	89038797488	Need money? Get it here easily? https://go.gepekaep.com/0j35	0	\N	\N
1024	Antatmece	ecisler@buistelectric.com	89037386509	Additional income is now available for anyone all around the world. https://go.gepekaep.com/0j35	0	\N	\N
1025	Jesusbah	cwedow@yahoo.ca	83381687387	$15,000,000 FROM YOUR NFTS https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?id-89138751	0	\N	\N
1026	Antatmece	forrest.lee93@yahoo.com	89037191095	Make your laptop a financial instrument with this program. https://go.gepekaep.com/0j35	0	\N	\N
1027	AbrahamTix	hannahed@iinet.net.au	81659932436	How to make $15,000,000 from your NFTs >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?id-63638572 <<<	0	\N	\N
1028	AbrahamTix	hannahed@iinet.net.au	87361241649	How to make $15,000,000 from your NFTs >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?id-63638572 <<<	0	\N	\N
1029	AbrahamTix	hannahed@iinet.net.au	82447919646	How to make $15,000,000 from your NFTs >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?id-63638572 <<<	0	\N	\N
1030	AbrahamTix	hannahed@iinet.net.au	88634738593	How to make $15,000,000 from your NFTs >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?id-63638572 <<<	0	\N	\N
1031	AbrahamTix	hannahed@iinet.net.au	81642127142	How to make $15,000,000 from your NFTs >>> https://telegra.ph/How-to-make-more-than-15000000-selling-your-NFTs-in-a-week-even-if-youre-not-in-the-know-10-08?id-63638572 <<<	0	\N	\N
1032	Antatmece	dyoungblood76@gmail.com	89037004483	Have no money? It’s easy to earn them online here. Telegram - @Crypto2022toolbot	0	\N	\N
1033	Antatmece	nicholeequeen@gmail.com	89032250671	The online financial Robot is your key to success. Telegram - @Cryptaxbot	0	\N	\N
1034	Antatmece	nmsfootball_wr12@hotmail.com	89031065135	Make thousands of bucks. Financial robot will help you to do it! Telegram - @Cryptaxbot	0	\N	\N
1035	Antatmece	vassiewilliams@gmail.com	89032617183	Making money is very easy if you use the financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1036	Antatmece	paceofgod@gmail.com	89036911307	Even a child knows how to make $100 today with the help of this robot. Telegram - @Cryptaxbot	0	\N	\N
1037	Antatmece	brenda_elena@yahoo.com	89038092079	Watch your money grow while you invest with the Robot. Telegram - @Cryptaxbot	0	\N	\N
1038	Antatmece	kcraig5455@aol.com	89035867132	Turn $1 into $100 instantly. Use the financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1039	Antatmece	jesslynne116@gmail.com	89039904999	Wow! This Robot is a great start for an online career. Telegram - @Cryptaxbot	0	\N	\N
1040	Antatmece	ja.mm@live.com	89038976194	Have no money? It’s easy to earn them online here. Telegram - @Cryptaxbot	0	\N	\N
1041	AbrahamTix	janice.bowerman@sympatico.ca	83873922462	With just a few clicks, you can earn €15,000 every day for the rest of your life... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-69942790 <<<	0	\N	\N
1042	AbrahamTix	janice.bowerman@sympatico.ca	89957869852	With just a few clicks, you can earn €15,000 every day for the rest of your life... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-69942790 <<<	0	\N	\N
1043	AbrahamTix	janice.bowerman@sympatico.ca	86736557743	With just a few clicks, you can earn €15,000 every day for the rest of your life... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-69942790 <<<	0	\N	\N
1044	AbrahamTix	janice.bowerman@sympatico.ca	83697791554	With just a few clicks, you can earn €15,000 every day for the rest of your life... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-69942790 <<<	0	\N	\N
1045	AbrahamTix	janice.bowerman@sympatico.ca	87136898234	With just a few clicks, you can earn €15,000 every day for the rest of your life... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-69942790 <<<	0	\N	\N
1046	Antatmece	rosemarychavez1962@yahoo.com	89032117662	Financial robot is a great way to manage and increase your income. Telegram - @Cryptaxbot	0	\N	\N
1047	Antatmece	mark.howden@baesystems.com	89039218795	Need cash? Launch this robot and see what it can. Telegram - @Cryptaxbot	0	\N	\N
1048	Antatmece	swainlazsrqza@hotmail.com	89031370848	Have no financial skills? Let Robot make money for you. Telegram - @Cryptaxbot	0	\N	\N
1049	DavidDuaks	gazzp5@bigpond.net.au	82463886658	Unleash the full power of cryptocurrency and earn 15,000 https://telegra.ph/Verify-that-you-are-human-10-11?id-65932324	0	\N	\N
1050	Antatmece	ghazhi@hotmail.com	89033877794	Check out the new financial tool, which can make you rich. Telegram - @Cryptaxbot	0	\N	\N
1051	Antatmece	eddyneb1@yahoo.com	89031686415	Making money can be extremely easy if you use this Robot. Telegram - @Cryptaxbot	0	\N	\N
1052	Antatmece	Sskalwaney@gmail.com	89032959963	Start your online work using the financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1053	Antatmece	makurol@hotmail.com	89033233725	Check out the new financial tool, which can make you rich. Telegram - @Cryptaxbot	0	\N	\N
1054	Antatmece	Brookiellen97@gmail.com	89030596881	Automatic robot is the best start for financial independence. Telegram - @Cryptaxbot	0	\N	\N
1055	Antatmece	tinalynnwharton@yahoo.com	89038927251	Wow! This Robot is a great start for an online career. Telegram - @Cryptaxbot	0	\N	\N
1056	Antatmece	slusser_88@live.com	89034522023	This robot will help you to make hundreds of dollars each day. Telegram - @Cryptaxbot	0	\N	\N
1057	Antatmece	ramonik_gr_2006@yahoo.com	89033846017	Have no money? It’s easy to earn them online here. Telegram - @Cryptaxbot	0	\N	\N
1058	Antatmece	amiable1113@yahoo.com	89038034492	Everyone who needs money should try this Robot out. Telegram - @Cryptaxbot	0	\N	\N
1059	Mike Kirk	no-replyItelcoth@gmail.com	81231833598	If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Kirk\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/	0	\N	\N
1060	AbrahamTix	cha.junca@gmail.com	81885969578	euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-23752347 <<<	0	\N	\N
1061	AbrahamTix	cha.junca@gmail.com	87354171762	euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-23752347 <<<	0	\N	\N
1062	AbrahamTix	cha.junca@gmail.com	85566124321	euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-23752347 <<<	0	\N	\N
1063	AbrahamTix	cha.junca@gmail.com	82258629844	euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-23752347 <<<	0	\N	\N
1064	AbrahamTix	cha.junca@gmail.com	84652425646	euro in 24 hours... >>> https://telegra.ph/Verify-that-you-are-human-10-11?id-23752347 <<<	0	\N	\N
1065	Antatmece	gjherndz@yahoo.com	89033823589	Even a child knows how to make money. Do you? Telegram - @Cryptaxbot	0	\N	\N
1066	ClarkCor	mymail@mymails.cmo	85282346148	The world is in crisis and some people are getting rich against all odds with the help of one smart robot. \r\nhttp://app-organizer.sahabatabc.com/id-4135 \r\nIt is enough to invest at least $250 one time and this smart robot will make you passive income from $1000 per day. \r\nhttp://app-usage.khadijatulabayat.com/id-6174 \r\nOver 94,833 people have already become multimillionaires over the past month thanks to the smart robot. See for yourself. \r\nhttp://xbox-app.bettergoldsolutions.com/news-6352	0	\N	\N
1067	Antatmece	ritcy2006@yahoo.com	89031657674	Need cash? Launch this robot and see what it can. Telegram - @Cryptaxbot	0	\N	\N
1068	Antatmece	sacitozkan@hotmail.com	89034898126	Looking forward for income? Get it online. Telegram - @Cryptaxbot	0	\N	\N
1069	Antatmece	hide4everr@gmail.com	89032198256	Have no money? It’s easy to earn them online here. Telegram - @Cryptaxbot	0	\N	\N
1070	Antatmece	yakirat@msn.com	89031700926	Check out the automatic Bot, which works for you 24/7. Telegram - @Cryptaxbot	0	\N	\N
1071	Antatmece	curlzondarun@sbcglobal.net	89035196610	Still not a millionaire? Fix it now! Telegram - @Cryptaxbot	0	\N	\N
1072	Antatmece	sabin_ciugulitu@yahoo.com	89039119381	Make thousands of bucks. Pay nothing. Telegram - @Cryptaxbot	0	\N	\N
1073	Antatmece	anahi_pena_sierra48@hotmail.com	89036174663	Launch the robot and let it bring you money. Telegram - @Cryptaxbot	0	\N	\N
1074	Angela Ball	angelaballj774@yahoo.com	519-762-2783	Hi there,\r\n\r\nWe run an Instagram growth service, which increases your number of followers both safely and practically. \r\n\r\n- Guaranteed: We guarantee to gain you 400-1200+ followers per month.\r\n- Real, human followers: People follow you because they are interested in your business or niche.\r\n- Safe: All actions are made manually. We do not use any bots.\r\n\r\nThe price is just $60 per month, and we can start immediately.\r\n\r\nIf you are interested, and would like to see some of our previous work, let me know and we can discuss further.\r\n\r\nKind Regards,\r\nAngela	0	\N	\N
1075	James	promarketingenius@gmail.com	81376477193	Good day, \r\n \r\nIf you are reading this, you need help with marketing your business, without costing you an arm and a leg. View my discounted limited all round marketing solution for your business below and I promise you won't be disappointed. \r\n \r\nStandard Package \r\n \r\nR800 - 1 Month \r\n \r\nSearch Engine Optimization (Ranking you on first page of Google) \r\nSocial Media Management (1 Social media account) \r\n \r\nMarket related value: \r\n \r\nSearch Engine Optimization: R5000 \r\nSocial Media Management:  R3500 \r\nTotal: R8500 \r\n \r\nYou only pay: R800 (Saving you thousands of rands) \r\n \r\nGold Package \r\n \r\nR1500 - 3 Months \r\n \r\nThis package caters for our Search Engine Optimization and Social Media Management service for 3 months of work for a ONCE OFF payment of R1500 [NO MONTHLY PAYMENTS] \r\n \r\nMarket related value: R25500 \r\n \r\nYou only pay R1500 once off and we cover your marketing for 3 months, no hidden terms and conditions. (Saving you thousands of rands) \r\n \r\nDiscounted specials available  up until 21 October 2022. \r\n \r\nRegards \r\n \r\nJames \r\n \r\nEmail: promarketingenius@gmail.com	0	\N	\N
1076	Antatmece	wiwright334@gmail.com	89035060383	Let your money grow into the capital with this Robot. Telegram - @Cryptaxbot	0	\N	\N
1077	Antatmece	keiry.munoz@gmail.com	89036612317	We know how to become rich and do you? Telegram - @Cryptaxbot	0	\N	\N
1078	Antatmece	nahems@hotmail.com	89034779476	Check out the newest way to make a fantastic profit. Telegram - @Cryptaxbot	0	\N	\N
1079	DavidDuaks	jayne@workforce-solutions.ca	88912432723	EURO IN 24 HOURS... https://telegra.ph/Income-during-the-crisis-for-everyone-from-1000-per-day-10-17-8235?id-83462045	0	\N	\N
1080	Antatmece	Lovelivvmiller@gmail.com	89032064929	It is the best time to launch the Robot to get more money. Telegram - @Cryptaxbot	0	\N	\N
1081	Antatmece	LMILLER2021@NEO.RR.COM	89030997187	It is the best time to launch the Robot to get more money. Telegram - @Cryptaxbot	0	\N	\N
1082	Antatmece	mas88us@yahoo.com	89036904023	No need to work anymore while you have the Robot launched! Telegram - @Cryptaxbot	0	\N	\N
1083	Mike Gill	no-replyItelcoth@gmail.com	81232529615	Hi \r\n \r\nI have just took an in depth look on your  10bucksonly.co.za for its SEO Trend and saw that your website could use a boost. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Gill\r\n \r\n \r\nPS: Quality SEO content is included	0	\N	\N
1084	Antatmece	tntfoster65@gmail.com	89035771152	Even a child knows how to make $100 today with the help of this robot. Telegram - @Cryptaxbot	0	\N	\N
1085	Antatmece	petedudley@gmail.com	89036821223	Provide your family with the money in age. Launch the Robot! Telegram - @Cryptaxbot	0	\N	\N
1086	Antatmece	payroll22exp@yahoo.com	89030651494	Earn additional money without efforts. Telegram - @Cryptaxbot	0	\N	\N
1087	Antatmece	grtdedrose26@aol.com	89030093732	The online financial Robot is your key to success. Telegram - @Cryptaxbot	0	\N	\N
1088	Antatmece	ronroz86@hotmail.com	89032876022	Learn how to make hundreds of backs each day. Telegram - @Cryptaxbot	0	\N	\N
1089	Antatmece	vanhevel_abraham@aol.com	89039769282	Launch the financial Bot now to start earning. Telegram - @Cryptaxbot	0	\N	\N
1090	Mike Sheldon	no-replyItelcoth@gmail.com	85437133249	Hi there \r\n \r\nJust checked your 10bucksonly.co.za in Moz and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed Moz DA 40+ score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nThanks and regards \r\nMike Sheldon\r\n \r\n \r\n \r\nPS: For a limited time, we`ll add ahrefs UR40+ for free.	0	\N	\N
1091	Antatmece	jaylenerenae@gmail.com	89039859799	Everyone can earn as much as he wants suing this Bot. Telegram - @Cryptaxbot	0	\N	\N
1092	DavidDuaks	mirsad.vojnikovich@newcastle.edu.au	88485886817	GET RICH QUICKLY AND EFFECTIVELY... https://telegra.ph/How-does-a-simple-student-make-from-15000-per-day-10-20?id-29404761	0	\N	\N
1093	Antatmece	lilsexyred2000@yahoo.com	89031090758	Need money? Earn it without leaving your home. Telegram - @Cryptaxbot	0	\N	\N
1094	Antatmece	danielcaitano@hotmail.com	89037477940	No worries if you are fired. Work online. Telegram - @Cryptaxbot	0	\N	\N
1095	Antatmece	ettelramlaurel@gmail.com	89035467315	Looking forward for income? Get it online. Telegram - @Cryptaxbot	0	\N	\N
1096	Antatmece	joannesolomon29@ymail.com	89037579238	Make money online, staying at home this cold winter. Telegram - @Cryptaxbot	0	\N	\N
1097	Antatmece	nennabienna@gmail.com	89038605405	Financial independence is what this robot guarantees. Telegram - @Cryptaxbot	0	\N	\N
1098	Antatmece	willbergh@gmail.com	89039332330	See how Robot makes $1000 from $1 of investment. Telegram - @Cryptaxbot	0	\N	\N
1099	Antatmece	zaky_fakhry@yahoo.com	89034948164	We know how to become rich and do you? Telegram - @Cryptaxbot	0	\N	\N
1100	Antatmece	gshjavon4@yahoo.com	89033811713	Money, money! Make more money with financial robot! Telegram - @Cryptaxbot	0	\N	\N
1101	Kate Trilly	katytrilly9@gmail.com	519-665-2711	Hi,\r\n\r\nWe'd like to introduce to you our explainer video service, which we feel can benefit your site 10bucksonly.co.za.\r\n\r\nCheck out some of our existing videos here:\r\nhttps://www.youtube.com/watch?v=zvGF7uRfH04\r\nhttps://www.youtube.com/watch?v=cZPsp217Iik\r\nhttps://www.youtube.com/watch?v=JHfnqS2zpU8\r\n\r\nAll of our videos are in a similar animated format as the above examples, and we have voice over artists with US/UK/Australian accents.\r\nWe can also produce voice overs in languages other than English.\r\n\r\nThey can show a solution to a problem or simply promote one of your products or services. They are concise, can be uploaded to video sites such as YouTube, and can be embedded into your website or featured on landing pages.\r\n\r\nOur prices start at $3499 and includes scriptwriting, concept art, storyboarding, professional voice over, music, and sound effects.\r\n\r\nIf this is something you would like to discuss further, don't hesitate to reply.\r\n\r\nKind Regards,\r\nKate	0	\N	\N
1102	DavidDuaks	emma-97@live.com.au	83143752987	DANGER! YOU WILL NOT WORK NEXT WEEK BECAUSE YOU WILL BECOME A MILLIONAIRE... https://telegra.ph/How-does-a-simple-student-make-from-15000-per-day-10-20?id-23952172	0	\N	\N
1103	Antatmece	jillianthaxton@gmail.com	89034759700	It is the best time to launch the Robot to get more money. Telegram - @Cryptaxbot	0	\N	\N
1104	Antatmece	omanyd1966@googlemail.com	89036265254	The success formula is found. Learn more about it. Telegram - @Cryptaxbot	0	\N	\N
1105	Antatmece	ajgarcia018@yahoo.com	89034073414	The best online job for retirees. Make your old ages rich. Telegram - @Cryptaxbot	0	\N	\N
1106	Antatmece	anthonyyylinares@yahoo.com	89039128837	Robot is the best way for everyone who looks for financial independence. Telegram - @Cryptaxbot	0	\N	\N
1107	Antatmece	AIRCRAFT0268@MSN.COM	89039265222	Buy everything you want earning money online. Telegram - @Cryptaxbot	0	\N	\N
1108	Antatmece	candicetran12@yahoo.com	89033061004	The best way for everyone who rushes for financial independence. Telegram - @Cryptaxbot	0	\N	\N
1109	Antatmece	pkumaq1990@gmail.com	89038024127	No need to work anymore while you have the Robot launched! Telegram - @Cryptaxbot	0	\N	\N
1110	DavidDuaks	deborah.sueme@yahoo.fr	89614991967	UN SIMPLE ETUDIANT DE PARIS A GAGNE 7 860 000 EUROS SUR LA CRYPTO-MONNAIE https://telegra.ph/LГ©tudiant-a-gagnГ©-7-860-000-euros-sur-la-crypto-monnaie-10-24-11909?id-45748582	0	\N	\N
1111	Antatmece	petrichorgirl13@gmail.com	89033830397	# 1 financial expert in the net! Check out the new Robot. Telegram - @Cryptaxbot	0	\N	\N
1112	Antatmece	amsckt99@ntlworld.com	89035653505	No worries if you are fired. Work online. Telegram - @Cryptaxbot	0	\N	\N
1113	Antatmece	ktumbleton@hotmail.com	89039916866	The online income is the easiest ways to make you dream come true. Telegram - @Cryptaxbot	0	\N	\N
1114	Antatmece	cierreallen10@gmail.com	89039424763	Making money can be extremely easy if you use this Robot. Telegram - @Cryptaxbot	0	\N	\N
1115	DavidDuaks	lahos3@aol.com	87754281962	SYDNEY STUDENT EARNS $7,934,866 IN 3 MONTHS https://telegra.ph/Sydney-student-earns-7934866-with-crypto-in-3-months-10-26-7792?id-news-20742340	0	\N	\N
1116	Antatmece	patience90@live.com	89030081614	Additional income is now available for anyone all around the world. Telegram - @Cryptaxbot	0	\N	\N
1117	Mike Waller	no-replyItelcoth@gmail.com	89334132175	Hi there \r\n \r\nI Just checked your 10bucksonly.co.za ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Waller	0	\N	\N
1118	Antatmece	juliek2203@gmail.com	89032420141	Still not a millionaire? The financial robot will make you him! Telegram - @Cryptaxbot	0	\N	\N
1119	Antatmece	rica9027@hotmail.com	89036795544	Only one click can grow up your money really fast. Telegram - @Cryptaxbot	0	\N	\N
1120	Antatmece	beamer914@gmail.com	89035378823	Provide your family with the money in age. Launch the Robot! Telegram - @Cryptaxbot	0	\N	\N
1121	Antatmece	lover.knight20@yahoo.com	89035337382	Start making thousands of dollars every week. Telegram - @Cryptaxbot	0	\N	\N
1122	Antatmece	jmglass5@yahoo.com	89032283227	We know how to increase your financial stability. Telegram - @Cryptaxbot	0	\N	\N
1123	Antatmece	Libereat81@gmail.com	89036144167	Earn additional money without efforts and skills. Telegram - @Cryptaxbot	0	\N	\N
1124	Antatmece	nneenanath@yahoo.com	89032047088	We know how to make our future rich and do you? Telegram - @Cryptaxbot	0	\N	\N
1125	Antatmece	jack_bunce_arsenal@hotmail.com	89038153633	Additional income is now available for anyone all around the world. Telegram - @Cryptaxbot	0	\N	\N
1126	Antatmece	girishnarang2375@rediffmail.com	89033101676	Launch the robot and let it bring you money. Telegram - @Cryptaxbot	0	\N	\N
1127	Antatmece	gqfm5hbulrnw@yahoo.com	89035088910	Making money in the net is easier now. Telegram - @Cryptaxbot	0	\N	\N
1128	Antatmece	ANDREWHELMY@YAHOO.COM	89038453419	# 1 financial expert in the net! Check out the new Robot. Telegram - @Cryptaxbot	0	\N	\N
1129	Antatmece	mrs.jeanty@yahoo.com	89033676712	The financial Robot works for you even when you sleep. Telegram - @Cryptaxbot	0	\N	\N
1130	Antatmece	hsledge@gmail.com	89038984156	Make thousands every week working online here. Telegram - @Cryptaxbot	0	\N	\N
1131	Antatmece	kristenwhiteford@alhambraesd.org	89039768173	Need some more money? Robot will earn them really fast. Telegram - @Cryptaxbot	0	\N	\N
1132	Antatmece	anm67@sbcglobal.net	89031372047	Need cash? Launch this robot and see what it can. Telegram - @Cryptaxbot	0	\N	\N
1133	Antatmece	lowwtrus@163.com	89036080101	No need to work anymore. Just launch the robot. Telegram - @Cryptaxbot	0	\N	\N
1134	Mike Andrews	no-replyItelcoth@gmail.com	89199354124	Good Day \r\n \r\nThis is Mike Andrews\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Andrews\r\n \r\nmike@strictlydigital.net	0	\N	\N
1135	Antatmece	kuruzard@sowireless.org	89030904960	Check out the newest way to make a fantastic profit. Telegram - @Cryptaxbot	0	\N	\N
1136	Antatmece	trinhngocbaovtc@yahoo.com	89037881989	Launch the financial Robot and do your business. Telegram - @Cryptaxbot	0	\N	\N
1137	DavidDuaks	bardiva@yahoo.com.au	87397226624	INVEST TODAY AND BECOME THE NEXT MILLIONAIRE... https://telegra.ph/How-two-brothers-from-a-poor-family-made-90000000-in-7-months-from-250-in-cryptocurrency-10-31-2032	0	\N	\N
1138	DavidDuaks	chaquita_77@yahoo.com	87838622686	$1000 AMAZON GIFT CARD NEW YEAR'S GIVEAWAY http://how-to-win-uno-on-iphone.pxaminur.com/id-6087	0	\N	\N
1139	Antatmece	rameshlakhtaria@yahoo.com	89036360720	Let your money grow into the capital with this Robot. Telegram - @Cryptaxbot	0	\N	\N
1140	Antatmece	DSADI@SBCGLOBAL.NET	89036805529	The fastest way to make your wallet thick is found. Telegram - @Cryptaxbot	0	\N	\N
1141	Antatmece	charlene.gentles55@googlemail.com	89032614425	Money, money! Make more money with financial robot! Telegram - @Cryptaxbot	0	\N	\N
1142	Antatmece	hopeless_lozer@yahoo.com	89033658257	Make dollars staying at home and launched this Bot. Telegram - @Cryptaxbot	0	\N	\N
1143	Antatmece	Kiana.bevins@yahoo.com	89031811595	Small investments can bring tons of dollars fast. Telegram - @Cryptaxbot	0	\N	\N
1144	Antatmece	grimmegan@yahoo.com	89034672172	Earning $1000 a day is easy if you use this financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1145	Antatmece	bodamm@gmx.com	89039036474	Make your computer to be you earning instrument. Telegram - @Cryptaxbot	0	\N	\N
1146	Antatmece	rrishani@nbks.com	89034489758	Everyone can earn as much as he wants suing this Bot. Telegram - @Cryptaxbot	0	\N	\N
1147	Antatmece	gong_777@hotmail.com	89039170329	Most successful people already use Robot. Do you? Telegram - @Cryptaxbot	0	\N	\N
1148	Antatmece	soniabecker2003@yahoo.com	89032220784	Trust the financial Bot to become rich. Telegram - @Cryptaxbot	0	\N	\N
1149	Antatmece	beatrisecasas@yahoo.com	89030019228	Make thousands of bucks. Pay nothing. Telegram - @Cryptaxbot	0	\N	\N
1150	Antatmece	dsfuuxgu@freemailmail.com	89031567622	This robot can bring you money 24/7. Telegram - @Cryptaxbot	0	\N	\N
1151	Antatmece	queenlaxy@yahoo.com	89037876335	Make thousands of bucks. Pay nothing. Telegram - @Cryptaxbot	0	\N	\N
1152	Antatmece	valeriemule@greeninbox.org	89033387364	Everyone who needs money should try this Robot out. Telegram - @Cryptaxbot	0	\N	\N
1153	Antatmece	mirokosta@yahoo.com	89035776485	Your money keep grow 24/7 if you use the financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1154	Antatmece	neonshining@gmail.com	89038566265	The financial Robot is your future wealth and independence. Telegram - @Cryptaxbot	0	\N	\N
1155	Antatmece	rbpete@gmail.com	89033647856	Earning $1000 a day is easy if you use this financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1156	Antatmece	ehjiantonio1@gmail.com	89034915232	The fastest way to make you wallet thick is here. Telegram - @Cryptaxbot	0	\N	\N
1157	Antatmece	the.richard.walker@gmail.com	89032473096	The financial Robot works for you even when you sleep. Telegram - @Cryptaxbot	0	\N	\N
1158	Antatmece	inkstewer@gmail.com	89037481117	Start making thousands of dollars every week just using this robot. Telegram - @Cryptaxbot	0	\N	\N
1159	Antatmece	william_fotos@live.com	89036345552	Start making thousands of dollars every week. Telegram - @Cryptaxbot	0	\N	\N
1160	Antatmece	r.e.a.s.o.n.lqqf@gmail.com	89035233570	Trust your dollar to the Robot and see how it grows to $100. Telegram - @Cryptaxbot	0	\N	\N
1161	Antatmece	jackleepard@yahoo.com	89030286322	There is no need to look for a job anymore. Work online. Telegram - @Cryptaxbot	0	\N	\N
1162	Antatmece	sabbi_0508@yahoo.com	89030834342	Start your online work using the financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1163	WalterMot	mymail@mymails.cmo	83815433138	Already more than 179,000 Australians have quit their jobs because they got rich thanks to this service https://tinyurl.com/2dxs5363	0	\N	\N
1164	Mike Gimson	no-replyItelcoth@gmail.com	82316593876	If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Gimson\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/	0	\N	\N
1165	Antatmece	magicjazz2004@163.com	89030143817	Need some more money? Robot will earn them really fast. Telegram - @Cryptaxbot	0	\N	\N
1166	Antatmece	riemavanlovelace@gmail.com	89039908785	Trust your dollar to the Robot and see how it grows to $100. Telegram - @Cryptaxbot	0	\N	\N
1167	Antatmece	mkpaularedmond@gmail.com	89033810510	Making money is very easy if you use the financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1168	Derekecomb	reports@projects202x.com	86423857661	Great domain sale! \r\nBuy for 35% -15 % of Go Daddy?s appraisal values. \r\nGeneric  .com, including crypto-domains, and  4 -5 character .com domains! \r\n \r\nEvery 2 weeks our prices will be reduced to  a lower level, until we reach down to 15% \r\nof that GoDaddy valuation!  Seller must liquidate ! \r\n \r\nGrab this chance to secure your premium domains at strongly reduced prices! \r\nGo to   https://domains20x.com/    for the best premium-domain  bargains!	0	\N	\N
1169	Antatmece	tfkch16@sohu.com	89031166230	Financial robot keeps bringing you money while you sleep. Telegram - @Cryptaxbot	0	\N	\N
1170	Antatmece	cherloon123@gmail.com	89037418473	Check out the newest way to make a fantastic profit. Telegram - @Cryptaxbot	0	\N	\N
1171	Alex Bolduin Binance	alex_bolduin_1986_xrp@binance.com	85558137556	Revolutionary New Cryptocurrency Automated Trading Exchange Powered by Binance, Forbes and Blockchain. \r\nOnly on our exchange in automatic mode you can earn your first $1000 today with a one-time investment of $250. \r\nWe invite only owners, administrators and other personnel of the sites that we have chosen. \r\nYour site 10bucksonly.co.za is on our invitation mailing list. \r\nhttps://telegra.ph/Personal-invitation-to-participate-in-our-system-for-owners-administrators-content-creators-and-other-site-personnel-11-09?10bucksonly.co.za \r\nWe will be very happy that after you earn your first $10,000 leave a review about us on the site https://www.trustpilot.com/ \r\nTo start launching automatic trading, you need to: register on our website, make a minimum deposit of $250 to start trading, wait for the manager's call, he will explain how to start the system (there is nothing complicated). \r\nhttps://telegra.ph/Personal-invitation-to-participate-in-our-system-for-owners-administrators-content-creators-and-other-site-personnel-11-09?10bucksonly.co.za	0	\N	\N
1172	DavidDuaks	homeservices@lesmenuisiersbretons.com	82349127993	YOU HAVE WON A SMARTPHONE, TAKE IT NOW http://spin-win.cedgujaratltd.com/id-6122	0	\N	\N
1173	Antatmece	Snowbunny45373@yahoo.com	89039567191	The fastest way to make your wallet thick is found. Telegram - @Cryptaxbot	0	\N	\N
1174	Antatmece	numankhanshah@gmail.com	89034342212	Earn additional money without efforts and skills. Telegram - @Cryptaxbot	0	\N	\N
1175	Antatmece	daniel3528@gmail.com	89035694409	The financial Robot is your # 1 expert of making money. Telegram - @Cryptaxbot	0	\N	\N
1176	Antatmece	funnyguy693@hotmail.com	89037139777	Using this Robot is the best way to make you rich. Telegram - @Cryptaxbot	0	\N	\N
1177	Antatmece	sana_yol@hotmail.com	89038007440	Even a child knows how to make money. Do you? Telegram - @Cryptaxbot	0	\N	\N
1178	Antatmece	zahese@mannbdinfo.org	89035303946	Make money online, staying at home this cold winter. Telegram - @Cryptaxbot	0	\N	\N
1179	Antatmece	marymisale@hotmail.com	89038882384	Only one click can grow up your money really fast. Telegram - @Cryptaxbot	0	\N	\N
1180	DavidDuaks	brittany.cannon2010@yahoo.com	88772348331	REAL INCOME FROM $3000 (3000 EUR) PER DAY https://telegra.ph/Verify-that-you-are-human-11-11-2?id-20242341	0	\N	\N
1181	Antatmece	rob_umbach@hotmail.com	89030265580	Thousands of bucks are guaranteed if you use this robot. Telegram - @Cryptaxbot	0	\N	\N
1182	Antatmece	patriciaherrera135@hotmail.com	89033297177	Financial robot is your success formula is found. Learn more about it. Telegram - @Cryptaxbot	0	\N	\N
1183	ClydeSmary	michaelrp62@gmail.com	83559639599	Hi. I'm reaching out to see whether you’ve applied for the covid-related Employee Retention Tax Credit? This credit is worth up to $26k per employee, and you *can* qualify for both this and PPP (the rules changed Nov 2021).  We can help you maximize this credit and have already done this for more than 160 businesses. All our work is free until you receive a refund. Give us a call at 424-512-1530 or email hello@refundspro.com for more info.	0	\N	\N
1184	Antatmece	dimples27983@yahoo.com	89036227522	The financial Robot is your # 1 expert of making money. Telegram - @Cryptaxbot	0	\N	\N
1185	Antatmece	jbaechler1@hotmail.com	89036228316	Financial robot is your success formula is found. Learn more about it. Telegram - @Cryptaxbot	0	\N	\N
1186	Antatmece	grind_93@hotmail.com	89032845667	The additional income is available for everyone using this robot. Telegram - @Cryptaxbot	0	\N	\N
1187	Antatmece	laceyfool@yahoo.com	89037027179	Still not a millionaire? The financial robot will make you him! Telegram - @Cryptaxbot	0	\N	\N
1188	Linapl	linapl@hotmail.com	+420 2294675015	Нiǃ\r\nI'vе notіced thаt many guуѕ prеfеr rеgular girlѕ.\r\nΙ apрlaude the men оut there whо hаd thе ballѕ to еnϳoу the lоve of manу women аnd сhoоѕе thе one thаt he knew would be his bеѕt frіend durіng the bumру аnd crаzy thіng cаlled lіfе.\r\nΙ wаnted to be thаt frіend, nоt ϳuѕt а stаble, reliable and bоring hоusewifе.\r\nΙ am 24 уеars old, Lina, from thе Сzech Reрublic, know Еnglіѕh languagе alѕо.\r\nΑnywаy, уou сan fіnd my profіlе hеre: http://espewline.tk/page-62492/	0	\N	\N
1189	Antatmece	edwardramos811@msn.com	89037135089	Financial Robot is #1 investment tool ever. Launch it! Telegram - @Cryptaxbot	0	\N	\N
1190	Antatmece	leianddre@aol.com	89030788434	Your computer can bring you additional income if you use this Robot. Telegram - @Cryptaxbot	0	\N	\N
1191	DavidDuaks	kristin92@gmx.de	89787778189	Real income from $3000 (3000 EUR) per day https://telegra.ph/Verify-that-you-are-human-11-11-2?id-43258058	0	\N	\N
1192	Antatmece	jeni@geffenplayhouse.com	89030444621	Financial independence is what this robot guarantees. Telegram - @Cryptaxbot	0	\N	\N
1193	Mike Fitzgerald	no-replyItelcoth@gmail.com	87645725613	Hi there \r\n \r\nI have just analyzed  10bucksonly.co.za for  the current search visibility and saw that your website could use an upgrade. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Fitzgerald\r\n \r\n \r\nPS: Quality SEO content is included	0	\N	\N
1194	Antatmece	pianostar57@yahoo.com	89032241689	Looking forward for income? Get it online. Telegram - @Cryptaxbot	0	\N	\N
1195	Antatmece	bobcat12469@yahoo.com	89033366728	The fastest way to make you wallet thick is here. Telegram - @Cryptaxbot	0	\N	\N
1196	Antatmece	Dont_Say_Goodbye@msn.com	89035181048	Financial Robot is #1 investment tool ever. Launch it! Telegram - @Cryptaxbot	0	\N	\N
1197	Antatmece	dr.sabyasachi@gmail.com	89030471727	Need money? Get it here easily! Just press this to launch the robot. Telegram - @Cryptaxbot	0	\N	\N
1198	Antatmece	Packerfan867@yahoo.com	89032738578	Only one click can grow up your money really fast. Telegram - @Cryptaxbot	0	\N	\N
1199	DavidDuaks	alpinista@web.de	85116423874	REAL INCOME FROM $5000 PER DAY http://forbes.mulakatim-var.com/news-2724	0	\N	\N
1200	Antatmece	y.ourm.a.il.r.t.tm@gmail.com	89037621259	Have no money? Earn it online. Telegram - @Cryptaxbot	0	\N	\N
1201	Antatmece	LanaeW1@aol.com	89034644325	Make thousands of bucks. Pay nothing. Telegram - @Cryptaxbot	0	\N	\N
1202	Antatmece	velasquezana32@yahoo.com	89033988259	The online job can bring you a fantastic profit. Telegram - @Cryptaxbot	0	\N	\N
1203	Antatmece	priya.karkada@hyattintl.com	89037607996	No worries if you are fired. Work online. Telegram - @Cryptaxbot	0	\N	\N
1204	Antatmece	way2faded@gmail.com	89030639086	It is the best time to launch the Robot to get more money. Telegram - @Cryptaxbot	0	\N	\N
1205	Antatmece	yadavarvind621@gmail.com	89032738679	Even a child knows how to make money. This robot is what you need! Telegram - @Cryptaxbot	0	\N	\N
1206	Mike Osborne	no-replyItelcoth@gmail.com	86494343295	Hi there \r\n \r\nJust checked your 10bucksonly.co.za in ahrefs and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed ahrefs score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nThanks and regards \r\nMike Osborne\r\n \r\n \r\n \r\nPS: For a limited time, we`ll add ahrefs UR50+ for free.	0	\N	\N
1207	Antatmece	tiyanahodges@yahoo.com	89033922626	No need to worry about the future if your use this financial robot. Telegram - @Cryptaxbot	0	\N	\N
1208	Antatmece	dicut_eno@hotmail.com	89032699042	Turn $1 into $100 instantly. Use the financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1209	Antatmece	nicole326@hotmail.com	89038110443	Small investments can bring tons of dollars fast. Telegram - @Cryptaxbot	0	\N	\N
1210	HarryTer	enauda.studio@gmail.com	83551129161	http://nextel.reachengage.org is a modern e-Banking solution without boundaries. \r\n \r\nWe provide a way to receive and transfer money via SEPA (EU), CHAPS (UK), ACH (US), Singapore, New Zealand, Australia, Turkey, Hungary domestic bank accounts, SWIFT worldwide bank transfers. \r\n \r\nOur platform allows to register and deposit money via cryptocurrency, deposit payments via domestic US, UK, EU, Singapore, New Zealand, Australia, Turkey, Hungary bank wires, withdraw balance to credit card, cryptocurrency, or send money to any bank account worldwide. \r\n \r\nYou can use our solution to receive various local payments and forward it to cryptocurrency wallets, or deposit money via your local bank and pay it out in cryptocurrency for your partners. Also you are able to deposit the balance in cryptocurrency and pay it out to bank wire. \r\n \r\nWe work with all international partners. We do not disclose information about our customers to third parties. \r\n \r\nFeel free to reach us via email hello@nextel.capital if you have any questions or partnership offers.	0	\N	\N
1211	Antatmece	ls1auto27@yahoo.com	89035908206	Financial robot keeps bringing you money while you sleep. Telegram - @Cryptaxbot	0	\N	\N
1212	Antatmece	cougarjae1970@yahoo.com	89034152572	Even a child knows how to make money. This robot is what you need! Telegram - @Cryptaxbot	0	\N	\N
1213	Antatmece	bcftom@aol.com	89039283883	Let the Robot bring you money while you rest. Telegram - @Cryptaxbot	0	\N	\N
1214	Antatmece	wajdan.younas@gmail.com	89032849728	The success formula is found. Learn more about it. Telegram - @Cryptaxbot	0	\N	\N
1215	Antatmece	Obeyy_Mini@yahoo.com	89039993758	Make your money work for you all day long. Telegram - @Cryptaxbot	0	\N	\N
1216	Antatmece	marygirl20mc@aol.com	89035758255	Making money is very easy if you use the financial Robot. Telegram - @Cryptaxbot	0	\N	\N
1217	Antatmece	ilovenyc215@gmail.com	89032336041	Everyone can earn as much as he wants now. Telegram - @Cryptaxbot	0	\N	\N
1218	Antatmece	lzoebdfa@myemailboxy.com	89032797604	One click of the robot can bring you thousands of bucks. Telegram - @Cryptaxbot	0	\N	\N
1219	DavidVunse	topsocialsmarketing@gmail.com	83662738473	Good day, \r\n \r\nI trust all is well, \r\n \r\nThe year is coming to an end, did your business achieve its goals? \r\n \r\nIt's not a shame if it hasn't, but it is a shame if you let it happen again in 2023. \r\n \r\nGrab your hands on our Social Media Management package for R500 and stay ahead of your competition, we guarantee you new customers. \r\n \r\nWith over 7 years experience, helping numerous clients and with the best price around, we are the best! \r\n \r\nOffer only available for 48 hours, miss out now, miss out forever.	0	\N	\N
1220	Antatmece	mrroosteroyou@yahoo.com	89036439843	Make money online, staying at home this cold winter. Telegram - @Cryptaxbot	0	\N	\N
1221	Antatmece	564fve@gmail.com	89034010021	Make thousands every week working online here. Telegram - @Cryptaxbot	0	\N	\N
1222	Antatmece	karenloudermilk@hotmail.com	89037298450	Money, money! Make more money with financial robot! Telegram - @Cryptaxbot	0	\N	\N
1223	Antatmece	melvsgc@gmail.com	89036614946	Wow! This is a fastest way for a financial independence. Telegram - @Cryptaxbot	0	\N	\N
1224	Antatmece	angie.eri08@yahoo.com	89030312215	Financial independence is what this robot guarantees. Telegram - @Cryptaxbot	0	\N	\N
1225	Antatmece	roaNoah@hotmail.com	89037295112	The financial Robot is the most effective financial tool in the net! Telegram - @Cryptaxbot	0	\N	\N
1226	Antatmece	kevinmartin007@yahoo.com	89039359775	There is no need to look for a job anymore. Work online. Telegram - @Cryptaxbot	0	\N	\N
1227	Antatmece	alancarrahar@sky.com	89036465193	The financial Robot is the most effective financial tool in the net! Telegram - @Cryptaxbot	0	\N	\N
1228	Antatmece	amed_adel@hotmail.com	89032639077	Online Bot will bring you wealth and satisfaction. Telegram - @Cryptaxbot	0	\N	\N
1229	Antatmece	jamesmaster_jay@hotmail.com	89031843569	The best online job for retirees. Make your old ages rich. Telegram - @Cryptaxbot	0	\N	\N
1230	Antatmece	rimo.2009@hotmail.com	89032855658	Watch your money grow while you invest with the Robot. Telegram - @Cryptaxbot	0	\N	\N
1231	Antatmece	kirsch25@yahoo.com	89030060554	Need money? Earn it without leaving your home. Telegram - @Cryptaxbot	0	\N	\N
1232	Antatmece	jvanable@yahoo.com	89032633358	The best way for everyone who rushes for financial independence. Telegram - @Cryptaxbot	0	\N	\N
1233	Antatmece	donjwoods@aol.com	89036040760	Start making thousands of dollars every week just using this robot. Telegram - @Cryptaxbot	0	\N	\N
1234	Mike Jones	no-replyItelcoth@gmail.com	88284219927	Hi there \r\n \r\nI Just checked your 10bucksonly.co.za ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Jones	0	\N	\N
1235	Antatmece	nreierson@yahoo.com	89039135404	The fastest way to make your wallet thick is found. Telegram - @Cryptaxbot	0	\N	\N
1236	Antatmece	wiggaz@aol.com	89033200114	Start making thousands of dollars every week. Telegram - @Cryptaxbot	0	\N	\N
1237	Antatmece	rosie.preston@btopenworld.com	89036711015	This robot will help you to make hundreds of dollars each day. Telegram - @Cryptaxbot	0	\N	\N
1238	GeorgeJaify	ced@osbsc.on.ca	82865486622	Buy Telegram Members - buy telegram subscribers >>>  https://vip-smm-panel.blogspot.no/?l=9vk   <<<	0	\N	\N
1239	GeorgeJaify	ced@osbsc.on.ca	82742528391	Buy Telegram Members - buy telegram subscribers >>>  https://vip-smm-panel.blogspot.no/?l=9vk   <<<	0	\N	\N
1240	GeorgeJaify	ced@osbsc.on.ca	86885145228	Buy Telegram Members - buy telegram subscribers >>>  https://vip-smm-panel.blogspot.no/?l=9vk   <<<	0	\N	\N
1241	GeorgeJaify	ced@osbsc.on.ca	81949146712	Buy Telegram Members - buy telegram subscribers >>>  https://vip-smm-panel.blogspot.no/?l=9vk   <<<	0	\N	\N
1242	GeorgeJaify	ced@osbsc.on.ca	83684224916	Buy Telegram Members - buy telegram subscribers >>>  https://vip-smm-panel.blogspot.no/?l=9vk   <<<	0	\N	\N
1243	Antatmece	bondtl@gmail.com	89030704115	The fastest way to make you wallet thick is here. Telegram - @Cryptaxbot	0	\N	\N
1244	Antatmece	babi19_123@yahoo.com	89032197102	Online Bot will bring you wealth and satisfaction. Telegram - @Cryptaxbot	0	\N	\N
1245	Antatmece	sohrnt@163.com	89033557916	Just one click can turn you dollar into $1000. Telegram - @Cryptaxbot	0	\N	\N
1246	Antatmece	1foxygirl@comcast.net	89035077819	Launch the robot and let it bring you money. Telegram - @Cryptaxbot	0	\N	\N
1247	Antatmece	kcollum@collumcommercial.com	89038617362	Even a child knows how to make $100 today. Telegram - @Cryptaxbot	0	\N	\N
1248	Antatmece	patrick.urban@comcast.net	89031503259	Financial independence is what this robot guarantees. Telegram - @Cryptaxbot	0	\N	\N
1249	Antatmece	jezmoi2007@gmail.com	89038835047	No worries if you are fired. Work online. Telegram - @Cryptaxbot	0	\N	\N
1250	Antatmece	sabrahams048@gmail.com	89033729122	Check out the new financial tool, which can make you rich. Telegram - @Cryptaxbot	0	\N	\N
1251	Antatmece	eorl3182@gmail.com	89031584026	Even a child knows how to make money. This robot is what you need! Telegram - @Cryptaxbot	0	\N	\N
1252	Antatmece	oldred@naver.com	89038151734	Online earnings are the easiest way for financial independence. Telegram - @Cryptaxbot	0	\N	\N
1253	CharlesBox	"cutegurl_galz1916@yahoo.ca";"lava";""	85231133893	SMART APP MAKES PEOPLE INCOME FROM $3500 PER HOUR >>>  https://passive-income-9000-usd-per-day.blogspot.hu/?o=9zf   <<<	0	\N	\N
1254	CharlesBox	"cutegurl_galz1916@yahoo.ca";"lava";""	85197494479	SMART APP MAKES PEOPLE INCOME FROM $3500 PER HOUR >>>  https://passive-income-9000-usd-per-day.blogspot.hu/?o=9zf   <<<	0	\N	\N
1255	CharlesBox	"cutegurl_galz1916@yahoo.ca";"lava";""	87699221485	SMART APP MAKES PEOPLE INCOME FROM $3500 PER HOUR >>>  https://passive-income-9000-usd-per-day.blogspot.hu/?o=9zf   <<<	0	\N	\N
1256	CharlesBox	"cutegurl_galz1916@yahoo.ca";"lava";""	85974141533	SMART APP MAKES PEOPLE INCOME FROM $3500 PER HOUR >>>  https://passive-income-9000-usd-per-day.blogspot.hu/?o=9zf   <<<	0	\N	\N
1257	CharlesBox	"cutegurl_galz1916@yahoo.ca";"lava";""	81551613867	SMART APP MAKES PEOPLE INCOME FROM $3500 PER HOUR >>>  https://passive-income-9000-usd-per-day.blogspot.hu/?o=9zf   <<<	0	\N	\N
1258	Antatmece	odenwellerk@yahoo.com	89031596377	Financial robot is your success formula is found. Learn more about it. Telegram - @Cryptaxbot	0	\N	\N
1259	Antatmece	mtchuck@charter.com	89031816388	Rich people are rich because they use this robot. Telegram - @Cryptaxbot	0	\N	\N
1260	CharlesBox	lkhirfan@uwaterloo.ca	82196529341	THERE IS AN OPPORTUNITY TO EARN $5,000,000 IN 3 MONTHS, LEARN MORE >>>  https://passive-income-1500-usd-per-day.blogspot.com.ar/?o=0vf   <<<	0	\N	\N
1261	CharlesBox	lkhirfan@uwaterloo.ca	89653866473	THERE IS AN OPPORTUNITY TO EARN $5,000,000 IN 3 MONTHS, LEARN MORE >>>  https://passive-income-1500-usd-per-day.blogspot.com.ar/?o=0vf   <<<	0	\N	\N
1262	CharlesBox	lkhirfan@uwaterloo.ca	86244264817	THERE IS AN OPPORTUNITY TO EARN $5,000,000 IN 3 MONTHS, LEARN MORE >>>  https://passive-income-1500-usd-per-day.blogspot.com.ar/?o=0vf   <<<	0	\N	\N
1263	CharlesBox	lkhirfan@uwaterloo.ca	88993358179	THERE IS AN OPPORTUNITY TO EARN $5,000,000 IN 3 MONTHS, LEARN MORE >>>  https://passive-income-1500-usd-per-day.blogspot.com.ar/?o=0vf   <<<	0	\N	\N
1264	CharlesBox	lkhirfan@uwaterloo.ca	81795386338	THERE IS AN OPPORTUNITY TO EARN $5,000,000 IN 3 MONTHS, LEARN MORE >>>  https://passive-income-1500-usd-per-day.blogspot.com.ar/?o=0vf   <<<	0	\N	\N
1265	Antatmece	ew81zs@hotmial.com	89039271600	Financial robot keeps bringing you money while you sleep. Telegram - @Cryptaxbot	0	\N	\N
1266	Mike Fisher	no-replyItelcoth@gmail.com	88697396767	Hi there \r\n \r\nThis is Mike Fisher\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Fisher\r\n \r\nmike@strictlydigital.net	0	\N	\N
1267	CharlesBox	donnie5@symaptico.ca	88478668399	Elon Musk's sensational statement shocked everyone >>>  https://big-hot-news.blogspot.jp/?p=9ej   <<<	0	\N	\N
1268	CharlesBox	donnie5@symaptico.ca	83725947637	Elon Musk's sensational statement shocked everyone >>>  https://big-hot-news.blogspot.jp/?p=9ej   <<<	0	\N	\N
1269	CharlesBox	donnie5@symaptico.ca	86195291661	Elon Musk's sensational statement shocked everyone >>>  https://big-hot-news.blogspot.jp/?p=9ej   <<<	0	\N	\N
1270	CharlesBox	donnie5@symaptico.ca	81523187688	Elon Musk's sensational statement shocked everyone >>>  https://big-hot-news.blogspot.jp/?p=9ej   <<<	0	\N	\N
1271	CharlesBox	donnie5@symaptico.ca	81857852128	Elon Musk's sensational statement shocked everyone >>>  https://big-hot-news.blogspot.jp/?p=9ej   <<<	0	\N	\N
1272	DavidDiert	atoncetry@gmail.com	82759772998	Hey, have you checked this out? \r\n \r\nLooks like you could write some of your blog posts and ads with AtOnce. \r\n \r\nSaves 90% of your time. Lets you write around 20 blog articles in 2 mins... and answer emails 10x faster \r\n \r\ntry it here: https://atoncetry.com	0	\N	\N
1273	Antatmece	chancesfool@gmail.com	89038230688	Join the society of successful people who make money here. Telegram - @Cryptaxbot	0	\N	\N
1274	Antatmece	michelle.mulroney@gmail.com	89035276215	The additional income is available for everyone using this robot. Telegram - @Cryptaxbot	0	\N	\N
1275	Antatmece	Lfrechette4@aol.com	89031238372	The fastest way to make you wallet thick is here. Telegram - @Cryptaxbot	0	\N	\N
1276	Antatmece	saber.jdey@gmail.com	89034687787	Rich people are rich because they use this robot. https://worldnews.elk.pl	0	\N	\N
1277	HRM Bah Mbi	obihannah016@gmail.com	87149826781	ATTN. Director, \r\n \r\nWe are interested in your products. Please contact us if your company can handle a bulk supply of your products to Cameroon. \r\nPlease send your reply to \r\nhrh_bah_mbi@oiedcadmin.org \r\nHRM Bah Mbi	0	\N	\N
1278	Antatmece	salazar.jacky@yahoo.com	89036976661	Using this Robot is the best way to make you rich. https://worldnews.elk.pl	0	\N	\N
1279	Antatmece	odefell@gmail.com	89034875786	One dollar is nothing, but it can grow into $100 here. https://worldnews.elk.pl	0	\N	\N
1280	Antatmece	torazzo@msn.com	89031745361	Wow! This Robot is a great start for an online career. https://worldnews.elk.pl	0	\N	\N
1281	Antatmece	export@urgasat.com	89035037895	Making money is very easy if you use the financial Robot. https://worldnews.elk.pl	0	\N	\N
1282	Antatmece	protectcs@hotmail.com	89032953549	Have no financial skills? Let Robot make money for you. https://worldnews.elk.pl	0	\N	\N
1283	Antatmece	xs_amc@yahoo.com	89035479485	Make money 24/7 without any efforts and skills. https://worldnews.elk.pl	0	\N	\N
1284	Antatmece	hads01@yahoo.com	89038147902	Wow! This is a fastest way for a financial independence. https://worldnews.elk.pl	0	\N	\N
1285	Antatmece	pmulira89@gmail.com	89031662972	We know how to make our future rich and do you? https://worldnews.elk.pl	0	\N	\N
1286	Antatmece	rsyanick@yahoo.com	89031109205	The online income is the easiest ways to make you dream come true. https://worldnews.elk.pl	0	\N	\N
1287	Antatmece	sqtmaw353812@hotmail.com	89036851401	Earning $1000 a day is easy if you use this financial Robot. https://worldnews.elk.pl	0	\N	\N
1288	DavidDuaks	retiredaf03@hotmail.com.au	85729937961	WE GUARANTEE YOU AN INCOME OF $4000 PER DAY https://telegra.ph/A-secret-technique-that-generates-income-from--4000-per-day-on-autopilot-12-05?id-60254597	0	\N	\N
1289	Antatmece	mgoodwin@reddingps.org	89038600660	Make yourself rich in future using this financial robot. https://worldnews.elk.pl	0	\N	\N
1290	Antatmece	robertsrashad@yahoo.com	89037420017	The online financial Robot is your key to success. https://worldnews.elk.pl	0	\N	\N
1291	Antatmece	lovexlaughing812@aim.com	89034203420	Try out the best financial robot in the Internet. https://worldnews.elk.pl	0	\N	\N
1292	Antatmece	things.unwanted@gmail.com	89036826177	The additional income for everyone. https://worldnews.elk.pl	0	\N	\N
1293	Antatmece	kevtionne729@yahoo.com	89030291593	The financial Robot is your future wealth and independence. https://worldnews.elk.pl	0	\N	\N
1294	DavidDuaks	treeves24@yahoo.ca	86778652342	Tired of work and debts, stop enduring it, act https://949586-per-day.blogspot.tw/?o=0fh	0	\N	\N
1295	Antatmece	raskasa93@gmail.com	89036601342	Start your online work using the financial Robot. https://worldnews.elk.pl	0	\N	\N
1296	Antatmece	bridgetmboyd@gmail.com	89030146152	Making money in the net is easier now. https://worldnews.elk.pl	0	\N	\N
1297	Antatmece	carlos_tbc@yahoo.com	89034440774	Robot never sleeps. It makes money for you 24/7. https://worldnews.elk.pl	0	\N	\N
1298	Antatmece	jamrockprinces06@aol.com	89030707535	Need money? Get it here easily? https://worldnews.elk.pl	0	\N	\N
1299	Antatmece	martsgarau@yahoo.com	89036186391	Start making thousands of dollars every week. https://worldnews.elk.pl	0	\N	\N
1300	Antatmece	rb@roybenjamin.com	89031400700	Make money 24/7 without any efforts and skills. https://worldnews.elk.pl	0	\N	\N
1301	JamesNoifs	mark.de.nee@telenet.be	87956371592	HOREN SIE AUF, IN ARMUT UND SCHULDEN ZU LEBEN, WERDEN SIE VOR DEM NEUEN JAHR ERFOLGREICH https://4375547-euro-per-month.blogspot.dk/?o=9lb	0	\N	\N
1302	Antatmece	groundswell1@gmail.com	89031958656	Attention! Financial robot may bring you millions! https://worldnews.elk.pl	0	\N	\N
1303	JamesNoifs	margo.bettger-hahn@uwo.ca	85914552127	TIRED OF WORK AND DEBTS, STOP ENDURING IT, ACT https://telegra.ph/Canadians-are-massively-getting-richer-and-becoming-millionaires-12-09-2125	0	\N	\N
1304	Antatmece	www.543347989@qq.com	89039289634	Trust your dollar to the Robot and see how it grows to $100. https://worldnews.elk.pl	0	\N	\N
1305	Antatmece	candice32692@yahoo.com	89033849956	Still not a millionaire? Fix it now! https://worldnews.elk.pl	0	\N	\N
1306	Antatmece	kelliher_dan@yahoo.com	89039874108	Even a child knows how to make $100 today. https://worldnews.elk.pl	0	\N	\N
1307	Antatmece	ethanlikesmustachios@yahoo.com	89039113759	Making money is very easy if you use the financial Robot. https://worldnews.elk.pl	0	\N	\N
1308	Antatmece	bobbyjoe@comcast.net	89030692767	Additional income is now available for anyone all around the world. https://worldnews.elk.pl	0	\N	\N
1309	Antatmece	egnnuaz@gmail.com	89032354251	The success formula is found. Learn more about it. https://worldnews.elk.pl	0	\N	\N
1310	Mike Mercer	no-replyItelcoth@gmail.com	86543666551	If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Mercer\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/	0	\N	\N
1311	Antatmece	pkganss_yahoo.com@gogdog.com	89032258834	Make dollars staying at home and launched this Bot. https://worldnews.elk.pl	0	\N	\N
1312	Antatmece	littletsx76@yahoo.com	89036775801	Watch your money grow while you invest with the Robot. https://worldnews.elk.pl	0	\N	\N
1313	Antatmece	rit.a.sexxxi13@gmail.com	89038005340	Launch the robot and let it bring you money. https://newsworld.elk.pl	0	\N	\N
1314	Antatmece	oneredtempest@yahoo.com	89034516450	The financial Robot works for you even when you sleep. https://newsworld.elk.pl	0	\N	\N
1315	Antatmece	paula.lawley2@btinternet.com	89033850229	No worries if you are fired. Work online. https://newsworld.elk.pl	0	\N	\N
1316	JamesNoifs	aka16@poczta.onet.pl	81482481254	ZOSTAN MILIONEREM PRZED NOWYM ROKIEM https://telegra.ph/300000000000-euro-12-12-7251	0	\N	\N
1317	Antatmece	mariamedeiros133@comcast.net	89033551460	Earning $1000 a day is easy if you use this financial Robot. https://newsworld.elk.pl	0	\N	\N
1318	WilliamStaRt	no.reply.geark@gmail.com	84252963263	Hi!  10bucksonly.co.za \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd mеssаgе соmplеtеly lеgitimаtе wаy? \r\nWе suggеst а nеw lеgаl wаy оf sеnding businеss prоpоsаl thrоugh fееdbасk fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh businеss prоpоsаls аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh fееdbасk Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis mеssаgе is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat. \r\nno.reply.StaRt@gmail.com	0	\N	\N
1319	Antatmece	elfette77@gmail.com	89038016573	Trust your dollar to the Robot and see how it grows to $100. https://newsworld.elk.pl	0	\N	\N
1320	Antatmece	spphay@yahoo.com	89031593514	Trust your dollar to the Robot and see how it grows to $100. https://newsworld.elk.pl	0	\N	\N
1321	Antatmece	meg18777803@nedt.com	89036694767	Earning $1000 a day is easy if you use this financial Robot. https://newsworld.elk.pl	0	\N	\N
1322	Antatmece	valentinarose84@yahoo.com	89030626661	Wow! This Robot is a great start for an online career. https://newsworld.elk.pl	0	\N	\N
1323	Antatmece	albert_miller26@aol.com	89032348238	Have no financial skills? Let Robot make money for you. https://newsworld.elk.pl	0	\N	\N
1324	Antatmece	maximgoogle@email.com	89033106531	The financial Robot works for you even when you sleep. https://newsworld.elk.pl	0	\N	\N
1325	Antatmece	xpeteraen13@yahoo.com	89033598277	We know how to make our future rich and do you? https://newsworld.elk.pl	0	\N	\N
1326	Antatmece	danielle.m.roby@gmail.com	89034954898	The best online investment tool is found. Learn more! https://newsworld.elk.pl	0	\N	\N
1327	Mike Hodges	no-replyItelcoth@gmail.com	85793477377	Greetings \r\n \r\nI have just checked  10bucksonly.co.za for the ranking keywords and saw that your website could use an upgrade. \r\n \r\nWe will improve your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our pricelist here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Hodges\r\n \r\n \r\nPS: Quality SEO content is included	0	\N	\N
1328	Mike Adamson	no-replyItelcoth@gmail.com	89338238325	Hi there \r\n \r\nJust checked your 10bucksonly.co.za in ahrefs and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed ahrefs score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Semrush DA is now possible \r\nhttps://www.monkeydigital.co/semrush-da/ \r\n \r\nThanks and regards \r\nMike Adamson\r\n \r\n \r\n \r\nPS: For a limited time, we`ll add ahrefs UR50+ for free.	0	\N	\N
1329	Antatmece	akshay.arora@hotmail.com	89037440670	This robot can bring you money 24/7. https://newsworld.elk.pl	0	\N	\N
1330	Antatmece	perla_colula@hotmail.com	89038543347	See how Robot makes $1000 from $1 of investment. https://newsworld.elk.pl	0	\N	\N
1331	Antatmece	kseth62501@yahoo.com	89036259726	We have found the fastest way to be rich. Find it out here. https://newsworld.elk.pl	0	\N	\N
1332	Antatmece	NATMER5252@GMAIL.COM	89032095415	Even a child knows how to make $100 today with the help of this robot. https://newsworld.elk.pl	0	\N	\N
1334	Mark Den	markden@markkden.com	85552289213	Good day, \r\n \r\nI contacted you some days back seeking your cooperation in a matter regarding funds worth $24 Million, I urge you to get back to me through this email markden1@markkden.com if you’re interested. \r\n \r\nI await your response. \r\n \r\nThanks, \r\n \r\nMark Den	0	\N	\N
1333	TyroneBix	support@capitalfund-hk.com	81648456577	Capital Fund International Limited has been working in close partnership with various Business/Financial Consultants and every business and industrial sector all over the world. \r\n \r\nOur Financial services; Funding, Loan, collateral Facilities/Instrument and expertise is the safety net that you require in your Business. \r\n \r\nRequire funding/ Loan from 1 Million to 10 Billion USD/EURO/GBP and Above? \r\n \r\n+852 3008 8373 \r\nCapital Fund International Limited \r\nhttp://www.capitalfund-hk.com/ \r\ninfo@capitalfund-hk.com	0	\N	\N
1335	Antatmece	romilittman@gmail.com	89037385379	Earning money in the Internet is easy if you use Robot. https://newsworld.elk.pl	0	\N	\N
1336	Antatmece	mageed520@comcast.net	89036457225	No need to stay awake all night long to earn money. Launch the robot. https://newsworld.elk.pl	0	\N	\N
1337	Antatmece	satyaphoenix1891@gmail.com	89037224347	This robot will help you to make hundreds of dollars each day. https://newsworld.elk.pl	0	\N	\N
1338	Antatmece	anand@dean-textiles.com	89032025439	Make money 24/7 without any efforts and skills. https://newsworld.elk.pl	0	\N	\N
1339	Antatmece	g_J5123@yahoo.com	89035064811	No need to work anymore. Just launch the robot. https://newsworld.elk.pl	0	\N	\N
1340	Antatmece	young_gangsta_2492@yahoo.com	89031752607	Need cash? Launch this robot and see what it can. https://newsworld.elk.pl	0	\N	\N
1341	Antatmece	mattadamski2003@yahoo.com	89033880079	Wow! This is a fastest way for a financial independence. https://newsworld.elk.pl	0	\N	\N
1342	Antatmece	wenbren@live.com	89039076371	Learn how to make hundreds of backs each day. https://newsworld.elk.pl	0	\N	\N
1343	Antatmece	gamerslocal@yahoo.com	89034945611	Launch the robot and let it bring you money. https://newsworld.elk.pl	0	\N	\N
1344	Antatmece	cougarfootball_5@yahoo.com	89038542774	Wow! This Robot is a great start for an online career. https://newsworld.elk.pl	0	\N	\N
1345	Antatmece	masaleh@hotmail.com	89030194085	Your computer can bring you additional income if you use this Robot. https://newsworld.elk.pl	0	\N	\N
1346	Antatmece	prince_kro@hotmail.com	89037815172	The online income is the easiest ways to make you dream come true. https://newsworld.elk.pl	0	\N	\N
1347	Antatmece	zlyyto20691@hotmail.com	89031471968	Launch the financial Bot now to start earning. https://newsworld.elk.pl	0	\N	\N
1348	Antatmece	gselupita@msn.com	89037787051	Financial independence is what everyone needs. https://newsworld.elk.pl	0	\N	\N
1349	Antatmece	b.martin1461@gmail.com	89037844891	The financial Robot works for you even when you sleep. https://newsworld.elk.pl	0	\N	\N
1350	Antatmece	diondunbar@telus.net	89038328026	Looking for an easy way to make money? Check out the financial robot. https://newsworld.elk.pl	0	\N	\N
1351	Mike Oliver	no-replyItelcoth@gmail.com	83294561465	Hi there \r\n \r\nI Just checked your 10bucksonly.co.za ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Oliver	0	\N	\N
1352	Antatmece	stardust12345678900@msn.com	89031530225	Let the Robot bring you money while you rest. https://newsworld.elk.pl	0	\N	\N
1353	Antatmece	epeanut98@yahoo.com	89038415682	The additional income is available for everyone using this robot. https://newsworld.elk.pl	0	\N	\N
1354	RichardFep	shvyryov.ivan@yahoo.se	89623469722	An easy way to have extra income from $1000 per day https://best-passive-income-au.blogspot.co.uk/?l=0ne	0	\N	\N
1355	Antatmece	ollieasaurus_@hotmail.com	89036099934	Financial robot is the best companion of rich people. https://newsworld.elk.pl	0	\N	\N
1356	Antatmece	alcaraz_erik@yahoo.com	89037615625	Need money? Earn it without leaving your home. https://newsworld.elk.pl	0	\N	\N
1357	Antatmece	walbynukaaklisha@outlook.com	89036918454	Additional income is now available for anyone all around the world. https://newsworld.elk.pl	0	\N	\N
1358	Antatmece	canoepaddlerskid@hotmail.com	89031563473	Need money? The financial robot is your solution. https://newsworld.elk.pl	0	\N	\N
1359	Antatmece	emenikejohnpaul@yahoo.com	89033711996	Try out the automatic robot to keep earning all day long. https://newsworld.elk.pl	0	\N	\N
1360	Antatmece	mr.biggz59bhb@yahoo.com	89037712883	It is the best time to launch the Robot to get more money. https://newsworld.elk.pl	0	\N	\N
1361	Antatmece	frjtjyh@yahoo.com	89030802025	Thousands of bucks are guaranteed if you use this robot. https://newsworld.elk.pl	0	\N	\N
1362	Antatmece	alex_andes@ymail.com	89036404794	Earning money in the Internet is easy if you use Robot. https://newsworld.elk.pl	0	\N	\N
1363	Antatmece	deardiana10@yahoo.com	89034156917	Need money? Earn it without leaving your home. https://newsworld.elk.pl	0	\N	\N
1364	Antatmece	tia.n.lile@gmail.com	89034010114	Let the financial Robot be your companion in the financial market. https://newsworld.elk.pl	0	\N	\N
1365	Antatmece	dommykips@yahoo.com	89036177747	Attention! Here you can earn money online! https://newsworld.elk.pl	0	\N	\N
1366	Antatmece	ritutap@rediffmail.com	89039107315	Make your computer to be you earning instrument. https://newsworld.elk.pl	0	\N	\N
1367	Antatmece	kadis_ot29@hotmail.com	89039847696	The huge income without investments is available, now! https://newsworld.elk.pl	0	\N	\N
1368	Antatmece	anand.jay86@gmail.com	89030223572	Start making thousands of dollars every week. https://newsworld.elk.pl	0	\N	\N
1369	Antatmece	bernardgoose@jeffersonbox.com	89034480897	Looking for an easy way to make money? Check out the financial robot. https://newsworld.elk.pl	0	\N	\N
1370	Antatmece	lahippo@triad.rr.com	89030800303	Wow! This is a fastest way for a financial independence. http://go.suqomuaq.com/0j35	0	\N	\N
1371	Antatmece	anushabtech407@gmail.com	89031162740	The online financial Robot is your key to success. http://go.suqomuaq.com/0j35	0	\N	\N
1372	Antatmece	n.i.d.ege.kan.k.e.tante@gmail.com	89036449063	Even a child knows how to make money. Do you? http://go.suqomuaq.com/0j35	0	\N	\N
1373	Antatmece	pembegul_03@hotmail.com	89030712689	Small investments can bring tons of dollars fast. http://go.suqomuaq.com/0j35	0	\N	\N
1374	Antatmece	suzethalmaraz@gmail.com	89031611866	# 1 financial expert in the net! Check out the new Robot. http://go.suqomuaq.com/0j35	0	\N	\N
1375	Mike Day	no-replyItelcoth@gmail.com	81452495427	Hi there \r\n \r\nThis is Mike Day\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Day\r\n \r\nmike@strictlydigital.net	0	\N	\N
1405	num7290270krya	dlfxftzd@historianmail.cf	87194729962	mis7290270uttjr FzHJUpp vgl9 ZLkcVku	0	\N	\N
1376	Antatmece	roymadhumanti_r@ymail.com	89039777773	No need to worry about the future if your use this financial robot. http://go.suqomuaq.com/0j35	0	\N	\N
1377	Antatmece	carlos21453@yahoo.com	89032292367	Try out the best financial robot in the Internet. http://go.suqomuaq.com/0j35	0	\N	\N
1378	Antatmece	truong16881688@netzero.net	89039802387	Robot is the best way for everyone who looks for financial independence. http://go.suqomuaq.com/0j35	0	\N	\N
1379	Antatmece	allardtiffany@yahoo.com	89039442491	No need to worry about the future if your use this financial robot. http://go.suqomuaq.com/0j35	0	\N	\N
1380	Catherinaea	catherinaea@crosenoutinabsi.tk	+420 2168200025	Ηеllо!\r\nPerhaрs mу meѕѕаgе is toо ѕpесіfiс.\r\nВut my оlder siѕter found a wоndеrful man hеre аnd theу havе a great rеlatiоnѕhiр, but what аbоut me?\r\nΙ аm 26 yearѕ оld, Cathеrіnа, from thе Сzесh Reрublic, know Εnglіsh language alѕо\r\nАnd... bеttеr to saу it immediatеlу. I am biѕеxual. I am not ϳеalоus оf anоthеr woman... eѕpeсіаllу іf we mаke lovе togеthеr.\r\nAh yeѕ, I coоk vеry tastyǃ and I lоvе nоt оnlу сооk ;))\r\nΙm rеаl girl and lооkіng fоr ѕеriouѕ and hоt relаtіonѕhiр...\r\nΑnywaу, уоu сan fіnd mу рrofіle here: http://insioplasac.tk/topic-16671/	0	\N	\N
1381	Antatmece	verlaj@hotmail.com	89036362088	Online Bot will bring you wealth and satisfaction. http://go.suqomuaq.com/0j35	0	\N	\N
1382	Antatmece	acid-kisses.69@hotmail.com	89033808937	Start making thousands of dollars every week just using this robot. http://go.suqomuaq.com/0j35	0	\N	\N
1383	Antatmece	mlinane@comcast.net	89037286803	The huge income without investments is available. http://go.suqomuaq.com/0j35	0	\N	\N
1384	Antatmece	riener_reinhold@hotmail.com	89039326874	Wow! This Robot is a great start for an online career. http://go.suqomuaq.com/0j35	0	\N	\N
1385	Antatmece	Rowdi55@aol.com	89038233451	The huge income without investments is available, now! http://go.suqomuaq.com/0j35	0	\N	\N
1386	Antatmece	kcamp1@vzw.blackberry.net	89032634970	Make your computer to be you earning instrument. http://go.suqomuaq.com/0j35	0	\N	\N
1387	Antatmece	esp2325@aol.com	89038050244	The financial Robot is your future wealth and independence. http://go.suqomuaq.com/0j35	0	\N	\N
1388	Antatmece	smallbear2@hotmail.com	89030585887	Everyone who needs money should try this Robot out. http://go.suqomuaq.com/0j35	0	\N	\N
1389	Antatmece	fausto_cuellar@hotmail.com	89035966009	Robot is the best way for everyone who looks for financial independence. http://go.suqomuaq.com/0j35	0	\N	\N
1390	Antatmece	apps.feedback@gmail.com	89038373399	Everyone who needs money should try this Robot out. http://go.suqomuaq.com/0j35	0	\N	\N
1391	Antatmece	erin@worcestercountywildcats.com	89032507520	Robot never sleeps. It makes money for you 24/7. http://go.suqomuaq.com/0j35	0	\N	\N
1392	Antatmece	arrie.boyd@yahoo.com	89030633043	No need to stay awake all night long to earn money. Launch the robot. http://go.suqomuaq.com/0j35	0	\N	\N
1393	Carpfield	carpfield.partners@gmail.com	87927319342	Meet Investors | Find your first investor - Get Funds For Your Business \r\nFollow the link https://www.carpfield.business/#start to apply. \r\nCarpfield is a new way for startups to Approach Potential Investors. Your new way to prepare for fundraising through \r\nOur AI-powered auto-matching system. https://carpfield.com/	0	\N	\N
1394	Mike Keat	no-replyItelcoth@gmail.com	83999261275	If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Keat\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/	0	\N	\N
1395	Mike Wesley	no-replyItelcoth@gmail.com	86768513973	Howdy \r\n \r\nI have just verified your SEO on  10bucksonly.co.za for  the current search visibility and saw that your website could use a boost. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Wesley\r\n \r\n \r\nPS: Quality SEO content is included	0	\N	\N
1396	Mike Mansfield	no-replyItelcoth@gmail.com	83146314733	Hi there \r\n \r\nJust checked your 10bucksonly.co.za in MOZ and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed Domain Authority score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Semrush DA is now possible \r\nhttps://www.monkeydigital.co/semrush-da/ \r\n \r\nThanks and regards \r\nMike Mansfield	0	\N	\N
1397	WilliamStaRt	no.reply.geark@gmail.com	89487693916	Hi!  10bucksonly.co.za \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd rеquеst uttеrly lеgit? \r\nWе tеndеr а nеw uniquе wаy оf sеnding mеssаgе thrоugh соntасt fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh businеss prоpоsаls аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh fееdbасk Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 59 USD. \r\n \r\nThis lеttеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype  live:contactform_18 \r\nWhatsApp - +375259112693 \r\nWe only use chat.	0	\N	\N
1398	RichardDon	rachels1@cbemail.ca	85941531796	$$$$$$$ CLAIM $24754 NOW https://telegra.ph/You-have-won-24754---claim-it-now-01-13-30504 $$$$$$$	0	\N	\N
1399	Raymond	s1.thecctvpro@gmail.com	89518645132	Dear Sir/mdm, \r\nHope you are doing well \r\nWe supply 4G solar cameras, explosion-proof cameras and underwater cameras for commercial use. Use of applications: ships, construction sites, oil rigs and nuclear reactor etc.. \r\nDo contact us for any enquiries and visit our website below \r\nWe also have nitrile gloves if you need some \r\nWhatsapp: +65 87695655 \r\nEmail: sales@thecctvpro.com \r\nW: https://www.thecctvpro.com/ \r\nIf you wish to unsubscribe, do reply to our email. \r\nregards, \r\nRaymond	0	\N	\N
1400	Dr. A Breiner	drabreiner@gmail.com	84262614155	Greetings \r\n \r\nI urgently need suppliers and major business partners to work with. CLJ Bio-Pharmaceutical needs a reliable and trusted business partner to supply us with a consistent extract from the United Kingdom. I shall explain in detail if I get a positive response from you in this regard. kindly respond to my official  Email: info@drbreiner.com \r\n \r\nYours Faithfully \r\nFull Name:  Dr. A Breiner \r\nCLJ Pharmaceuticals \r\n \r\n \r\nDisclaimer Notice: Information contained in this email is confidential & intended for the address only. Any dissemination, distribution, copying, or use of this communication without prior permission from the address is strictly prohibited. If you are not the intended recipient of this communication, please delete it permanently without copying, disclosing, or otherwise using its contents, and notify CLJ BIO PHARMA immediately.	0	\N	\N
1401	Mike Youmans	no-replyItelcoth@gmail.com	84572558477	Hi there \r\n \r\nI Just checked your 10bucksonly.co.za ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Youmans	0	\N	\N
1402	Catherinahab	catherinahab@mondmema.tk	+40 2754902912	Ηеlloǃ\r\nΙ арologizе for thе ovеrlу ѕреcіfіc mеsѕаgе.\r\nMу gіrlfrіend and Ι love eасh оthеr. And we аrе all grеаt.\r\nΒut... wе need а man.\r\nWе are 23 уears old, frоm Romаnіa, wе alѕо know еnglіѕh.\r\nԜe nеver get borеd! Аnd nоt only іn talk...\r\nMy nаmе is Саtherina, mу prоfіlе іs herе: http://ziestulat.tk/item-56691/	0	\N	\N
1403	James Osei	jamesosei1@gmx.com	88944699226	Hello, \r\n \r\nHappy New Year , \r\n \r\nI am the Auditing Director in the Bank of Ghana which is the Apex Bank of Ghana; I direct the auditing of accounting and financial data of various departments within the Bank of Ghana. During the Bank independent examination of financial information, I found out about this dormant account containing a contract balance fund $8.9 Million Dollars, The funds $8.9 Million dollars belongs to Late American Contractor Late Timothy Truax , he executed LNG pipeline contract for Ghana Petroleum commission , i will Tell you how the funds will be transferred to your bank account legitimately immediately i receive your response indicating your readiness to receive the funds and i want 50% of the funds after it is transferred to your bank account nominated by you. \r\nReply to private email address : jamesosei@gmx.com \r\n \r\nWarm Regards \r\nJames Osei	0	\N	\N
1404	Mike Macduff	no-replyItelcoth@gmail.com	82638685131	Hi \r\n \r\nThis is Mike Macduff\r\n \r\nLet me introduce to you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Macduff\r\n \r\nmike@strictlydigital.net	0	\N	\N
1406	Mike Chesterton	no-replyItelcoth@gmail.com	84416977777	If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Chesterton\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/	0	\N	\N
1407	Mike Abramson	no-replyItelcoth@gmail.com	83529792728	Howdy \r\n \r\nI have just analyzed  10bucksonly.co.za for the ranking keywords and saw that your website could use an upgrade. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our services below, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Abramson\r\n \r\n \r\nPS: Quality SEO content is included	0	\N	\N
1408	Mike Blomfield	no-replyItelcoth@gmail.com	86923312375	Hi there \r\n \r\nJust checked your 10bucksonly.co.za in MOZ and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed Domain Authority score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Semrush DA is now possible \r\nhttps://www.monkeydigital.co/semrush-da/ \r\n \r\nThanks and regards \r\nMike Blomfield	0	\N	\N
1409	Lix	6p1lmq3l@icloud.com	81559951511	Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/2eww9jh7	0	\N	\N
1410	Lix	si6ad7y7@hotmail.com	81979479139	Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/2zb34ske	0	\N	\N
1411	Mike Walker	no-replyItelcoth@gmail.com	81374498575	Hi there \r\n \r\nI Just checked your 10bucksonly.co.za ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Walker	0	\N	\N
1412	Lix	0a8jcnkb@hotmail.com	89375757846	Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/2htsaadn	0	\N	\N
1413	Lix	9d2uu8x1@hotmail.com	85439291784	Hi, this is Irina. I am sending you my intimate photos as I promised. https://tinyurl.com/2gt9e24o	0	\N	\N
1414	Lix	s9gb2pp7@yahoo.com	89663618887	Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/2guq5b46	0	\N	\N
1415	Lix	iwv12a1z@yahoo.com	87773229167	Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/2nkpgagk	0	\N	\N
1416	Mike Nathan	no-replyItelcoth@gmail.com	81798419441	Hello \r\n \r\nThis is Mike Nathan\r\n \r\nLet me present you our latest research results from our constant SEO feedbacks that we have from our plans: \r\n \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nThe new Semrush Backlinks, which will make your 10bucksonly.co.za SEO trend have an immediate push. \r\nThe method is actually very simple, we are building links from domains that have a high number of keywords ranking for them.  \r\n \r\nForget about the SEO metrics or any other factors that so many tools try to teach you that is good. The most valuable link is the one that comes from a website that has a healthy trend and lots of ranking keywords. \r\nWe thought about that, so we have built this plan for you \r\n \r\nCheck in detail here: \r\nhttps://www.strictlydigital.net/product/semrush-backlinks/ \r\n \r\nCheap and effective \r\n \r\nTry it anytime soon \r\n \r\n \r\nRegards \r\n \r\nMike Nathan\r\n \r\nmike@strictlydigital.net	0	\N	\N
1417	Robertriz	michaelrp62@gmail.com	87741835192	Hi. I'm reaching out to see whether you’ve applied for the covid-related Employee Retention Tax Credit? This credit is worth up to $26k per employee, and you *can* qualify for both this and PPP (the rules changed Nov 2021).  We can help you maximize this credit and have already done this for more than 250 businesses. All our work is free until you receive a refund. Give us a call at 888-479-6055 or email hello@refundspro.com for more info.	0	\N	\N
1418	CecilLouff	huangfu0227@163.com	81699663511	Dear Sir/Madam, \r\nAre you interested in hyperbaric oxygen chambers(HBOT)? \r\nWe are the company specializing in manufacturing hyperbaric oxygen chambers. \r\nWe have hyperbaric oxygen chamber from soft and hard type, soft sitting type, to PET type. \r\nIf you are interested, please reply and I will send you the detailed catalog immediately. \r\nOur website: https://hyperbaricoxy.com/ \r\nmy email:jason@oxybuyzeh.com,whatsapp:0086 13925259869. \r\nThank you.	0	\N	\N
1419	HarryHom	jackholman36@gmail.com	81859187845	We are a Team of IT Experts specialized in the production of authentic Documents and Counterfeit bank notes. We work with government officials, professors and professional hackers from China, US, Russia, Taiwan etc. All these documents are registered into the Government database. Documents such as Passport, Visa's, Driving License, Covid19 Vaccine Card, University Certificates, PMP etc. We also have Canadian dollars, US dollars, pounds and euros. We also have our money in categories, Grade A quality that works at ATMs and bypasses the fake money detector and we also have the normal stage money that was used in jokes, commercials, music and movie videos. Bank account and routing numbers, Employee login credentials and other personally identifiable information \r\nFullz” datasets – complete profiles of information used to commit identity theft. Hacking service available. \r\nFacebook Hacking \r\nSocial media Hacking \r\nHacking Banks \r\nDark web and Deep web service \r\nWhatsApp..... +44 7459 530545 \r\nEmail Address.... jameskinds65@gmail.com \r\nTelegram ID..... @Jameskind65	0	\N	\N
1420	Lix	oix0qszj@gmail.com	88379431915	Hi, this is Jeniffer. I am sending you my intimate photos as I promised. https://tinyurl.com/2frzajbu	0	\N	\N
1421	Samuelwaift	faforon3@gmail.com	82425149384	Terminate Deadly illness wíthout huge hospital bills or surgery with the FAFORON Stem Cell Curative supplement now. \r\nhttps://healthmart.com.ng/faforlife-products/	0	\N	\N
1422	Mike Bush	no-replyItelcoth@gmail.com	82356365642	If you have a local business and want to rank it on google maps in a specific area then this service is for you. \r\n \r\nGoogle Map Stacking is one of the best ways to rank your GMB in a specific mile radius. \r\n \r\nMore info: \r\nhttps://www.speed-seo.net/product/google-maps-pointers/ \r\n \r\nThanks and Regards \r\nMike Bush\r\n \r\n \r\nPS: Want an all in one Local Plan that includes everything? \r\nhttps://www.speed-seo.net/product/local-seo-package/	0	\N	\N
1423	Lix	tf2072ur@icloud.com	85427145597	Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/2z3ast46	0	\N	\N
1424	Mike Nyman	no-replyItelcoth@gmail.com	89628364739	Hi there \r\n \r\nJust checked your 10bucksonly.co.za in MOZ and saw that you could use an authority boost. \r\n \r\nWith our service you will get a guaranteed Domain Authority score within just 3 months time. This will increase the organic visibility and strengthen your website authority, thus getting it stronger against G updates as well. \r\n \r\nFor more information, please check our offers \r\nhttps://www.monkeydigital.co/domain-authority-plan/ \r\n \r\nNEW: Semrush DA is now possible \r\nhttps://www.monkeydigital.co/semrush-da/ \r\n \r\nThanks and regards \r\nMike Nyman	0	\N	\N
1425	ArnoldKat	no.reply.MilanHoffmann@gmail.com	86916966734	Hey there! 10bucksonly.co.za \r\n \r\nDid you know that it is possible to send letter utterly lawful? \r\nWe propose a new legal method of sending letter through feedback forms. Such forms are located on many sites. \r\nWhen such commercial offers are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals. \r\nalso, messages sent through communication Forms do not get into spam because such messages are considered important. \r\nWe offer you to test our service for free. We will send up to 50,000 messages for you. \r\n \r\nThe cost of sending one million messages is $59. \r\n \r\nThis message was automatically generated. \r\nPlease use the contact details below to get in touch with us. \r\n \r\nContact us. \r\nTelegram - @FeedbackFormEU \r\nSkype  live:feedbackform2019 \r\nWhatsApp - +375259112693 \r\nWe only use chat for communication.	0	\N	\N
1426	Lix	066fjg5n@icloud.com	83754926145	Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/2he4s7za	0	\N	\N
1427	Mike Wilson	no-replyItelcoth@gmail.com	84177357752	Hello \r\n \r\nI have just analyzed  10bucksonly.co.za for its SEO metrics and saw that your website could use a push. \r\n \r\nWe will increase your SEO metrics and ranks organically and safely, using only whitehat methods, while providing monthly reports and outstanding support. \r\n \r\nPlease check our plans here, we offer SEO at cheap rates. \r\nhttps://www.hilkom-digital.de/cheap-seo-packages/ \r\n \r\nRegards \r\nMike Wilson\r\n \r\n \r\nPS: Quality SEO content is included	0	\N	\N
1428	Lix	lrg6f766@yahoo.com	85654643863	Hi, this is Jenny. I am sending you my intimate photos as I promised. https://tinyurl.com/2qkrvbfw	0	\N	\N
1429	Mike Hailey	no-replyItelcoth@gmail.com	82141553315	Hi there \r\n \r\nI Just checked your 10bucksonly.co.za ranks and saw that your site is trending down for some time. \r\n \r\nIf you are looking for a trend reversal, we have the right solution for you \r\n \r\nWe are offering affordable Content Marketing plans with humanly written SEO content \r\n \r\nFor more information, please check our offers \r\nhttps://www.digital-x-press.com/product/content-marketing/ \r\n \r\nThanks and regards \r\nMike Hailey	0	\N	\N
1430	Lix	8631j4dv@hotmail.com	88439394423	Hi, this is Julia. I am sending you my intimate photos as I promised. https://tinyurl.com/2embkh4a	0	\N	\N
1431	Lunanib	lunanib@nastassiawinge.com	8859919712	Hеllо!\r\nMy mеsѕage іѕ tоo ѕрecіfic (іt's better tо saу right аwаy).\r\nI lovе girlѕ, especiallу bаd оnеs\r\nΙ аm 28 уеаrѕ old, Luna\r\nI'm loоkіng for а ѕеrious and hot relatіоnѕhір...\r\nΑnyway, mу prоfіle іѕ hеrе: http://lunetnicegeabby.tk/idn-40096/	0	\N	\N
\.


--
-- Data for Name: countries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.countries (url_index, created_at, updated_at, country_status, id, iso_code, alpha_code, country_isd_code) FROM stdin;
moroco	2017-03-04 12:12:49	2017-03-22 12:46:45	0	58	689	mo	212
iraq	2017-03-04 12:10:43	2017-03-22 12:46:55	0	57	688	iq	964
baharain	2017-03-04 12:07:16	2017-03-22 12:47:19	0	54	685	BH	973
united-arab-emirates	2017-03-04 12:06:57	2017-03-22 12:47:25	0	53	684	UA	971
qatar	2017-03-04 12:06:31	2017-03-22 12:47:35	0	52	683	QA	974
jordan	2017-04-13 14:12:47	2017-05-27 08:21:21	0	62	587	JD	58
syria	2017-04-13 14:07:37	2017-05-27 08:21:24	0	60	586	SY	586
somalia	2017-06-01 13:46:13	2017-06-01 13:46:13	1	63	252	SO	252
wa	2017-07-04 12:11:57	2017-07-04 12:11:57	1	67	43	gf	345
ireland	2017-08-07 19:39:30	2017-08-13 18:45:19	1	69	353	IE	98
saudi-arabia	2017-02-15 15:30:30	2017-10-17 17:17:29	1	47	682	SA	966
bangladesh	2017-11-16 14:41:14	2017-11-16 14:41:14	1	71	50	BD	880
viet-nam	2017-11-24 14:18:19	2017-11-24 14:19:59	1	72	84	VN	+84
bahrain	2018-01-12 12:31:24	2018-01-12 12:31:24	1	73	356	BH	+96
south-africa	2018-01-30 15:28:55	2018-01-30 15:28:55	1	74	27	SA	27
iran	2018-02-06 15:22:42	2018-02-06 15:22:42	1	75	98	IR	98
australia	2018-02-28 13:40:08	2018-02-28 13:40:08	1	76	+61	AU	61
kuwait	2017-03-04 12:09:33	2018-04-26 13:38:17	1	56	687	ku	965
united-kingdom	2018-05-19 23:14:49	2018-05-19 23:16:22	1	77	123	UK	44
england	2018-05-24 16:35:50	2018-05-24 16:35:50	1	78	316	En	44
saudi-arabiaa	2017-10-17 17:14:15	2018-07-06 14:47:04	1	70	96	SA	966
turkey	2018-07-16 22:05:21	2018-07-16 22:05:21	1	80	365	TR	+90
sri-lanka	2018-08-21 17:55:12	2018-08-21 17:57:08	1	86	144	LK	144
denmark	2018-08-21 17:10:41	2018-08-21 17:57:19	1	85	208	DK	208
oman	2017-03-04 12:08:59	2019-05-27 12:50:45	1	55	518	OM	968
italy	2018-08-21 17:58:46	2019-08-29 17:23:42	1	87	380	IT	380
uganda	2021-03-11 20:32:03	2021-03-11 20:32:03	1	250	356	UA	89
canada	2021-03-13 10:15:15	2021-03-13 10:15:15	1	260	124	CA	+1
india	2017-03-30 21:37:02	2021-03-13 10:17:13	1	59	356	IN	+91
sri-lanka	2021-03-13 10:21:34	2021-03-13 10:21:34	1	261	144	LK	+94
singapore	2021-03-13 10:24:00	2021-03-13 10:24:00	1	262	702	SG	+65
pakistan	2018-08-07 00:51:01	2021-03-13 10:26:08	1	81	586	PK	+92
france	2021-03-13 11:55:15	2021-03-13 11:55:15	1	263	250	FR	+33
united-states-of-america	2021-03-13 11:57:32	2021-03-13 11:57:32	1	264	840	US	+1
germany	2021-03-13 12:04:44	2021-03-13 12:04:44	1	265	276	DE	+49
somalias	2021-03-16 18:08:25	2021-03-16 18:10:02	1	266	455	SA	+2
somalia-ty	2021-03-17 18:41:35	2021-03-17 18:41:35	1	267	356	SO	88
\.


--
-- Data for Name: countries_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.countries_infos (id, country_name, language_id, info_id) FROM stdin;
55	Oman	1	250
58	Moroco	1	251
57	Iraq	1	252
54	Baharain	1	253
53	United Arab Emirates	1	254
62	Jordan	1	255
60	Syria	1	256
63	Somalia	1	257
67	WA	1	258
69	Ireland 	1	259
47	Saudi Arabia	1	260
71	Bangladesh	1	261
72	Viet Nam	1	262
73	Bahrain 	1	263
74	South Africa	1	264
75	Iran	1	265
76	Australia	1	266
56	Kuwait	1	268
77	United Kingdom	1	269
78	England	1	270
70	Saudi Arabiaa	1	271
80	Turkey	1	272
86	Sri Lanka\t	1	275
85	Denmark	1	276
87	Italy	1	277
260	Canada	1	280
59	India	1	281
261	Sri Lanka	1	282
262	Singapore	1	283
81	Pakistan	1	285
263	France	1	286
264	United States of America	1	287
265	Germany	1	288
266	Somalias	1	291
267	somalia ty	1	292
\.


--
-- Data for Name: coupons; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.coupons (id, coupon_code, offer_type, coupon_value, user_limit, coupon_limit, coupon_image, offer_amount, offer_percentage, category_id, start_date, end_date, created_by, created_date, modified_date, active_status, coupon_status, vendor, minimum_order_amount, description_text_status) FROM stdin;
\.


--
-- Data for Name: currencies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.currencies (id, currency_name, currency_code, currency_symbol_left, active_status, default_status, created_date, currency_symbol_right, numeric_iso_code, decimal_values, exchange_rate, currency_symbol) FROM stdin;
7	South African Rand\t	R	R  	A	1	2016-07-29	R  	840	2	67.03	R    
\.


--
-- Data for Name: donations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.donations (id, program_id, organisation_id, donated_amount, user_id, transaction_id, payment_type, payment_status, donated_at, reference_id, updated_at, created_at, status_message, donate_key, coupon_id, invoice_id, "donation_18A", remain_anonymous, payment_response, donated_on_religious) FROM stdin;
686	90	230	100	307	\N	\N	2	2021-08-16 17:48:18	pay_20880877	2021-08-16 17:48:18	2021-08-16 17:48:18	Pending	#DONA686	0	INV000006861629128898	18A_DONA686	0	\N	\N
690	84	232	10	234	\N	\N	2	2022-11-13 12:29:38	pay_1668342578550	2022-11-13 12:29:38	2022-11-13 12:29:38	Pending	#DONA690	0	INV000006901668342578	18A_DONA690	0	\N	0
687	80	228	555	224	\N	\N	2	2021-10-20 13:00:42	pay_7538835	2021-10-20 13:00:42	2021-10-20 13:00:42	Pending	#DONA687	0	INV000006871634734842	18A_DONA687	0	\N	0
691	84	232	10	261	\N	\N	2	2023-03-04 21:13:08	pay_1677964386866	2023-03-04 21:13:08	2023-03-04 21:13:08	Pending	#DONA691	0	INV000006911677964388	18A_DONA691	0	\N	0
688	81	228	100	308	\N	\N	2	2021-10-26 19:50:53	pay_988478033	2021-10-26 19:50:53	2021-10-26 19:50:53	Pending	#DONA688	0	INV000006881635270653	18A_DONA688	0	\N	\N
689	81	228	100	308	\N	\N	2	2021-10-26 19:51:59	pay_117757458	2021-10-26 19:51:59	2021-10-26 19:51:59	Pending	#DONA689	0	INV000006891635270719	18A_DONA689	0	\N	\N
\.


--
-- Data for Name: email_notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.email_notifications (created_at, email, group_email_notification, name, updated_at, user_id, id) FROM stdin;
2021-05-12 09:38:22	karthick@getnada.com	9	Karthick	2021-05-12 09:38:22	113	9
2021-05-12 09:38:22	testdonor@getnada.com	9	Test Donor	2021-05-12 09:38:22	282	10
2021-05-12 13:03:41	karthick@getnada.com	10	Karthick	2021-05-12 13:03:41	113	11
2021-05-12 13:17:08	hshyyyys@gmail.com	11	ggg	2021-05-12 13:17:08	87	12
2021-05-12 13:17:08	linyca@getnada.com	11	Garry_Schulist41	2021-05-12 13:17:08	294	13
2021-05-12 13:17:08	kavya@mailinator.com	11	kavya	2021-05-12 13:17:08	71	14
2021-05-12 13:17:08	i@h.com	11	tamed	2021-05-12 13:17:08	273	15
2021-05-12 13:17:08	ramf@getnada.com	11	Ramesh	2021-05-12 13:17:08	272	16
2021-05-12 13:17:08	zunaid.floris@emotionstudios.co.za	11	zunaid final test	2021-05-12 13:17:08	258	17
2021-05-12 13:17:08	zunaid@connectivdigital.co.za	11	zunaid 	2021-05-12 13:17:08	170	18
2021-05-12 13:17:08	test@zetmal.com	11	hshsgs	2021-05-12 13:17:08	192	19
2021-05-12 13:17:08	zunaid@connectivdigital.com	11	zunaid 	2021-05-12 13:17:08	169	20
2021-05-12 13:17:08	kkkk@mailinator.com	11	Ramesh Kolla	2021-05-12 13:17:08	299	21
2021-05-12 13:17:08	tuv@getnada.com	11	ganesh Kolla	2021-05-12 13:17:08	276	22
2021-05-12 13:17:08	kavin2@getnada.com	11	Kavin	2021-05-12 13:17:08	92	23
2021-05-12 13:17:08	asddada@getnada.com	11	Test User	2021-05-12 13:17:08	69	24
2021-05-12 13:17:08	ramesh.k@nextbraintech.com	11	k	2021-05-12 13:17:08	180	25
2021-05-12 13:17:08	rameshkolla@getnada.com	11	Ramesh	2021-05-12 13:17:08	262	26
2021-05-12 13:17:08	user1001@mailinator.com	11	Rohan	2021-05-12 13:17:08	292	27
2021-05-12 13:17:08	jybureva@getnada.com	11	Test	2021-05-12 13:17:08	114	28
2021-05-12 13:17:08	chandrika@getnada.com	11	Ramesh babu	2021-05-12 13:17:08	115	29
2021-05-12 13:17:08	user@gmail.com	11	R	2021-05-12 13:17:08	236	30
2021-05-12 13:17:08	testdev@getnada.com	11	Test	2021-05-12 13:17:08	238	31
2021-05-12 13:17:08	bucks@mailinator.com	11	new	2021-05-12 13:17:08	271	32
2021-05-12 13:17:08	testusera@getnada.com	11	seetha	2021-05-12 13:17:08	22	33
2021-05-12 13:17:08	bahgfd@gmail.com	11	Test	2021-05-12 13:17:08	59	34
2021-05-12 13:17:08	ganeshios@getnada.com	11	Ganesh iOS 	2021-05-12 13:17:08	197	35
2021-05-12 13:17:08	krishnakumar.dvn@gmail.com	11	Krishnakumar Devendiran	2021-05-12 13:17:08	289	36
2021-05-12 13:17:08	ios@getnada.com	11	ioo	2021-05-12 13:17:08	98	37
2021-05-12 13:17:08	testdonor@getnada.com	11	Test Donor	2021-05-12 13:17:08	282	38
2021-05-12 13:17:08	testusersd@getnada.com	11	Test ramesh	2021-05-12 13:17:08	173	39
2021-05-12 13:17:08	dkrishnakumar@mailinator.com	11	krishna	2021-05-12 13:17:08	200	40
2021-05-12 13:17:08	rams@mailinator.com	11	Rabada h	2021-05-12 13:17:08	269	41
2021-05-12 13:17:08	usersss@getnada.com	11	usersss	2021-05-12 13:17:08	73	42
2021-05-12 13:17:08	rohan@getnada.com	11	rohan	2021-05-12 13:17:08	103	43
2021-05-12 13:17:08	seet46@getnada.com	11	seetha	2021-05-12 13:17:08	11	44
2021-05-12 13:17:08	pganeshkumarece@gmail.com	11	ganesh	2021-05-12 13:17:08	44	45
2021-05-12 13:17:08	reza@accountingedge.co.za	11	Reza Amra	2021-05-12 13:17:08	261	46
2021-05-12 13:17:08	dummy@getnada.com	11	Test	2021-05-12 13:17:08	161	47
2021-05-12 13:17:08	pp@getnada.com	11	Ramesh	2021-05-12 13:17:08	239	48
2021-05-12 13:17:08	ll@getnada.com	11	ramesh kolla	2021-05-12 13:17:08	88	49
2021-05-12 13:17:08	testbucks@getnada.com	11	test	2021-05-12 13:17:08	188	50
2021-05-12 13:17:08	iosdev17@getnada.com	11	ios_dev	2021-05-12 13:17:08	40	51
2021-05-12 13:17:08	karthick@getnada.com	11	Karthick	2021-05-12 13:17:08	113	52
2021-05-12 13:17:08	mischym@yahoo.com	11	misch mayet	2021-05-12 13:17:08	257	53
2021-05-12 13:17:08	ttt@mailinator.com	11	Ramesh Kolla	2021-05-12 13:17:08	286	54
2021-05-12 13:17:08	ff@getnada.com	11	ramesh	2021-05-12 13:17:08	240	55
2021-05-12 13:17:08	kalai.kds@gmail.com	11	kalai	2021-05-12 13:17:08	43	56
2021-05-12 13:17:08	rajinirgowda20@gmail.com	11	Rajini	2021-05-12 13:17:08	279	57
2021-05-12 13:17:08	busylub@zetmail.com	11	Test	2021-05-12 13:17:08	214	58
2021-05-12 13:17:08	seetha456@getnada.com	11	seetha	2021-05-12 13:17:08	9	59
2021-05-12 13:17:08	saran@nextbraintech.com	11	Saranraj	2021-05-12 13:17:08	202	60
2021-05-12 13:17:08	iosdev@getnada.com	11	iosdev	2021-05-12 13:17:08	196	61
2021-05-12 13:17:08	rajinigowda@mail.com	11	Rajini Gowda	2021-05-12 13:17:08	291	62
2021-05-12 13:17:08	siokk@getnada.com	11	seetha	2021-05-12 13:17:08	15	63
2021-05-12 13:17:08	hj@getnada.com	11	rfff	2021-05-12 13:17:08	79	64
2021-05-12 13:17:08	zamavi@getnada.com	11	Test	2021-05-12 13:17:08	210	65
2021-05-12 13:17:08	vino2@mailinator.com	11	vino	2021-05-12 13:17:08	26	66
2021-05-12 13:17:08	kannan97@getnada.com	11	Kannan	2021-05-12 13:17:08	187	67
2021-05-12 13:17:08	janu@getnada.com	11	yashu 	2021-05-12 13:17:08	72	68
2021-05-12 13:17:08	rkhan@tpcsa.co.za	11	Ridhwaan	2021-05-12 13:17:08	281	69
2021-05-12 13:17:08	testuser@getnada.com	11	seetha	2021-05-12 13:17:08	19	70
2021-05-12 13:17:08	preethi.s@nextbraint.com	11	preethi	2021-05-12 13:17:08	232	71
2021-05-12 13:17:08	turyto@dropjar.com	11	turyto	2021-05-12 13:17:08	77	72
2021-05-12 13:17:08	tivicykof@getnada.com	11	Test From Mobile	2021-05-12 13:17:08	259	73
2021-05-12 13:17:08	rrr@getnada.com	11	Ramesh	2021-05-12 13:17:08	172	74
2021-05-12 13:17:08	vino3@mailinator.com	11	vino	2021-05-12 13:17:08	30	75
2021-05-12 13:17:08	users@getnada.com	11	seetha	2021-05-12 13:17:08	21	76
2021-05-12 13:17:08	rajinigowda20@mailtest.com	11	Rajini	2021-05-12 13:17:08	288	77
2021-05-12 13:17:08	seethalakshmi.da@gmail.com	11	seetha	2021-05-12 13:17:08	3	78
2021-05-12 13:17:08	siokuuuk@getnada.com	11	seetha	2021-05-12 13:17:08	17	79
2021-05-12 13:17:08	kokilaben@getnada.com	11	Kokila Ben	2021-05-12 13:17:08	198	80
2021-05-12 13:17:08	krishna1@mailinator.com	11	Krishnakumar	2021-05-12 13:17:08	212	81
2021-05-12 13:17:08	usertesthh@getnada.com	11	user	2021-05-12 13:17:08	37	82
2021-05-12 13:17:08	vino123@mailinator.com	11	vino	2021-05-12 13:17:08	28	83
2021-05-12 13:17:08	lylolit@getnada.com	11	Test	2021-05-12 13:17:08	242	84
2021-05-12 13:17:08	rajesh@getnada.com	11	Sasi k	2021-05-12 13:17:08	251	85
2021-05-12 13:17:08	hahusec@getnada.com	11	Test	2021-05-12 13:17:08	249	86
2021-05-12 13:17:08	rrr@getnada.vom	11	Ramesh	2021-05-12 13:17:08	171	87
2021-05-12 13:17:08	gydisat@getnada.com	11	Test	2021-05-12 13:17:08	255	88
2021-05-12 13:17:08	w2wqqqq@gmail.com	11	Test	2021-05-12 13:17:08	56	89
2021-05-12 13:17:08	kavin1@getnada.com	11	Kavin	2021-05-12 13:17:08	91	90
2021-05-12 13:17:08	vopizur@getnada.com	11	Harold	2021-05-12 13:17:08	296	91
2021-05-12 13:17:08	rajinitest@mail.com	11		2021-05-12 13:17:08	283	92
2021-05-12 13:17:08	usersssa@getnada.com	11	usersssa	2021-05-12 13:17:08	74	93
2021-05-12 13:17:08	vino12345@mailinator.com	11	vino	2021-05-12 13:17:08	29	94
2021-05-12 13:17:08	ayauu@gmail.com	11	Test	2021-05-12 13:17:08	54	95
2021-05-12 13:17:08	seetha@getnada.com	11	seetha	2021-05-12 13:17:08	4	96
2021-05-12 13:17:08	vino@getnada.com	11	Vino	2021-05-12 13:17:08	34	97
2021-05-12 13:17:08	testios@getnada.com	11	Test	2021-05-12 13:17:08	205	98
2021-05-12 13:17:08	rajini.r39@gmail.com	11	RajiniGR	2021-05-12 13:17:08	245	99
2021-05-12 13:17:08	seshgw@getnada.com	11	Test	2021-05-12 13:17:08	67	100
2021-05-12 13:17:08	rajini.g@nextbraintech.com	11	Rajini	2021-05-12 13:17:08	201	101
2021-05-12 13:17:08	c3@getnada.com	11	Sravya Kolla	2021-05-12 13:17:08	63	102
2021-05-12 13:17:08	kavin@getnada.com	11	Kavin	2021-05-12 13:17:08	90	103
2021-05-12 13:17:08	seet456@getnada.com	11	seetha	2021-05-12 13:17:08	10	104
2021-05-12 13:17:08	usertests@getnada.com	11	Test User	2021-05-12 13:17:08	105	105
2021-05-12 13:17:08	mohan@getnada.com	11	ganeshios	2021-05-12 13:17:08	35	106
2021-05-12 13:17:08	seetha.s@nextbraintech.com	11		2021-05-12 13:17:08	216	107
2021-05-12 13:17:08	vecydu@getnada.com	11	Alice_Jenkins	2021-05-12 13:17:08	295	108
2021-05-12 13:17:08	krishna2@mailinator.com	11	krishna	2021-05-12 13:17:08	213	109
2021-05-12 13:17:08	pganeshkumarece@gmail.com	11	ganesh kumar	2021-05-12 13:17:08	220	110
2021-05-12 13:17:08	u@g.com	11	gg	2021-05-12 13:17:08	274	111
2021-05-12 13:17:08	hdjddbbd@gmail.com	11	bdhdhd	2021-05-12 13:17:08	39	112
2021-05-12 13:17:08	zunaidfloris@gmail.com	11	zunaid 	2021-05-12 13:17:08	168	113
2021-05-12 13:17:08	pganeshkumarece@gmail.com	11	ganesh kumar	2021-05-12 13:17:08	223	114
2021-05-12 13:17:08	kavin@mailnator.com	11	Kavin	2021-05-12 13:17:08	93	115
2021-05-12 13:17:08	gkvc@gmail.com	11	gkvg	2021-05-12 13:17:08	241	116
2021-05-12 13:17:08	mohans@getnada.com	11	bzhdb	2021-05-12 13:17:08	36	117
2021-05-12 13:17:08	roh@getnada.com	11	rasi k	2021-05-12 13:17:08	252	118
2021-05-12 13:17:08	vino5@mailinator.com	11	Vino	2021-05-12 13:17:08	31	119
2021-05-12 13:17:08	rajinigowda@mailtest.com	11	Rajini	2021-05-12 13:17:08	287	120
2021-05-12 13:17:08	pganeshkumarece@gmail.com	11	ganesh kumar	2021-05-12 13:17:08	221	121
2021-05-12 13:17:08	op@getnada.com	11	Ramesh	2021-05-12 13:17:08	285	122
2021-05-12 13:17:08	test12@test.com	11	Test	2021-05-12 13:17:08	50	123
2021-05-12 13:17:08	rameshn@getnada.com	11	Ramesh	2021-05-12 13:17:08	253	124
2021-05-12 13:17:08	se6@getnada.com	11	seetha	2021-05-12 13:17:08	14	125
2021-05-12 13:17:08	org@getnada.com	11	Test User	2021-05-12 13:17:08	167	126
2021-05-12 13:17:08	rivis@zetmail.com	11	Test	2021-05-12 13:17:08	231	127
2021-05-12 13:17:08	t@getnada.com	11	truveni nettem	2021-05-12 13:17:08	66	128
2021-05-12 13:17:08	ramesh5k@gmail.com	11	cvh	2021-05-12 13:17:08	277	129
2021-05-12 13:17:08	webuser@mailinator.com	11	Ramesh Kolla	2021-05-12 13:17:08	290	130
2021-05-12 13:17:08	seet8956@getnada.com	11	seetha	2021-05-12 13:17:08	13	131
2021-05-12 13:17:08	rajinitests@mail.com	11		2021-05-12 13:17:08	284	132
2021-05-12 13:17:08	newuser@getnada.com	11	new user	2021-05-12 13:17:08	195	133
2021-05-12 13:17:08	seetha.s@nextbraintech.com	11	seetha	2021-05-12 13:17:08	2	134
2021-05-12 13:17:08	siiikk@getnada.com	11	seetha	2021-05-12 13:17:08	16	135
2021-05-12 13:17:08	tenbucks@getnada.com	11	ten bucks	2021-05-12 13:17:08	207	136
2021-05-12 13:17:08	tu@getnada.com	11	Testusers	2021-05-12 13:17:08	199	137
2021-05-12 13:17:08	rrrr@getnada.com	11	ramesh	2021-05-12 13:17:08	194	138
2021-05-12 13:17:08	dkrishnakumarmech@gmail.com	11	krishna	2021-05-12 13:17:08	99	139
2021-05-12 13:17:08	pganeshkumarece@gmail.com	11	Ganesh	2021-05-12 13:17:08	224	140
2021-05-12 13:17:08	ganeshios@mailinator.com	11	ganeshios	2021-05-12 13:17:08	32	141
2021-05-12 13:17:08	tttt@getnada.com	11	ramesh	2021-05-12 13:17:08	230	142
2021-05-12 13:17:08	user@getnada.com	11	Zunaid Floris	2021-05-12 13:17:08	7	143
2021-05-12 13:17:08	pganeshkumarece@gmail.com	11	ganesh kumar	2021-05-12 13:17:08	222	144
2021-05-12 13:17:08	fjvrujgfg@gmail.con	11	rhjfg	2021-05-12 13:17:08	247	145
2021-05-12 13:17:08	seetha.s@nextbraintech.com	11	Seetha S	2021-05-12 13:17:08	260	146
2021-05-12 13:17:08	hshsgsgs@gmail.com	11	hshsg	2021-05-12 13:17:08	38	147
2021-05-12 13:17:08	rameshnexttest@gmail.com	11	r	2021-05-12 13:17:08	193	148
2021-05-12 13:17:08	seet96@getnada.com	11	seetha	2021-05-12 13:17:08	12	149
2021-05-12 13:17:08	kkk@getnada.com	11	Ramesh	2021-05-12 13:17:08	254	150
2021-05-12 13:17:08	ramesh123@getnada.com	11	ramesh	2021-05-12 13:17:08	248	151
2021-05-12 13:17:08	kikaj@getnada.com	11	Test	2021-05-12 13:17:08	293	152
2021-05-12 13:17:08	usermail@getnada.com	11	seetha	2021-05-12 13:17:08	24	153
2021-05-12 13:17:08	krishnakumar.d@nextbraintech.com	11	bssbbs	2021-05-12 13:17:08	191	154
2021-05-12 13:17:08	dkrishnakumarmech@gmail.com	11	Krishnakumar Devendiran	2021-05-12 13:17:08	217	155
2021-05-12 13:17:08	vino@mailinator.com	11	vino	2021-05-12 13:17:08	25	156
2021-05-12 13:17:08	v1@getnada.com	11	Test User	2021-05-12 13:17:08	154	157
2021-05-12 13:17:08	naqupupib@getnada.com	11	Test	2021-05-12 13:17:08	250	158
2021-05-12 13:17:08	test@test.com	11	Test	2021-05-12 13:17:08	49	159
2021-05-12 13:17:08	zunaidfloris@gmail.com	11	Zunaid Floris	2021-05-12 13:17:08	234	160
2021-05-12 13:17:08	testusers@getnada.com	11	seetha	2021-05-12 13:17:08	20	161
2021-05-12 13:17:08	abcd@mailinator.com	11	Philip k	2021-05-12 13:17:08	256	162
2021-05-12 13:17:08	s@gmail.com	11	ganeshios	2021-05-12 13:17:08	33	163
2021-05-12 13:17:08	c5@getnada.com	11	Ramesh Kolla	2021-05-12 13:17:08	76	164
2021-05-12 13:17:08	siokuuukttt@getnada.com	11	seetha	2021-05-12 13:17:08	18	165
2021-05-12 13:17:08	test@getnada.com	11	Test	2021-05-12 13:17:08	64	166
2021-05-12 13:17:08	asda@getnada.com	11	Test	2021-05-12 13:17:08	178	167
2021-05-12 13:17:08	vino12@mailinator.com	11	vino	2021-05-12 13:17:08	27	168
2021-05-12 13:17:08	bhassim@gmail.com	11	Bilal Hassim 	2021-05-12 13:17:08	270	169
2021-05-12 13:17:08	usertest@getnada.com	11	seetha	2021-05-12 13:17:08	23	170
2021-05-12 13:17:08	preethi.s@nextbraintech.com	11	preethi	2021-05-12 13:17:08	228	171
2021-05-12 13:17:08	seetha325@getnada.com	11	seetha	2021-05-12 13:17:08	8	172
2021-08-10 17:12:32	karthick@getnada.com	13	Karthick	2021-08-10 17:12:32	113	177
\.


--
-- Data for Name: email_templates; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.email_templates ("from", subject, content, created_at, updated_at, place_id, from_email, ref_name, reply_to, mobile_content, is_system, template_id) FROM stdin;
10BucksOnly	${default.SITE_NAME} - New Password Details Updated	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor="#fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Dear ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;"><span style="font-size: 16px; color: #000000;">Your <span style="color: #e91e63;">${default.SITE_NAME}</span>&nbsp;password details are updated.</span></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 16px; color: #333; font-family: arial; padding-bottom: 15px;">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>	2021-03-19 10:36:59	2021-05-12 13:33:16	\N	hello@10bucksonly.co.za	Change Password - Organization		\N	t	1
10BucksOnly	${default.SITE_NAME} - Forgot Password Details	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Dear ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;"><span style="font-size: 16px; color: #000000;">Your <span style="color: #e91e63;">${default.SITE_NAME}</span>&nbsp;password details are updated.</span></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 16px; color: #333; font-family: arial; padding-bottom: 15px;"><span style="font-size: 16px; color: #000000;">Kindly login with given new password and after change your password.<br /> New password : <strong>${password}</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>	2021-03-22 16:11:26	2021-05-12 13:40:36	\N	hello@10bucksonly.co.za	Forgot Password - Organization		\N	t	3
10BucksOnly	We sent you a new password	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="height: 174px;" width="560" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Dear ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;"><span style="font-size: 16px; color: #000000;">Your <span style="color: #e91e63;">${default.SITE_NAME}</span> New password : <strong>${password}</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	\N	2021-05-12 13:43:32	-1	hello@10bucksonly.co.za	Change Password - admin		\\N	t	6
10BucksOnly	${default.SITE_NAME} - Newsletter	<table width="100%" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="100%" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 0;"><strong style="font-size: 18px; color: #000000; font-family: arial;">Hi ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\r\n<p>${message}</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>	2021-03-19 13:11:36	2021-05-12 13:39:40	\N	hello@10bucksonly.co.za	Newsletter - Admin		\N	t	2
10BucksOnly	${default.SITE_NAME} - Request for Account Deactivate	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Dear ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;"><span style="font-size: 16px; color: #000000;">Your request to&nbsp;deactivate your account on&nbsp;<span style="color: #e91e63;">${default.SITE_NAME}</span>&nbsp;has been received. In order to proceed futher you need to confirm the deactivation.<br /><br />To confirm please click the below link<br /><strong>${confirmation_link}</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 16px; color: #333; font-family: arial; padding-bottom: 15px;">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	\N	2021-05-12 13:41:30	-1	hello@10bucksonly.co.za	Deactivate account		\\N	t	11
10BucksOnly	Message from user	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Hello Admin,</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\r\n<p style="color: #333333; font-size: 15px;"><span style="font-size: 16px; color: #000000;">A user has&nbsp;sent some&nbsp;message on&nbsp;<span style="color: #e91e63;">${default.SITE_NAME}</span></span></p>\r\n<p style="color: #333333; font-size: 15px;"><span style="font-size: 16px; color: #000000;">Name: <strong>${name}</strong></span></p>\r\n<p><span style="font-size: 16px;">Profile<strong>: ${profile}</strong></span></p>\r\n<p style="color: #333333; font-size: 15px;">&nbsp;</p>\r\n<p style="color: #333333; font-size: 15px;"><span style="font-size: 16px; color: #000000;">Message</span><span style="font-size: 16px; color: #000000;"><strong>&nbsp;:</strong></span><span style="font-size: 16px; color: #000000; background-color: #f2f0f0;"><strong>&nbsp;<strong>${message}</strong></strong></span></p>\r\n<p style="color: #333333; font-size: 15px;">&nbsp;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	\N	2021-05-12 13:44:41	-1	hello@10bucksonly.co.za	Admin notify for user message		\\N	t	9
10BucksOnly	Contact Message	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Hello Admin,</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\r\n<p><span style="font-size: 16px; color: #000000;">A user has requested for some enquiry on&nbsp;<span style="color: #e91e63;">${default.SITE_NAME}</span></span></p>\r\n<p><strong><span style="font-size: 16px; color: #000000;">Details:</span></strong></p>\r\n<p><span style="font-size: 16px; color: #000000;">Name: <strong>${user.name}</strong></span></p>\r\n<p><span style="font-size: 16px; color: #000000;">Phone<strong>:&nbsp;<strong>${user.phone}</strong></strong></span></p>\r\n<p><span style="font-size: 16px; color: #000000;">email<strong>:&nbsp;<strong>${user.email}</strong></strong></span></p>\r\n<p><span style="font-size: 16px; color: #000000;">Message<strong>&nbsp;:&nbsp;<strong>${description}</strong></strong></span></p>\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	\N	2021-05-12 13:45:40	-1	hello@10bucksonly.co.za	Admin notify for user contact help		\\N	t	12
10BucksOnly	Welcome to ${default.SITE_NAME}	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td>\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n<tr>\n<td>\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td>\n<table cellspacing="0" cellpadding="0">\n<tbody>\n<tr>\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Hello ${name},</strong></td>\n</tr>\n<tr>\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;"><span style="font-size: 16px; color: #000000;"><span style="font-size: 16px; color: #000000;">We're thrilled to welcome you to the community of <span style="color: #e91e63;">${default.SITE_NAME}</span></span></span></td>\n</tr>\n<tr>\n<td style="font-size: 16px; color: #333; font-family: arial; padding-bottom: 15px;"><span style="font-size: 16px; color: #000000;">Before you can login your e-mail ${email}&nbsp;<strong>should be confirmed</strong>. To confirm the e-mail and instantly log in, please, use <a style="font-family: Arial; color: #e91e63; font-size: 14px; line-height: 16px; text-decoration: none;" title="link" href="#">${confirmation_link}</a>. This link is valid only once.</span></td>\n</tr>\n<tr>\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\n</tr>\n</tbody>\n</table>\n</td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n<tr class="footer">\n<td>\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td>\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\n<tbody>\n<tr>\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\n<table>\n<tbody>\n<tr>\n<td style="font-size: 16px; color: #333;">Follow Us</td>\n<td>:</td>\n<td width="10">&nbsp;</td>\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>	\N	2021-04-12 10:07:32	-1	hello@10bucksonly.co.za	Users Signup - Resend Activation email	\N	\\N	t	8
10BucksOnly	Welcome to ${default.SITE_NAME}	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Hello ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\r\n<p><span style="font-size: 16px; color: #000000;">We're thrilled to welcome you to the community of&nbsp;<span style="color: #e91e63;">${default.SITE_NAME}</span></span></p>\r\n<p><strong><span style="font-size: 16px; color: #000000;">Login credentials:</span></strong></p>\r\n<p><span style="font-size: 16px; color: #000000;">Email: <strong>${email}</strong></span></p>\r\n<p><span style="font-size: 16px; color: #000000;">Password : <strong>${password}</strong></span></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	2021-04-06 14:29:16	2021-05-12 13:42:25	\N	hello@10bucksonly.co.za	NPO Welcome - By Admin		\N	t	15
10BucksOnly	Welcome to ${default.SITE_NAME}	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td>\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n<tr>\n<td>\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td>\n<table cellspacing="0" cellpadding="0">\n<tbody>\n<tr>\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Hello ${name},</strong></td>\n</tr>\n<tr>\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\n<p><span style="font-size: 16px; color: #000000;">We're thrilled to welcome you to the community of&nbsp;<span style="color: #e91e63;">${default.SITE_NAME}</span></span></p>\n<p><strong><span style="font-size: 16px; color: #000000;">Login credentials:</span></strong></p>\n<p><span style="font-size: 16px; color: #000000;">Email: <strong>${email}</strong></span></p>\n<p><span style="font-size: 16px; color: #000000;">Password : <strong>${password}</strong></span></p>\n</td>\n</tr>\n<tr>\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\n</tr>\n</tbody>\n</table>\n</td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n<tr class="footer">\n<td>\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td>\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\n<tbody>\n<tr>\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\n<table>\n<tbody>\n<tr>\n<td style="font-size: 16px; color: #333;">Follow Us</td>\n<td>:</td>\n<td width="10">&nbsp;</td>\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>	\N	2021-04-10 18:49:25	-1	hello@10bucksonly.co.za	Users Welcome - Users	\N	\\N	t	4
10BucksOnly	${default.SITE_NAME} - Request for Account Delete	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td>\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n<tr>\n<td>\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td>\n<table cellspacing="0" cellpadding="0">\n<tbody>\n<tr>\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Dear ${name},</strong></td>\n</tr>\n<tr>\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;"><span style="font-size: 16px; color: #000000;">Your request to delete your account on&nbsp;<span style="color: #e91e63;">${default.SITE_NAME}</span>&nbsp;has been received. In order to proceed futher you need to confirm the deletion.<br /><br />To confirm please click the below link<br /><strong>${confirmation_link}</strong></span></td>\n</tr>\n<tr>\n<td style="font-size: 16px; color: #333; font-family: arial; padding-bottom: 15px;">&nbsp;</td>\n</tr>\n<tr>\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\n</tr>\n</tbody>\n</table>\n</td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n<tr class="footer">\n<td>\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\n<tbody>\n<tr>\n<td width="15">&nbsp;</td>\n<td>\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\n<tbody>\n<tr>\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\n<table>\n<tbody>\n<tr>\n<td style="font-size: 16px; color: #333;">Follow Us</td>\n<td>:</td>\n<td width="10">&nbsp;</td>\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>\n</td>\n<td width="15">&nbsp;</td>\n</tr>\n</tbody>\n</table>\n</td>\n</tr>\n</tbody>\n</table>	\N	2021-04-10 19:15:56	-1	hello@10bucksonly.co.za	Delete account		\\N	t	7
10BucksOnly	Your Forgot the Password!	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Dear ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\r\n<p>Your ${default.SITE_NAME} password has been changed.<br /> Use the below password to login and reset your ${default.SITE_NAME} password.&nbsp;</p>\r\n<p><strong>Password : ${password}</strong></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	\N	2021-05-08 12:54:23	-1	hello@10bucksonly.co.za	Forgot Password - Customers	hello@10bucksonly.co.za	\\N	t	13
10BucksOnly	10BucksOnly - Subscription Payment	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Hello ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\r\n<p><span style="font-size: 16px; color: #000000;"><span style="font-size: 16px; color: #000000;">Transaction of Subscription has done by ${paid_user} with package&nbsp; ${package_name} and amount is ${amount}.</span></span></p>\r\n<p>Invoice details below,</p>\r\n<p>${data}</p>\r\n<p>Thanks for your co-operation &amp; support.</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	2021-04-15 18:57:30	2021-04-16 13:17:46	\N	hello@10bucksonly.co.za	Payment for Subscribing		\N	t	16
10BucksOnly	10BucksOnly - Thank You For You Donation	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Hello ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\r\n<p><span style="font-size: 16px; color: #000000;"><span style="font-size: 16px; color: #000000;"><span id=":3yb.co" class="tL8wMe EMoHub" dir="ltr" style="text-align: left;">Thanks for your donation!&nbsp;Your support goes a long way towards making this world a better one, be your contribution big or small, every kind act counts so&nbsp;consider your good deed for the day done. But feel free pop by tomorrow or the next day!</span></span></span></p>\r\n<p>Invoice details below,</p>\r\n<p>&nbsp;${data}</p>\r\n<p>Thanks for your co-operation &amp; support.</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	2021-04-16 13:01:29	2021-05-13 16:17:21	\N	hello@10bucksonly.co.za	Donation Payment		\N	t	17
10BucksOnly	${default.SITE_NAME} - New Password Details Updated	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor="#fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Dear ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;"><span style="font-size: 16px; color: #000000;">Your <span style="color: #e91e63;">${default.SITE_NAME}</span>&nbsp;password details are updated.</span></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 16px; color: #333; font-family: arial; padding-bottom: 15px;">&nbsp;</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>	2021-05-08 14:52:20	2021-05-11 06:58:19	\N	hello@10bucksonly.co.za	Change Password - Donor		\N	t	19
10BucksOnly	Mail	<table width="100%" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="100%" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 0;"><strong style="font-size: 18px; color: #000000; font-family: arial;">Hi,</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;">\r\n<p>${notification.message}</p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="100%" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>	2021-04-16 17:29:44	2021-05-12 13:33:53	\N	hello@10bucksonly.co.za	Mail		\N	t	18
10BucksOnly	Welcome to ${default.SITE_NAME}	<table width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<table style="padding-top: 25px; padding-bottom: 25px;" width="600" cellspacing="0" cellpadding="0" bgcolor=" #fcb22d">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td><a title="${default.SITE_NAME}" href="${default.SITE_URL}"><img src="${default.ADMIN_LOGO}" alt="${default.SITE_NAME}" /></a></td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td>\r\n<table style="border: 1px solid #ccc;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="padding: 15px 0 15px;"><strong style="font-size: 22px; font-weight: bold; color: #000000; font-family: arial;">Hello ${name},</strong></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 15px; color: #333; font-family: arial; padding-bottom: 16px;"><span style="font-size: 16px; color: #000000;"><span style="font-size: 16px; color: #000000;">We're thrilled to welcome you to the community of <span style="color: #e91e63;">${default.SITE_NAME}</span></span></span></td>\r\n</tr>\r\n<tr>\r\n<td style="font-size: 16px; color: #333; font-family: arial; padding-bottom: 15px;">\r\n<p><span style="font-size: 16px; color: #000000;"><span style="font-size: 16px; color: #000000;">Your registration is successfull. Please activate your account by clicking the given link&nbsp;</span></span><span style="font-size: 16px; color: #000000;"><span style="font-size: 16px; color: #000000;">- ${confirmation_link}&nbsp;to</span></span><span style="font-size: 16px; color: #000000;">&nbsp;continue to login with your registered mail id. The link is valid only once.</span></p>\r\n<p><span style="font-size: 16px; color: #000000;">Thank you!</span></p>\r\n<p><span style="font-size: 16px; color: #000000;">Team -</span></p>\r\n<span style="color: #e91e63; font-size: 11pt;">${default.SITE_NAME}</span></td>\r\n</tr>\r\n<tr>\r\n<td style="font-family: arial; color: #333; font-size: 15px; padding: 0 0 20px 0; line-height: 26px;">This notification has been sent to the email address associated with your <a style="text-decoration: none; color: #e91e63;" href="${default.SITE_URL}" target="_blank">${default.SITE_NAME}</a> account. This email message was auto-generated.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr class="footer">\r\n<td>\r\n<table style="border: 1px solid #ccc; border-top: none;" border="0" width="600" cellspacing="0" cellpadding="0" bgcolor="#fff">\r\n<tbody>\r\n<tr>\r\n<td width="15">&nbsp;</td>\r\n<td>\r\n<table style="padding: 20px 0;" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">&nbsp;</td>\r\n<td style="font-size: 17px; color: #333; font-family: arial; font-weight: bold;">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td style="font-size: 16px; color: #333;">Follow Us</td>\r\n<td>:</td>\r\n<td width="10">&nbsp;</td>\r\n<td><a title="Facebook" href="${default.SITE_FACEBOOK_PAGE}"><img src="${default.SITE_ASSETS_URL}/facebook.png" alt="Facebook" /></a></td>\r\n<td><a title="Twitter" href="${default.SITE_TWITTER_PAGE}"><img src="${default.SITE_ASSETS_URL}/twitter.png" alt="Twitter" /></a></td>\r\n<td><a title="LinkedIn" href="${default.SITE_LINKEDIN_PAGE}"><img src="${default.SITE_ASSETS_URL}/linkedin.png" alt="LinkedIn" /></a></td>\r\n<td><a title="Instagram" href="${default.SITE_INSTAGRAM_PAGE}"><img src="${default.SITE_ASSETS_URL}/instagram.png" alt="Instagram" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width="15">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>	\N	2021-04-27 18:15:13	-1	hello@10bucksonly.co.za	Users Signup - Activation email		\\N	t	5
\.


--
-- Data for Name: emailsettings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.emailsettings (contact_mail, support_mail, mobile_number, skype, smtp_enable, mail_driver, smtp_host_name, smtp_username, smtp_password, smtp_port, smtp_encryption, status, updated_at, id) FROM stdin;
office@instamall.com	office@instamall.com	91-969-663	skype	1	smtp	smtp.sendgrid.net	apikey	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	465	ssl	1	2019-07-24 05:45:07	1
\.


--
-- Data for Name: faqs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.faqs (id, category_id, status, sort_order, created_at, updated_at) FROM stdin;
11	\N	1	1	2021-04-01 16:12:12	2021-04-01 16:12:12
\.


--
-- Data for Name: faqs_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.faqs_infos (id, question, answer, lang_id, info_id) FROM stdin;
12	Do you protect data security and privacy?	<div class="faq-item">\r\n\n<p>We&nbsp;take your security very seriously. Our technicians go through rigorous background screening and training.&nbsp; We do not go through any of your personal data (e.g. contacts, messages, photos, etc.).&nbsp; Many of our store locations are an open-repair concept, where you can watch the repair being performed. &nbsp; If you aren't comfortanble, you are not required to provide us with your password.</p>\r\n\n</div>\r\n\n<div class="faq-item">&nbsp;</div>	1	24
12	Do you protect data security and privacy?	<div class="faq-item">\r\n\n<p>We&nbsp;take your security very seriously. Our technicians go through rigorous background screening and training.&nbsp; We do not go through any of your personal data (e.g. contacts, messages, photos, etc.).&nbsp; Many of our store locations are an open-repair concept, where you can watch the repair being performed. &nbsp; If you aren't comfortanble, you are not required to provide us with your password.</p>\r\n\n</div>\r\n\n<div class="faq-item">&nbsp;</div>	2	25
13	What if you can't fix my device? Will you return my money?	<p>We have a team of highly experienced professionals, who are expert at their work. We go a mile extra to repair your phone but in case we are not able to repair the fault then you will be eligible for a 100% refund.</p>	1	26
13	What if you can't fix my device? Will you return my money?	<p>We have a team of highly experienced professionals, who are expert at their work. We go a mile extra to repair your phone but in case we are not able to repair the fault then you will be eligible for a 100% refund.</p>	2	27
14	In how many days will I receive my repaired device?	<p>It all depends on the nature and degree of damage. We do not follow a default template to respond to every query rather we analyze the issue and come up with a customized approach to sort it out. If the issue is related to ear phones, speaker or volume button non-functioning, then they can be resolved in a very short span. But issues related to motherboard replacement, or screen replacement requires time as such tasks needs to be performed with utmost care and attention. The average return time is 1-2 days.</p>	1	28
14	In how many days will I receive my repaired device?	<p>It all depends on the nature and degree of damage. We do not follow a default template to respond to every query rather we analyze the issue and come up with a customized approach to sort it out. If the issue is related to ear phones, speaker or volume button non-functioning, then they can be resolved in a very short span. But issues related to motherboard replacement, or screen replacement requires time as such tasks needs to be performed with utmost care and attention. The average return time is 1-2 days.</p>	2	29
11	What is NPO?	<p>A nonprofit organization (NPO), also known as a non-business entity, not-for-profit organization, or nonprofit institution, is a legal entity organized and operated for a collective, public or social benefit, in contrast with an entity that operates as a business aiming to generate a profit for its owners.</p>	1	85
\.


--
-- Data for Name: fund_request; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.fund_request (id, name, email, created_at, updated_at, status, phone, id_number, address) FROM stdin;
2	sssss	sdvsdvsvsdvs@gmail.com	2021-04-22 11:50:24	\N	0	1234567890	sss	gggggggggggggg
\.


--
-- Data for Name: group_email_notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.group_email_notifications (subject, message, created_at, user_ids, updated_at, id) FROM stdin;
Test Email Notification	<p>Test Email Notification from <strong>10BucksOnly</strong></p>	2021-05-12 09:38:21	113,282	2021-05-12 09:38:21	9
Test Email Notification	<p>Test Email Notification</p>	2021-05-12 13:03:41	113	2021-05-12 13:03:41	10
test	<p>testing email notification</p>	2021-05-12 13:17:07	87,294,71,273,272,258,170,192,169,299,276,92,69,180,262,292,114,115,236,238,271,22,59,197,289,98,282,173,200,269,73,103,11,44,261,161,239,88,188,40,113,257,286,240,43,279,214,9,202,196,291,15,79,210,26,187,72,281,19,232,77,259,172,30,21,288,3,17,198,212,37,28,242,251,249,171,255,56,91,296,283,74,29,54,4,34,205,245,67,201,63,90,10,105,35,216,295,213,220,274,39,168,223,93,241,36,252,31,287,221,285,50,253,14,167,231,66,277,290,13,284,195,2,16,207,199,194,99,224,32,230,7,222,247,260,38,193,12,254,248,293,24,191,217,25,154,250,49,234,20,256,33,76,18,64,178,27,270,23,228,8	2021-05-12 13:17:07	11
Test Mail	<p>Test Mail for Internal QA Testing</p>	2021-08-10 17:12:32	113	2021-08-10 17:12:32	13
\.


--
-- Data for Name: group_newsletters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.group_newsletters (id, subject, message, created_at, user_ids, updated_at) FROM stdin;
71	Test Newsletter	<p>Test Purpose Mail from <strong>10BucksOnly</strong> Live.</p>	2021-03-27 13:45:43	113	2021-03-27 13:45:43
87	test news letter	<p>test news letter fdd</p>	2021-04-09 16:01:36	198	2021-04-09 16:01:36
88	Test Newsletter	<p>Test Newsletter</p>	2021-04-10 19:18:26	113	2021-04-10 19:18:26
89	Test Newsletter	<p>Test Newsletter from <strong>10BucksOnly</strong> Demo Live</p>	2021-04-16 11:17:17	167	2021-04-16 11:17:17
90	Test Newsletter	<p>Test Newsletter</p>	2021-04-16 17:23:17	230	2021-04-16 17:23:17
91	Test	<p>Test</p>	2021-04-19 15:40:00	238	2021-04-19 15:40:00
93	Test Mail	<p>Test Mail for Internal QA Testing</p>	2021-08-10 16:40:00	113	2021-08-10 16:40:00
94	Test Mail	<p>Test Mail for Internal QA Testing</p>	2021-08-10 16:43:20	113	2021-08-10 16:43:20
\.


--
-- Data for Name: group_notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.group_notifications (id, subject, message, created_at, user_ids, updated_at) FROM stdin;
30	Test Notification	<p>Test Notification from Admin</p>	2021-04-15 16:31:50	113	2021-04-15 16:31:50
31	sample	<p>sample</p>	2021-04-15 17:58:25	228	2021-04-15 17:58:25
32	sample-check12	<p>sssssss</p>	2021-04-15 17:59:50	228	2021-04-15 17:59:50
33	sample	<p>fd</p>	2021-04-15 18:02:20	228	2021-04-15 18:02:20
34	sample	<p>vvvvv</p>	2021-04-15 18:03:46	228	2021-04-15 18:03:46
35	d	<p>dd</p>	2021-04-15 18:04:39	228	2021-04-15 18:04:39
36	sample	<p>ddddddd</p>	2021-04-15 18:13:29	228	2021-04-15 18:13:29
37	sample	<p>rr</p>	2021-04-15 18:15:08	228	2021-04-15 18:15:08
38	sample	<p>sssss</p>	2021-04-15 18:18:11	228	2021-04-15 18:18:11
39	sample	<p>sssss</p>	2021-04-15 18:19:27	228	2021-04-15 18:19:27
40	d	<p>d</p>	2021-04-15 18:19:56	228	2021-04-15 18:19:56
41	xs	<p>x</p>	2021-04-15 18:21:12	228	2021-04-15 18:21:12
42	d	<p>s</p>	2021-04-15 18:21:45	228	2021-04-15 18:21:45
43	d	<p>s</p>	2021-04-15 18:22:21	228	2021-04-15 18:22:21
44	g	<p>g</p>	2021-04-15 18:25:01	228	2021-04-15 18:25:01
45	g	<p>g</p>	2021-04-15 18:27:30	228	2021-04-15 18:27:30
46	sample	<p>hg</p>	2021-04-15 18:27:43	228	2021-04-15 18:27:43
47	sample	<p>fg</p>	2021-04-15 18:37:22	228	2021-04-15 18:37:22
48	Dear RajiniGR, payment done successfully. Thank you!	Dear RajiniGR, payment done successfully. Thank you!	2021-04-22 16:43:27	245	2021-04-22 16:43:27
49	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	2021-04-22 16:55:28	63	2021-04-22 16:55:28
50	Dear RajiniGR, payment done successfully. Thank you!	Dear RajiniGR, payment done successfully. Thank you!	2021-04-22 16:55:45	245	2021-04-22 16:55:45
51	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	2021-04-22 16:56:53	63	2021-04-22 16:56:53
52	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	2021-04-22 17:15:11	63	2021-04-22 17:15:11
53	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	2021-04-22 18:07:52	63	2021-04-22 18:07:52
54	Dear Philip kk, payment done successfully. Thank you!	Dear Philip kk, payment done successfully. Thank you!	2021-04-22 18:09:49	256	2021-04-22 18:09:49
55	Dear Philip kk, payment done successfully. Thank you!	Dear Philip kk, payment done successfully. Thank you!	2021-04-22 18:12:40	256	2021-04-22 18:12:40
56	Dear RajiniGR, payment done successfully. Thank you!	Dear RajiniGR, payment done successfully. Thank you!	2021-04-22 18:18:33	245	2021-04-22 18:18:33
57	Dear Reza Amra, payment done successfully. Thank you!	Dear Reza Amra, payment done successfully. Thank you!	2021-04-22 18:41:15	261	2021-04-22 18:41:15
58	Dear zunaid final test, payment done successfully. Thank you!	Dear zunaid final test, payment done successfully. Thank you!	2021-04-22 18:41:22	258	2021-04-22 18:41:22
59	Dear zunaid final test, payment done successfully. Thank you!	Dear zunaid final test, payment done successfully. Thank you!	2021-04-22 18:45:03	258	2021-04-22 18:45:03
60	Dear zunaid final test, payment done successfully. Thank you!	Dear zunaid final test, payment done successfully. Thank you!	2021-04-22 18:46:01	258	2021-04-22 18:46:01
61	Dear Reza Amra, payment done successfully. Thank you!	Dear Reza Amra, payment done successfully. Thank you!	2021-04-22 18:49:13	261	2021-04-22 18:49:13
62	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	2021-04-22 19:11:45	63	2021-04-22 19:11:45
63	Donated to Call 2 Care	Dear Ramesh, payment done successfully with #DONA557. Thank you!	2021-04-23 17:16:23	272	2021-04-23 17:16:23
64	Donated to Call 2 Care	Dear Ramesh, payment done successfully with #DONA557. Thank you!	2021-04-23 17:18:10	272	2021-04-23 17:18:10
65	Donated to The Amy Foundation	Dear Ramesh, payment done successfully with #DONA560. Thank you!	2021-04-23 17:19:43	272	2021-04-23 17:19:43
66	Donated to Islamic Relief	Dear ganesh, payment done successfully with #DONA561. Thank you!	2021-04-23 17:23:15	44	2021-04-23 17:23:15
67	Donated to Smile Foundation	Dear Ramesh, payment done successfully with #DONA570. Thank you!	2021-04-23 18:28:42	272	2021-04-23 18:28:42
68	Donated to Call 2 Care	Dear Ramesh Kolla, payment done successfully with #DONA571. Thank you!	2021-04-23 19:04:08	229	2021-04-23 19:04:08
69	Donated to Call 2 Care	Dear ganesh, payment done successfully with #DONA576. Thank you!	2021-04-23 19:20:44	44	2021-04-23 19:20:44
70	Donated to Darul Ihsan	Dear ganesh, payment done successfully with #DONA581. Thank you!	2021-04-23 19:49:27	44	2021-04-23 19:49:27
71	Donated to Darul Ihsan	Dear ganesh, payment done successfully with #DONA581. Thank you!	2021-04-23 20:01:28	44	2021-04-23 20:01:28
72	Donated to Darul Ihsan	Dear ganesh, payment done successfully with #DONA581. Thank you!	2021-04-23 20:06:54	44	2021-04-23 20:06:54
73	Donated to Darul Ihsan	Dear ganesh, payment done successfully with #DONA581. Thank you!	2021-04-23 20:12:16	44	2021-04-23 20:12:16
74	Donated to Islamic Relief	Dear ganesh, payment done successfully with #DONA563. Thank you!	2021-04-23 20:18:06	44	2021-04-23 20:18:06
75	Donated to Islamic Relief	Dear ganesh, payment done successfully with #DONA564. Thank you!	2021-04-23 20:41:52	44	2021-04-23 20:41:52
76	Donated to Islamic Relief	Dear ganesh, payment done successfully with #DONA565. Thank you!	2021-04-23 20:47:31	44	2021-04-23 20:47:31
77	Donated to Islamic Relief	Dear ganesh, payment done successfully with #DONA565. Thank you!	2021-04-23 20:48:58	44	2021-04-23 20:48:58
78	Donated to Darul Ihsan	Dear Karthick M, payment done successfully with #DONA584. Thank you!	2021-04-23 21:23:45	113	2021-04-23 21:23:45
79	Donated to Darul Ihsan	Dear ganesh, payment done successfully with #DONA597. Thank you!	2021-04-24 11:24:02	44	2021-04-24 11:24:02
80	Donated to Darul Ihsan	Dear zunaid final test, payment done successfully with #DONA598. Thank you!	2021-04-24 11:36:54	258	2021-04-24 11:36:54
81	Donated to Darul Ihsan	Dear ganesh, payment done successfully with #DONA581. Thank you!	2021-04-24 11:46:51	44	2021-04-24 11:46:51
82	Donated to Call 2 Care	Dear ganesh, payment done successfully with #DONA603. Thank you!	2021-04-24 12:16:57	44	2021-04-24 12:16:57
83	Donated to Call 2 Care	Dear ganesh, payment done successfully with #DONA603. Thank you!	2021-04-24 12:26:42	44	2021-04-24 12:26:42
84	Donated to Call 2 Care	Dear Ridhwaan, payment done successfully with #DONA604. Thank you!	2021-04-25 09:38:52	281	2021-04-25 09:38:52
85	Donated to Darul Ihsan	Dear zunaid final test, payment done successfully with #DONA605. Thank you!	2021-04-25 20:18:23	258	2021-04-25 20:18:23
86	Donated to HOPE Cape Town	Dear Reza Amra, payment done successfully with #DONA617. Thank you!	2021-04-26 12:57:52	261	2021-04-26 12:57:52
87	Donated to Darul Ihsan	Dear ganesh, payment done successfully with #DONA581. Thank you!	2021-04-26 13:54:13	44	2021-04-26 13:54:13
88	Donated to HOPE Cape Town	Dear Reza Amra, payment done successfully with #DONA620. Thank you!	2021-04-28 14:32:23	261	2021-04-28 14:32:23
89	test	<p>tesing</p>	2021-04-30 19:11:51	201	2021-04-30 19:11:51
90	test	<p>tesing</p>	2021-04-30 19:12:35	201	2021-04-30 19:12:35
91	test	<p>tesing</p>	2021-04-30 19:14:26	201	2021-04-30 19:14:26
92	test	<p>tesing</p>	2021-04-30 19:15:37	201	2021-04-30 19:15:37
93	test	<p>tesing</p>	2021-04-30 19:16:03	201	2021-04-30 19:16:03
94	test	<p>tesing</p>	2021-04-30 19:17:35	201	2021-04-30 19:17:35
95	test	<p>tesing</p>	2021-04-30 19:17:56	201	2021-04-30 19:17:56
96	test	<p>tesing</p>	2021-04-30 19:19:17	201	2021-04-30 19:19:17
97	test	<p>tesing</p>	2021-04-30 19:19:42	201	2021-04-30 19:19:42
98	test	<p>tesing</p>	2021-04-30 19:20:33	201	2021-04-30 19:20:33
99	test	<p>tesing</p>	2021-04-30 19:20:45	201	2021-04-30 19:20:45
100	test	<p>tesing</p>	2021-04-30 19:22:12	201	2021-04-30 19:22:12
101	test	<p>tesing</p>	2021-04-30 19:22:51	201	2021-04-30 19:22:51
102	test	<p>tesing</p>	2021-04-30 19:23:00	201	2021-04-30 19:23:00
103	test	<p>tesing</p>	2021-04-30 19:23:12	201	2021-04-30 19:23:12
104	test	<p>tesing</p>	2021-04-30 19:24:22	201	2021-04-30 19:24:22
105	test	<p>tesing</p>	2021-04-30 19:25:03	201	2021-04-30 19:25:03
106	test	<p>tesing</p>	2021-04-30 19:53:26	201	2021-04-30 19:53:26
107	test	<p>tesing</p>	2021-04-30 19:54:48	201	2021-04-30 19:54:48
108	test	<p>tesing</p>	2021-04-30 19:55:02	201	2021-04-30 19:55:02
109	test	<p>tesing</p>	2021-04-30 19:55:24	201	2021-04-30 19:55:24
110	test	<p>tesing</p>	2021-04-30 19:59:51	201	2021-04-30 19:59:51
111	test	<p>testing</p>	2021-05-03 13:33:43	201	2021-05-03 13:33:43
112	test	<p>testing</p>	2021-05-03 13:39:06	245	2021-05-03 13:39:06
113	test	<p>testing</p>	2021-05-03 13:44:16	201	2021-05-03 13:44:16
114	test	<p>testing</p>	2021-05-03 13:44:55	201	2021-05-03 13:44:55
115	test	<p>testing</p>	2021-05-03 13:45:21	201	2021-05-03 13:45:21
116	test	<p>testing</p>	2021-05-03 13:46:15	201	2021-05-03 13:46:15
117	test	<p>testing</p>	2021-05-03 13:46:32	201	2021-05-03 13:46:32
118	test	<p>testing</p>	2021-05-03 13:46:58	201	2021-05-03 13:46:58
121	Donated to Darul Ihsan	Dear Rajini, payment done successfully with #DONA644. Thank you!	2021-05-06 16:11:52	201	2021-05-06 16:11:52
122	Donated to Ginie ORG	Dear Ramesh Kolla, payment done successfully with #DONA646. Thank you!	2021-05-06 17:07:54	286	2021-05-06 17:07:54
123	Donated to Penny Appeal	Dear Krishnakumar Devendiran, payment done successfully with #DONA647. Thank you!	2021-05-07 14:56:28	289	2021-05-07 14:56:28
124	Donated to Penny Appeal	Dear Rabada h, payment done successfully with #DONA648. Thank you!	2021-05-07 16:58:18	269	2021-05-07 16:58:18
127	Test Notification	<p>Test Notification</p>	2021-05-08 15:02:32	113	2021-05-08 15:02:32
128	Donated to Ginie ORG	Dear Rohan, payment done successfully with #DONA649. Thank you!	2021-05-08 16:25:45	292	2021-05-08 16:25:45
129	Donated to Penny Appeal	Dear Rohan, payment done successfully with #DONA650. Thank you!	2021-05-08 17:37:05	292	2021-05-08 17:37:05
130	Donated to Ginie ORG	Dear Rohan, payment done successfully with #DONA652. Thank you!	2021-05-10 12:05:09	292	2021-05-10 12:05:09
131	test push notification	<p>test push notification</p>	2021-05-10 12:43:29	87,294,71,273,272,258,170,192,169,276,92,69,180,262,292,114,115,236,238,271,22,59,197,289,98,282,173,200,269,73,103,11,44,261,161,239,88,188,40,113,257,286,240,43,279,214,9,202,196,291,15,79,210,26,187,72,281,19,232,77,259,172,30,21,288,3,17,198,212,37,28,242,251,249,171,255,56,91,296,283,74,29,54,4,34,205,245,67,201,63,90,10,105,35,216,295,213,220,274,39,168,223,93,241,36,252,31,287,221,285,50,253,14,167,231,66,277,290,13,284,195,2,16,207,199,194,99,224,32,230,7,222,247,260,38,193,12,254,248,293,24,191,217,25,154,250,49,234,20,256,33,76,18,64,178,27,270,23,228,8	2021-05-10 12:43:29
133	Donated to Ginie ORG	Dear Rohan, payment done successfully with #DONA656. Thank you!	2021-05-12 08:36:56	292	2021-05-12 08:36:56
134	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA660. Thank you!	2021-05-16 07:20:41	191	2021-05-16 07:20:41
135	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA661. Thank you!	2021-05-16 07:40:16	191	2021-05-16 07:40:16
136	Donated to Penny Appeal	Dear bssbbs, payment done successfully with #DONA662. Thank you!	2021-05-16 07:41:25	191	2021-05-16 07:41:25
137	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA666. Thank you!	2021-05-16 08:24:34	191	2021-05-16 08:24:34
138	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA667. Thank you!	2021-05-16 14:51:31	191	2021-05-16 14:51:31
139	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA668. Thank you!	2021-05-16 15:29:43	191	2021-05-16 15:29:43
140	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA669. Thank you!	2021-05-16 17:28:56	191	2021-05-16 17:28:56
141	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA670. Thank you!	2021-05-16 17:30:55	191	2021-05-16 17:30:55
142	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA671. Thank you!	2021-05-16 17:37:15	191	2021-05-16 17:37:15
143	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA672. Thank you!	2021-05-16 17:40:16	191	2021-05-16 17:40:16
144	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA673. Thank you!	2021-05-16 17:50:45	191	2021-05-16 17:50:45
145	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA674. Thank you!	2021-05-16 17:52:00	191	2021-05-16 17:52:00
146	Donated to Ginie ORG	Dear bssbbs, payment done successfully with #DONA675. Thank you!	2021-05-16 18:00:39	191	2021-05-16 18:00:39
147	Donated to Ginie ORG	Dear seetha, payment done successfully with #DONA676. Thank you!	2021-05-18 09:37:17	8	2021-05-18 09:37:17
148	Donated to Penny Appeal	Dear Rabada h, payment done successfully with #DONA648. Thank you!	2021-05-18 10:20:20	269	2021-05-18 10:20:20
149	Donated to Penny Appeal	Dear Rabada h, payment done successfully with #DONA648. Thank you!	2021-05-19 08:59:29	269	2021-05-19 08:59:29
150	Donated to Penny Appeal	Dear Rabada h, payment done successfully with #DONA648. Thank you!	2021-05-19 09:02:21	269	2021-05-19 09:02:21
151	Donated to Penny Appeal	Dear Rohan, payment done successfully with #DONA679. Thank you!	2021-05-19 09:16:35	292	2021-05-19 09:16:35
152	Donated to Penny Appeal	Dear Rabada h, payment done successfully with #DONA648. Thank you!	2021-05-19 17:52:04	269	2021-05-19 17:52:04
153	Donated to Penny Appeal	Dear Rohan, payment done successfully with #DONA684. Thank you!	2021-05-20 07:25:22	292	2021-05-20 07:25:22
154	Donated to Penny Appeal	Dear Rohan, payment done successfully with #DONA685. Thank you!	2021-05-20 07:42:41	292	2021-05-20 07:42:41
155	Donated to Darul Ihsan	Dear zunaid final test, payment done successfully with #DONA433. Thank you!	2021-05-28 08:24:11	258	2021-05-28 08:24:11
156	Donated to Darul Ihsan	Dear zunaid final test, payment done successfully with #DONA433. Thank you!	2021-05-28 08:24:30	258	2021-05-28 08:24:30
\.


--
-- Data for Name: imageresizesettings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.imageresizesettings (id, list_width, list_height, detail_width, detail_height, thumb_width, thumb_height, type, updated_at) FROM stdin;
1	270	65	16	16	300	100	1	2021-03-15 11:39:34
2	104	104	600	600	173	123	2	2021-03-15 11:39:34
3	369	267	100	100	600	400	3	2021-03-15 11:39:34
4	0	0	1920	625	300	100	4	2021-03-15 11:39:34
5	348	180	768	300	250	202	5	2021-03-15 11:39:34
6	300	250	600	400	222	267	6	2021-03-15 11:39:35
\.


--
-- Data for Name: languages; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.languages (name, language_code, date_format_short, date_format_full, is_rtl, status, created_at, updated_at, id) FROM stdin;
English	en	Y-m-d	Y-m-d H:i:s	0	1	2016-03-13 07:55:43	2017-11-06 03:03:33	1
Arabic	ar	Y-m-d	Y-m-d H:i:s	1	0	2016-03-13 07:55:43	2020-01-30 13:38:04	2
\.


--
-- Data for Name: ministries; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.ministries (id) FROM stdin;
\.


--
-- Data for Name: newsletter_subscribers; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.newsletter_subscribers (id, email, is_customer, active_status, created_date, ip_address, modified_date, name) FROM stdin;
34	test@gmail.com	0	1	2019-09-27		\N	                                                                                                    
35	user@mailinator.com	0	1	2019-10-22		\N	                                                                                                    
36	gandi@getnada.com	0	1	2019-11-05		\N	                                                                                                    
37	c.murira@aasciences.africa	0	1	2019-12-04		\N	                                                                                                    
38	ravik@getnada.com	0	1	2019-12-04		\N	                                                                                                    
39	ravIk@getnada.com	0	1	2019-12-04		\N	                                                                                                    
40	cobunga1@gmail.com	0	1	2019-12-04		\N	                                                                                                    
41	hg@getnada.com	0	1	2020-01-25		\N	                                                                                                    
42	mohith.sai@getnada.com	0	1	2020-01-27		\N	                                                                                                    
43	ndoriasim@yahoo.com	0	1	2020-01-27		\N	                                                                                                    
44	ramesh517.k@gmail.com	0	1	2020-04-04		\N	                                                                                                    
45	ramesh.k@nextbraintech.com	0	1	2020-04-08		\N	                                                                                                    
\.


--
-- Data for Name: newsletters; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.newsletters (created_at, email, group_newsletter, name, updated_at, user_id, id) FROM stdin;
2021-03-27 13:45:44	karthick@getnada.com	71	Test	2021-03-27 13:45:44	113	354
2021-04-09 16:01:37	kokilaben@getnada.com	87	Kokila Ben	2021-04-09 16:01:37	198	371
2021-04-10 19:18:26	karthick@getnada.com	88	Test	2021-04-10 19:18:26	113	372
2021-04-16 11:17:17	org@getnada.com	89	Test User	2021-04-16 11:17:17	167	373
2021-04-16 17:23:18	tttt@getnada.com	90	ramesh	2021-04-16 17:23:18	230	374
2021-04-19 15:40:01	testdev@getnada.com	91	Test	2021-04-19 15:40:01	238	375
2021-08-10 16:40:00	karthick@getnada.com	93	Karthick	2021-08-10 16:40:00	113	378
2021-08-10 16:43:20	karthick@getnada.com	94	Karthick	2021-08-10 16:43:20	113	379
\.


--
-- Data for Name: notification_group; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.notification_group (group_name, group_status, created_at, updated_at, group_id) FROM stdin;
Customer's	1	2021-03-05 00:00:00	2021-03-05 00:00:00	2
Organization's	1	2021-03-05 00:00:00	2021-03-05 00:00:00	3
Admin's	1	2021-03-05 00:00:00	2021-03-05 00:00:00	4
\.


--
-- Data for Name: notifications; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.notifications (id, user_id, subject, message, status, type, group_notification, created_at, updated_at, notified_by) FROM stdin;
16	245	Dear RajiniGR, payment done successfully. Thank you!	Dear RajiniGR, payment done successfully. Thank you!	1	1	48	2021-04-22 16:43:28	2021-04-22 16:43:28	474
47	44	Dear ganesh, payment done successfully with #DONA597. Thank you!	Dear ganesh, payment done successfully with #DONA597. Thank you!	1	1	79	2021-04-24 11:24:02	2021-04-24 11:24:02	597
19	63	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	1	1	51	2021-04-22 16:56:53	2021-04-22 16:56:53	479
17	63	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	3	2	49	2021-04-22 16:55:29	2021-04-22 11:32:31	477
20	63	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	1	1	52	2021-04-22 17:15:11	2021-04-22 17:15:11	480
18	245	Dear RajiniGR, payment done successfully. Thank you!	Dear RajiniGR, payment done successfully. Thank you!	1	1	50	2021-04-22 16:55:45	2021-04-22 16:55:45	478
21	63	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	1	1	53	2021-04-22 18:07:52	2021-04-22 18:07:52	481
22	256	Dear Philip kk, payment done successfully. Thank you!	Dear Philip kk, payment done successfully. Thank you!	1	1	54	2021-04-22 18:09:50	2021-04-22 18:09:50	482
23	256	Dear Philip kk, payment done successfully. Thank you!	Dear Philip kk, payment done successfully. Thank you!	1	1	55	2021-04-22 18:12:41	2021-04-22 18:12:41	483
24	245	Dear RajiniGR, payment done successfully. Thank you!	Dear RajiniGR, payment done successfully. Thank you!	1	1	56	2021-04-22 18:18:34	2021-04-22 18:18:34	484
25	261	Dear Reza Amra, payment done successfully. Thank you!	Dear Reza Amra, payment done successfully. Thank you!	1	1	57	2021-04-22 18:41:16	2021-04-22 18:41:16	485
26	258	Dear zunaid final test, payment done successfully. Thank you!	Dear zunaid final test, payment done successfully. Thank you!	1	1	58	2021-04-22 18:41:23	2021-04-22 18:41:23	486
27	258	Dear zunaid final test, payment done successfully. Thank you!	Dear zunaid final test, payment done successfully. Thank you!	1	1	59	2021-04-22 18:45:03	2021-04-22 18:45:03	487
28	258	Dear zunaid final test, payment done successfully. Thank you!	Dear zunaid final test, payment done successfully. Thank you!	1	1	60	2021-04-22 18:46:01	2021-04-22 18:46:01	488
29	261	Dear Reza Amra, payment done successfully. Thank you!	Dear Reza Amra, payment done successfully. Thank you!	1	1	61	2021-04-22 18:49:14	2021-04-22 18:49:14	489
30	63	Dear Sravya Kolla, payment done successfully. Thank you!	Dear Sravya Kolla, payment done successfully. Thank you!	1	1	62	2021-04-22 19:11:46	2021-04-22 19:11:46	490
31	272	Dear Ramesh, payment done successfully with #DONA557. Thank you!	Dear Ramesh, payment done successfully with #DONA557. Thank you!	1	1	63	2021-04-23 17:16:23	2021-04-23 17:16:23	557
32	272	Dear Ramesh, payment done successfully with #DONA557. Thank you!	Dear Ramesh, payment done successfully with #DONA557. Thank you!	1	1	64	2021-04-23 17:18:11	2021-04-23 17:18:11	557
33	272	Dear Ramesh, payment done successfully with #DONA560. Thank you!	Dear Ramesh, payment done successfully with #DONA560. Thank you!	1	1	65	2021-04-23 17:19:44	2021-04-23 17:19:44	560
34	44	Dear ganesh, payment done successfully with #DONA561. Thank you!	Dear ganesh, payment done successfully with #DONA561. Thank you!	1	1	66	2021-04-23 17:23:16	2021-04-23 17:23:16	561
35	272	Dear Ramesh, payment done successfully with #DONA570. Thank you!	Dear Ramesh, payment done successfully with #DONA570. Thank you!	1	1	67	2021-04-23 18:28:43	2021-04-23 18:28:43	570
37	44	Dear ganesh, payment done successfully with #DONA576. Thank you!	Dear ganesh, payment done successfully with #DONA576. Thank you!	1	1	69	2021-04-23 19:20:45	2021-04-23 19:20:45	576
36	229	Dear Ramesh Kolla, payment done successfully with #DONA571. Thank you!	Dear Ramesh Kolla, payment done successfully with #DONA571. Thank you!	3	2	68	2021-04-23 19:04:09	2021-04-23 14:02:11	571
38	44	Dear ganesh, payment done successfully with #DONA581. Thank you!	Dear ganesh, payment done successfully with #DONA581. Thank you!	1	1	70	2021-04-23 19:49:28	2021-04-23 19:49:28	581
39	44	Dear ganesh, payment done successfully with #DONA581. Thank you!	Dear ganesh, payment done successfully with #DONA581. Thank you!	1	1	71	2021-04-23 20:01:28	2021-04-23 20:01:28	581
40	44	Dear ganesh, payment done successfully with #DONA581. Thank you!	Dear ganesh, payment done successfully with #DONA581. Thank you!	1	1	72	2021-04-23 20:06:54	2021-04-23 20:06:54	581
41	44	Dear ganesh, payment done successfully with #DONA581. Thank you!	Dear ganesh, payment done successfully with #DONA581. Thank you!	1	1	73	2021-04-23 20:12:16	2021-04-23 20:12:16	581
42	44	Dear ganesh, payment done successfully with #DONA563. Thank you!	Dear ganesh, payment done successfully with #DONA563. Thank you!	1	1	74	2021-04-23 20:18:06	2021-04-23 20:18:06	563
43	44	Dear ganesh, payment done successfully with #DONA564. Thank you!	Dear ganesh, payment done successfully with #DONA564. Thank you!	1	1	75	2021-04-23 20:41:53	2021-04-23 20:41:53	564
44	44	Dear ganesh, payment done successfully with #DONA565. Thank you!	Dear ganesh, payment done successfully with #DONA565. Thank you!	1	1	76	2021-04-23 20:47:32	2021-04-23 20:47:32	565
45	44	Dear ganesh, payment done successfully with #DONA565. Thank you!	Dear ganesh, payment done successfully with #DONA565. Thank you!	1	1	77	2021-04-23 20:48:59	2021-04-23 20:48:59	565
46	113	Dear Karthick M, payment done successfully with #DONA584. Thank you!	Dear Karthick M, payment done successfully with #DONA584. Thank you!	1	1	78	2021-04-23 21:23:45	2021-04-23 21:23:45	584
48	258	Dear zunaid final test, payment done successfully with #DONA598. Thank you!	Dear zunaid final test, payment done successfully with #DONA598. Thank you!	1	1	80	2021-04-24 11:36:55	2021-04-24 11:36:55	598
49	44	Dear ganesh, payment done successfully with #DONA581. Thank you!	Dear ganesh, payment done successfully with #DONA581. Thank you!	1	1	81	2021-04-24 11:46:52	2021-04-24 11:46:52	581
50	44	Dear ganesh, payment done successfully with #DONA603. Thank you!	Dear ganesh, payment done successfully with #DONA603. Thank you!	1	1	82	2021-04-24 12:16:58	2021-04-24 12:16:58	603
51	44	Dear ganesh, payment done successfully with #DONA603. Thank you!	Dear ganesh, payment done successfully with #DONA603. Thank you!	1	1	83	2021-04-24 12:26:42	2021-04-24 12:26:42	603
52	281	Dear Ridhwaan, payment done successfully with #DONA604. Thank you!	Dear Ridhwaan, payment done successfully with #DONA604. Thank you!	1	1	84	2021-04-25 09:38:52	2021-04-25 09:38:52	604
53	258	Dear zunaid final test, payment done successfully with #DONA605. Thank you!	Dear zunaid final test, payment done successfully with #DONA605. Thank you!	1	1	85	2021-04-25 20:18:24	2021-04-25 20:18:24	605
54	261	Dear Reza Amra, payment done successfully with #DONA617. Thank you!	Dear Reza Amra, payment done successfully with #DONA617. Thank you!	1	1	86	2021-04-26 12:57:53	2021-04-26 12:57:53	617
55	44	Dear ganesh, payment done successfully with #DONA581. Thank you!	Dear ganesh, payment done successfully with #DONA581. Thank you!	1	1	87	2021-04-26 13:54:13	2021-04-26 13:54:13	581
56	261	Dear Reza Amra, payment done successfully with #DONA620. Thank you!	Dear Reza Amra, payment done successfully with #DONA620. Thank you!	1	1	88	2021-04-28 14:32:24	2021-04-28 14:32:24	620
57	201	test	<p>tesing</p>	0	1	101	2021-04-30 19:22:52	2021-04-30 19:22:52	\N
58	201	test	<p>tesing</p>	0	1	102	2021-04-30 19:23:00	2021-04-30 19:23:00	\N
59	201	test	<p>tesing</p>	0	1	103	2021-04-30 19:23:12	2021-04-30 19:23:12	\N
60	201	test	<p>tesing</p>	0	1	105	2021-04-30 19:25:04	2021-04-30 19:25:04	\N
61	201	test	<p>tesing</p>	0	1	106	2021-04-30 19:53:27	2021-04-30 19:53:27	\N
62	201	test	<p>tesing</p>	0	1	107	2021-04-30 19:54:49	2021-04-30 19:54:49	\N
63	201	test	<p>tesing</p>	0	1	108	2021-04-30 19:55:03	2021-04-30 19:55:03	\N
64	201	test	<p>tesing</p>	0	1	109	2021-04-30 19:55:25	2021-04-30 19:55:25	\N
65	201	test	<p>tesing</p>	0	1	110	2021-04-30 19:59:52	2021-04-30 19:59:52	\N
67	201	Dear Rajini, payment done successfully with #DONA644. Thank you!	Dear Rajini, payment done successfully with #DONA644. Thank you!	1	1	121	2021-05-06 16:11:52	2021-05-06 16:11:52	644
68	286	Dear Ramesh Kolla, payment done successfully with #DONA646. Thank you!	Dear Ramesh Kolla, payment done successfully with #DONA646. Thank you!	1	1	122	2021-05-06 17:07:55	2021-05-06 17:07:55	646
69	289	Dear Krishnakumar Devendiran, payment done successfully with #DONA647. Thank you!	Dear Krishnakumar Devendiran, payment done successfully with #DONA647. Thank you!	1	1	123	2021-05-07 14:56:29	2021-05-07 14:56:29	647
70	269	Dear Rabada h, payment done successfully with #DONA648. Thank you!	Dear Rabada h, payment done successfully with #DONA648. Thank you!	1	1	124	2021-05-07 16:58:19	2021-05-07 16:58:19	648
71	292	Dear Rohan, payment done successfully with #DONA649. Thank you!	Dear Rohan, payment done successfully with #DONA649. Thank you!	1	1	128	2021-05-08 16:25:46	2021-05-08 16:25:46	649
72	292	Dear Rohan, payment done successfully with #DONA650. Thank you!	Dear Rohan, payment done successfully with #DONA650. Thank you!	1	1	129	2021-05-08 17:37:05	2021-05-08 17:37:05	650
73	292	Dear Rohan, payment done successfully with #DONA652. Thank you!	Dear Rohan, payment done successfully with #DONA652. Thank you!	1	1	130	2021-05-10 12:05:10	2021-05-10 12:05:10	652
74	87	test push notification	test push notification	1	1	131	2021-05-10 12:43:30	2021-05-10 12:43:30	\N
75	71	test push notification	test push notification	1	1	131	2021-05-10 12:43:30	2021-05-10 12:43:30	\N
76	273	test push notification	test push notification	1	1	131	2021-05-10 12:43:31	2021-05-10 12:43:31	\N
77	272	test push notification	test push notification	1	1	131	2021-05-10 12:43:32	2021-05-10 12:43:32	\N
78	258	test push notification	test push notification	1	1	131	2021-05-10 12:43:32	2021-05-10 12:43:32	\N
79	192	test push notification	test push notification	1	1	131	2021-05-10 12:43:33	2021-05-10 12:43:33	\N
80	276	test push notification	test push notification	1	1	131	2021-05-10 12:43:33	2021-05-10 12:43:33	\N
81	180	test push notification	test push notification	1	1	131	2021-05-10 12:43:34	2021-05-10 12:43:34	\N
82	262	test push notification	test push notification	1	1	131	2021-05-10 12:43:35	2021-05-10 12:43:35	\N
83	236	test push notification	test push notification	1	1	131	2021-05-10 12:43:35	2021-05-10 12:43:35	\N
84	271	test push notification	test push notification	1	1	131	2021-05-10 12:43:36	2021-05-10 12:43:36	\N
85	197	test push notification	test push notification	1	1	131	2021-05-10 12:43:36	2021-05-10 12:43:36	\N
86	289	test push notification	test push notification	1	1	131	2021-05-10 12:43:37	2021-05-10 12:43:37	\N
87	282	test push notification	test push notification	1	1	131	2021-05-10 12:43:38	2021-05-10 12:43:38	\N
88	200	test push notification	test push notification	1	1	131	2021-05-10 12:43:38	2021-05-10 12:43:38	\N
89	269	test push notification	test push notification	1	1	131	2021-05-10 12:43:39	2021-05-10 12:43:39	\N
90	44	test push notification	test push notification	1	1	131	2021-05-10 12:43:39	2021-05-10 12:43:39	\N
91	261	test push notification	test push notification	1	1	131	2021-05-10 12:43:40	2021-05-10 12:43:40	\N
92	239	test push notification	test push notification	1	1	131	2021-05-10 12:43:41	2021-05-10 12:43:41	\N
93	188	test push notification	test push notification	1	1	131	2021-05-10 12:43:41	2021-05-10 12:43:41	\N
94	40	test push notification	test push notification	1	1	131	2021-05-10 12:43:42	2021-05-10 12:43:42	\N
95	257	test push notification	test push notification	1	1	131	2021-05-10 12:43:42	2021-05-10 12:43:42	\N
96	240	test push notification	test push notification	1	1	131	2021-05-10 12:43:43	2021-05-10 12:43:43	\N
97	43	test push notification	test push notification	1	1	131	2021-05-10 12:43:44	2021-05-10 12:43:44	\N
98	202	test push notification	test push notification	1	1	131	2021-05-10 12:43:44	2021-05-10 12:43:44	\N
99	196	test push notification	test push notification	1	1	131	2021-05-10 12:43:45	2021-05-10 12:43:45	\N
100	79	test push notification	test push notification	1	1	131	2021-05-10 12:43:46	2021-05-10 12:43:46	\N
101	187	test push notification	test push notification	1	1	131	2021-05-10 12:43:46	2021-05-10 12:43:46	\N
102	72	test push notification	test push notification	1	1	131	2021-05-10 12:43:47	2021-05-10 12:43:47	\N
103	281	test push notification	test push notification	1	1	131	2021-05-10 12:43:47	2021-05-10 12:43:47	\N
104	259	test push notification	test push notification	1	1	131	2021-05-10 12:43:48	2021-05-10 12:43:48	\N
105	212	test push notification	test push notification	1	1	131	2021-05-10 12:43:49	2021-05-10 12:43:49	\N
106	251	test push notification	test push notification	1	1	131	2021-05-10 12:43:49	2021-05-10 12:43:49	\N
107	34	test push notification	test push notification	1	1	131	2021-05-10 12:43:50	2021-05-10 12:43:50	\N
108	245	test push notification	test push notification	1	1	131	2021-05-10 12:43:50	2021-05-10 12:43:50	\N
109	201	test push notification	test push notification	1	1	131	2021-05-10 12:43:51	2021-05-10 12:43:51	\N
110	63	test push notification	test push notification	1	1	131	2021-05-10 12:43:52	2021-05-10 12:43:52	\N
111	35	test push notification	test push notification	1	1	131	2021-05-10 12:43:52	2021-05-10 12:43:52	\N
112	216	test push notification	test push notification	1	1	131	2021-05-10 12:43:53	2021-05-10 12:43:53	\N
113	213	test push notification	test push notification	1	1	131	2021-05-10 12:43:53	2021-05-10 12:43:53	\N
114	220	test push notification	test push notification	1	1	131	2021-05-10 12:43:54	2021-05-10 12:43:54	\N
115	274	test push notification	test push notification	1	1	131	2021-05-10 12:43:55	2021-05-10 12:43:55	\N
116	39	test push notification	test push notification	1	1	131	2021-05-10 12:43:55	2021-05-10 12:43:55	\N
117	223	test push notification	test push notification	1	1	131	2021-05-10 12:43:56	2021-05-10 12:43:56	\N
118	241	test push notification	test push notification	1	1	131	2021-05-10 12:43:56	2021-05-10 12:43:56	\N
119	36	test push notification	test push notification	1	1	131	2021-05-10 12:43:57	2021-05-10 12:43:57	\N
120	252	test push notification	test push notification	1	1	131	2021-05-10 12:43:57	2021-05-10 12:43:57	\N
121	31	test push notification	test push notification	1	1	131	2021-05-10 12:43:58	2021-05-10 12:43:58	\N
122	221	test push notification	test push notification	1	1	131	2021-05-10 12:43:59	2021-05-10 12:43:59	\N
123	253	test push notification	test push notification	1	1	131	2021-05-10 12:43:59	2021-05-10 12:43:59	\N
124	66	test push notification	test push notification	1	1	131	2021-05-10 12:44:00	2021-05-10 12:44:00	\N
125	277	test push notification	test push notification	1	1	131	2021-05-10 12:44:01	2021-05-10 12:44:01	\N
126	195	test push notification	test push notification	1	1	131	2021-05-10 12:44:01	2021-05-10 12:44:01	\N
127	207	test push notification	test push notification	1	1	131	2021-05-10 12:44:02	2021-05-10 12:44:02	\N
128	194	test push notification	test push notification	1	1	131	2021-05-10 12:44:02	2021-05-10 12:44:02	\N
129	99	test push notification	test push notification	1	1	131	2021-05-10 12:44:03	2021-05-10 12:44:03	\N
130	224	test push notification	test push notification	1	1	131	2021-05-10 12:44:03	2021-05-10 12:44:03	\N
131	32	test push notification	test push notification	1	1	131	2021-05-10 12:44:04	2021-05-10 12:44:04	\N
132	230	test push notification	test push notification	1	1	131	2021-05-10 12:44:05	2021-05-10 12:44:05	\N
133	222	test push notification	test push notification	1	1	131	2021-05-10 12:44:05	2021-05-10 12:44:05	\N
134	247	test push notification	test push notification	1	1	131	2021-05-10 12:44:06	2021-05-10 12:44:06	\N
135	38	test push notification	test push notification	1	1	131	2021-05-10 12:44:06	2021-05-10 12:44:06	\N
136	193	test push notification	test push notification	1	1	131	2021-05-10 12:44:07	2021-05-10 12:44:07	\N
137	254	test push notification	test push notification	1	1	131	2021-05-10 12:44:08	2021-05-10 12:44:08	\N
138	248	test push notification	test push notification	1	1	131	2021-05-10 12:44:08	2021-05-10 12:44:08	\N
139	191	test push notification	test push notification	1	1	131	2021-05-10 12:44:09	2021-05-10 12:44:09	\N
140	256	test push notification	test push notification	1	1	131	2021-05-10 12:44:09	2021-05-10 12:44:09	\N
141	33	test push notification	test push notification	1	1	131	2021-05-10 12:44:10	2021-05-10 12:44:10	\N
142	76	test push notification	test push notification	1	1	131	2021-05-10 12:44:10	2021-05-10 12:44:10	\N
143	270	test push notification	test push notification	1	1	131	2021-05-10 12:44:11	2021-05-10 12:44:11	\N
144	292	Dear Rohan, payment done successfully with #DONA656. Thank you!	Dear Rohan, payment done successfully with #DONA656. Thank you!	1	1	133	2021-05-12 08:36:57	2021-05-12 08:36:57	656
145	191	Dear bssbbs, payment done successfully with #DONA660. Thank you!	Dear bssbbs, payment done successfully with #DONA660. Thank you!	1	1	134	2021-05-16 07:20:42	2021-05-16 07:20:42	660
146	191	Dear bssbbs, payment done successfully with #DONA661. Thank you!	Dear bssbbs, payment done successfully with #DONA661. Thank you!	1	1	135	2021-05-16 07:40:16	2021-05-16 07:40:16	661
147	191	Dear bssbbs, payment done successfully with #DONA662. Thank you!	Dear bssbbs, payment done successfully with #DONA662. Thank you!	1	1	136	2021-05-16 07:41:26	2021-05-16 07:41:26	662
148	191	Dear bssbbs, payment done successfully with #DONA666. Thank you!	Dear bssbbs, payment done successfully with #DONA666. Thank you!	1	1	137	2021-05-16 08:24:34	2021-05-16 08:24:34	666
149	191	Dear bssbbs, payment done successfully with #DONA667. Thank you!	Dear bssbbs, payment done successfully with #DONA667. Thank you!	1	1	138	2021-05-16 14:51:31	2021-05-16 14:51:31	667
150	191	Dear bssbbs, payment done successfully with #DONA668. Thank you!	Dear bssbbs, payment done successfully with #DONA668. Thank you!	1	1	139	2021-05-16 15:29:44	2021-05-16 15:29:44	668
151	191	Dear bssbbs, payment done successfully with #DONA669. Thank you!	Dear bssbbs, payment done successfully with #DONA669. Thank you!	1	1	140	2021-05-16 17:28:56	2021-05-16 17:28:56	669
152	191	Dear bssbbs, payment done successfully with #DONA670. Thank you!	Dear bssbbs, payment done successfully with #DONA670. Thank you!	1	1	141	2021-05-16 17:30:56	2021-05-16 17:30:56	670
153	191	Dear bssbbs, payment done successfully with #DONA671. Thank you!	Dear bssbbs, payment done successfully with #DONA671. Thank you!	1	1	142	2021-05-16 17:37:16	2021-05-16 17:37:16	671
154	191	Dear bssbbs, payment done successfully with #DONA672. Thank you!	Dear bssbbs, payment done successfully with #DONA672. Thank you!	1	1	143	2021-05-16 17:40:17	2021-05-16 17:40:17	672
155	191	Dear bssbbs, payment done successfully with #DONA673. Thank you!	Dear bssbbs, payment done successfully with #DONA673. Thank you!	1	1	144	2021-05-16 17:50:46	2021-05-16 17:50:46	673
156	191	Dear bssbbs, payment done successfully with #DONA674. Thank you!	Dear bssbbs, payment done successfully with #DONA674. Thank you!	1	1	145	2021-05-16 17:52:01	2021-05-16 17:52:01	674
157	191	Dear bssbbs, payment done successfully with #DONA675. Thank you!	Dear bssbbs, payment done successfully with #DONA675. Thank you!	1	1	146	2021-05-16 18:00:40	2021-05-16 18:00:40	675
158	8	Dear seetha, payment done successfully with #DONA676. Thank you!	Dear seetha, payment done successfully with #DONA676. Thank you!	1	1	147	2021-05-18 09:37:17	2021-05-18 09:37:17	676
159	269	Dear Rabada h, payment done successfully with #DONA648. Thank you!	Dear Rabada h, payment done successfully with #DONA648. Thank you!	1	1	148	2021-05-18 10:20:20	2021-05-18 10:20:20	648
160	269	Dear Rabada h, payment done successfully with #DONA648. Thank you!	Dear Rabada h, payment done successfully with #DONA648. Thank you!	1	1	149	2021-05-19 08:59:30	2021-05-19 08:59:30	648
161	269	Dear Rabada h, payment done successfully with #DONA648. Thank you!	Dear Rabada h, payment done successfully with #DONA648. Thank you!	1	1	150	2021-05-19 09:02:21	2021-05-19 09:02:21	648
162	292	Dear Rohan, payment done successfully with #DONA679. Thank you!	Dear Rohan, payment done successfully with #DONA679. Thank you!	1	1	151	2021-05-19 09:16:36	2021-05-19 09:16:36	679
163	269	Dear Rabada h, payment done successfully with #DONA648. Thank you!	Dear Rabada h, payment done successfully with #DONA648. Thank you!	1	1	152	2021-05-19 17:52:04	2021-05-19 17:52:04	648
164	292	Dear Rohan, payment done successfully with #DONA684. Thank you!	Dear Rohan, payment done successfully with #DONA684. Thank you!	1	1	153	2021-05-20 07:25:23	2021-05-20 07:25:23	684
165	292	Dear Rohan, payment done successfully with #DONA685. Thank you!	Dear Rohan, payment done successfully with #DONA685. Thank you!	1	1	154	2021-05-20 07:42:42	2021-05-20 07:42:42	685
166	258	Dear zunaid final test, payment done successfully with #DONA433. Thank you!	Dear zunaid final test, payment done successfully with #DONA433. Thank you!	1	1	155	2021-05-28 08:24:11	2021-05-28 08:24:11	433
167	258	Dear zunaid final test, payment done successfully with #DONA433. Thank you!	Dear zunaid final test, payment done successfully with #DONA433. Thank you!	1	1	156	2021-05-28 08:24:30	2021-05-28 08:24:30	433
\.


--
-- Data for Name: organisations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.organisations (id, email, hash_password, phone_number, country_id, city_id, organisation_name, ngo_leadership, area_of_operation, organisation_location, awards_recognitions, about_organisation, organisation_logo, is_verified, active_status, created_at, updated_at, certificate, is_18a_verified, mob_organisation_logo, contact_person, telephone_number, other_pics, website_url, facebook_url, instagram_url, linkedin_url, url_index, is_islamic, religious_names, organisation_banner, register_number, trading_name, account_info_email, physical_address, landline, vat_number) FROM stdin;
229	fathima@sultanbahu.co.za	e10adc3949ba59abbe56e057f20f883e	0795159214	\N	\N	Sultan Bahu Centre	\N	\N	96 3rd Avenue, Mayfair, Johannesburg, South Africa		Sultan Bahu Centre	229.PNG	1	1	2021-08-10 12:28:47	2021-08-11 16:14:02	229.jpg	0	229.PNG	S.A.A Ismail	\N	\N	http://www.sbc.org.za/				sultan-bahu-centre	0	\N	image_1.png	1995/07972/08	Sultan Bahu Centre	fathima@sultanbahu.co.za	96 3rd Avenue, Mayfair, Johannesburg, South Africa	0823735575	0823735575
228	knash@thanda.org	e10adc3949ba59abbe56e057f20f883e	0712664335	\N	\N	Thannda After School	\N	\N	801 Bradfield Road, Wood Grange, Hibberdene, South Africa		Thanda was established in 2008 to provide critically needed support for the increasing number of children who were orphaned or made vulnerable by the HIV/AIDS epidemic. Over the years, Thanda has evolved to provide holistic support for all children and families living in rural communities throughout the Ugu District of KwaZulu-Natal. All of our project staff is hired locally – most of whom are between 18 and 35. Our solar-powered Community Centre, the central hub of our operations, is home to six ECD classrooms, a facilitator resource Centre, and the only library, art Centre, and skatepark in the entire community. Our core initiatives aim to develop five lifelong learning skills: creativity, empathy, self-esteem, perspective, and critical thinking.\r\n\r\nThanda's core initiatives are:\r\nEarly Learning: Gives children the foundational skills necessary for a positive start in life through inquiry-based learning and imaginative play.\r\nEducation: Through after-school programmes, extracurricular activities, and workshops/events, we aim to develop resilient, lifelong learners who are inspired to create a better world.\r\nOrganic Farming: Ongoing mentoring and support are provided to struggling local farmers to empower them to sustainably improve household nutrition, strengthen self-reliance, and build a local economy.	228.jpg	1	1	2021-08-10 12:06:14	2021-08-12 12:38:52	228.png	0	228.png	Angela Larkan	\N	\N	http://www.thanda.org/	https://web.facebook.com/thandaproject	https://www.instagram.com/thandaproject/		thannda-after-school	0	\N	image_1.jpg	085 - 981 - NPO	Thannda After School	info@thanda.org	801 Bradfield Road, Wood Grange, Hibberdene, South Africa	0396991253	4070270311
226	pr@carthorse.org.za	e10adc3949ba59abbe56e057f20f883e	0765547097	\N	\N	Cart Horse Protection Association	\N	\N	92 Bofors Circle, Epping, Cape Town, South Africa		Cart Horse Protection Association	226.jpg	1	1	2021-08-10 10:52:53	2021-08-12 10:26:19	226.PNG	0	226.jpg	Marike Kotze	\N	\N	https://carthorse.org.za/		https://www.instagram.com/carthorseprotection/	https://www.linkedin.com/company/cart-horse-protection-association	cart-horse-protection-association	0	\N	image_1.jpg	005 - 761 NPO	Cart Horse Protection Association	info@carthorse.org.za	92 Bofors Circle, Epping, Cape Town, South Africa	0215353435	4530213091
227	heidi@hallitrust.co.za	e10adc3949ba59abbe56e057f20f883e	0823396876	\N	\N	Halli Trust	\N	\N	17 Romulus Street, Rome Glen, Cape Town, South Africa		Halli Trust stands in the GAP for our precious communities through EDUCATION\r\nHalli Trust was established on 17 September 2010 by the Naude family. Heidi’s father passed away in 2008 and left her with an inheritance. Martin Naude, founder of Halli Trust was inspired and with a grateful heart suggested they open an NPO. The intention was to make a difference in lives by moving hearts and changing lives forever.\r\n\r\nHalli Trust Vision\r\nTo have Halli Trust become a self-sustaining NPO with the ability to spread its wings both across and beyond the Helderberg Region. To have an outcome to measure and observe the change, impact people can make in their communities and their lives.\r\n\r\nEducational Involvement\r\nHalli, our cool mascot is an Akita Japanese dog. He is a fun and loving mascot. Halli assists us with various educational talks on Wednesdays and Thursdays.\r\nWe would appreciate a R5 contribution from the children towards a Halli Visits, although a goods donation will be appreciated.\r\n\r\nVision\r\nThrough our educational talks, we want to leave seeds of knowledge in children’s minds that educators and parents can further develop.\r\n\r\nCommunity Involvement\r\nWe assess clients at their homes (Helderberg area) to establish the context of their circumstances. We determine the immediate need, to enable us to plan our assistance to the individual/family. We assist in their physical and emotional needs for a short period. We welcome any donations.\r\n\r\nVision\r\nCommunity: To assist families/individuals for a short period of time and for the family to sustain themselves again.\r\n\r\nAdditional Community Involvement\r\nHalli Clubs (8 - 10-year-old children) and Halli Leaders (11 – 18-year-old children)\r\nNeedle Work Club\r\n\r\nVision\r\nHalli Clubs: Our vision is to ensure that we invested in children who want to go out and not just to be the CHANGE but to be leaders, work hard and make a difference. We want children who are prepared to be forerunners for their generation.\r\nNeedlework: To empower women through a sisterhood to learn a new skill. The skill can be implemented to start an own sewing business or to be creative at home.\r\n\r\nRehabilitation and Caring of Animals\r\nWe promote the care of animals in our community (Helderberg area) by educating the owners on the needs of animals and the owners’ responsibilities. We assist owners to sterilize their animals.\r\nWe welcome any donations.\r\n\r\nVision\r\nTo educate owners to take proper care of their animals.	227.jpg	1	1	2021-08-10 11:04:17	2021-08-12 10:40:13	227.PNG	0	227.jpg	Heidi Naude	\N	\N	www. hallitrust.co.za	https://www.facebook.com/hallitrust			halli-trust	0	\N	image_1.jpg	086 - 574 NPO	Halli Trust	heidi@hallitrust.co.za	17 Romulus Street, Rome Glen, Cape Town, South Africa	0218519591	4500291614
225	info@brainlife.co.za	e10adc3949ba59abbe56e057f20f883e	0837361756	\N	\N	Brainlife	\N	\N	513 Rossouw Street, Die Wilgers, Pretoria, South Africa		Acquired brain injury is known as the “silent epidemic” because it is an illness that largely remains hidden in the shadows. Acquired brain injury refers to any injury that occurs to the brain after birth. There can be many possible causes, including assault, accidents, tumors and strokes. That’s why Brainlife is on a mission to provide long-term support for people with acquired brain injury and for their loved ones.\r\n\r\nBrainlife provides counselling and support for people with acquired brain injury through our group therapy activities and income-generating programmes. We focus on a range of cognitive behavioral therapy techniques, as well as physical arts and crafts	225.jpg	1	1	2021-08-09 14:41:26	2021-08-12 09:13:36	225.jpg	0	225.jpg	Cindy Holtzhausen	\N	\N	https://www.brainlife.co.za	https://www.facebook.com/BrainLifeNPO	https://www.instagram.com/brainlifenpo/		brainlife	0	\N	image_1.jpg	171 - 162 NPO	Brainlife	info@brainlife.co.za	513 Rossouw street, Die Wilgers, 0050	0837361756	9072375240
231	yasmina.francke@sanzaf.org.za	e10adc3949ba59abbe56e057f20f883e	0798916691	\N	\N	South African National Zakah Fund	\N	\N	381 Lower Main Road, Salt River, Cape Town, South Africa		The South African National Zakah Fund (SANZAF) is a faith-based socio - welfare and educational organisation that strives to facilitate the empowerment of needy families through the efficient collection and effective distribution of Zakah and other Sadaqah in a proactive and cost effective way through projects with dignity, sincerity and a shared responsibility, all in the service of the community and for the pleasure of Allah (SWT).	231.jpg	1	1	2021-08-10 13:28:04	2021-08-12 13:07:51	231.PNG	0	231.png	Yasmina Francke	\N	\N	www. sanzaf.org.za	https://www.facebook.com/SANZAF	https://www.instagram.com/sanzaf_official/	https://www.linkedin.com/company/sanzaf/mycompany/	south-african-national-zakah-fund	0	\N	image_1.png	007-160 NPO	South African National Zakah Fund	rageema.jacobs@sanzaf.org.za	381 Lower Main Road, Salt River, Cape Town, South Africa	0214470297	4320215348
232	kathija@iqraatrust.org	e10adc3949ba59abbe56e057f20f883e	0312012911	\N	\N	Iqraa Trust SA	\N	\N	15/17 Hunt Road, Bulwer, Berea, KwaZulu-Natal, South Africa		Iqraa Trust SA	232.jpg	1	1	2021-08-10 14:04:32	2022-11-08 09:57:01	232.PNG	1	232.jpg	Dr M.Y Baker	\N	\N	http://www.iqraatrust.org/	https://www.facebook.com/Iqraa-Trust-South-Africa-103236546418747/	https://www.instagram.com/iqraatrust/		iqraa-trust-sa	0	\N	image_1.png	059-150-NPO	Iqraa Trust SA	msayed@iqraatrust.org	15/17 Hunt Road, Glenwood	0312012911	4890170741
230	masoom@khidmatulkhalq.org.za	56f1d0b33578f4ac65f1f5f69240cd54	0871535786	\N	\N	Khidmatul Khalq Foundation of South Africa NPC	\N	\N	693 Peter Mokaba Road, Essenwood, Berea, 4001, South Africa		To feed and provide humanitarian services to the most\r\nvulnerable and needy when the need arises, be it in a crisis or non-crisis\r\n situation. To support education by providing meals to needy learners at\r\n schools so as to improve their ability to attend school and to\r\n learn. To provide financial aid and/or assistance to poor and indigent\r\n families. To promote and encourage the development and empowerment\r\n of the poor and needy to be self-sufficient and self-empowered,\r\n thereby reducing poverty. To provide primary health care education and awareness. To provide bursaries and scholarships. To provide boreholes in areas that are in dire need of water\r\n supply	230.png	1	1	2021-08-10 12:59:12	2023-03-04 12:56:48	230.PNG	1	230.jpg	M.M. Bagdadi	\N	\N	http://www.khidmatulkhalq.org.za				khidmatul-khalq-foundation-of-south-africa-npc	0	\N	image_1.png	2019/147197/08	Khidmatul Khalq Foundation of South Africa NPC	masoom@khidmaulkhalq.org.za	693 Peter Mokaba Road, Essenwood, Berea, 4001, South Africa	0871535786	-
\.


--
-- Data for Name: organisations_basic_info; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.organisations_basic_info (id, organization_id, director_name, director_identitynum, director_phone, director_email, account_person, account_identitynum, account_phone, account_email, technical_person, technical_identitynum, technical_phone, technical_email, bank_name, bank_branch_code, bank_account_type, bank_account_email, director_sign_image, bank_letter, utility_bill_proof, card_name, card_number, expired_date, card_cvv, authorize_name, authorize_date, authorize_place, authorize_signature, bank_account_num) FROM stdin;
44	232	Dr M.Y Baker	5407095197184	0312012911	myoussef@iqraatrust.org	Kathija Rahim	7705110103089	0312012911	kathija@iqraatrust.org	Mariam Sayed	-	0312012911	msayed@iqraatrust.org	ABSA	632005	Current Account	msayed@iqraatrust.org	image_d.png	image_b.PNG	image_p.png	Iqraa Trust SA	1111222233334444	0122	123	Dr M.Y Baker	2021-08-11	South Africa	auth_sign.png	4059935668
42	230	M.M. Bagdadi	7007135261087	0747869232	masoom@khidmaulkhalq.org.za	M.M. Bagdadi	7007135261087	0747869232	masoom@khidmaulkhalq.org.za	M.M. Bagdadi	7007135261087	0747869232	masoom@khidmaulkhalq.org.za	ABSA	632005	Business Cheque	masoom@khidmaulkhalq.org.za	image_d.png	image_b.PNG	image_p.png	Khidmatul Khalq Foundation of South Africa NPC	1111222233334444	0122	123	M.M. Bagdadi	2021-08-11	South Africa	auth_sign.png	4097089570
34	225	Cindy Holtzhausen	7909010191083	0837361756	cindy@brainlife.co.za	Hester Teron	7808040047085	0834464713	info@brainlife.co.za	Annerie De Beer	8101220081085	0722623586	annerie@brainlife.co.za	FNB	250655	Business Cheque	info@brainlife.co.za	image_d.jpg	image_b.jpg	image_p.jpg	Brainlife	1111222233334444	0122	123	Cindy Holtzhausen	2021-08-11	Pretoria	auth_sign.jpg	62591604345
40	228	Angela Larkan	8310050040083 	0396991253	alarkan@thanda.org	Gina Buchanan	5502010128080	0396991253	gbuchanan@thanda.org	Angela Larkan	8310050040083 	0396991253	alarkan@thanda.org	NEDBANK	198766	Current Account	info@thanda.org	image_d.png	image_b.png	image_p.png	Thannda After School	1111222233334444	0122	123	Angela Larkan	2021-08-11	South Africa	auth_sign.png	1398137375
35	226	Penny Lankester	7002090059089	0826126970	penny@carthorse.org.za	Carl Naude	7304115019084	0826126970	info@carthorse.org.za	Marike Kotze	7903200022083	0765547097	pr@carthorse.org.za	NEDBANK	198765	Current Account	info@carthorse.org.za	image_d.jpg	image_b.jpg	image_p.jpg	Cart Horse Protection Association	1111222233334444	0122	123	Penny Lankester	2021-08-11	Epping, Cape Town	auth_sign.jpg	1046395998
39	227	Heidi Naude	6808260025085	2782339687	heidi@hallitrust.co.za	Jerome Hindley	6808305132086	0788496116	jerome.hindley@gmail.com	Moriza Albrecht	7309090004084	0783965101	jerome.hindley@gmail.com	ABSA	632005	Current Account	heidi@hallitrust.co.za	image_d.jpg	image_b.jpg	image_p.jpg	Halli Trust	1111222233334444	0122	123	Heidi Naude	2021-08-11	Somerset West	auth_sign.jpg	4089732296
41	229	S.A.A Ismail	510075114086	0823735575	fathima@sultanbahu.co.za	Fathima Saib	7912080048084	0747869232	fathima@sultanbahu.co.za	Zaid Williams	8908165266087	0618472612	zaid@sultanbahu.co.za	STANDARD BANK	005205	Business Cheque	fathima@sultanbahu.co.za	image_d.png	image_b.png	image_p.png	Sultan Bahu Centre	1111222233334444	0122	123	S.A.A Ismail	2021-08-11	South Africa	auth_sign.png	002504081
43	231	Yasmina Francke	6506080143084	0798916691	yasmina.francke@sanzaf.org.za	Rageema Jacobs	7206120523085	2784531109	rageema.jacobs@sanzaf.org.za	Nazeer Vadia	8901135169085	0799749967	nazeer.vadia@sanzaf.org.za	STANDARD BANK	051001	Business Cheque	rageema.jacobs@sanzaf.org.za	image_d.PNG	image_b.PNG	image_p.PNG	South African National Zakah Fund	1111222233334444	0122	123	Yasmina Francke	2021-08-11	Cape Town	auth_sign.png	011471263
\.


--
-- Data for Name: organization_interest_areas; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.organization_interest_areas (id, organization_id, category_id) FROM stdin;
992	225	6
993	225	45
994	225	20
995	226	44
996	226	38
997	226	20
998	227	44
999	227	2
1000	227	45
1001	227	12
1002	227	5
1006	228	2
1007	228	38
1008	228	5
1013	231	2
1014	231	45
1015	231	12
1016	231	15
973	229	44
974	229	38
975	229	45
976	229	20
1023	232	2
1024	232	12
1025	232	5
1026	230	2
1027	230	45
1028	230	12
1029	230	5
977	229	12
978	229	5
\.


--
-- Data for Name: organization_payment_gateways; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.organization_payment_gateways (id, organization_id, gateway_name, merchant_account_id, merchant_key, merchant_secret_key, merchant_password, payment_mode, merchant_status, created_at, updated_at, sitecode) FROM stdin;
101	229	OZOW	123456789	123456789	-	-	1	0	2021-08-11 16:14:02	2021-08-11 16:14:02	123456
106	225	OZOW	123456789	123456789	-	-	1	0	2021-08-12 09:13:36	2021-08-12 09:13:36	123456789
107	226	OZOW	123456789	123456789	-	-	1	0	2021-08-12 10:26:19	2021-08-12 10:26:19	123456
108	227	OZOW	123456789	123	-	-	1	0	2021-08-12 10:40:13	2021-08-12 10:40:13	123456
110	228	OZOW	123456789	123456789	-	-	1	0	2021-08-12 12:38:52	2021-08-12 12:38:52	123456
112	231	OZOW	123456789	123456789	-	-	1	0	2021-08-12 13:07:51	2021-08-12 13:07:51	123456
115	232	OZOW	123456789	123456789	-	-	1	0	2022-11-08 09:57:01	2022-11-08 09:57:01	123456
116	230	OZOW	123456789	123456789	-	-	1	0	2023-03-04 12:56:48	2023-03-04 12:56:48	123456
\.


--
-- Data for Name: organization_project_info; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.organization_project_info (id, organization_id, website_url, facebook_url, instagram_url, linkedin_url, project_name, about_project, project_logo, project_org_header_image, project_header_image_one, project_header_image_two) FROM stdin;
59	221	url1	url1	url1	url1	project 1	about project1	image_o.png	image_1.png,image_2.png	image_1.png,image_2.png,image_3.png	image_1.png,image_2.png
60	221	url2	url2	url2	url2	project 2	about project2	image_o.png	image_1.png,image_2.png	image_1.png,image_2.png	image_1.png,image_2.png,image_3.jpg
61	221	url3	url3	url3	url3	project 3	about project3	image_o.png	image_1.png,image_2.png	image_1.png,image_2.png	image_1.png,image_2.png
67	222	demo1	demo1	demo1	demo1	demo1	demo1	\N	\N	\N	\N
68	222	demo2	demo2	demo2	demo2	demo2	demo2	\N	\N	\N	\N
12	2										
13	15										
14	17										
15	27										
16	51										
17	203										
18	204										
19	205										
20	206										
69	222					Project 3		\N	image_1.png,image_2.png	\N	\N
37	221	url2	url2	url2	url2	project2	about project2	image_1.png	image_1.jpg,image_2.png,image_3.png	image_1.png,image_2.png,image_3.png,image_4.png	image_1.png,image_2.png
\.


--
-- Data for Name: package; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.package (id, expiry_days, price, created_at, updated_at, active_status) FROM stdin;
20	30	299	2021-03-12 19:15:17	2021-04-14 18:37:00	1
21	90	499	2021-03-12 19:29:05	2021-04-14 18:37:18	1
25	180	999	2021-09-17 07:19:09	2021-09-17 07:19:09	1
31	90	0	2021-05-10 19:30:45	2022-09-06 17:12:21	1
\.


--
-- Data for Name: package_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.package_infos (language_id, package_name, package_description, info_id, id) FROM stdin;
1	Basic	Basic Plan Description	29	20
1	Standard	Standard Plan Description	30	21
1	Premium	Premium Plan Description	36	25
1	3 Months Free	Our 3 Months Free Plan	37	31
\.


--
-- Data for Name: package_logs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.package_logs (id, package_id, user_id, expiry_date, created_date, package_transid) FROM stdin;
\.


--
-- Data for Name: package_transaction; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.package_transaction (package_name, package_description, price, expiry_date, payment_date, organisation_id, package_status, payment_status, id, transaction_id, payment_type, payment_method, package_id, status_message, invoice_id, reference_id, "package_18A") FROM stdin;
\.


--
-- Data for Name: password_resets; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.password_resets (email, token, created_at) FROM stdin;
vishaladmin@mailinator.com	107f30564863921619321e160083fdc46e6d43c3e30e484017f857df42fd6779	2018-07-13 13:49:19
info@instamall.com	3f27d14150920baedd536ec667c835fcc1fa186b94289c4c402a3717ebc18b12	2018-08-13 13:59:01
vishal@mailinator.com	2a837a29dc06738d902d891ba0561590567c8382e88d8b84a1997e942334b4ee	2018-08-13 13:59:13
admin@mailinator.com	466d5312b62ebf954b8cc26e1ddb2e467b8d3d27a6483b1234d2bc0203620e2e	2019-05-30 10:36:01
\.


--
-- Data for Name: programs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.programs (id, category_id, status, created_at, updated_at, image, created_by, url_index, help_first, organisation_id, npo_week, lat, lng, tag_ids, program_banner) FROM stdin;
76	20	1	2021-08-12 10:13:50	2022-10-17 15:26:10	76.jpg	1	support-and-councelling	0	225	1	-24.3407008	30.5797128	4	76.png
75	6	1	2021-08-12 09:29:29	2022-10-17 15:26:41	75.jpg	1	kaofela-income-generation-programme	0	225	1	-25.7234441	28.4221519	33	75.png
78	5	1	2021-08-12 10:46:53	2021-08-12 11:00:24	78.jpg	1	community-involvement	0	227	1	-34.1298863	18.9064427	9,24	78.png
80	38	1	2021-08-12 12:42:26	\N	80.jpg	1	organic-farming	0	228	1	-30.4923476	30.6228659	14	80.png
77	44	1	2021-08-12 10:29:51	2022-11-08 09:44:09	77.jpg	1	cart-horse-protection-association	0	226	1	-33.9248685	18.4240553	7,15,36	77.png
79	2	1	2021-08-12 10:59:15	2022-11-08 09:45:18	79.jpg	1	educational-involvement	0	227	1	-33.9248685	18.4240553	9	79.png
83	12	1	2021-08-12 13:23:57	\N	83.jpg	1	winter-warmth	0	231	1	-30.559482	22.937506	3	83.png
84	2	1	2021-08-12 13:37:43	2022-11-08 10:01:04	84.jpg	1	iqraa-trust-knowledge-centre	0	232	1	-29.85868039999999	31.0218404	9	84.png
91	12	1	2021-08-12 14:23:57	2023-02-10 14:19:41	91.png	1	winter-warmth-programme	1	230	1	-29.6521278	31.0392436	3	91.png
85	12	1	2021-08-12 13:45:58	\N	85.jpg	1	orphans-endowment-fund	0	232	1	-30.559482	22.937506	3,9	85.png
82	2	1	2021-08-12 13:16:56	2023-02-20 11:38:40	82.jpg	1	seed-programme	0	231	1	-29.7330347	31.0592806	9	82.png
90	12	1	2021-08-12 14:19:53	2023-03-04 12:57:18	90.png	1	humanitarian-services	0	230	1	-29.702788	31.0048384	3,34,39	90.png
89	2	1	2021-08-12 14:13:34	2023-03-04 12:57:41	89.png	1	primary-health-care-services	0	230	1	-30.559482	22.937506	9,39	89.png
88	5	1	2021-08-12 14:10:22	2023-03-04 12:57:51	88.png	1	skills-development	0	230	1	-30.559482	22.937506	31,39	88.png
87	12	1	2021-08-12 14:07:45	2023-03-04 12:58:00	87.png	1	food-hampers	0	230	1	-30.559482	22.937506	34,39	87.png
86	45	1	2021-08-12 14:04:57	2023-03-04 12:58:10	86.png	1	school-feeding-initiative	0	230	1	-30.559482	22.937506	34,39	86.png
81	2	0	2021-08-12 12:46:20	2022-01-31 17:26:03	81.jpg	1	early-learning	1	228	1	-30.4923476	30.6228659	9	81.png
\.


--
-- Data for Name: programs_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.programs_infos (info_id, program_id, program_name, short_description, full_description, language_id, program_location, program_update, min_amount, max_amount, range1_amount, range2_amount, range3_amount, about_program) FROM stdin;
279	81	Early Learning	Early Learning programmes are non-existent in most corners of our community, so Thanda’s Early Learning programmes fill a critical void for our youngest community members, providing quality learning opportunities to ensure proper physical, cognitive, and social-emotional development – giving children everything they need for a positive start in life.	Early Learning programmes are non-existent in most corners of our community, so Thanda’s Early Learning programmes fill a critical void for our youngest community members, providing quality learning opportunities to ensure proper physical, cognitive, and social-emotional development – giving children everything they need for a positive start in life.\r\n\r\nUnder normal circumstances, our Early Learning Programmes occur either at our Community Centre or at our smaller satellite ECD centre – supporting a total of 125 children between the ages of 3 and 5 years old.\r\n\r\nAll of Early Learning Programmes came to a halt in 2020, but we could continue supporting children through a Learning at Home programme, which our staff developed in response to the strict national lockdown last year. Keeping young minds active and engaged is absolutely critical during children’s formative years, so our team put together fun, experiential curriculum packets that guardians could easily implement with their children using everyday household items.\r\n\r\nOnce the lockdown restrictions eased, we shifted all of our Early Learning Programmes to a community-based model (Neighbourhoods ECD), enabling children to learn in small groups right in the safety of their own neighbourhood.\r\n\r\nKey Programme Features:\r\n\r\nDaily Early Learning Programming & Nutritious Meals:\r\nChildren attend Neighbourhoods ECD daily (Monday through Friday) from 9 a.m. to 1 p.m. and receive morning porridge, a snack, and a nutritious meal.\r\n\r\nContextually Relevant Curriculum:\r\nOur early learning curriculum is aligned with the South African National Curriculum Framework for Children from birth to four. It also integrates principles from the Circle of Courage — a Native American methodology that helps us balance the ideas of Belonging, Independence, Mastery and Generosity — and a focus on the development of lifelong learning skills. These concepts are seamlessly integrated into all of our lessons and taught through the lens of children’s stories and fables which are reinforced through imaginative play and inquiry-based projects.\r\n\r\nSmall-Group, Community-Based Format:\r\nThe intention of our Neighbourhoods ECD Programme is to enable children to attend ECD programming each day in the safety of their own neighbourhoods. Children are split among small neighbourhood groups, each of which is led by one of Thanda’s qualified facilitators who lives in the area. Neighbourhoods ECD sessions take place in a community member’s back yard or an extra hut on someone’s property if there is one available.\r\n\r\nCOVID-19 Protocols:\r\nFragmenting these groups helps us adhere to recommended guidelines for social distancing and ensure that any potential outbreak remains contained in one corner of the community. Tippy tap handwashing stations are installed at all Neighbourhoods ECD sites and serviced by our staff regularly to ensure that there is always soap and running water available. Our Neighbourhoods ECD staff take care to ensure that children’s temperatures are monitored daily and to make sure that toys and educational resources are disinfected regularly.\r\n\r\nGuardian Support & Household Gardening Training:\r\nAs an extension to this programme, our staff visits the household of every child enrolled once per month. During these visits, our facilitators provide personalised feedback to guardians so that they can better support their children’s learning and development at home. Facilitators also deliver a Monthly Activity Pack, which includes one book for children to keep at home and a curriculum packet chock-full of activities based on the book for that month. We also offer gardening training for households that want to grow their own vegetables at home.\r\n\r\nGoals and Objectives:\r\nThe ultimate goal of this programme is that children develop foundational and lifelong learning skills defined by our Early Learning Assessment Framework, which utilises benchmarks from the National Curriculum Framework and our benchmarks. There are eight broad learning areas for this programme, each with its own skills and corresponding benchmarks/indicators.\r\n\r\nKey skills development areas:\r\n- Social & Emotional Development\r\n- Physical Development\r\n- Numeracy\r\n- Language & Literacy\r\n- Knowledge & Skills\r\n- Creative Arts\r\n- Belonging\r\n- Cognitive & Perceptual Development\r\n\r\nInternal Programme Goals:\r\n- At least 75% of children achieve grade-level milestones\r\n- Children have appropriate skills for their age level, regardless of their socio-economic situation (benchmarked using the Early Learning Outcomes Measure Assessment)\r\n- Guardians are more engaged in the learning and overall development of their children\r\n- Increase in number of children accessing medical care\r\n- Children have increased access to proper nutrition	1	Mtwalume, 4186, South Africa	NIL	10	10000	10	100	1000	Early Learning programmes are non-existent in most corners of our community, so Thanda’s Early Learning programmes fill a critical void for our youngest community members, providing quality learning opportunities to ensure proper physical, cognitive, and social-emotional development – giving children everything they need for a positive start in life.\r\n\r\nUnder normal circumstances, our Early Learning Programmes occur either at our Community Centre or at our smaller satellite ECD centre – supporting a total of 125 children between the ages of 3 and 5 years old.\r\n\r\nAll of Early Learning Programmes came to a halt in 2020, but we could continue supporting children through a Learning at Home programme, which our staff developed in response to the strict national lockdown last year. Keeping young minds active and engaged is absolutely critical during children’s formative years, so our team put together fun, experiential curriculum packets that guardians could easily implement with their children using everyday household items.\r\n\r\nOnce the lockdown restrictions eased, we shifted all of our Early Learning Programmes to a community-based model (Neighbourhoods ECD), enabling children to learn in small groups right in the safety of their own neighbourhood.\r\n\r\nKey Programme Features:\r\n\r\nDaily Early Learning Programming & Nutritious Meals:\r\nChildren attend Neighbourhoods ECD daily (Monday through Friday) from 9 a.m. to 1 p.m. and receive morning porridge, a snack, and a nutritious meal.\r\n\r\nContextually Relevant Curriculum:\r\nOur early learning curriculum is aligned with the South African National Curriculum Framework for Children from birth to four. It also integrates principles from the Circle of Courage — a Native American methodology that helps us balance the ideas of Belonging, Independence, Mastery and Generosity — and a focus on the development of lifelong learning skills. These concepts are seamlessly integrated into all of our lessons and taught through the lens of children’s stories and fables which are reinforced through imaginative play and inquiry-based projects.\r\n\r\nSmall-Group, Community-Based Format:\r\nThe intention of our Neighbourhoods ECD Programme is to enable children to attend ECD programming each day in the safety of their own neighbourhoods. Children are split among small neighbourhood groups, each of which is led by one of Thanda’s qualified facilitators who lives in the area. Neighbourhoods ECD sessions take place in a community member’s back yard or an extra hut on someone’s property if there is one available.\r\n\r\nCOVID-19 Protocols:\r\nFragmenting these groups helps us adhere to recommended guidelines for social distancing and ensure that any potential outbreak remains contained in one corner of the community. Tippy tap handwashing stations are installed at all Neighbourhoods ECD sites and serviced by our staff regularly to ensure that there is always soap and running water available. Our Neighbourhoods ECD staff take care to ensure that children’s temperatures are monitored daily and to make sure that toys and educational resources are disinfected regularly.\r\n\r\nGuardian Support & Household Gardening Training:\r\nAs an extension to this programme, our staff visits the household of every child enrolled once per month. During these visits, our facilitators provide personalised feedback to guardians so that they can better support their children’s learning and development at home. Facilitators also deliver a Monthly Activity Pack, which includes one book for children to keep at home and a curriculum packet chock-full of activities based on the book for that month. We also offer gardening training for households that want to grow their own vegetables at home.\r\n\r\nGoals and Objectives:\r\nThe ultimate goal of this programme is that children develop foundational and lifelong learning skills defined by our Early Learning Assessment Framework, which utilises benchmarks from the National Curriculum Framework and our benchmarks. There are eight broad learning areas for this programme, each with its own skills and corresponding benchmarks/indicators.\r\n\r\nKey skills development areas:\r\n- Social & Emotional Development\r\n- Physical Development\r\n- Numeracy\r\n- Language & Literacy\r\n- Knowledge & Skills\r\n- Creative Arts\r\n- Belonging\r\n- Cognitive & Perceptual Development\r\n\r\nInternal Programme Goals:\r\n- At least 75% of children achieve grade-level milestones\r\n- Children have appropriate skills for their age level, regardless of their socio-economic situation (benchmarked using the Early Learning Outcomes Measure Assessment)\r\n- Guardians are more engaged in the learning and overall development of their children\r\n- Increase in number of children accessing medical care\r\n- Children have increased access to proper nutrition
265	78	Community Involvement	We determine the immediate need, to enable us to plan our assistance to the individual/family. We assist in their physical and emotional needs for a short period.	We assess clients at their homes (Helderberg area) to establish the context of their circumstances. We determine the immediate need, to enable us to plan our assistance to the individual/family. We assist in their physical and emotional needs for a short period.	1	Helderberg Rural, Sir Lowry's Pass, 7135, South Africa	NIL	10	10000	10	100	1000	We assess clients at their homes (Helderberg area) to establish the context of their circumstances. We determine the immediate need, to enable us to plan our assistance to the individual/family. We assist in their physical and emotional needs for a short period.\r\n\r\nVision\r\nCommunity: To assist families/individuals for a short period of time and for the family to sustain themselves again.\r\n\r\nAdditional Community Involvement\r\nHalli Clubs (8 - 10-year-old children) and Halli Leaders (11 – 18-year-old children)\r\nNeedle Work Club\r\n\r\nVision\r\nHalli Clubs: Our vision is to ensure that we invested in children who want to go out and not just to be the CHANGE but to be leaders, work hard and make a difference. We want children who are prepared to be forerunners for their generation.\r\nNeedlework: To empower women through a sisterhood to learn a new skill. The skill can be implemented to start an own sewing business or to be creative at home.
266	80	Organic Farming	Our Nisela Organic Farming Programme provides a way for households to achieve food security and generate cash incomes while also boosting access to locally sourced vegetables for the broader community.	\tThe coronavirus pandemic has impacted everyone in different ways, but it takes a significant toll on people living in rural communities where children’s nutritional, educational, and social-emotional needs were barely being met even before the arrival of Covid-19. Most households in our community were already relying only on a single gogo’s pension, but lockdown meant that additional family members who usually work in the cities returned to the community, which added to the number of mouths to feed in each household. Approximately 33% of South Africa is comprised of rural populations. Yet, there is little to no assistance being provided to these particularly fragile communities largely because they are simply too hard to reach. Without intervention from community-based organisations such as ours, people living in these communities would be left to fend for themselves.\r\n\r\nOur Nisela Organic Farming Programme provides a way for households to achieve food security and generate cash incomes while also boosting access to locally sourced vegetables for the broader community. Our Organic Farming Mentors provide ongoing support and training for struggling farmers in the community through this programme. The ultimate goal is to help farmers achieve self-reliance. Our one-on-one mentoring sessions are personalised for each farmer based on his/her production goals; some of our farmers simply want to be able to feed themselves and their households, while others aim to generate a reasonable monthly income.\r\n\r\nKey Features\r\nLocally Hired Farming Mentors:\r\nOur Farming Mentors are full-time employees who come to us with some level of prior farming experience. However, Mentors themselves participate in ongoing training to broaden their skill sets in organic, sustainable farming practices to help our farmers grow food successfully.\r\n\r\nFarm-based Trainings:\r\nOur group training and individual mentoring sessions occur at our farms, enabling farmers to gain hands-on experience in organic farming practices. Farmers must be present for weekly training and daily mentoring.\r\n\r\nInfrastructure Support:\r\nWe provide farms with necessary infrastructure (fencing and irrigation systems) to protect their crops from devastation due to free-roaming animals and ensure that they can still water their crops in times of drought. Water is stored in 5000-litre Jojo tanks at each of our farms, improving farmers’ work efficiency, as they would otherwise have to carry buckets of water back and forth.\r\n\r\nPersonal Development:\r\nIn addition to technical farming knowledge, our Mentors integrate personal skills into our training sessions, as we believe that farmers need these skills to solve problems and build resilience. We place particular emphasis on lifelong learning skills such as critical thinking, empathy, perspective, creativity, and self-esteem.\r\n\r\nEnrolment:\r\nIn 2021, 379 active farmers enrolled in our Organic Farming Programme tend to their own individual plots in 29 small-scale farms throughout the community. One hundred percent of our farmers are Black African and 84% of our farmers are female. Furthermore, 16% of our farmers are elderly (65+), 77% are adults between the ages of 36 and 64, and 7% are youth (18-35). In 2021, we added three youth farms, which will be essential for the long-term sustainability of farming in our community.\r\n\r\nKey Achievements & Impact from 2020\r\n- Farmers’ cumulative vegetable production in 2020 amounted to R3 556 117, representing a 63% increase from 2019, when cumulative vegetable production amounted to R2 180 935.\r\n- Farmers sold 89% of their produce, consumed 8,5%, and gave away 2,5% to neighbours in need.\r\n- Farmers personally consumed over R302 605 worth of vegetables – indicating that our farming programme is having a substantial impact on food security!\r\n- Some of our most productive farmers earned up to ZAR3 795 per month.\r\n- Of the total amount of produce sold by farmers in 2020, 89% was sold within the local community, indicating that our farming programme is also having a substantial impact on food security on the broader community.	1	Mtwalume, 4186, South Africa	NIL	10	10000	10	100	1000	\tThe coronavirus pandemic has impacted everyone in different ways, but it takes a significant toll on people living in rural communities where children’s nutritional, educational, and social-emotional needs were barely being met even before the arrival of Covid-19. Most households in our community were already relying only on a single gogo’s pension, but lockdown meant that additional family members who usually work in the cities returned to the community, which added to the number of mouths to feed in each household. Approximately 33% of South Africa is comprised of rural populations. Yet, there is little to no assistance being provided to these particularly fragile communities largely because they are simply too hard to reach. Without intervention from community-based organisations such as ours, people living in these communities would be left to fend for themselves.\r\n\r\nOur Nisela Organic Farming Programme provides a way for households to achieve food security and generate cash incomes while also boosting access to locally sourced vegetables for the broader community. Our Organic Farming Mentors provide ongoing support and training for struggling farmers in the community through this programme. The ultimate goal is to help farmers achieve self-reliance. Our one-on-one mentoring sessions are personalised for each farmer based on his/her production goals; some of our farmers simply want to be able to feed themselves and their households, while others aim to generate a reasonable monthly income.\r\n\r\nKey Features\r\nLocally Hired Farming Mentors:\r\nOur Farming Mentors are full-time employees who come to us with some level of prior farming experience. However, Mentors themselves participate in ongoing training to broaden their skill sets in organic, sustainable farming practices to help our farmers grow food successfully.\r\n\r\nFarm-based Trainings:\r\nOur group training and individual mentoring sessions occur at our farms, enabling farmers to gain hands-on experience in organic farming practices. Farmers must be present for weekly training and daily mentoring.\r\n\r\nInfrastructure Support:\r\nWe provide farms with necessary infrastructure (fencing and irrigation systems) to protect their crops from devastation due to free-roaming animals and ensure that they can still water their crops in times of drought. Water is stored in 5000-litre Jojo tanks at each of our farms, improving farmers’ work efficiency, as they would otherwise have to carry buckets of water back and forth.\r\n\r\nPersonal Development:\r\nIn addition to technical farming knowledge, our Mentors integrate personal skills into our training sessions, as we believe that farmers need these skills to solve problems and build resilience. We place particular emphasis on lifelong learning skills such as critical thinking, empathy, perspective, creativity, and self-esteem.\r\n\r\nEnrolment:\r\nIn 2021, 379 active farmers enrolled in our Organic Farming Programme tend to their own individual plots in 29 small-scale farms throughout the community. One hundred percent of our farmers are Black African and 84% of our farmers are female. Furthermore, 16% of our farmers are elderly (65+), 77% are adults between the ages of 36 and 64, and 7% are youth (18-35). In 2021, we added three youth farms, which will be essential for the long-term sustainability of farming in our community.\r\n\r\nKey Achievements & Impact from 2020\r\n- Farmers’ cumulative vegetable production in 2020 amounted to R3 556 117, representing a 63% increase from 2019, when cumulative vegetable production amounted to R2 180 935.\r\n- Farmers sold 89% of their produce, consumed 8,5%, and gave away 2,5% to neighbours in need.\r\n- Farmers personally consumed over R302 605 worth of vegetables – indicating that our farming programme is having a substantial impact on food security!\r\n- Some of our most productive farmers earned up to ZAR3 795 per month.\r\n- Of the total amount of produce sold by farmers in 2020, 89% was sold within the local community, indicating that our farming programme is also having a substantial impact on food security on the broader community.
269	83	Winter Warmth	SANZAF staff and volunteers around the country distribute blankets, increasing our food programmes and distribute winter packs (jacket, beanie, scarf and gloves) to children at schools in impoverished areas.	For some, the season of winter means hot chocolate, fashionable jackets, soup and nights in snuggling up by the fire place. But for the needy, homeless and destitute winter brings unbearable circumstances, sleepless nights and hunger.\r\n\r\nSANZAF’s Operation Winter Warmth is a national initiative which aims to ease the situation for those less fortunate. SANZAF staff and volunteers around the country distribute blankets, increasing our food programmes and distribute winter packs (jacket, beanie, scarf and gloves) to children at schools in impoverished areas.\r\n\r\nAll this is only possible through the mercy of the Almighty and the generosity of the public.\r\n\r\nSpare a thought for the needy and help us #Givehope this winter by contributing here.	1	South Africa	NIL	10	10000	10	100	1000	For some, the season of winter means hot chocolate, fashionable jackets, soup and nights in snuggling up by the fire place. But for the needy, homeless and destitute winter brings unbearable circumstances, sleepless nights and hunger.\r\n\r\nSANZAF’s Operation Winter Warmth is a national initiative which aims to ease the situation for those less fortunate. SANZAF staff and volunteers around the country distribute blankets, increasing our food programmes and distribute winter packs (jacket, beanie, scarf and gloves) to children at schools in impoverished areas.\r\n\r\nAll this is only possible through the mercy of the Almighty and the generosity of the public.\r\n\r\nSpare a thought for the needy and help us #Givehope this winter by contributing here.
271	85	Orphans Endowment Fund	The OEWF is unique program that brings sunshine and hope into the lives of the many orphans and vulnerable children in our community. 	The OEWF is unique program that brings sunshine and hope into the lives of the many orphans and vulnerable children in our community. There are more than two million orphans and vulnerable children in South Africa.\r\n\r\nThe Orphans Endowment Fund (OEWF) is unique in that it provides for the needs of the most vulnerable in our community in a sustainable way and one which is eternally rewarding for the participants in the Fund.\r\nThe Orphans Endowment Fund is structured so that the capital is preserved and only the income that is generated on the capital is utilised to support the OVC Program.\r\n\r\nFrom every R 500 invested in a Participating Share, an administration fee of R 50 is deducted and the balance of R 450 is invested.\r\n\r\nThe largest proportion (approximately 80%) of the profits that are earned on the invested funds are used to address the basic needs and development of the orphans and vulnerable children.\r\nA proportion (approximately 10%) is added to the original capital sum in order to increase and preserve its value.\r\nA proportion (approximately 10%) is utilized for the administration of the Orphans Endowment Fund.	1	South Africa	NIL	10	10000	10	100	1000	The OEWF is unique program that brings sunshine and hope into the lives of the many orphans and vulnerable children in our community. There are more than two million orphans and vulnerable children in South Africa.\r\n\r\nThe Orphans Endowment Fund (OEWF) is unique in that it provides for the needs of the most vulnerable in our community in a sustainable way and one which is eternally rewarding for the participants in the Fund.\r\nThe Orphans Endowment Fund is structured so that the capital is preserved and only the income that is generated on the capital is utilised to support the OVC Program.\r\n\r\nFrom every R 500 invested in a Participating Share, an administration fee of R 50 is deducted and the balance of R 450 is invested.\r\n\r\nThe largest proportion (approximately 80%) of the profits that are earned on the invested funds are used to address the basic needs and development of the orphans and vulnerable children.\r\nA proportion (approximately 10%) is added to the original capital sum in order to increase and preserve its value.\r\nA proportion (approximately 10%) is utilized for the administration of the Orphans Endowment Fund.
288	76	Support and Councelling	Our group therapy sessions and support groups help people who are struggling with the devastating effects of acquired brain injury.	Support groups for people living with acquired brain injury, as well as for their loved ones.\r\n\r\nOur group therapy sessions and support groups help people who are struggling with the devastating effects of acquired brain injury by empowering them to become as independent as possible and improve their overall mental health and wellbeing.\r\nWe also provide relief and support for the affected loved ones of people with acquired brain injury, by equipping them with the necessary skills and tools necessary to deal with its far-reaching effects.	1	The Willows, South Africa	NIL	10	10000	10	100	1000	Support groups for people living with acquired brain injury, as well as for their loved ones.\r\n\r\nOur group therapy sessions and support groups help people who are struggling with the devastating effects of acquired brain injury by empowering them to become as independent as possible and improve their overall mental health and wellbeing.\r\n\r\nWe also provide relief and support for the affected loved ones of people with acquired brain injury, by equipping them with the necessary skills and tools necessary to deal with its far-reaching effects.
289	75	Kaofela Income Generation Programme	Kaofela is BrainLife’s income generation and skills development program.\r\n“Kaofela” is a Sesotho word translated as “all” or “entirety”.	Kaofela is BrainLife’s income generation and skills development program.\r\n“Kaofela” is a Sesotho word translated as “all” or “entirety”. For BrainLife, this means “all of us together”.\r\n​This program gives our members a chance at starting their own micro-enterprises.\r\nWe sell all the remaining clothing, food and household items donated to BrainLife from our second-hand store.	1	Mamelodi, Pretoria, 0122, South Africa	NIL	10	10000	10	100	1000	Kaofela is BrainLife’s income generation and skills development program.\r\n“Kaofela” is a Sesotho word translated as “all” or “entirety”. For BrainLife, this means “all of us together”.\r\n​This program gives our members a chance at starting their own micro-enterprises.\r\nWe sell all the remaining clothing, food and household items donated to BrainLife from our second-hand store. \r\nSome of these items are re-used or up-cycled and sold at informal markets.\r\n\r\nWe divide the income generated from these sales amongst our registered beneficiaries, to supplement the minimal disability grant they receive from the state.\r\n\r\nAs a socio-economic and skills development program, Kaofela aims to give our beneficiaries a chance at starting their own micro-enterprises.\r\n\r\nBeneficiaries can volunteer to be part of the program and earn their own income to sustain themselves.
292	77	Cart Horse Protection Association	Cart horses, working on tar roads need new shoes regularly. We provide a subsidized professional farrier service ensuring that the horses' feet are properly trimmed and they are shod correctly.	Cart horses, working on tar roads need new shoes regularly. We provide a subsidized professional farrier service ensuring that the horses' feet are properly trimmed and they are shod correctly.	1	Cape Town, South Africa	NIL	10	10000	10	100	1000	Cart horses, working on tar roads need new shoes regularly. We provide a subsidized professional farrier service ensuring that the horses' feet are properly trimmed and they are shod correctly.
293	79	Educational Involvement	Halli, our cool mascot is an Akita Japanese dog. He is a fun and loving mascot. Halli assists us with various educational talks on Wednesdays and Thursdays.	Halli, our cool mascot is an Akita Japanese dog. He is a fun and loving mascot. Halli assists us with various educational talks on Wednesdays and Thursdays.\r\nThrough our educational talks, we want to leave seeds of knowledge in children’s minds that educators and parents can further develop.	1	Cape Town, South Africa	NIL	10	10000	10	100	1000	Halli, our cool mascot is an Akita Japanese dog. He is a fun and loving mascot. Halli assists us with various educational talks on Wednesdays and Thursdays.\r\nWe would appreciate a R5 contribution from the children towards a Halli Visits, although a goods donation will be appreciated.\r\n\r\nVision\r\nThrough our educational talks, we want to leave seeds of knowledge in children’s minds that educators and parents can further develop.
296	84	Iqraa Trust Knowledge Centre	This Centre will be used as a Community Hall for public lectures, seminars and will also have a Library Room and Computer Centre where we will offer e-learning programmes.	Iqraa Trust signed an agreement with the Department of Education and the Governing Body of Hunt Road Secondary School to renovate a rundown section of the School building to create the Iqraa Trust Knowledge Centre.\r\n\r\nThis Centre will be used as a Community Hall for public lectures, seminars and will also have a Library Room and Computer Centre where we will offer e-learning programmes. This initiative is mainly aimed to enhance education in Hunt Road Secondary School and other neighbouring Schools.	1	KwaZulu-Natal, South Africa	NIL	10	10000	10	100	1000	Iqraa Trust signed an agreement with the Department of Education and the Governing Body of Hunt Road Secondary School to renovate a rundown section of the School building to create the Iqraa Trust Knowledge Centre.\r\n\r\nThis Centre will be used as a Community Hall for public lectures, seminars and will also have a Library Room and Computer Centre where we will offer e-learning programmes. This initiative is mainly aimed to enhance education in Hunt Road Secondary School and other neighbouring Schools.
297	91	Winter Warmth Programme	During the cold winter months, we provide blankets and warm clothing to the needy in the Ethekwini district.	During the cold winter months, we provide blankets and warm clothing to the needy in the Ethekwini district.	1	Verulam, South Africa	NIL	10	10000	10	100	1000	During the cold winter months, we provide blankets and warm clothing to the needy in the Ethekwini district.
300	82	Seed Programme	The SANZAF Education Empowerment and Development (SEED) Programme is a means for SANZAF to shift its focus from basic welfare to a development and empowerment approach.	SANZAF realises that poverty can be alleviated through a focus on knowledge and skills training. this leads to economic prosperity and quality of life for the beneficiary. The SANZAF Education Empowerment and Development (SEED) Programme is a means for SANZAF to shift its focus from basic welfare to a development and empowerment approach.\r\n\r\nSANZAF believes that the best way to break the cycle of poverty is through knowledge and skills training, that is why the organisation developed the SANZAF Education Empowerment and Development (SEED) programme. SEED seeks to provide the tools for beneficiaries to achieve economic prosperity, a determination to develop society and a better quality of life for them and their families, hence creating a long-lasting holistic impact.\r\n\r\nAt the core of the SEED programme is the realisation that education is multi-faceted and requires a dynamic approach, from early childhood, to high school and tertiary level, as well as providing opportunities for post graduates. Combined this provides children even from a grassroots level access to necessary opportunities in their journey to becoming successful and influential adults.	1	Umhlanga, South Africa	NIL	10	10000	10	100	1000	SANZAF realises that poverty can be alleviated through a focus on knowledge and skills training. this leads to economic prosperity and quality of life for the beneficiary. The SANZAF Education Empowerment and Development (SEED) Programme is a means for SANZAF to shift its focus from basic welfare to a development and empowerment approach.\r\n\r\nSANZAF believes that the best way to break the cycle of poverty is through knowledge and skills training, that is why the organisation developed the SANZAF Education Empowerment and Development (SEED) programme. SEED seeks to provide the tools for beneficiaries to achieve economic prosperity, a determination to develop society and a better quality of life for them and their families, hence creating a long-lasting holistic impact.\r\n\r\nAt the core of the SEED programme is the realisation that education is multi-faceted and requires a dynamic approach, from early childhood, to high school and tertiary level, as well as providing opportunities for post graduates. Combined this provides children even from a grassroots level access to necessary opportunities in their journey to becoming successful and influential adults.
301	90	Humanitarian Services	We have been providing humanitarian services to the most vulnerable and needy where the need arose be it in a crisis or non-crisis situation. 	We have been providing humanitarian services to the most vulnerable and needy where the need arose be it in a crisis or non-crisis situation. During the current Covid 19 pandemic we have provided relief be it food or health packs (which included sanitizer's, soaps and masks) and we continue providing this.	1	Phoenix, South Africa	NIL	10	10000	10	100	1000	We have been providing humanitarian services to the most vulnerable and needy where the need arose be it in a crisis or non-crisis situation. During the current Covid 19 pandemic we have provided relief be it food or health packs (which included sanitizer's, soaps and masks) and we continue providing this.
302	89	Primary Health Care Services	We have been providing health care education and awareness to schools on an ongoing basis. \r\nThe provision of sanitary pads both disposable and re-usable have been distributed to poorer areas in the province.	We have been providing health care education and awareness to schools on an ongoing basis. \r\nThe provision of sanitary pads both disposable and re-usable have been distributed to poorer areas in the province.	1	South Africa	NIL	10	10000	10	100	1000	We have been providing health care education and awareness to schools on an ongoing basis.\r\nThe provision of sanitary pads both disposable and re-usable have been distributed to poorer areas in the province.
303	88	Skills Development	We have initiated a programme where women from the rural areas of the South coast of KZN are involved in the sewing of Re-usable sanitary pads made of off cuts from fabric thereby empowering the women in the rural areas.	We have initiated a programme where women from the rural areas of the South coast of KZN are involved in the sewing of Re-usable sanitary pads made of off cuts from fabric thereby empowering the women in the rural areas.	1	South Africa	NIL	10	10000	10	100	1000	We have initiated a programme where women from the rural areas of the South coast of KZN are involved in the sewing of Re-usable sanitary pads made of off cuts from fabric thereby empowering the women in the rural areas.
304	87	Food Hampers	Needy families have been provided with grocery hampers to sustain themselves and their families.	Needy families have been provided with grocery hampers to sustain themselves and their families. Proper evaluation is conducted before allocation is made. During the Covid 19 pandemic, there has been an influx of families that needed assistance. We also ensured that the duplication process was avoided, allowing all to be assisted.	1	South Africa	NIL	10	10000	10	100	1000	Needy families have been provided with grocery hampers to sustain themselves and their families. Proper evaluation is conducted before allocation is made. During the Covid 19 pandemic, there has been an influx of families that needed assistance. We also ensured that the duplication process was avoided, allowing all to be assisted.
305	86	School Feeding Initiative	A few schools are being provided with meals to improve the ability of learners to attend school and to learn, in this way we support education at schools.	A few schools are being provided with meals to improve the ability of learners to attend school and to learn, in this way we support education at schools.	1	South Africa	NIL	10	10000	10	100	1000	A few schools are being provided with meals to improve the ability of learners to attend school and to learn, in this way we support education at schools.
\.


--
-- Data for Name: push_notification; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.push_notification (id, user_id, message, order_id, read_status, created_at) FROM stdin;
1	7	DearConnective Test USerr, payment done successfully. Thank you!	33	0	2021-04-12 17:12:47
2	7	DearZunaid Floris, payment done successfully. Thank you!	266	0	2021-04-14 22:47:14
3	7	DearZunaid Floris, payment done successfully. Thank you!	46	0	2021-04-16 16:58:57
4	7	DearZunaid Floris, payment done successfully. Thank you!	322	0	2021-04-17 17:33:20
5	63	DearSravya Kolla, payment done successfully. Thank you!	341	0	2021-04-19 13:39:15
6	113	DearKarthick, payment done successfully. Thank you!	342	0	2021-04-19 13:58:07
7	63	DearSravya Kolla, payment done successfully. Thank you!	347	0	2021-04-19 19:24:27
8	63	DearSravya Kolla, payment done successfully. Thank you!	373	0	2021-04-20 13:38:17
9	113	DearKarthick, payment done successfully. Thank you!	398	0	2021-04-20 16:32:26
10	113	DearKarthick, payment done successfully. Thank you!	400	0	2021-04-20 16:34:33
11	256	Dearrosy, payment done successfully. Thank you!	412	0	2021-04-20 17:23:59
12	256	Dearrosy, payment done successfully. Thank you!	420	0	2021-04-20 18:52:41
13	256	Dearrosy, payment done successfully. Thank you!	424	0	2021-04-20 22:23:42
14	256	Dearrosy, payment done successfully. Thank you!	424	0	2021-04-20 22:27:45
15	256	Dearrosy, payment done successfully. Thank you!	424	0	2021-04-20 22:31:04
16	256	Dearrosy, payment done successfully. Thank you!	424	0	2021-04-20 22:48:59
17	258	Dearzunaid final test, payment done successfully. Thank you!	426	0	2021-04-21 05:10:58
18	256	Dearrosy, payment done successfully. Thank you!	428	0	2021-04-21 10:57:41
19	256	Dearrosy, payment done successfully. Thank you!	430	0	2021-04-21 11:59:02
20	256	Dearrosy, payment done successfully. Thank you!	431	0	2021-04-21 12:00:19
21	256	Dearrosy, payment done successfully. Thank you!	432	0	2021-04-21 12:40:41
22	258	Dearzunaid final test, payment done successfully. Thank you!	433	0	2021-04-21 13:09:17
23	113	DearKarthick, payment done successfully. Thank you!	435	0	2021-04-21 15:11:26
24	258	Dearzunaid final test, payment done successfully. Thank you!	442	0	2021-04-21 17:41:42
25	258	Dearzunaid final test, payment done successfully. Thank you!	443	0	2021-04-21 18:13:40
26	261	DearReza Amra, payment done successfully. Thank you!	444	0	2021-04-21 18:53:40
27	258	Dearzunaid final test, payment done successfully. Thank you!	452	0	2021-04-22 11:38:00
28	245	DearRajiniGR, payment done successfully. Thank you!	473	0	2021-04-22 16:28:08
\.


--
-- Data for Name: role_tasks; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.role_tasks (role_id, task_definition, task_index, permissions, role_task_id) FROM stdin;
23	innovation_groups	\N	1	1
23	innovation_groups/list	["admin/donations"]	1	2
1	category	\N	1	3
1	category/list	["admin/category"]	1	4
1	category/category	\N	1	5
1	category/category/edit	["admin/category/create","createcategory","admin/category/edit","updatecategory","admin/category/delete"]	1	6
1	users	\N	1	7
1	users/list	["admin/users"]	1	8
1	users/edit	["admin/users/create","admin/users/edit","update_users","createuser"]	1	9
1	innovation_groups	\N	1	10
1	innovation_groups/list	["admin/donations"]	1	11
1	banners	\N	1	12
1	banners/list	["admin/banners"]	1	13
1	banners/banners	\N	1	14
1	banners/banners/edit	["admin/banner/create","admin/banner/delete","createbanner", "admin/banner/edit", "admin/banner/update", "admin/banner/ajaxupdate"]	1	15
1	blog	\N	1	16
1	blog/list	["admin/blog"]	1	17
1	blog/blog	\N	1	18
1	blog/blog/edit	["admin/blog/create","createblog","admin/blog/edit","updateblog","admin/blog/delete","admin/blog/view"]	1	19
1	cms	\N	1	20
1	cms/list	["admin/cms","admin/cms/view"]	1	21
1	cms/edit	["admin/cms/create","admin/cms/edit","updatecms","createcms","admin/cms/delete"]	1	22
1	projects	\N	1	23
1	projects/list	["admin/projects"]	1	24
1	projects/project	\N	1	25
1	projects/project/edit	["admin/project/create","createproject","admin/project/edit","updateproject","admin/project/delete","admin/project/view"]	1	26
1	email	\N	1	27
1	email/templates	["admin/templates/email"]	1	28
1	email/edit	["admin/templates/create","createtemplate", "admin/templates/edit","admin/template/update",,"admin/templates/view"]	1	29
1	newsletter	\N	1	30
1	newsletter/list	["admin/newsletter","send_newsletter"]	1	31
1	notifications_groups	\N	1	32
1	notifications_groups/list	["admin/users/groups"]	1	33
1	notifications_groups/groups	\N	1	34
1	notifications_groups/groups/edit	["admin/groups/create","creategroup","admin/groups/edit","update_group","admin/groups/delete","admin/groups/view"]	1	35
1	permissions	\N	1	36
1	permissions/roles	["system/permission"]	1	37
1	permissions/roles/edit	["system/permission/create", "system/permission/edit", "update_role", "system/rolecreate", "system/permission/delete"]	1	38
1	permissions/roleusers	["permission/users"]	1	39
1	permissions/roleusers/edit	["permission/usercreate", "permission/userstore", "permission/users/edit", "usersupdate", "permission/users/delete", "admin/role-users/index",\r\n\t\t\t\t\t\t"admin/role-users/create","create-role-user","admin/role-users/delete","admin/role-users/edit","update-role-users","admin/role-users/viewprofile"]	1	40
1	faqs	\N	1	41
1	faqs/list	["admin/faqs"]	1	42
1	faqs/faqs	\N	1	43
1	faqs/faqs/edit	["admin/faqs/create","createfaqadmin","admin/faqs/edit","updatefaqadmin","admin/faqs/delete","admin/faqs/view"]	1	44
40	category	\N	1	723
40	category/list	["admin/category"]	1	724
40	category/category	\N	1	725
40	category/category/edit	["admin/category/create","createcategory","admin/category/edit","updatecategory","admin/category/delete"]	1	726
40	organization	\N	1	727
40	organization/list	["admin/organization","admin/organization/show"]	1	728
40	organization/edit	["admin/organization/create","admin/organization/show","organisationcreate","createorganisation","admin/organization/edit", "updateorganisation", "admin/organization/delete"]	1	729
40	programs	\N	1	730
40	programs/list	["admin/program"]	1	731
40	programs/edit	["admin/program/create","createprogram","programcreate","admin/program/edit","updateprogram","admin/program/delete","admin/program/show"]	1	732
40	users	\N	1	733
40	users/list	["admin/users"]	1	734
40	users/edit	["admin/users/create","admin/users/edit","update_users","createuser"]	1	735
40	donations	\N	1	736
40	donations/list	["admin/donations", "admin/donations/show"]	1	737
40	banner	\N	1	738
40	banner/list	["admin/banner"]	1	739
40	banner/edit	["admin/banner/create","admin/banner/delete","createbanner", "admin/banner/edit", "admin/banner/update", "admin/banner/ajaxupdate"]	1	740
40	blog	\N	1	741
40	blog/list	["admin/blog"]	1	742
40	blog/blog	\N	1	743
40	blog/blog/edit	["admin/blog/create","createblog","admin/blog/edit","updateblog","admin/blog/delete","admin/blog/view"]	1	744
40	package	\N	1	745
40	package/list	["admin/package"]	1	746
40	package/package	\N	1	747
40	package/package/edit	["admin/package/create","createpackage","admin/package/edit","updatepackage","admin/package/show"]	1	748
40	reports	\N	1	749
40	reports/list	["admin/reports"]	1	750
40	reports/reports	\N	1	751
40	reports/reports/donations	["admin/reports/donations"]	1	752
40	reports/reports/customers	["admin/reports/customers"]	1	753
40	reports/reports/programs	["admin/reports/programs"]	1	754
40	cms	\N	1	755
40	cms/list	["admin/cms","admin/cms/view"]	1	756
40	cms/edit	["admin/cms/create","admin/cms/edit","updatecms","createcms","admin/cms/delete"]	1	757
40	email	\N	1	758
40	email/templates	["admin/templates/email"]	1	759
40	email/edit	["admin/templates/create","createtemplate", "admin/templates/edit","admin/template/update","admin/templates/delete","admin/templates/view"]	1	760
40	newsletter	\N	1	761
40	newsletter/list	["admin/newsletter","send_newsletter"]	1	762
40	permissions	\N	1	763
40	permissions/roles	["system/permission"]	1	764
24	email	\N	1	237
24	email/templates	["admin/templates/email"]	1	238
24	email/edit	["admin/templates/create","createtemplate", "admin/templates/edit","admin/template/update",,"admin/templates/view"]	1	239
24	newsletter	\N	1	240
24	newsletter/list	["admin/newsletter","send_newsletter"]	1	241
24	suggest_npo	\N	1	242
24	suggest_npo/list	["admin/suggest_npo"]	1	243
24	suggest_npo/delete	["admin/suggest_npo/delete"]	1	244
30	category	\N	1	1218
30	category/list	["admin/category"]	1	1219
30	category/category	\N	1	1220
30	category/category/edit	["admin/category/create","createcategory","admin/category/edit","updatecategory","admin/category/delete"]	1	1221
30	organization	\N	1	1222
30	organization/list	["admin/organization","admin/organization/show"]	1	1223
30	organization/edit	["admin/organization/create","admin/organization/show","organisationcreate","createorganisation","admin/organization/edit", "updateorganisation", "admin/organization/delete"]	1	1224
30	programs	\N	1	1225
30	programs/list	["admin/program"]	1	1226
51	faqs	\N	1	1069
51	faqs/list	["admin/faqs"]	1	1070
51	faqs/faqs	\N	1	1071
51	faqs/faqs/edit	["admin/faqs/create","createfaqadmin","admin/faqs/edit","updatefaqadmin","admin/faqs/delete","admin/faqs/view"]	1	1072
58	contactus	\N	1	1080
58	contactus/list	["admin/contactus"]	1	1081
58	contactus/delete	["admin/contactus/delete"]	1	1082
30	programs/edit	["admin/program/create","createprogram","programcreate","admin/program/edit","updateprogram","admin/program/delete","admin/program/show"]	1	1227
30	users	\N	1	1228
30	users/list	["admin/users"]	1	1229
30	users/edit	["admin/users/create","admin/users/edit","update_users","createuser"]	1	1230
30	donations	\N	1	1231
30	donations/list	["admin/donations", "admin/donations/show"]	1	1232
30	banner	\N	1	1233
30	banner/list	["admin/banner"]	1	1234
30	banner/edit	["admin/banner/create","admin/banner/delete","createbanner", "admin/banner/edit", "admin/banner/update", "admin/banner/ajaxupdate"]	1	1235
30	blog	\N	1	1236
30	blog/list	["admin/blog"]	1	1237
30	blog/blog	\N	1	1238
30	blog/blog/edit	["admin/blog/create","createblog","admin/blog/edit","updateblog","admin/blog/delete","admin/blog/view"]	1	1239
30	package	\N	1	1240
30	package/list	["admin/package"]	1	1241
30	package/package	\N	1	1242
30	package/package/edit	["admin/package/create","createpackage","admin/package/edit","updatepackage","admin/package/show"]	1	1243
30	reports	\N	1	1244
30	reports/list	["admin/reports"]	1	1245
30	reports/reports	\N	1	1246
30	reports/reports/donations	["admin/reports/donations"]	1	1247
30	reports/reports/customers	["admin/reports/customers"]	1	1248
30	reports/reports/programs	["admin/reports/programs"]	1	1249
30	cms	\N	1	1250
30	cms/list	["admin/cms","admin/cms/view"]	1	1251
30	cms/edit	["admin/cms/create","admin/cms/edit","updatecms","createcms","admin/cms/delete"]	1	1252
30	email	\N	1	1253
30	email/templates	["admin/templates/email"]	1	1254
30	email/edit	["admin/templates/create","createtemplate", "admin/templates/edit","admin/template/update","admin/templates/delete","admin/templates/view"]	1	1255
30	newsletter	\N	1	1256
30	newsletter/list	["admin/newsletter","send_newsletter"]	1	1257
30	notification	\N	1	1258
30	notification/list	["admin/push-notifications"]	1	1259
30	notification/notifications	["admin/notifications"]	1	1260
30	permissions	\N	1	1261
30	permissions/roles	["system/permission"]	1	1262
30	permissions/roles/edit	["system/permission/create", "system/permission/edit", "update_role", "system/rolecreate", "system/permission/delete"]	1	1263
30	permissions/roleusers	["permission/users"]	1	1264
40	permissions/roles/edit	["system/permission/create", "system/permission/edit", "update_role", "system/rolecreate", "system/permission/delete"]	1	765
40	permissions/roleusers	["permission/users"]	1	766
40	permissions/roleusers/edit	["permission/usercreate", "permission/userstore", "permission/users/edit", "usersupdate", "permission/users/delete", "admin/role-users/index",\r\n\t\t\t\t\t\t"admin/role-users/create","create-role-user","admin/role-users/delete","admin/role-users/edit","update-role-users","admin/role-users/viewprofile"]	1	767
40	contactus	\N	1	768
40	contactus/list	["admin/contactus"]	1	769
40	contactus/delete	["admin/contactus/delete"]	1	770
40	suggest_npo	\N	1	771
40	suggest_npo/list	["admin/suggest_npo"]	1	772
40	suggest_npo/delete	["admin/suggest_npo/delete"]	1	773
40	faqs	\N	1	774
40	faqs/list	["admin/faqs"]	1	775
40	faqs/faqs	\N	1	776
40	faqs/faqs/edit	["admin/faqs/create","createfaqadmin","admin/faqs/edit","updatefaqadmin","admin/faqs/delete","admin/faqs/view"]	1	777
30	permissions/roleusers/edit	["permission/usercreate", "permission/userstore", "permission/users/edit", "usersupdate", "permission/users/delete", "admin/role-users/index",\r\n\t\t\t\t\t\t"admin/role-users/create","create-role-user","admin/role-users/delete","admin/role-users/edit","update-role-users","admin/role-users/viewprofile"]	1	1265
30	contactus	\N	1	1266
30	contactus/list	["admin/contactus"]	1	1267
30	contactus/delete	["admin/contactus/delete"]	1	1268
30	suggest_npo	\N	1	1269
30	suggest_npo/list	["admin/suggest_npo"]	1	1270
30	suggest_npo/delete	["admin/suggest_npo/delete"]	1	1271
30	faqs	\N	1	1272
30	faqs/list	["admin/faqs"]	1	1273
30	faqs/faqs	\N	1	1274
30	faqs/faqs/edit	["admin/faqs/create","createfaqadmin","admin/faqs/edit","updatefaqadmin","admin/faqs/delete","admin/faqs/view"]	1	1275
30	settings	\N	1	1276
43	cms/list	["admin/cms","admin/cms/view"]	1	889
30	settings/list	["admin/settings","admin/settings/general","admin/settings/updategeneral","admin/settings/email","admin/settings/updateemail","admin/settings/socialmedia","admin/settings/updatemedia","admin/settings/image","admin/settings/updateimagesettings"]	1	1277
62	suggest_npo	\N	1	1289
62	suggest_npo/list	["admin/suggest_npo"]	1	1290
62	suggest_npo/delete	["admin/suggest_npo/delete"]	1	1291
63	banner	\N	1	1309
63	banner/list	["admin/banner"]	1	1310
63	banner/edit	["admin/banner/create","admin/banner/delete","createbanner", "admin/banner/edit", "admin/banner/update", "admin/banner/ajaxupdate"]	1	1311
63	blog	\N	1	1312
63	blog/list	["admin/blog"]	1	1313
63	blog/blog	\N	1	1314
63	blog/blog/edit	["admin/blog/create","createblog","admin/blog/edit","updateblog","admin/blog/delete","admin/blog/view"]	1	1315
63	package	\N	1	1316
63	package/list	["admin/package"]	1	1317
63	package/package	\N	1	1318
63	package/package/edit	["admin/package/create","createpackage","admin/package/edit","updatepackage","admin/package/show"]	1	1319
63	reports	\N	1	1320
63	reports/list	["admin/reports"]	1	1321
63	reports/reports	\N	1	1322
63	reports/reports/donations	["admin/reports/donations"]	1	1323
63	reports/reports/customers	["admin/reports/customers"]	1	1324
63	reports/reports/programs	["admin/reports/programs"]	1	1325
63	cms	\N	1	1326
63	cms/list	["admin/cms","admin/cms/view"]	1	1327
63	cms/edit	["admin/cms/create","admin/cms/edit","updatecms","createcms","admin/cms/delete"]	1	1328
63	email	\N	1	1329
63	email/templates	["admin/templates/email"]	1	1330
63	email/edit	["admin/templates/create","createtemplate", "admin/templates/edit","admin/template/update","admin/templates/delete","admin/templates/view"]	1	1331
63	newsletter	\N	1	1332
63	newsletter/list	["admin/newsletter","send_newsletter"]	1	1333
63	notification	\N	1	1334
63	notification/list	["admin/push-notifications"]	1	1335
63	notification/notifications	["admin/notifications"]	1	1336
63	permissions	\N	1	1337
63	permissions/roles	["system/permission"]	1	1338
63	permissions/roles/edit	["system/permission/create", "system/permission/edit", "update_role", "system/rolecreate", "system/permission/delete"]	1	1339
63	permissions/roleusers	["permission/users"]	1	1340
63	permissions/roleusers/edit	["permission/usercreate", "permission/userstore", "permission/users/edit", "usersupdate", "permission/users/delete", "admin/role-users/index",\n\t\t\t\t\t\t"admin/role-users/create","create-role-user","admin/role-users/delete","admin/role-users/edit","update-role-users","admin/role-users/viewprofile"]	1	1341
63	contactus	\N	1	1342
63	contactus/list	["admin/contactus"]	1	1343
63	contactus/delete	["admin/contactus/delete"]	1	1344
63	suggest_npo	\N	1	1345
63	suggest_npo/list	["admin/suggest_npo"]	1	1346
63	suggest_npo/delete	["admin/suggest_npo/delete"]	1	1347
63	faqs	\N	1	1348
63	faqs/list	["admin/faqs"]	1	1349
63	faqs/faqs	\N	1	1350
41	category	\N	1	1011
41	category/list	["admin/category"]	1	1012
41	category/category	\N	1	1013
41	category/category/edit	["admin/category/create","createcategory","admin/category/edit","updatecategory","admin/category/delete"]	1	1014
41	organization	\N	1	1015
41	organization/list	["admin/organization","admin/organization/show"]	1	1016
41	organization/edit	["admin/organization/create","admin/organization/show","organisationcreate","createorganisation","admin/organization/edit", "updateorganisation", "admin/organization/delete"]	1	1017
41	programs	\N	1	1018
41	programs/list	["admin/program"]	1	1019
41	programs/edit	["admin/program/create","createprogram","programcreate","admin/program/edit","updateprogram","admin/program/delete","admin/program/show"]	1	1020
41	users	\N	1	1021
41	users/list	["admin/users"]	1	1022
41	users/edit	["admin/users/create","admin/users/edit","update_users","createuser"]	1	1023
41	donations	\N	1	1024
41	donations/list	["admin/donations", "admin/donations/show"]	1	1025
41	banner	\N	1	1026
41	banner/list	["admin/banner"]	1	1027
41	banner/edit	["admin/banner/create","admin/banner/delete","createbanner", "admin/banner/edit", "admin/banner/update", "admin/banner/ajaxupdate"]	1	1028
41	blog	\N	1	1029
41	blog/list	["admin/blog"]	1	1030
41	blog/blog	\N	1	1031
41	blog/blog/edit	["admin/blog/create","createblog","admin/blog/edit","updateblog","admin/blog/delete","admin/blog/view"]	1	1032
41	package	\N	1	1033
41	package/list	["admin/package"]	1	1034
41	package/package	\N	1	1035
41	package/package/edit	["admin/package/create","createpackage","admin/package/edit","updatepackage","admin/package/show"]	1	1036
41	reports	\N	1	1037
41	reports/list	["admin/reports"]	1	1038
41	reports/reports	\N	1	1039
41	reports/reports/donations	["admin/reports/donations"]	1	1040
41	reports/reports/customers	["admin/reports/customers"]	1	1041
41	reports/reports/programs	["admin/reports/programs"]	1	1042
41	cms	\N	1	1043
41	cms/list	["admin/cms","admin/cms/view"]	1	1044
41	cms/edit	["admin/cms/create","admin/cms/edit","updatecms","createcms","admin/cms/delete"]	1	1045
41	email	\N	1	1046
41	email/templates	["admin/templates/email"]	1	1047
41	email/edit	["admin/templates/create","createtemplate", "admin/templates/edit","admin/template/update","admin/templates/delete","admin/templates/view"]	1	1048
41	newsletter	\N	1	1049
52	faqs	\N	1	1073
52	faqs/list	["admin/faqs"]	1	1074
52	faqs/faqs	\N	1	1075
43	cms	\N	1	888
63	users/list	["admin/users"]	1	1305
43	cms/edit	["admin/cms/create","admin/cms/edit","updatecms","createcms","admin/cms/delete"]	1	890
52	faqs/faqs/edit	["admin/faqs/create","createfaqadmin","admin/faqs/edit","updatefaqadmin","admin/faqs/delete","admin/faqs/view"]	1	1076
59	donations	\N	1	1083
59	donations/list	["admin/donations", "admin/donations/show"]	1	1084
60	donations	\N	1	1089
60	donations/list	["admin/donations", "admin/donations/show"]	1	1090
60	package	\N	1	1091
60	package/list	["admin/package"]	1	1092
60	package/package	\N	1	1093
60	package/package/edit	["admin/package/create","createpackage","admin/package/edit","updatepackage","admin/package/show"]	1	1094
5	users	\N	1	1278
5	users/list	["admin/users"]	1	1279
5	users/edit	["admin/users/create","admin/users/edit","update_users","createuser"]	1	1280
5	permissions	\N	1	1281
5	permissions/roles	["system/permission"]	1	1282
5	permissions/roles/edit	["system/permission/create", "system/permission/edit", "update_role", "system/rolecreate", "system/permission/delete"]	1	1283
5	permissions/roleusers	["permission/users"]	1	1284
5	permissions/roleusers/edit	["permission/usercreate", "permission/userstore", "permission/users/edit", "usersupdate", "permission/users/delete", "admin/role-users/index",\r\n\t\t\t\t\t\t"admin/role-users/create","create-role-user","admin/role-users/delete","admin/role-users/edit","update-role-users","admin/role-users/viewprofile"]	1	1285
63	faqs/faqs/edit	["admin/faqs/create","createfaqadmin","admin/faqs/edit","updatefaqadmin","admin/faqs/delete","admin/faqs/view"]	1	1351
63	settings	\N	1	1352
63	settings/list	["admin/settings","admin/settings/general","admin/settings/updategeneral","admin/settings/email","admin/settings/updateemail","admin/settings/socialmedia","admin/settings/updatemedia","admin/settings/image","admin/settings/updateimagesettings"]	1	1353
64	category	\N	1	1354
64	category/list	["admin/category"]	1	1355
64	category/category	\N	1	1356
64	category/category/edit	["admin/category/create","createcategory","admin/category/edit","updatecategory","admin/category/delete"]	1	1357
64	organization	\N	1	1358
64	organization/list	["admin/organization","admin/organization/show"]	1	1359
64	organization/edit	["admin/organization/create","admin/organization/show","organisationcreate","createorganisation","admin/organization/edit", "updateorganisation", "admin/organization/delete"]	1	1360
64	programs	\N	1	1361
64	programs/list	["admin/program"]	1	1362
64	programs/edit	["admin/program/create","createprogram","programcreate","admin/program/edit","updateprogram","admin/program/delete","admin/program/show"]	1	1363
64	donations	\N	1	1364
64	donations/list	["admin/donations", "admin/donations/show"]	1	1365
64	suggest_npo	\N	1	1366
64	suggest_npo/list	["admin/suggest_npo"]	1	1367
64	suggest_npo/delete	["admin/suggest_npo/delete"]	1	1368
50	permissions	\N	1	1006
50	permissions/roles	["system/permission"]	1	1007
50	permissions/roles/edit	["system/permission/create", "system/permission/edit", "update_role", "system/rolecreate", "system/permission/delete"]	1	1008
50	permissions/roleusers	["permission/users"]	1	1009
50	permissions/roleusers/edit	["permission/usercreate", "permission/userstore", "permission/users/edit", "usersupdate", "permission/users/delete", "admin/role-users/index",\r\n\t\t\t\t\t\t"admin/role-users/create","create-role-user","admin/role-users/delete","admin/role-users/edit","update-role-users","admin/role-users/viewprofile"]	1	1010
41	newsletter/list	["admin/newsletter","send_newsletter"]	1	1050
41	notification	\N	1	1051
41	notification/list	["admin/push-notifications"]	1	1052
41	notification/notifications	["admin/notifications"]	1	1053
41	permissions	\N	1	1054
41	permissions/roles	["system/permission"]	1	1055
41	permissions/roles/edit	["system/permission/create", "system/permission/edit", "update_role", "system/rolecreate", "system/permission/delete"]	1	1056
41	permissions/roleusers	["permission/users"]	1	1057
41	permissions/roleusers/edit	["permission/usercreate", "permission/userstore", "permission/users/edit", "usersupdate", "permission/users/delete", "admin/role-users/index",\r\n\t\t\t\t\t\t"admin/role-users/create","create-role-user","admin/role-users/delete","admin/role-users/edit","update-role-users","admin/role-users/viewprofile"]	1	1058
41	contactus	\N	1	1059
41	contactus/list	["admin/contactus"]	1	1060
41	contactus/delete	["admin/contactus/delete"]	1	1061
41	suggest_npo	\N	1	1062
41	suggest_npo/list	["admin/suggest_npo"]	1	1063
41	suggest_npo/delete	["admin/suggest_npo/delete"]	1	1064
41	faqs	\N	1	1065
41	faqs/list	["admin/faqs"]	1	1066
41	faqs/faqs	\N	1	1067
41	faqs/faqs/edit	["admin/faqs/create","createfaqadmin","admin/faqs/edit","updatefaqadmin","admin/faqs/delete","admin/faqs/view"]	1	1068
57	contactus	\N	1	1077
57	contactus/list	["admin/contactus"]	1	1078
57	contactus/delete	["admin/contactus/delete"]	1	1079
61	contactus	\N	1	1095
61	contactus/list	["admin/contactus"]	1	1096
61	contactus/delete	["admin/contactus/delete"]	1	1097
63	category	\N	1	1294
63	category/list	["admin/category"]	1	1295
63	category/category	\N	1	1296
63	category/category/edit	["admin/category/create","createcategory","admin/category/edit","updatecategory","admin/category/delete"]	1	1297
63	organization	\N	1	1298
63	organization/list	["admin/organization","admin/organization/show"]	1	1299
63	organization/edit	["admin/organization/create","admin/organization/show","organisationcreate","createorganisation","admin/organization/edit", "updateorganisation", "admin/organization/delete"]	1	1300
63	programs	\N	1	1301
63	programs/list	["admin/program"]	1	1302
63	programs/edit	["admin/program/create","createprogram","programcreate","admin/program/edit","updateprogram","admin/program/delete","admin/program/show"]	1	1303
63	users	\N	1	1304
63	users/edit	["admin/users/create","admin/users/edit","update_users","createuser"]	1	1306
63	donations	\N	1	1307
63	donations/list	["admin/donations", "admin/donations/show"]	1	1308
\.


--
-- Data for Name: roles_users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.roles_users (ruid, role_id, place_id, user_id, created_date, updated_date) FROM stdin;
83	5	0	83	2021-03-15	2021-03-15 16:24:17
82	1	0	70	2021-03-15	2021-03-17 18:59:28
85	40	0	102	2021-03-25	\N
86	41	0	117	2021-03-26	\N
92	60	0	164	2021-04-01	\N
93	64	0	179	2021-04-15	2021-04-15 18:05:18
\.


--
-- Data for Name: settings; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.settings (site_name, meta_title, meta_keywords, meta_description, theme, logo, favicon, default_language, default_country, contact_address, copyrights, site_mode, status, updated_at, id, site_owner, email, telephone, fax, site_description, default_state, default_length_class, default_weight_class, default_city, blocklist_words, footer_text, default_currency, min_fund_request, max_fund_request, footer_text1, currency_side, info_id, language_id, copy_rights, sms_account_id, sms_account_token, sms_sender_number, geocode, site_job_title, site_bottom_title, site_bottom_description, min_amount, max_amount, paygate_notify, paygate_return, web_date_format, homepage_video) FROM stdin;
Instamall	Explore and book beauty, health and wellness appointment system | Instamall 	Explore and book beauty, health and wellness appointment system, Instamall 	Explore and book beauty, health and wellness appointment system by Instamall platform	10bucksonly	logo.png	favicon.png	1	58	C Ring Road, Doha, Qatar	Copyright © 2019 Instamall.com	1	1	2019-07-25 12:00:31	1	Admin	info@instamall.com		12345678	Instamall - get services at your home	\N	\N	13	98	a55,a55hole,aeolus,ahole,anal,analprobe,anilingus,anus,areola,areole,arian,aryan,assbang,assbanged,assbangs,asses,assfuck,assfucker,assh0le,asshat,assho1e,as hole,assholes,assmaster,assmunch,asswipe,asswipes,azazel,azz,b1tch,babe,babes,ballsack,bang,banger,barf,bastard,bastards,bawdy,beaner,beardedclam,beastiality,batch,beater,beaver,beer,beeyotch,beotch,biatch,bigtits,big tits,bimbo,bitch,bitched,bitches,bitchy,blow job,blow,blowjob,blowjobs,bod,bodily,boink,bollock,bollocks,bollok,bone,boned,boner,boners,bong,boob,boobies,boobs,booby,booger,bookie,bootee,bootie,booty,booz,boozer,boozy,bosom,bosomy,bowel,bowels,bra,brassiere,breast,breasts,bugger,bukkake,bullshit,bull shit,bullshits,bullshitted,bullturds,bung,busty,butt,butt fuck,buttfuck,buttfucker,buttfucker,buttplug,c.0.c.k,c.o.c.k.,c.u.n.t,c0ck,c-0-c-k,cahone,cameltoe,carpetmuncher,cawk,cervix,chinc,chincs,chink,chink,chod,chodes,cl1t,climax,clit,clitoris,clitorus,clits,clitty,cocain,cocaine,cock,c-o-c-k,cockblock,cockholster,cockknocker,cocks,cocksmoker,cocksucker,cock sucker,coital,commie,condom,coon,coons,corksucker,crabs,crack,cracker,crackwhore,crap,crappy,cum,cummin,cumming,cumshot,cumshots,cumslut,cumstain,cunilingus,cunilingus,cunny,cunt,cunt,c-u-n-t,cuntface,cunthunter,cuntlick,cuntlicker,cunts,d0ng,d0uch3,d0uche,d1ck,d1ld0,d1ldo,dago,dagos,dammit,damn,damned,damnit,dawgie-syle,dick,dickbag,dickdipper,dickface,dickflipper,dickhead,dickheads,dickish,dick-ish,dickripper,dicksipper,dickweed,dickwhipper,dickzipper,diddle,dike,dildo,dilos,diligaf,dillweed,dimwit,dingle,dipship,doggie-style,doggy-style,dong,doofus,doosh,dopey,douch3,douche,douchebag,douchebags,douchey,drunk,dumass,dumbass,dumbases,dummy,dyke,dykes,ejaculate,enlargement,erect,erection,erotic,essohbee,extacy,extasy,f.u.c.k,fack,fag,fagg,fagged,faggit,faggot,fagot,fags,faig,faigt,fannybadit,fart,fartknocker,fat,felch,felcher,felching,fellate,fellatio,feltch,feltcher,fisted,fisting,fisty,floozy,foad,fondle,foobar,foreskin,freex,frigg,frigga,fuba,fuck,f-u-c-k,fuckass,fucked,fucked,fucker,fuckface,fuckin,fucking,fucknugget,fucknut,fuckoff,fucks,fucktard,fuck-tard,fuckup,fuckwad,fuckwit,fudgepacker,fuk,fvk,fxck,gae,gai,ganja,gay,gays,gey,gfy,ghay,ghey,gigolo,glans,goatse,godamn,godamnit,goddam,goddammit,goddamn,goldenshower,gonad,gonads,gook,gooks,gringo,gspot,gspot,gtfo,guido,h0m0,h0mo,handjob,hard on,he11,hebe,heeb,hell,hemp,heroin,herp,herpes,herpy,hitler,hiv,hobag,hom0,homey,homo,homoey,honky,hooch,hookah,hooker,hoor,hootch,hooter,hooters,horny,hump,huped,humping,hussy,hymen,inbred,incest,injun,j3rk0ff,jackass,jackhole,jackoff,jap,japs,jerk,jerk0ff,jerked,jerkoff,jism,jiz,jizm,jizz,jizzed,junkie,junky,kike,kies,kill,kinky,kkk,klan,knobend,kooch,kooches,kootch,kraut,kyke,labia,ech,leper,lesbians,lesbo,lesbos,lez,lezbian,lezbians,lezbo,lezbos,lezzie,lezzies,lezzy,lmao,lmfao,loin,loins,lube,lusty,mams,massa,masterbate,masterbating,masterbation,masturbate,masturbating,masturbation,maxi,menses,menstruate,menstruation,meth,m-fucing,mofo,molest,moolie,moron,motherfucka,motherfucker,motherfucking,mtherfucker,mthrfucker,mthrfucking,muff,muffdiver,murder,muthafuckaz,muthafucker,mutherfucke,mutherfucking,muthrfucking,nad,nads,naked,napalm,nappy,nazi,nazism,negro,nigga,niggah,niggas,niggaz,nigger,nigger,niggers,niggle,niglet,nimrod,ninny,nipple,nooy,nympho,opiate,opium,oral,orally,organ,orgasm,orgasmic,orgies,orgy,ovary,ovum,ovums,p.u.s.s.y.,paddy,paki,pantie,panties,panty,pastie,pasty,pcp,pecker,pedo,pedphile,pedophilia,pedophiliac,pee,peepee,penetrate,penetration,penial,penile,penis,perversion,peyote,phalli,phallic,phuck,pillowbiter,pimp,pinko,piss,pissed,pissff,piss-off,pms,polack,pollock,poon,poontang,porn,porno,pornography,pot,potty,prick,prig,prostitute,prude,pube,pubic,pubis,punkass,punky,puss,pussies,pussy,pusspounder,puto,queaf,queef,queef,queer,queero,queers,quicky,quim,racy,rape,raped,raper,rapist,raunch,rectal,rectum,rectus,reefer,reetard,reich,retard,retarded,reve,rimjob,ritard,rtard,r-tard,rumprammer,ruski,s.h.i.t.,s.o.b.,s0b,sadism,sadist,scag,scantily,schizo,schlong,screw,screwed,scrog,scrot,scrote,scrotum,srud,scum,seaman,seamen,seduce,semen,sex,sexual,sh1t,s-h-1-t,shamedame,shit,s-h-i-t,shite,shiteater,shitface,shithead,shithole,shithouse,shits,shitt,shitted,shiter,shitty,shiz,sissy,skag,skank,slave,sleaze,sleazy,slut,slutdumper,slutkiss,sluts,smegma,smut,smutty,snatch,sniper,snuff,s-o-b,sodom,souse,soused,sperm,spic,spck,spik,spiks,spooge,spunk,steamy,stfu,stiffy,stoned,strip,stroke,stupid,suck,sucked,sucking,sumofabiatch,t1t,tampon,tard,tawdry,teabagging,teat,terd,teste,teste,testes,testicle,testis,thrust,thug,tinkle,tit,titfuck,titi,tits,tittiefucker,titties,titty,tittyfuck,tittyfucker,toots,tramp,transsexual,trashy,tubgirl,trd,tush,twat,twats,ugly,undies,unwed,urinal,urine,uterus,uzi,vag,vagina,valium,viagra,virgin,vixen,vodka,vomit,voyeur,vulgar,vulva,wad,wang,wank,wanker,wazoo,wegie,weed,weenie,weewee,weiner,weirdo,wench,wetback,wh0re,wh0reface,whitey,whiz,whoralicious,whore,whorealicious,whored,whoreface,whorehopper,whorehouse,whores,woring,wigger,womb,woody,wop,wtf,x-rated,xxx,yeasty,yobbo,zoophile	INSTAMALL enables home based professionals to be self-sufficient and run their own independent business at the comfort of their home	7	10	100	\N	1	1	\N	\N	AC648e25ad93bdcbb9788baa76f1735e3c	be957754ded4d586c923fcab28eab806	+14055627423	25.2660412,51.5379497	FIND THE JOBS	Are you a home-based service provider looking to grow your business?	Manage your business, accept online payments, expand your customer base and grow your business using Instamall  software	500	500000	{"PAY_REQUEST_ID":"A1F416A7-08D6-4DB3-A2CC-8AEB962F559F","TRANSACTION_STATUS":"2","CHECKSUM":"b171acf038898a043388ef83a8341f1c"}	{"PAY_REQUEST_ID":"CD0F9001-5C21-2EE0-9BB2-2A342D538E7A","TRANSACTION_STATUS":"1","CHECKSUM":"d10e215dcd2ec31527190bd9c98e8b30"}	4	https://www.youtube.com/embed/hPTrtp098vg
\.


--
-- Data for Name: settings_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.settings_infos (id, info_id, language_id, copyrights) FROM stdin;
1	79	1	© 2019 Instamall.com. All rights reserved.
\.


--
-- Data for Name: suggest_npo; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.suggest_npo (id, charity_name, charity_email, charity_phone, charity_location, charity_description, charity_status, longtitude, latitude, created_at, "position", user_id, contact_person) FROM stdin;
29	Karthick	karthick@getnada.com	9876543210	Bangalore, India	API Test Purpose Only !!	0	77.7506	12.9835	2021-03-17 07:03:00	\N	\N	\N
30	Karthick	karthick@getnada.com	9876543210	Bangalore, India	API Test Purpose Only !!	0	77.7506	12.9835	2021-03-17 07:22:27	\N	\N	\N
31	Karthick	karthick@getnada.com	9876543210	Bangalore, India	API Test Purpose Only !!	0	77.7506	12.9835	2021-03-17 07:23:12	\N	\N	\N
32	Karthick	karthick@getnada.com	9876543210	Bangalore, India	API Test Purpose Only !!	0	77.7506	12.9835	2021-03-17 07:25:24	\N	\N	\N
33	Karthick	karthick@getnada.com	9876543210	Bangalore, India	Test Purpose only !!	0	77.7506	12.9835	2021-03-17 07:28:33	\N	\N	\N
34	Karthick	karthick@getnada.com	9876543210	Bangalore, India	Test Purpose only !!	0	77.7506	12.9835	2021-03-17 07:34:35	\N	\N	\N
35	Karthick	karthick@getnada.com	9876543210	Bangalore, India	Test Purpose only !!	0	77.7506	12.9835	2021-03-17 08:03:16	\N	\N	\N
39	ramesh	gh@getnada.com	+91 86087 91165	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	test	0	77.7500918	12.9838955	2021-03-25 15:42:14	\N	\N	\N
41	Infosys Foundation	infosys@gmail.com	+91 1234 567 890	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	Hey Just testing the app	0	77.7500831	12.9838971	2021-04-10 05:18:29	\N	\N	\N
42	abc charity	ch@getnada.com	+91 96061 69056	Durbanville, Cape Town, South Africa	test	0	18.6526846	-33.8275335	2021-04-20 09:49:24	\N	\N	\N
43	ddddd	preethi.s@nextbraintech.com	+919514836224	dddddddddd	\N	0	\N	\N	2021-04-21 19:04:03	ddddddd	\N	\N
44	sample	sample@nextbraintech.com	1234567890	Bangalore	\N	0	\N	\N	2021-04-21 19:26:45	dfd	\N	\N
45	COVID ORG	ramesh.k@nextbraintech.com	9606169056	test	\N	0	\N	\N	2021-05-10 08:29:50	Senior manager	0	\N
46	Ramesh Kolla	ramesh@nextbraintech.com	9606169056	hyderabad	\N	0	\N	\N	2021-05-11 12:53:32	test user	0	\N
47	test	a@a.com	8363537653	Stellenbosch, South Africa	testing	0	\N	\N	2021-05-13 13:44:17	test	0	test
48	NPO Test	npotest@mail.com	9237236527	South Beach, Durban, South Africa	npo testing	0	\N	\N	2021-05-13 17:24:32	npo test	0	NPO test
49	Al Ansaar Foundation	info@alansaar.org.za	0312081601	Durban, South Africa	Npo	0	\N	\N	2022-07-24 14:50:44	Admin	0	Admin
\.


--
-- Data for Name: tags; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.tags (id, url_index, status, created_at, updated_at) FROM stdin;
2	cancer	1	2021-05-14 13:32:46	2021-05-14 13:32:46
3	poverty	1	2021-05-17 09:12:31	2021-05-17 09:12:31
4	mental-health	1	2021-05-17 09:35:32	2021-05-17 09:36:03
5	rehab	1	2021-05-17 10:19:27	2021-05-17 10:19:27
6	suicide	1	2021-05-17 10:20:12	2021-05-17 10:20:12
7	animal-welfare	1	2021-05-17 10:20:52	2021-05-17 10:20:52
8	human-rights	1	2021-05-17 10:21:19	2021-05-17 10:21:19
9	education	1	2021-05-17 10:21:49	2021-05-17 10:21:49
10	refugee	1	2021-05-17 10:22:13	2021-05-17 10:22:13
12	organ-donor	1	2021-05-17 10:24:19	2021-05-17 10:24:19
14	farming	1	2021-05-17 10:57:51	2021-05-17 10:57:51
15	environment	1	2021-05-17 10:58:20	2021-05-17 10:58:20
17	autism	1	2021-05-17 10:59:13	2021-05-17 10:59:13
18	land-and-housing	1	2021-05-17 10:59:38	2021-05-17 10:59:38
19	nursing-homes	1	2021-05-17 11:00:17	2021-05-17 11:00:17
20	church	1	2021-05-17 11:00:40	2021-05-17 11:00:40
21	temple	1	2021-05-17 12:14:21	2021-05-17 12:14:21
22	clinics	1	2021-05-17 12:15:07	2021-05-17 12:15:07
23	madressa	1	2021-05-17 12:15:52	2021-05-17 12:15:52
24	school	1	2021-05-17 12:16:31	2021-05-17 12:16:31
25	drug-rehab	1	2021-05-17 12:17:11	2021-05-17 12:17:11
26	old-age-homes	1	2021-05-17 12:17:53	2021-05-17 12:17:53
27	hospice	1	2021-05-17 12:18:36	2021-05-17 12:18:36
28	mosque	1	2021-05-17 12:20:17	2021-05-17 12:20:17
29	healthcare	1	2021-05-17 12:49:30	2021-05-17 12:49:30
30	disaster-relief	1	2021-05-17 12:50:17	2021-05-17 12:50:17
31	unemployment	1	2021-05-17 12:54:43	2021-05-17 12:54:43
32	mental-disability	1	2021-05-17 12:55:36	2021-05-17 12:55:36
33	physical-disability	1	2021-05-17 12:56:09	2021-05-17 12:56:09
35	musjid	1	2021-05-17 12:57:07	2021-05-17 12:57:07
1	orphanage-orphans	1	2021-05-14 13:31:38	2021-05-17 12:58:37
11	hiv-aids	1	2021-05-17 10:22:50	2021-05-17 12:59:51
13	blood-donor	1	2021-05-17 10:57:25	2021-07-02 06:53:58
16	homeless	1	2021-05-17 10:58:48	2021-07-02 06:56:15
34	feeding-scheme	1	2021-05-17 12:56:39	2021-07-02 07:01:58
36	cape-town	1	2022-10-17 15:25:07	2022-10-17 15:25:07
37	durban	1	2022-10-17 15:25:26	2022-10-17 15:25:26
38	johannesburg	1	2022-10-17 15:25:35	2022-10-17 15:25:44
39	khidmatul-khalq-foundation	1	2023-03-04 12:56:19	2023-03-04 12:56:19
\.


--
-- Data for Name: tags_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.tags_infos (id, tag_id, name, language_id, description) FROM stdin;
2	2	Cancer	1	Cancer
4	3	Poverty	1	Poverty
6	4	Mental health	1	
7	5	Rehab	1	Rehab
8	6	Suicide	1	Suicide
9	7	Animal Welfare	1	Animal Welfare
10	8	Human Rights	1	Human Rights
11	9	Education	1	Education
12	10	Refugee	1	Refugee
14	12	Organ donor	1	Organ donor
16	14	Farming	1	Farming
17	15	Environment	1	Environment
19	17	Autism	1	Autism
20	18	Land and housing	1	Land and housing
21	19	Nursing Homes	1	Nursing Homes
22	20	Church	1	Church
23	21	Temple	1	Temple
24	22	Clinics	1	Clinics
25	23	Madressa	1	Madressa
26	24	School	1	School
27	25	Drug Rehab	1	Drug Rehab
28	26	Old Age Homes	1	Old Age Homes
29	27	Hospice	1	Hospice
30	28	Mosque	1	Mosque
31	29	Healthcare	1	Healthcare
32	30	Disaster relief	1	Disaster relief
33	31	Unemployment	1	Unemployment
34	32	Mental disability	1	Mental disability
35	33	Physical disability	1	Physical disability
37	35	Musjid	1	Musjid
38	1	Orphanage/Orphans	1	Orphanage/Orphans
40	11	HIV/Aids	1	HIV/Aids
41	13	Blood donor	1	Blood donor
42	16	Homeless	1	Homeless
43	34	Feeding Scheme	1	Feeding Scheme
44	36	Cape Town	1	
45	37	Durban	1	
47	38	Johannesburg	1	
48	39	Khidmatul Khalq Foundation	1	
\.


--
-- Data for Name: testimonials; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.testimonials (id, status, created_by, created_at, updated_at, image) FROM stdin;
11	1	1	2022-02-02 13:05:57	\N	11.jpg
12	1	1	2022-02-02 13:06:37	\N	12.jpg
13	1	1	2022-02-02 13:07:17	\N	13.jpg
\.


--
-- Data for Name: testimonials_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.testimonials_infos (info_id, testimonial_id, language_id, name, designation, description) FROM stdin;
17	11	1	Zunaid	Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
18	12	1	Sameeha	Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
19	13	1	Laiqah 	Lorem Ipsum	Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
\.


--
-- Data for Name: transactions; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.transactions (id, transaction_amount, user_id, transaction_id, payment_type, payment_method, payment_status, transaction_at, donate_id_old, donate_id) FROM stdin;
1	500	7	895246321	1	credit card	1	2020-12-11 00:00:00	1	1
2	1000	7	985478965	1	Debit Card	1	2020-12-11 00:00:00	2	2
\.


--
-- Data for Name: user_activity_log; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_activity_log (message, date, ip_address, device, user_id, activity_type, activity_id) FROM stdin;
Logged out	2021-03-01 19:23:45	127.0.0.1		1		1
Logged out	2021-03-01 19:29:28	127.0.0.1		1		2
Logged out	2021-03-01 19:32:47	127.0.0.1		1		3
Logged out	2021-03-01 22:19:35	127.0.0.1		1		4
Logged out	2021-03-02 09:56:43	127.0.0.1		1		5
Logged out	2021-03-02 10:01:06	127.0.0.1		1		6
Logged out	2021-03-02 10:03:55	127.0.0.1		2		7
Logged out	2021-03-02 17:41:40	127.0.0.1		1		8
Logged out	2021-03-02 17:54:40	127.0.0.1		1		9
Logged out	2021-03-02 17:58:47	106.51.73.130		1		10
Logged out	2021-03-02 19:50:42	127.0.0.1		1		11
Logged out	2021-03-03 13:08:13	127.0.0.1		1		12
Logged out	2021-03-05 13:52:38	106.51.73.130		1		13
Logged out	2021-03-08 18:44:32	106.51.73.130		1		14
Logged out	2021-03-09 09:50:44	127.0.0.1		1		15
Logged out	2021-03-13 13:37:16	127.0.0.1		1		16
Logged out	2021-03-13 16:47:36	127.0.0.1		1		17
Logged out	2021-03-15 12:25:24	127.0.0.1		1		18
Logged out	2021-03-15 12:26:00	127.0.0.1		80		19
Logged out	2021-03-15 12:27:03	127.0.0.1		78		20
Logged out	2021-03-15 12:27:27	127.0.0.1		75		21
Logged out	2021-03-15 13:09:15	127.0.0.1		1		22
Logged out	2021-03-15 13:10:47	127.0.0.1		80		23
Logged out	2021-03-15 15:26:19	127.0.0.1		68		24
Logged out	2021-03-16 13:19:11	::1		1		25
Logged out	2021-03-16 13:34:31	::1		1		26
Logged out	2021-03-16 17:32:36	::1		1		27
Logged out	2021-03-16 17:38:16	::1		70		28
Logged out	2021-03-16 17:38:49	::1		70		29
Logged out	2021-03-16 18:11:25	::1		1		30
Logged out	2021-03-16 18:11:53	::1		82		31
Logged out	2021-03-16 18:13:24	::1		1		32
Logged out	2021-03-16 18:19:45	::1		82		33
Logged out	2021-03-16 18:37:18	::1		83		34
Logged out	2021-03-17 18:59:09	::1		70		35
Logged out	2021-03-17 19:29:45	::1		82		36
Logged out	2021-03-17 19:31:57	::1		70		37
Logged out	2021-03-17 19:45:57	::1		82		38
Logged out	2021-03-17 19:51:44	::1		70		39
Logged out	2021-03-17 19:53:28	::1		82		40
Logged out	2021-03-23 10:14:04	::1		82		41
Logged out	2021-03-23 13:35:01	::1		82		42
Logged out	2021-03-23 15:24:41	::1		82		43
Logged out	2021-03-23 15:29:46	::1		82		44
Logged out	2021-03-23 16:31:37	::1		1		45
Logged out	2021-03-23 19:39:54	106.51.73.130		82		46
Logged out	2021-03-24 10:10:14	::1		82		47
Logged out	2021-03-25 11:25:36	::1		96		48
Logged out	2021-03-25 11:30:34	::1		1		49
Logged out	2021-03-25 11:44:42	::1		96		50
Logged out	2021-03-25 18:58:20	::1		1		51
Logged out	2021-03-25 20:09:44	106.51.73.130		102		52
Logged out	2021-03-25 20:10:56	::1		1		53
Logged out	2021-03-26 19:05:19	106.51.73.130		1		54
Logged out	2021-03-29 17:25:00	106.51.73.130		1		55
Logged out	2021-03-29 17:32:57	::1		82		56
Logged out	2021-03-29 19:35:17	::1		1		57
Logged out	2021-03-29 19:35:34	::1		1		58
Logged out	2021-03-29 19:43:59	::1		1		59
Logged out	2021-03-29 19:46:09	::1		1		60
Logged out	2021-03-31 11:02:14	::1		1		61
Logged out	2021-03-31 16:56:17	::1		162		62
Logged out	2021-03-31 16:58:19	::1		162		63
Logged out	2021-03-31 17:44:43	::1		82		64
Logged out	2021-03-31 17:49:04	::1		82		65
Logged out	2021-03-31 17:59:24	::1		82		66
Logged out	2021-03-31 18:01:52	::1		82		67
Logged out	2021-04-01 11:42:48	106.51.73.130		1		68
Logged out	2021-04-01 12:12:38	::1		82		69
Logged out	2021-04-01 12:26:41	::1		1		70
Logged out	2021-04-01 12:30:23	::1		82		71
Logged out	2021-04-01 12:34:37	::1		83		72
Logged out	2021-04-01 16:55:50	::1		1		73
Logged out	2021-04-05 01:49:08	105.233.225.167		1		74
Logged out	2021-04-05 17:50:16	106.203.3.24		1		75
Logged out	2021-04-05 18:15:18	::1		1		76
Logged out	2021-04-06 18:36:31	::1		179		77
Logged out	2021-04-06 19:01:14	106.51.73.130		179		78
Logged out	2021-04-08 10:38:52	106.51.73.130		1		79
Logged out	2021-04-08 10:46:55	::1		164		80
Logged out	2021-04-08 10:47:49	106.51.73.130		164		81
Logged out	2021-04-08 10:55:29	::1		1		82
Logged out	2021-04-08 11:03:37	::1		164		83
Logged out	2021-04-08 11:08:14	::1		1		84
Logged out	2021-04-08 11:21:07	::1		164		85
Logged out	2021-04-08 11:25:19	::1		1		86
Logged out	2021-04-08 11:25:55	::1		179		87
Logged out	2021-04-08 11:34:51	106.51.73.130		179		88
Logged out	2021-04-08 12:03:57	106.51.73.130		1		89
Logged out	2021-04-08 12:07:17	106.51.73.130		190		90
Logged out	2021-04-08 12:12:19	106.51.73.130		1		91
Logged out	2021-04-08 12:17:59	::1		1		92
Logged out	2021-04-08 12:18:45	::1		190		93
Logged out	2021-04-08 12:19:16	::1		179		94
Logged out	2021-04-08 12:19:28	106.51.73.130		190		95
Logged out	2021-04-08 12:21:31	::1		83		96
Logged out	2021-04-08 12:22:39	::1		70		97
Logged out	2021-04-08 12:24:00	::1		179		98
Logged out	2021-04-08 13:11:28	106.51.73.130		1		99
Logged out	2021-04-15 18:04:51	106.51.73.130		227		100
Logged out	2021-04-16 10:49:15	::1		227		101
\.


--
-- Data for Name: user_interest_areas; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_interest_areas (id, user_id, category_id) FROM stdin;
1674	154	1
1675	154	6
1676	154	12
904	2	1
905	2	2
906	2	3
907	3	1
908	3	2
909	3	3
910	4	1
911	4	2
912	4	3
913	5	1
914	5	2
915	5	3
916	6	1
917	6	2
918	6	3
1678	76	3
1679	76	1
1351	50	2
922	8	1
923	8	2
924	8	3
925	9	1
926	9	2
927	9	3
928	10	1
929	10	2
930	10	3
931	11	1
932	11	2
933	11	3
934	12	1
935	12	2
936	12	3
937	13	1
938	13	2
939	13	3
940	14	1
941	14	2
942	14	3
943	15	1
944	15	2
945	15	3
946	16	1
947	16	2
948	16	3
949	17	1
950	17	2
951	17	3
952	18	1
953	18	2
954	18	3
955	19	1
956	19	2
957	19	3
958	20	1
959	20	2
960	20	3
961	21	1
962	21	2
963	21	3
964	22	1
965	22	2
966	22	3
967	23	1
968	23	2
969	23	3
970	24	1
971	24	2
972	24	3
1352	50	12
1680	76	6
1355	59	2
976	26	1
977	26	2
978	26	3
979	27	1
980	27	2
981	27	3
982	28	1
983	28	2
984	28	3
985	29	1
986	29	2
987	29	3
988	30	1
989	30	2
990	30	3
991	31	2
992	31	5
993	32	1
1356	62	2
1681	76	2
1682	76	5
1683	76	20
1684	76	15
1801	191	1
1802	191	2
1691	161	1
1803	191	3
1807	193	1
1808	193	2
1811	195	2
1812	195	4
1813	195	6
1817	197	2
1244	42	1
1245	42	2
1246	42	3
1247	42	4
1248	42	5
1249	42	6
1250	43	1
1251	43	2
1252	43	3
1019	33	1
1818	197	4
1705	169	2
1821	198	3
1822	198	6
1823	198	5
1706	169	5
1835	199	6
1183	34	1
1184	34	2
1185	34	3
1839	202	1
1378	66	3
1188	35	1
1189	36	1
1190	36	3
1191	37	1
1379	66	2
1840	202	2
1194	39	1
1195	39	2
1196	39	3
1841	202	3
1842	202	4
1575	79	15
1201	40	1
1202	40	2
1576	79	20
1707	169	6
1708	169	20
1583	86	2
1289	47	1
1290	47	4
1584	87	1
1585	87	2
1586	88	3
1294	25	3
1295	25	1
1296	25	2
1587	88	5
1588	88	6
1309	38	1
1310	38	2
1517	71	1
1518	72	5
1589	88	15
1590	88	20
1591	88	35
1592	90	1
1593	91	1
1594	92	1
1595	93	1
1596	94	1
1597	95	1
1598	99	1
1599	99	2
1804	192	1
1805	192	2
1806	192	5
1809	194	1
1810	194	2
1814	196	1
1694	167	1
1695	167	2
1701	168	2
1702	168	5
1703	168	6
1704	168	20
1709	170	2
1613	114	1
1614	114	2
1615	114	12
1616	114	20
1710	170	5
1711	170	6
1712	170	20
1713	171	1
1714	171	2
1815	196	2
1816	196	4
1715	171	3
1716	171	4
1717	171	5
1718	171	6
1719	171	12
1720	171	15
1721	171	20
1722	172	1
1723	172	2
1724	172	3
1725	172	4
1726	172	5
1727	172	6
1728	172	12
1729	172	15
1730	172	20
2053	205	1
1836	200	1
1837	200	5
1838	200	6
2067	207	3
2068	207	2
2070	210	1
1760	173	2
1761	173	12
1762	173	20
1763	173	38
1764	173	15
1771	178	1
1772	180	2
1773	180	20
2085	212	1
2086	212	4
2087	212	5
2088	212	6
2089	213	1
2090	213	2
2091	213	3
2092	213	6
2093	214	1
1786	187	1
1787	187	2
1788	187	3
1789	187	4
1790	188	2
1791	188	4
2109	113	2
2110	113	15
2111	113	20
2114	224	3
2115	224	6
2116	228	44
2117	230	3
2118	230	6
2119	230	43
2120	231	1
2121	232	3
2126	44	2
2127	44	3
2128	44	4
2129	44	6
2130	236	43
2131	236	45
2132	238	1
2133	239	44
2134	240	3
2135	241	2
2136	241	3
2137	242	1
2142	247	2
2143	247	3
2144	248	15
2145	248	38
2158	7	2
2159	7	3
2160	7	5
2161	7	6
2162	7	12
2163	7	20
2164	249	1
2165	250	1
2166	251	2
2167	251	3
2168	252	2
2169	252	3
2182	63	2
2183	63	15
2184	63	38
2185	253	15
2186	254	6
2187	255	2
2188	255	5
2189	255	20
2190	256	15
2191	257	2
2192	257	12
2193	257	45
\.


--
-- Data for Name: user_logins; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_logins (id, user_id, created_at) FROM stdin;
1	863	2020-02-07 08:04:54
2	862	2020-02-07 09:30:29
3	863	2020-02-07 09:32:16
4	863	2020-02-07 09:47:09
5	862	2020-02-07 10:03:52
6	595	2020-02-07 10:36:17
7	595	2020-02-07 11:42:00
8	862	2020-02-07 11:43:12
9	862	2020-02-08 05:11:30
10	862	2020-02-08 05:13:59
11	862	2020-02-08 07:31:06
12	582	2020-02-08 07:41:48
13	862	2020-02-08 13:57:01
14	936	2020-02-08 14:08:34
15	862	2020-02-08 14:49:22
16	862	2020-02-10 04:19:45
17	862	2020-02-10 04:53:31
18	851	2020-02-10 05:21:05
19	987	2020-02-10 05:53:30
20	851	2020-02-10 06:00:13
21	862	2020-02-10 06:00:48
22	889	2020-02-10 06:03:20
23	851	2020-02-10 06:07:13
24	987	2020-02-10 06:07:59
25	952	2020-02-10 06:12:32
26	990	2020-02-10 06:15:16
27	990	2020-02-10 06:20:51
28	952	2020-02-10 06:21:08
29	990	2020-02-10 06:21:22
30	926	2020-02-10 06:22:05
31	968	2020-02-10 06:22:43
32	987	2020-02-10 06:31:21
33	990	2020-02-10 07:14:03
34	952	2020-02-10 07:14:15
35	987	2020-02-10 07:15:48
36	889	2020-02-10 07:17:08
37	889	2020-02-10 07:27:38
38	595	2020-02-10 07:29:57
39	889	2020-02-10 07:53:04
40	889	2020-02-10 07:54:39
41	889	2020-02-10 07:59:07
42	952	2020-02-10 08:05:45
43	990	2020-02-10 08:06:18
44	987	2020-02-10 09:20:02
45	862	2020-02-10 09:24:12
46	851	2020-02-10 09:39:48
47	987	2020-02-10 09:43:28
48	851	2020-02-10 09:47:30
49	862	2020-02-10 09:50:43
50	851	2020-02-10 09:53:59
51	889	2020-02-10 09:54:24
52	987	2020-02-10 10:00:42
53	889	2020-02-10 10:07:10
54	852	2020-02-10 10:14:57
55	889	2020-02-10 10:22:31
56	987	2020-02-10 10:23:53
57	987	2020-02-10 10:25:59
58	851	2020-02-10 10:26:57
59	866	2020-02-10 10:34:14
60	987	2020-02-10 10:44:11
61	851	2020-02-10 11:18:26
62	889	2020-02-10 11:29:49
63	866	2020-02-10 11:30:29
64	889	2020-02-10 11:33:06
65	902	2020-02-10 11:34:57
66	992	2020-02-10 11:37:39
67	992	2020-02-10 11:40:09
68	987	2020-02-10 11:41:12
69	987	2020-02-10 11:43:04
70	987	2020-02-10 11:45:25
71	889	2020-02-10 11:46:36
72	966	2020-02-10 12:43:59
73	987	2020-02-10 12:45:22
74	987	2020-02-10 12:46:16
75	987	2020-02-10 12:46:54
76	889	2020-02-10 12:48:21
77	889	2020-02-10 12:49:12
78	862	2020-02-10 13:25:12
79	862	2020-02-10 13:31:58
80	863	2020-02-10 13:34:05
81	863	2020-02-10 13:50:32
82	862	2020-02-10 13:52:55
83	862	2020-02-10 14:34:22
84	862	2020-02-10 14:44:09
85	863	2020-02-10 14:45:04
86	862	2020-02-11 04:25:06
87	862	2020-02-11 04:41:28
88	595	2020-02-11 05:03:14
89	987	2020-02-11 06:06:25
90	582	2020-02-11 06:06:43
91	863	2020-02-11 06:48:58
92	862	2020-02-11 06:55:33
93	595	2020-02-11 07:01:55
94	595	2020-02-11 07:02:27
95	595	2020-02-11 07:03:01
96	851	2020-02-11 07:03:10
97	595	2020-02-11 07:22:00
98	862	2020-02-11 07:47:05
99	862	2020-02-11 08:05:42
100	862	2020-02-11 10:06:12
101	858	2020-02-11 10:38:31
102	863	2020-02-11 11:14:34
103	862	2020-02-11 11:22:06
104	863	2020-02-11 11:23:16
105	862	2020-02-11 11:25:44
106	863	2020-02-11 11:27:31
107	862	2020-02-11 11:29:26
108	862	2020-02-11 11:31:45
109	858	2020-02-11 11:35:11
110	894	2020-02-11 11:36:44
111	862	2020-02-11 11:52:26
112	863	2020-02-11 11:54:32
113	862	2020-02-11 11:55:14
114	851	2020-02-11 11:57:51
115	889	2020-02-11 11:59:23
116	582	2020-02-11 12:10:42
117	858	2020-02-11 12:25:58
118	889	2020-02-11 12:28:21
119	862	2020-02-11 12:44:33
120	862	2020-02-11 14:27:34
121	582	2020-02-12 04:32:57
122	894	2020-02-12 04:33:19
123	862	2020-02-12 04:38:36
124	582	2020-02-12 04:42:03
125	894	2020-02-12 05:13:35
126	894	2020-02-12 05:21:00
127	582	2020-02-12 05:25:29
128	889	2020-02-12 05:33:44
129	851	2020-02-12 05:38:05
130	894	2020-02-12 05:43:23
131	894	2020-02-12 05:46:42
132	995	2020-02-12 06:11:28
133	889	2020-02-12 06:50:53
134	582	2020-02-12 06:53:33
135	889	2020-02-12 06:55:28
136	889	2020-02-12 06:55:57
137	582	2020-02-12 07:45:35
138	987	2020-02-12 07:57:38
139	582	2020-02-12 09:42:06
140	1000	2020-02-12 09:52:18
141	999	2020-02-12 09:52:19
142	595	2020-02-12 09:54:24
143	987	2020-02-12 11:22:11
144	889	2020-02-12 11:28:23
145	987	2020-02-12 11:29:28
146	889	2020-02-12 11:31:49
147	998	2020-02-12 11:46:45
148	999	2020-02-12 11:48:10
149	998	2020-02-12 11:48:38
150	969	2020-02-12 12:01:24
151	990	2020-02-12 12:04:06
152	889	2020-02-12 12:09:25
153	1000	2020-02-12 12:30:57
154	889	2020-02-12 12:41:31
155	1002	2020-02-12 12:56:30
156	969	2020-02-12 12:57:57
157	968	2020-02-12 13:00:37
158	889	2020-02-12 13:28:17
159	866	2020-02-12 13:29:05
160	866	2020-02-12 14:07:14
161	889	2020-02-13 04:28:26
162	889	2020-02-13 04:29:20
163	889	2020-02-13 04:31:41
164	595	2020-02-13 04:40:50
165	889	2020-02-13 04:42:32
166	866	2020-02-13 04:54:51
167	889	2020-02-13 05:21:33
168	889	2020-02-13 05:23:12
169	866	2020-02-13 05:29:28
170	866	2020-02-13 05:30:09
171	851	2020-02-13 05:32:22
172	595	2020-02-13 05:43:31
173	595	2020-02-13 05:49:58
174	969	2020-02-13 06:33:07
175	969	2020-02-13 06:35:17
176	969	2020-02-13 06:38:38
177	969	2020-02-13 06:39:51
178	969	2020-02-13 06:39:53
179	969	2020-02-13 06:40:17
180	969	2020-02-13 06:40:19
181	969	2020-02-13 06:43:56
182	889	2020-02-13 07:07:40
183	889	2020-02-13 07:08:53
184	889	2020-02-13 07:21:53
185	595	2020-02-13 09:20:51
186	595	2020-02-13 09:43:34
187	889	2020-02-13 09:44:38
188	889	2020-02-13 10:13:37
189	851	2020-02-13 10:40:57
190	851	2020-02-13 10:47:07
191	595	2020-02-13 11:00:38
192	595	2020-02-13 11:08:53
193	595	2020-02-13 11:10:50
194	595	2020-02-13 11:14:58
195	851	2020-02-13 11:28:46
196	889	2020-02-13 11:37:42
197	889	2020-02-13 11:46:12
198	894	2020-02-13 12:39:10
199	851	2020-02-13 12:44:15
200	595	2020-02-13 12:48:39
201	595	2020-02-13 13:14:01
202	1003	2020-02-13 13:15:22
203	889	2020-02-13 13:18:31
204	862	2020-02-14 04:19:53
205	889	2020-02-14 04:24:32
206	1003	2020-02-14 04:49:57
207	582	2020-02-14 04:58:08
208	1005	2020-02-14 06:10:54
209	1004	2020-02-14 06:15:48
210	889	2020-02-14 07:03:15
211	990	2020-02-14 07:16:11
212	889	2020-02-14 07:26:27
213	889	2020-02-14 07:29:40
214	889	2020-02-14 09:54:34
215	851	2020-02-14 09:58:55
216	889	2020-02-14 10:21:30
217	990	2020-02-14 10:30:01
218	990	2020-02-14 10:31:29
219	993	2020-02-14 10:42:58
220	993	2020-02-14 10:44:35
221	1006	2020-02-14 10:48:07
222	1006	2020-02-14 10:48:59
223	1007	2020-02-14 10:52:53
224	1006	2020-02-14 10:57:21
225	889	2020-02-14 11:12:36
226	889	2020-02-14 11:27:50
227	987	2020-02-14 12:28:51
228	1008	2020-02-14 12:34:12
229	889	2020-02-14 12:35:57
230	889	2020-02-14 12:35:58
231	866	2020-02-14 12:45:41
232	866	2020-02-14 12:46:36
233	889	2020-02-14 12:50:58
234	889	2020-02-14 12:52:58
235	889	2020-02-17 04:55:41
236	851	2020-02-17 05:06:55
237	866	2020-02-17 05:07:30
238	889	2020-02-17 05:13:08
239	889	2020-02-17 05:13:36
240	889	2020-02-17 05:17:18
241	889	2020-02-17 06:48:06
242	595	2020-02-17 18:29:33
243	862	2020-02-18 04:28:22
244	923	2020-02-18 05:29:49
245	925	2020-02-18 05:34:20
246	923	2020-02-18 06:04:06
247	925	2020-02-18 06:58:39
248	862	2020-02-18 07:00:50
249	990	2020-02-18 07:25:35
250	990	2020-02-18 07:26:09
251	990	2020-02-18 07:53:01
252	990	2020-02-18 07:59:26
253	990	2020-02-18 07:59:58
254	990	2020-02-18 08:01:59
255	990	2020-02-18 08:10:55
256	925	2020-02-18 08:58:53
257	923	2020-02-18 08:59:29
258	990	2020-02-18 09:25:33
259	863	2020-02-18 09:36:03
260	990	2020-02-18 09:38:15
261	889	2020-02-18 09:48:06
262	863	2020-02-18 09:51:51
263	1010	2020-02-18 09:57:15
264	918	2020-02-18 10:27:40
265	1011	2020-02-18 10:37:56
266	1011	2020-02-18 10:49:51
267	1011	2020-02-18 11:10:11
268	1011	2020-02-18 13:49:43
269	995	2020-02-19 02:22:30
270	1011	2020-02-19 04:07:53
271	1011	2020-02-19 06:03:47
272	1010	2020-02-19 06:19:18
273	863	2020-02-19 06:30:17
274	1010	2020-02-19 06:32:14
275	863	2020-02-19 06:32:57
276	1010	2020-02-19 06:36:37
277	1010	2020-02-19 06:45:47
278	955	2020-02-19 11:14:16
279	955	2020-02-19 11:15:21
280	990	2020-02-19 11:25:38
281	990	2020-02-19 11:29:46
282	990	2020-02-19 11:33:04
283	1012	2020-02-19 11:42:44
284	990	2020-02-19 11:43:01
285	1012	2020-02-19 11:44:10
286	990	2020-02-19 11:44:56
287	990	2020-02-19 11:47:46
288	990	2020-02-19 11:52:40
289	920	2020-02-19 11:55:15
290	990	2020-02-19 11:59:02
291	1012	2020-02-19 12:02:38
292	1012	2020-02-19 12:19:10
293	1012	2020-02-19 12:19:55
294	1012	2020-02-19 12:42:02
295	1012	2020-02-20 04:21:53
296	889	2020-02-20 04:28:35
297	866	2020-02-20 04:33:01
298	866	2020-02-20 05:27:39
299	866	2020-02-20 05:29:42
300	866	2020-02-20 05:47:55
301	889	2020-02-20 05:53:28
302	1006	2020-02-20 06:02:37
303	851	2020-02-20 06:04:13
304	889	2020-02-20 06:05:04
305	889	2020-02-20 06:32:40
306	1012	2020-02-20 09:15:47
307	889	2020-02-20 09:47:16
308	968	2020-02-20 11:18:03
309	966	2020-02-20 11:31:39
310	866	2020-02-20 12:19:27
311	889	2020-02-20 12:22:24
312	1014	2020-02-20 21:24:05
313	1015	2020-02-20 21:38:49
314	1015	2020-02-20 21:38:53
315	1016	2020-02-21 00:35:25
316	1017	2020-02-21 00:53:03
317	1017	2020-02-21 00:53:22
318	1017	2020-02-21 00:53:23
319	1017	2020-02-21 00:53:30
320	1017	2020-02-21 00:53:53
321	1017	2020-02-21 00:53:59
322	1017	2020-02-21 00:54:11
323	1017	2020-02-21 00:54:53
324	1017	2020-02-21 00:55:04
325	851	2020-02-21 05:03:00
326	1012	2020-02-24 04:39:37
327	1012	2020-02-24 05:38:18
328	889	2020-02-24 08:09:39
329	990	2020-02-24 09:21:44
330	990	2020-02-24 09:22:45
331	1018	2020-02-24 09:38:08
332	1018	2020-02-24 09:41:05
333	1012	2020-02-24 09:45:15
334	1018	2020-02-24 09:48:38
335	1018	2020-02-24 10:22:11
336	1018	2020-02-24 10:23:00
337	1018	2020-02-24 10:23:31
338	1018	2020-02-24 10:35:29
339	1018	2020-02-24 10:45:19
340	1019	2020-02-24 11:16:52
341	990	2020-02-24 11:19:03
342	1012	2020-02-25 04:31:05
343	863	2020-02-25 04:34:08
344	863	2020-02-25 05:19:34
345	1011	2020-02-25 05:21:09
346	1011	2020-02-25 05:28:15
347	863	2020-02-25 05:28:38
348	1012	2020-02-25 05:34:54
349	1012	2020-02-25 07:17:23
350	1012	2020-02-25 12:45:11
351	1012	2020-02-25 13:36:07
352	1012	2020-02-26 04:43:37
353	1011	2020-02-26 04:54:00
354	851	2020-02-29 06:58:20
355	1020	2020-03-02 12:15:38
356	828	2020-03-03 14:10:59
357	1021	2020-03-04 06:49:53
358	1021	2020-03-04 06:51:15
359	851	2020-03-04 06:52:51
360	851	2020-03-04 06:55:54
361	1021	2020-03-04 06:57:45
362	1021	2020-03-04 07:01:18
363	595	2020-03-04 09:42:11
364	851	2020-03-04 10:27:10
365	1021	2020-03-04 10:28:39
366	851	2020-03-04 10:43:21
367	1021	2020-03-04 10:45:03
368	851	2020-03-04 11:09:50
369	1021	2020-03-04 11:27:28
370	889	2020-03-04 11:30:54
371	918	2020-03-04 11:57:46
372	894	2020-03-04 12:01:06
373	894	2020-03-04 12:06:17
374	1003	2020-03-04 12:07:57
375	1022	2020-03-04 12:19:26
376	889	2020-03-04 12:29:11
377	889	2020-03-04 12:37:35
378	851	2020-03-04 12:50:38
379	1021	2020-03-05 06:49:54
380	1021	2020-03-05 07:02:19
381	889	2020-03-05 07:09:11
382	595	2020-03-05 08:02:11
383	1021	2020-03-05 09:19:30
384	889	2020-03-05 09:35:16
385	1012	2020-03-05 12:03:47
386	1021	2020-03-05 13:06:36
387	1012	2020-03-05 13:45:10
388	1012	2020-03-06 07:21:03
389	879	2020-03-06 07:22:22
390	1023	2020-03-06 07:30:37
391	1023	2020-03-06 07:56:45
392	1012	2020-03-06 09:42:11
393	1012	2020-03-06 10:36:17
394	1012	2020-03-06 10:46:17
395	1012	2020-03-06 11:09:21
396	1012	2020-03-06 11:16:24
397	582	2020-03-06 11:42:25
398	863	2020-03-06 11:48:51
399	595	2020-03-06 12:03:22
400	582	2020-03-06 12:11:58
401	595	2020-03-06 13:01:54
402	582	2020-03-06 13:02:14
403	595	2020-03-10 07:19:41
404	595	2020-03-10 07:21:27
405	595	2020-03-11 11:18:59
406	595	2020-03-11 13:47:34
407	826	2020-03-12 07:48:13
408	1012	2020-03-13 07:50:11
409	595	2020-03-13 07:52:17
410	1012	2020-03-13 09:53:05
411	1012	2020-03-13 11:10:50
412	1012	2020-03-13 11:16:49
413	955	2020-03-13 12:10:44
414	1012	2020-03-13 12:12:03
415	955	2020-03-13 12:28:13
416	918	2020-03-13 12:29:05
417	918	2020-03-13 12:34:23
418	918	2020-03-13 12:34:58
419	918	2020-03-13 12:45:41
420	1012	2020-03-13 12:51:43
421	918	2020-03-13 12:59:39
422	595	2020-03-13 13:25:34
423	1012	2020-03-13 13:27:33
424	1012	2020-03-13 13:44:04
425	1012	2020-03-13 14:09:31
426	1012	2020-03-14 04:45:48
427	955	2020-03-14 05:52:27
428	582	2020-03-14 06:10:18
429	870	2020-03-14 06:12:48
430	869	2020-03-14 06:13:07
431	1025	2020-03-14 06:54:49
432	1026	2020-03-14 07:16:13
433	1012	2020-03-14 07:29:03
434	1026	2020-03-14 07:49:19
435	1025	2020-03-14 07:49:41
436	582	2020-03-14 08:05:22
437	1025	2020-03-14 09:32:26
438	1026	2020-03-14 12:13:37
439	1025	2020-03-14 12:24:17
440	1012	2020-03-14 12:41:37
441	863	2020-03-14 12:56:27
442	1012	2020-03-14 13:27:50
443	1012	2020-03-16 04:46:16
444	851	2020-03-16 05:16:48
445	851	2020-03-16 05:39:34
446	866	2020-03-16 05:52:21
447	866	2020-03-16 05:56:03
448	851	2020-03-16 06:00:39
449	1012	2020-03-16 06:10:18
450	851	2020-03-16 06:18:52
451	863	2020-03-16 06:23:44
452	1025	2020-03-16 06:25:26
453	1026	2020-03-16 06:32:33
454	1025	2020-03-16 06:33:13
455	1012	2020-03-16 06:42:13
456	1026	2020-03-16 07:20:44
457	1031	2020-03-16 07:26:28
458	1025	2020-03-16 07:28:38
459	1025	2020-03-16 07:56:26
460	851	2020-03-16 11:08:18
461	851	2020-03-16 11:10:14
462	918	2020-03-16 12:02:28
463	918	2020-03-16 12:04:11
464	918	2020-03-16 12:05:43
465	1012	2020-03-16 13:00:54
466	1012	2020-03-17 04:18:37
467	851	2020-03-17 05:55:31
468	1026	2020-03-17 06:10:55
469	1012	2020-03-17 06:29:45
470	851	2020-03-17 06:47:36
471	1012	2020-03-17 07:04:08
472	851	2020-03-17 08:03:52
473	1012	2020-03-17 09:42:39
474	1012	2020-03-17 09:42:39
475	851	2020-03-17 09:56:07
476	851	2020-03-17 09:58:43
477	851	2020-03-17 10:08:00
478	851	2020-03-17 10:48:30
479	582	2020-03-17 10:50:15
480	851	2020-03-17 11:02:00
481	851	2020-03-17 11:12:08
482	595	2020-03-17 11:23:53
483	1026	2020-03-17 11:52:20
484	851	2020-03-17 12:02:47
485	1012	2020-03-17 12:26:45
486	582	2020-03-17 14:03:09
487	595	2020-03-17 14:04:52
488	582	2020-03-17 14:05:25
489	582	2020-03-17 14:28:42
490	1012	2020-03-18 05:53:53
491	1012	2020-03-18 05:59:38
492	1012	2020-03-18 06:01:30
493	1034	2020-03-18 06:50:41
494	1033	2020-03-18 06:56:16
495	863	2020-03-18 10:21:09
496	1033	2020-03-18 11:16:40
497	1033	2020-03-18 12:07:28
498	1019	2020-03-18 12:08:18
499	1032	2020-03-18 12:08:54
500	1012	2020-03-18 12:18:14
501	1035	2020-03-18 12:27:04
502	955	2020-03-19 05:03:40
503	955	2020-03-19 05:04:10
504	894	2020-03-19 05:04:26
505	926	2020-03-19 05:28:11
506	894	2020-03-19 05:30:16
507	955	2020-03-19 05:30:23
508	918	2020-03-19 05:36:00
509	955	2020-03-19 05:36:25
510	955	2020-03-19 05:37:12
511	955	2020-03-19 05:42:54
512	955	2020-03-19 05:45:37
513	955	2020-03-19 05:50:09
514	955	2020-03-19 05:51:42
515	955	2020-03-19 05:52:23
516	955	2020-03-19 05:58:32
517	851	2020-03-19 06:10:03
518	1026	2020-03-19 06:12:56
519	1025	2020-03-19 06:49:45
520	582	2020-03-19 07:18:24
521	894	2020-03-19 07:49:19
522	926	2020-03-19 07:52:03
523	926	2020-03-19 08:02:43
524	851	2020-03-19 08:08:26
525	955	2020-03-19 09:37:03
526	955	2020-03-19 10:02:46
527	595	2020-03-19 10:23:15
528	1025	2020-03-19 10:23:57
529	1037	2020-03-19 10:28:34
530	1033	2020-03-19 10:38:39
531	1033	2020-03-19 10:39:13
532	1037	2020-03-19 10:44:28
533	1012	2020-03-19 11:03:22
534	595	2020-03-19 11:16:03
535	1037	2020-03-19 11:20:33
536	851	2020-03-19 13:09:48
537	1025	2020-03-20 04:33:22
538	1025	2020-03-20 05:52:54
539	1025	2020-03-20 06:10:50
540	1026	2020-03-20 06:19:01
541	851	2020-03-20 07:38:57
542	1039	2020-03-20 11:19:16
543	1012	2020-03-20 11:23:34
544	1012	2020-03-23 04:17:21
545	1040	2020-03-23 04:37:49
546	1040	2020-03-23 04:47:59
547	1042	2020-03-23 04:50:33
548	595	2020-03-23 04:56:47
549	1012	2020-03-23 05:37:24
550	1012	2020-03-23 05:39:40
551	870	2020-03-23 06:03:09
552	863	2020-03-23 09:05:04
553	1012	2020-03-23 09:07:07
554	902	2020-03-23 09:11:03
555	1012	2020-03-23 09:34:21
556	1012	2020-03-23 09:36:28
557	851	2020-03-23 10:30:30
558	1043	2020-03-23 10:52:13
559	582	2020-03-23 10:52:38
560	1043	2020-03-23 10:54:27
561	1043	2020-03-23 10:54:54
562	1043	2020-03-23 10:55:19
563	1043	2020-03-23 10:57:32
564	1043	2020-03-23 10:59:23
565	1043	2020-03-23 10:59:49
566	851	2020-03-23 11:26:24
567	869	2020-03-23 13:10:20
568	870	2020-03-23 13:11:41
569	870	2020-03-23 13:11:41
570	851	2020-03-24 05:06:02
571	1047	2020-03-24 10:57:59
572	1048	2020-03-24 10:59:01
573	582	2020-03-24 11:46:33
574	1048	2020-03-24 13:12:04
575	1034	2020-03-25 05:01:12
576	1034	2020-03-25 05:01:35
577	1040	2020-03-25 05:02:00
578	1040	2020-03-25 05:02:10
579	1044	2020-03-25 05:04:23
580	1040	2020-03-25 05:18:56
581	1040	2020-03-25 05:26:11
582	1040	2020-03-25 05:28:15
583	1051	2020-03-25 06:38:54
584	1051	2020-03-25 06:41:33
585	1052	2020-03-25 06:42:34
586	900	2020-03-25 06:48:41
587	1051	2020-03-25 06:55:30
588	900	2020-03-25 06:59:14
589	1051	2020-03-25 07:02:29
590	1052	2020-03-25 07:03:13
591	900	2020-03-25 07:11:48
592	898	2020-03-25 07:24:14
593	1034	2020-03-25 07:25:18
594	1051	2020-03-25 07:28:44
595	1051	2020-03-25 07:33:19
596	1042	2020-03-25 07:35:13
597	1042	2020-03-25 08:09:38
598	1052	2020-03-25 08:11:19
599	900	2020-03-25 09:22:54
600	1052	2020-03-25 09:40:41
601	1051	2020-03-25 09:41:25
602	900	2020-03-25 09:42:49
603	1051	2020-03-25 09:43:21
604	1050	2020-03-25 10:19:28
605	900	2020-03-25 10:33:37
606	900	2020-03-25 10:46:02
607	1042	2020-03-25 10:47:59
608	1034	2020-03-25 10:49:11
609	1051	2020-03-25 10:53:04
610	1034	2020-03-25 11:06:05
611	1034	2020-03-25 11:46:50
612	1051	2020-03-25 11:47:12
613	582	2020-03-25 12:16:28
614	1034	2020-03-25 13:27:57
615	1053	2020-03-25 13:52:42
616	1052	2020-03-25 14:47:26
617	1055	2020-03-25 14:51:15
618	1055	2020-03-25 14:54:06
619	1055	2020-03-25 14:56:49
620	1052	2020-03-25 14:58:30
621	1056	2020-03-26 05:22:13
622	1012	2020-03-26 06:06:32
623	1052	2020-03-26 06:13:16
624	1057	2020-03-26 06:20:58
625	1058	2020-03-26 06:33:30
626	582	2020-03-26 06:34:47
627	595	2020-03-26 06:35:10
628	1059	2020-03-26 06:39:43
629	595	2020-03-26 06:43:27
630	1060	2020-03-26 06:44:51
631	1061	2020-03-26 06:48:45
632	1062	2020-03-26 06:52:35
633	1063	2020-03-26 06:57:12
634	1063	2020-03-26 06:57:45
635	1062	2020-03-26 06:58:21
636	1060	2020-03-26 06:58:57
637	1064	2020-03-26 07:13:54
638	1063	2020-03-26 07:34:04
639	1060	2020-03-26 07:39:20
640	1060	2020-03-26 07:46:48
641	1060	2020-03-26 07:50:11
642	1060	2020-03-26 07:50:22
643	1061	2020-03-26 07:52:36
644	1061	2020-03-26 09:44:03
645	1061	2020-03-26 09:45:16
646	1051	2020-03-26 09:45:23
647	1061	2020-03-26 10:31:13
648	595	2020-03-26 10:40:42
649	582	2020-03-26 10:51:43
650	1061	2020-03-26 11:32:29
651	1060	2020-03-26 11:44:22
652	1060	2020-03-26 12:10:03
653	1012	2020-03-26 12:10:56
654	1065	2020-03-26 12:20:10
655	1065	2020-03-26 12:34:12
656	1066	2020-03-26 12:36:19
657	1065	2020-03-26 12:38:06
658	582	2020-03-26 12:40:50
659	1051	2020-03-26 12:43:46
660	1051	2020-03-26 13:24:56
661	1062	2020-03-26 13:34:18
662	1051	2020-03-27 04:36:49
663	595	2020-03-27 04:36:52
664	1012	2020-03-27 04:38:20
665	582	2020-03-27 04:41:00
666	595	2020-03-27 04:50:10
667	1050	2020-03-27 06:35:06
668	1067	2020-03-27 06:55:56
669	1068	2020-03-27 07:00:18
670	1012	2020-03-27 13:19:09
671	1012	2020-03-27 13:24:23
672	1012	2020-03-27 13:30:52
673	1012	2020-03-27 13:40:25
674	1074	2020-03-27 14:10:42
675	1069	2020-03-27 14:16:05
676	1074	2020-03-27 14:18:21
677	1069	2020-03-27 14:20:52
678	1070	2020-03-27 14:21:49
679	1071	2020-03-27 14:25:52
680	1070	2020-03-27 14:31:14
681	1072	2020-03-27 14:33:15
682	1077	2020-03-27 14:35:31
683	1073	2020-03-27 14:44:06
684	1074	2020-03-27 14:46:32
685	1075	2020-03-27 14:48:01
686	1076	2020-03-27 14:50:04
687	1076	2020-03-27 14:53:30
688	1075	2020-03-27 14:54:18
689	1071	2020-03-27 15:02:39
690	1069	2020-03-27 15:06:11
691	1070	2020-03-27 15:07:12
692	1061	2020-03-27 15:30:06
693	1078	2020-03-29 15:49:20
694	1073	2020-03-29 15:51:44
695	1051	2020-03-30 03:04:16
696	1051	2020-03-30 03:27:28
697	1060	2020-03-30 04:08:39
698	1051	2020-03-30 04:12:02
699	1012	2020-03-30 04:16:14
700	1051	2020-03-30 05:07:51
701	1069	2020-03-30 05:09:06
702	1069	2020-03-30 05:09:38
703	870	2020-03-30 05:25:26
704	1051	2020-03-30 05:57:03
705	1069	2020-03-30 06:18:39
706	1061	2020-03-30 06:41:11
707	1069	2020-03-30 09:29:30
708	1069	2020-03-30 09:52:32
709	1012	2020-03-30 11:19:58
710	1061	2020-03-30 12:46:33
711	1051	2020-03-30 12:51:44
712	1061	2020-03-30 13:04:33
713	1061	2020-03-30 13:09:02
714	1043	2020-03-30 13:41:36
715	1079	2020-03-30 14:28:01
716	1067	2020-03-30 14:52:03
717	1061	2020-03-30 15:07:05
718	1069	2020-03-30 15:07:44
719	1012	2020-03-31 04:58:37
720	582	2020-03-31 05:58:12
721	918	2020-03-31 06:29:10
722	1035	2020-03-31 07:41:45
723	1073	2020-03-31 08:28:19
724	1072	2020-03-31 08:35:03
725	1081	2020-03-31 09:23:29
726	1081	2020-03-31 09:26:12
727	1081	2020-03-31 09:30:56
728	902	2020-03-31 09:32:59
729	1081	2020-03-31 09:46:24
730	1013	2020-03-31 09:49:03
731	1013	2020-03-31 09:49:41
732	1012	2020-03-31 10:11:49
733	595	2020-03-31 12:05:26
734	595	2020-03-31 12:06:51
735	582	2020-03-31 12:52:33
736	985	2020-03-31 12:53:11
737	1069	2020-03-31 14:24:43
738	1051	2020-03-31 15:38:47
739	1085	2020-04-01 08:23:15
740	1085	2020-04-01 08:37:37
741	1085	2020-04-01 09:09:40
742	1085	2020-04-01 09:21:05
743	595	2020-04-01 09:33:02
744	1061	2020-04-01 12:06:56
745	902	2020-04-01 19:43:14
746	595	2020-04-02 06:12:27
747	1012	2020-04-02 07:01:18
748	1061	2020-04-02 09:47:56
749	1051	2020-04-02 10:05:36
750	582	2020-04-02 11:48:34
751	595	2020-04-02 12:04:03
752	582	2020-04-02 12:07:46
753	1061	2020-04-04 09:02:50
754	1061	2020-04-04 10:18:48
755	1061	2020-04-04 10:19:09
756	1074	2020-04-04 10:22:03
757	1074	2020-04-04 10:22:42
758	1074	2020-04-04 10:29:53
759	1086	2020-04-06 04:07:12
760	1086	2020-04-06 04:35:00
761	1086	2020-04-06 04:41:51
762	1086	2020-04-06 06:01:56
763	595	2020-04-06 07:46:39
764	595	2020-04-06 07:47:30
765	1086	2020-04-06 10:40:37
766	1086	2020-04-06 12:04:28
767	1087	2020-04-06 13:57:00
768	1086	2020-04-06 14:06:16
769	1088	2020-04-06 14:39:54
770	1087	2020-04-06 14:59:33
771	1087	2020-04-06 15:03:33
772	1088	2020-04-07 02:30:31
773	1087	2020-04-07 02:32:08
774	1088	2020-04-07 02:32:52
775	1087	2020-04-07 02:41:08
776	1087	2020-04-07 02:41:31
777	1089	2020-04-07 02:49:03
778	1086	2020-04-07 02:53:42
779	1088	2020-04-07 02:57:03
780	1087	2020-04-07 04:15:49
781	1088	2020-04-07 04:17:20
782	1088	2020-04-07 04:25:28
783	1088	2020-04-07 04:37:33
784	1088	2020-04-07 04:44:10
785	1088	2020-04-07 04:44:51
786	1088	2020-04-07 04:55:56
787	1091	2020-04-07 08:10:57
788	1091	2020-04-07 08:24:07
789	1091	2020-04-07 09:28:11
790	1091	2020-04-07 09:34:12
791	1091	2020-04-07 09:37:50
792	1091	2020-04-07 09:38:25
793	1091	2020-04-07 09:43:18
794	1092	2020-04-07 10:38:05
795	1092	2020-04-07 10:40:55
796	1092	2020-04-07 10:50:06
797	1092	2020-04-07 10:55:36
798	1092	2020-04-07 10:59:14
799	1092	2020-04-07 11:09:32
800	1092	2020-04-07 11:31:17
801	1051	2020-04-07 11:45:40
802	1051	2020-04-08 03:10:25
803	1087	2020-04-08 03:28:56
804	1088	2020-04-08 04:47:49
805	1087	2020-04-08 04:48:43
806	898	2020-04-08 05:16:53
807	1051	2020-04-08 05:23:46
808	1057	2020-04-08 05:49:13
809	1057	2020-04-08 06:14:19
810	1086	2020-04-08 06:16:11
811	1057	2020-04-08 06:16:34
812	1057	2020-04-08 06:17:10
813	1060	2020-04-08 06:18:05
814	1060	2020-04-08 06:18:26
815	1057	2020-04-08 06:20:41
816	1057	2020-04-08 06:21:30
817	1057	2020-04-08 06:23:15
818	1057	2020-04-08 06:23:49
819	1051	2020-04-08 06:31:59
820	1088	2020-04-08 10:18:49
821	1088	2020-04-08 10:35:39
822	1088	2020-04-08 10:49:09
823	1060	2020-04-08 10:53:21
824	1051	2020-04-08 10:55:11
825	1051	2020-04-08 11:13:21
826	595	2020-04-08 11:16:51
827	1088	2020-04-08 13:07:05
828	1061	2020-04-08 14:57:52
829	1061	2020-04-08 15:10:14
830	1088	2020-04-08 15:24:13
831	1088	2020-04-08 15:24:42
832	1051	2020-04-08 15:25:02
833	1061	2020-04-08 15:29:00
834	1061	2020-04-08 15:48:59
835	1061	2020-04-08 15:58:50
836	1088	2020-04-08 16:00:08
837	1088	2020-04-09 04:15:24
838	1088	2020-04-09 04:22:19
839	1086	2020-04-09 04:33:22
840	1060	2020-04-09 05:12:26
841	1060	2020-04-09 05:50:56
842	1060	2020-04-09 07:16:53
843	1061	2020-04-09 07:18:30
844	1088	2020-04-09 08:14:32
845	1088	2020-04-09 09:45:27
846	1088	2020-04-09 09:59:10
847	1088	2020-04-09 11:00:47
848	1088	2020-04-09 11:40:44
849	1088	2020-04-09 11:45:21
850	1088	2020-04-09 11:46:09
851	1088	2020-04-09 11:47:00
852	1087	2020-04-09 12:06:41
853	1087	2020-04-09 12:08:21
854	1087	2020-04-09 12:09:36
855	1088	2020-04-09 12:49:09
856	1061	2020-04-09 12:53:51
857	1061	2020-04-09 12:54:29
858	1051	2020-04-09 12:55:04
859	595	2020-04-09 12:56:15
860	851	2020-04-09 13:17:04
861	1087	2020-04-09 13:29:57
862	595	2020-04-10 04:09:28
863	595	2020-04-10 07:27:54
864	595	2020-04-10 11:24:03
865	595	2020-04-10 11:25:14
866	1088	2020-04-11 02:43:33
867	1088	2020-04-11 03:09:24
868	1092	2020-04-11 04:31:32
869	1067	2020-04-11 05:20:09
870	1092	2020-04-11 05:21:02
871	1079	2020-04-11 05:41:46
872	1079	2020-04-11 05:42:18
873	1092	2020-04-11 05:46:04
874	1067	2020-04-11 05:46:26
875	1093	2020-04-11 05:46:46
876	1093	2020-04-11 05:48:17
877	1092	2020-04-11 05:57:00
878	1088	2020-04-11 06:52:04
879	1086	2020-04-11 06:56:40
880	1088	2020-04-11 07:01:39
881	1088	2020-04-11 07:11:46
882	1093	2020-04-11 07:21:52
883	1092	2020-04-11 07:31:59
884	1094	2020-04-11 08:51:36
885	1051	2020-04-11 08:55:52
886	1051	2020-04-11 08:58:01
887	1094	2020-04-11 09:03:11
888	1085	2020-04-11 09:03:57
889	1094	2020-04-11 09:08:41
890	1094	2020-04-11 09:10:11
891	1094	2020-04-11 09:15:21
892	1094	2020-04-11 09:20:11
893	1088	2020-04-11 09:22:38
894	1061	2020-04-11 09:57:26
895	1051	2020-04-11 10:40:20
896	1051	2020-04-11 10:41:48
897	1081	2020-04-11 11:53:40
898	1051	2020-04-11 12:21:00
899	1051	2020-04-11 12:47:32
900	1067	2020-04-11 13:14:35
901	1067	2020-04-11 13:14:37
902	1067	2020-04-11 13:14:40
903	1067	2020-04-11 13:14:50
904	1095	2020-04-11 14:02:28
905	1051	2020-04-11 14:36:42
906	1100	2020-04-13 04:04:47
907	1088	2020-04-13 04:14:22
908	1088	2020-04-13 04:47:11
909	1088	2020-04-13 05:00:40
910	1100	2020-04-13 05:09:42
911	595	2020-04-13 07:51:27
912	1101	2020-04-13 12:07:29
913	1101	2020-04-13 12:10:11
914	1101	2020-04-13 12:13:15
915	1081	2020-04-13 13:38:12
916	1101	2020-04-13 13:43:54
917	1101	2020-04-13 14:08:17
918	1101	2020-04-13 14:09:17
919	1101	2020-04-13 14:09:17
920	595	2020-04-13 14:24:05
921	595	2020-04-14 04:36:52
922	595	2020-04-14 07:50:20
923	595	2020-04-14 08:02:53
924	1103	2020-04-14 09:34:24
925	1104	2020-04-14 10:34:59
926	595	2020-04-14 11:05:42
927	1105	2020-04-14 11:11:00
928	1105	2020-04-14 12:10:59
929	1088	2020-04-14 12:15:54
930	1088	2020-04-14 12:31:59
931	1105	2020-04-14 12:39:49
932	595	2020-04-14 13:01:44
933	1085	2020-04-14 13:08:44
934	595	2020-04-14 13:41:33
935	1088	2020-04-14 13:45:04
936	1088	2020-04-15 04:01:24
937	582	2020-04-15 04:22:35
938	1051	2020-04-15 05:04:14
939	1088	2020-04-15 05:58:29
940	1051	2020-04-15 06:05:03
941	1088	2020-04-15 06:09:45
942	1051	2020-04-15 06:43:19
943	1105	2020-04-15 07:11:01
944	1088	2020-04-15 07:14:27
945	1060	2020-04-15 07:19:09
946	1088	2020-04-15 07:19:37
947	852	2020-04-15 07:20:06
948	1061	2020-04-15 07:21:56
949	595	2020-04-15 07:42:31
950	1051	2020-04-15 07:44:06
951	1088	2020-04-15 09:53:25
952	1088	2020-04-15 10:23:10
953	1088	2020-04-15 10:45:12
954	1088	2020-04-15 10:48:57
955	1104	2020-04-15 11:13:48
956	1104	2020-04-15 11:14:14
957	1051	2020-04-15 11:15:18
958	1094	2020-04-15 11:16:46
959	1088	2020-04-15 11:25:48
960	1088	2020-04-15 11:29:33
961	1086	2020-04-15 11:30:50
962	1088	2020-04-15 12:10:31
963	1085	2020-04-15 12:32:57
964	1088	2020-04-15 13:04:40
965	1107	2020-04-15 15:17:34
966	1088	2020-04-16 06:10:49
967	1051	2020-04-16 06:55:22
968	1051	2020-04-16 06:56:14
969	1051	2020-04-16 06:57:02
970	1051	2020-04-16 06:57:20
971	1051	2020-04-16 07:00:49
972	1105	2020-04-16 07:55:06
973	1105	2020-04-16 09:29:40
974	1088	2020-04-16 09:30:21
975	1088	2020-04-16 09:32:20
976	1051	2020-04-16 09:34:24
977	1111	2020-04-16 09:51:11
978	1112	2020-04-16 09:53:30
979	1111	2020-04-16 09:54:32
980	1114	2020-04-16 10:54:08
981	1115	2020-04-16 11:00:07
982	1115	2020-04-16 11:01:44
983	1115	2020-04-16 11:11:36
984	1088	2020-04-16 11:43:41
985	1088	2020-04-16 12:17:04
986	1105	2020-04-16 12:39:10
987	1088	2020-04-16 13:41:00
988	1051	2020-04-16 14:19:50
989	1088	2020-04-16 14:20:23
990	1104	2020-04-16 14:25:22
991	1088	2020-04-16 15:10:36
992	1088	2020-04-16 15:12:45
993	1105	2020-04-17 03:31:48
994	1088	2020-04-17 04:47:11
995	1088	2020-04-17 05:45:48
996	1072	2020-04-17 05:52:25
997	1115	2020-04-17 05:52:59
998	870	2020-04-17 06:11:26
999	1115	2020-04-17 06:13:06
1000	1051	2020-04-17 06:31:21
1001	1105	2020-04-20 03:13:05
1002	1105	2020-04-20 03:13:39
1003	1105	2020-04-20 03:53:37
1004	1088	2020-04-20 05:12:48
1005	1105	2020-04-20 07:48:37
1006	1116	2020-04-20 08:06:30
1007	1116	2020-04-20 09:23:47
1008	1116	2020-04-20 09:27:54
1009	1116	2020-04-20 09:30:53
1010	1116	2020-04-20 10:35:58
1011	1092	2020-04-20 10:38:16
1012	1092	2020-04-20 10:57:21
1013	1116	2020-04-20 11:29:17
1014	595	2020-04-20 11:36:51
1015	1119	2020-04-20 11:53:44
1016	1120	2020-04-20 12:07:40
1017	1051	2020-04-20 13:24:55
1018	1105	2020-04-21 03:46:39
1019	1100	2020-04-21 03:58:45
1020	1100	2020-04-21 04:06:59
1021	1120	2020-04-21 04:44:53
1022	1089	2020-04-21 04:49:38
1023	1115	2020-04-21 04:51:12
1024	1072	2020-04-21 04:54:02
1025	982	2020-04-21 05:01:43
1026	1116	2020-04-21 05:37:10
1027	1119	2020-04-21 06:42:54
1028	1122	2020-04-21 06:45:24
1029	595	2020-04-21 06:54:32
1030	595	2020-04-21 06:55:36
1031	1123	2020-04-21 07:01:43
1032	1123	2020-04-21 07:02:47
1033	1088	2020-04-21 07:22:38
1034	1105	2020-04-21 08:41:14
1035	1086	2020-04-21 10:01:47
1036	1105	2020-04-21 10:15:43
1037	1105	2020-04-21 10:50:29
1038	595	2020-04-21 10:50:31
1039	1105	2020-04-21 10:55:54
1040	1012	2020-04-21 12:12:47
1041	1088	2020-04-21 13:47:17
1042	595	2020-04-21 13:55:07
1043	1124	2020-04-21 14:20:18
1044	1125	2020-04-21 14:39:45
1045	1125	2020-04-21 15:06:44
1046	1126	2020-04-21 15:10:12
1047	1088	2020-04-21 15:23:23
1048	940	2020-04-22 03:05:39
1049	1051	2020-04-22 03:24:47
1050	1125	2020-04-22 04:05:47
1051	1125	2020-04-22 04:15:10
1052	1051	2020-04-22 05:39:20
1053	902	2020-04-22 07:30:39
1054	1012	2020-04-22 07:34:27
1055	902	2020-04-22 07:36:13
1056	1012	2020-04-22 07:37:54
1057	1129	2020-04-22 08:45:59
1058	1129	2020-04-22 08:46:06
1059	1129	2020-04-22 08:46:10
1060	1129	2020-04-22 08:46:18
1061	1129	2020-04-22 08:46:20
1062	1129	2020-04-22 08:46:27
1063	1129	2020-04-22 08:46:31
1064	1129	2020-04-22 08:46:32
1065	1129	2020-04-22 08:46:34
1066	1129	2020-04-22 08:46:36
1067	1130	2020-04-22 10:39:20
1068	1130	2020-04-22 10:45:53
1069	1130	2020-04-22 10:59:55
1070	1130	2020-04-22 11:14:04
1071	1051	2020-04-22 11:33:20
1072	1130	2020-04-22 13:33:21
1073	1051	2020-04-23 04:34:19
1074	1088	2020-04-23 04:35:06
1075	1131	2020-04-23 05:18:14
1076	1134	2020-04-23 06:25:18
1077	1135	2020-04-23 06:27:30
1078	1135	2020-04-23 06:28:26
1079	1134	2020-04-23 07:34:02
1080	595	2020-04-23 07:48:21
1081	1134	2020-04-23 07:55:06
1082	1105	2020-04-23 09:30:41
1083	1132	2020-04-23 09:47:45
1084	1132	2020-04-23 10:14:09
1085	1133	2020-04-23 10:26:48
1086	1088	2020-04-23 10:45:07
1087	1105	2020-04-23 11:21:25
1088	1133	2020-04-23 11:23:20
1089	1120	2020-04-23 11:25:38
1090	1115	2020-04-23 11:27:00
1091	1115	2020-04-23 11:54:21
1092	1115	2020-04-23 12:05:25
1093	1115	2020-04-23 12:06:52
1094	595	2020-04-24 05:09:24
1095	1105	2020-04-24 07:07:09
1096	595	2020-04-24 07:49:44
1097	1105	2020-04-24 08:07:35
1098	1105	2020-04-24 08:40:38
1099	595	2020-04-24 08:58:20
1100	595	2020-04-24 10:41:47
1101	1105	2020-04-24 13:20:12
1102	1105	2020-04-24 13:26:29
1103	595	2020-04-24 13:48:42
1104	1105	2020-04-24 13:51:01
1105	1088	2020-04-24 13:59:53
1106	1088	2020-04-24 14:26:33
1107	852	2020-04-24 15:48:24
1108	1088	2020-04-24 16:05:33
1109	1133	2020-04-25 04:17:56
1110	1105	2020-04-25 04:47:26
1111	595	2020-04-25 04:52:56
1112	1105	2020-04-25 04:55:14
1113	1138	2020-04-25 05:17:13
1114	1138	2020-04-25 05:18:20
1115	1130	2020-04-25 05:40:48
1116	1012	2020-04-25 05:49:23
1117	1105	2020-04-25 06:35:19
1118	1012	2020-04-25 07:31:58
1119	1142	2020-04-25 07:37:43
1120	1105	2020-04-25 08:25:11
1121	1105	2020-04-25 08:40:41
1122	879	2020-04-25 09:28:46
1123	1142	2020-04-25 10:59:38
1124	1105	2020-04-25 11:03:30
1125	1145	2020-04-25 11:22:41
1126	1145	2020-04-25 11:23:14
1127	1105	2020-04-25 11:25:43
1128	1145	2020-04-25 11:45:51
1129	1012	2020-04-25 11:58:47
1130	1146	2020-04-25 12:10:52
1131	1012	2020-04-25 12:23:24
1132	1146	2020-04-25 12:27:38
1133	1146	2020-04-25 12:33:28
1134	1105	2020-04-26 15:21:19
1135	595	2020-04-27 07:17:54
1136	1145	2020-04-27 12:12:26
1137	902	2020-04-27 12:13:57
1138	1012	2020-04-27 12:17:36
1139	1105	2020-04-27 13:20:17
1140	902	2020-04-27 13:23:38
1141	1012	2020-04-27 13:23:47
1142	1120	2020-04-27 13:34:37
1143	1012	2020-04-27 13:41:19
1144	1120	2020-04-27 13:52:22
1145	1147	2020-04-27 14:06:14
1146	1012	2020-04-27 14:15:46
1147	1087	2020-04-27 14:30:01
1148	1012	2020-04-28 07:25:28
1149	1105	2020-04-28 07:29:43
1150	1150	2020-04-28 07:37:14
1151	595	2020-04-28 08:44:43
1152	1051	2020-04-28 09:10:46
1153	1088	2020-04-28 10:05:00
1154	1151	2020-04-28 11:01:48
1155	582	2020-04-28 11:13:56
1156	1154	2020-04-28 11:30:51
1157	1154	2020-04-28 11:30:51
1158	595	2020-04-28 11:43:22
1159	1156	2020-04-28 12:06:04
1160	1105	2020-04-28 12:18:59
1161	1157	2020-04-28 13:07:12
1162	1051	2020-04-28 13:09:35
1163	1158	2020-04-28 13:25:52
1164	1105	2020-04-29 04:30:24
1165	1051	2020-04-29 05:27:36
1166	1051	2020-04-29 05:38:38
1167	1051	2020-04-29 05:42:14
1168	1105	2020-04-29 05:43:15
1169	1051	2020-04-29 05:51:52
1170	1155	2020-04-29 06:01:43
1171	1105	2020-04-29 06:03:28
1172	1088	2020-04-29 06:03:49
1173	1088	2020-04-29 06:07:29
1174	1155	2020-04-29 06:07:41
1175	1051	2020-04-29 06:08:27
1176	1051	2020-04-29 06:09:43
1177	1051	2020-04-29 06:57:23
1178	1105	2020-04-29 07:05:35
1179	1105	2020-04-29 08:03:34
1180	1061	2020-04-29 10:00:47
1181	1105	2020-04-29 11:27:25
1182	1012	2020-04-29 12:13:43
1183	902	2020-04-29 12:14:32
1184	1061	2020-04-29 13:54:43
1185	1088	2020-04-29 14:04:25
1186	1061	2020-04-29 14:05:16
1187	1012	2020-04-29 14:08:45
1188	1051	2020-04-30 03:43:38
1189	1159	2020-04-30 03:58:52
1190	1159	2020-04-30 04:08:09
1191	1051	2020-04-30 04:18:10
1192	1061	2020-04-30 04:19:21
1193	1051	2020-04-30 04:30:50
1194	1051	2020-04-30 05:25:00
1195	1105	2020-04-30 05:25:09
1196	1107	2020-04-30 05:37:55
1197	1051	2020-04-30 05:49:47
1198	1105	2020-04-30 05:53:07
1199	1051	2020-04-30 06:35:24
1200	1162	2020-04-30 06:53:41
1201	582	2020-04-30 07:22:31
1202	1058	2020-04-30 07:23:26
1203	1058	2020-04-30 07:24:14
1204	582	2020-04-30 07:24:45
1205	1162	2020-04-30 07:25:03
1206	1051	2020-04-30 08:05:38
1207	1162	2020-04-30 08:14:48
1208	1162	2020-04-30 08:19:25
1209	1105	2020-04-30 08:20:34
1210	1162	2020-04-30 08:44:58
1211	1105	2020-04-30 09:26:30
1212	1162	2020-04-30 09:44:42
1213	582	2020-04-30 09:45:35
1214	1164	2020-04-30 09:48:00
1215	1105	2020-04-30 09:49:00
1216	1164	2020-04-30 09:55:14
1217	1105	2020-04-30 10:18:41
1218	1105	2020-04-30 10:19:10
1219	1088	2020-04-30 10:21:45
1220	1061	2020-04-30 10:22:25
1221	1163	2020-04-30 10:29:21
1222	1163	2020-04-30 10:46:34
1223	1165	2020-04-30 10:51:55
1224	1165	2020-04-30 10:55:07
1225	869	2020-04-30 10:57:52
1226	1051	2020-04-30 10:59:01
1227	870	2020-04-30 10:59:58
1228	870	2020-04-30 11:07:16
1229	1166	2020-04-30 11:09:08
1230	582	2020-04-30 11:20:02
1231	582	2020-04-30 11:51:09
1232	1051	2020-04-30 12:03:18
1233	1160	2020-04-30 14:25:42
1234	1169	2020-04-30 14:42:48
1235	595	2020-05-01 17:03:48
1236	595	2020-05-01 17:04:48
1237	595	2020-05-01 17:14:56
1238	595	2020-05-01 17:15:04
1239	595	2020-05-01 17:15:54
1240	595	2020-05-01 17:20:57
1241	595	2020-05-02 10:50:15
1242	595	2020-05-02 10:56:01
1243	595	2020-05-02 10:56:41
1244	595	2020-05-02 11:03:34
1245	595	2020-05-02 11:03:42
1246	595	2020-05-02 11:14:27
1247	595	2020-05-02 11:15:14
1248	595	2020-05-02 11:15:42
1249	595	2020-05-02 11:16:34
1250	1105	2020-05-02 13:56:43
1251	595	2020-05-03 12:29:52
1252	1170	2020-05-03 14:01:49
1253	1170	2020-05-03 14:04:15
1254	1170	2020-05-03 14:05:20
1255	1170	2020-05-03 14:13:19
1256	1105	2020-05-03 14:17:03
1257	1166	2020-05-03 14:18:35
1258	1165	2020-05-03 14:22:05
1259	1105	2020-05-03 14:38:47
1260	1105	2020-05-03 15:13:56
1261	1171	2020-05-04 06:55:58
1262	922	2020-05-04 09:26:48
1263	1172	2020-05-04 11:45:31
1264	918	2020-05-04 16:46:20
1265	1012	2020-05-04 17:40:44
1266	1012	2020-05-04 18:02:00
1267	1012	2020-05-04 18:21:56
1268	1130	2020-05-05 05:15:31
1269	1130	2020-05-05 05:29:35
1270	902	2020-05-05 07:07:48
1271	922	2020-05-05 07:43:33
1272	1130	2020-05-05 07:43:44
1273	1085	2020-05-05 08:05:23
1274	1175	2020-05-05 09:01:44
1275	1176	2020-05-06 03:47:49
1276	1176	2020-05-06 03:51:24
1277	1170	2020-05-06 04:06:29
1278	1170	2020-05-06 04:08:08
1279	1170	2020-05-06 04:09:34
1280	1170	2020-05-06 04:12:54
1281	1165	2020-05-06 04:13:11
1282	1170	2020-05-06 04:13:56
1283	1177	2020-05-06 04:19:57
1284	1169	2020-05-06 04:21:06
1285	1051	2020-05-06 04:22:30
1286	1105	2020-05-06 04:24:46
1287	1105	2020-05-06 04:28:41
1288	1051	2020-05-06 04:29:10
1289	1105	2020-05-06 04:29:12
1290	1105	2020-05-06 05:08:32
1291	1105	2020-05-06 06:05:45
1292	1105	2020-05-06 06:22:25
1293	1105	2020-05-06 07:13:47
1294	1105	2020-05-06 07:33:31
1295	1051	2020-05-06 07:35:13
1296	1105	2020-05-06 07:39:34
1297	1051	2020-05-06 07:41:20
1298	1061	2020-05-06 08:16:55
1299	1178	2020-05-06 09:55:52
1300	1178	2020-05-06 09:59:34
1301	1178	2020-05-06 10:09:41
1302	1177	2020-05-06 10:11:20
1303	1178	2020-05-06 10:37:14
1304	1105	2020-05-06 10:46:35
1305	1179	2020-05-06 10:47:44
1306	1179	2020-05-06 10:52:32
1307	1105	2020-05-06 10:56:26
1308	1105	2020-05-06 12:19:03
1309	1089	2020-05-06 13:07:04
1310	1180	2020-05-06 13:10:49
1311	1105	2020-05-06 13:22:41
1312	1089	2020-05-06 13:44:04
1313	1105	2020-05-06 13:44:21
1314	1181	2020-05-06 14:13:55
1315	1182	2020-05-06 14:21:45
1316	1105	2020-05-06 14:25:14
1317	1182	2020-05-07 02:52:00
1318	1105	2020-05-07 02:58:40
1319	1181	2020-05-07 03:08:28
1320	1180	2020-05-07 03:11:44
1321	1182	2020-05-07 03:17:57
1322	1180	2020-05-07 03:18:07
1323	1051	2020-05-07 03:27:25
1324	1180	2020-05-07 03:39:15
1325	1105	2020-05-07 03:51:19
1326	1105	2020-05-07 04:02:10
1327	1180	2020-05-07 04:10:19
1328	1182	2020-05-07 04:10:50
1329	1177	2020-05-07 04:11:33
1330	1111	2020-05-07 04:12:30
1331	1180	2020-05-07 04:20:27
1332	1180	2020-05-07 04:39:10
1333	1145	2020-05-07 04:53:52
1334	1182	2020-05-07 05:24:42
1335	1180	2020-05-07 05:24:44
1336	1182	2020-05-07 05:30:18
1337	1182	2020-05-07 05:41:54
1338	1180	2020-05-07 05:46:12
1339	1105	2020-05-07 05:47:56
1340	1180	2020-05-07 05:54:40
1341	1105	2020-05-07 06:31:44
1342	1181	2020-05-07 06:32:50
1343	1177	2020-05-07 06:35:25
1344	1145	2020-05-07 09:24:29
1345	1145	2020-05-07 12:32:03
1346	1012	2020-05-07 14:48:26
1347	1145	2020-05-07 14:50:36
1348	1105	2020-05-08 03:28:46
1349	1182	2020-05-08 03:32:32
1350	1179	2020-05-08 03:41:35
1351	1182	2020-05-08 04:45:02
1352	1061	2020-05-08 04:53:09
1353	1182	2020-05-08 04:55:27
1354	1182	2020-05-08 05:00:50
1355	1061	2020-05-08 05:01:32
1356	1182	2020-05-08 05:10:23
1357	1179	2020-05-08 05:20:40
1358	1182	2020-05-08 05:47:40
1359	1182	2020-05-08 05:59:38
1360	1182	2020-05-08 06:08:23
1361	1051	2020-05-08 06:39:12
1362	1183	2020-05-08 06:49:02
1363	1183	2020-05-08 07:03:31
1364	1051	2020-05-08 07:07:24
1365	1061	2020-05-08 07:52:50
1366	1105	2020-05-08 08:09:26
1367	1105	2020-05-08 08:12:54
1368	1179	2020-05-08 08:18:26
1369	1061	2020-05-08 08:23:07
1370	1061	2020-05-08 08:29:09
1371	1088	2020-05-08 10:16:09
1372	1012	2020-05-09 03:23:34
1373	595	2020-05-09 04:01:35
1374	1012	2020-05-09 13:38:04
1375	1182	2020-05-11 03:52:53
1376	1182	2020-05-11 04:01:48
1377	1051	2020-05-11 04:11:05
1378	1061	2020-05-11 04:11:25
1379	1186	2020-05-11 13:59:52
1380	1186	2020-05-11 14:07:37
1381	1186	2020-05-11 14:24:59
1382	1105	2020-05-11 14:29:17
1383	1085	2020-05-20 14:34:37
1384	990	2020-05-25 03:56:04
1385	1182	2020-05-25 11:09:37
1386	1051	2020-05-25 11:14:47
1387	990	2020-05-25 11:26:16
1388	1182	2020-05-25 11:39:59
1389	990	2020-05-26 06:30:43
1390	990	2020-05-27 04:46:25
1391	990	2020-05-28 06:27:00
1392	990	2020-06-01 07:08:25
1393	1187	2020-06-04 13:22:34
1394	1187	2020-06-04 13:25:07
1395	1085	2020-06-07 13:56:08
1396	1190	2020-06-08 05:28:15
1397	1085	2020-06-08 12:55:48
1398	1085	2020-06-10 07:38:34
1399	990	2020-06-12 05:47:12
1400	1085	2020-06-15 07:22:24
1401	595	2020-06-19 16:03:35
1402	1085	2020-06-20 07:47:16
1403	1192	2020-06-20 14:53:41
1404	1194	2020-06-24 01:49:12
1405	990	2020-07-03 12:32:35
1406	1195	2020-07-08 18:17:17
1407	1195	2020-07-08 18:58:58
1408	990	2020-07-29 12:09:10
1409	595	2020-11-28 05:00:06
1410	595	2020-11-28 10:53:30
1411	3	2020-12-10 10:41:49
1412	3	2020-12-10 10:41:59
1413	3	2020-12-10 10:55:16
1414	3	2020-12-10 13:34:15
1415	3	2020-12-10 13:52:25
1416	3	2020-12-10 13:59:46
1417	7	2020-12-11 05:33:50
1418	7	2020-12-11 05:34:18
1419	7	2020-12-11 05:34:28
1420	7	2020-12-11 05:39:12
1421	7	2020-12-11 05:39:28
1422	7	2020-12-11 05:40:16
1423	7	2020-12-11 05:40:51
1424	7	2020-12-11 05:41:11
1425	7	2020-12-11 05:45:24
1426	7	2020-12-11 05:46:11
1427	7	2020-12-11 05:46:43
1428	7	2020-12-11 06:07:27
1429	7	2020-12-11 11:07:15
1430	7	2020-12-11 11:08:11
1431	7	2020-12-11 13:14:54
1432	24	2020-12-14 12:04:43
1433	24	2020-12-14 13:19:39
1434	7	2020-12-16 05:09:01
1435	7	2020-12-16 05:25:36
1436	7	2020-12-16 05:32:27
1437	7	2020-12-16 06:31:39
1438	7	2020-12-16 06:41:32
1439	7	2020-12-16 06:41:47
1440	7	2020-12-16 06:45:44
1441	7	2020-12-16 06:52:15
1442	7	2020-12-16 06:54:47
1443	7	2020-12-16 06:54:58
1444	7	2020-12-16 06:59:39
1445	7	2020-12-16 08:05:14
1446	7	2020-12-16 08:17:04
1447	7	2020-12-16 08:38:21
1448	7	2020-12-16 08:40:52
1449	7	2020-12-16 11:13:04
1450	7	2020-12-16 12:55:40
1451	7	2020-12-16 13:40:16
1452	7	2020-12-16 15:54:49
1453	7	2020-12-17 04:34:54
1454	7	2020-12-17 07:14:48
1455	7	2020-12-17 09:39:10
1456	7	2020-12-17 13:48:45
1457	7	2020-12-17 20:04:00
1458	7	2020-12-18 04:28:38
1459	7	2020-12-18 04:31:29
1460	7	2020-12-18 04:43:10
1461	7	2020-12-18 04:59:52
1462	7	2020-12-18 05:58:43
1463	7	2020-12-18 06:53:41
1464	7	2020-12-18 08:02:23
1465	7	2020-12-18 09:22:13
1466	7	2020-12-18 10:31:58
1467	7	2020-12-18 10:43:39
1468	7	2020-12-18 10:46:48
1469	7	2020-12-18 12:38:32
1470	7	2020-12-18 13:39:47
1471	7	2020-12-18 14:46:02
1472	7	2020-12-18 15:24:58
1473	7	2020-12-18 15:31:25
1474	7	2020-12-21 04:48:07
1475	7	2020-12-21 05:56:59
1476	7	2020-12-21 06:20:35
1477	7	2020-12-21 07:21:34
1478	7	2020-12-21 08:24:58
1479	7	2020-12-21 09:34:07
1480	7	2020-12-21 10:05:52
1481	7	2020-12-21 10:11:42
1482	7	2020-12-21 10:25:51
1483	7	2020-12-21 10:28:05
1484	7	2020-12-21 10:54:28
1485	7	2020-12-21 11:36:07
1486	7	2020-12-21 11:56:48
1487	7	2020-12-21 12:06:52
1488	7	2020-12-21 13:16:17
1489	7	2020-12-21 13:24:07
1490	7	2020-12-21 13:33:22
1491	7	2020-12-21 13:53:35
1492	7	2020-12-22 04:16:13
1493	7	2020-12-22 05:19:51
1494	7	2020-12-22 06:21:54
1495	7	2020-12-22 06:25:14
1496	7	2020-12-22 11:45:37
1497	7	2020-12-22 11:47:35
1498	7	2020-12-22 12:21:13
1499	7	2020-12-22 12:27:39
1500	7	2020-12-22 17:39:27
1501	7	2020-12-22 17:58:30
1502	7	2020-12-23 06:39:40
1503	7	2020-12-23 06:55:40
1504	7	2020-12-23 09:48:01
1505	7	2020-12-23 10:10:46
1506	7	2020-12-23 10:11:58
1507	7	2020-12-23 10:46:16
1508	7	2020-12-23 11:03:43
1509	7	2020-12-23 11:12:44
1510	7	2020-12-23 11:15:04
1511	7	2020-12-23 12:23:52
1512	7	2020-12-23 13:15:58
1513	7	2020-12-24 07:20:01
1514	7	2020-12-25 09:50:20
1515	7	2020-12-26 06:54:15
1516	7	2020-12-26 07:56:16
1517	7	2020-12-26 08:35:17
1518	7	2020-12-26 09:53:05
1519	7	2020-12-26 11:13:56
1520	7	2020-12-28 05:25:52
1521	7	2020-12-28 07:05:54
1522	7	2020-12-28 07:07:15
1523	7	2020-12-28 10:20:56
1524	7	2020-12-28 11:49:08
1525	7	2020-12-28 12:40:54
1526	7	2020-12-29 04:21:23
1527	7	2020-12-29 05:40:24
1528	7	2020-12-30 05:50:03
1529	7	2020-12-30 07:38:53
1530	7	2020-12-30 10:05:12
1531	7	2020-12-30 11:19:58
1532	7	2020-12-31 07:53:33
1533	7	2020-12-31 09:45:32
1534	7	2020-12-31 11:01:15
1535	7	2020-12-31 13:10:25
1536	7	2021-01-04 07:50:38
1537	7	2021-01-05 04:36:17
1538	7	2021-01-05 05:59:10
1539	7	2021-01-05 06:20:42
1540	7	2021-01-05 07:13:24
1541	7	2021-01-05 07:31:27
1542	7	2021-01-05 09:44:42
1543	7	2021-01-05 17:14:58
1544	7	2021-01-08 18:26:49
1545	7	2021-01-29 06:58:47
1546	7	2021-01-29 07:04:45
1547	7	2021-01-29 07:16:13
1548	7	2021-01-29 09:44:17
1549	7	2021-01-29 10:47:49
1550	7	2021-01-30 05:28:02
1551	7	2021-01-30 06:53:07
1552	7	2021-01-30 07:08:46
1553	7	2021-01-30 10:01:46
1554	7	2021-01-30 10:22:02
1555	7	2021-01-30 11:27:55
1556	7	2021-01-30 12:57:32
1557	7	2021-01-30 14:02:23
1558	7	2021-02-01 04:36:25
1559	7	2021-02-01 04:44:37
1560	7	2021-02-01 05:46:08
1561	7	2021-02-01 06:49:55
1562	7	2021-02-01 07:51:05
1563	7	2021-02-01 09:28:51
1564	7	2021-02-01 10:07:41
1565	7	2021-02-01 10:15:06
1566	7	2021-02-01 12:18:33
1567	7	2021-02-01 17:31:33
1568	7	2021-02-02 04:32:13
1569	7	2021-02-02 04:52:10
1570	7	2021-02-02 05:50:44
1571	7	2021-02-02 06:58:13
1572	7	2021-02-02 10:33:11
1573	7	2021-02-02 12:18:04
1574	7	2021-02-04 10:33:18
1575	7	2021-02-05 10:23:52
1576	7	2021-02-05 11:56:09
1577	7	2021-02-08 05:49:17
1578	7	2021-02-08 06:06:42
1579	7	2021-02-08 07:32:02
1580	7	2021-02-08 09:42:10
1581	7	2021-02-08 12:44:12
1582	7	2021-02-08 14:16:13
1583	7	2021-02-09 06:58:44
1584	7	2021-02-09 09:39:10
1585	7	2021-02-09 10:45:22
1586	7	2021-02-09 12:07:23
1587	7	2021-02-09 13:34:27
1588	7	2021-02-12 08:05:58
1589	7	2021-02-12 10:50:25
1590	7	2021-02-12 12:17:50
1591	7	2021-02-13 07:27:44
1592	7	2021-02-15 06:04:04
1593	7	2021-02-15 10:40:08
1594	7	2021-02-15 11:40:55
1595	7	2021-02-15 13:28:49
1596	7	2021-02-15 14:57:35
1597	7	2021-02-16 05:48:01
1598	7	2021-02-16 07:05:13
1599	7	2021-02-16 09:50:05
1600	7	2021-02-16 10:04:22
1601	7	2021-02-16 10:23:09
1602	7	2021-02-16 10:25:14
1603	7	2021-02-16 10:44:28
1604	7	2021-02-16 10:50:30
1605	7	2021-02-16 11:47:22
1606	7	2021-02-16 11:52:55
1607	7	2021-02-16 13:16:56
1608	7	2021-02-16 13:17:02
1609	7	2021-02-16 14:24:00
1610	7	2021-02-16 14:29:17
1611	7	2021-02-17 06:26:01
1612	7	2021-02-17 07:32:04
1613	7	2021-02-17 10:08:46
1614	7	2021-02-17 10:58:20
1615	7	2021-02-17 11:08:59
1616	7	2021-02-17 11:10:03
1617	7	2021-02-17 12:22:35
1618	7	2021-02-17 12:26:08
1619	7	2021-02-17 13:21:15
1620	7	2021-02-18 05:31:15
1621	7	2021-02-18 05:37:08
1622	7	2021-02-18 09:41:58
1623	7	2021-02-18 10:45:19
1624	7	2021-02-18 11:16:21
1625	7	2021-02-18 11:47:20
1626	7	2021-02-18 14:17:50
1627	7	2021-02-19 06:33:14
1628	7	2021-02-19 07:40:08
1629	7	2021-02-19 10:25:50
1630	7	2021-02-19 12:09:29
1631	7	2021-02-19 13:27:51
1632	7	2021-02-19 14:32:09
1633	7	2021-02-19 16:17:19
1634	7	2021-02-22 05:40:50
1635	7	2021-02-22 06:48:59
1636	7	2021-02-22 07:52:42
1637	7	2021-02-24 07:00:28
1638	7	2021-02-24 07:25:16
1639	7	2021-02-25 13:45:23
1640	7	2021-02-26 06:07:52
1641	44	2021-02-26 07:27:31
1642	44	2021-02-26 10:00:53
1643	44	2021-02-26 10:11:32
1644	44	2021-02-26 11:38:16
1645	7	2021-02-27 07:05:58
1646	7	2021-02-27 09:29:28
1647	7	2021-02-27 09:39:46
1648	7	2021-02-27 10:13:13
1649	44	2021-03-01 06:26:54
1650	44	2021-03-01 07:36:24
1651	7	2021-03-01 12:45:16
1652	46	2021-03-02 13:45:07
1653	46	2021-03-02 14:03:18
1654	46	2021-03-02 14:22:38
1655	46	2021-03-02 14:27:51
1656	44	2021-03-02 14:44:25
1657	7	2021-03-03 05:23:29
1658	7	2021-03-03 09:56:06
1659	7	2021-03-03 12:44:59
1660	7	2021-03-05 04:30:57
1661	63	2021-03-05 08:39:11
1662	63	2021-03-05 10:21:39
1663	63	2021-03-05 11:26:18
1664	66	2021-03-05 11:56:40
1665	44	2021-03-05 12:00:07
1666	44	2021-03-05 14:54:22
1667	44	2021-03-08 06:36:38
1668	63	2021-03-08 07:19:33
1669	44	2021-03-08 07:42:50
1670	7	2021-03-08 07:58:22
1671	44	2021-03-08 08:00:04
1672	44	2021-03-08 09:46:03
1673	44	2021-03-08 10:28:45
1674	44	2021-03-08 12:50:30
1675	44	2021-03-08 13:02:37
1676	44	2021-03-08 13:09:35
1677	44	2021-03-08 13:23:53
1678	44	2021-03-09 08:23:13
1679	44	2021-03-09 09:33:55
1680	44	2021-03-09 11:50:05
1681	44	2021-03-09 12:20:53
1682	44	2021-03-09 12:24:41
1683	7	2021-03-10 04:24:22
1684	63	2021-03-10 10:46:47
1685	75	2021-03-10 12:42:44
1686	63	2021-03-10 14:43:00
1687	75	2021-03-10 15:41:14
1688	63	2021-03-11 05:39:44
1689	63	2021-03-11 14:08:54
1690	75	2021-03-11 14:14:34
1691	44	2021-03-12 12:55:43
1692	75	2021-03-13 12:55:18
1693	63	2021-03-13 14:18:10
1694	44	2021-03-13 14:39:46
1695	44	2021-03-15 07:50:51
1696	7	2021-03-16 07:00:46
1697	88	2021-03-16 07:36:53
1698	7	2021-03-16 09:39:57
1699	88	2021-03-16 10:16:16
1700	75	2021-03-16 13:16:57
1701	75	2021-03-17 06:47:27
1702	75	2021-03-17 06:52:18
1703	7	2021-03-18 07:55:32
1704	63	2021-03-18 11:18:37
1705	75	2021-03-18 14:31:42
1706	75	2021-03-18 15:36:48
1707	63	2021-03-22 11:22:11
1708	7	2021-03-22 12:53:33
1709	7	2021-03-22 13:45:54
1710	63	2021-03-23 05:03:32
1711	63	2021-03-25 15:41:29
1712	112	2021-03-26 07:21:51
1713	96	2021-03-26 07:25:36
1714	113	2021-03-26 07:26:11
1715	76	2021-03-26 07:32:47
1716	114	2021-03-26 10:40:31
1717	114	2021-03-26 10:43:40
1718	113	2021-03-26 10:54:52
1719	114	2021-03-26 11:10:50
1720	76	2021-03-26 11:30:04
1721	76	2021-03-26 11:51:02
1722	76	2021-03-26 13:33:27
1723	130	2021-03-26 15:24:08
1724	76	2021-03-27 05:24:40
1725	7	2021-03-27 05:46:18
1726	76	2021-03-27 07:08:17
1727	76	2021-03-27 11:13:27
1728	7	2021-03-27 12:26:50
1729	7	2021-03-27 12:38:11
1730	76	2021-03-27 12:52:42
1731	63	2021-03-29 06:23:25
1732	63	2021-03-29 06:27:37
1733	63	2021-03-29 06:30:33
1734	63	2021-03-29 06:34:40
1735	76	2021-03-31 12:37:32
1736	76	2021-03-31 12:49:08
1737	113	2021-03-31 13:17:03
1738	113	2021-03-31 13:18:57
1739	76	2021-03-31 15:23:43
1740	35	2021-04-01 08:15:08
1741	35	2021-04-01 08:17:31
1742	35	2021-04-01 11:51:50
1743	113	2021-04-01 13:36:26
1744	113	2021-04-01 14:01:42
1745	76	2021-04-02 04:28:22
1746	7	2021-04-02 14:02:51
1747	7	2021-04-03 16:34:24
1748	63	2021-04-04 14:51:03
1749	63	2021-04-04 15:14:47
1750	63	2021-04-04 15:21:37
1751	63	2021-04-04 15:28:41
1752	63	2021-04-04 15:37:16
1753	7	2021-04-04 20:35:55
1754	7	2021-04-04 21:40:12
1755	7	2021-04-04 23:11:56
1756	76	2021-04-05 05:21:25
1757	63	2021-04-05 05:25:58
1758	7	2021-04-05 07:48:34
1759	63	2021-04-05 12:34:22
1760	7	2021-04-05 12:34:50
1761	113	2021-04-05 12:50:16
1762	63	2021-04-05 12:52:51
1763	7	2021-04-05 13:02:19
1764	7	2021-04-05 14:21:56
1765	7	2021-04-05 17:54:08
1766	7	2021-04-06 06:16:27
1767	7	2021-04-06 06:16:36
1768	44	2021-04-06 08:38:29
1769	63	2021-04-06 09:34:59
1770	113	2021-04-06 09:42:26
1771	63	2021-04-06 10:46:58
1772	113	2021-04-06 11:35:09
1773	7	2021-04-06 12:37:24
1774	180	2021-04-06 14:37:27
1775	180	2021-04-06 14:37:37
1776	63	2021-04-06 14:49:02
1777	113	2021-04-06 16:33:09
1778	113	2021-04-07 04:28:49
1779	44	2021-04-07 06:49:00
1780	44	2021-04-07 07:24:18
1781	44	2021-04-07 07:27:18
1782	44	2021-04-07 07:31:04
1783	7	2021-04-07 09:03:34
1784	7	2021-04-07 09:19:24
1785	7	2021-04-07 09:19:33
1786	44	2021-04-07 09:38:11
1787	44	2021-04-07 10:29:12
1788	44	2021-04-07 10:58:37
1789	44	2021-04-07 12:32:51
1790	44	2021-04-07 13:17:36
1791	44	2021-04-07 13:46:53
1792	44	2021-04-07 14:25:48
1793	44	2021-04-08 05:32:05
1794	44	2021-04-08 06:18:05
1795	44	2021-04-08 06:44:04
1796	44	2021-04-08 07:04:16
1797	44	2021-04-08 07:24:41
1798	7	2021-04-08 07:28:30
1799	7	2021-04-08 07:29:08
1800	7	2021-04-08 07:44:18
1801	7	2021-04-08 07:45:25
1802	7	2021-04-08 07:51:13
1803	7	2021-04-08 08:10:28
1804	7	2021-04-08 08:30:47
1805	7	2021-04-08 09:58:13
1806	44	2021-04-08 10:03:01
1807	7	2021-04-08 11:07:21
1808	44	2021-04-08 12:07:56
1809	44	2021-04-08 13:01:47
1810	113	2021-04-08 13:12:32
1811	7	2021-04-08 14:31:18
1812	7	2021-04-08 15:22:36
1813	63	2021-04-08 15:35:03
1814	44	2021-04-08 15:40:05
1815	63	2021-04-08 15:41:42
1816	7	2021-04-08 21:30:38
1817	7	2021-04-09 04:18:10
1818	44	2021-04-09 04:18:47
1819	63	2021-04-09 05:24:16
1820	194	2021-04-09 07:29:52
1821	194	2021-04-09 07:40:55
1822	195	2021-04-09 07:46:52
1823	7	2021-04-09 07:59:36
1824	44	2021-04-09 08:05:10
1825	194	2021-04-09 09:19:40
1826	197	2021-04-09 10:07:03
1827	7	2021-04-09 10:16:07
1828	44	2021-04-09 10:17:36
1829	44	2021-04-09 10:26:38
1830	199	2021-04-09 10:47:04
1831	44	2021-04-09 11:23:12
1832	7	2021-04-09 12:08:14
1833	7	2021-04-09 12:37:32
1834	194	2021-04-09 12:38:41
1835	194	2021-04-09 12:49:44
1836	194	2021-04-09 12:51:53
1837	7	2021-04-09 12:54:30
1838	7	2021-04-09 12:59:19
1839	44	2021-04-09 13:08:48
1840	194	2021-04-09 13:09:32
1841	7	2021-04-09 13:21:59
1842	200	2021-04-09 13:25:30
1843	7	2021-04-09 13:36:12
1844	44	2021-04-09 14:10:27
1845	44	2021-04-09 14:44:22
1846	44	2021-04-09 14:46:06
1847	44	2021-04-09 14:46:09
1848	44	2021-04-09 14:46:14
1849	44	2021-04-09 14:48:06
1850	44	2021-04-09 14:49:59
1851	44	2021-04-09 14:51:41
1852	44	2021-04-09 14:54:18
1853	7	2021-04-09 14:56:49
1854	7	2021-04-09 15:14:25
1855	194	2021-04-09 15:20:40
1856	7	2021-04-09 15:30:15
1857	7	2021-04-09 15:41:46
1858	44	2021-04-09 15:50:35
1859	7	2021-04-09 16:03:04
1860	194	2021-04-09 16:03:09
1861	44	2021-04-09 16:06:15
1862	7	2021-04-09 16:30:37
1863	7	2021-04-10 03:56:58
1864	7	2021-04-10 04:31:54
1865	44	2021-04-10 04:41:13
1866	7	2021-04-10 04:50:29
1867	44	2021-04-10 04:51:36
1868	202	2021-04-10 05:11:16
1869	44	2021-04-10 05:15:35
1870	44	2021-04-10 07:30:22
1871	113	2021-04-10 08:42:36
1872	113	2021-04-10 09:43:45
1873	7	2021-04-10 10:05:54
1874	7	2021-04-10 10:06:54
1875	7	2021-04-10 10:09:23
1876	44	2021-04-10 10:38:11
1877	7	2021-04-10 11:15:44
1878	7	2021-04-10 11:26:19
1879	7	2021-04-10 11:29:10
1880	44	2021-04-10 11:41:39
1881	44	2021-04-10 11:41:48
1882	7	2021-04-10 12:34:32
1883	44	2021-04-10 13:18:04
1884	7	2021-04-10 13:39:11
1885	113	2021-04-10 14:09:07
1886	7	2021-04-10 14:40:33
1887	44	2021-04-10 14:40:39
1888	7	2021-04-10 16:15:53
1889	7	2021-04-11 03:59:26
1890	7	2021-04-11 04:10:54
1891	7	2021-04-11 06:02:21
1892	7	2021-04-11 14:14:20
1893	7	2021-04-11 14:17:40
1894	7	2021-04-11 14:55:01
1895	7	2021-04-11 18:39:06
1896	204	2021-04-12 04:16:14
1897	205	2021-04-12 05:09:16
1898	44	2021-04-12 05:13:52
1899	44	2021-04-12 05:13:57
1900	204	2021-04-12 05:20:05
1901	207	2021-04-12 05:36:38
1902	207	2021-04-12 05:36:45
1903	207	2021-04-12 05:50:29
1904	44	2021-04-12 05:53:02
1905	204	2021-04-12 06:24:32
1906	113	2021-04-12 06:35:31
1907	204	2021-04-12 06:54:54
1908	44	2021-04-12 07:00:00
1909	204	2021-04-12 07:03:04
1910	44	2021-04-12 07:07:22
1911	204	2021-04-12 07:13:07
1912	113	2021-04-12 07:18:06
1913	207	2021-04-12 07:44:55
1914	204	2021-04-12 07:47:40
1915	204	2021-04-12 08:00:34
1916	44	2021-04-12 08:04:26
1917	204	2021-04-12 08:50:56
1918	7	2021-04-12 09:21:57
1919	113	2021-04-12 09:42:44
1920	204	2021-04-12 09:51:20
1921	7	2021-04-12 09:56:34
1922	113	2021-04-12 10:00:05
1923	44	2021-04-12 10:09:49
1924	113	2021-04-12 10:30:45
1925	207	2021-04-12 10:36:35
1926	76	2021-04-12 10:48:07
1927	7	2021-04-12 10:56:11
1928	210	2021-04-12 11:42:10
1929	44	2021-04-12 11:44:11
1930	7	2021-04-12 11:47:41
1931	113	2021-04-12 11:49:39
1932	113	2021-04-12 11:58:57
1933	7	2021-04-12 12:02:51
1934	204	2021-04-12 12:07:14
1935	7	2021-04-12 12:20:54
1936	113	2021-04-12 12:38:43
1937	7	2021-04-12 13:33:52
1938	44	2021-04-12 13:35:52
1939	7	2021-04-12 13:52:43
1940	113	2021-04-12 14:03:43
1941	7	2021-04-12 14:28:49
1942	7	2021-04-12 14:29:46
1943	7	2021-04-12 14:32:00
1944	7	2021-04-12 14:33:25
1945	7	2021-04-12 14:33:57
1946	44	2021-04-12 14:34:01
1947	7	2021-04-12 14:39:55
1948	7	2021-04-12 14:45:14
1949	7	2021-04-12 14:51:03
1950	204	2021-04-12 14:51:08
1951	7	2021-04-12 15:01:41
1952	44	2021-04-12 15:15:31
1953	44	2021-04-12 15:15:39
1954	113	2021-04-12 19:16:09
1955	113	2021-04-12 19:16:52
1956	113	2021-04-12 19:26:03
1957	7	2021-04-13 12:24:14
1958	204	2021-04-14 03:51:47
1959	204	2021-04-14 03:54:28
1960	204	2021-04-14 03:54:40
1961	204	2021-04-14 03:58:59
1962	7	2021-04-14 04:42:22
1963	7	2021-04-14 04:43:43
1964	113	2021-04-14 04:51:58
1965	113	2021-04-14 04:54:40
1966	113	2021-04-14 04:57:09
1967	113	2021-04-14 04:59:43
1968	7	2021-04-14 05:49:44
1969	44	2021-04-14 05:51:27
1970	44	2021-04-14 05:51:34
1971	44	2021-04-14 06:21:07
1972	44	2021-04-14 06:53:19
1973	7	2021-04-14 07:00:25
1974	204	2021-04-14 07:37:52
1975	44	2021-04-14 08:00:56
1976	7	2021-04-14 08:20:41
1977	204	2021-04-14 11:45:55
1978	204	2021-04-14 11:46:05
1979	204	2021-04-14 11:48:05
1980	7	2021-04-14 12:20:30
1981	204	2021-04-14 12:49:57
1982	7	2021-04-14 12:58:50
1983	7	2021-04-14 14:34:36
1984	216	2021-04-14 14:39:33
1985	7	2021-04-14 14:59:46
1986	7	2021-04-14 15:03:20
1987	7	2021-04-14 15:06:02
1988	7	2021-04-14 15:26:34
1989	7	2021-04-14 15:35:05
1990	7	2021-04-14 15:38:40
1991	7	2021-04-14 15:42:03
1992	7	2021-04-14 15:46:04
1993	113	2021-04-14 16:40:37
1994	7	2021-04-14 17:13:17
1995	204	2021-04-15 04:00:42
1996	204	2021-04-15 04:12:44
1997	216	2021-04-15 04:38:45
1998	216	2021-04-15 04:40:34
1999	216	2021-04-15 04:43:10
2000	216	2021-04-15 04:45:53
2001	216	2021-04-15 04:53:49
2002	216	2021-04-15 04:55:53
2003	224	2021-04-15 04:59:53
2004	224	2021-04-15 05:01:31
2005	224	2021-04-15 05:02:30
2006	216	2021-04-15 05:07:11
2007	224	2021-04-15 05:14:52
2008	204	2021-04-15 05:22:00
2009	7	2021-04-15 05:41:47
2010	204	2021-04-15 06:04:20
2011	224	2021-04-15 06:26:34
2012	63	2021-04-15 07:08:23
2013	44	2021-04-15 07:09:21
2014	44	2021-04-15 07:09:24
2015	7	2021-04-15 07:19:35
2016	204	2021-04-15 07:42:21
2017	63	2021-04-15 08:32:04
2018	7	2021-04-15 08:35:59
2019	7	2021-04-15 08:51:33
2020	7	2021-04-15 09:02:42
2021	7	2021-04-15 09:03:26
2022	63	2021-04-15 09:33:35
2023	7	2021-04-15 09:49:43
2024	216	2021-04-15 09:59:30
2025	7	2021-04-15 10:04:23
2026	7	2021-04-15 10:04:50
2027	44	2021-04-15 10:27:07
2028	225	2021-04-15 10:42:02
2029	225	2021-04-15 10:42:54
2030	225	2021-04-15 10:43:14
2031	225	2021-04-15 10:46:00
2032	225	2021-04-15 10:50:05
2033	225	2021-04-15 10:50:26
2034	225	2021-04-15 10:50:54
2035	225	2021-04-15 10:51:42
2036	225	2021-04-15 10:57:06
2037	225	2021-04-15 10:57:18
2038	225	2021-04-15 10:58:15
2039	225	2021-04-15 11:06:36
2040	44	2021-04-15 11:07:20
2041	225	2021-04-15 11:07:34
2042	44	2021-04-15 11:11:18
2043	44	2021-04-15 11:12:40
2044	7	2021-04-15 11:14:48
2045	204	2021-04-15 11:19:23
2046	7	2021-04-15 12:13:27
2047	113	2021-04-15 12:16:51
2048	113	2021-04-15 12:20:38
2049	225	2021-04-15 13:01:27
2050	44	2021-04-15 13:20:58
2051	7	2021-04-15 14:04:42
2052	7	2021-04-15 14:20:40
2053	44	2021-04-15 14:32:06
2054	44	2021-04-15 15:37:56
2055	44	2021-04-15 15:41:56
2056	44	2021-04-15 17:30:02
2057	44	2021-04-15 18:31:43
2058	44	2021-04-15 18:31:45
2059	44	2021-04-15 19:18:10
2060	7	2021-04-15 20:47:19
2061	44	2021-04-16 04:46:04
2062	44	2021-04-16 04:46:05
2063	44	2021-04-16 05:05:30
2064	44	2021-04-16 05:15:34
2065	44	2021-04-16 05:33:30
2066	63	2021-04-16 06:15:27
2067	44	2021-04-16 06:16:43
2068	44	2021-04-16 07:08:37
2069	7	2021-04-16 07:38:01
2070	7	2021-04-16 07:38:02
2071	7	2021-04-16 07:38:04
2072	7	2021-04-16 07:38:07
2073	7	2021-04-16 07:38:08
2074	7	2021-04-16 07:38:09
2075	7	2021-04-16 07:38:09
2076	7	2021-04-16 07:38:09
2077	7	2021-04-16 07:38:09
2078	7	2021-04-16 07:42:29
2079	63	2021-04-16 08:26:25
2080	44	2021-04-16 10:34:25
2081	113	2021-04-16 10:34:29
2082	113	2021-04-16 10:53:07
2083	7	2021-04-16 11:15:06
2084	7	2021-04-16 12:19:26
2085	194	2021-04-16 12:36:22
2086	63	2021-04-16 12:44:19
2087	63	2021-04-16 12:44:21
2088	63	2021-04-16 12:44:24
2089	63	2021-04-16 12:44:25
2090	63	2021-04-16 12:44:25
2091	63	2021-04-16 12:44:26
2092	7	2021-04-16 13:26:30
2093	194	2021-04-16 13:39:12
2094	44	2021-04-16 13:41:41
2095	44	2021-04-16 13:44:38
2096	44	2021-04-16 14:02:19
2097	44	2021-04-16 14:05:10
2098	44	2021-04-16 14:14:04
2099	44	2021-04-16 14:22:59
2100	44	2021-04-16 15:01:38
2101	113	2021-04-16 15:04:21
2102	63	2021-04-16 15:25:00
2103	44	2021-04-16 16:39:45
2104	7	2021-04-16 18:32:20
2105	44	2021-04-17 02:05:56
2106	63	2021-04-17 11:20:54
2107	44	2021-04-17 11:22:32
2108	7	2021-04-17 12:00:09
2109	44	2021-04-17 12:31:13
2110	7	2021-04-17 12:59:29
2111	7	2021-04-17 13:17:29
2112	63	2021-04-17 13:19:33
2113	44	2021-04-17 13:30:11
2114	44	2021-04-17 13:30:21
2115	63	2021-04-17 13:42:43
2116	63	2021-04-17 13:42:44
2117	63	2021-04-17 13:48:10
2118	44	2021-04-17 14:02:02
2119	7	2021-04-17 14:23:57
2120	7	2021-04-18 04:36:40
2121	237	2021-04-18 04:43:10
2122	7	2021-04-18 17:18:32
2123	113	2021-04-18 20:30:16
2124	204	2021-04-19 04:34:30
2125	44	2021-04-19 05:51:03
2126	44	2021-04-19 06:30:14
2127	7	2021-04-19 06:41:42
2128	63	2021-04-19 07:05:51
2129	44	2021-04-19 07:21:21
2130	44	2021-04-19 07:21:21
2131	44	2021-04-19 07:23:22
2132	63	2021-04-19 07:53:41
2133	113	2021-04-19 08:25:43
2134	44	2021-04-19 09:34:42
2135	113	2021-04-19 10:15:31
2136	44	2021-04-19 10:26:31
2137	44	2021-04-19 10:43:05
2138	7	2021-04-19 11:19:14
2139	44	2021-04-19 11:51:03
2140	44	2021-04-19 12:50:57
2141	194	2021-04-19 12:55:22
2142	44	2021-04-19 13:03:00
2143	63	2021-04-19 13:26:55
2144	7	2021-04-19 13:33:43
2145	63	2021-04-19 13:44:05
2146	63	2021-04-19 13:52:31
2147	194	2021-04-19 13:56:53
2148	113	2021-04-19 14:12:15
2149	113	2021-04-19 14:19:34
2150	63	2021-04-19 14:33:11
2151	7	2021-04-19 14:35:23
2152	113	2021-04-19 14:40:22
2153	44	2021-04-19 14:58:32
2154	113	2021-04-19 14:59:15
2155	63	2021-04-19 15:01:05
2156	7	2021-04-19 15:04:13
2157	7	2021-04-19 15:20:06
2158	7	2021-04-19 15:22:42
2159	63	2021-04-19 15:39:12
2160	113	2021-04-19 15:44:32
2161	63	2021-04-19 15:58:37
2162	63	2021-04-19 16:19:20
2163	63	2021-04-19 16:21:00
2164	7	2021-04-19 19:28:05
2165	113	2021-04-20 05:25:32
2166	246	2021-04-20 06:01:22
2167	7	2021-04-20 06:05:06
2168	44	2021-04-20 06:12:12
2169	44	2021-04-20 06:38:03
2170	44	2021-04-20 07:02:42
2171	194	2021-04-20 07:10:37
2172	194	2021-04-20 07:10:37
2173	194	2021-04-20 07:10:42
2174	7	2021-04-20 07:10:49
2175	113	2021-04-20 07:19:30
2176	113	2021-04-20 07:21:28
2177	7	2021-04-20 07:21:33
2178	63	2021-04-20 07:24:25
2179	113	2021-04-20 07:48:08
2180	113	2021-04-20 07:59:09
2181	63	2021-04-20 08:00:45
2182	44	2021-04-20 08:04:31
2183	113	2021-04-20 08:22:42
2184	194	2021-04-20 08:23:58
2185	113	2021-04-20 08:25:42
2186	63	2021-04-20 08:40:45
2187	44	2021-04-20 08:41:45
2188	7	2021-04-20 08:46:24
2189	245	2021-04-20 08:46:49
2190	44	2021-04-20 09:31:39
2191	7	2021-04-20 09:40:36
2192	63	2021-04-20 09:42:10
2193	63	2021-04-20 09:43:01
2194	44	2021-04-20 09:48:28
2195	245	2021-04-20 09:49:28
2196	113	2021-04-20 09:53:56
2197	63	2021-04-20 10:03:14
2198	113	2021-04-20 10:05:43
2199	113	2021-04-20 10:06:29
2200	113	2021-04-20 10:26:04
2201	63	2021-04-20 10:37:30
2202	256	2021-04-20 10:47:02
2203	63	2021-04-20 10:55:23
2204	63	2021-04-20 10:58:44
2205	113	2021-04-20 11:04:34
2206	113	2021-04-20 11:07:06
2207	44	2021-04-20 11:10:22
2208	216	2021-04-20 11:14:58
2209	63	2021-04-20 11:15:02
2210	113	2021-04-20 11:16:18
2211	113	2021-04-20 11:27:13
2212	256	2021-04-20 11:51:38
2213	256	2021-04-20 11:52:53
2214	256	2021-04-20 12:09:10
2215	113	2021-04-20 12:10:45
2216	256	2021-04-20 12:14:13
2217	44	2021-04-20 12:21:33
2218	113	2021-04-20 12:26:41
2219	113	2021-04-20 12:28:39
2220	63	2021-04-20 12:43:03
2221	113	2021-04-20 13:04:32
2222	44	2021-04-20 13:04:40
2223	7	2021-04-20 13:23:32
2224	245	2021-04-20 13:28:48
2225	7	2021-04-20 13:29:52
2226	7	2021-04-20 13:39:34
2227	63	2021-04-20 14:55:16
2228	113	2021-04-20 15:05:50
2229	44	2021-04-20 15:12:43
2230	44	2021-04-20 15:33:11
2231	113	2021-04-20 15:40:32
2232	113	2021-04-20 15:47:14
2233	63	2021-04-20 15:50:47
2234	113	2021-04-20 15:59:05
2235	44	2021-04-20 16:11:07
2236	113	2021-04-20 16:13:52
2237	256	2021-04-20 16:13:58
2238	7	2021-04-20 22:14:09
2239	258	2021-04-20 23:39:53
2240	113	2021-04-21 05:21:53
2241	113	2021-04-21 06:27:51
2242	63	2021-04-21 06:30:12
2243	7	2021-04-21 06:36:31
2244	113	2021-04-21 07:02:35
2245	256	2021-04-21 07:10:27
2246	113	2021-04-21 07:25:46
2247	258	2021-04-21 07:36:03
2248	259	2021-04-21 07:42:22
2249	113	2021-04-21 07:47:55
2250	245	2021-04-21 07:48:52
2251	113	2021-04-21 07:59:17
2252	245	2021-04-21 09:28:17
2253	113	2021-04-21 09:29:00
2254	113	2021-04-21 10:42:40
2255	258	2021-04-21 11:06:11
2256	258	2021-04-21 11:06:52
2257	258	2021-04-21 11:12:03
2258	258	2021-04-21 11:13:43
2259	258	2021-04-21 11:16:13
2260	229	2021-04-21 11:16:27
2261	258	2021-04-21 11:17:23
2262	229	2021-04-21 11:27:34
2263	229	2021-04-21 11:27:57
2264	7	2021-04-21 11:49:49
2265	229	2021-04-21 12:02:33
2266	229	2021-04-21 12:02:49
2267	258	2021-04-21 12:08:31
2268	229	2021-04-21 12:22:05
2269	229	2021-04-21 12:23:14
2270	229	2021-04-21 12:24:25
2271	229	2021-04-21 12:24:47
2272	229	2021-04-21 12:25:22
2273	229	2021-04-21 12:29:03
2274	258	2021-04-21 12:29:41
2275	229	2021-04-21 12:31:27
2276	258	2021-04-21 12:37:48
2277	258	2021-04-21 12:41:16
2278	229	2021-04-21 13:00:22
2279	261	2021-04-21 13:18:26
2280	229	2021-04-21 13:27:49
2281	229	2021-04-21 13:36:46
2282	63	2021-04-21 13:37:21
2283	44	2021-04-21 13:38:15
2284	256	2021-04-21 13:38:35
2285	229	2021-04-21 13:42:13
2286	229	2021-04-21 13:43:36
2287	229	2021-04-21 13:44:55
2288	229	2021-04-21 13:46:04
2289	256	2021-04-21 13:46:46
2290	262	2021-04-21 13:54:37
2291	263	2021-04-21 13:57:26
2292	216	2021-04-21 14:03:52
2293	113	2021-04-21 14:15:58
2294	262	2021-04-21 14:21:35
2295	229	2021-04-21 14:27:35
2296	113	2021-04-21 14:28:38
2297	229	2021-04-21 14:29:17
2298	263	2021-04-21 14:33:31
2299	256	2021-04-21 14:35:38
2300	229	2021-04-21 14:36:44
2301	256	2021-04-21 14:39:23
2302	262	2021-04-21 14:41:41
2303	113	2021-04-21 14:42:38
2304	63	2021-04-21 14:44:58
2305	229	2021-04-21 14:48:26
2306	216	2021-04-21 14:50:20
2307	256	2021-04-21 14:51:07
2308	256	2021-04-21 14:55:56
2309	266	2021-04-21 14:56:39
2310	256	2021-04-21 14:57:30
2311	216	2021-04-21 15:03:46
2312	216	2021-04-21 15:05:30
2313	256	2021-04-21 15:07:36
2314	256	2021-04-21 15:32:23
2315	229	2021-04-21 15:36:20
2316	44	2021-04-21 15:51:13
2317	113	2021-04-21 15:52:12
2318	113	2021-04-21 15:55:34
2319	113	2021-04-21 16:03:19
2320	113	2021-04-21 16:04:35
2321	234	2021-04-21 17:02:28
2322	7	2021-04-21 19:28:56
2323	44	2021-04-21 19:57:05
2324	44	2021-04-21 22:23:45
2325	44	2021-04-21 22:39:38
2326	44	2021-04-21 22:43:31
2327	44	2021-04-21 22:46:23
2328	44	2021-04-21 22:50:18
2329	44	2021-04-21 22:51:15
2330	44	2021-04-21 22:53:01
2331	44	2021-04-21 22:57:12
2332	44	2021-04-21 23:04:32
2333	44	2021-04-21 23:06:18
2334	44	2021-04-21 23:07:37
2335	258	2021-04-22 03:14:23
2336	268	2021-04-22 03:32:16
2337	268	2021-04-22 03:36:33
2338	256	2021-04-22 05:10:31
2339	44	2021-04-22 05:12:04
2340	113	2021-04-22 05:22:24
2341	44	2021-04-22 05:28:03
2342	262	2021-04-22 05:35:52
2343	44	2021-04-22 05:50:09
2344	245	2021-04-22 06:08:38
2345	113	2021-04-22 06:08:40
2346	44	2021-04-22 06:11:08
2347	113	2021-04-22 08:15:49
2348	259	2021-04-22 08:23:10
2349	113	2021-04-22 08:47:18
2350	113	2021-04-22 08:53:42
2351	113	2021-04-22 08:58:13
2352	113	2021-04-22 09:14:37
2353	44	2021-04-22 09:54:00
2354	63	2021-04-22 10:07:06
2355	44	2021-04-22 10:13:25
2356	113	2021-04-22 10:14:18
2357	245	2021-04-22 10:24:34
2358	113	2021-04-22 10:24:49
2359	245	2021-04-22 11:14:02
2360	245	2021-04-22 11:14:39
2361	44	2021-04-22 12:03:43
2362	44	2021-04-22 12:16:34
2363	44	2021-04-22 12:20:16
2364	245	2021-04-22 13:07:29
2365	245	2021-04-22 13:18:08
2366	245	2021-04-22 13:26:13
2367	44	2021-04-22 13:27:31
2368	44	2021-04-22 13:40:05
2369	63	2021-04-22 13:40:54
2370	225	2021-04-22 13:47:03
2371	225	2021-04-22 13:50:13
2372	44	2021-04-22 13:55:38
2373	216	2021-04-22 13:58:22
2374	256	2021-04-22 14:29:29
2375	256	2021-04-22 14:29:35
2376	44	2021-04-22 14:35:23
2377	44	2021-04-22 14:45:35
2378	44	2021-04-22 14:52:27
2379	113	2021-04-22 15:09:27
2380	44	2021-04-22 15:30:43
2381	256	2021-04-22 16:10:40
2382	256	2021-04-22 16:10:40
2383	256	2021-04-22 16:10:47
2384	44	2021-04-22 18:22:57
2385	44	2021-04-22 18:27:50
2386	44	2021-04-22 18:36:22
2387	113	2021-04-22 20:53:24
2388	113	2021-04-22 20:53:59
2389	113	2021-04-22 20:56:13
2390	113	2021-04-22 20:58:16
2391	113	2021-04-22 20:59:28
2392	113	2021-04-22 21:14:38
2393	113	2021-04-22 21:19:52
2394	113	2021-04-22 21:35:33
2395	113	2021-04-22 21:36:42
2396	113	2021-04-22 21:47:06
2397	113	2021-04-22 21:47:42
2398	113	2021-04-22 21:55:54
2399	44	2021-04-23 03:16:50
2400	44	2021-04-23 03:28:30
2401	113	2021-04-23 05:03:47
2402	44	2021-04-23 05:12:42
2403	44	2021-04-23 05:24:58
2404	113	2021-04-23 05:33:42
2405	113	2021-04-23 05:34:34
2406	256	2021-04-23 06:00:03
2407	113	2021-04-23 06:08:13
2408	113	2021-04-23 06:13:29
2409	113	2021-04-23 06:13:39
2410	113	2021-04-23 06:21:48
2411	113	2021-04-23 06:21:58
2412	113	2021-04-23 06:22:09
2413	113	2021-04-23 06:22:22
2414	113	2021-04-23 06:39:43
2415	113	2021-04-23 06:47:21
2416	113	2021-04-23 06:58:53
2417	113	2021-04-23 07:00:03
2418	113	2021-04-23 07:07:25
2419	113	2021-04-23 07:08:32
2420	113	2021-04-23 07:08:56
2421	113	2021-04-23 07:09:08
2422	113	2021-04-23 07:10:05
2423	113	2021-04-23 07:10:26
2424	113	2021-04-23 07:11:28
2425	113	2021-04-23 07:13:27
2426	113	2021-04-23 07:14:18
2427	113	2021-04-23 07:14:36
2428	113	2021-04-23 07:15:27
2429	113	2021-04-23 07:16:20
2430	113	2021-04-23 07:16:23
2431	113	2021-04-23 07:16:35
2432	113	2021-04-23 07:17:52
2433	272	2021-04-23 07:17:56
2434	113	2021-04-23 07:22:38
2435	113	2021-04-23 07:23:07
2436	113	2021-04-23 07:24:12
2437	113	2021-04-23 07:24:37
2438	113	2021-04-23 07:24:42
2439	113	2021-04-23 07:24:47
2440	44	2021-04-23 07:29:26
2441	113	2021-04-23 07:29:50
2442	113	2021-04-23 07:56:12
2443	113	2021-04-23 08:07:01
2444	113	2021-04-23 08:08:03
2445	113	2021-04-23 08:08:24
2446	113	2021-04-23 08:09:12
2447	113	2021-04-23 08:11:11
2448	113	2021-04-23 08:12:05
2449	113	2021-04-23 08:13:01
2450	272	2021-04-23 08:14:50
2451	256	2021-04-23 08:15:17
2452	113	2021-04-23 08:22:54
2453	113	2021-04-23 08:24:13
2454	113	2021-04-23 08:26:06
2455	113	2021-04-23 08:28:19
2456	113	2021-04-23 08:29:03
2457	113	2021-04-23 08:29:33
2458	113	2021-04-23 08:29:55
2459	113	2021-04-23 08:30:03
2460	113	2021-04-23 08:31:40
2461	113	2021-04-23 08:32:34
2462	113	2021-04-23 08:34:11
2463	113	2021-04-23 08:37:08
2464	113	2021-04-23 10:08:56
2465	113	2021-04-23 10:34:31
2466	272	2021-04-23 10:41:43
2467	245	2021-04-23 10:52:39
2468	44	2021-04-23 11:52:21
2469	44	2021-04-23 11:52:23
2470	44	2021-04-23 12:27:50
2471	44	2021-04-23 12:49:16
2472	276	2021-04-23 12:51:11
2473	272	2021-04-23 12:55:45
2474	260	2021-04-23 13:00:15
2475	260	2021-04-23 13:25:57
2476	229	2021-04-23 13:32:04
2477	113	2021-04-23 13:35:12
2478	44	2021-04-23 13:36:10
2479	44	2021-04-23 13:48:45
2480	275	2021-04-23 13:49:32
2481	113	2021-04-23 13:50:39
2482	44	2021-04-23 13:57:55
2483	275	2021-04-23 13:58:07
2484	275	2021-04-23 13:58:19
2485	275	2021-04-23 13:58:42
2486	275	2021-04-23 14:00:57
2487	275	2021-04-23 14:03:56
2488	275	2021-04-23 14:07:09
2489	113	2021-04-23 14:10:15
2490	113	2021-04-23 14:35:35
2491	44	2021-04-23 14:42:01
2492	272	2021-04-23 14:43:53
2493	44	2021-04-23 14:45:34
2494	44	2021-04-23 14:51:06
2495	113	2021-04-23 14:52:00
2496	245	2021-04-23 14:57:47
2497	245	2021-04-23 15:36:03
2498	44	2021-04-23 16:18:18
2499	113	2021-04-24 03:17:28
2500	113	2021-04-24 03:20:44
2501	113	2021-04-24 03:22:38
2502	113	2021-04-24 03:23:43
2503	113	2021-04-24 03:25:23
2504	113	2021-04-24 03:25:58
2505	113	2021-04-24 03:26:50
2506	113	2021-04-24 03:27:31
2507	113	2021-04-24 03:27:59
2508	113	2021-04-24 03:28:25
2509	113	2021-04-24 03:29:36
2510	113	2021-04-24 03:29:49
2511	113	2021-04-24 03:30:10
2512	113	2021-04-24 03:30:39
2513	113	2021-04-24 03:33:45
2514	113	2021-04-24 03:35:48
2515	113	2021-04-24 03:36:41
2516	113	2021-04-24 03:37:20
2517	113	2021-04-24 03:37:32
2518	113	2021-04-24 03:40:42
2519	113	2021-04-24 03:42:31
2520	113	2021-04-24 03:42:55
2521	113	2021-04-24 03:51:51
2522	113	2021-04-24 03:57:53
2523	113	2021-04-24 03:58:41
2524	245	2021-04-24 04:02:35
2525	245	2021-04-24 04:58:26
2526	113	2021-04-24 05:17:12
2527	113	2021-04-24 05:19:19
2528	113	2021-04-24 05:20:02
2529	113	2021-04-24 05:24:43
2530	113	2021-04-24 05:25:28
2531	113	2021-04-24 05:26:05
2532	113	2021-04-24 05:26:47
2533	113	2021-04-24 05:27:10
2534	113	2021-04-24 05:27:11
2535	113	2021-04-24 05:27:31
2536	113	2021-04-24 05:28:37
2537	113	2021-04-24 05:30:12
2538	113	2021-04-24 05:33:01
2539	113	2021-04-24 05:34:49
2540	44	2021-04-24 05:47:35
2541	113	2021-04-24 05:57:37
2542	113	2021-04-24 05:58:01
2543	113	2021-04-24 05:58:25
2544	113	2021-04-24 05:59:38
2545	225	2021-04-24 06:13:00
2546	63	2021-04-24 06:19:25
2547	113	2021-04-24 06:22:55
2548	113	2021-04-24 06:23:27
2549	113	2021-04-24 07:47:06
2550	113	2021-04-24 08:07:12
2551	113	2021-04-24 08:07:35
2552	113	2021-04-24 08:11:41
2553	113	2021-04-24 08:12:22
2554	245	2021-04-24 09:57:02
2555	245	2021-04-24 09:57:09
2556	113	2021-04-24 13:36:03
2557	245	2021-04-24 16:19:47
2558	245	2021-04-24 16:19:48
2559	281	2021-04-25 04:06:08
2560	113	2021-04-25 04:57:02
2561	113	2021-04-25 06:22:50
2562	113	2021-04-25 07:30:28
2563	258	2021-04-25 14:45:04
2564	258	2021-04-25 14:45:05
2565	258	2021-04-25 14:45:06
2566	258	2021-04-25 14:45:07
2567	258	2021-04-25 14:45:09
2568	258	2021-04-25 14:45:09
2569	258	2021-04-25 14:45:10
2570	258	2021-04-25 14:45:10
2571	258	2021-04-25 14:45:11
2572	258	2021-04-25 14:53:58
2573	282	2021-04-26 01:46:40
2574	282	2021-04-26 01:51:40
2575	245	2021-04-26 04:05:55
2576	275	2021-04-26 04:41:14
2577	275	2021-04-26 05:50:22
2578	44	2021-04-26 05:52:01
2579	261	2021-04-26 06:43:56
2580	281	2021-04-26 07:03:27
2581	245	2021-04-26 07:14:17
2582	7	2021-04-26 08:40:12
2583	282	2021-04-26 09:20:08
2584	201	2021-04-26 11:26:02
2585	201	2021-04-26 11:44:34
2586	113	2021-04-26 12:37:03
2587	245	2021-04-26 14:46:10
2588	245	2021-04-26 14:48:05
2589	245	2021-04-26 15:28:30
2590	245	2021-04-26 15:29:41
2591	44	2021-04-27 05:43:41
2592	283	2021-04-27 10:58:06
2593	283	2021-04-27 11:03:28
2594	283	2021-04-27 11:04:54
2595	284	2021-04-27 11:09:47
2596	284	2021-04-27 11:14:54
2597	284	2021-04-27 11:19:40
2598	284	2021-04-27 11:23:09
2599	284	2021-04-27 11:23:34
2600	284	2021-04-27 11:24:28
2601	284	2021-04-27 11:27:00
2602	284	2021-04-27 11:28:13
2603	284	2021-04-27 11:29:25
2604	284	2021-04-27 11:32:28
2605	284	2021-04-27 11:33:10
2606	279	2021-04-27 13:08:30
2607	201	2021-04-27 14:24:35
2608	113	2021-04-28 05:11:23
2609	113	2021-04-28 05:17:08
2610	113	2021-04-28 09:03:45
2611	282	2021-04-28 09:11:09
2612	113	2021-04-29 13:28:08
2613	113	2021-04-29 13:52:26
2614	7	2021-05-03 08:22:51
2615	261	2021-05-03 08:59:04
2616	229	2021-05-04 04:03:30
2617	229	2021-05-04 04:40:07
2618	113	2021-05-04 08:17:39
2619	113	2021-05-04 08:25:20
2620	113	2021-05-04 08:25:26
2621	286	2021-05-05 04:31:26
2622	286	2021-05-05 04:31:27
2623	286	2021-05-05 04:31:29
2624	286	2021-05-05 04:31:29
2625	286	2021-05-05 04:31:32
2626	286	2021-05-05 04:31:35
2627	286	2021-05-05 04:31:41
2628	286	2021-05-05 15:42:33
2629	286	2021-05-06 11:21:04
2630	201	2021-05-06 13:20:14
2631	201	2021-05-07 05:36:21
2632	201	2021-05-07 12:24:08
2633	201	2021-05-07 12:39:52
2634	201	2021-05-07 12:48:00
2635	216	2021-05-07 12:51:40
2636	216	2021-05-07 12:52:15
2637	216	2021-05-07 12:52:58
2638	289	2021-05-07 12:54:55
2639	282	2021-05-07 12:55:35
2640	113	2021-05-07 13:00:20
2641	201	2021-05-07 14:31:21
2642	201	2021-05-07 14:38:11
2643	201	2021-05-08 04:11:18
2644	290	2021-05-08 06:22:42
2645	290	2021-05-08 06:26:47
2646	292	2021-05-08 08:17:06
2647	292	2021-05-08 10:24:03
2648	113	2021-05-08 11:59:25
2649	201	2021-05-08 12:13:47
2650	291	2021-05-08 12:18:45
2651	113	2021-05-08 13:00:17
2652	113	2021-05-08 13:01:22
2653	201	2021-05-08 13:28:54
2654	292	2021-05-08 14:17:44
2655	282	2021-05-10 06:50:26
2656	201	2021-05-10 06:50:51
2657	292	2021-05-10 07:37:17
2658	282	2021-05-10 07:37:34
2659	292	2021-05-10 07:44:57
2660	292	2021-05-10 07:45:06
2661	201	2021-05-10 07:45:59
2662	292	2021-05-10 07:46:19
2663	113	2021-05-10 09:28:07
2664	113	2021-05-10 09:31:05
2665	201	2021-05-10 10:55:08
2666	297	2021-05-10 13:22:30
2667	297	2021-05-10 15:20:57
2668	292	2021-05-11 03:53:02
2669	113	2021-05-11 04:38:18
2670	282	2021-05-11 05:17:34
2671	292	2021-05-11 05:45:15
2672	201	2021-05-11 06:48:54
2673	292	2021-05-11 09:26:58
2674	292	2021-05-11 09:55:30
2675	201	2021-05-11 11:46:22
2676	292	2021-05-11 14:09:20
2677	292	2021-05-11 14:14:26
2678	229	2021-05-11 15:15:15
2679	292	2021-05-12 03:45:39
2680	292	2021-05-12 06:33:29
2681	282	2021-05-12 08:08:28
2682	292	2021-05-12 14:55:04
2683	201	2021-05-12 15:01:24
2684	113	2021-05-13 05:59:39
2685	282	2021-05-13 06:13:03
2686	201	2021-05-13 10:23:54
2687	201	2021-05-13 10:26:16
2688	282	2021-05-13 13:20:33
2689	113	2021-05-13 14:21:51
2690	201	2021-05-13 14:31:58
2691	292	2021-05-13 14:52:44
2692	201	2021-05-14 04:14:31
2693	292	2021-05-14 11:29:43
2694	261	2021-05-14 12:55:36
2695	201	2021-05-17 04:28:52
2696	191	2021-05-17 13:08:34
2697	279	2021-05-17 13:45:20
2698	191	2021-05-17 14:55:59
2699	201	2021-05-17 15:26:44
2700	279	2021-05-17 15:33:33
2701	279	2021-05-17 15:36:30
2702	201	2021-05-17 15:39:06
2703	279	2021-05-18 12:36:48
2704	289	2021-05-18 13:10:06
2705	289	2021-05-18 13:17:43
2706	216	2021-05-18 13:21:41
2707	201	2021-05-18 13:25:47
2708	216	2021-05-18 13:33:25
2709	216	2021-05-18 13:34:51
2710	201	2021-05-18 13:37:51
2711	216	2021-05-18 13:45:16
2712	201	2021-05-19 05:09:13
2713	279	2021-05-19 05:09:42
2714	292	2021-05-19 06:38:47
2715	292	2021-05-19 06:43:53
2716	201	2021-05-19 07:28:19
2717	302	2021-05-19 07:36:22
2718	292	2021-05-19 11:44:55
2719	292	2021-05-19 13:47:36
2720	292	2021-05-20 04:59:33
2721	201	2021-05-21 05:20:51
2722	201	2021-05-24 08:39:13
2723	201	2021-05-25 04:47:01
2724	201	2021-05-27 11:39:14
2725	279	2021-05-28 06:49:59
2726	113	2021-06-09 09:31:22
2727	224	2021-07-01 12:30:14
2728	201	2021-07-02 13:45:47
2729	224	2021-07-06 06:41:03
2730	216	2021-07-08 09:17:55
2731	224	2021-07-28 11:59:35
2732	234	2021-08-10 13:35:16
2733	307	2021-08-16 15:46:42
2734	261	2021-08-17 09:44:21
2735	234	2021-08-23 14:32:29
2736	234	2021-08-24 03:42:40
2737	224	2021-10-05 07:37:44
2738	224	2021-10-13 12:19:35
2739	224	2021-10-18 11:38:38
2740	224	2021-10-18 15:15:45
2741	224	2021-10-21 17:17:41
2742	308	2021-10-26 17:49:58
2743	224	2021-10-27 05:31:22
2744	224	2021-10-27 10:32:07
2745	224	2021-12-07 09:59:19
2746	224	2021-12-14 07:54:51
2747	310	2022-02-10 07:48:41
2748	224	2022-02-24 07:55:52
2749	234	2022-07-26 07:13:15
2750	234	2022-09-07 04:32:18
2751	333	2022-09-15 15:42:00
2752	333	2022-09-15 15:44:20
2753	234	2022-11-04 10:43:57
2754	234	2022-11-13 12:29:31
2755	261	2023-02-02 08:41:40
2756	191	2023-02-17 08:59:19
2757	234	2023-02-19 12:47:37
2758	261	2023-03-02 11:22:15
\.


--
-- Data for Name: user_roles; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.user_roles (role_name, active_status, created_date, role_type, tag_bg_color, tag_text_color, parent_roleid, place_id, rolefor, updated_date, to_place, id) FROM stdin;
Content Writers	1	2021-03-15	\N			\N	\N	A	2021-03-15 16:36:24	\N	3
Automation tester	1	2021-03-25	\N			\N	\N	A	2021-03-25 19:51:26	\N	40
System admin	1	2021-03-26	\N			\N	\N	A	2021-03-31 16:58:50	\N	41
Site Owner	1	2021-03-15	\N			\N	\N	A	2021-03-17 19:48:38	\N	1
Accounts	1	2021-03-31	\N			\N	\N	A	2021-03-31 17:55:17	\N	60
User Manager	1	2021-03-15	\N			\N	\N	A	2021-04-01 12:32:39	\N	5
Technical Manager	1	2021-04-05	\N			\N	\N	A	2021-04-05 11:48:24	\N	62
Resource Manager	1	2021-04-06	\N			\N	\N	A	2021-04-06 17:52:08	\N	63
10 Bucks Staff	1	2021-04-15	\N			\N	\N	A	\N	\N	64
\.


--
-- Data for Name: users; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.users (name, designation, email, image, password, remember_token, id, nationality, user_token, is_verified, verification_key, status, mobile, gender, first_name, last_name, activation_key, ip_address, user_created_by, date_of_birth, android_device_token, ios_device_id, ios_device_token, android_device_id, otp, login_type, created_at, updated_at, mobile_number_plain, address, logo, is_featured, google_plus_id, facebook_id, account_type, apple_id, user_type, latitude, longtitude, deleted_at, id_proof, total_donated_amount, dial_code, plain_number, facebook_link, twitter_link, linkedin_link, notification_group, organization, bio, website_link, country_id, city_id, sendbird_access_token, sendbird_id, terms_cond, tag_category, id_number) FROM stdin;
Rajini	\N	rajinigowda20@mailtest.com	\N	$2y$10$2SK6nyKLZwz264K/dIyLU.zqRNjoZMfplevnBZDnS3QrThctI3PA2	\N	288	\N	5IgWMvoSkNfetw8tjp5k7Qm7UqDavgaML7yb	0	1ofnY3wd3nyk	1	+279912641725		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2021-05-06 14:36:06	2021-05-06 14:36:10	\N	South Hills, Johannesburg South, South Africa	\N	0	\N	\N	1	\N	3	-26.2476095	-26.2476095	\N	\N	0	+27	9912641725	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
misch mayet	\N	mischym@yahoo.com	\N	$2y$10$48gxr8lMN7kWJe4qEnz90e6h2KP5v4zh7m9Zg8IA4X2zht14zbYmS	\N	257	\N	xaOo1bEC4IT64NaffcJbvmTxnlEt0F5BO2uO	1	FMExbRxyfkne	1	+270677765808		\N	\N	\N	\N	1	04/21/1987	cW00zYJpR9W_Ny3Nxs7A2V:APA91bGzFvupTBk4_Yc2WanmRcJWiR3EW-CQNZwV-fIluo58h-PjBzY555W658awznbTxa0R_HV085-Gw2kqhkQNFV4_kby8N1-GSWaiDQn10HXViDQU0m2NCbM87wnf1s26-YlNn_kZ	\N	\N	e44168f924aaaac1	\N	2	2021-04-20 13:33:06	2021-04-20 22:41:46	0677765808	durban	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	0677765808	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh	\N	kkk@getnada.com	\N	$2y$10$euW91ERJ2mJeC0XPpwx76.NJxI9/11zfkrzntFC6hSu.fn9mkU0EG	\N	254	\N	4L3YLbxRPR2CQ2OzNN24SrgJsa85WS8oxh2Y	1		1	+919606169056		\N	\N	\N	\N	\N	04/16/2003	dylFUaVGTaW1c32Yeuh-qL:APA91bGuEZJ94ijWr7TDDGG33uMG_TY7RYtGO5W4btDU7ciAFat_Ed110JJafikwLIRMmMlAjYfiT73GweK6iLh8zpJyJq-uf3Fq2-JYYCo0xQ_4H8ERBZFvXv9fkmrbMUlTmJO-Yerk	\N	\N	970cd1012a2ca89c	\N	2	2021-04-20 10:32:54	2021-04-21 07:20:53	\N	Bengaluru	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Sravya Kolla	\N	c3@getnada.com	63.jpg	$2y$10$kYVYWOKLS7MPq.fIJ//9ZOO5X7eL11Q0Cc4rJQgctwX59f0Vrl2Mi	\N	63	\N	xkMUbYpQ6ejLIsONNBnWpC2DuXyen1SOZqQn	1	6JVNRtbP	1	+919876543212	M	\N	\N	\N	\N	1	04/04/1995	cAd9zsmCQiyirSoqHyLxyD:APA91bHf2dnDfGlVJ3YIu4dS7UracqVfibOW8iZnJRBd75-EBARaxmII1-yg2l-X6LJQn_XOd0N4-Ytc6fU4SPewY9DCu5ntM0sqML1D9FlNgc4Fsd75fjRRTAnDvIMH6fH6akZpXD_V	\N	\N	944a4f55df12e301	\N	2	2021-03-05 08:04:59	2021-04-21 08:01:21	9606169056	Hyderabad, Telangana, India	\N	1	\N	\N	1	\N	3	17.385044	78.486671	\N	63.jpg	350	+91	9876543212				2	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh Kolla	\N	ramesh517.k@gmail.com	229.jpg	\N	\N	229	\N	b1b67654c3858bb796b33e74b0f973f1a9a47919	1	\N	1	+279606169054			Ramesh	\N	\N	\N	04/22/2003	clGK3M1gS_2lfRbv1QXInz:APA91bGocOCCdDgIl77B8Erl6PDLM9FR_sPP4YodwvnR9Qm3Ghp1N4pJvlcQiXzhzLP2vROXkkXhbwO-wnevg-O-ka3Rf5GF-MC9g7LEf0u0XwBYJX7YYNl9-QIW9WnMZ0u9__8kOQmX	\N	\N		\N	2	2021-04-15 12:39:09	2021-05-11 15:16:50	\N	next brain technologies hh	\N	0	116506124304272425385	\N	1	\N	\N	\N	\N	\N	\N	0	+27	9606169054	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
krishna	\N	ktishna6655@mailinator.com	\N	$2y$10$EbVk4YuPYLG8wN0Jepkmve0IvursyNeAel396UrMw6PThwi0o3qHe	\N	300	\N	k22FPb8WKgD5J2Pvm05gAPOXNybCjV4j4LiT	0	SrHyLzrbn1qB	1	+918632589765		\N	krishnakimar	\N	\N	\N	05/13/2003	fBkkh5FaRySH4B1c2mjmY8:APA91bHF3W0skpph-8EbdJOOWHNhcIV5CBWu296YYdhTucB53n6VawcDuvfNuuDaC442vYqPMFqOwJEm3GLYzkL3ViMtOTwSJ_6kh_QPycg-4CmHHsT5susNXL5tQdssWlzlK2UxCo7S	\N	\N	4270497a232f650f	\N	2	2021-05-17 13:03:06	2021-05-17 13:03:10	\N	test	\N	0	\N	\N	1	\N	3	12.0940406	12.0940406	\N	\N	0	+91	8632589765	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
iosdev	\N	iosdev@getnada.com	\N	$2y$10$oc3TDtdB8k0BgEoXGjUKB.xIM8tB8qEfe707EScfJokoVioeew48O	\N	196	\N	OQ9Gk50m2w44l4PCaFIqGpyxAZ9LV9mGJQlt	1		1	+919080942690		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	A921C93A-E16C-49C2-BA61-E6195F44961A	\N	2	2021-04-09 08:03:32	2021-04-22 20:29:29	\N	46, 1st Cross Road, Prashanth Layout, Whitefield, Bengaluru, 560066, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Vidya shree	\N	vidyashree@nextbraintech.com	\N	\N	\N	275	\N	1da51583ff7da697b052ab38b5fa9fb00a2295ec	1	\N	1	\N		Vidya	shree	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-23 11:47:51	2021-04-23 11:47:51	\N	\N	\N	0	116178923769917071347	\N	1	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
seetha	\N	seetha@getnada.com	\N	$2y$10$nk0Ia95Z479kQcBXGv8bUe3jSkJIIFqjNwhRQBdPVIPCy50ftW.8m	\N	4	\N	HSlR6OWW8ER3165igioNlwWHal6QI3FteVUl	0	zosD0I2QsjuG	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2020-12-10 11:07:23	2020-12-10 11:07:26	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	600	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	seet456@getnada.com	\N	$2y$10$q2rKDU.UDMyiKkpmtb83eum8fot0jDquWopSxKTLy9noEzB9wAE7W	\N	10	\N	Aby4gVFNuEPAYtG7fjGwOuaU6Em3DW8YBIlO	0	GBvGhNPJWOaK	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 08:56:12	2020-12-14 08:56:12	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	1000	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	gydisat@getnada.com	\N	$2y$10$zIsbyTGRJwEz9yEmTB9mBO9T5ueMdAPDuJ6BOG3bIpjaEhjTgqJgi	\N	255	\N	I95x1aapTw7swSjXIM2Jm1qvg3cYbDhwvUqy	1		1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-04-20 10:35:37	2021-04-20 10:37:15	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
krishna	\N	krishna6655@mailinator.com	\N	$2y$10$5zU91UgkpfKVtZrvfxo5ae8xAXzTVTA0nFnmwE2K5tOpIAMIs/HMq	\N	301	\N	v4BNbPLF3d1HmIPeCcCIc9zNZEvDuNFled4h	1		1	+918632598569		\N	krishnakumar	\N	\N	\N	05/13/2003	fBkkh5FaRySH4B1c2mjmY8:APA91bHF3W0skpph-8EbdJOOWHNhcIV5CBWu296YYdhTucB53n6VawcDuvfNuuDaC442vYqPMFqOwJEm3GLYzkL3ViMtOTwSJ_6kh_QPycg-4CmHHsT5susNXL5tQdssWlzlK2UxCo7S	\N	\N	4270497a232f650f	\N	2	2021-05-17 13:05:08	2021-05-17 13:05:21	\N	test address	\N	0	\N	\N	1	\N	3	12.1083235	12.1083235	\N	\N	0	+91	8632598569	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Seetha S	\N	seetha.s@nextbraintech.com		\N	\N	260	\N	bc9990ea87518427ef36468cfde22f0f7d3f36e2	1	\N	1	\N			Seetha	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-04-21 11:53:31	2021-04-21 11:53:32	\N	\N	\N	0	109464051091852533634	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Krishnakumar Devendiran	\N	krishnakumar.dvn@gmail.com	\N	\N	\N	289	\N	5ec808b143a6cd9002acb905f9efbd7e98735713	1	\N	1	+918623649845			Krishnakumar	\N	\N	\N	05/06/2003	fpln3MKcR4uRty0-34gDYD:APA91bEzCzcY92Uq_bP6jhesIdqjEPUyAoFgKssq9aWmbr_aMKYZfUugWEq6jz0szfaTIR171JQNiaUF56xfU0K5nG4RPwg7xE43xMtm1fqMtM4NNRhN4J5vrrco-2_HNNc2WWtbCJEY	\N	\N		\N	2	2021-05-07 12:54:20	2021-05-18 13:10:05	\N	addrss	\N	0	114218541359978200709	\N	1	\N	4	\N	\N	\N	\N	0	+91	8623649845	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Ramesh	\N	ramf@getnada.com	272.jpg	$2y$10$1ehcfTnuw7Svn5dFFxfcJ.kCTXrPhvzKVfYEEWzZMKnJKVita3Oqe	\N	272	\N	HacmIQBJ71lOLXu05CIT3AFk6sXsJqiLHzKq	1	cG1wLiB6	1	+213558335		\N	\N	\N	\N	\N	04/10/2003	\N	CD2C0D7C-6C9E-4446-8618-62C45F239B33	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-23 07:13:22	2021-04-23 08:19:44	\N	whitefield 	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+213	558335	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
zunaid final test	\N	zunaid.floris@emotionstudios.co.za	\N	$2y$10$nR1D7hrPds17QB4ST6pQFeTBB4G6ptMrb/oN2OKSTsuhpPJfmzmsC	\N	258	\N	9PW9cAdt9pKakaPhw4sHfhnu12L0zcY6zOFu	1	HWqrAoug	1	+270795004075		\N	\N	\N	\N	1	02/04/1985	eEE0qFpjSaeFwjP3RkPA-3:APA91bFqvhfhhUf10j6UiVkqNxTWBrdbPlUu7SegsQhP_vxz01pLIku713yBNRxq49x3DX_2jim2BuXi4TImVQeD-DPAUfN4Uv3Fi8wdG176xygT3vTnuFoJDhP-FJQ37c1_pwOkr85o	\N	\N	a0f149420a9ed551	\N	2	2021-04-20 15:30:52	2021-04-22 13:13:30	0795004075	updated for reza bug on 18A road 	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	0795004075	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Zunaid Floris	\N	user@getnada.com	7.jpg	$2y$10$pA5Bx6hh/gb6UkId.U2BLeaxeyflrR/HdW59rDaE3ZtvwrJ3R8THO	\N	7	\N	Au3mVTIIT1NziYKmZuAYetl5i7zitRvnqJVi	1	sPaXrZMn	1	+27795004075		\N	\N	\N	\N	1	04/18/2002	\N	\N	\N	\N	\N	1	2020-12-11 05:32:35	2021-04-20 06:16:52	795004075	49 Mazisi Kuneveue Road	\N	0	\N	\N	1	\N	3	11.2886453	76.9456297	\N	7.jpg	40328	+27	0795004075	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh	\N	ramesh@getnada.com	\N	$2y$10$hjm6K1iHaZS1ck1UHyNf6eH93IiT4tfopQAx3Ee2g5xwXTPdtIMm.	\N	42	\N	NSvCU8lvaAUFVGx6x63SzBM2JwH0IOJXnE5F	0	LvR1BxdEzfY9	2	+919606169055		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	02A9631E-861C-40BB-8E21-1FB3054B55FE	\N	2	2021-02-24 08:03:23	2021-02-26 18:43:38	\N	North Atlantic Ocean	\N	0	\N	\N	1	\N	3	\N	\N	2021-02-26 18:43:38	\N	2000	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
vino	\N	vino3@mailinator.com	\N	$2y$10$P9Sxs.BvgFW.wGheOGDZ2.woQ3RsMzjMUtomIu6We8OMIDvq8HEDa	\N	30	\N	B6twyLBaugB5AiJATTQXdkGJ8h4OXDJzYTXz	0	amPOO6dO7KQZ	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2020-12-16 08:06:52	2020-12-16 08:06:57	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	30.jpg	2000	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ganeshios	\N	ganeshios@mailinator.com	\N	$2y$10$CxFPOudK2uugye1fj82V/.uMpQKoBRcGaF3vwvcNig8NlvFiWrGvO	\N	32	\N	RDCaNUKvQKOLF8gTity81GpxHn7sBDtVx8Q7	0	ZrXA71rp7KNw	1	\N		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	A3400BF4-E1B9-4DC6-AF24-805539039A8D	\N	2	2020-12-18 12:37:07	2020-12-18 12:37:12	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	4000	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	users@getnada.com	\N	$2y$10$NfxMw28Ci/ZAZNK0uVhw1OySNGY60gYlq48pdnovXUeggy.tT6h2m	\N	21	\N	sr9PnDplaIkl0KpwqeEp1sxCRuqz2IDjPFE9	1		1	+27795004075		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 11:59:04	2021-04-20 08:27:26	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	20000	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ganeshios	\N	s@gmail.com	\N	$2y$10$RnFki9YeHx3MuTAlpTHUGu/3L.IrOBD0341taEvyo.sPc4adW5HQO	\N	33	\N	klw1VswxZwGjatvfa1aBrsPApUNt4e654p9Q	0	7pQIY6VGr0TU	1	\N		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	A3400BF4-E1B9-4DC6-AF24-805539039A8D	\N	2	2020-12-21 05:51:16	2020-12-21 05:51:21	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ganesh Kolla	\N	tuv@getnada.com	\N	$2y$10$sNYbnUiTAOhcRIBXXD0rDetcq1OLi.wHgrcg1.b0rlUKQ3mDtdUT6	\N	276	\N	7xxKzNAVPdyNFUe0jNOPUwtfra7BODwEBxD8	1		1	+279606169056		\N	\N	\N	\N	\N	04/10/2003	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-23 12:36:19	2021-04-23 12:36:29	\N	google	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	test@test.com	\N	$2y$10$BTjaCDo9Rnd0xWewa2jiUunGU6hBei1v2nw4RfuB5i0wLg3ixbgFm	\N	49	\N	f6bd3317441cf70624770c44965421e0b3036c70	1	8iZHOv0aL6KS	1	1234567890	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-03 12:33:18	2021-03-03 12:33:18	\N		\N	1	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N				\N			\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	test12@test.com	\N	$2y$10$v6BNdhLsD.7qWAnGYSv/PuZVrHGeGmmndT7qV/PZ9TKa5KWtypKw.	\N	50	\N	2d086f08b5555d3d22ef395722aaa9c05077d405	1	01MQ9PJPkn7X	1	9876543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-03 12:35:23	2021-03-03 12:35:23	\N		\N	1	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N				\N			\N	\N	\N	\N	\N	\N	\N	\N
Ramesh Kolla	\N	webuser@mailinator.com	\N	$2y$10$5U8Id21rEfWzP/EbhzMWpeVkbjkPyILb.43zynnDD7fNbtHYFkjb2	\N	290	\N	F6Y8D5692w9S7s3X9pXM4hNL4xTq2CYNnImV	1		1	+279606169056		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2021-05-08 06:20:31	2021-05-08 06:21:17	\N	nextbrain technologies	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
krishna	\N	seetha.s@nextbraintech.com		\N	\N	216	\N	81e7f9f9d4cdfe83c1d823bfc491dda10ac81b7d	1	\N	1	+918680946634		seetha	kumar	\N	\N	\N	05/14/2003	do1yZS9PRIiAX0l5tWWAfb:APA91bHcq8FftVPf7moIaQR_ARXinnbECl4y_1etzuTzhVeMe2C2VqAPNsoRvoOP5WHBdO3C1PLc73jWRnfkf87SlO4LVi6T_GgFwR8eIhhPsT-9Hg0-syqFQI578oGdVUl-AJlQ1ud7	\N	\N		\N	2	2021-04-14 13:41:23	2021-05-18 13:22:22	\N	test addresd	\N	0	115748250951600595838	\N	2	\N	\N	\N	\N	\N	\N	0	+91	8680946634	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Test From Mobile	\N	tivicykof@getnada.com	\N	$2y$10$iYJ8sOXcKVVcXBIWj0lZeO.HXKRkHZeiOK3BDaf0EUv8jSC/NPLyK	\N	259	\N	cI1DVzExkd5z9fGVh67VMrr1L8gid8h9pLIG	1		1	+919798979898		\N	\N	\N	\N	\N	04/21/2003	eoVka6PORkeyUzM2NIenFy:APA91bH24qBNsAEI8RNcaU_p2WZl4mgxIU25oT3qzEHaVJHnvDv75bI_epleDJt8d-PKUD-dtAMX5hcPaOYClXP2Qz-VOOUPRvPn1CMBDPZ2GaeS2cWSSzrN1NCt2IuZXAiV8qIlw3J3	\N	\N	606ba08fb7fe7f82	\N	2	2021-04-21 05:45:29	2021-04-21 07:46:52	\N	South Africa	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9798979898	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Reza Amra	\N	reza@accountingedge.co.za	\N	$2y$10$ctgb6BAkqx90Gu.9y9lM3O2bAkPZD8eiRuC2bBXs58K.S4Gr0W6Lu	\N	261	\N	vYdKb1uJA1kX37kymBzFzUXtAFOjlww6G7A5	1	oZhMtJBfpOTa	1	+270832828786		\N	\N	\N	\N	1	07/16/1982	dTyMmVvYTl6vKPZWDgZmeS:APA91bGKZTK6op2WIOx5uHBSqUU4xt0dnPMUrQ1-z-HqrTV0YqfsmfQNssSeBAz-7G3Akbl8PsBjURU9XWRUTAOmNq5Eub6ksuR70XK_PAPIILJM9s9LAevyGPq6WBVmuwEkqOOCScFw	\N	\N	42d870a5a4ac5731	\N	2	2021-04-21 13:15:49	2021-04-21 18:47:13	0832828786	177 High Ridge Road, Athlone, Durban	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	0832828786	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Philip k	\N	abcd@mailinator.com	256.jpg	$2y$10$DNdLWXjxrPIECQ7X7vF.Tu2NvQ1MG4vioIlgZRkxPNhtpULc2zaNi	\N	256	\N	IsIkDRckJ2k4prDmb60y5Wre2g2k8Y1FYEnL	1		1	+919606169051		\N	\N	\N	\N	1	04/06/1998	dylFUaVGTaW1c32Yeuh-qL:APA91bGuEZJ94ijWr7TDDGG33uMG_TY7RYtGO5W4btDU7ciAFat_Ed110JJafikwLIRMmMlAjYfiT73GweK6iLh8zpJyJq-uf3Fq2-JYYCo0xQ_4H8ERBZFvXv9fkmrbMUlTmJO-Yerk	\N	\N	970cd1012a2ca89c	\N	2	2021-04-20 10:45:24	2021-04-23 06:47:25	9606169056	44 nextbraintechnolgies, whitefield,56006n	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9606169051	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
tamed	\N	i@h.com	\N	$2y$10$h8IUuiraSBMKQtevS1fl1OeMmqZZkMTm6.qeCLJFHF1dUGL8EGlHK	\N	273	\N	uoAMb0v5O3JPKusAi0mOxcKuWtWqyuG4TwF6	0	5peV4FXKrDW4	1	+16848368658		\N	\N	\N	\N	\N	04/09/2003	\N	CD2C0D7C-6C9E-4446-8618-62C45F239B33	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-23 07:48:51	2021-04-23 07:48:56	\N	gg	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+1684	8368658	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
cvh	\N	ramesh5k@gmail.com	\N	$2y$10$E3OjxcuCrCwcqhVmA4P5pud.Qofs90IGNcGpbFtubnAV/uBntCG1y	\N	277	\N	FiaANjDBIfA8R6a2GBWIQlpJehHU31GJHZYu	0	wNlqmdnQTmTD	1	+919606169056		\N	\N	\N	\N	\N	04/17/2003	dT9Tl5zMTdWXrmp0AilH28:APA91bE2lke7zr4tmR7fnoflHUor-5vaaM51J6pfE0K2uFnGriTdZVeu78haD9Ig344Hr0EciuCywRQSKXGrN_md3frmHrB5SVbB32uPhkiJ2qMZcSYEl1j6Oge_L-Mdj4qGI-u3ZvXh	\N	\N	970cd1012a2ca89c	\N	2	2021-04-23 12:37:10	2021-04-23 12:37:14	\N	gh	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Rajini Gowda	\N	rajinigowda@mail.com	\N	$2y$10$PnjPz6TE6qtW6tWUScnbaOdHOe.f07PeL1rcFp0DLHTI/xcAvf3kW	\N	291	\N	DHMxaxMPrfdXU80pFH2zNxeAPl5iSF7EpNEU	1	Uh2aD45jdJPa	1	+277834623572		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2021-05-08 06:36:15	2021-05-08 06:36:19	\N	Devanahalli	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	7834623572	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh	\N	rameshkolla@getnada.com	262.jpg	$2y$10$FH06cznyOL9uPI/XIeKneOcfKBNJBFR81K1CF2358DoIS6J8ecNKG	\N	262	\N	YspTuAu36QiLmgp6WAhRKbbDELS98Twst4Pa	1		1	+919606169052		\N	\N	\N	\N	\N	04/22/2003	dHIeMIhlS52HRcKgwEBMQr:APA91bGBOCoDhdCTChfYwWSR5NAL2cd8GDJfV0U_BpY7lLJAp7cfmDBDBiFE87TSDtBaFLIcCb3UAbNdtILLxmoBL9_LTjgKj6bc_93LbFJEEw3sQJbCorFSD6ucRjB70ZOUtiHu0pGp	\N	\N	970cd1012a2ca89c	\N	2	2021-04-21 13:51:04	2021-04-21 14:23:46	\N	44 nextbraintechnolgies	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9606169052	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
gg	\N	u@g.com	\N	$2y$10$c1HlEH7ShHeueBQABF.6KewjhGR7T02dpEfiA8TGQTfDrJbdL/SD2	\N	274	\N	UviYOGZANJdxdQWMw9fk3HQ1CSpoYPBgYkcJ	0	kA48ZxFJyX7G	1	+3764555		\N	\N	\N	\N	\N	04/10/2003	\N	CD2C0D7C-6C9E-4446-8618-62C45F239B33	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-23 07:51:10	2021-04-23 07:51:14	\N	vhjj	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+376	4555	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Vidhyashree S P	\N	vidhyashreerani@gmail.com	\N	\N	\N	278	\N	bac886fd3ceee41bce15f66464d09de1cc6b1889	1	\N	1	\N		Vidhyashree	S	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-23 14:04:41	2021-04-23 14:04:41	\N	\N	\N	0	109506063306338524005	\N	1	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Ramesh	\N	ramesh123@mailinator.com	302.jpg	$2y$10$7lj40AHMJl0VKirFUJsPluYwut0fMGFiZ3QydsqMYVyurNAzGhg/W	\N	302	\N	ac9pB3du5wBnqsYYXmmMEq4C9ynJzCoA26mF	1		1	+279606169056		\N	kolla	\N	\N	\N	05/11/2001	\N	\N	\N	\N	\N	1	2021-05-19 07:33:23	2021-05-19 09:38:19	\N	next brain technologies	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test User	\N	asddada@getnada.com	\N	$2y$10$jZaOoLonhmB1wSVuV2XyB.CD9uH/LymNQv45MDdOovbqKJKXhKtWq	\N	69	\N	f8d7422e58a64457e88d6093d5e7d546f4abdade	1	FlP0hRSMs8UO	1	9876543210	M	\N	\N	\N	\N	\N	08/02/1990	\N	\N	\N	\N	\N	\N	2021-03-08 16:11:36	2021-03-08 16:11:36	\N		\N	0	\N	\N	1	\N	3	\N	\N	\N	69.jpg	0	\N	\N	facebook.com	twitter.com	linkedin.com	2		\N		\N	\N	\N	\N	\N	\N	\N
usersss	\N	usersss@getnada.com	\N	$2y$10$GpL7DQCuj1tQGUsZu4rXHuMtKXe9Lidb/UprRwLx3OqMimX7QeO5e	\N	73	\N	d14375eaba30ddc95bd7e365fbf98f24ea8b3dff	0	ByNZopV15Bg6	1	9876543210	M	\N	\N	\N	\N	1	05/02/1991	\N	\N	\N	\N	\N	\N	2021-03-10 12:02:42	2021-03-10 12:05:44	9876543210		\N	0	\N	\N	1	\N	3	\N	\N	\N	73.png	0	\N	\N	facebook.com	twitter.com	linkedin.com	2		\N		\N	\N	\N	\N	\N	\N	\N
Rajini	\N	rajinirgowda20@gmail.com	\N	$2y$10$DQfh16o1b0scA.Y7/h/PKe9KpwJxYzh2W22wtpvLFyJ4qXmQfJoP2	\N	279	\N	PSFDm0sz8mI5DTxEJMNWvqcjTMiLqF8OBk99	1		1	+279901713245		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2021-04-24 13:22:30	2021-04-27 12:56:05	\N	Somerset West, Cape Town, South Africa	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	9901713245	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Rohan	\N	user1001@mailinator.com	292.jpg	$2y$10$KRzo1/BpaVkkclIXVDJrIeHz37uhETgF.dU/jR2oC/JgT1ISab1CS	\N	292	\N	ATqnJUw48lar5LA7H54eaZgPzafqyU99tduI	1	k9Q0aRqu	1	+279606169056		\N	Kolla	\N	\N	\N	02/02/2000	\N	\N	\N	\N	\N	1	2021-05-08 07:41:51	2021-05-19 12:04:08	\N	nextbrain technologies	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
rajini	\N	rajinirgowda20@gmail.com	\N	$2y$10$5Pkrn.bnjnwqj3YiaLsDzOXBQ2G8uBSKui2mwpBXnbjL42Eb34d9K	\N	303	\N	9sqlTtwb3BvOvTXvGDTJ1fkwV6TokX9UISlj	0	3CFym5dDo65v	1	+919686555989		\N	gowda	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-05-26 06:34:55	2021-05-26 06:35:00	\N	\N	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9686555989	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	bahgfd@gmail.com	59.jpg	$2y$10$fIPtM1ra/rBOS2jCmHvlHu.8jnGJbIEqJL8y8vCuTzfHvnnGdBd7O	\N	59	\N	a606a6fc95895c40c6e0022d43cea39ea2771f04	0	qBgrmrl6F2bZ	1	9876543210	M	\N	\N	\N	\N	1	01/08/1998	\N	\N	\N	\N	\N	\N	2021-03-05 11:32:36	2021-03-05 19:23:43	9876543210		\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	facebook.com	twitter.com	linkedin.com	2			\N	\N	\N	\N	\N	\N	\N	\N
ganeshios	\N	mohan@getnada.com	\N	$2y$10$l8cE8ofJtwfY7hdNMLm6zOAqTS435hv9t1nzWsdv3QvMr0fG7w6V.	\N	35	\N	h0HbQPn8XNEqxxzbdiyX8yV3Pcltpc0q5zz9	1		1	\N		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	A3400BF4-E1B9-4DC6-AF24-805539039A8D	\N	2	2020-12-29 09:32:37	2021-04-01 08:14:35	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	2000	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	daf64b1c848d9b4ab4e0fdf72cba7e1d0e0e06f4	482389179_LOCAL_35	\N	\N	\N
Test	\N	kikaj@getnada.com	\N	$2y$10$y8TRWxc/3uTC927FkEsEyuyEFURGLd69E6qu70igDGb9ItKn0PAQa	\N	293	\N	9hyBuHzffl5D3a15aSF4BsRgJHidJ0VSN8Pb	1	O70UkCFQ	1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-05-08 08:53:04	2021-05-08 08:53:17	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	12.9835	12.9835	\N	\N	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
rajini	\N	rajinirgowda20@gmail.com	\N	$2y$10$o8myT8hX1EswidEji2scWe2z4kdg6j3vXQaRyrZ5rtOrWplqnmr/u	\N	304	\N	xDujCLzTx4GJoLUkyIvfp2zW2Dtoyjq8Y8Dp	0	jjjndwkzvM9s	1	+919686555989		\N	gowda	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-05-26 06:37:30	2021-05-26 06:37:30	\N	\N	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9686555989	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ganesh	\N	pganeshkumarece@gmail.com	44.jpg	$2y$10$pZ.ejR46vUTTSKTwZGbi8.YrBSqEiZnPCoVAQcnfS0EEIs7p8OVSm	\N	44	\N	VRugJJo9jEqOnea94ZuLkildK8KFT35WFRYK	1		1	+919080942698		\N	\N	\N	\N	\N	01/20/1989	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	58504E95-0E7C-4C58-A88C-EC7FAE364C64	\N	2	2021-02-26 06:53:03	2021-04-22 12:05:13	\N	25 Hill St, Ferndale, Randburg, 2194, South Africa	\N	0	\N	\N	1	\N	3	-26.09212359999999	27.9999539	\N	44.jpg	58129	+91	9080942698	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
kalai	\N	kalai.kds@gmail.com	\N	$2y$10$/16u6uAS5rEX9AMnEHrlsOcBRR3wROruJhIFKEh38Dl3KM/xwkEYy	\N	43	\N	eVnN6ISjOAVgTWSsndFtzun8NU5g4wRGFKwX	0	UxN2FMcz9tPX	1	+919344621095		\N	\N	\N	\N	\N	\N	fPDAx5WtSjOPXVi5wR-VGk:APA91bHo7VtNSxEy6OiU_vzbPHPYskR6zC7mUrZ5a79ETm8JBdY-CKYFdAkLPqO1XTxiOQobhRfPiQuV-5N-dYaczOLfgg3WBWHpCt3nCGVqYBrAzuzUdGHIIN8b5c_sVtZoR98charN	\N	\N	944a4f55df12e301	\N	2	2021-02-26 05:57:25	2021-02-26 05:57:30	\N	#44, 2nd floor, 1st cross, 2nd main, Prasanth extension, Whitefield, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	43.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Samsung Android	\N	samsungnbtech@gmail.com		\N	\N	237	\N	ced3d1cc676c5e45e622ed19e7038c282f0b2187	1	\N	1	\N			Samsung	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-04-18 04:41:32	2021-04-18 04:41:34	\N	\N	\N	0	114459331970349020598	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Saranraj	\N	saran@nextbraintech.com	\N	$2y$10$o5lPw/JQ7t.ftcJQ5i4kRudTVVzrte92Hw3KPu347Slr6aq1R4Mfy	\N	202	\N	Xgs2NyLZzIcCLYMuq2Sa2IDWsyyi50vyQhyN	1		1	+919952493995		\N	\N	\N	\N	\N	10-04-1998	elvScIMJQ4yQ3_WhUTJEiI:APA91bFEcBbPrjJLepjuSkHxXis833MR5oDQBWqCT8oOYtq0zozwb4QG0eLR0JaaIvEdXmbT0mhjWmwpjWMIwy5zth61Q6p9xzGFy5lFEymhNJ3C3fCNC9eEE83NC3GAH6J3lF220X4k	\N	\N	ab0bf9b36d17703a	\N	2	2021-04-10 05:08:35	2021-04-10 05:10:50	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	202.jpg	1000	+91	9952493995	\N	\N	\N	\N	\N	\N	\N	\N	\N	752046f07fcd844ed467178280cf26ba5abf4f3c	1240414003_LOCAL_202	\N	\N	\N
Test	\N	testdev@getnada.com	238.jpg	$2y$10$NuLhtVYjc7qu/navUZNIsORfUFTMzc0qu7fYxs3GhrqZ.DqhSmIca	\N	238	\N	A1EragUL5vAPUn0xpDW1Y0hznwAW18fRJ5LD	0	c43ZlC0hl3cU	1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-04-19 10:08:55	2021-04-19 10:09:01	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	238.jpg	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
rasi k	\N	roh@getnada.com	\N	$2y$10$3TXShb/J3F9kr3ud13R99OA1kAzZZQKaB87hgkqN8nL0E5/KCMZTm	\N	252	\N	1CORam3vVb4d7EDyJgNxC19WNpc6uHN8CMSK	0	WOjQoHS0cSdE	1	+919606169056		\N	\N	\N	\N	\N	04/21/2003	fp6TdjLTQ1Sf8sMz-qTlfH:APA91bHBplZMUTf6xx6Y2R_SCEugXCcjudE1L-XldoqF5_lbShEu-6haoY4ddeTjmW_UaEuIg7i2ZM5D4-s5gZlMSZWymCwyNRU1tGi8iDKzMI9Mdh3zbRERkarZz-3vcM2ZiXdaf06W	\N	\N	970cd1012a2ca89c	\N	2	2021-04-20 07:00:06	2021-04-20 07:00:12	\N	nextbrain technologies	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ridhwaan	\N	rkhan@tpcsa.co.za	\N	$2y$10$.8v9sY.tZpZWLzbyk8Dzmeht1umGmtBfGj2yvjZvGsRpGUU4fWj92	\N	281	\N	zNkswLLUpRcuKZBVa4kAnpS5ZR9Mb8H5rtKo	1		1	+270843322786		\N	\N	\N	\N	\N	01/17/1980	dda26OH-QK6KMU9GlDpUo7:APA91bFT6RnXaXYF8edXfCBscbgJ3u28tqTlvUD7LPZdDvLr5tfgBnyaZu08E7zCph1udwgCV0cgHzVy0_5dnEyf8C0HDGr-bpkDxxUkmawS0s2Uuzkpr6nhFCVOsmVvLzjGfp6zqSI1	\N	\N	457ee686a8430efd	\N	2	2021-04-25 04:03:10	2021-04-25 04:14:15	\N	13 Havenwood Place	\N	0	\N	\N	1	\N	3	-29.7926451	-29.7926451	\N	\N	0	+27	0843322786	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
hshsg	\N	hshsgsgs@gmail.com	\N	$2y$10$/xSs9FTxqErKNvZgAnm3fekW4o5aaSvtgYNnSHJ3FFfE3pPtwVhva	\N	38	\N	C0ctpatggBWNIG0UMxLdEmSca0Kxw8Eh5bl4	0	aGlX58iDyIdj	1	+918652369845	M	\N	\N	\N	\N	\N	\N	f05wNgt6RPy2_atUZnIhVq:APA91bGJByGFbiNd0xrN64lylBrzwbUGxVyTDix6hdOwWYLo19ADcHf435PAhcAu-uK7qU9fcXivXPusqx1kLuqf-dPu413b6pekyYPC7PS_z2DIIWx03tkWCi4U2xParJ2Exkp1SoL7	\N	\N	944a4f55df12e301	\N	2	2021-02-08 06:01:56	2021-03-02 13:55:22	8652369845	45, 1st Cross Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	38.jpg	0	+91					1	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
vvdvdv	\N	hshsbdh@gmail.com	\N	$2y$10$qbBhASuBdBY7J3pukK61X.BjB.kD8Opmob8V/.2uiHEXa7TE6tDZ2	\N	47	\N	ktjiZ21SD9vr8KuyvgNdhVlWLYNPgVqk7Bz2	0	KMTsRYYId6MI	2	+916589635896		\N	\N	\N	\N	\N	\N	fPDAx5WtSjOPXVi5wR-VGk:APA91bHo7VtNSxEy6OiU_vzbPHPYskR6zC7mUrZ5a79ETm8JBdY-CKYFdAkLPqO1XTxiOQobhRfPiQuV-5N-dYaczOLfgg3WBWHpCt3nCGVqYBrAzuzUdGHIIN8b5c_sVtZoR98charN	\N	\N	944a4f55df12e301	\N	2	2021-02-27 07:20:59	2021-03-03 10:49:53	\N	#44, 2nd floor, 1st cross, 2nd main, Prasanth extension, Whitefield, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	2021-03-03 10:49:53	47.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	naqupupib@getnada.com	\N	$2y$10$h/NYLZa.3y6zRPm1yDNq6.X2IWGwMOLK9r.fejJYkiWg6JI1H0kLW	\N	250	\N	w3ZWdYBy8SNCRGO88h6aq7A8SSB46VJcBQwc	0	mPMRTYK53IHa	1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-04-20 06:50:47	2021-04-20 06:50:52	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	admin@test.com	\N	\N	\N	51	\N	55d9c68144d575c5d68a0630ce12b6765bb16ad1	0	\N	2	0987 654 3210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-03 12:39:15	2021-03-03 12:43:43	\N		\N	1	\N	\N	1	\N	3	\N	\N	2021-03-03 12:43:43	\N	0	\N	\N				\N			\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	km@nextbraintech.com	\N	\N	\N	52	\N	903b0c02c26369e22af86c67149a2aa1f056b6d4	1	\N	2	0987 654 3210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-03 12:41:02	2021-03-03 12:43:40	\N		\N	1	\N	\N	1	\N	3	\N	\N	2021-03-03 12:43:40	\N	0	\N	\N				\N			\N	\N	\N	\N	\N	\N	\N	\N
10bucksonly	\N	mani@10bucksonly.com	\N	\N	\N	53	\N	1d30235a0268c70f716e918082e12c72392030c1	1	BhMpcjJCEG1m	2	9876543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-03 12:52:48	2021-03-03 12:58:01	\N	Bangalore, India	\N	1	\N	\N	1	\N	1	\N	\N	2021-03-03 12:58:01	\N	0	\N	\N				\N		<p>Admin</p>	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	ayauu@gmail.com	\N	$2y$10$zLMIwB78RUkzrMLnIScaA.ZOVdv9PuN9ftmzen7PZDPsFPTv7XxAm	\N	54	\N	4ff3e2e42746b7f26c8a035e0188c3bff5d874c5	1	P1nurfX9aBhu	1	9876543210	M	\N	\N	\N	\N	\N	05/12/2005	\N	\N	\N	\N	\N	\N	2021-03-05 10:46:34	2021-03-05 10:46:34	\N		\N	1	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	facebook.com	twitter.com	linkedin.com	2			\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	w2wqqqq@gmail.com	\N	$2y$10$iN0wFM3/5woysnnmGuS8xuj1UKt7ZPOg.hnuRIC5UlOxW48.ZNn1m	\N	56	\N	aa99e0311ef983abc21cfdff54595873a36cf703	0	BBBhli6CjqPP	1	9876543210	M	\N	\N	\N	\N	\N	05/14/1990	\N	\N	\N	\N	\N	\N	2021-03-05 11:03:40	2021-03-05 11:03:40	\N		\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N				2			\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	qwettqwe@gmail.com	\N	$2y$10$jlYJnn5WYujYR/.vwmmKN.hHiVjydwJEWAxC5FWoizjflRxUTZYKO	\N	60	\N	56af8b98e48636face4e1c7c6ba61b86a6681f7f	0	dqgZDNySFoXs	2	9876543210	M	\N	\N	\N	\N	\N	01/08/1998	\N	\N	\N	\N	\N	\N	2021-03-05 11:36:30	2021-03-05 11:38:22	\N		\N	0	\N	\N	1	\N	3	\N	\N	2021-03-05 11:38:22	\N	0	\N	\N	facebook.com	twitter.com	linkedin.com	2			\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	testqq@gmail.com	\N	$2y$10$Iw4jRgVcd6AAJwr4ze90weKIb5sAIHsjd/ezayHlqgvR5HfeAwWjq	\N	61	\N	01037d8a9cded914ee373007d1c112e83396bbc0	1	9VQ1x0SS1eCB	2	9876543210	M	\N	\N	\N	\N	\N	05/14/1990	\N	\N	\N	\N	\N	\N	2021-03-05 11:46:06	2021-03-05 11:46:16	\N		\N	1	\N	\N	1	\N	3	\N	\N	2021-03-05 11:46:16	\N	0	\N	\N	facebook.com	twitter.com	linkedin.com	2			\N	\N	\N	\N	\N	\N	\N	\N
10bucksonly	\N	admin@10bucksonly.com	48.jpeg	$2y$10$PQIRDD4ayht8qSOat5lOJeSs7frPpHfgv3iVuIO19gl/AZgMBnOoy	\N	48	\N	6fc6984496a6d60365db5e6da819f64959c672ca	0	9EkQYcFJTHxs	2	9000090000	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-03 12:28:18	2021-03-03 13:45:27	\N	Bangalore, India	\N	0	\N	\N	1	\N	1	\N	\N	2021-03-03 13:45:27	\N	0	\N	\N				\N		<p>Admin - 10bucksonly</p>	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	test@getnada.com	64.jpg	$2y$10$EuR2BipWgV9Am0VdWSdjx..O6VEyrKPKdFQxbIJdapCTIAkY63H9e	\N	64	\N	8ff9b4c1311d015456611c16bc99c6c89b7717a2	1	rvxGFg09eYJ8	1	9876543210	M	\N	\N	\N	\N	1	02/09/2000	\N	\N	\N	\N	\N	\N	2021-03-05 14:07:56	2021-03-08 10:52:40	9876543210		\N	1	\N	\N	1	\N	3	\N	\N	\N	64.jpg	0	\N	\N	facebook.com	twitter.com	linkedin.com	2			\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	seshgw@getnada.com	\N	$2y$10$eqhh.ZbwVEwQWMj2Nj8mJOZUa14FYrtL9.hfe/hqDWrVtGw55VsWi	\N	67	\N	7073150471411614090f51fc5cc5cebd72b254d4	0	Vcl1GlV4DQ6h	1	9876543210	M	\N	\N	\N	\N	\N	08/02/1990	\N	\N	\N	\N	\N	\N	2021-03-08 11:38:53	2021-03-08 11:38:53	\N		\N	0	\N	\N	1	\N	3	\N	\N	\N	67.jpg	0	\N	\N	facebook.com	twitter.com	linkedin.com	2	Light Foundation	\N		\N	\N	\N	\N	\N	\N	\N
zunaid 	\N	zunaid@connectivdigital.co.za	\N	$2y$10$G0qVgOUBNPvo/HJfx9y46./8eUxJRA66CBV4.ummF.0rEDLX9MiWK	\N	170	\N	JTOVwYxYNXvUYPQMiKLCY60ssI6zsqjehk4Z	0	gC6Muv138Z4d	1	+270795004075		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-02 13:30:17	2021-04-02 13:30:17	\N	72 Mazisi Kunene Rd, Bulwer, Berea, 4083, South Africa	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
rajini	\N	rajinirgowda20@gmail.com	\N	$2y$10$poLsdgWt8uEyuFF.WuOm2OJCOj.akiz7cLYov7lKmdyv3hFc9T69a	\N	305	\N	k9tOPS1fFBDtWyMEA62gBKHXcVbWOeBEVDxK	0	3n6pLJ87Ya5c	1	+919686555989		\N	gowda	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-05-26 06:37:43	2021-05-26 06:37:43	\N	\N	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9686555989	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Garry_Schulist41	\N	linyca@getnada.com	\N	$2y$10$rTj0hzxSmCe1mWlBWzBDgeIAvq75SNSa8zAGLWCe40qMr2HYMiG6W	\N	294	\N	f6votrC8RxOQKyuf1b5nEX67WQqeBRcz3m9a	1		1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-05-10 07:54:10	2021-05-10 07:54:23	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	12.6484	12.6484	\N	\N	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ten bucks	\N	tenbucks@getnada.com	\N	$2y$10$gtRi64ji1M9ktVEuhI29T.zjowfvw9woLch1TxDGC2HD0UfZz/U8e	\N	207	\N	PsZni1psTl3tRaOMK9XgLSHYcrM7dI5ZpPfn	1		1	+919080942690		\N	\N	\N	\N	1	04/12/2021	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-12 05:32:47	2021-04-12 13:28:44	9080942690	46, 1st Cross Road, Prashanth Layout, Whitefield, Bengaluru, 560066, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	3000	+91	9080942690	\N	\N	\N	\N	\N	\N	\N	\N	\N	0b1d98c21f6bd483d1f03d1cc117ad30f1e0e681	985162225_LOCAL_207	\N	\N	\N
Test Donor	\N	testdonor@getnada.com	282.jpg	$2y$10$N7wp5SHAtZdLbrM1yy4uselvyD14pU6kVDCLtU7jSe2wBHiWDnH4u	\N	282	\N	Yy0AxTqTF7RTY8C8jyc6zcS1chnttrb4Ied0	1		1	+279876543210		\N	\N	\N	\N	\N	04/26/2003	e8tk9A95TFmpHKkBJQdSKp:APA91bFtmC3DIXQ7xXXfLCumkpKMoRzDoZfZ0h-ynh8WiSN9NTIhCAN2rlduYxaOSiOkEd-5GGCCCyJPVvR_Zrog1GyKH6E4fMDkjHi9zYkT6vf4URgbdxKXBjXmhfniytYti0JFZPpP	\N	\N	606ba08fb7fe7f82	\N	2	2021-04-26 01:40:46	2021-05-10 07:40:24	\N	South Africa	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	9876543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	slkgsfg@nextbraintech.com	\N	$2y$10$6ejvJVITU6ziSgj2j35PwuSX2uUVEFMDmB0Y3Za7M5ZlccsOAKyeG	\N	62	\N	c0bd786b85fc281997a76b8664c1c531388a393a	1	1r4Z2xL86iQR	0	09876543210	M	\N	\N	\N	\N	\N	10/30/1996	\N	\N	\N	\N	\N	\N	2021-03-05 12:02:14	2021-03-15 13:54:49	09876543210	Prasanth Extension, Bangalore, India	\N	0	\N	\N	1	\N	1	\N	\N	2021-03-15 13:54:49	\N	0	\N	\N	facebook.com	twitter.com	linkedin.com	4		<p>10BucksOnly - Admin</p>	\N	\N	\N	\N	\N	\N	\N	\N
truveni nettem	\N	t@getnada.com	66.jpg	$2y$10$eoAefi6qsRVBAj3cXvJabu6TDNXZoLv/HW1j8qwnUc9vjLOeH1iTe	\N	66	\N	2yTScztKDbeHN8jHBj1y3enmgicV4vHSdpAf	1	0NishwWbrIo7	1	+916361258389	M	\N	\N	\N	\N	1	\N	cLFtRBXIR56jy0o-Uf6NeI:APA91bFqt8QDRX7tXQPGMLSg5ZHLXy_uSSfm6OAcIa9jhS9WmqkQwQ4cRfqDlEzOU8NZGkCih5sBDs7UTxMm82Wui-pEUKtcVLQMy4xocfU3KNWbvROCRDOSGBUvs3W8sh-dN16NGCNt	\N	\N	c3a84090f1a657ff	\N	2	2021-03-05 11:52:55	2021-03-26 18:43:54	6361258389	Outer Ring Rd, Marathahalli, Bengaluru, Karnataka 560037, India	\N	1	\N	\N	1	\N	3	\N	\N	\N	66.jpg	0	+91		facebook.com	twitter.com	linkedin.com	2	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
10Bucks only	\N	10bucksonly@getnada.com	70.png	$2y$10$.oEF/lUrEKC5xzUaIJb4JObymZMebP9A9f9YGGPqUh2S8OUBug5Se	\N	70	\N	4c688d6fbfd88fc13c06f38d516aa53c3d7045c2	1	4rlnUiVGyJ5x	1	9876543210	M	10Bucks	only	\N	\N	1	02/15/2021	\N	\N	\N	\N	\N	\N	2021-03-08 18:34:16	2021-03-27 15:49:21	9876543210	Bangalore, India	\N	0	\N	\N	1	\N	1	\N	\N	2021-03-27 15:49:21	\N	0	\N	\N	facebook.com	twitter.com	linkedin.com	4		\N	https://www.10bucksonly.com	\N	\N	\N	\N	\N	\N	\N
Test	\N	asda@getnada.com	\N	$2y$10$C3decD/gI78r/dZCokl4Ee.Quq8eBxIC4Z.9Sp8KlKLUDRL7r9eWK	\N	178	\N	IkDA1sXkgaDqdyH6sp3TWEgGiiJ3wQEBLSDO	0	jqHfyZjiRFcb	1	+9198769543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-04-06 10:09:47	2021-04-06 10:09:53	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	178.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
r	\N	rameshnexttest@gmail.com	\N	$2y$10$lr8fArHxSAA7G9knUCS.p.R5kXVg5mYDxZd5TFDH.LqT9vEvhjdIS	\N	193	\N	RiwubuWWuslOozdGJSRnVpdfntxELgTn41zv	0	5Vc42cek	1	+919606169056		\N	\N	\N	\N	\N	\N	cn1SK7ZMSyGjXsc9REbi-5:APA91bGhjQmqUMQhWszpOVLVw7xPhM6P5iDrvKvwcMgmDYI0Eo7w8olfIvlm9rHi3dtoAMavpt8A9u6mwF2ZjLEW6pX-m2qiR54dmGMPmLJx2r46TsjbObZkhjF0PKQvm37v6kEnKxqI	\N	\N	970cd1012a2ca89c	\N	2	2021-04-09 06:57:44	2021-04-09 06:57:50	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	193.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Testusers	\N	tu@getnada.com	199.jpg	$2y$10$DSjGxKBA82mzidlIdg1lH.1d9Lku393fMQe1oK/NfWUnE0zmBk.Zi	\N	199	\N	8ab5d1cad2b9bb7511b7851b703cc564634c1421	1	C6QjdLeP	1	33434334		\N	\N	\N	\N	1	04/16/2021	\N	\N	\N	\N	\N	1	2021-04-09 16:12:56	2021-04-09 16:21:17	33434334	fdfffgfg	\N	0	\N	\N	1	\N	3	\N	\N	\N	199.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	0c5bfe804d0b9b23edfa137db84f95f65d4981e6	1171131825_LOCAL_199	\N	\N	\N
Kokila Ben	\N	kokilaben@getnada.com	198.png	$2y$10$krfWfFnluHx18MHBX84YtOpVxcmmWgIt/lSh5uU27JLuqhqf4McjO	\N	198	\N	ed12d61865dd00e7171fc00ef6eb516bc3d30d92	1	mtL3RtSobeHv	1	8767877		\N	\N	\N	\N	\N	04/09/2021	\N	\N	\N	\N	\N	1	2021-04-09 15:57:36	2021-04-09 15:57:38	\N	test	\N	0	\N	\N	1	\N	3	\N	\N	\N	198.png	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
\N	\N	\N		\N	\N	215	\N	a97c0e47fa3f72b7ba4661d4b2fec4e0fe89c837	1	\N	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-14 12:37:58	2021-04-14 12:37:58	\N	\N	\N	0	\N	\N	5	832723760338-pnu8dfu4amp2oelscnqh8t3iekpv4dar.apps.googleusercontent.com	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Krishnakumar Devendiran	\N	dkrishnakumarmech@gmail.com	\N	\N	\N	217	\N	7e9004c4e6e298670a20d4f3e92368ac747e9a5e	1	\N	1	\N			Krishnakumar	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-14 14:57:02	2021-04-14 14:57:02	\N	\N	\N	0	null	\N	1	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
kavya	\N	kavya@mailinator.com	\N	$2y$10$CULSaUySKa5dapQ3W7NhOu/eYFlWpGTi.Ik7C7gtF38DhHYrGpeO6	\N	71	\N	Ee1r66h4z7aVidkaO0DWEfyPJGQXP1fSt71G	0	apL3ELw3jh2h	1	+919600555668		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	02A9631E-861C-40BB-8E21-1FB3054B55FE	\N	2	2021-03-09 08:17:25	2021-03-09 08:17:32	\N	41, 1st Cross Road, Prashanth Layout, Whitefield, Bengaluru, 560066, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
yashu 	\N	janu@getnada.com	\N	$2y$10$wk3kT7ZmDwBlxbjxAXLndu2S4aiFwXEBuwo9X7j8yculaH.iSxRmC	\N	72	\N	yJN6tqXBsMKMnv3BHvQdJq8luERHNz6LFGsC	0	4N3lkyUvm4l8	1	+919852036146		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	02A9631E-861C-40BB-8E21-1FB3054B55FE	\N	2	2021-03-09 10:46:16	2021-03-09 10:46:22	\N	North Atlantic Ocean	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
rfff	\N	hj@getnada.com	\N	$2y$10$9w5qNfaBHMDVEdQOMIcPi.3bhgjcTtPxxL0pG5fF.YHcg/w7oCse.	\N	79	\N	AC1h7dcaCpMgErlu6AeFLyEnoYkGvvtTquqV	0	6Ycx8apTrRS9	1	+918608791165		\N	\N	\N	\N	\N	\N	eB0hUYWhTZOE6H0jbaqf2d:APA91bHJoW6JBGF6nzGJ7tQNfj3lyAP6Ct3uU_KdbiLiLcJY8T9F9X-i68BrXkC6QPygkb1ecUoJw1jdPr9kAOLlnX2qFm52QFC8kA4kxAMd8S6Ju8wA64gdUn8yjcxXkRtB7qgQ8qey	\N	\N	970cd1012a2ca89c	\N	2	2021-03-12 11:25:47	2021-03-12 11:25:54	\N	Unnamed Road, Pandithapuram, Andhra Pradesh 522403, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	79.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test User	\N	org@getnada.com	167.jpg	$2y$10$uXxc56nKUC2tVx9w9xN1OOWLbBOzks4YzkJDByVPQVVGl3e2Ib7V2	\N	167	\N	2cb246927cd85740e8a0782627f7d9c1dd4c43b0	1		1	9876543210		\N	\N	\N	\N	\N	02/08/2006	\N	\N	\N	\N	\N	1	2021-04-01 18:54:39	2021-04-01 13:26:31	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	167.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	269714a2db5cee3b047f0427018e89bcad2a3537	675734296_LOCAL_167	\N	\N	\N
Ramesh	\N	pp@getnada.com	\N	$2y$10$fJNZ0v.tp0o8Q0A4ACZ4v.Srnmc.I1DCBaCoqKKcf6Q7f92WhvQN.	\N	239	\N	YqJ7yCParRoS0heJeQjSM3rDeVW2Oudt1olS	0	5lL65Cx3uwj0	1	+919606169056		\N	\N	\N	\N	\N	04/18/2003	\N	C349EB38-B6D4-454B-8AD1-CA32837FF69A	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-19 12:39:53	2021-04-19 12:39:58	\N	Channasandra Main Road, Maithri Layout, Kadugodi, Bengaluru, 560067, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
null	\N	sophiawalton.16529@gmail.com		\N	\N	317	\N	d87e583f7dbfd6329cdf57cd31b4b5c1efbdf10f	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:20:01	2022-09-13 10:20:01	\N	\N	\N	0	112539481850350999705	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
rhjfg	\N	fjvrujgfg@gmail.con	\N	$2y$10$NMDSAcipunNT6nclNDeHFeuj4cFICBkRGulWaeNRe1JqAB893dsL.	\N	247	\N	CASE2VQ3JwW9XWuw93wiUYSPIzR60Lbuh8Nl	0	KdRgyllWieic	1	+918456985698		\N	\N	\N	\N	\N	04/16/2003	eAC6WDwsTEmRdFAyS8gRap:APA91bH2UoHJW1igfiaxqh4QCTHy4nxVVHDKDo5KQZUc1HNWTxmlXz1GlKHnYc6xWWDj0z9bAFPxFJJAFbvINa__MNX88rktOfYa5AeDQOZYmD2mi77aCcAYlrbFeBtlVgC6_kSgvtEW	\N	\N	944a4f55df12e301	\N	2	2021-04-20 06:04:33	2021-04-20 06:04:37	\N	fjjfg	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	8456985698	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Alice_Jenkins	\N	vecydu@getnada.com	\N	$2y$10$/CqfWmIPFoUz3untkq/yMOq0iUYPlFsG5Za37nYrIBxu8zaaqpp8W	\N	295	\N	2LMnDMILKTS5gIZzIeZB25AqPmuMFx3qksT1	1		1	+91961-590-2763	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-05-10 07:59:10	2021-05-10 08:00:20	\N	South Evaport	\N	0	\N	\N	1	\N	3	-69.9902	-69.9902	\N	\N	0	+91	961-590-2763	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
rajini	\N	rajinirgowda20@gmail.com	\N	$2y$10$XSb1nBfi24b2DTE/7sYXbOGca7WBz4GNcnMLTUCPizR6gm9pdEIJ2	\N	306	\N	JtoLfWQOyqUfj3W6E1JTeis69bj96KhYIKyk	0	B17wO9NWTGqC	1	+919686555989		\N	gowda	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-05-26 06:40:01	2021-05-26 06:40:08	\N	\N	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9686555989	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ramesh	\N	ff@getnada.com	\N	$2y$10$4ZV0O.Ml3fFipnC9h5CT9eVZaY/hn1oMLn4w353qx0IkjRegVqYzy	\N	240	\N	MtfPYHU7h0NlZJAFkxCyQlcPOI467SH8v621	0	QaqpSh49oWnz	1	+919606169056		\N	\N	\N	\N	\N	04/19/1932	ea2qXDtdQuqFJu42B36Y6A:APA91bFxGAL6riD9vCV0Knicitky5utcWI8UFLoC6R-fvFDlGyThSKMGAqbD_CKHvJb7py3Vjhu91shIFs-ItNiO3-l0GC2zh4beg3Mq_x6vtJnzkF8_V3l-kJB-fzltzEmR7uTdhpHi	\N	\N	970cd1012a2ca89c	\N	2	2021-04-19 12:41:58	2021-04-19 12:42:04	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	240.jpg	0	+91	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	user12@getnada.com	5.jpg	$2y$10$zkbKoer/M484T183zDdDdOB4mvnhIwsFXAgDqCIfZh0BKUhr/sQFG	\N	5	\N	zjMtg58cKuFh3Yp9CB8DIKifAJG2NLYYxf6t	0	Rw79Z3GlrMH4	2	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-11 05:30:16	2020-12-11 11:22:50	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	2020-12-11 11:22:50	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	seethalakshmi.da@gmail.com	\N	$2y$10$0F0pDGGY85e6cX9qTCnqa.M7YX2IoBUcqA3dUsvQJJNxNYz3Z35YK	\N	3	\N	eHghAJCflDZ2ysAQn7L4Y7Ntx1Vw0XCRKF6I	1	odQsdv9S	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2020-12-10 09:16:05	2020-12-10 09:16:10	\N	prashanth extension,whitefield,bengalore	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	seet8956@getnada.com	\N	$2y$10$v2AtK5S2r7DNG5E99p4Jn.Tdc1cV/3LpwrvcjxHhaNsuvzn1g/qSO	\N	13	\N	WNjGj9TYWFPcLt1moBLvKNaQfYJM8tBoGmT6	0	Ij4LrOgZW0AN	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 09:51:30	2020-12-14 09:51:30	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	se6@getnada.com	\N	$2y$10$0X6OBxOdRFcN/MfOkqkKyOY79pYlRA5OIjZ.FFGFarw1MbJUaqo4y	\N	14	\N	cW8NczIZGmvJMG5DNtnyPgWHBCZdkCYUMFBT	0	xNh2ZR0yjLNO	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 09:52:22	2020-12-14 09:52:22	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	siokk@getnada.com	\N	$2y$10$W7Qlah1MJ5GqF3Z59qU.HO33RwX1MHtIjKDN5Vtdnh9Df49VbbFP2	\N	15	\N	H2L9BS7RQ86KX3uVVcuxQpBoC4e8QBv4xSU5	0	qM1qMRp6qOGM	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 09:54:50	2020-12-14 09:54:50	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	siiikk@getnada.com	\N	$2y$10$Ndb79nz0SB2oWkzkhlP8tepfBZFDkMWF5kZUNAtP7dJuJVsIDvgD6	\N	16	\N	c99W7paXRZKN5UvpaSxG3WgAHiYz4hBHvqsJ	0	WmbeBONvEyXp	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 10:03:10	2020-12-14 10:03:10	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	user123@getnada.com	\N	$2y$10$mGo68QxR9AIu7rp1a6SULehSbj7tUSpHGecwN7Y/i9R/llWCuHTka	\N	6	\N	xXj1QWVM1WHw4tZ1cQEKkzWXBREgDNqJEaFw	0	gmBSOb5YJ2xP	2	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2020-12-11 05:31:18	2020-12-11 11:22:35	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	2020-12-11 11:22:35	6.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	seetha325@getnada.com	\N	$2y$10$mtB4ofIa5hLeYC76mmUEBOvLGAcvf6yaBbooBPLhrXt7s5lugkLaq	\N	8	\N	mhAvagCuxEyChTFMCnwF2RnXW9kYdPYSyj4M	0	1qXZe6lKUMOV	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 08:46:30	2020-12-14 08:46:30	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	seetha456@getnada.com	\N	$2y$10$AKg9VRGtDyiFLaknsElE6uzM9ID3KXgp.r9ea9Ua9i96Kb8p7Xf6e	\N	9	\N	gSyywQUUzALzWGcY8JiudF8Ja3jU3HPLm2NE	0	M0t04F0pUrAa	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 08:55:23	2020-12-14 08:55:23	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	siokuuuk@getnada.com	\N	$2y$10$AJrkkpz/4e39A4D07BuUOuMjZWjTSS/Ienc4QFxmC7UlrdYgom.oC	\N	17	\N	m3SY3EuXjpBu0oo0PkjOyuUFPAMqNUfsXV9F	0	O1bShJCqfGtc	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2020-12-14 10:32:17	2020-12-14 10:32:22	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	17.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	testusera@getnada.com	\N	$2y$10$xf9Ou51AdyGyP2t8H2aS5eXzHvmkBfPFceLeNEy9dOYrrakOHamhu	\N	22	\N	qUyDCDEhETS8jM6aIy0kKJVqB4cveTFGbQEd	0	fEllQUkJJmnb	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 12:01:10	2020-12-14 12:01:10	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	siokuuukttt@getnada.com	\N	$2y$10$FZ34LbsUg0dkI.2kNeoOee9nNlggthCSI5fRgwS5aRHj2MFq/BqVK	\N	18	\N	WIEfhlGNgfRN4jC75WvpESIj9T7oDj53yQXd	0	qQw9BurB1Auz	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2020-12-14 11:04:20	2020-12-14 11:04:24	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	C:\\wamp64\\www\\10bucksonly_new/public//assets/admin/base/images/user/idproof/18.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	testuser@getnada.com	\N	$2y$10$ZRk7QQBFWkhUVdJKwxGKeO226cXWcTrEYf9oPtlI8mLwFCdlQrHX.	\N	19	\N	K2mCUzZa2KLQafz43mSe8oqHrr3T4fa4WJQ6	0	DORfhS4lYNZS	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 11:56:57	2020-12-14 11:56:57	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	testusers@getnada.com	\N	$2y$10$qO3A5IpQuDpWi6yy0NfJfOIt.LNy6QGVyaU.lEXkmftOf4yL54t2S	\N	20	\N	ZvTn7KNR8I5Im0uXRaaS0EKgwCrvfGTa3bpI	0	OR1n1lrYJwI2	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 11:57:38	2020-12-14 11:57:38	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	usertest@getnada.com	\N	$2y$10$qSYrYnd1VOSmBcwdbAdmE.kyWdDioovtAOqwd42qVnxMVQx38TLhi	\N	23	\N	E0hOXYrwkKch6XRaJFvDtZTzhNnkBw99tItu	0	yk85WjzQEYhc	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 12:03:00	2020-12-14 12:03:00	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	usermail@getnada.com	24.jpg	$2y$10$VblmrPNP78ZGZ8eh1Ug3k.iITqkSVQj6/ts8nHgXVUospPC4wmCR6	\N	24	\N	3F41m7gdwZqWxMZm75zD5DKMRE2EKI2lvYLR	1	ssfIYA8qVdlJ	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2020-12-14 12:03:50	2020-12-14 12:03:55	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	24.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
vino	\N	vino@mailinator.com	\N	$2y$10$3eLOFTjNgf9la7MsABMq8.b5z2fxhkt5KI82KnpcALs7YZLwpcFGC	\N	25	\N	6oErKTymRINpIqGDw3wfP6AMz7gDTUhDsmUe	0	UXPm2OMc10tA	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2020-12-16 07:34:05	2020-12-16 07:34:10	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
vino	\N	vino2@mailinator.com	\N	$2y$10$FfYZOi4OZ1xQ/zHyP0k9GOmqd9OsvIvAJOjghgwIaqXS8RSwlFWCG	\N	26	\N	WI6Wt2myMZ01si4ENxWxaZnqJZ5bqQNPBGnR	0	wmwdvuXSLCFz	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-16 07:42:10	2020-12-16 07:42:10	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ramesh	\N	ramesh123@getnada.com	\N	$2y$10$lvCNQmpRqo3V9KdvjTWYgeuYXR4cJYWgB0/JbTYrtTyvmWwSX9mEy	\N	248	\N	NlnLAJGfImJPNz5FHwxrwBUlFDw29c2kSc6V	0	IZdtSMPqQdDJ	1	+27860879165		\N	\N	\N	\N	\N	04/20/1961	ea2qXDtdQuqFJu42B36Y6A:APA91bFxGAL6riD9vCV0Knicitky5utcWI8UFLoC6R-fvFDlGyThSKMGAqbD_CKHvJb7py3Vjhu91shIFs-ItNiO3-l0GC2zh4beg3Mq_x6vtJnzkF8_V3l-kJB-fzltzEmR7uTdhpHi	\N	\N	970cd1012a2ca89c	\N	2	2021-04-20 06:06:11	2021-04-20 06:06:15	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	860879165	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
	\N	rajinitest@mail.com		\N	\N	283	\N	536eb5592bb3cde94916314ad7f0efbd5e6fd8e2	1	\N	1	\N				\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-27 10:07:04	2021-04-27 10:07:05	\N	\N	\N	0	10836281820174883681	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
seetha	\N	seet96@getnada.com	12.jpg	$2y$10$iDewjoGDfDzVmuJgahriCO1wf05apypvHNCmvEZ.7rK5c6k6t0rHa	\N	12	\N	R05WMYOf0p0fr2l0Q87XMGCpdwy7qB4K2kPN	0	zXQD6lO3iY2L	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 09:48:14	2021-05-07 16:12:48	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Harold	\N	vopizur@getnada.com	\N	$2y$10$iDELJc4b96jKrvGIhMG8YeDZOqbv9Y6ASKZXkTKBt.F4hE7SJ5G92	\N	296	\N	n6mWfLrUILNcEOEcfgcrL0ZihJxazKMJ74Vc	1		1	+91886-652-3042	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-05-10 08:05:26	2021-05-10 08:05:57	\N	South Helenaview	\N	0	\N	\N	1	\N	3	-54.7529	-54.7529	\N	\N	0	+91	886-652-3042	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Karthick	\N	karthick@getnada.com	113.jpg	$2y$10$lIsUO/arbHZR.5UAgWXa/ezHEV8Vd6/weDh35N6B..1oKEJ.vsFfG	\N	113	\N	vHiqamlLcEBIeCMclnxhnX51gd4zppPtdnWf	1	Fb9khtDR	1	+279876543210	M	\N	M	\N	\N	1	01/01/2000	\N	\N	\N	\N	\N	2	2021-03-26 07:24:29	2021-06-09 09:34:22	98769543210	White Field, Bangalore, India	\N	0	\N	\N	1	\N	3	12.9835	77.7506	\N	113.jpg	960	+27	9876543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	5b5dcab1feb1997f009b43fac6f27cd027b27eda	2143371745_LOCAL_113	\N	\N	123
	\N	rajinitests@mail.com		\N	\N	284	\N	26a53234d734dbf4349663588305f71969acf928	1	\N	1	\N				\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-27 11:05:45	2021-04-27 11:37:42	\N	\N	\N	0	108362818201748836813	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Bilquis Hoosen	\N	bilquishoosen@gmail.com	\N	\N	\N	268	\N	a602da8ef4400a3333d215f8ea4fb2eaf690f1a8	1	\N	1	\N			Bilquis	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-22 03:31:51	2021-04-22 03:31:51	\N	\N	\N	0	111319227507336584782	\N	1	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
ramesh	\N	rrrr@getnada.com	\N	$2y$10$IMzewTyiLBdL8dWnyUPk.Od07Yfv6GBEIVSpRF3SeLEUiAMNEq1De	\N	194	\N	pkGCubELwDzjI8Xya9wmACx9ecwfSrqy9WYR	1		1	+919606169056		\N	\N	\N	\N	\N	\N	cn1SK7ZMSyGjXsc9REbi-5:APA91bGhjQmqUMQhWszpOVLVw7xPhM6P5iDrvKvwcMgmDYI0Eo7w8olfIvlm9rHi3dtoAMavpt8A9u6mwF2ZjLEW6pX-m2qiR54dmGMPmLJx2r46TsjbObZkhjF0PKQvm37v6kEnKxqI	\N	\N	970cd1012a2ca89c	\N	2	2021-04-09 07:28:42	2021-04-09 07:29:07	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	194.jpg	7030	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	f7012ede76ecec054dbb2d5c0f849fc7f6316602	531636290_LOCAL_194	\N	\N	\N
vino	\N	vino12@mailinator.com	\N	$2y$10$0A2UvkyEGouxDjrr3bzyleG6pBmFAL1ysAK7qTTZsR0v2PGIJqBwa	\N	27	\N	XM0GEnahvi7FYIVhOYx7ECoNkxWsiRY0zDI4	0	Sk5VGz9pW0xK	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-16 07:45:38	2020-12-16 07:45:38	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
vino	\N	vino123@mailinator.com	\N	$2y$10$ovS.MO./tLTnk6NzO6xP7OHTV7e/yGaTJPD1jPosxHgqh3vGiKCMy	\N	28	\N	gHlM942BG5trmYS6b7nhz3UtHUNxQ6sQ3LgI	0	nwDspkS50wkQ	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-16 07:48:57	2020-12-16 07:48:57	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
vino	\N	vino12345@mailinator.com	\N	$2y$10$2HZw6VQyomDscx64/8kU7OZ5Qw6p/stqzgDrc5xYfYANpSrFlsxs6	\N	29	\N	CdMv6ith4ZVazUKfJRw4MkUCMMtI9G5y5dXV	0	sOFt2W4Ku4NN	1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2020-12-16 08:02:59	2020-12-16 08:03:04	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	\N	29.jpeg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test User Manager	\N	admin@getnada.com	162.jpg	$2y$10$KsFSOAsi7sjA6X0kYjYOAeKEu7WPdZQWiFtOZao003rbA/VKIj9La	\N	162	\N	a4e634abc623e8675f4e4aed201050956033885d	0	3c3be91001b07a74b50c0caf4199463f574a8d07	1	+919876543210		\N	\N	\N	\N	1	2000/05/04	\N	\N	\N	\N	\N	1	2021-03-31 16:53:53	2021-03-31 16:53:54	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
RajiniGR	\N	rajini.r39@gmail.com	245.jpg	$2y$10$gbhr..nom32wW2j4mYdK3.E9PsfHAQ3dNnRZuE0nYo9RF0pAo3GuK	\N	245	\N	320c024305467bbaab206340b426411b656117e6	1	OBsDdxZO	1	+279738814246		\N	\N	\N	192.168.138.52	\N	04/01/2021	777cd541ef5ddc80	\N	\N	777cd541ef5ddc80	\N	2	2021-04-20 11:10:08	2021-04-26 15:27:19	\N	Cape Town, South Africa	\N	0	\N	\N	1	\N	3	-33.9248685	18.4240553	\N	\N	0	+27	9738814246	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	46	123456
Rajini	\N	rajini.g@nextbraintech.com	201.jpg	$2y$10$wgLSomFwL5cwTQQXedtiVu3B4t.vYOWWz3EBg1U8bLOchuSROrKZq	\N	201	\N	e82f377e14e81477c7c34df19870a3525256321a	1	6ODQ8jXE	1	+279735836457		\N	Ramaswamy Gowda	\N	192.168.1.26	\N	06/21/1990	f0ZTZxyoSn2phKQXhkVgYJ:APA91bEfHbSblXVUxgL6i0JjCsBkwsT_luaZTNjsKO5yAs-YBj2j8ecVWIvz0k2hA8VH-KgrST-z5hTIgllGkvbyGSfkJV53033SFAuGv5kGR8XKa44-BBzai2StslBgzre9wgiXUBNr	\N	\N	777cd541ef5ddc80	\N	2	2021-04-09 20:42:57	2021-05-17 15:27:56	\N	Southbroom, South Africa	\N	0	\N	\N	1	\N	3	-30.9331728	30.3060706	\N	\N	0	+27	9735836457	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	38	\N
	\N			\N	\N	219	\N	76418721e8002ba1683ac0f40a9a46b664766703	1	\N	1	\N				\N	\N	\N	\N	fATb4FZJDkO9hTnMuizGpj:APA91bFZ-WDSAZ0VLAZYz0UayePZpoP4twmU135uXrQ3vHqcN-Jg4HB6flxvAPo3vZC7bRZZSJdwaliE701mo8gjZ7vRxruV1DTEuNXYYNMZWI--2Tg482H9pNcsuZLY9m51AQaYHKT3	\N	\N		\N	2	2021-04-14 15:24:05	2021-04-14 15:24:06	\N	\N	\N	0	eyJhbGciOiJSUzI1NiIsImtpZCI6Ijc3NDU3MzIxOGM2ZjZhMmZlNTBlMjlhY2JjNjg2NDMyODYzZmM5YzMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDgzMTk1MzM0ODM0MTY0MjExODIiLCJlbWFpbCI6InBnYW5lc2hrdW1hcmVjZUBnbWFpbC5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXRfaGFzaCI6Imw5a3JrVmpRVHRmMTdyT2U5aGtvVkEiLCJub25jZSI6IllpY2M1bHFuMVBVSm9YOHpYMkhtNXlEX0ZKSUlOTkdaWUt1VVBFb1RMRFEiLCJuYW1lIjoiZ2FuZXNoIGt1bWFyIiwicGljdHVyZSI6Imh0dHBzOi8vbGg0Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8tTFZQQlh5cXNPeWcvQUFBQUFBQUFBQUkvQUFBQUFBQUFBQUEvQU1adXVjbk1fMERYM3YyM2QtQ05odk5mSkdBcUxvdWJlQS9zOTYtYy9waG90by5qcGciLCJnaXZlbl9uYW1lIjoiZ2FuZXNoIiwiZmFtaWx5X25hbWUiOiJrdW1hciIsImxvY2FsZSI6ImVuIiwiaWF0IjoxNjE4NDEzNDQ1LCJleHAiOjE2MTg0MTcwNDV9.m_2h9JErrxA1IXa66TzZXnZwH19tL9-cO9GTDV91wjNyfJdLtar8MJaQh2EeBRnVFGwSCzW3BF1kVzLQJDG8Sn0GCnF9wqcROtD5f4TwW4FL9UZxklU5v1GaXJ9LwLgp4uwv7tJRLRqOwoF2ECtTO9sYQIrfp07wvK8HNuqy5Bly9ywiH6d2KHOdNYUuQ6PusXYt14VRDFW0eryDpEvWNC3w8wTCY01jljDBvvGJPCuGZRhR9LXx8s9tln8AUJxw6CbodOwfhnWMuv4I5cdyJmiGU9tEHRrv-e02DwFap8iUsdQtywh51ax59cGqflDeh46TdLomUc0PYhblnKb1dw	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Ramesh	\N	rajinirole@getnada.com	233.png	$2y$10$ohbrKw5UunTtbkj0UFbP9.rYIPuktlJfczD/N7FcKDNbQ8881infa	\N	233	\N	e07e4ee69249d9ef64921dd7aa36e947ba5c0f8c	0	278e5b77e91f06b3e0886033ddbf9565dd955706	1	89999999	M	Ramesh	\N	\N	\N	1	08/18/2011	\N	\N	\N	\N	\N	1	2021-04-16 18:36:12	2021-04-17 18:11:08	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
seetha	\N	seetha.s@nextbraintech.com	\N	$2y$10$vul5SssXtfBTPlhT.kMIwubUKW/FW1nSUdROBFNCFdUK17lbyVtS6	\N	2	\N	KLbRDtbCKnF0aMiKyupsgBMDaPaYUx7WBf0j	0		1	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-10 09:10:46	2021-04-07 12:19:30	\N	prashanth extension,whitefield,bengalore	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
user	\N	usertesthh@getnada.com	\N	$2y$10$ezY360wFe/zV/i8308nH8e/qe1zWhPxo2cZf9CBmAdkA6FmK9f9W2	\N	37	\N	3OVIVrrkfBBJD0ynYvQZnE6Mom42GcGeqkhA	0	TdPEwwlWIhLb	1	+918756457890		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-02-08 06:01:08	2021-02-08 06:01:13	\N	prashant_extension	\N	0	\N	\N	1	\N	3	\N	\N	\N	37.png	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Vino	\N	vino@getnada.com	\N	$2y$10$36at69oMR1nYKccOfSrskOwLWP1qTXUN/8iSjmkAsTL3kpsVq3.HO	\N	34	\N	BkxPS8KU99TLuDzUirxOjBYsqXawa7cz9oGe	0	r1jaNOdGAJiS	1	\N		\N	\N	\N	\N	\N	\N	dUtg4cO2S22dDph-JSGD81:APA91bFvJNqkNpu7gGV9NtY_m3QEeEZUq33upyS0luK9fHJmOmATvDnwmtuRo1ouW0249Nko-A6Cbkn0LWWHfcYyDljHafVxVBN7IN0wde7woyfazjNjo_sVEQD8lvtAJsGQ3nskrOe4	\N	\N	7237174ae6b54a04	\N	2	2020-12-23 06:26:01	2020-12-23 06:26:06	\N	Unnamed Road, Mettupalayam, Tamil Nadu 641301, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	34.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Vino	\N	vino5@mailinator.com	\N	$2y$10$4xJ5jk9GgMI7ndTmdK0hiuAL9UGbMck.6270cXyMQZV936dhSjGgC	\N	31	\N	iW4UJY0RlSG4WWQRgA988fAapKDk3485fvt3	0	7hQzHthdwBmG	1	\N		\N	\N	\N	\N	\N	\N	dUtg4cO2S22dDph-JSGD81:APA91bFvJNqkNpu7gGV9NtY_m3QEeEZUq33upyS0luK9fHJmOmATvDnwmtuRo1ouW0249Nko-A6Cbkn0LWWHfcYyDljHafVxVBN7IN0wde7woyfazjNjo_sVEQD8lvtAJsGQ3nskrOe4	\N	\N	7237174ae6b54a04	\N	2	2020-12-16 14:00:32	2020-12-16 14:00:37	\N	Unnamed Road, Mettupalayam, Tamil Nadu 641301, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	31.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
bzhdb	\N	mohans@getnada.com	\N	$2y$10$RC5o.C231eJoxrsJPLHadOQNl.XCoBgv.UW5aYiqOc/A.j98ZbWC.	\N	36	\N	j8IYTGwoHA4ZpycTxpyZUBlBcx6E4LsACIRk	0	q6wugftW3LCK	1	\N		\N	\N	\N	\N	\N	\N	cuDPDHDhS-GwdEOI4MS5B6:APA91bE-MeGjV5lMBS_w2_PafbF8G6PEQiZBva-8V9u4c_469nZvZw1f40WQIt5Pmc1KKXSNjXOvfxfPvElViv1PAL2jyII-op3B7U0CHkCtLKMldhzHQPvWslv1ko5gk_tlr42U7RKR	\N	\N	100457f9f3a03b5a	\N	2	2020-12-30 05:48:04	2020-12-30 05:48:09	\N	1, 1st Cross Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	36.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ios_dev	\N	iosdev17@getnada.com	\N	$2y$10$SnZc/fPDQjTcRt0JOE8Jsuz9dcuhZfqkVMChbwZ2HFrc6gQJX5hHC	\N	40	\N	P4HpkiLEbPC79uEjQ59IXm03RBpqoxk4FvXv	0	BorWN6mev3YC	1	+919659470749		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	44C56228-7FAA-4668-8034-F52D430CFB93	\N	2	2021-02-08 06:57:23	2021-02-08 06:57:27	\N	North Atlantic Ocean	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
bdhdhd	\N	hdjddbbd@gmail.com	\N	$2y$10$7wtNfoZ4AvEx6KHY3szaw.8.h.BphLwqDXgVqHjrxoJnBkpZtt.SG	\N	39	\N	OeUvaLdRcidKl6BJZGfpAsij1EELpTgKgL1W	0	HF9RDQ21uSkT	1	+916321549785		\N	\N	\N	\N	\N	\N	f05wNgt6RPy2_atUZnIhVq:APA91bGJByGFbiNd0xrN64lylBrzwbUGxVyTDix6hdOwWYLo19ADcHf435PAhcAu-uK7qU9fcXivXPusqx1kLuqf-dPu413b6pekyYPC7PS_z2DIIWx03tkWCi4U2xParJ2Exkp1SoL7	\N	\N	944a4f55df12e301	\N	2	2021-02-08 06:04:00	2021-02-08 06:04:05	\N	45, 1st Cross Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	39.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Rohan	\N	rohan1@getnada.com	235.jpg	$2y$10$YE/KczkXNY8phG4IBF.TAe6BCp8iBHP.PAt7I6M9kDJUJYzff/d3.	\N	235	\N	e29ea5964660e0a53a4cb8f923ecc48974905267	0	9f4f1e555df681e5412c8738a246c55fda807a2d	1	9606169056	M	\N	\N	\N	\N	1	2021/04/01	\N	\N	\N	\N	\N	1	2021-04-17 18:16:10	2021-04-17 18:16:10	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh	\N	op@getnada.com	\N	$2y$10$Y0SqXcofkshSsn6rn2I09u6p.ZBIVhFKJcrOD39bixlR8cr9w1jkq	\N	285	\N	CWxXEB65qQivDV5TSiJOTjo3M9bdUYmveczA	1		1	+279606169056		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2021-05-03 15:25:43	2021-05-03 15:25:53	\N	5600, South Africa	\N	0	\N	\N	1	\N	3	-32.8747066	-32.8747066	\N	\N	0	+27	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	12
Rabada h	\N	rams@mailinator.com	\N	$2y$10$hPDNQi7reEbkbC2vA63wEOIxWOtq91Hyv2qq8RO.09HcOJG.PK5nW	\N	269	\N	ttoK8VgNjnc0xczeVfJg5lv6870r0cOvU0Yl	0	XXxO0eL3	1	+2139606169056		\N	\N	\N	\N	\N	04/07/2003	\N	CD2C0D7C-6C9E-4446-8618-62C45F239B33	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-22 15:38:48	2021-04-22 15:38:53	\N	44, nextbrain technology 	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+213	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh Kolla	\N	kkkk@mailinator.com	\N	$2y$10$j/jvuwLOAvq7zfmymwvNzOnNlQEttXZ1onPhJZRGqBIH1WVYnGzEy	\N	299	\N	ICYS4Fp7EhPIoUfTyVjAdpXG9lMQBr00aJhH	1		1	+279606169056		\N	\N	\N	\N	\N	05/11/2003	\N	\N	\N	\N	\N	1	2021-05-11 15:11:08	2021-05-11 15:11:41	\N	hyderabad	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Abhinay Nettem	\N	fs@getnada.com	226.jpg	$2y$10$2GHlxhAxzXTZ8Xsov2dBv.Y.oTlko4D2z2ouM7si5yegkufBE0xmi	\N	226	\N	2a9085e838d65bfb6cf3457aba1f537d6958525a	0	2b63eeb513e4cc10fb59576935d422d74fab47d0	1	66	M	\N	\N	\N	\N	1	\N	\N	\N	\N	\N	\N	1	2021-04-15 17:09:52	2021-04-15 17:09:53	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
usersssa	\N	usersssa@getnada.com	\N	$2y$10$rKQOrEHD3rvkWxx9x0VgC..sgGCk8XllhCRsK6gitnVJwjmgjAq7S	\N	74	\N	c3bb3cbb4a3d1ff3fb7389a76958f47b842ca891	1	XSvFGJewJVr9	1	9876543210	M	\N	\N	\N	\N	1	05/02/1991	\N	\N	\N	\N	\N	1	2021-03-10 12:28:49	2021-03-10 19:35:46	9876543210		\N	1	\N	\N	1	\N	3	\N	\N	\N	74.jpg	0	\N	\N	facebook.com	twitter.com	linkedin.com	2		\N		59	111275	\N	\N	\N	\N	\N
Accounts	\N	accounts@10bucksonly.com	164.jpg	$2y$10$qhjfsQbHpxy8kCVbSk8BV.F23g34M/HCktO2kMH5zn6zW7Rh2aTeu	\N	164	\N	ca86cb432888ecf1f1a361dec0065640dbbc0d80	0	4f48fc12a95dcf04c4b0e7778b20d6778fc91024	1	+919876543210		\N	\N	\N	\N	1	05/18/2000	\N	\N	\N	\N	\N	1	2021-04-01 12:37:53	2021-04-01 19:02:48	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
R	\N	user@gmail.com	\N	$2y$10$1pNwT7GQ9vFb3YClcQdul.d38ArP6QOlGUq0VYkQRu0TTC0R9fwv6	\N	236	\N	tzkvaifw6w37MklOrzXs0GCoASECTXeHLbau	0	HVWjGZxoIhd6	1	+27843322786		\N	\N	\N	\N	\N	04/18/1999	cyzfm5aXRniavk7x63zI6J:APA91bGyfUddPQf1LnNH17VhaUMkHk4MAaNIdo_dYrOTyttOoI6NxgKDz7eUTkBxe1e24U1ASxTVe0bNAV9Yne8-VbiTjsA3UkcF1HE-WElAEWlJCq9-I1-q7-zDaJjU9cOsvVbMEZP0	\N	\N	457ee686a8430efd	\N	2	2021-04-18 03:47:05	2021-04-18 03:47:11	\N	Durban, South Africa	\N	0	\N	\N	1	\N	3	\N	\N	\N	236.jpg	0	+27	843322786	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
turyto	\N	turyto@dropjar.com	\N	$2y$10$9smslJ5406eJVI36EkQuQuPo4Czh8ZWuXPeMR00J66cXsK8Kp/REq	\N	77	\N	49bbaf196d587e0e0393a9905336310dc49d0bf4	1	M86vOa5G6lYU	1	9876543210	M	\N	\N	\N	\N	1	05/02/1991	\N	\N	\N	\N	\N	1	2021-03-11 18:16:01	2021-03-11 18:30:32	9876543210		\N	0	\N	\N	1	\N	3	\N	\N	\N	77.png	0	\N	\N	facebook.com	twitter.com	linkedin.com	2		\N		59	111276	\N	\N	\N	\N	\N
User Manager	\N	usermanager@10bucksonly.com	83.png	$2y$10$595NQ6vDpIrCog4xwfObAePLGZ86mm8jCXM0nO2YL1H.UAyCVTrfi	\N	83	\N	26f94aa2a02e20e581fdc6a8ecda34216aca8123	0	0f8548f1cfc33486ba1d56642ac36fd350af9b9e	0	+91 9876543211	M	User Manager	Manager	\N	\N	1	05/03/1990	\N	\N	\N	\N	\N	1	2021-03-15 16:18:16	2021-04-16 19:26:59	9876543210	Bangalore, India	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh	\N	rrr@getnada.vom	\N	$2y$10$knBAgMPvpgS.uP.CSysCR.XQE0R1VoJo.4ot4i.wP.exJDvXSviXy	\N	171	\N	6RFWmkPkTc5G3OFFJ1KJIFK0WxZIRR6w1hO4	0	VbtAMqLID0PB	1	+919606169056		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-04 14:41:36	2021-04-04 14:41:36	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Moksha N	\N	moksha@getnada.com	179.jpg	$2y$10$i2vatu5732YIi9w/.XTmLuOq7Ix7hr/IBZcdSBurd591WIlqTC6k6	\N	179	\N	26d0166fc4d83fdea06be0f4739e02ab72e39bcc	0	557da2d217d583bdbda9cbf2d4687fc4bbef509b	1	9606169056	M	\N	\N	\N	\N	1	04/01/2021	\N	\N	\N	\N	\N	1	2021-04-06 17:10:23	2021-04-08 11:45:32	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Dummy	\N	zikyv@getnada.com	\N	$2y$10$kfQp3meE7IACGZaG7xELg.6q64EUzAVjl8V7XGQlzE4//zSSxPSie	\N	86	\N	ErRkc4MnctINyvdP5ZBTtMzsgd0LQof7hoSF	0	ZRJQlXTk3tDw	2	+919876543210		\N	\N	\N	\N	\N	\N	dt-rQHabQaW2k6qlo6AR05:APA91bHM7GyghJHnXnGytU9tw6jR6Y7rUltmiapSb0CbgaW3RuqMymQgxUUY4B-CJ8MRIazv7ooPgpbk-JWtuQWClbDINGxrQwxDfPgq5MzeA22X_4THpj_bq90B7leS27ISBHL4jUMP	\N	\N	606ba08fb7fe7f82	\N	2	2021-03-15 11:43:19	2021-03-16 12:49:27	\N	Bengaluru, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	2021-03-16 12:49:27	86.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Kannan	\N	kannan97@getnada.com	\N	$2y$10$eh0158txXr.nSSiu0Xm/au5.jnXUgsnqzQLtPhWntTXZOkQ436p3C	\N	187	\N	ggpWWQWZHGPupFpClzHF9g9mivewAQqhdoaa	0	8ugwLdtk7E3v	1	+919080942690		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	A921C93A-E16C-49C2-BA61-E6195F44961A	\N	2	2021-04-07 12:36:14	2021-04-07 12:36:20	\N	46, 1st Cross Road, Prashanth Layout, Whitefield, Bengaluru, 560066, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test User	\N	abcd@getnada.com	82.png	$2y$10$rT1Mm6IdNLliBi45mTP8YeBAMLVsUz/hhjpo/dEHdK3Yx3XJd9WE.	iXlg1OYMN4Q1bNW46fpnsMVihl49IJbUOBDknVbuTlWEYk80CwgMBjirckxH	82	\N	d12a7ce8a8e742138c36cc632a778bdd93414e20	0	78196bfbf8b0cdfdfb0cff7efa823eff497ad3cd	1	9876543210	M	Test	User	\N	\N	1	02/14/2002	\N	\N	\N	\N	\N	1	2021-03-15 15:02:01	2021-04-16 18:20:54	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test User	\N	v1@getnada.com	154.jpg	$2y$10$dsxj32fDrGqDl7DKlM/0X.ERr.zmg.GJsiWsLGp1lptMVe1HoJJ7O	\N	154	\N	5a20f36b1e07fa6b1a7557f9e81293a2bf2fba9a	1		1	9876543210		\N	\N	\N	\N	1	02/24/1994	\N	\N	\N	\N	\N	1	2021-03-27 17:49:51	2021-03-27 13:07:38	9876543210	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	154.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	932c94dae81236af92f5da121e3aca020e3ccb9e	1008181164_LOCAL_154	\N	\N	\N
Kavin	\N	kavin2@getnada.com	\N	$2y$10$VkjkpAjgV3SZdrfs9rEji.Fjz/IKUQflGHpwUL85w7LFKX51wwr1u	\N	92	\N	6Elqq7YpsKavuH1kfhUtAnlmY5LRjeGdmNqs	0	00VupykQuNEI	1	+919876543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-03-17 07:51:27	2021-03-17 07:51:28	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ioo	\N	ios@getnada.com	\N	$2y$10$b7oEVCzlibb8nKDGrGn7BeUU/vPdPHosAHKbQr.vobY6go.Wwgo7K	\N	98	\N	a459504841a18c9713f9c30e76d793d77090b893	1	C4RAVGUBHi7d	1	8608791165	M	\N	\N	\N	\N	\N	03/18/2021	\N	\N	\N	\N	\N	1	2021-03-19 18:02:51	2021-03-19 18:02:51	\N		\N	1	\N	\N	1	\N	3	\N	\N	\N	\N	0	\N	\N				2		\N		\N	\N	\N	\N	\N	\N	\N
ggg	\N	hshyyyys@gmail.com	\N	$2y$10$4VNIXuwn6rDsU4ZMsXH.JOow.uikBYBO/oA6rX7CMpovc.qrZ6Jda	\N	87	\N	WREQHR787gNUUnXOlAYkpNcs6V1d54YzNxqU	0	VCOSxxdcJJOW	1	+918563978564	M	\N	\N	\N	\N	1	\N	cAd9zsmCQiyirSoqHyLxyD:APA91bHf2dnDfGlVJ3YIu4dS7UracqVfibOW8iZnJRBd75-EBARaxmII1-yg2l-X6LJQn_XOd0N4-Ytc6fU4SPewY9DCu5ntM0sqML1D9FlNgc4Fsd75fjRRTAnDvIMH6fH6akZpXD_V	\N	\N	944a4f55df12e301	\N	2	2021-03-15 14:53:28	2021-03-16 17:19:08	8563978564	#44, 2nd floor, 1st cross, 2nd main, Prasanth extension, Whitefield, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	87.jpg	0	+91					2	\N	\N	\N	59	111275	\N	\N	\N	\N	\N
new user	\N	newuser@getnada.com	\N	$2y$10$hj.dfZCij.N.UDaAzuZUdOlMQx1gqflbyxvJD.XLOBtLNlGHMkI9G	\N	195	\N	EgTscT8lfrCSt3ZYmRNWFJ0QMkTdhGZdLgnJ	1		1	+919080942690		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	A921C93A-E16C-49C2-BA61-E6195F44961A	\N	2	2021-04-09 07:44:36	2021-04-09 07:46:28	\N	46, 1st Cross Road, Prashanth Layout, Whitefield, Bengaluru, 560066, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	ebcd40bb187bf570a906d2d60e43bbac897a4774	1053963301_LOCAL_195	\N	\N	\N
ramesh kolla	\N	ll@getnada.com	\N	$2y$10$22wLtP4SVt4g.Eij6yDq6OSbopPiwTSO22XXTpW9NBoZTqt483ndK	\N	88	\N	iMbjJG2GfhI3zS6dXqBzFTAcg10GVBFHi1l8	1	2S0LTeRkBGgv	1	+916361258389	M	\N	\N	\N	\N	83	\N	ewxXlX0RQP-Jg2xyxyUT4B:APA91bH4XjwwRjnjGX-KJ3QJ_BnbGMH6ReX4uyThVxRPX_7Fj0ChfoPLxkSwPPOHyFAlQojt-1jMVzpceUMoqKkszKmpLpi0LykkywND5KLTH7MDofuoZr4Pw9dHmxfKWxj_g7y2gq-3	\N	\N	970cd1012a2ca89c	\N	1	2021-03-16 07:10:52	2021-03-16 18:32:06	6361258389	Sattenapalli - Bayyavaram Rd, Pandithapuram, Andhra Pradesh 522403, India	\N	1	\N	\N	1	\N	3	\N	\N	\N	88.png	0	+91					2	\N	\N	\N	59	111275	\N	\N	\N	\N	\N
gfgfgf	\N	ggg@getnada.com	\N	$2y$10$QG.lwtwI3jDW0/5ml6Y7nO9uC2xP9XevSXtCesnaNIZfDbuGjeoaS	\N	89	\N	4fe1d80e6217744c336dc75bc38492c7e1107dc8	0	xwIdy4Ce7QaA	0	9876543210	M	\N	\N	\N	\N	\N	02/20/2003	\N	\N	\N	\N	\N	1	2021-03-16 18:34:31	2021-03-16 18:34:31	\N		\N	0	\N	\N	1	\N	3	\N	\N	\N	89.png	0	\N	\N				2		\N		\N	\N	\N	\N	\N	\N	\N
Kavin	\N	kavin@getnada.com	\N	$2y$10$9Dy4bWVUORbRGf4VAYbCXuNR115Csnq3qIS2tXSBL0TdkdqAcCv9S	\N	90	\N	iWw7CenjWOGe0tcyK100rAOGwuBwTZhSb3VX	0	HqL7ew9lh6P5	1	+919876543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-17 07:49:09	2021-03-17 07:49:09	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Kavin	\N	kavin1@getnada.com	\N	$2y$10$XeJPV/Nx6YT4EU2IctYMz.xQ3jsi6AiBxBr02KIwHVJKVvXW2dblK	\N	91	\N	v6zMoTmH2LoXMAglJ1Xe10Wu9zTmKySEgI3M	0	knySh5S39BaT	1	+919876543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-17 07:49:53	2021-03-17 07:49:53	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh	\N	rrr@getnada.com	\N	$2y$10$khEwp8QXgRO4X4veuP9TZ.c4hbZmcLtWhnw8zR9X1.GD4nL/0Jv1i	\N	172	\N	QH1Y5TJdHiecqpLyHQewYUvoZRl7ChodUCq7	0	u5oEykJpZsiZ	1	+919606169056		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-04 14:41:49	2021-04-04 14:41:49	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Kavin	\N	kavin12345@mailnator.com	\N	$2y$10$HLEINaEJXJt1GICDY3rPp.xAJ6Y.TNWGd6NoqkS6x3zxOWEtanNTe	\N	95	\N	1tiPV8rPlW3hdYgbiA1KbqYnEahpfbnAa7Q6	0	PLzEuqzztqHu	2	+919876543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-03-17 08:02:21	2021-03-17 19:26:40	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	2021-03-17 19:26:40	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
rohan	\N	rohan@getnada.com	\N	$2y$10$DrVAe7JXVkts28SToLdQaehV0Q/bXAieo5iI72kgjsHNQg.0srnaq	\N	103	\N	b9430d236bf7a4c672692f9fd29b1346ada995d8	1	FojpZDvl45ae	1	54545454	M	\N	\N	\N	\N	1	03/03/2021	\N	\N	\N	\N	\N	1	2021-03-25 20:28:11	2021-03-25 20:34:32	54545454		\N	1	\N	\N	1	\N	3	\N	\N	\N	103.png	0	\N	\N	fb.com	fb.com	fb.com	\N		\N		\N	\N	\N	\N	\N	\N	\N
Kavin	\N	kavin123@mailnator.com	\N	$2y$10$ycRPyi1ld8AQuFIiVDEX.eUaRVXnd0QrGl2mY.o.joInVtaaWocEm	\N	94	\N	UxFN4WrN1BCdvS6j04uZ7mXfcxYJ67Dpsk7r	0	Td9PsfgAUJlt	2	+919876543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-03-17 07:59:23	2021-03-18 11:09:35	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	2021-03-18 11:09:35	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Kavin	\N	kavin@mailnator.com	\N	$2y$10$ea/r4GfLTt69b2lCXEiBH.19nBBwseYjV71qmqmun1VBizOnuDGv.	\N	93	\N	B4ps6uiW8WaCfgvUd3wP3QTPdHOGPgXZ3OHS	0	SQSFE8locsSJ	1	+919876543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2021-03-17 07:52:45	2021-03-18 11:10:53	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	2021-03-18 11:10:53	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test Admin User	\N	usertestss@getnada.com	106.jpg	$2y$10$UOI413UX23GPwnTmcrv3CuY8vIcrHY8h/3GjTjKNLNUThkQko2Rdu	\N	106	\N	9c42e218fc360b2596070b16e4e6fcae7a2fe545	0	yrQPsRbRR4v7	2	9876543210	M	\N	\N	\N	\N	1	02/24/1994	\N	\N	\N	\N	\N	1	2021-03-25 20:48:36	2021-03-31 16:52:07	\N	Bangalore, India	\N	1	\N	\N	1	\N	1	\N	\N	2021-03-31 16:52:07	\N	0	\N	\N				\N		\N		\N	\N	\N	\N	\N	\N	\N
krishna	\N	dkrishnakumarmech@gmail.com	\N	$2y$10$wyb/y8NpSSlCJ3jZvbXYjuvwk77mGr4wwPHhxBIBwlazpd8qjgPNO	\N	99	\N	ig7OaOhop8qYnD4r741qII8fbA6D3P9P5wE8	0	41BH0QrR	1	+918680946634		\N	\N	\N	\N	\N	\N	eHvcRkZrRXerzehpxEPII_:APA91bGTHf4EG-iL52h4OUIttkthmRUpu48OfjgfdRjzU_f0i7kAzzPgGuoi5LMGM1qDuhddRObTr3f2vyPFFD93vBrrAQ4yyLkXparcxxV6qNzSZOSiQeCz33zB1N1xgBxcU0_XJM9d	\N	\N	4270497a232f650f	\N	2	2021-03-22 13:06:04	2021-03-22 13:06:11	\N	Kalegoundanur, Manjanayakanahalli (p.o Nallampalli (t.k, Tamil Nadu 636813, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	99.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Sravya Kolla	\N	Sravya@getnada.com	102.jpg	$2y$10$ZuZqZcwaltRFtoOr9MASb.AtYCxecLA90.P6mqw7ey6w3Sr9us8D2	\N	102	\N	4f44ec27ee7a9e129579f50f5ba46376b59051b7	0	68396f6adedcec5afd141a05ffe6437527be8344	2	9606169056	M	Sravya	Kolla	\N	\N	1	01/01/1970	\N	\N	\N	\N	\N	1	2021-03-25 19:26:34	2021-04-01 12:36:32	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	2021-04-01 12:36:32	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
k	\N	ramesh.k@nextbraintech.com	\N	$2y$10$fnUe7Vf6I2obCwAWGPhteeSexlRh0Sjr7sig/.9kMqgBaZXP12pwW	\N	180	\N	tyRl9g9j2boLIe728PH1nWMQ3P76xvE3XjVk	1		1	+919606169056		\N	\N	\N	\N	\N	\N	c8ZgocF8TuCxa2gpVFCFFn:APA91bEBPfT_WMGkrZlN0NK_-Gb9SQFCBxUBvLILT-nRaG8_m_YBKZVJkxHeUcQfonettXJzCH0vR-F7BXqLXWJ3CESOO-ugjElKcagMDAhg0_85WY16u4csWmRutWNJUTUdBlmqDlZ9	\N	\N	970cd1012a2ca89c	\N	2	2021-04-06 14:35:27	2021-04-06 14:37:26	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	180.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	c1ffb65e13fdb97b373e0a16215b35705a927b44	320216797_LOCAL_180	\N	\N	\N
Test User	\N	usertests@getnada.com	\N	$2y$10$EAhhYnuZDr/vCwjONsGw1.VXfZiPDcKBZY5jtBCnnqqyqF9g1ROkO	\N	105	\N	d65ccea1e12c3825f50b63a9dd4d99a7734c9198	1	rhwRKSwnv9Es	1	9876543210	M	\N	\N	\N	\N	\N	05/03/1990	\N	\N	\N	\N	\N	1	2021-03-25 20:41:17	2021-03-25 20:41:17	\N		\N	1	\N	\N	1	\N	3	\N	\N	\N	105.png	0	\N	\N				\N		\N		\N	\N	\N	\N	\N	\N	\N
test	\N	testbucks@getnada.com	\N	$2y$10$iZDJW2wnH1lp58hb2wlXZ.GQWqMaG9xb87jCtpjRPS272L/51JVsm	\N	188	\N	Rxea7fK1ohN9Sk4OzOgRsNDWJsI5mEZCRZOg	1		1	+919080942690		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	A921C93A-E16C-49C2-BA61-E6195F44961A	\N	2	2021-04-07 12:45:52	2021-04-08 14:21:28	\N	46, 1st Cross Road, Prashanth Layout, Whitefield, Bengaluru, 560066, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	eab9275181bcf7656cbe7d57e767247ec8acd478	1321030063_LOCAL_188	\N	\N	\N
Ramesh Kolla	\N	c5@getnada.com	\N	$2y$10$YU1MqyL5mL78uY8Qh9kaf.HLG9irQUiX3laIfDOpO/q3b3iRnXiWq	\N	76	\N	2ue3d95pCb6EZtgS1X0MPpC8XRvckaTNdY4l	1		1	+919606169056		\N	\N	\N	\N	1	02/24/1994	eB0hUYWhTZOE6H0jbaqf2d:APA91bHJoW6JBGF6nzGJ7tQNfj3lyAP6Ct3uU_KdbiLiLcJY8T9F9X-i68BrXkC6QPygkb1ecUoJw1jdPr9kAOLlnX2qFm52QFC8kA4kxAMd8S6Ju8wA64gdUn8yjcxXkRtB7qgQ8qey	\N	\N	970cd1012a2ca89c	\N	2	2021-03-11 11:49:37	2021-03-27 18:27:49	9606169056	Unnamed Road, Pandithapuram, Andhra Pradesh 522403, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	76.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	3319fc6e816221c390997ba67a0cbfc7c7526273	1806948052_LOCAL_76	\N	\N	\N
Ramesh babu	\N	chandrika@getnada.com	\N	$2y$10$CFtcnuam8dS4GIeWrAXoTeSpYMm5hlhcqSOz9qP0ZSwyr.yKRUYQW	\N	115	\N	df291a418ce8a1cb05fd4013403ded8b79f3f39d	1	lXVmH57zI6BE	1	8608791165	M	\N	\N	\N	\N	1	03/18/2021	\N	\N	\N	\N	\N	1	2021-03-26 17:58:40	2021-03-26 18:56:07	8608791165		\N	1	\N	\N	1	\N	3	\N	\N	\N	115.PNG	0	\N	\N				\N		\N		\N	\N	\N	\N	\N	\N	\N
Test	\N	dummy@getnada.com	\N	$2y$10$YHV/kseA22Qpj5cr3DcEduFfvFy/Tb3oejw/z4AumCylPUfR1VcGG	\N	161	\N	GAYy3CnNNnUiAFdA1f5XEYPsM7M1m7xCTzAx	1		1	+9198769543210	M	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-03-29 12:20:51	2021-03-29 12:25:59	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	b174f1a489d6b1d79109568b0e6bc75c4168b71a	1798144427_LOCAL_161	\N	\N	\N
Test	\N	jybureva@getnada.com	\N	$2y$10$3v0YL9DaNbvCvGkrKvqiReNPDCKCVi2mgK4LWmPo7ZkTIPQzDAZZm	\N	114	\N	eNZABoh5w37AyXJRAOrKAYvlmBjh4fgsiWI4	1		1	+9198769543210	M	\N	\N	\N	\N	1	\N	\N	\N	\N	\N	\N	2	2021-03-26 10:10:58	2021-03-26 18:59:10	98769543210	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	114.jpg	0	+91					\N	\N	\N	\N	\N	\N	4f104fbe29c8f6e053748759126c26af03cd55a4	587552123_LOCAL_114	\N	\N	\N
Rakshit babu kolla	\N	rakshit@getnada.com	117.jpg	$2y$10$nxWaYJZeFv5cEL.pSVlKLOOwQg/H22l/GwTNQd6QSIB1BrMUxzNjm	\N	117	\N	a76dcddbb1b60b0261ba06a5d9f76c0bdfc4ebdc	0	edd03586fbf2c75c39c630f86c7ad34bd8003eb9	2	9606169056	M	Rakshit babu	kolla	\N	\N	1	01/01/1970	\N	\N	\N	\N	\N	1	2021-03-26 18:55:55	2021-04-01 12:35:28	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	2021-04-01 12:35:28	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Sasi k	\N	rajesh@getnada.com	\N	$2y$10$0XJrTCk4.N31HTOMpf40E.ZDAbUgH9qfvbW0.ZvqSjce7KRQm0MDa	\N	251	\N	zlhQDXXNecm1VZXGXZPDciwFV3jmf0rvCHqo	1		1	+919606169056		\N	\N	\N	\N	\N	04/20/2003	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-20 06:59:55	2021-04-20 08:28:59	\N	nextbrain technology 	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9606169056	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
null	\N	rodneyhubbard.61461@gmail.com		\N	\N	318	\N	e96db93d351ffbdb3d31c369ae6e6ac41de7e3a2	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:21:02	2022-09-13 10:21:02	\N	\N	\N	0	102721453217830343876	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	guillermogeorge.53106@gmail.com		\N	\N	320	\N	7955e1430de868fdf738261ab3f5ffa4c1f21f29	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:22:09	2022-09-13 10:22:09	\N	\N	\N	0	101223614222788626791	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Test ramesh	\N	testusersd@getnada.com	173.PNG	$2y$10$AHdOiOoxECI4YF8Q7PKOLOCJabK0T7vM4LEkem8RCiMCiQAAOjqQW	\N	173	\N	fb0e3056d650f8db60fbc2a9e09dd00cb68e485f	0	kqPXG2JLVwo6	1	84994944		\N	\N	\N	\N	1	04/01/2021	\N	\N	\N	\N	\N	1	2021-04-05 15:34:41	2021-04-05 15:36:31	84994944	hebbal airpor  bbvhgt colony	\N	0	\N	\N	1	\N	3	\N	\N	\N	173.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
hshsgs	\N	test@zetmal.com	\N	$2y$10$43a24aLXqLPhfsXbVNoDSecJysN0fjuU/WPJoqFTBnPgEwCoG2eXC	\N	192	\N	MYwsKSbtQo1G86nUXYxErho1igqF14NlJSpb	0	ujgtq0rsgqn6	1	+918680486978		\N	\N	\N	\N	\N	\N	etxUsC5xQp-h5Dg8CVTC_R:APA91bEBpnjwEydLqurSB-OPN46a5IophVtzMM_FdANNGKlyMluJBF6bv26AWMBqU0q9t0N3e0pDrfLn2lybhJpOAB4wjotff-gK7m864axgeUoxeKJiA0ydRLo0vDQjXCxZA7bJsxvT	\N	\N	944a4f55df12e301	\N	2	2021-04-08 08:05:11	2021-04-08 08:05:16	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	192.jpg	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
krishna	\N	dkrishnakumar@mailinator.com	\N	$2y$10$YR03mEnqvsdHLtbtPtCacuL6fnTz2mHLjrJvB3Zithi.ARmtpQVbG	\N	200	\N	uBrtjZZO28JkCWGBptLZN06qrkJux2oOSBzJ	1		1	+918636987536		\N	\N	\N	\N	\N	09-04-1991	etxUsC5xQp-h5Dg8CVTC_R:APA91bEBpnjwEydLqurSB-OPN46a5IophVtzMM_FdANNGKlyMluJBF6bv26AWMBqU0q9t0N3e0pDrfLn2lybhJpOAB4wjotff-gK7m864axgeUoxeKJiA0ydRLo0vDQjXCxZA7bJsxvT	\N	\N	944a4f55df12e301	\N	2	2021-04-09 13:24:46	2021-04-09 13:25:27	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	200.jpg	0	+91	8636987536	\N	\N	\N	\N	\N	\N	\N	\N	\N	dae4dd3a78b0c2e94cd03fd0b77404411e484faa	1828582262_LOCAL_200	\N	\N	\N
Ganesh iOS 	\N	ganeshios@getnada.com	\N	$2y$10$z5mwVR.LDR3oPTrs4KheVuYVYrCPnVzkEo0vaaE4yVmX9HMub36VK	\N	197	\N	VTklK6JJXFcspW6bD2KejstExn3s4ve1Vj4Z	1		1	+919080942690		\N	\N	\N	\N	\N	\N	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	A921C93A-E16C-49C2-BA61-E6195F44961A	\N	2	2021-04-09 10:00:49	2021-04-09 10:04:28	\N	45, 1st Cross Road, Prashanth Layout, Whitefield, Bengaluru, 560066, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91		\N	\N	\N	\N	\N	\N	\N	\N	\N	88c1e410d559f301af85acbcb08570a9abdba03e	501987530_LOCAL_197	\N	\N	\N
Test	\N	testios@getnada.com	\N	$2y$10$0MB01.dksC/BIw3z94I8auOq02UpLGboUZJXYFUY8IHdWHnLV5xju	\N	205	\N	5FsQsxJmdHLV2ceMnOIHLQmVI0liAC7QSou4	1		1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	3	2021-04-12 05:05:41	2021-04-12 05:08:42	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	205.jpg	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	242cb0b21966bb1e8f78fba6cab0689ba7552a08	1159243052_LOCAL_205	\N	\N	\N
	\N			\N	\N	218	\N	5934d7b2de9b8597553f90ba6a545bfc417277ef	1	\N	1	\N				\N	\N	\N	\N	fATb4FZJDkO9hTnMuizGpj:APA91bFZ-WDSAZ0VLAZYz0UayePZpoP4twmU135uXrQ3vHqcN-Jg4HB6flxvAPo3vZC7bRZZSJdwaliE701mo8gjZ7vRxruV1DTEuNXYYNMZWI--2Tg482H9pNcsuZLY9m51AQaYHKT3	\N	\N		\N	2	2021-04-14 15:10:28	2021-04-14 15:10:29	\N	\N	\N	0	eyJhbGciOiJSUzI1NiIsImtpZCI6Ijc3NDU3MzIxOGM2ZjZhMmZlNTBlMjlhY2JjNjg2NDMyODYzZmM5YzMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDgzMTk1MzM0ODM0MTY0MjExODIiLCJlbWFpbCI6InBnYW5lc2hrdW1hcmVjZUBnbWFpbC5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXRfaGFzaCI6IkdxVEp5SGQyTkRneTlIekk4OGNpakEiLCJub25jZSI6Im5oTVBxbzNFdm53a2Q0QWg4ZV9hb2dqZ1RMcmpqZDhERW53LXJSeTFxOEUiLCJuYW1lIjoiZ2FuZXNoIGt1bWFyIiwicGljdHVyZSI6Imh0dHBzOi8vbGg0Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8tTFZQQlh5cXNPeWcvQUFBQUFBQUFBQUkvQUFBQUFBQUFBQUEvQU1adXVjbk1fMERYM3YyM2QtQ05odk5mSkdBcUxvdWJlQS9zOTYtYy9waG90by5qcGciLCJnaXZlbl9uYW1lIjoiZ2FuZXNoIiwiZmFtaWx5X25hbWUiOiJrdW1hciIsImxvY2FsZSI6ImVuIiwiaWF0IjoxNjE4NDEyOTc3LCJleHAiOjE2MTg0MTY1Nzd9.kefVGLHPEuIzFHEAqOI_09n4CyZwprC4ENEsE2LCYkSHgTeQfdoASk1KhBKgUOCkty05NIMUStPHYyS-hjHHdsvw9lBYERlGgdc0JHWVYbXBg5pu4Zio9Ic8mm86FyHVF_fnH-YLniajJJ9v5Xsc9dnXkqy4E2g0rBgKxjXEINRjnSuo8Ky-Sz4LkUKd75wtXyIHH9xSW63lAnwgw5AXgMbo39tWGQ7GWRlb2h5FLehjKzH4I01kycQaGEjFcv-cgeFZCLbjkuT-1EOdpNnCPbA38Msqm636XQ6sUX97KO6mmk7AZ0JObkSHXtNE5oTOvFWcAUYHKyznJDMjvLxyFg	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Test	\N	zamavi@getnada.com	210.jpg	$2y$10$CEqt8WtgxTqNpWb3b8y1kegi1bYdfylsybKPbrJ11InZ0y0XDyoQS	\N	210	\N	usiw7pEDH3oOHI7TirmjucEIdndEEkbiRxkr	1		1	+9198769543210	M	\N	\N	\N	\N	\N	12-April-2000	\N	\N	\N	\N	\N	3	2021-04-12 11:37:37	2021-04-12 11:41:49	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	210.jpg	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	68f77d74e1bcccc8969b0ec17266c33a60f2c569	959918361_LOCAL_210	\N	\N	\N
preethi	\N	preethi.s@nextbraint.com	232.jpg	$2y$10$xIrM7f5lWvLOi1CjPbwtYuSNyqIfMX2//Fy1AOz3FkkxNwQgXN12a	\N	232	\N	f188bb6e940162dd09ae8358fa047a1d913ad3bc	1	TqnY30UC3poZ	1	+919514836224		\N	\N	\N	\N	\N	04/07/2021	\N	\N	\N	\N	\N	1	2021-04-16 17:49:54	2021-04-16 17:49:55	\N	1st cross street\r\nmain road	\N	0	\N	\N	1	\N	3	\N	\N	\N	232.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Krishnakumar	\N	krishna1@mailinator.com	\N	$2y$10$AakI2ofLQHQtfWNvhqLSZONNNRfBhiWvYjTr4Bh0/vqbN/ugvmo2a	\N	212	\N	EOLvplQRQLrMJudjKySNczxLtcDVrzMIWJwK	0	0qsnzlmCjtwh	1	+919655884632		\N	\N	\N	\N	\N	04/12/1996	eUtUrzxKST6TwDaHovfub9:APA91bH3YkGIeWUo0AbJIJZ0bRC96lMygsI0vnjvaJ16XSXWNZNR86ym9zhahTXPbeW92rh0PjuAbSO9IBcke4-bSygAXzc7osJ26Hk-GriQb6V-VTYlQ4HIrw-ho7K3Ur0jwGZ1iRWi	\N	\N	944a4f55df12e301	\N	2	2021-04-12 13:49:20	2021-04-12 13:49:26	\N	Bengaluru, Karnataka, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	212.jpg	0	+91	9655884632	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
krishna	\N	krishna2@mailinator.com	\N	$2y$10$L.PVnU/UGyjlPkOYzaOf3u4fS6dSK97RTn5gIgUNXm1IPI.EiqFVW	\N	213	\N	orCp5eVU4rT7US7rVcxuVb8ywjQFioSdpiX4	0	RShERydZwxat	1	+919632584569		\N	\N	\N	\N	\N	04/12/2002	eUtUrzxKST6TwDaHovfub9:APA91bH3YkGIeWUo0AbJIJZ0bRC96lMygsI0vnjvaJ16XSXWNZNR86ym9zhahTXPbeW92rh0PjuAbSO9IBcke4-bSygAXzc7osJ26Hk-GriQb6V-VTYlQ4HIrw-ho7K3Ur0jwGZ1iRWi	\N	\N	944a4f55df12e301	\N	2	2021-04-12 14:17:19	2021-04-12 14:17:26	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	213.jpg	0	+91	9632584569	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ramesh	\N	tttt@getnada.com	\N	$2y$10$pzTtQkKaFz0vbla6Bck1nuxoHr/pyQWj8w7p/fbIilT8tWZCjDv/q	\N	230	\N	zZ57n2Osup7yVglc2OGflJRcWuRT3tJxwAFA	0	gtFiF946j6Ok	1	+916361258389		\N	\N	\N	\N	\N	04/15/2002	e3MrlXbASo28fRIe02u0DB:APA91bGuGRLJPOLzAi4HyiTjQ86ErjF2RRnVrsl4-8LnPyAANat4aiWSWRuTlsGAg0zfWsuJLgqLnPOu_IgYByg3xjb1DoyP6_mQi4HVZHYNPbJyaKBZawYEZGw_43mK0PXPZQ6ny5qM	\N	\N	970cd1012a2ca89c	\N	2	2021-04-15 12:49:10	2021-04-15 12:49:17	\N	#44, 2nd floor, 1st cross, 2nd main, Prasanth extension, Whitefield, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	230.jpg	0	+91	6361258389	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	busylub@zetmail.com	214.jpg	$2y$10$eIUZLrujvdpsKzWWrLddQe3Os0DWmgcIEQBxzAdbR9LFeua4x8J8K	\N	214	\N	IQTDTaJbZs5TfRbhYk4irUz5ofmSOHmkLOcZ	0	C7VJZ06CiTJq	1	+9198769543210	M	\N	\N	\N	\N	\N	12-April-1990	\N	\N	\N	\N	\N	2	2021-04-12 14:17:39	2021-04-12 14:17:45	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	214.jpg	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh	\N	rameshn@getnada.com	\N	$2y$10$oZ6frHo0W/3n52UPy25WY.z4KehwOBBmzL76ZF5lX/tkuQ01JEzo2	\N	253	\N	NZl6KGSUKkXvYUTta6eRyNauHUWdqjwHpLbj	1		1	+918608791165		\N	\N	\N	\N	\N	04/21/2003	dylFUaVGTaW1c32Yeuh-qL:APA91bGuEZJ94ijWr7TDDGG33uMG_TY7RYtGO5W4btDU7ciAFat_Ed110JJafikwLIRMmMlAjYfiT73GweK6iLh8zpJyJq-uf3Fq2-JYYCo0xQ_4H8ERBZFvXv9fkmrbMUlTmJO-Yerk	\N	\N	970cd1012a2ca89c	\N	2	2021-04-20 10:06:52	2021-05-11 04:52:11	\N	Bengaluru	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	8608791165	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
gkvg	\N	gkvc@gmail.com	\N	$2y$10$J7O2ab7ay/u0rV5ZRnlUz.VVDyBlYNg/.nCN0TPvJsjyWGxN/sBAG	\N	241	\N	dzi89FktYUxAnB2jiVe6xxbkxwXEmhHppbDh	0	i29ewajX3C13	1	+918632598089		\N	\N	\N	\N	\N	04/19/1996	eAC6WDwsTEmRdFAyS8gRap:APA91bH2UoHJW1igfiaxqh4QCTHy4nxVVHDKDo5KQZUc1HNWTxmlXz1GlKHnYc6xWWDj0z9bAFPxFJJAFbvINa__MNX88rktOfYa5AeDQOZYmD2mi77aCcAYlrbFeBtlVgC6_kSgvtEW	\N	\N	944a4f55df12e301	\N	2	2021-04-19 14:55:34	2021-04-19 14:55:39	\N	fjfhhh	\N	0	\N	\N	1	\N	3	\N	\N	\N	241.jpg	0	+91	8632598089	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	rivis@zetmail.com	231.jpg	$2y$10$yayAPWszfU5CxTnVCUfQQeMzrAfTaD00f0LKkDlZ76Xql4frTERda	\N	231	\N	8POVu1gU88BYUmDwbvzAaN3MslVk5S6uuddG	0	wGequaCqZugj	1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-04-16 05:26:36	2021-04-16 05:26:43	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	231.jpg	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	lylolit@getnada.com	242.jpg	$2y$10$dYU8J3poqdnanlNAkcS1BO7kx6pj7ToQm/rgmU/f.uFDNmjoEO.hu	\N	242	\N	jjxkqArs75S0YNJmQW1O7xyCkdaiJD6cfwFF	0	vcxrJbK0XSRS	1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-04-19 15:28:54	2021-04-19 15:29:00	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	242.jpg	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Test	\N	hahusec@getnada.com	\N	$2y$10$.gQimZZHZkQOXud4wYGOzeqpo47WjENpaTW5fK1rVkzlIq.YxAdbu	\N	249	\N	l6bG8qlmHvRfRCAFbBM7QmRukUyQRbT1W9zd	1		1	+9198769543210	M	\N	\N	\N	\N	\N	2000-02-01	\N	\N	\N	\N	\N	2	2021-04-20 06:36:46	2021-04-20 08:13:58	\N	Bangalore, India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	98769543210	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
ganesh kumar	\N	pganeshkumarece@gmail.com		\N	\N	220	\N	f4725d49bfd9286dd2a9ec7580e49eb0a81f3b23	1	\N	1	\N		ganesh	kumar	\N	\N	\N	\N	fATb4FZJDkO9hTnMuizGpj:APA91bFZ-WDSAZ0VLAZYz0UayePZpoP4twmU135uXrQ3vHqcN-Jg4HB6flxvAPo3vZC7bRZZSJdwaliE701mo8gjZ7vRxruV1DTEuNXYYNMZWI--2Tg482H9pNcsuZLY9m51AQaYHKT3	\N	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	\N	2	2021-04-14 15:35:22	2021-04-14 15:35:24	\N	\N	\N	0	eyJhbGciOiJSUzI1NiIsImtpZCI6Ijc3NDU3MzIxOGM2ZjZhMmZlNTBlMjlhY2JjNjg2NDMyODYzZmM5YzMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDgzMTk1MzM0ODM0MTY0MjExODIiLCJlbWFpbCI6InBnYW5lc2hrdW1hcmVjZUBnbWFpbC5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXRfaGFzaCI6ImpJRVd0cGIwUW4xWjZFZi1MWkF1MUEiLCJub25jZSI6Ill6eGNTeGs5ZDljck96cDVSMUR3cWxEcXg4NzVUUkFNTkt0dzFhczJoa0EiLCJuYW1lIjoiZ2FuZXNoIGt1bWFyIiwicGljdHVyZSI6Imh0dHBzOi8vbGg0Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8tTFZQQlh5cXNPeWcvQUFBQUFBQUFBQUkvQUFBQUFBQUFBQUEvQU1adXVjbk1fMERYM3YyM2QtQ05odk5mSkdBcUxvdWJlQS9zOTYtYy9waG90by5qcGciLCJnaXZlbl9uYW1lIjoiZ2FuZXNoIiwiZmFtaWx5X25hbWUiOiJrdW1hciIsImxvY2FsZSI6ImVuIiwiaWF0IjoxNjE4NDE0NDk3LCJleHAiOjE2MTg0MTgwOTd9.ESf36yhHKBbzEMt3bRrBP0ufUZodkq5tM5DOEJDCfIUn1rC17sQaBlD8sqdkBJYXKAP4eBn5dWzvk-A7CYcQx4OxHetPoLY9dPdI5ihUQVNxIEzFwNOwAawI9bdUvDPkswzsjSgOk504zX_s7F8zp9QJ8w5h9TiJbTE8vFsi11yYDnCZvwi_8Luehm6qy1QhEjk234yivWG_JmibqJW9eXfp_fp9E6lMHd-L1e_WsRXSqCrK7wXojHj-HEaNc7bjPdjqPdOgD_10dGYXlYdU7MbbCbnd7CIgfPONhuM8jDesWBkw4HvnEGm211ziN3AF-_VRttMlYRAFq1T8rtuzEQ	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
ganesh kumar	\N	pganeshkumarece@gmail.com		\N	\N	221	\N	fa57fbdc0f52736184a090a39663cf3a263fcf70	1	\N	1	\N		ganesh	kumar	\N	\N	\N	\N	fATb4FZJDkO9hTnMuizGpj:APA91bFZ-WDSAZ0VLAZYz0UayePZpoP4twmU135uXrQ3vHqcN-Jg4HB6flxvAPo3vZC7bRZZSJdwaliE701mo8gjZ7vRxruV1DTEuNXYYNMZWI--2Tg482H9pNcsuZLY9m51AQaYHKT3	\N	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	\N	2	2021-04-14 15:48:09	2021-04-14 15:48:10	\N	\N	\N	0	eyJhbGciOiJSUzI1NiIsImtpZCI6Ijc3NDU3MzIxOGM2ZjZhMmZlNTBlMjlhY2JjNjg2NDMyODYzZmM5YzMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDgzMTk1MzM0ODM0MTY0MjExODIiLCJlbWFpbCI6InBnYW5lc2hrdW1hcmVjZUBnbWFpbC5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXRfaGFzaCI6ImtUSHdmRmo1NHdRTjhiSXBsN2VIX3ciLCJub25jZSI6IkYwYUZPbE9wUzIwZHdzREtDU3V0aEs3TU9ZR3pRaDVjZUZOdkdKc0t6V2MiLCJuYW1lIjoiZ2FuZXNoIGt1bWFyIiwicGljdHVyZSI6Imh0dHBzOi8vbGg0Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8tTFZQQlh5cXNPeWcvQUFBQUFBQUFBQUkvQUFBQUFBQUFBQUEvQU1adXVjbk1fMERYM3YyM2QtQ05odk5mSkdBcUxvdWJlQS9zOTYtYy9waG90by5qcGciLCJnaXZlbl9uYW1lIjoiZ2FuZXNoIiwiZmFtaWx5X25hbWUiOiJrdW1hciIsImxvY2FsZSI6ImVuIiwiaWF0IjoxNjE4NDE1Mjg1LCJleHAiOjE2MTg0MTg4ODV9.PZqn4qOL72g2GhmNDXWtINl2sE1fpFXWy52OQKRsO7G9FkCj_is69kDX7O0ydv-9z4KnIZiwxeARbYFW1bKWWKPu0Q9FIcX0_csd3X2iitv9CN5E5SgwC2H5HzHM36iBwGIFa3xSUp3IDwRkj2z7PN7nmmvxDgTKxRYNhzxYI1xoPJ7KchRY_vwOP-jVRfTshV9w2pD-6KslDGDRGfmMjZvTPpsi35m-SyKK2BLlGqvhwj_KpESq8ebOvUlAV_zW_hyLgbXpFfRR3LHl_BxIlz1aO4sxJ8aE9qvq07epO0F0-iPXUF5j8MKmC2ULSAujsRVDzoyRktMXiN3dbA1E4Q	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
ganesh kumar	\N	pganeshkumarece@gmail.com		\N	\N	222	\N	4b673421c6838c5c50fbb9d7424a708b45f5ed77	1	\N	1	\N		ganesh	kumar	\N	\N	\N	\N	fATb4FZJDkO9hTnMuizGpj:APA91bFZ-WDSAZ0VLAZYz0UayePZpoP4twmU135uXrQ3vHqcN-Jg4HB6flxvAPo3vZC7bRZZSJdwaliE701mo8gjZ7vRxruV1DTEuNXYYNMZWI--2Tg482H9pNcsuZLY9m51AQaYHKT3	\N	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	\N	2	2021-04-14 15:54:03	2021-04-14 15:54:04	\N	\N	\N	0	eyJhbGciOiJSUzI1NiIsImtpZCI6Ijc3NDU3MzIxOGM2ZjZhMmZlNTBlMjlhY2JjNjg2NDMyODYzZmM5YzMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDgzMTk1MzM0ODM0MTY0MjExODIiLCJlbWFpbCI6InBnYW5lc2hrdW1hcmVjZUBnbWFpbC5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXRfaGFzaCI6IktBT2pJeTNpRGVLNF94VkNWZC02N2ciLCJub25jZSI6Ilg3aVp6OXd3S3VUcERkUy05Wmt1bEI4ajZSbEJ2MVdwcHRRcEtDTUJHRm8iLCJuYW1lIjoiZ2FuZXNoIGt1bWFyIiwicGljdHVyZSI6Imh0dHBzOi8vbGg0Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8tTFZQQlh5cXNPeWcvQUFBQUFBQUFBQUkvQUFBQUFBQUFBQUEvQU1adXVjbk1fMERYM3YyM2QtQ05odk5mSkdBcUxvdWJlQS9zOTYtYy9waG90by5qcGciLCJnaXZlbl9uYW1lIjoiZ2FuZXNoIiwiZmFtaWx5X25hbWUiOiJrdW1hciIsImxvY2FsZSI6ImVuIiwiaWF0IjoxNjE4NDE1NjMxLCJleHAiOjE2MTg0MTkyMzF9.QNu369nFlPZKfJI4qjSzPWjwFn_04uw6OKHcVorNRTl9j6mLwNxQNR_yMa99zUOa2n7DcUW0sEhFd8dqobo_HViT0VI0QYt1wRoAMJOv1p8o1mq6e5V8oawI1y9N_qX3mqQyxHlIh-k3YSwWgtRAnSFQBGo-o5tTVarpUB7PIzPgYnkg_v98GgrrsFjuki2UaGtQp5KhLBbb5_L8XYMsdgF3b3AAgDsRFH7P9NBAcyprNaKxW-A5kQ09_pmopCsQXtalMcJ5oncCWolXsF61EgZAq_GWq5gsWlqTw7QtzYBWdVUOQBFweHXw80oJYmeIKgN9H7zdHK4XgHnvX_pWwA	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
oppo nextbrain	\N	opponextbrain@gmail.com		\N	\N	225	\N	7d05494dd03d223b138ef5c6afeb7dbb1f48729c	1	\N	1	\N			oppo	\N	\N	\N	\N	ci0_B-0ZSjO3EKZh-0qDyy:APA91bEQC0Nle_W3AbqWVlF5Y5BJ1O1ymAPVpU3NDLVr90lliukipnIZ677h30R-lBGrBr66XDYqyWt1VfyruBMMGk9B8TkcX0TaU4suSlRUeUIE3Bl738QZY068k6knoJvICsTzmOrW	\N	\N		\N	2	2021-04-15 05:10:15	2021-04-24 06:12:59	\N	\N	\N	0	118406714405947899785	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Bilal Hassim 	\N	bhassim@gmail.com	\N	$2y$10$J/vREu7DstKeDnTG2b83pe5TKLWiQ2RjrgZzga4wWyMZSsE1VMFjS	\N	270	\N	hH8boiN3iMb7ZJq2Li6V1QeBY9TB7ncaRhNk	1	kF2BVAl3t5hM	1	+27836112798		\N	\N	\N	\N	1	04/23/2003	fwl54fo6TFmxvCkZb07jTK:APA91bG2gdBs5uB3HHEJfeUR1csFgBFyBTkh4XgOrFfuU3HXdFW5SmtwkBiatmHD8zu1OhbOhVvJg1iPLxeJy7egpWfunLoZJTJ_Cc6HBfWRATPixC0NOGUmdp8q1xAUlStyUnYyHjaQ	\N	\N	5e0b2d9bd361b3e9	\N	2	2021-04-22 16:34:00	2021-04-23 07:21:48	836112798	Please update your physical address.	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	836112798	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ramesh Kolla	\N	ttt@mailinator.com	\N	$2y$10$/.VQ/3v3/dkHnK8yT//AceZCIqI9Wjj3MOud1y02ThoeLWEixymoq	\N	286	\N	k74eNsMljEgORb3XB6N6km5PKg6pQRqynLwB	1	ki45gzWK	1	+279606169045		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2021-05-04 03:33:40	2021-05-04 03:33:50	\N	Qonce, 5601, South Africa	\N	0	\N	\N	1	\N	3	-32.8795729	-32.8795729	\N	\N	0	+27	9606169045	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	123456
null	\N	raneelimon.98973@gmail.com		\N	\N	319	\N	731ebd6961e9275a2feef38a06839a10d0c65c51	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:22:06	2022-09-13 10:22:06	\N	\N	\N	0	107221975040745015389	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
ganesh kumar	\N	pganeshkumarece@gmail.com		\N	\N	223	\N	03f98023880f4910e405076964134bf0d028e96f	1	\N	1	\N		ganesh	kumar	\N	\N	\N	\N	fATb4FZJDkO9hTnMuizGpj:APA91bFZ-WDSAZ0VLAZYz0UayePZpoP4twmU135uXrQ3vHqcN-Jg4HB6flxvAPo3vZC7bRZZSJdwaliE701mo8gjZ7vRxruV1DTEuNXYYNMZWI--2Tg482H9pNcsuZLY9m51AQaYHKT3	\N	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	\N	2	2021-04-14 15:58:00	2021-04-14 15:58:01	\N	\N	\N	0	eyJhbGciOiJSUzI1NiIsImtpZCI6Ijc3NDU3MzIxOGM2ZjZhMmZlNTBlMjlhY2JjNjg2NDMyODYzZmM5YzMiLCJ0eXAiOiJKV1QifQ.eyJpc3MiOiJodHRwczovL2FjY291bnRzLmdvb2dsZS5jb20iLCJhenAiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJhdWQiOiI4MzI3MjM3NjAzMzgtZGxtNDNiNmZkcHFwcXU1MzgyNTcwMXJudjJodmZwcnIuYXBwcy5nb29nbGV1c2VyY29udGVudC5jb20iLCJzdWIiOiIxMDgzMTk1MzM0ODM0MTY0MjExODIiLCJlbWFpbCI6InBnYW5lc2hrdW1hcmVjZUBnbWFpbC5jb20iLCJlbWFpbF92ZXJpZmllZCI6dHJ1ZSwiYXRfaGFzaCI6ImJBTzJGT3lpVEI2ZVNYWmR3Q3lMNWciLCJub25jZSI6IkRXeFJiN3lUQlUzY3k4NU84UFFUMS1lNXB0eGtMTGxwWjFCOE9kRTFxUXMiLCJuYW1lIjoiZ2FuZXNoIGt1bWFyIiwicGljdHVyZSI6Imh0dHBzOi8vbGg0Lmdvb2dsZXVzZXJjb250ZW50LmNvbS8tTFZQQlh5cXNPeWcvQUFBQUFBQUFBQUkvQUFBQUFBQUFBQUEvQU1adXVjbk1fMERYM3YyM2QtQ05odk5mSkdBcUxvdWJlQS9zOTYtYy9waG90by5qcGciLCJnaXZlbl9uYW1lIjoiZ2FuZXNoIiwiZmFtaWx5X25hbWUiOiJrdW1hciIsImxvY2FsZSI6ImVuIiwiaWF0IjoxNjE4NDE1ODczLCJleHAiOjE2MTg0MTk0NzN9.e2hgOr70rdoPBHY9Xixz8OGe5-9ce8XA4TRHnQHMXueLtHgb10H0ULptQJSSXfAWWkqCHuPArQWjvQicuBy9n-dekRJjr6gArZZG5fLO-9vVu9xHzDpMS9Cc8Z2-SBmNsThlO5LuSHniORPNccKy1DWvXoltHpWOxqy5X8XNJFMKqeV-A3T9P2DPND2sKq7AF8p44eWueU_SZIXupVYDG2UABw1F0irSB8RegX5LTirBegRtvsfdTVAra5NjHWUIR2mG5jpHVe9_TOSk2PRi-wkGM_Mfm6a41dSN4mLhRcRhqfYKfZ0sjccWwUX-VPeB0HRFhbN4r0HBSGxJ7BH3AA	\N	2	\N	\N	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Moksha Nettem	\N	roleu@getnada.com	227.jpg	$2y$10$7M0T6I/uuu/sSkUntshqpuVQ/CX1k1EjoMmhMECgE2MY.eVl5Svlu	\N	227	\N	31b47fef66a957e7146ffa277b584bf0fa793cb7	0	0f9ee70992301abf09cd752409a11943bbe93772	1	9606169056	M	Moksha Nettem	\N	\N	\N	1	05/05/2000	\N	\N	\N	\N	\N	1	2021-04-15 17:14:02	2021-04-17 18:11:59	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
preethi	\N	preethi.s@nextbraintech.com	228.jpg	$2y$10$dObePQYGcYIr5F43UejtPepnffpc2aBzk4/lj5qhjEOWJYBnDPkLa	\N	228	\N	f0217e66d12e55f19f8b7080a31d17da25d6e724	1	K6QGcqENLAO7	1	+919514836224		\N	\N	\N	\N	\N	04/07/2021	\N	\N	\N	\N	\N	1	2021-04-15 17:57:15	2021-04-15 17:57:17	\N	1st cross street\r\nmain road	\N	0	\N	\N	1	\N	3	\N	\N	\N	228.jpg	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
new	\N	bucks@mailinator.com	\N	$2y$10$facQdLriuJiAuLAO10/4IeppySR82jYuDLyyW71YFr.4d42FpdPNu	\N	271	\N	CtziWJ7QUDYrNSUa6LnqNQ0ukwSTDRIF8jxZ	1		1	+919080942666		\N	\N	\N	\N	\N	04/08/2003	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	2a491e780345d324fdfdab887ba732c0f487d0b410376f6564844f23295890f8	\N	\N	3	2021-04-22 17:09:45	2021-04-22 17:16:20	\N	whitefield 	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+91	9080942666	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Rajini	\N	rajinigowda@mailtest.com	\N	$2y$10$50eqQA1q1e7GXiSCt3ofAOxywDFJZpbwPEo2zZj08j3bKq04WFU4C	\N	287	\N	pEBkqKEptTywYyBFxtGcPVdXpRCJtJVTIVch	1		1	+279912641725		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	1	2021-05-06 14:30:08	2021-05-06 14:30:20	\N	South Hills, Johannesburg South, South Africa	\N	0	\N	\N	1	\N	3	-26.2476095	-26.2476095	\N	\N	0	+27	9912641725	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
zunaid 	\N	zunaid@connectivdigital.com	\N	$2y$10$9m/FAedAVMsia3Le.nUULeyi68xBguqzTYfWLZJis1xgiAkZ3omwm	\N	169	\N	077aa80391a4e3ae260763f374b23a438ecb290e	0	PBRV1SZIDppP	1	+270795004075		\N	\N	\N	\N	\N	\N	cMU6VbHEQcyFasGm0TvLLX:APA91bEiaGqezx4igE49hURpiIoAh1EZo20DzXO_ky73vPM-Q3ixLJEwdW8tS0VCqF6Kj1jEYuh2wupeKEjwY4i0GgpjYjedv4TY7h_yg1vTLqghBkWn43kaz2VvSaVMeZPA84n7RUvo	\N	\N		\N	2	2021-04-02 13:29:19	2021-07-30 14:54:47	\N	72 Mazisi Kunene Rd, Bulwer, Berea, 4083, South Africa	\N	0	114171096921017160959	\N	2	\N	4	\N	\N	\N	\N	0	+27		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Ganesh	\N	pganeshkumarece@gmail.com	224.jpg	\N	\N	224	\N	851ca165bcdd69ffacb2e5d1359d2fafc22c3ff3	1	\N	1	+919080942699		Ganesh	iOS	\N	\N	\N	20-Jan-1989	\N	76E726D0-9641-474A-835A-2EDFF68E9F35	fFxvL2TdekfsrrgmEvmTSN:APA91bG3A9D0wxLClm0QSs64Rca_SW0NLYJyKmnn0zP6qC64MXGZ-Gyt8le_zULojDBLVeviw3Q8Aj8wjeAPXpK2Ia12MBzS0tne2Fu1OgVS1Ib22RnCZOAmVm5BhwjIk48XCmbXiiDs	\N	\N	3	2021-04-15 04:52:48	2021-10-19 08:12:33	\N	46, 1st Cross Road, Prashanth Layout, Whitefield, Bengaluru, 560066, Karnataka, India	\N	0	\N	\N	5	000221.40d1a405d98249d68bec9f346ca1602d.0451	\N	12.984062194824219	77.75013408632097	\N	224.jpg	0	+91	9080942699	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
seetha	\N	seet46@getnada.com	\N	$2y$10$Llv.bZ02vVwIKjUOGRMDfemZJ.7ORTtbRNZnWvZvjdG3T.NeFuGZS	\N	11	\N	YqA2M7Gx3j05p5a9tT4EwlzTlfEuhtezgeeP	0	9hqGzRpow9mv	2	\N		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2020-12-14 08:57:38	2021-08-10 14:15:48	\N	prashanth extension,whitefield,bengalore,karanataka	\N	0	\N	\N	1	\N	3	\N	\N	2021-08-10 14:15:48	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Charissa Walls	\N	byzegihel@mailinator.net	\N	$2y$10$Kk7kzj.KDJkLdBr5WNHkRei414BSp9.DA1U6ZNYwogoTS347tfURG	\N	307	\N	Pi7tjzIKLNi6hATuozQdNz4GlRDxaOY0SnbN	1		1	+270362414964		\N	Terrell	\N	\N	\N	11-Apr-1991	\N	\N	\N	\N	\N	1	2021-08-16 14:48:58	2021-08-16 15:45:46	\N	Cupidatat itaque vol	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	0362414964	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Sonya	\N	sonyar@mailinator.net	\N	$2y$10$Xkd1OJGxGHkCN4NF0CQkae7xvN35Zj4j/CSAQofvqWpHhXrT/uJWu	\N	308	\N	u8U4BNaEe1l09j9LerFDzKsoXOaqkI8r5LRH	1		1	+270466728131		\N	Rivera	\N	\N	\N	11-Apr-2002	\N	\N	\N	\N	\N	1	2021-10-26 17:47:09	2021-10-26 17:49:41	\N	296 South Coast Road, Rossburgh	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	0466728131	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
Karthick M	\N	karthick.m@nextbraintech.com	\N	\N	\N	309	\N	46fd90fa87158d4e7428a2de7c336310a0c446f2	1	\N	1	\N			Karthick	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2022-01-18 13:56:22	2022-01-18 13:56:22	\N	\N	\N	0	104677577748638701437	\N	1	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
10BucksOnly	Admin	10bucksonly@gmail.com	1.jpg	$2y$10$6PBsyLC18iF.h./jgkPWiuqp2b4Jk2KnNPIC9LHhHcd3Oa35eoabK	BbYXX90n9qLGnBrmhUzFVSMjE265wk3A07PDvucxvbGfeNjFqrtFW5PldVYI	1	\N	416486e64f604a650c630e64e4ed1410b80dc2a4	0	\N	2	+919876543210	M	10BucksOnly Floris	Floris	\N	\N	1	1970-01-01	\N	\N	\N	\N	\N	2	\N	2021-04-06 17:11:46	\N	\N	\N	0	\N	\N	1	\N	1	\N	\N	2021-04-06 17:11:46	\N	3000	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
donor	\N	donor@getnada.com	\N	$2y$10$gOMfAVYRahF6P8FItX43W.nhoD5FGB5Bz5K5q7OjTu48amJFgng8a	\N	310	\N	HMSxTAm7ulyzB2zEzaNMhT4ZvSovR2xaPVdA	1	qgBWlLLzrS3I	1	+2791		\N	test	\N	\N	1	01/01/2000	\N	\N	\N	\N	\N	1	2022-02-10 07:46:21	2022-02-10 09:48:35	91	India	\N	0	\N	\N	1	\N	3	\N	\N	\N	\N	0	+27	91	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
null	\N	billiconaway.95874@gmail.com		\N	\N	311	\N	420c27940947a05e056bf060b2c5d3acb164c3b5	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-04-28 14:47:39	2022-04-28 14:47:39	\N	\N	\N	0	114325264758647177587	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
praveen 	\N	praveenkumar@nextbraintech.com	\N	$2y$10$H1FpEiS3cL2kp9Nk1f8E1uXuIibRebOIc4jxA/7ySAEoTJBL7gS0.	\N	312	\N	FE0q6EHDktnjLGphdJ9lSwGC7Rq2iZ2b00MG	0	J9dbKmX8	1	+917558169247		\N	kumar	\N	\N	\N	07/26/2000	cJffc1zlTH6rG_T9VXa0Mj:APA91bH5GYk90GIZqQrXMbyVHkT7APySQuNUp1Bk-CY_3zBY8oiQygu6LnyTHSg-vcYE7SS45UJB7mIsZOA1cenfaVGW9QsGU9VKFueW8uh4Q4C07QhU56QGWAUvyp3wUmd1DAyBLQcd	\N	\N	7710dc1687b20b4e	\N	2	2022-07-26 09:49:54	2022-07-26 09:49:56	\N	Bangalore 	\N	0	\N	\N	1	\N	3	12.9839056	12.9839056	\N	\N	0	+91	7558169247	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
null	\N	shakiraclinton.91567@gmail.com		\N	\N	313	\N	2839e2ac6827badc664af7a24bed23bfe06e097f	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-02 07:05:41	2022-09-02 07:05:42	\N	\N	\N	0	101977614093876115224	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	carolinaputnam.95761@gmail.com		\N	\N	314	\N	c983880c559e8b9837aeaa1049168bb82b0a71eb	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:18:51	2022-09-13 10:18:51	\N	\N	\N	0	112993286213353150827	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	doloresharrington.32125@gmail.com		\N	\N	315	\N	f28ee41048e1cc2ef6cbe4e83941218d8c29b202	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:18:57	2022-09-13 10:18:57	\N	\N	\N	0	104755800046315323285	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	miltonmcdaniel.04733@gmail.com		\N	\N	316	\N	b051c3b6cd6e1516c19348fe789c05dd24615890	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:19:54	2022-09-13 10:19:54	\N	\N	\N	0	104011880051648885318	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	joelstevenson.01836@gmail.com		\N	\N	321	\N	c0b64be1a19f741640d869805dd7fffe80cefded	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:22:11	2022-09-13 10:22:11	\N	\N	\N	0	117148440865652659755	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	lynnehanson.11213@gmail.com		\N	\N	322	\N	f897c4e997b707292e1e5514a05dbc30dedc2702	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:27:39	2022-09-13 10:27:39	\N	\N	\N	0	101283276477366986604	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
zunaid 	\N	zunaidfloris@gmail.com	\N	$2y$10$iGUCFd3wHL4BIKs8fNM1lO.uJ5vqsWlg3qqEczPgnC4dmuaICoXrS	\N	168	\N	rsrQOxt6pvDguCabyA4ff9qBtKFzNLio6PiQ	0	Rpf4oVF0IINd	2	+270795004075		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	2021-04-02 13:28:44	2022-10-17 16:06:50	\N	72 Mazisi Kunene Rd, Bulwer, Berea, 4083, South Africa	\N	0	\N	\N	1	\N	3	\N	\N	2022-10-17 16:06:50	\N	0	+27		\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N	\N
null	\N	rubyflowers.60685@gmail.com		\N	\N	323	\N	58e3f84de271c3e2b79acfd43c65d8e819f46017	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:27:44	2022-09-13 10:27:44	\N	\N	\N	0	109605493018753968713	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	abrahambanks.35170@gmail.com		\N	\N	324	\N	63ecc6300139bc230d8170a0e0149ee0617a3b01	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 10:29:29	2022-09-13 10:29:29	\N	\N	\N	0	115173019934652881673	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	wandafreeman.76152@gmail.com		\N	\N	325	\N	2f2b5acc1f26304094ab5d27ae92a1df87587aa6	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-13 11:13:05	2022-09-13 11:13:05	\N	\N	\N	0	113529463895515397010	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
John Doe	\N	mnldevappeals@gmail.com		\N	\N	333	\N	1091dfaf4b879b449631605273a40cb1f8a48ab4	1	\N	1	\N			John	\N	\N	\N	\N	e0qjTnMRR2eSLNEFNJXIJm:APA91bEL37wTlCW51gJVz3FQwaXdklQ4JpAj3gED5bccBxAmtP9MrS3kHZKB85Mp4IVAEiIBkWMJyHMVjdRczvrcQEPLB3l96vN6nJIKgQ6j0_BM-PvguEs6wJ7BR8Q56qKCqgmUpPDc	\N	\N		\N	2	2022-09-15 15:37:51	2022-09-15 15:44:20	\N	\N	\N	0	114508626627472185124	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
KUL Wave13	\N	klwave13@gmail.com		\N	\N	326	\N	b467b3801482aa28a605303bc974c705c27cc9d9	1	\N	1	+60123456789			KUL	\N	\N	\N	09/01/2004	ca1_o3DQQR-urWDW_cT2Yo:APA91bGRJJcfsSEKsD8Z-HB3JThIqcFY5LmT3TrxsEiQ8pAGFc1q-0KB1VN4hnbw-SeMcW9kY7BEtmH5XQi1R8uBjf-1Ev37MIKCkiVCbYPKU73JOmq5RjOb-XbEwGPVrN2l5-0p0k-6	\N	\N		\N	2	2022-09-14 08:02:44	2022-09-14 08:03:47	\N	sxgeaww2tsdgwqsgggswtgfdfwqft	\N	0	101813131493780901728	\N	2	\N	4	\N	\N	\N	\N	0	+60	123456789	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	irenegomez.64945@gmail.com		\N	\N	338	\N	f223f1a058a51fa106bbd549cbe171aaa6ab27cd	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 11:19:03	2022-10-17 16:06:24	\N	\N	\N	0	108928305391365392642	\N	2	\N	4	\N	\N	2022-10-17 16:06:24	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	idaturner.31877@gmail.com		\N	\N	327	\N	433477a3c0538e54c447d58734a81084a49e0f1d	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-14 08:16:58	2022-09-14 08:16:58	\N	\N	\N	0	115360739271016388002	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
John Wick	\N	appealsklmy@gmail.com		\N	\N	334	\N	fad2101aeccfe525d3c17231c2d14104a4b7b03d	1	\N	1	\N			John	\N	\N	\N	\N	cNlyJaFMStiS7mikpwooYY:APA91bE425w5cEHM24X1gEZoMuTvGyijvdKoM89kndUlXuFTZo-uHbJ0zKNuxqlaFMBuG7K3J-s1w6KUctBWEStKgQcg5pYSDiXoJhZlBSfhk2lmYU33RcXrIG7l8WVSxjhR04pu1K36	\N	\N		\N	2	2022-09-21 07:39:00	2022-09-21 07:39:00	\N	\N	\N	0	110225595965494660828	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	everettedwards.66816@gmail.com		\N	\N	328	\N	a2b3c3898c457662fd9832c02d1614aba7ea1ae9	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-14 10:51:29	2022-09-14 10:51:29	\N	\N	\N	0	108535681158085030840	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	sheilamurphy.87547@gmail.com		\N	\N	329	\N	ee15cb7d12c48e75fc066d66224043c64c143efb	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-14 11:20:45	2022-09-14 11:20:45	\N	\N	\N	0	108224103810632447988	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	sonyagibson.13839@gmail.com		\N	\N	330	\N	04ccdaa8dcc4132ab19026cfa9c0fff229efd455	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-14 15:56:05	2022-09-14 15:56:05	\N	\N	\N	0	101919638485121746932	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	janicemoran.02096@gmail.com		\N	\N	335	\N	b74b5bd65595249cce3a8fec03b752a2320f8a0b	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 11:15:21	2022-09-21 11:15:21	\N	\N	\N	0	111012359979219288199	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	tracyphillips.09064@gmail.com		\N	\N	331	\N	bec39f220977658a9900cb4d791ed39a55f66037	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-14 16:08:49	2022-09-14 16:08:49	\N	\N	\N	0	108464708457954821614	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
GPT2 Testing	\N	qwe.gpt22022@gmail.com		\N	\N	332	\N	6459a8da11ca56e80881234c0d674864ea813ef0	1	\N	1	\N			GPT2	\N	\N	\N	\N	eOLZG5AkQbaYxZ2TXQexpF:APA91bHT3MOCOY795PuBr2u3Wkv0rnv_QQ9InhcZTgB8XWPJGSqiss99XWHyAlhVb7pKWSf7s1YaIKGmYH4QE0EJji0ryK7ETBT4_E9PDHh9jnxw6W6a-Bj5J9XNRCAw0U_S9M-5lszL	\N	\N		\N	2	2022-09-14 16:14:55	2022-09-14 16:14:55	\N	\N	\N	0	105496980551645626393	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	vaughnwerner.81623@gmail.com		\N	\N	336	\N	c88bc55555aececcfc8f90bf740cf9a888f44b94	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 11:16:35	2022-09-21 11:16:35	\N	\N	\N	0	110696858695138181495	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	sonjalyons.15122@gmail.com		\N	\N	341	\N	5ad4da11f24e7b0e5c169380921d398c1d027614	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 11:22:56	2022-10-17 16:06:05	\N	\N	\N	0	118111355213210848464	\N	2	\N	4	\N	\N	2022-10-17 16:06:05	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	calebray.40758@gmail.com		\N	\N	337	\N	d3516bbecb64d2ab918abdf62ee1a37a8d09ac61	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 11:18:05	2022-10-17 16:06:31	\N	\N	\N	0	117801263275466146779	\N	2	\N	4	\N	\N	2022-10-17 16:06:31	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	katherinehall.66458@gmail.com		\N	\N	340	\N	37052ac2d02c5c485f4309087a1a656e4a0ac25c	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 11:22:29	2022-10-17 16:06:09	\N	\N	\N	0	110960554548031168748	\N	2	\N	4	\N	\N	2022-10-17 16:06:09	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	sharondavidson.47744@gmail.com		\N	\N	344	\N	122f7c0882624a28dabd62061879f5df7241439d	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-22 07:52:33	2022-10-17 16:05:51	\N	\N	\N	0	114049000371420586256	\N	2	\N	4	\N	\N	2022-10-17 16:05:51	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Zunaid	\N	zunaidfloris@gmail.com	\N	\N	\N	234	\N	de28eeef77c2f2ebc9c9dff613446b4b2096a92e	1	\N	1	+270795004075			Floris	\N	\N	\N	02/04/1985	d-Ft7ektS3OFayh7RXXAlL:APA91bHsJWdq0qv_cXvDD9xVdOx1aKcGc_zEreeXmlk_khQTSwgI6KZCofegoWuFMUdiC2VPCpLEcQJMswkwn2S18Qc_K1ALFv7NGg5pttd7bqVmx0nuPOh1EZr1SHCxuZsP6qf9Dapd	\N	\N		\N	2	2021-04-16 18:32:02	2023-02-19 12:47:37	\N	33 Churchill Road	\N	0	111563393703006048965	\N	1	\N	\N	\N	\N	\N	\N	0	+27	0795004075	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	mandyfrench.06446@gmail.com		\N	\N	343	\N	6d122a885d2f77967511b3859257b0ccca41a9f5	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 12:08:38	2022-10-17 16:05:55	\N	\N	\N	0	106205325361245945296	\N	2	\N	4	\N	\N	2022-10-17 16:05:55	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	manuelburke.12077@gmail.com		\N	\N	339	\N	222295fbfcfaadfe87f9fe4be947d6a9e2068209	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 11:20:02	2022-10-17 16:06:14	\N	\N	\N	0	107438373883489171960	\N	2	\N	4	\N	\N	2022-10-17 16:06:14	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	andrealvarez.13409@gmail.com		\N	\N	345	\N	132b90f60798376cbc544e0aa57e8a66293bff45	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-22 15:34:35	2022-10-17 16:05:41	\N	\N	\N	0	110442975415245130386	\N	2	\N	4	\N	\N	2022-10-17 16:05:41	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	edwardgreen.88115@gmail.com		\N	\N	342	\N	8eb759ad0d1c834d2eb9bd11d238ad6e5fe59301	1	\N	2	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2022-09-21 12:06:32	2022-10-17 16:05:59	\N	\N	\N	0	108219305704274795480	\N	2	\N	4	\N	\N	2022-10-17 16:05:59	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	claritabarrows.22671@gmail.com		\N	\N	347	\N	beae776ce6f4455ab8796b1120ba92c79e50d958	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-09 06:57:06	2023-02-09 06:57:06	\N	\N	\N	0	110148865136761471033	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	bethanymassey.97298@gmail.com		\N	\N	348	\N	b306754c45cc065924811daa567881fc9912a871	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:48:56	2023-02-16 10:48:56	\N	\N	\N	0	103368152582834977517	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	lorenzolawson.48503@gmail.com		\N	\N	349	\N	01d69c79c07b1a43320e46f9680a68598750e68f	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:49:36	2023-02-16 10:49:36	\N	\N	\N	0	113438553675647845925	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	inezlong.55802@gmail.com		\N	\N	350	\N	fba99d223f032e46e29d3d6b526240592568570c	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:50:31	2023-02-16 10:50:31	\N	\N	\N	0	117232123307389056079	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	rochellejames.02269@gmail.com		\N	\N	351	\N	84b60c20a59a56fd52e6c9035b3eb09c4686a685	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:50:33	2023-02-16 10:50:33	\N	\N	\N	0	115445197296075635628	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
krishna	\N	krishnakumar.d@nextbraintech.com	\N	$2y$10$czzlHD5j9e9KtJBDW16igerwWm6J.pga0K8a/fdCz06uQoBBO7/vS	\N	191	\N	8f2791e4b87da8dbfa84a0dd47c07252359ced5b	1	WQvLqtrJ	1	+918680946634		\N	test	\N	\N	\N	05/14/2003	fBkkh5FaRySH4B1c2mjmY8:APA91bHF3W0skpph-8EbdJOOWHNhcIV5CBWu296YYdhTucB53n6VawcDuvfNuuDaC442vYqPMFqOwJEm3GLYzkL3ViMtOTwSJ_6kh_QPycg-4CmHHsT5susNXL5tQdssWlzlK2UxCo7S	\N	\N		\N	2	2021-04-08 07:27:18	2021-05-17 15:17:20	\N	#44, 2nd floor, 1st cross, 2nd Main Rd, Prasanth Extension, Whitefield, Bengaluru, Karnataka 560066, India	\N	0	116218517010340286265	\N	2	\N	4	\N	\N	\N	191.jpg	0	+91	8680946634	\N	\N	\N	\N	\N	\N	\N	\N	\N	bf5580ba3f7b4fb938ea73c3baba06b3bae2313b	1316537377_LOCAL_191	\N	\N	\N
null	\N	vickycoleman.26508@gmail.com		\N	\N	352	\N	285fe4ee3d508d198390beea7afd39dbca9dd4b2	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:50:36	2023-02-16 10:50:36	\N	\N	\N	0	104358251892634727903	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	lynnehanson.11214@gmail.com		\N	\N	363	\N	cd796af98b73647f6489047a3735837eaede3080	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:56:03	2023-02-16 10:56:03	\N	\N	\N	0	107801556177564672678	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	chasahern.21469@gmail.com		\N	\N	353	\N	f317a8b219ea8081a69c9f76ea7d42b502f35ea1	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:50:42	2023-02-16 10:50:42	\N	\N	\N	0	117827765381255964244	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	clarencerhodes.75923@gmail.com		\N	\N	354	\N	a510e9eb51d5bc0e9c70eeb05d04b5546f9221f6	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:50:47	2023-02-16 10:50:47	\N	\N	\N	0	106788066851294620587	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	allisonwright.92857@gmail.com		\N	\N	370	\N	d06a5029e7e1c318d54ab637f67616e59f246103	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 21:27:27	2023-02-16 21:27:27	\N	\N	\N	0	114096941334056957521	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	lionelbecker.85900@gmail.com		\N	\N	355	\N	b84d3126d397802080d4070d7d9f2bd256a6a187	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:51:09	2023-02-16 10:51:09	\N	\N	\N	0	106135264302052017878	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	deannadoyle.63897@gmail.com		\N	\N	364	\N	dc7c9f49c049bd3362f0435aa41f07b869838461	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:57:42	2023-02-16 10:57:42	\N	\N	\N	0	116848484729884167755	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	geoffreyfrancis.83221@gmail.com		\N	\N	356	\N	69424624b8766e6cdf4c34c31552b87b02fe53b3	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:51:18	2023-02-16 10:51:18	\N	\N	\N	0	115021915328958133986	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	priscillachapman.13205@gmail.com		\N	\N	357	\N	9b5c9dd56de3a9f967e50ed71b1badf45ab2f170	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:51:37	2023-02-16 10:51:37	\N	\N	\N	0	106936139670567966006	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	neilhines.55444@gmail.com		\N	\N	358	\N	43ca9964b3b52f08bb0a7736b981e0fe47da2412	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:52:19	2023-02-16 10:52:19	\N	\N	\N	0	104419513534595673267	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	danaflowers.03321@gmail.com		\N	\N	365	\N	fa0d0ab8235c3052490bcc4a2f118a186dbfe141	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:58:20	2023-02-16 10:58:20	\N	\N	\N	0	111800695309318124873	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	sherrylawrence.09054@gmail.com		\N	\N	359	\N	3ad81908b80e047246aa6a79fbd2cdf33c7ad304	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:52:31	2023-02-16 10:52:31	\N	\N	\N	0	102640488227998684367	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	maureenbryant.52430@gmail.com		\N	\N	360	\N	0f1918ae9e4efd02f0aab1e29bff3845426572e6	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:52:45	2023-02-16 10:52:45	\N	\N	\N	0	108669522163155501803	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	danvasquez.58310@gmail.com		\N	\N	361	\N	fbdc6d0a1abe921bf6b6c8ba6f924ed22d4a4168	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:53:16	2023-02-16 10:53:16	\N	\N	\N	0	107430321504983079808	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
John	\N	matrixwave18@gmail.com		\N	\N	366	\N	3e7f225e30e2c6301de7aa418587bb5dc1de8e7f	1	\N	1	\N			John	\N	\N	\N	\N	fs2Wghj7QhSLQQuzUDMpDf:APA91bHd2iiQ13VuJl8bxNpSQq2pCaTL66Ur1NPPzJRzqIKAyEUtq8gLgPhTaPKzueR7EVDps6pInJMIgHOUvTBvxOvxqQ5qCKkXGbvXQwWUo1gp0DclSh2vJ0hbOldGya6s0XeRc_Zq	\N	\N		\N	2	2023-02-16 14:49:39	2023-02-16 14:49:39	\N	\N	\N	0	101449632531450468961	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	melodymoreno.44160@gmail.com		\N	\N	362	\N	f5540ade4c1d93c368d219fb30ffa522fdf72b4c	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 10:53:37	2023-02-16 10:53:37	\N	\N	\N	0	100926969062749834161	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	cecilwebster.53108@gmail.com		\N	\N	371	\N	7991b5ff8637efed3478077f769216f7fc34277a	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 21:35:07	2023-02-16 21:35:07	\N	\N	\N	0	100826900518524106582	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	doloresford.28835@gmail.com		\N	\N	367	\N	27e256e4031560140764318fc5a7133035cf46e4	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 21:26:03	2023-02-16 21:26:03	\N	\N	\N	0	102641569884306391581	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	dennisevans.54144@gmail.com		\N	\N	368	\N	7a4c1cc18214e481313ad660b59b8cfdbebb7e1f	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 21:26:05	2023-02-16 21:26:05	\N	\N	\N	0	113173544580052517531	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	jessetucker.99341@gmail.com		\N	\N	378	\N	2aff2496a24a5cc4e8e64d55403e9a5a1be54d19	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:26:38	2023-02-17 10:26:38	\N	\N	\N	0	105825644714812216841	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	samanthasharp.03174@gmail.com		\N	\N	369	\N	a49b77d34da34d05277b78566b7ab88aa008c028	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 21:26:18	2023-02-16 21:26:18	\N	\N	\N	0	100789065001197294470	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	bebeha.69060@gmail.com		\N	\N	372	\N	1a179f13d5a4d19c00073198bf69a00df1ddc3ec	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-16 21:35:39	2023-02-16 21:35:39	\N	\N	\N	0	112441585915867184994	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	jennyhunter.81027@gmail.com		\N	\N	375	\N	846382120880d7e59f94f2959e2c1848afe91026	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:24:51	2023-02-17 10:24:51	\N	\N	\N	0	103342649588445339729	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	faychapin.94728@gmail.com		\N	\N	373	\N	3f792b16ff2ac837c153e3e278276c4fe258589f	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 08:47:04	2023-02-17 08:47:04	\N	\N	\N	0	113460406993259874655	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	marionlynch.74222@gmail.com		\N	\N	374	\N	3d586f44768baf2b72ecc9ee6e87250c85a6fb5d	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 08:50:22	2023-02-17 08:50:22	\N	\N	\N	0	118256630798358131373	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	rafaelrobertson.42695@gmail.com		\N	\N	377	\N	23ed270feb01446899610158ae2a0aaeeae0d4ad	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:26:32	2023-02-17 10:26:32	\N	\N	\N	0	115901313662410645919	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	bethanylarson.31933@gmail.com		\N	\N	376	\N	a628670da7f673eda90187471657a20bce7f0eae	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:25:54	2023-02-17 10:25:54	\N	\N	\N	0	106376814024281932587	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	rickyfigueroa.12310@gmail.com		\N	\N	379	\N	398a8a16c35d2b48316f978e0b5c761ffb662ffc	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:26:56	2023-02-17 10:26:56	\N	\N	\N	0	110052069446393160745	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	gretchenmccormick.57619@gmail.com		\N	\N	380	\N	646339983f4baaf750b6648b9b121d19152aae3d	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:27:10	2023-02-17 10:27:10	\N	\N	\N	0	112939825395059270624	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	lamarsnyder.32019@gmail.com		\N	\N	381	\N	bc4cf2fa5a0d45b5dcc915fa51b2a847f5fa7315	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:27:13	2023-02-17 10:27:13	\N	\N	\N	0	111079024281218905030	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	alexiscarter.00638@gmail.com		\N	\N	382	\N	77f59c5d8cd2f05bfb46949be0293c48beda1e52	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:27:18	2023-02-17 10:27:18	\N	\N	\N	0	114103249018206802012	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	derekdennis.21948@gmail.com		\N	\N	383	\N	a774356920adee61f9285f76d133d81662bebfe6	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:27:45	2023-02-17 10:27:45	\N	\N	\N	0	113308196317071125208	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	gerardoreese.56584@gmail.com		\N	\N	384	\N	440093f4c552d879eed5f397d112be49b267c1ce	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:28:03	2023-02-17 10:28:03	\N	\N	\N	0	102265613373841607536	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	laritachilton.55835@gmail.com		\N	\N	385	\N	6ae1faaea592c5d6ff9524cb8fc4588361913f52	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:28:12	2023-02-17 10:28:12	\N	\N	\N	0	116085716947139919489	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	darylnorman.96002@gmail.com		\N	\N	396	\N	8d7cbe2e8f9350a9c056904a6ea3677cc5f440f7	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:35:49	2023-02-17 10:35:49	\N	\N	\N	0	117281759104265933488	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	matthewcruz.49611@gmail.com		\N	\N	386	\N	c2937595044602add7d81fccbd3e72cc8f106226	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:28:13	2023-02-17 10:28:13	\N	\N	\N	0	116002619400818355691	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	shawnparker.47312@gmail.com		\N	\N	387	\N	309c303223f7a5588b3d5141bc12ffdb06eea3bf	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:29:17	2023-02-17 10:29:17	\N	\N	\N	0	109130792447818669195	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	joncastro.78436@gmail.com		\N	\N	388	\N	d760b58435f86bd12bff767c8dfa9f5a00447b34	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:29:45	2023-02-17 10:29:45	\N	\N	\N	0	100806976055939552522	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	pablocolon.28543@gmail.com		\N	\N	397	\N	0b205fe2ce5c55af863a441fcdf3aea5ffe4a77b	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:36:57	2023-02-17 10:36:57	\N	\N	\N	0	106511061489969777495	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	willardelliott.34691@gmail.com		\N	\N	389	\N	70518b4ede90ff331bdea10523682e921c5b00cf	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:30:22	2023-02-17 10:30:22	\N	\N	\N	0	116019230864137426190	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	curtispearson.41958@gmail.com		\N	\N	390	\N	d5c151e9cdf90a292ec1a6aeb4b6ef87d88c12ba	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:32:28	2023-02-17 10:32:28	\N	\N	\N	0	111086306837155128478	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	danielmccoy.75670@gmail.com		\N	\N	404	\N	ac2298153e4b210832cdc6c3296a1a7bdcaaf1d1	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-18 08:57:59	2023-02-18 08:57:59	\N	\N	\N	0	102782630827699149377	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	vernettaschafer.15309@gmail.com		\N	\N	391	\N	d8e54afeacc1cb9e70fca97d860c624224c6e1a3	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:33:50	2023-02-17 10:33:50	\N	\N	\N	0	108663362407594653518	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	rickyfigueroa.15776@gmail.com		\N	\N	398	\N	50ca374c9cceb4399ef25f36b02eafc69ac08c13	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:42:53	2023-02-17 10:42:53	\N	\N	\N	0	111913782280958063808	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	samanthasharp.03138@gmail.com		\N	\N	392	\N	a4f9f21ecef5f418845728b264174cae34f3201c	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:34:04	2023-02-17 10:34:04	\N	\N	\N	0	105871824903230621986	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	elijahkelly.61815@gmail.com		\N	\N	393	\N	939804a276215afc97a1d33d3fa7907727c83fd7	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:34:36	2023-02-17 10:34:36	\N	\N	\N	0	100529730006840149458	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	doretheagaston.91335@gmail.com		\N	\N	394	\N	ed5a31f654fe360560534afb583c54d848740a9d	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:34:46	2023-02-17 10:34:46	\N	\N	\N	0	116204479979498444721	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	anniesimpson.39146@gmail.com		\N	\N	399	\N	0871eba34cb6c0f67d7563f3523b4904632aef12	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:46:01	2023-02-17 10:46:01	\N	\N	\N	0	111217120347154548615	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	nicolaswheeler.37792@gmail.com		\N	\N	395	\N	0feb4eee2c12d32eb72d19b9a31eadc05571cf00	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 10:35:16	2023-02-17 10:35:16	\N	\N	\N	0	117540860164123702578	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
Nuage Laboratoire	\N	BKKYL7TS2GM2MRLD2QF63ACMLI-00@cloudtestlabaccounts.com		\N	\N	346	\N	83a768d106cf200cb8715a9433debc0e86142ab1	1	\N	2	\N			Nuage	\N	\N	\N	\N	cDE1YKkQRT-29NtFrkLHIu:APA91bFlBQeOpu4GE3VNXg8GF-yhnqA1vYE1ot9ZU3B6F4ZjItqoGgPFXDNh1eGnAPwpKjEBFbCyVqA59RL6EvED5_XW2rCM09QUy1A3N6nKWkCued4A4HySlpPquwMQEeRneuOyF1bC	\N	\N		\N	2	2022-10-10 04:30:18	2023-03-06 05:00:39	\N	\N	\N	0	118189513185795502587	\N	2	\N	4	\N	\N	2022-10-17 16:05:36	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	kerryroberts.07646@gmail.com		\N	\N	400	\N	7c52feb7a05cb4b7776bf2d379fde01f16b81222	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 11:04:25	2023-02-17 11:04:25	\N	\N	\N	0	107536876833740105713	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	stephaniesims.90214@gmail.com		\N	\N	405	\N	1625877cd4ef7a17500b0b0c673420346f5c883f	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-18 09:50:31	2023-02-18 09:50:31	\N	\N	\N	0	117565054135453005657	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	joebarnes.25299@gmail.com		\N	\N	401	\N	1077f2bf0592764643ee07a1c68f3377ff1d274e	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 11:16:49	2023-02-17 11:16:49	\N	\N	\N	0	111446918295562517930	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	hazelphillips.42118@gmail.com		\N	\N	402	\N	c9ecf1f407146970e8544cd0f3dc8df796512523	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 11:25:51	2023-02-17 11:25:51	\N	\N	\N	0	110793870873653937652	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	bessiepratt.66320@gmail.com		\N	\N	403	\N	eee52049a8a39418fcd3faa48df305fbd2b3b17d	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-17 11:35:24	2023-02-17 11:35:24	\N	\N	\N	0	105232383913808035715	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
null	\N	daringlover.31365@gmail.com		\N	\N	406	\N	23066c16ec0a7f0eaf5b13e6de881497eaedf24d	1	\N	1	\N			null	\N	\N	\N	\N	\N	\N	\N	\N	\N	2	2023-02-18 10:08:03	2023-02-18 10:08:03	\N	\N	\N	0	113604078863881885649	\N	2	\N	4	\N	\N	\N	\N	0	\N	\N	\N	\N	\N	\N	\N	\N	\N	0	0	\N	\N	\N	\N	\N
\.


--
-- Data for Name: zones; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.zones (url_index, country_id, created_at, updated_at, zones_status, zone_code, id, city_id) FROM stdin;
angeles-forest	58	2017-08-10 10:55:30	2017-08-10 10:55:30	1	\N	1244	99
1861-monument-cir-indianapolis	58	2017-08-12 13:40:45	2017-08-12 13:40:45	1	\N	1246	98
e-broadway-rd	58	2017-08-23 13:02:13	2017-08-23 13:02:13	1	\N	1247	98
1740-e-broadway-rd-suite	58	2017-05-18 10:29:37	2017-10-15 10:19:05	1	\N	1243	98
whitefield	66	2019-09-24 12:58:56	2019-09-24 12:58:56	1	\N	1249	105
kkk	266	2021-03-17 18:59:32	2021-03-17 18:59:32	1	\N	1252	111280
sankari	59	2021-03-18 11:36:30	2021-03-18 11:36:30	1	\N	1253	111281
\.


--
-- Data for Name: zones_infos; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.zones_infos (info_id, zone_name, language_id, zone_id) FROM stdin;
1274	Angeles Forest.	1	1244
1277	1861 Monument Cir, Indianapolis	1	1246
1278	E Broadway rd	1	1247
1283	1740 E Broadway rd Suite 	1	1243
1284	whitefield	1	1249
1287	kkk	1	1252
1288	Sankari	1	1253
\.


--
-- Name: address_type_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.address_type_id_seq', 30, true);


--
-- Name: address_type_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.address_type_infos_info_id_seq', 8, true);


--
-- Name: api_account_account_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.api_account_account_id_seq', 98, true);


--
-- Name: api_resources_resource_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.api_resources_resource_id_seq', 1602, true);


--
-- Name: banners_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.banners_id_seq', 162, true);


--
-- Name: banners_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.banners_infos_info_id_seq', 432, true);


--
-- Name: blog_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.blog_infos_info_id_seq', 458, true);


--
-- Name: blogs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.blogs_id_seq', 142, true);


--
-- Name: categories_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.categories_id_seq', 47, true);


--
-- Name: categories_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.categories_infos_info_id_seq', 157, true);


--
-- Name: category_groups_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

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


--
-- Name: category_groups_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

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


--
-- Name: charities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.charities_id_seq', 236, true);


--
-- Name: cities_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cities_id_seq', 111284, true);


--
-- Name: cities_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cities_infos_info_id_seq', 111290, true);


--
-- Name: cms_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cms_id_seq', 8, true);


--
-- Name: cms_infos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.cms_infos_id_seq', 352, true);


--
-- Name: config_setting_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

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


--
-- Name: config_setting_setting_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.config_setting_setting_id_seq', 17, true);


--
-- Name: config_setting_setting_id_seq1; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.config_setting_setting_id_seq1', 63, true);


--
-- Name: contactuses_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.contactuses_id_seq', 1431, true);


--
-- Name: countries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.countries_id_seq', 267, true);


--
-- Name: countries_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.countries_infos_info_id_seq', 292, true);


--
-- Name: coupons_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.coupons_id_seq', 93, true);


--
-- Name: currencies_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.currencies_id_seq', 11, true);


--
-- Name: donations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.donations_id_seq', 691, true);


--
-- Name: email_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.email_notifications_id_seq', 177, true);


--
-- Name: emailsettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emailsettings_id_seq', 1, true);


--
-- Name: emailtemplates_template_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.emailtemplates_template_id_seq', 19, true);


--
-- Name: faqs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.faqs_id_seq', 11, true);


--
-- Name: faqs_info_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.faqs_info_info_id_seq', 85, true);


--
-- Name: fund_request_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

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


--
-- Name: group_email_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.group_email_notifications_id_seq', 13, true);


--
-- Name: group_newsletters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.group_newsletters_id_seq', 94, true);


--
-- Name: group_notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.group_notifications_id_seq', 156, true);


--
-- Name: imageresizesettings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.imageresizesettings_id_seq', 6, true);


--
-- Name: languages_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.languages_id_seq', 11, true);


--
-- Name: ministries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

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


--
-- Name: newsletter_subscribers_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.newsletter_subscribers_id_seq', 45, true);


--
-- Name: newsletters_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.newsletters_id_seq', 379, true);


--
-- Name: notification_groups_group_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.notification_groups_group_id_seq', 4, true);


--
-- Name: notifications_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.notifications_id_seq', 167, true);


--
-- Name: organisations_basic_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.organisations_basic_info_id_seq', 44, true);


--
-- Name: organization_interest_areas_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.organization_interest_areas_id_seq', 1029, true);


--
-- Name: organization_payment_gateways_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.organization_payment_gateways_id_seq', 116, true);


--
-- Name: organization_project_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.organization_project_info_id_seq', 69, true);


--
-- Name: package_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.package_id_seq', 25, true);


--
-- Name: package_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.package_infos_info_id_seq', 37, true);


--
-- Name: package_logs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

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


--
-- Name: package_logs_user_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

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


--
-- Name: package_transaction_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.package_transaction_id_seq', 4, true);


--
-- Name: project_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.project_infos_info_id_seq', 305, true);


--
-- Name: projects_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.projects_id_seq', 91, true);


--
-- Name: push_notification_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.push_notification_id_seq', 28, true);


--
-- Name: role_tasks_role_task_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.role_tasks_role_task_id_seq', 1368, true);


--
-- Name: roles_users_ruid_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.roles_users_ruid_seq', 93, true);


--
-- Name: settings_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.settings_id_seq', 1, true);


--
-- Name: settings_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.settings_info_id_seq', 1, true);


--
-- Name: settings_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.settings_infos_info_id_seq', 79, true);


--
-- Name: suggest_npo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.suggest_npo_id_seq', 49, true);


--
-- Name: tags_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.tags_id_seq', 39, true);


--
-- Name: tags_infos_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.tags_infos_id_seq', 48, true);


--
-- Name: testimonial_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.testimonial_id_seq', 13, true);


--
-- Name: testimonials_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.testimonials_infos_info_id_seq', 19, true);


--
-- Name: transactions_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

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


--
-- Name: user_activity_log_activity_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_activity_log_activity_id_seq', 101, true);


--
-- Name: user_interest_areas_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_interest_areas_id_seq', 2193, true);


--
-- Name: user_logins_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_logins_id_seq', 2758, true);


--
-- Name: user_roles_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.user_roles_id_seq', 64, true);


--
-- Name: users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.users_id_seq', 406, true);


--
-- Name: zones_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.zones_id_seq', 1253, true);


--
-- Name: zones_infos_info_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.zones_infos_info_id_seq', 1288, true);


--
-- Name: api_account api_account_account_id_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.api_account
    ADD CONSTRAINT api_account_account_id_pkey PRIMARY KEY (account_id);


--
-- Name: api_account api_account_appkey_unqiue; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.api_account
    ADD CONSTRAINT api_account_appkey_unqiue UNIQUE (app_key);


--
-- Name: api_resources api_resource_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.api_resources
    ADD CONSTRAINT api_resource_pkey PRIMARY KEY (resource_id);


--
-- Name: banners banners_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.banners
    ADD CONSTRAINT banners_pkey PRIMARY KEY (id);


--
-- Name: blogs blogs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.blogs
    ADD CONSTRAINT blogs_pkey PRIMARY KEY (id);


--
-- Name: categories_infos categories_infos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.categories_infos
    ADD CONSTRAINT categories_infos_pkey PRIMARY KEY (info_id);


--
-- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.categories
    ADD CONSTRAINT categories_pkey PRIMARY KEY (id);


--
-- Name: organisations charities_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organisations
    ADD CONSTRAINT charities_pkey PRIMARY KEY (id);


--
-- Name: cms_infos cms_infos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cms_infos
    ADD CONSTRAINT cms_infos_pkey PRIMARY KEY (info_id);


--
-- Name: cms cms_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cms
    ADD CONSTRAINT cms_pkey PRIMARY KEY (id);


--
-- Name: config_setting config_setting_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.config_setting
    ADD CONSTRAINT config_setting_pkey PRIMARY KEY (setting_id);


--
-- Name: contactuses contactuses_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.contactuses
    ADD CONSTRAINT contactuses_pkey PRIMARY KEY (id);


--
-- Name: countries countries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countries
    ADD CONSTRAINT countries_pkey PRIMARY KEY (id);


--
-- Name: donations donations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.donations
    ADD CONSTRAINT donations_pkey PRIMARY KEY (id);


--
-- Name: email_notifications email_notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.email_notifications
    ADD CONSTRAINT email_notifications_pkey PRIMARY KEY (id);


--
-- Name: emailsettings emailsettings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.emailsettings
    ADD CONSTRAINT emailsettings_pkey PRIMARY KEY (id);


--
-- Name: email_templates emailtemplates_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.email_templates
    ADD CONSTRAINT emailtemplates_pkey PRIMARY KEY (template_id);


--
-- Name: fund_request fund_request_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.fund_request
    ADD CONSTRAINT fund_request_pkey PRIMARY KEY (id);


--
-- Name: group_email_notifications group_email_notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.group_email_notifications
    ADD CONSTRAINT group_email_notifications_pkey PRIMARY KEY (id);


--
-- Name: group_newsletters group_newsletters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.group_newsletters
    ADD CONSTRAINT group_newsletters_pkey PRIMARY KEY (id);


--
-- Name: group_notifications group_notifications_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.group_notifications
    ADD CONSTRAINT group_notifications_pkey PRIMARY KEY (id);


--
-- Name: notifications id; Type: CONSTRAINT; Schema: public; Owner: postgres
--

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


--
-- Name: imageresizesettings imageresizesettings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.imageresizesettings
    ADD CONSTRAINT imageresizesettings_pkey PRIMARY KEY (id);


--
-- Name: languages languages_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.languages
    ADD CONSTRAINT languages_pkey PRIMARY KEY (id);


--
-- Name: newsletters newsletters_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.newsletters
    ADD CONSTRAINT newsletters_pkey PRIMARY KEY (id);


--
-- Name: notification_group notification_groups_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notification_group
    ADD CONSTRAINT notification_groups_pkey PRIMARY KEY (group_id);


--
-- Name: organisations_basic_info organisations_basic_info_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organisations_basic_info
    ADD CONSTRAINT organisations_basic_info_pkey PRIMARY KEY (id);


--
-- Name: organization_interest_areas organization_interest_areas_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organization_interest_areas
    ADD CONSTRAINT organization_interest_areas_pkey PRIMARY KEY (id);


--
-- Name: organization_payment_gateways organization_payment_gateways_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organization_payment_gateways
    ADD CONSTRAINT organization_payment_gateways_pkey PRIMARY KEY (id);


--
-- Name: organization_project_info organization_project_info_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organization_project_info
    ADD CONSTRAINT organization_project_info_pkey PRIMARY KEY (id);


--
-- Name: package_infos package_infos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.package_infos
    ADD CONSTRAINT package_infos_pkey PRIMARY KEY (info_id);


--
-- Name: package_logs package_logs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.package_logs
    ADD CONSTRAINT package_logs_pkey PRIMARY KEY (id);


--
-- Name: package package_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.package
    ADD CONSTRAINT package_pkey PRIMARY KEY (id);


--
-- Name: package_transaction package_transaction_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.package_transaction
    ADD CONSTRAINT package_transaction_pkey PRIMARY KEY (id);


--
-- Name: cities pk_cities; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities
    ADD CONSTRAINT pk_cities PRIMARY KEY (id);


--
-- Name: cities_infos pk_cities_infos; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities_infos
    ADD CONSTRAINT pk_cities_infos PRIMARY KEY (info_id);


--
-- Name: coupons pk_coupons; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.coupons
    ADD CONSTRAINT pk_coupons PRIMARY KEY (id);


--
-- Name: currencies pk_currencies; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.currencies
    ADD CONSTRAINT pk_currencies PRIMARY KEY (id);


--
-- Name: currencies pk_currencies_0; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.currencies
    ADD CONSTRAINT pk_currencies_0 UNIQUE (currency_code);


--
-- Name: faqs pk_faqs; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.faqs
    ADD CONSTRAINT pk_faqs PRIMARY KEY (id);


--
-- Name: faqs_infos pk_faqs_info; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.faqs_infos
    ADD CONSTRAINT pk_faqs_info PRIMARY KEY (info_id);


--
-- Name: newsletter_subscribers pk_newsletter_subscribers; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.newsletter_subscribers
    ADD CONSTRAINT pk_newsletter_subscribers PRIMARY KEY (id);


--
-- Name: zones pkey_zones; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.zones
    ADD CONSTRAINT pkey_zones PRIMARY KEY (id);


--
-- Name: zones_infos pkey_zones_infos; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.zones_infos
    ADD CONSTRAINT pkey_zones_infos PRIMARY KEY (info_id);


--
-- Name: programs_infos projects_infos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.programs_infos
    ADD CONSTRAINT projects_infos_pkey PRIMARY KEY (info_id);


--
-- Name: programs projects_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.programs
    ADD CONSTRAINT projects_pkey PRIMARY KEY (id);


--
-- Name: push_notification push_notification_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.push_notification
    ADD CONSTRAINT push_notification_pkey PRIMARY KEY (id);


--
-- Name: role_tasks role_tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.role_tasks
    ADD CONSTRAINT role_tasks_pkey PRIMARY KEY (role_task_id);


--
-- Name: roles_users roles_users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles_users
    ADD CONSTRAINT roles_users_pkey PRIMARY KEY (ruid);


--
-- Name: settings settings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.settings
    ADD CONSTRAINT settings_pkey PRIMARY KEY (id);


--
-- Name: suggest_npo suggest_npo_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.suggest_npo
    ADD CONSTRAINT suggest_npo_pkey PRIMARY KEY (id);


--
-- Name: tags_infos tags_infos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tags_infos
    ADD CONSTRAINT tags_infos_pkey PRIMARY KEY (id);


--
-- Name: tags tags_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tags
    ADD CONSTRAINT tags_pkey PRIMARY KEY (id);


--
-- Name: testimonials_infos testimonials_infos_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.testimonials_infos
    ADD CONSTRAINT testimonials_infos_pkey PRIMARY KEY (info_id);


--
-- Name: testimonials testimonials_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.testimonials
    ADD CONSTRAINT testimonials_pkey PRIMARY KEY (id);


--
-- Name: transactions transactions_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.transactions
    ADD CONSTRAINT transactions_pkey PRIMARY KEY (id);


--
-- Name: user_activity_log user_activity_log_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_activity_log
    ADD CONSTRAINT user_activity_log_pkey PRIMARY KEY (activity_id);


--
-- Name: user_interest_areas user_interest_areas_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_interest_areas
    ADD CONSTRAINT user_interest_areas_pkey PRIMARY KEY (id);


--
-- Name: user_roles user_roles_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_roles
    ADD CONSTRAINT user_roles_pkey PRIMARY KEY (id);


--
-- Name: user_roles user_roles_role_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_roles
    ADD CONSTRAINT user_roles_role_name_key UNIQUE (role_name);


--
-- Name: users users_id_email_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_id_email_key UNIQUE (id, email);


--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.users
    ADD CONSTRAINT users_pkey PRIMARY KEY (id);


--
-- Name: fki_api_resource_accountid_fkey; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX fki_api_resource_accountid_fkey ON public.api_resources USING btree (account_id);


--
-- Name: fki_fkey1_zones_info; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX fki_fkey1_zones_info ON public.zones_infos USING btree (language_id);


--
-- Name: fki_fkey_cms_info; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX fki_fkey_cms_info ON public.cms_infos USING btree (cms_id);


--
-- Name: fki_fkey_cms_info_lang; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX fki_fkey_cms_info_lang ON public.cms_infos USING btree (language_id);


--
-- Name: fki_fkey_zones_infos; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX fki_fkey_zones_infos ON public.zones_infos USING btree (zone_id);


--
-- Name: idx_cities; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_cities ON public.cities USING btree (country_id);


--
-- Name: idx_cities_infos; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_cities_infos ON public.cities_infos USING btree (id);


--
-- Name: idx_cities_infos_0; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_cities_infos_0 ON public.cities_infos USING btree (language_id);


--
-- Name: idx_faqs; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_faqs ON public.faqs USING btree (category_id);


--
-- Name: idx_faqs_info; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX idx_faqs_info ON public.faqs_infos USING btree (id);


--
-- Name: users no_user_delete; Type: RULE; Schema: public; Owner: postgres
--

CREATE RULE no_user_delete AS
    ON DELETE TO public.users DO INSTEAD NOTHING;


--
-- Name: api_resources api_resource_accountid_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.api_resources
    ADD CONSTRAINT api_resource_accountid_fkey FOREIGN KEY (account_id) REFERENCES public.api_account(account_id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: banners_infos banners_infos_banner_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.banners_infos
    ADD CONSTRAINT banners_infos_banner_id_fkey FOREIGN KEY (banner_id) REFERENCES public.banners(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: categories_infos categories_infos_category_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.categories_infos
    ADD CONSTRAINT categories_infos_category_id_fkey FOREIGN KEY (category_id) REFERENCES public.categories(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: countries_infos countries_info_ibfk_1; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countries_infos
    ADD CONSTRAINT countries_info_ibfk_1 FOREIGN KEY (id) REFERENCES public.countries(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: countries_infos countries_info_ibfk_2; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.countries_infos
    ADD CONSTRAINT countries_info_ibfk_2 FOREIGN KEY (language_id) REFERENCES public.languages(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: coupons coupons_category_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.coupons
    ADD CONSTRAINT coupons_category_id_fkey FOREIGN KEY (category_id) REFERENCES public.categories(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: coupons coupons_vendor_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.coupons
    ADD CONSTRAINT coupons_vendor_fkey FOREIGN KEY (vendor) REFERENCES public.organisations(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: donations donations_organisation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.donations
    ADD CONSTRAINT donations_organisation_id_fkey FOREIGN KEY (organisation_id) REFERENCES public.organisations(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: donations donations_program_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.donations
    ADD CONSTRAINT donations_program_id_fkey FOREIGN KEY (program_id) REFERENCES public.programs(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: donations donations_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.donations
    ADD CONSTRAINT donations_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: email_notifications email_notifications_group_email_notification_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.email_notifications
    ADD CONSTRAINT email_notifications_group_email_notification_fkey FOREIGN KEY (group_email_notification) REFERENCES public.group_email_notifications(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cities fk_cities; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities
    ADD CONSTRAINT fk_cities FOREIGN KEY (country_id) REFERENCES public.countries(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cities_infos fk_cities_infos; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities_infos
    ADD CONSTRAINT fk_cities_infos FOREIGN KEY (id) REFERENCES public.cities(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: CONSTRAINT fk_cities_infos ON cities_infos; Type: COMMENT; Schema: public; Owner: postgres
--

COMMENT ON CONSTRAINT fk_cities_infos ON public.cities_infos IS 'foreign key cities table';


--
-- Name: cities_infos fk_cities_infos_1; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cities_infos
    ADD CONSTRAINT fk_cities_infos_1 FOREIGN KEY (language_id) REFERENCES public.languages(id);


--
-- Name: faqs fk_faqs; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.faqs
    ADD CONSTRAINT fk_faqs FOREIGN KEY (category_id) REFERENCES public.categories(id);


--
-- Name: faqs_infos fk_faqs_info; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.faqs_infos
    ADD CONSTRAINT fk_faqs_info FOREIGN KEY (lang_id) REFERENCES public.languages(id);


--
-- Name: zones_infos fkey1_zones_info; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.zones_infos
    ADD CONSTRAINT fkey1_zones_info FOREIGN KEY (language_id) REFERENCES public.languages(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: blog_infos fkey_blog_info; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.blog_infos
    ADD CONSTRAINT fkey_blog_info FOREIGN KEY (blog_id) REFERENCES public.blogs(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cms_infos fkey_cms_info; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cms_infos
    ADD CONSTRAINT fkey_cms_info FOREIGN KEY (cms_id) REFERENCES public.cms(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: cms_infos fkey_cms_info_lang; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.cms_infos
    ADD CONSTRAINT fkey_cms_info_lang FOREIGN KEY (language_id) REFERENCES public.languages(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: blog_infos fkey_fkey_blog_info_lang; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.blog_infos
    ADD CONSTRAINT fkey_fkey_blog_info_lang FOREIGN KEY (language_id) REFERENCES public.languages(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: zones_infos fkey_zones_infos; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.zones_infos
    ADD CONSTRAINT fkey_zones_infos FOREIGN KEY (zone_id) REFERENCES public.zones(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: newsletters newsletters_group_newsletter_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.newsletters
    ADD CONSTRAINT newsletters_group_newsletter_fkey FOREIGN KEY (group_newsletter) REFERENCES public.group_newsletters(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: notifications notifications_group_notification_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.notifications
    ADD CONSTRAINT notifications_group_notification_fkey FOREIGN KEY (group_notification) REFERENCES public.group_notifications(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: organisations_basic_info organisations_basic_info_organization_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organisations_basic_info
    ADD CONSTRAINT organisations_basic_info_organization_id_fkey FOREIGN KEY (organization_id) REFERENCES public.organisations(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: organization_interest_areas organization_interest_areas_category_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organization_interest_areas
    ADD CONSTRAINT organization_interest_areas_category_id_fkey FOREIGN KEY (category_id) REFERENCES public.categories(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: organization_interest_areas organization_interest_areas_organization_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organization_interest_areas
    ADD CONSTRAINT organization_interest_areas_organization_id_fkey FOREIGN KEY (organization_id) REFERENCES public.organisations(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: organization_payment_gateways organization_payment_gateways_organization_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.organization_payment_gateways
    ADD CONSTRAINT organization_payment_gateways_organization_id_fkey FOREIGN KEY (organization_id) REFERENCES public.organisations(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: package_infos package_infos_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.package_infos
    ADD CONSTRAINT package_infos_id_fkey FOREIGN KEY (id) REFERENCES public.package(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: package_transaction package_transaction_organisation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.package_transaction
    ADD CONSTRAINT package_transaction_organisation_id_fkey FOREIGN KEY (organisation_id) REFERENCES public.organisations(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: programs programs_organisation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.programs
    ADD CONSTRAINT programs_organisation_id_fkey FOREIGN KEY (organisation_id) REFERENCES public.organisations(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: programs_infos projects_infos_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.programs_infos
    ADD CONSTRAINT projects_infos_project_id_fkey FOREIGN KEY (program_id) REFERENCES public.programs(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: roles_users roles_users_role_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles_users
    ADD CONSTRAINT roles_users_role_id_fkey FOREIGN KEY (role_id) REFERENCES public.user_roles(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: roles_users roles_users_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.roles_users
    ADD CONSTRAINT roles_users_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: tags_infos tags_infos_tag_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.tags_infos
    ADD CONSTRAINT tags_infos_tag_id_fkey FOREIGN KEY (tag_id) REFERENCES public.tags(id);


--
-- Name: testimonials_infos testimonials_infos_language_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.testimonials_infos
    ADD CONSTRAINT testimonials_infos_language_id_fkey FOREIGN KEY (language_id) REFERENCES public.languages(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: testimonials_infos testimonials_infos_testimonial_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.testimonials_infos
    ADD CONSTRAINT testimonials_infos_testimonial_id_fkey FOREIGN KEY (testimonial_id) REFERENCES public.testimonials(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: user_interest_areas user_interest_areas_user_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.user_interest_areas
    ADD CONSTRAINT user_interest_areas_user_id_fkey FOREIGN KEY (user_id) REFERENCES public.users(id) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- PostgreSQL database dump complete
--

