HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode-jobs/.docker/postgres/files/dump.sql
--
-- PostgreSQL database dump
--

-- Dumped from database version 11.10 (Ubuntu 11.10-1.pgdg18.04+1)
-- Dumped by pg_dump version 14.5 (Homebrew)

SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'SQL_ASCII';
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: pg_stat_statements; Type: EXTENSION; Schema: -; Owner: -
--

CREATE EXTENSION IF NOT EXISTS pg_stat_statements WITH SCHEMA public;


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

COMMENT ON EXTENSION pg_stat_statements IS 'track execution statistics of all SQL statements executed';


SET default_tablespace = '';

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

CREATE TABLE public.activity_log (
    id bigint NOT NULL,
    log_name character varying(255),
    description text NOT NULL,
    subject_id integer,
    subject_type character varying(255),
    causer_id integer,
    causer_type character varying(255),
    properties text,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone
);


ALTER TABLE public.activity_log OWNER TO postgres;

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

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


ALTER TABLE public.activity_log_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.activity_log_id_seq OWNED BY public.activity_log.id;


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

CREATE TABLE public.categories (
    id bigint NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "position" integer,
    id_external integer,
    count_positions integer,
    slug character varying(255),
    title character varying(200),
    description text,
    active boolean DEFAULT false
);


ALTER TABLE public.categories OWNER TO postgres;

--
-- 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: data_requests; Type: TABLE; Schema: public; Owner: postgres
--

CREATE TABLE public.data_requests (
    id integer NOT NULL,
    email character varying(255) NOT NULL,
    type integer NOT NULL,
    token character varying(255) NOT NULL,
    updated_at timestamp without time zone NOT NULL,
    path text
);


ALTER TABLE public.data_requests OWNER TO postgres;

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

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


ALTER TABLE public.data_requests_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.data_requests_id_seq OWNED BY public.data_requests.id;


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

CREATE TABLE public.failed_jobs (
    id bigint NOT NULL,
    connection text NOT NULL,
    queue text NOT NULL,
    payload text NOT NULL,
    exception text NOT NULL,
    failed_at timestamp(0) without time zone DEFAULT now() NOT NULL
);


ALTER TABLE public.failed_jobs OWNER TO postgres;

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

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


ALTER TABLE public.failed_jobs_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.failed_jobs_id_seq OWNED BY public.failed_jobs.id;


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

CREATE TABLE public.files (
    id bigint NOT NULL,
    lead_id integer NOT NULL,
    path character varying(255),
    name character varying(255)
);


ALTER TABLE public.files OWNER TO postgres;

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

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


ALTER TABLE public.files_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.files_id_seq OWNED BY public.files.id;


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

CREATE TABLE public.huntflow_options (
    id integer NOT NULL,
    key character varying(255) NOT NULL,
    value character varying(255)
);


ALTER TABLE public.huntflow_options OWNER TO postgres;

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

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


ALTER TABLE public.huntflow_options_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.huntflow_options_id_seq OWNED BY public.huntflow_options.id;


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

CREATE TABLE public.leads (
    id integer NOT NULL,
    ip character varying(15),
    user_agent character varying(255),
    last_name character varying(255),
    first_name character varying(255),
    phone character varying(20),
    email character varying(255),
    vacancy integer,
    created_at timestamp without time zone,
    updated_at timestamp without time zone,
    status integer DEFAULT 0 NOT NULL,
    message text
);


ALTER TABLE public.leads OWNER TO postgres;

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

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


ALTER TABLE public.leads_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.leads_id_seq OWNED BY public.leads.id;


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

CREATE TABLE public.locations (
    id bigint NOT NULL,
    deleted_at timestamp(0) without time zone,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    "position" integer,
    id_external integer,
    map_coords character varying(255),
    count_positions integer,
    slug character varying(255),
    title character varying(255),
    description text,
    title_prepositional character varying(255),
    country character varying(255),
    active boolean DEFAULT false
);


ALTER TABLE public.locations OWNER TO postgres;

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

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


ALTER TABLE public.locations_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.locations_id_seq OWNED BY public.locations.id;


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

CREATE TABLE public.migrations (
    id integer NOT NULL,
    migration character varying(255) NOT NULL,
    batch integer NOT NULL
);


ALTER TABLE public.migrations OWNER TO postgres;

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

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


ALTER TABLE public.migrations_id_seq OWNER TO postgres;

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

ALTER SEQUENCE public.migrations_id_seq OWNED BY public.migrations.id;


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

CREATE TABLE public.type_works (
    id integer NOT NULL,
    name character varying(255),
    "foreign" integer,
    active integer DEFAULT 0 NOT NULL,
    "order" integer
);


ALTER TABLE public.type_works OWNER TO postgres;

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

CREATE TABLE public.vacancies (
    id bigint NOT NULL,
    created_at timestamp(0) without time zone,
    updated_at timestamp(0) without time zone,
    show_position boolean DEFAULT true NOT NULL,
    "position" character varying(255),
    show_title boolean DEFAULT true NOT NULL,
    title character varying(255),
    show_money boolean DEFAULT true NOT NULL,
    money character varying(255),
    state character varying(255),
    created_original character varying(255),
    is_hidden boolean DEFAULT false NOT NULL,
    body text,
    show_requirements boolean DEFAULT true NOT NULL,
    requirements text,
    requirements_title text,
    show_conditions boolean DEFAULT true NOT NULL,
    conditions text,
    conditions_title text,
    deadline character varying(255),
    applicants_to_hire smallint DEFAULT '0'::smallint NOT NULL,
    show_team boolean DEFAULT true NOT NULL,
    team_title character varying(255),
    show_location boolean DEFAULT true NOT NULL,
    location_id integer,
    location_title character varying(255),
    show_category boolean DEFAULT true NOT NULL,
    category_id integer,
    category_title character varying(255),
    show_type_of_work boolean DEFAULT true NOT NULL,
    type_of_work_id integer,
    type_of_work_title character varying(255),
    show_about_team boolean DEFAULT true NOT NULL,
    about_team text,
    show_tasks boolean DEFAULT true NOT NULL,
    tasks text,
    files jsonb
);


ALTER TABLE public.vacancies OWNER TO postgres;

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

ALTER TABLE ONLY public.activity_log ALTER COLUMN id SET DEFAULT nextval('public.activity_log_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: data_requests id; Type: DEFAULT; Schema: public; Owner: postgres
--

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


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

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


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

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


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

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


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

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


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

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


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

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


--
-- Data for Name: activity_log; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.activity_log (id, log_name, description, subject_id, subject_type, causer_id, causer_type, properties, created_at, updated_at) FROM stdin;
\.


--
-- Data for Name: categories; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.categories (id, deleted_at, created_at, updated_at, "position", id_external, count_positions, slug, title, description, active) FROM stdin;
21	\N	2022-06-22 11:15:24	2022-12-07 19:00:02	11	11370	0	sales-business-developmen	Sales & Business Developmen	\N	t
16	\N	2020-12-09 15:37:18	2020-12-11 10:56:41	12	6659	0	sales-and-business-development	Sales & Business Development	\N	f
8	\N	2020-12-09 13:21:46	2020-12-11 10:59:53	8	6655	0	management	IT Security	\N	f
2	\N	2020-12-05 13:32:46	2020-12-05 13:32:46	2	6649	0	compliance-and-security	Compliance	\N	f
1	\N	2020-12-05 13:25:05	2022-12-07 19:00:02	1	11359	0	administrative-positions	Administrative positions	\N	t
19	\N	2022-06-22 11:15:24	2022-12-07 19:00:02	1	11360	1	compliance-security	Compliance & Security	\N	t
3	\N	2020-12-05 13:33:12	2022-12-07 19:00:02	3	11361	0	customer-care	Customer Care	\N	t
4	\N	2020-12-05 13:33:36	2022-12-07 19:00:02	4	11362	0	data-analytics	Data & Analytics	\N	t
5	\N	2020-12-09 13:21:45	2022-12-07 19:00:02	5	11363	4	engineering	Engineering	\N	t
6	\N	2020-12-09 13:21:46	2022-12-07 19:00:02	6	11364	2	finance	Finance	\N	t
7	\N	2020-12-09 13:21:46	2022-12-07 19:00:02	7	11365	0	legal	Legal	\N	t
20	\N	2022-06-22 11:15:24	2022-12-07 19:00:02	7	11366	3	management	Management	\N	t
9	\N	2020-12-09 13:21:46	2022-12-07 19:00:02	9	11367	3	marketing	Marketing	\N	t
10	\N	2020-12-09 13:21:46	2022-12-07 19:00:02	10	11368	3	people	People	\N	t
11	\N	2020-12-09 13:21:46	2022-12-07 19:00:02	11	11369	0	product-and-design	Product & Design	\N	t
\.


--
-- Data for Name: data_requests; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.data_requests (id, email, type, token, updated_at, path) FROM stdin;
\.


--
-- Data for Name: failed_jobs; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.failed_jobs (id, connection, queue, payload, exception, failed_at) FROM stdin;
\.


--
-- Data for Name: files; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.files (id, lead_id, path, name) FROM stdin;
1	11	/project/postgres/current/storage/uploads/cv/20220831023122cbd4472f4676032e820ff9933908bf75.docx	Gaurav Mishra Resume for jobs-4.docx
2	12	/project/postgres/current/storage/uploads/cv/20220831023131cbd4472f4676032e820ff9933908bf75.docx	Gaurav Mishra Resume for jobs-4.docx
3	13	/project/postgres/current/storage/uploads/cv/20220831023223cbd4472f4676032e820ff9933908bf75.docx	Gaurav Mishra Resume for jobs-4.docx
4	14	/project/postgres/current/storage/uploads/cv/20220831054733fe715605bcc8f173f888601c5cca654b.pdf	DZMITRY KOSHEL_CV (2).pdf
5	15	/project/postgres/current/storage/uploads/cv/20220831062041047d72b63fa043a159facad2e69f8331.pdf	ANDREAS TALIANOS CV.pdf
6	16	/project/postgres/current/storage/uploads/cv/20220831090921cbbd095cb5fd65cf6049367d8addb2c6.pdf	Arzuv_Shamuradova_Yellow.pdf
7	17	/project/postgres/current/storage/uploads/cv/20220831090944cbbd095cb5fd65cf6049367d8addb2c6.pdf	Arzuv_Shamuradova_Yellow.pdf
8	18	/project/postgres/current/storage/uploads/cv/20220831091207cbbd095cb5fd65cf6049367d8addb2c6.pdf	Arzuv_Shamuradova_Yellow.pdf
9	20	/project/postgres/current/storage/uploads/cv/20220831160526cea5f25a20adb75d9d77573eb6abe8a5.pdf	CV (1).pdf
10	21	/project/postgres/current/storage/uploads/cv/20220831160546cea5f25a20adb75d9d77573eb6abe8a5.pdf	CV (1).pdf
11	22	/project/postgres/current/storage/uploads/cv/20220901070507de1ecd407ad52e87e548d1d9dd454757.pdf	Resume 2022.pdf
12	23	/project/postgres/current/storage/uploads/cv/202209011205490cdac72cf942da0561ee8f23e35b15d6.pdf	CV Avdieieva Anastasiia.pdf
13	24	/project/postgres/current/storage/uploads/cv/2022090116370724a55525208fcb39b86f54b50e8fa976.pdf	FOIVIA CHARALAMBOUS - CV   .pdf
14	25	/project/postgres/current/storage/uploads/cv/20220902011711b6a28676a89348fdf1986460cd280565.pdf	Alina Shtyrkina Eng CV.pdf
15	26	/project/postgres/current/storage/uploads/cv/20220902011733b6a28676a89348fdf1986460cd280565.pdf	Alina Shtyrkina Eng CV.pdf
16	27	/project/postgres/current/storage/uploads/cv/20220902065959080a4db0766cc84c004db6a9c32d94d9.pdf	CV 2.pdf
17	28	/project/postgres/current/storage/uploads/cv/20220902070014080a4db0766cc84c004db6a9c32d94d9.pdf	CV 2.pdf
18	29	/project/postgres/current/storage/uploads/cv/20220902125435ceb5b1a0ed8d21844889e9e1358803d6.pdf	Andrey Shchapov UI UX Designer CV.pdf
19	30	/project/postgres/current/storage/uploads/cv/20220902125448ceb5b1a0ed8d21844889e9e1358803d6.pdf	Andrey Shchapov UI UX Designer CV.pdf
20	31	/project/postgres/current/storage/uploads/cv/20220902125508ceb5b1a0ed8d21844889e9e1358803d6.pdf	Andrey Shchapov UI UX Designer CV.pdf
21	32	/project/postgres/current/storage/uploads/cv/2022090213174172d2dc21de1c38f8158352f038e61785.pdf	CV Nicos 2022.pdf
22	33	/project/postgres/current/storage/uploads/cv/2022090213185572d2dc21de1c38f8158352f038e61785.pdf	CV Nicos 2022.pdf
23	34	/project/postgres/current/storage/uploads/cv/202209021656491c8b82496bf48de778117aa3189e6a9f.pdf	Artem Kuzmenko QA Engineer.pdf
24	35	/project/postgres/current/storage/uploads/cv/20220903115832cead9ed70813b4b5e89c4d4d1af7b4d0.pdf	Natasa Tsikouri - CV (2)-1.pdf
25	36	/project/postgres/current/storage/uploads/cv/2022090411472979543b78065af9515f2028beb29c5655.pdf	CV_Tatiana_Blinova.pdf
26	37	/project/postgres/current/storage/uploads/cv/2022090411481079543b78065af9515f2028beb29c5655.pdf	CV_Tatiana_Blinova.pdf
27	38	/project/postgres/current/storage/uploads/cv/20220905093709c971c493d7d5d9844c620f6ba3ac8faa.pdf	Karina_HR BP cv_full version_eng.pdf
28	39	/project/postgres/current/storage/uploads/cv/20220905094604c75d09bb0b3da1f3a641bd6186af04d2.docx	My-CV-Fi-Light.docx
29	40	/project/postgres/current/storage/uploads/cv/20220905114509d93a71aab5babc5c998c0e765c4e9f6e.pdf	CV Ellina Kamneva.pdf
30	41	/project/postgres/current/storage/uploads/cv/20220905134008021bff264e9490b4de60ba8c562dd8be.pdf	Umar Shehu.pdf
31	42	/project/postgres/current/storage/uploads/cv/20220905181153b1732599bded4e265f1f2b9b25160dcd.pdf	My CV_Nina Mikhailenko.pdf
32	43	/project/postgres/current/storage/uploads/cv/20220905181217b1732599bded4e265f1f2b9b25160dcd.pdf	My CV_Nina Mikhailenko.pdf
33	44	/project/postgres/current/storage/uploads/cv/20220906062235ea8e5ec793e335213f438e029112c106.pdf	Ruzanna Markosyan CV.pdf
34	45	/project/postgres/current/storage/uploads/cv/20220906062249ea8e5ec793e335213f438e029112c106.pdf	Ruzanna Markosyan CV.pdf
35	46	/project/postgres/current/storage/uploads/cv/20220906062334ea8e5ec793e335213f438e029112c106.pdf	Ruzanna Markosyan CV.pdf
36	47	/project/postgres/current/storage/uploads/cv/20220906062858c6eb755b48bbc2cb56fc56e1cc239cab.pdf	CV_SinitsynaN.pdf
37	48	/project/postgres/current/storage/uploads/cv/20220906062918c6eb755b48bbc2cb56fc56e1cc239cab.pdf	CV_SinitsynaN.pdf
38	49	/project/postgres/current/storage/uploads/cv/20220906070433021bff264e9490b4de60ba8c562dd8be.pdf	Umar Shehu.pdf
39	50	/project/postgres/current/storage/uploads/cv/20220906090452cc7ee3da00e196e61b8d4ef99c4572ee.pdf	Resume.pdf
40	51	/project/postgres/current/storage/uploads/cv/20220906090511cc7ee3da00e196e61b8d4ef99c4572ee.pdf	Resume.pdf
41	52	/project/postgres/current/storage/uploads/cv/20220906201645cfab8f85b4797470a1a09977ae33465f.pdf	CV_NK_in_Eng_26-07.pdf
42	53	/project/postgres/current/storage/uploads/cv/20220906201710cfab8f85b4797470a1a09977ae33465f.pdf	CV_NK_in_Eng_26-07.pdf
43	54	/project/postgres/current/storage/uploads/cv/20220906220051200d98bc30d574135943975202c6a3a8.pdf	Khaled El Agroudy.pdf
44	55	/project/postgres/current/storage/uploads/cv/20220907032005db056e5d36b9a8a0f6665937fec0d4f3.pdf	Yaimara curriculum-vitae-desarrollador-web(1).pdf
45	56	/project/postgres/current/storage/uploads/cv/2022090709353870a4efb3d558a27380495bf1e092a8f0.pdf	Tatiana Bylina_EB Manager(PR, Event).pdf
46	57	/project/postgres/current/storage/uploads/cv/2022090709363370a4efb3d558a27380495bf1e092a8f0.pdf	Tatiana Bylina_EB Manager(PR, Event).pdf
47	58	/project/postgres/current/storage/uploads/cv/20220907225549de5f5a37c5b36903c0bf9fc92cf9244f.pdf	Tomas Smalinskas.pdf
48	59	/project/postgres/current/storage/uploads/cv/20220907225610de5f5a37c5b36903c0bf9fc92cf9244f.pdf	Tomas Smalinskas.pdf
49	60	/project/postgres/current/storage/uploads/cv/20220907225620de5f5a37c5b36903c0bf9fc92cf9244f.pdf	Tomas Smalinskas.pdf
50	61	/project/postgres/current/storage/uploads/cv/20220908041008c158ee58af1d3bc50b803c4280b872e0.pdf	CV_AntoninaVenderevskaya.pdf
51	62	/project/postgres/current/storage/uploads/cv/20220908190042abb7af3b755ec60ba701af09d89c91ae.pdf	Nikolaeva Natalia_eng.pdf
52	63	/project/postgres/current/storage/uploads/cv/20220908190100abb7af3b755ec60ba701af09d89c91ae.pdf	Nikolaeva Natalia_eng.pdf
53	64	/project/postgres/current/storage/uploads/cv/20220908190127abb7af3b755ec60ba701af09d89c91ae.pdf	Nikolaeva Natalia_eng.pdf
54	65	/project/postgres/current/storage/uploads/cv/20220908190211abb7af3b755ec60ba701af09d89c91ae.pdf	Nikolaeva Natalia_eng.pdf
55	66	/project/postgres/current/storage/uploads/cv/20220908190433abb7af3b755ec60ba701af09d89c91ae.pdf	Nikolaeva Natalia_eng.pdf
56	67	/project/postgres/current/storage/uploads/cv/2022090908531498889412081d1d0cb8b5d0a453acd70b.docx	Andreas Stylianou CV - Lightmode-1.docx
57	68	/project/postgres/current/storage/uploads/cv/2022090908534498889412081d1d0cb8b5d0a453acd70b.docx	Andreas Stylianou CV - Lightmode-1.docx
58	69	/project/postgres/current/storage/uploads/cv/2022090908541998889412081d1d0cb8b5d0a453acd70b.docx	Andreas Stylianou CV - Lightmode-1.docx
59	71	/project/postgres/current/storage/uploads/cv/2022091307324743d201b76a14f56d6f373bede5facc8d.pdf	Sarkhan Sabirli CV (2022 - Last).pdf
60	72	/project/postgres/current/storage/uploads/cv/2022091307330443d201b76a14f56d6f373bede5facc8d.pdf	Sarkhan Sabirli CV (2022 - Last).pdf
61	73	/project/postgres/current/storage/uploads/cv/2022091307371143d201b76a14f56d6f373bede5facc8d.pdf	Sarkhan Sabirli CV (2022 - Last).pdf
62	74	/project/postgres/current/storage/uploads/cv/20220913085356edab9145b09618cfa6a7bcb8e762b1dd.pdf	Resume+.pdf
63	75	/project/postgres/current/storage/uploads/cv/20220913110542b2b5c9d1581bc17d67b1fc6f86e7c9f6.pdf	Alex-CV Updated.pdf
64	76	/project/postgres/current/storage/uploads/cv/20220913110603b2b5c9d1581bc17d67b1fc6f86e7c9f6.pdf	Alex-CV Updated.pdf
65	77	/project/postgres/current/storage/uploads/cv/20220913110624b2b5c9d1581bc17d67b1fc6f86e7c9f6.pdf	Alex-CV Updated.pdf
66	105	/project/postgres/current/storage/uploads/cv/202209151109181ded578b96c462c23adb00cc7bf08026.pdf	Sotos Constantinou - curriculum vitae (2).pdf
67	106	/project/postgres/current/storage/uploads/cv/202209151110281ded578b96c462c23adb00cc7bf08026.pdf	Sotos Constantinou - curriculum vitae (2).pdf
68	107	/project/postgres/current/storage/uploads/cv/202209151110391ded578b96c462c23adb00cc7bf08026.pdf	Sotos Constantinou - curriculum vitae (2).pdf
69	108	/project/postgres/current/storage/uploads/cv/202209151112341ded578b96c462c23adb00cc7bf08026.pdf	Sotos Constantinou - curriculum vitae (2).pdf
70	109	/project/postgres/current/storage/uploads/cv/202209151112381ded578b96c462c23adb00cc7bf08026.pdf	Sotos Constantinou - curriculum vitae (2).pdf
71	110	/project/postgres/current/storage/uploads/cv/202209151722410441899db17a6cd7283a9c39dea01924.pdf	Savvas Hadjigeorgiou - Curriculum Vitae.pdf
72	111	/project/postgres/current/storage/uploads/cv/2022091519265593ec6cbf95f60cc90d38377694f03ead.pdf	CV Irina Khmelevskaya-1.pdf
73	112	/project/postgres/current/storage/uploads/cv/2022091519270993ec6cbf95f60cc90d38377694f03ead.pdf	CV Irina Khmelevskaya-1.pdf
74	113	/project/postgres/current/storage/uploads/cv/20220915195536f80265295d76bb6a1687c6162496d685.docx	Nikita_Novodran_CV.docx
75	114	/project/postgres/current/storage/uploads/cv/20220915195610f80265295d76bb6a1687c6162496d685.docx	Nikita_Novodran_CV.docx
76	115	/project/postgres/current/storage/uploads/cv/20220915224826e6bec46e254e647252f0904a7fb0e02e.pdf	CV_Kovrigin.pdf
77	116	/project/postgres/current/storage/uploads/cv/20220915224841e6bec46e254e647252f0904a7fb0e02e.pdf	CV_Kovrigin.pdf
78	117	/project/postgres/current/storage/uploads/cv/20220915224915e6bec46e254e647252f0904a7fb0e02e.pdf	CV_Kovrigin.pdf
79	118	/project/postgres/current/storage/uploads/cv/20220916050843edab9145b09618cfa6a7bcb8e762b1dd.pdf	Resume+.pdf
80	119	/project/postgres/current/storage/uploads/cv/202209160955114266227b21732a15c056d7c1f7ff5d39.pdf	Mikhail's Resume.pdf
81	120	/project/postgres/current/storage/uploads/cv/20220916123746ca496e04da08847ab23903559e6eb71f.pdf	Ksenia Prokopovich _ Talent Acquisition Manager.pdf
82	121	/project/postgres/current/storage/uploads/cv/20220916123829ca496e04da08847ab23903559e6eb71f.pdf	Ksenia Prokopovich _ Talent Acquisition Manager.pdf
83	122	/project/postgres/current/storage/uploads/cv/20220916123942ca496e04da08847ab23903559e6eb71f.pdf	Ksenia Prokopovich _ Talent Acquisition Manager.pdf
84	123	/project/postgres/current/storage/uploads/cv/20220916124022832b7e9efe2baf6c52290810792eb932.doc	Mike+Vassiliou.+Resume+01.08.2022.doc
85	124	/project/postgres/current/storage/uploads/cv/20220916124039832b7e9efe2baf6c52290810792eb932.doc	Mike+Vassiliou.+Resume+01.08.2022.doc
86	125	/project/postgres/current/storage/uploads/cv/20220916124129832b7e9efe2baf6c52290810792eb932.doc	Mike+Vassiliou.+Resume+01.08.2022.doc
87	126	/project/postgres/current/storage/uploads/cv/20220916124415ca496e04da08847ab23903559e6eb71f.pdf	Ksenia Prokopovich _ Talent Acquisition Manager.pdf
88	127	/project/postgres/current/storage/uploads/cv/20220916124454ca496e04da08847ab23903559e6eb71f.pdf	Ksenia Prokopovich _ Talent Acquisition Manager.pdf
89	128	/project/postgres/current/storage/uploads/cv/2022091612455920ffcd7eb994c1e8b43bf327ba288758.pdf	Komova T_CV.pdf
90	129	/project/postgres/current/storage/uploads/cv/20220916125120ca496e04da08847ab23903559e6eb71f.pdf	Ksenia Prokopovich _ Talent Acquisition Manager.pdf
91	130	/project/postgres/current/storage/uploads/cv/20220916132525cc9079b5b780d944a4aa85e96abc2bab.pdf	CV Ivan Belyakov.pdf
92	131	/project/postgres/current/storage/uploads/cv/20220916132536cc9079b5b780d944a4aa85e96abc2bab.pdf	CV Ivan Belyakov.pdf
93	132	/project/postgres/current/storage/uploads/cv/20220916132554cc9079b5b780d944a4aa85e96abc2bab.pdf	CV Ivan Belyakov.pdf
94	133	/project/postgres/current/storage/uploads/cv/20220916172050c6bff84e7bfdd483a7cf91c9ef686d25.pdf	Resume-Taisiya-Moiseeva.pdf
95	134	/project/postgres/current/storage/uploads/cv/20220916172115c6bff84e7bfdd483a7cf91c9ef686d25.pdf	Resume-Taisiya-Moiseeva.pdf
96	135	/project/postgres/current/storage/uploads/cv/20220916172247c6bff84e7bfdd483a7cf91c9ef686d25.pdf	Resume-Taisiya-Moiseeva.pdf
97	136	/project/postgres/current/storage/uploads/cv/20220916172319c6bff84e7bfdd483a7cf91c9ef686d25.pdf	Resume-Taisiya-Moiseeva.pdf
98	137	/project/postgres/current/storage/uploads/cv/20220916172847c6bff84e7bfdd483a7cf91c9ef686d25.pdf	Resume-Taisiya-Moiseeva.pdf
99	139	/project/postgres/current/storage/uploads/cv/20220916192108c6bff84e7bfdd483a7cf91c9ef686d25.pdf	Resume-Taisiya-Moiseeva.pdf
100	140	/project/postgres/current/storage/uploads/cv/2022091704442703141cd03e7c5420a140fd21fbe67dc6.pdf	CV_Yevgenya Karapetyan.pdf
101	141	/project/postgres/current/storage/uploads/cv/2022091704451703141cd03e7c5420a140fd21fbe67dc6.pdf	CV_Yevgenya Karapetyan.pdf
102	142	/project/postgres/current/storage/uploads/cv/2022091712364122e1969d7227c533b5006f050452224b.pdf	goksu-dayan-resume.pdf
103	143	/project/postgres/current/storage/uploads/cv/2022091712365822e1969d7227c533b5006f050452224b.pdf	goksu-dayan-resume.pdf
104	144	/project/postgres/current/storage/uploads/cv/2022091712374022e1969d7227c533b5006f050452224b.pdf	goksu-dayan-resume.pdf
105	145	/project/postgres/current/storage/uploads/cv/202209171742537a450c37057bf2929cdebc15b703abe6.pdf	Lev Vavilov CV.pdf
106	146	/project/postgres/current/storage/uploads/cv/202209171743357a450c37057bf2929cdebc15b703abe6.pdf	Lev Vavilov CV.pdf
107	147	/project/postgres/current/storage/uploads/cv/202209181220199e99f8740bdb4f571251bdd4524fce87.pdf	Resume-Stanislav-Yakovlev.pdf
108	148	/project/postgres/current/storage/uploads/cv/20220918153005524f7d50a82e71318276cab9f1ee7b97.pdf	CV Elena Rusu.pdf
109	149	/project/postgres/current/storage/uploads/cv/202209182120137d9e4df8ca00cd2a3a5ed04619d76513.pdf	Vasili Nikolaev_CV.pdf
110	150	/project/postgres/current/storage/uploads/cv/20220919135935eb47ad422d46b57305382a7b0ab333d5.pdf	CV_.pdf
111	151	/project/postgres/current/storage/uploads/cv/2022091915385492a0270adcb9f8f3d310564459512f78.pdf	СV_Evgenii_Pertaia_Product_Owner.pdf
112	152	/project/postgres/current/storage/uploads/cv/202209192050175c334255616964b664e6bf4044123fc9.pdf	Kate_PM.pdf
113	153	/project/postgres/current/storage/uploads/cv/20220920074935640867041909996a892413d15c2bb542.pdf	CV_Julia Garbar.pdf
114	154	/project/postgres/current/storage/uploads/cv/20220920103536a293155b6f7fad0599381ad6179f2f0f.pdf	Irina Paskhina Head of B2B Marketing.pdf
115	155	/project/postgres/current/storage/uploads/cv/20220920103559a293155b6f7fad0599381ad6179f2f0f.pdf	Irina Paskhina Head of B2B Marketing.pdf
116	156	/project/postgres/current/storage/uploads/cv/20220920103738a293155b6f7fad0599381ad6179f2f0f.pdf	Irina Paskhina Head of B2B Marketing.pdf
117	157	/project/postgres/current/storage/uploads/cv/20220920184610a4c9d36a1813a1158d9a596693572c89.pdf	Elena Kostitsyna CV.pdf
118	158	/project/postgres/current/storage/uploads/cv/20220920184708a4c9d36a1813a1158d9a596693572c89.pdf	Elena Kostitsyna CV.pdf
119	159	/project/postgres/current/storage/uploads/cv/202209202036242a3a36704dbf28dbda9bad167e0c2990.pdf	Zuphar%20Iskhakov%20CV.pdf.pdf
120	160	/project/postgres/current/storage/uploads/cv/20220921091915e632a3a92c69e9e284756a9a2a45632f.docx	Necip_Özfidan_Resume_DS.docx
121	161	/project/postgres/current/storage/uploads/cv/20220921092057e632a3a92c69e9e284756a9a2a45632f.docx	Necip_Özfidan_Resume_DS.docx
122	162	/project/postgres/current/storage/uploads/cv/20220921092139e632a3a92c69e9e284756a9a2a45632f.docx	Necip_Özfidan_Resume_DS.docx
123	163	/project/postgres/current/storage/uploads/cv/20220921092149e632a3a92c69e9e284756a9a2a45632f.docx	Necip_Özfidan_Resume_DS.docx
124	164	/project/postgres/current/storage/uploads/cv/20220921115946bfef2adf4e262a552a2b1280742c3055.docx	Michael_Zhovniruk_CV.docx
125	165	/project/postgres/current/storage/uploads/cv/202209211905260d20217acdc3004c0570fca130236dd5.pdf	Victor_Dvoretsky_CV.pdf
126	166	/project/postgres/current/storage/uploads/cv/20220922042615dca029536d9169f71a4959da3ac853ee.pdf	Tatyana Mazaeva.rtf (1).pdf
127	167	/project/postgres/current/storage/uploads/cv/20220922042723dca029536d9169f71a4959da3ac853ee.pdf	Tatyana Mazaeva.rtf (1).pdf
128	168	/project/postgres/current/storage/uploads/cv/20220922043018dca029536d9169f71a4959da3ac853ee.pdf	Tatyana Mazaeva.rtf (1).pdf
129	169	/project/postgres/current/storage/uploads/cv/20220922064810291c004e37bfe4045f744e7ecca23c6a.pdf	CV Anastasia Antoshina .pdf
130	170	/project/postgres/current/storage/uploads/cv/202209220655423bd7e90f890dd0805d3a91658e2be6f4.pdf	Rodosthenis-Panayiotou-Resume-1.pdf
131	171	/project/postgres/current/storage/uploads/cv/202209220655573bd7e90f890dd0805d3a91658e2be6f4.pdf	Rodosthenis-Panayiotou-Resume-1.pdf
132	184	/project/postgres/current/storage/uploads/cv/202209261650361ffb37814d09c012a62258de1856b0a0.pdf	CV.pdf
133	185	/project/postgres/current/storage/uploads/cv/20220926173139eb4e87b8097a316d9b05cca82157d04b.pdf	Resume Ksenia Shashkina.pdf
134	187	/project/postgres/current/storage/uploads/cv/202209270640145deb7eac69efde7fb54b41aef92f7a9b.pdf	CV Kristina Topoliuk.pdf
135	188	/project/postgres/current/storage/uploads/cv/202209271329054add6ede6c76f2b5ce7e2964670f9cd5.pdf	Smaragda Christodoulou CV.pdf
136	189	/project/postgres/current/storage/uploads/cv/2022092713563757b622622753aeef8a1a434b0434e26d.pdf	Moskvartsev Semen CV.pdf
137	190	/project/postgres/current/storage/uploads/cv/202209280916384667a1a57303d9103f5b624046d26563.pdf	Maria Symeou_CV.pdf
138	191	/project/postgres/current/storage/uploads/cv/20220928093922d8247a79a6ec7ecff48a1e0a49ddd694.doc	Mike Vassiliou. Resume 01.08.2022.doc
139	192	/project/postgres/current/storage/uploads/cv/20220928131901a92ece76676c4ce28cc04258e9627e55.pdf	CV_Gvantsa Teteradze.pdf
140	193	/project/postgres/current/storage/uploads/cv/20220928151533b1544c7bf7c6d4407f2319682a5f9948.pdf	Yiannos Mavris 2021 Final.pdf
141	194	/project/postgres/current/storage/uploads/cv/20220928170125d7af2a925366bf345c946eb4ed12ed80.pdf	CV YK.pdf
142	195	/project/postgres/current/storage/uploads/cv/20220928171507ebd004d0fe3918f6c0c3fcfb74f85620.pdf	Anna Gulenkova CV.pdf
143	196	/project/postgres/current/storage/uploads/cv/202209291035321f94acb9e07afc80693ef778f6d7b750.pdf	Eesha Intizar.pdf
144	197	/project/postgres/current/storage/uploads/cv/202209291237470449b7264aacdc997886715e4504d57f.pdf	Resume_Moiseev.pdf
145	198	/project/postgres/current/storage/uploads/cv/202209291252139d0c27de3f9027a6b2bb18ab6efe2450.pdf	Резюме HR менеджер Александра Ковшова.pdf
146	199	/project/postgres/current/storage/uploads/cv/20220929130032f7845dd3e096148a7e28179f8fdc480a.pdf	Soteris_Solomou_-_Lead_Data_Scientist (1).pdf
147	200	/project/postgres/current/storage/uploads/cv/2022092913205622dabd89c95e9c357b189d0875a94bfd.pdf	CV Anastasiya_Trubchyk.pdf
148	201	/project/postgres/current/storage/uploads/cv/20220929132507b6f3dfd64c4dfbe1db66c56686863079.pdf	Trifonov_CV_072022.pdf
149	202	/project/postgres/current/storage/uploads/cv/202209291341501a16842a387180d59daa499acf3732ca.pdf	Nataliia Gryshchuk-cv.pdf
150	203	/project/postgres/current/storage/uploads/cv/20220929140347dca029536d9169f71a4959da3ac853ee.pdf	Tatyana Mazaeva.rtf (1).pdf
151	204	/project/postgres/current/storage/uploads/cv/202209291416121ffb37814d09c012a62258de1856b0a0.pdf	CV.pdf
152	205	/project/postgres/current/storage/uploads/cv/202209291435596312fb91ddcd924b78b69fff291fe53f.pdf	cv_yulia selivanova, office manager_2022.pdf
153	206	/project/postgres/current/storage/uploads/cv/20220929150732dd00ea19715eb176619303cdf848d2e0.docx	CV_Mironova Katerina.docx
154	207	/project/postgres/current/storage/uploads/cv/202209291509308fbff6fac6750e8f03b45ffb4e7f3d6b.pdf	CV Hr specialist DianaSazonova.pdf
155	208	/project/postgres/current/storage/uploads/cv/202209291521231ad14eaa6d6960806a5a455d237c683a.pdf	Резюме Finance manager, Finance controller Lina Lisina от 28-09-2022 15-21.pdf
156	209	/project/postgres/current/storage/uploads/cv/20220929154449cbc0dac99208bef56df986758f747d19.pdf	CV - MK-2022.pdf
157	210	/project/postgres/current/storage/uploads/cv/20220929154540cbc0dac99208bef56df986758f747d19.pdf	CV - MK-2022.pdf
158	211	/project/postgres/current/storage/uploads/cv/202209291645555e24095bce1d2ce7ebe89b5219138430.pdf	PÉTER LUKÁCS_CV_2022.pdf
159	212	/project/postgres/current/storage/uploads/cv/20220929180633e9b067c0db80d24b39b873d09a9eb503.pdf	CV_Koloskova Evgeniia_.pdf
160	213	/project/postgres/current/storage/uploads/cv/20220929184058411529f585cee30df98868ae9969c905.docx	newcv.docx
161	214	/project/postgres/current/storage/uploads/cv/20220929214534f62f8997945474427508097d06bf6694.pdf	Semion_Yamschikov_CV.pdf
162	215	/project/postgres/current/storage/uploads/cv/20220929234347aa948f0568ff6a82c9d358df76aa2463.pdf	EA-CHARA_20CHARALAMBOUS_20Cv-4.pdf
163	216	/project/postgres/current/storage/uploads/cv/20220930064549dacce97ba9477fe0345e734ae01ccdb0.pdf	Nayia Yiangou CV.pdf
164	217	/project/postgres/current/storage/uploads/cv/202209300820112345befed8d068825bdc778f4c6aa9e7.pdf	cv_o.kuleshova.pdf
165	218	/project/postgres/current/storage/uploads/cv/20220930084046a39b5744fde74dc823b4c694ebe10c14.pdf	CV_EN.pdf
166	219	/project/postgres/current/storage/uploads/cv/202209300944249e682606a19cae149fc760632fdfb9f2.pdf	ZsofiaPilhal_resume_1page.pdf
167	220	/project/postgres/current/storage/uploads/cv/20220930102312893177b009ba037e5924ef254252925d.pdf	ТОММ ТАТЬЯНА-5.pdf
168	221	/project/postgres/current/storage/uploads/cv/202209301101027312c1a7f03249171054179b1fe7ea50.pdf	Benzater Uliana.pdf
169	222	/project/postgres/current/storage/uploads/cv/2022093012580746cd243284638f9d5d8a05025d5f9fb0.pdf	CV_Aleksandra_Sosnina.pdf
170	223	/project/postgres/current/storage/uploads/cv/20220930172044921194808f82cdba03b40689ae981bcf.pdf	CV_MF.pdf
171	224	/project/postgres/current/storage/uploads/cv/202209302046303395930882067ace19b82c764a017aa8.pdf	CV Anastasia Nitkina.pdf
172	225	/project/postgres/current/storage/uploads/cv/20221001050939b3d9a433dd2676f5b50ae320043d5022.docx	Kiryakova Oxana_CV-2.docx
173	226	/project/postgres/current/storage/uploads/cv/202210011948409feaf92feff2b26000042bd4cb06af85.pdf	AlexeyLevanovCV.pdf
174	227	/project/postgres/current/storage/uploads/cv/202210021549182fb77cb1214070fa88e080e37802a818.pdf	Mar 2022.pdf
175	228	/project/postgres/current/storage/uploads/cv/20221003053434675dc21bd18eb163f53e61333a8a8b82.pdf	CV_Koloskova Evgeniia_HR.pdf
176	229	/project/postgres/current/storage/uploads/cv/20221003070941ddd7711de5817a18f49e646594ceb8fa.pdf	CV - Dmitry Modin-2.pdf
177	230	/project/postgres/current/storage/uploads/cv/2022100307171842e52656a2696bfed3717db7ec1cb4f3.pdf	Резюме Information Security Specialist Тарас Савка от 03-10-2022 10-06.pdf
178	231	/project/postgres/current/storage/uploads/cv/2022100308060318c715e88b8abdeb5e48a68c35af5316.pdf	Maksim Bakanau - CTO Personal Assistant - Resume.pdf
179	232	/project/postgres/current/storage/uploads/cv/2022100308552979f4518f7c53a3b9ee98368ffd20af18.pdf	HR_Svyatkina_CV.pdf
180	233	/project/postgres/current/storage/uploads/cv/20221003111301ddaf2e50ca48f992688a99ce68295a06.pdf	CV Maxim Ustinov.pdf
181	234	/project/postgres/current/storage/uploads/cv/2022100312150144c1d0fd792cd04d7da0aa123ed4b51a.pdf	Resume - Anna Pozdeeva.pdf
182	236	/project/postgres/current/storage/uploads/cv/20221003141629dd00ea19715eb176619303cdf848d2e0.docx	CV_Mironova Katerina.docx
183	237	/project/postgres/current/storage/uploads/cv/20221003174559a697874245b95c02a971abe212949e0c.doc	BelMarCV.doc
184	238	/project/postgres/current/storage/uploads/cv/20221003174801a697874245b95c02a971abe212949e0c.doc	BelMarCV.doc
185	239	/project/postgres/current/storage/uploads/cv/20221004070445fd6b21100936a018cc63904908d60576.pdf	Resume Eng (1).pdf
186	240	/project/postgres/current/storage/uploads/cv/20221004081447bd525cdbec8fa7839ffbd0a3bfc6a9a5.pdf	Maxim_Peshiy-Frontend.pdf
187	241	/project/postgres/current/storage/uploads/cv/20221004100721605a15eecf1e0daf601a931b472be863.pdf	CV Sofia Demenkova.pdf
188	242	/project/postgres/current/storage/uploads/cv/2022100410234399a800b98662b432f766550a2330aca7.pdf	Linar's Resume.pdf
189	243	/project/postgres/current/storage/uploads/cv/20221004125958e0936ff069087bc0bb4b1fb7138f95d5.pdf	UXUI_Designer.pdf
190	244	/project/postgres/current/storage/uploads/cv/20221004150752d35ce4226275f5e58b1fd6c8695108d0.pdf	202728105_CV_Yanycheva.pdf
191	245	/project/postgres/current/storage/uploads/cv/20221004150838d35ce4226275f5e58b1fd6c8695108d0.pdf	202728105_CV_Yanycheva.pdf
192	246	/project/postgres/current/storage/uploads/cv/202210041622369aadd74d5a7f6b1fd17d4eb9f39bb301.pdf	CV International Business Development Lead - Alexey Chicherov.pdf
193	247	/project/postgres/current/storage/uploads/cv/202210041641462968a8c9776e7cee51e54228bc392457.doc	CV Elizaveta Sorokina (2).doc
194	248	/project/postgres/current/storage/uploads/cv/2022100423584695c0f2d3438612fdfb6907510e8c7aa2.docx	Georgiy Romanchenko CV.docx
195	249	/project/postgres/current/storage/uploads/cv/20221005050438b6b5b8e16a413bcbfff24cc03c985de5.pdf	CV Kostina Ekaterina Frontend.pdf
196	250	/project/postgres/current/storage/uploads/cv/20221005083747fe2b0f333cacec373a8400f63f3df0c1.pdf	Alexey Tiurenkov SMM Content CV.pdf
197	251	/project/postgres/current/storage/uploads/cv/2022100509492222ac25d0864bd6dfe8efbd19c246f9a0.pdf	CV Dmitrii Mitin.pdf
198	252	/project/postgres/current/storage/uploads/cv/2022100510305070556fcd307af2ef0b635f8c393c7406.pdf	Niki Socratous-CV.pdf
199	253	/project/postgres/current/storage/uploads/cv/20221005121757c11273d4ee1de422231523a92544a963.pdf	Provotorov Alexey resume.pdf
200	254	/project/postgres/current/storage/uploads/cv/202210051321166f7e2b24a02c3975d9b94d3d64b701b2.pdf	CV Ksenia Shashkina.pdf
201	255	/project/postgres/current/storage/uploads/cv/20221005160647b07b10c6341741090718900425d7dcbb.pdf	Resume-Danil-Kholmanskii.pdf
202	256	/project/postgres/current/storage/uploads/cv/20221005180321a791503b77dbb8bdec829485030632ba.pdf	CV Vi Aminova .pdf
203	257	/project/postgres/current/storage/uploads/cv/202210060909450b4cd4c8886db04143a78b1cdf22c25b.pdf	Жиляева Кристина Сергеевна.pdf
204	258	/project/postgres/current/storage/uploads/cv/20221006095856bea1f8cd9f8ccd40993d360ae31fe514.pdf	Emily's Resume (2) (1)_220711_130121.pdf
205	259	/project/postgres/current/storage/uploads/cv/2022100610221076bfdb596cb798f0e93c26262030ec12.pdf	CV 10.2022.pdf
206	260	/project/postgres/current/storage/uploads/cv/202210061221385fde1fed9aa1e7354a6105afd88e3fb6.pdf	CM LIVERAS CV.pdf
207	261	/project/postgres/current/storage/uploads/cv/202210061435513870e885d4cb6b7999585a82c85fac51.pdf	Privacy Policy for Employees - QUADCODE GROUP - Anna Tsybenko.pdf
208	262	/project/postgres/current/storage/uploads/cv/202210061436323870e885d4cb6b7999585a82c85fac51.pdf	Privacy Policy for Employees - QUADCODE GROUP - Anna Tsybenko.pdf
209	263	/project/postgres/current/storage/uploads/cv/20221006184451766590907e754cd3b4a5f8e2b7d4efb6.pdf	CV_Bogdan_Puzankov.pdf
210	264	/project/postgres/current/storage/uploads/cv/20221006191213216417b2e0928b2581cb7547bb02d74a.pdf	Kristina Nelina.docx.pdf
211	265	/project/postgres/current/storage/uploads/cv/20221007022244da49111154acd997257ca8605e18fd5f.pdf	Iago Andrade P.pdf
212	266	/project/postgres/current/storage/uploads/cv/2022100707193424d25ca7aa87db7672e6bed44dd8d5ea.pdf	CV Maria Gregoriou.pdf
213	267	/project/postgres/current/storage/uploads/cv/202210071123309359c1fd13a70ddce5bb9fc0bcdd91a1.pdf	CV_-_HeadTeam_leadSenior_Engineer_.pdf
214	268	/project/postgres/current/storage/uploads/cv/20221007112547e67412cebae536f6faeab4ac4af9cf0d.pdf	Tatiana Khmeleva_CV.pdf
215	269	/project/postgres/current/storage/uploads/cv/20221007131959a61891df73edd8561b29f488254c2c30.pdf	2022.10.07 QA Kazakhstan.pdf
216	270	/project/postgres/current/storage/uploads/cv/202210071339036fed0e41c4ef1ee283095813d2e09567.pdf	Novikov CV.pdf
217	271	/project/postgres/current/storage/uploads/cv/202210071354441ffb37814d09c012a62258de1856b0a0.pdf	CV.pdf
218	272	/project/postgres/current/storage/uploads/cv/2022100714570197dc72821a7adc31606f0d12bddc81aa.pdf	ios_scan_1287704735.pdf
219	273	/project/postgres/current/storage/uploads/cv/2022100715070452716bcd103a6cabe538626eb37b88e1.pdf	Brochure.pdf
220	274	/project/postgres/current/storage/uploads/cv/20221007171434259c8fd25e4ade18084a30fb4fd289d4.pdf	CV Korolkov Artem.pdf
221	275	/project/postgres/current/storage/uploads/cv/202210081451221a52b87054b20a75bd95abc6181f3f7b.pdf	Resume-Dmitry-Makarovsky.pdf
222	276	/project/postgres/current/storage/uploads/cv/20221010085651921194808f82cdba03b40689ae981bcf.pdf	CV_MF.pdf
223	277	/project/postgres/current/storage/uploads/cv/20221010131609543f6cdcdd934dfc45a1a397fb86dbe0.pdf	Ioulianna Demetriades_CV.pdf
224	278	/project/postgres/current/storage/uploads/cv/20221010182201dec9506b79085dcaa976a1dc7a0897ed.pdf	Anna Zubareva_CV.pdf
225	279	/project/postgres/current/storage/uploads/cv/2022101111092612a996dc7dfb009ed898800839f0c087.pdf	Vadim Zlygastev — CV.pdf
226	280	/project/postgres/current/storage/uploads/cv/202210111322398142184eb7782661dab91e5acf468731.pdf	Christina Tsvetkova resume.pdf
227	281	/project/postgres/current/storage/uploads/cv/202210111359137d92732040472b55ee4dbb56b800eac4.docx	Aleksei_Baiankin_-_CV.docx
228	282	/project/postgres/current/storage/uploads/cv/2022101114121602b85c14e79a0b6058e208a985e4604b.pdf	CV_Nikitenkov_Fyodor.pdf
229	283	/project/postgres/current/storage/uploads/cv/20221011181244cc7ee3da00e196e61b8d4ef99c4572ee.pdf	Resume.pdf
230	284	/project/postgres/current/storage/uploads/cv/20221011191651b13016f28d371f1d3309ce149daef2f2.pdf	Резюме Hr specialist  Diana Sazonova от 04-10-2022 22-47.pdf
231	285	/project/postgres/current/storage/uploads/cv/2022101119351042c6008f3e6647581c3c815053f11edc.pdf	CV_Kalinin_eng.pdf
232	286	/project/postgres/current/storage/uploads/cv/20221011195145e965492e813ab8f7b42fd90884a10d88.pdf	Profile-3.pdf
233	287	/project/postgres/current/storage/uploads/cv/20221011195156973a02c1353b387d266e92c3cf1d4cfd.pdf	CV Aleksandar Miletic 2022 (1).pdf
234	288	/project/postgres/current/storage/uploads/cv/20221011203950a06e5f5378b802864eaf283c29c3c564.pdf	Кокорин Александр Васильевич .pdf
235	289	/project/postgres/current/storage/uploads/cv/20221011222147c3727e7ba4a376ab2ac63c6cae96588d.pdf	Sofia Vlachou CV Cyprus.pdf
236	290	/project/postgres/current/storage/uploads/cv/20221012060610e29e6b696f50195f2d8eebaf217af966.pdf	Kovalchuk cv.pdf
237	291	/project/postgres/current/storage/uploads/cv/20221012092357454abd9d788da479968e113d9f6eb62d.pdf	yiannis pliatsikas.pdf
238	292	/project/postgres/current/storage/uploads/cv/20221012103552e2d156b2c0f504ac0e6c01fdfae3fc41.pdf	Europass-CV-20201116-Gavrielidou-EN-final.pdf
239	293	/project/postgres/current/storage/uploads/cv/20221012103857f70eae879fcff8183d58919a2b8dde6b.pdf	Pericles Christofides.pdf
240	294	/project/postgres/current/storage/uploads/cv/202210121150156bfda58ac7280d9086f3489dc6ebe2ef.pdf	2022_CV_KTalapova_Detailed CV_EY.pdf
241	295	/project/postgres/current/storage/uploads/cv/20221012121016a1f00244a95acf3da8d9dcdac7a6d0f3.pdf	Resume-Vadim-Kislinskiy-last.pdf
242	296	/project/postgres/current/storage/uploads/cv/202210121347206177d737cae4335a19a4f7f35b5cf55b.pdf	Froso Frangou_CV.pdf
243	297	/project/postgres/current/storage/uploads/cv/202210130736503d9bf90d40548f633dc16cec48efeee2.pdf	Resume-Ayman-Korban.pdf
244	298	/project/postgres/current/storage/uploads/cv/2022101309395499e0c181358179f838b773f79e54d4fe.pdf	Резюме People specialist Анастасия Жиделева от 13-10-2022 12-37.pdf
245	299	/project/postgres/current/storage/uploads/cv/20221014051554a7498a815e26adf49a73e3fcd4238767.docx	Caterina Constandinou 2022.docx
246	300	/project/postgres/current/storage/uploads/cv/2022101408111575d35bc93a84ffc2896c6818b4312de2.pdf	CV Kholin.pdf
247	301	/project/postgres/current/storage/uploads/cv/20221014101030c89596411fd530b55d4135072db1af00.pdf	Allam Ranjith Reddy.pdf
248	302	/project/postgres/current/storage/uploads/cv/20221014114925b1ad9baec72f7908a90c413c72d8758b.pdf	resume Polshkov Andrei.pdf
249	303	/project/postgres/current/storage/uploads/cv/20221014125543e6664b829d6122587d46b60b399be151.pdf	CV Potemkina Evgeniya Sergeevna.pdf
250	304	/project/postgres/current/storage/uploads/cv/20221015143816416567513434ba6d7f62f9f8f374a013.docx	CV-KomissarovNP.docx
251	305	/project/postgres/current/storage/uploads/cv/20221016200901f7bcf9570cbb3a0ba96221a496992737.pdf	Iliana Kallika CV .pdf
252	306	/project/postgres/current/storage/uploads/cv/202210170957336f6ee2db4cf68d550065bb0765568343.pdf	Maksim Bakanau - People Specialist - Resume.pdf
253	307	/project/postgres/current/storage/uploads/cv/20221017100659b56c834769ef08663b87aaabd32f0293.pdf	Mankowsky Nikita.pdf
254	308	/project/postgres/current/storage/uploads/cv/2022101810131340921baa651e559a9729c09ba39d846f.pdf	CV_Employer Brand Specialist_Ukrainets Danila.pdf
255	309	/project/postgres/current/storage/uploads/cv/202210181023552541bb45cc4e5f9051b11014ae6f9569.pdf	CV_Devyatkin_EN.pdf
256	310	/project/postgres/current/storage/uploads/cv/20221018162802de4a8b25f4ab25af7ea53d3a98f67013.pdf	CV_Analyst Bohdan Korzh.pdf
257	311	/project/postgres/current/storage/uploads/cv/20221019105711eb47ad422d46b57305382a7b0ab333d5.pdf	CV_.pdf
258	312	/project/postgres/current/storage/uploads/cv/20221019123529d5e3399619367c25f36f2c4a00d05540.doc	Panayiotis Aresti CV.doc
259	313	/project/postgres/current/storage/uploads/cv/202210191238533a23335712cf6a7139ffdbb5d333d3e3.pdf	Haris Themistocleous CV.pdf
260	314	/project/postgres/current/storage/uploads/cv/202210191325306ba21bde2948a6ca1c3b62fd9441ffb1.docx	CV Marina Zhelonkina (1).docx
261	315	/project/postgres/current/storage/uploads/cv/202210191340466ba21bde2948a6ca1c3b62fd9441ffb1.docx	CV Marina Zhelonkina (1).docx
262	316	/project/postgres/current/storage/uploads/cv/202210191941120c2d9eab7b259ab7879dba763c00c5ca.pdf	CV_Maria Symeou.pdf
263	317	/project/postgres/current/storage/uploads/cv/20221019201419b6cb18a9f7079ef7715e9bf7de099e5c.pdf	CV-KONSTANTINOS PINGOS.pdf
264	318	/project/postgres/current/storage/uploads/cv/20221020061137012e5b8b6ca48e0046b502b9385a53ab.pdf	CV_Stylianou Maria..pdf
265	319	/project/postgres/current/storage/uploads/cv/2022102007014456849977b4466807966136cd53cedd77.pdf	pram.pdf
266	320	/project/postgres/current/storage/uploads/cv/20221020125627abebb2316dc914d770ed03490fd05972.pdf	Ivanushko-CV-CL.pdf
267	321	/project/postgres/current/storage/uploads/cv/202210201351347d9e4df8ca00cd2a3a5ed04619d76513.pdf	Vasili Nikolaev_CV.pdf
268	322	/project/postgres/current/storage/uploads/cv/202210201524170704239f3e43e803b28d95575a53b245.pdf	Talipov Ruslan.pdf
269	323	/project/postgres/current/storage/uploads/cv/20221021060217e11ef6788317bd1239294d8d26d4aa2b.pdf	Koralia Charalampous Cv .pdf
270	324	/project/postgres/current/storage/uploads/cv/20221021060517e11ef6788317bd1239294d8d26d4aa2b.pdf	Koralia Charalampous Cv .pdf
271	325	/project/postgres/current/storage/uploads/cv/202210210809317adbddcf22a41d3829fc06ad8c7e1fcc.pdf	Mohammadreza Khatibi 9:2022L.pdf
272	326	/project/postgres/current/storage/uploads/cv/2022102109230377ab6086d57abc4ddcbb847dc51ceaa7.pdf	Irina Karpova CV Head of Talent Acquisition.pdf
273	327	/project/postgres/current/storage/uploads/cv/202210212035504b04ba9567511df5a8234878d0b346f9.pdf	CV Andrey Barabash.pdf
274	328	/project/postgres/current/storage/uploads/cv/20221022173534de5412ce030f89428573f6d31ed79b2e.pdf	CV_Natalya Krapil_Oct2022.pdf
275	329	/project/postgres/current/storage/uploads/cv/2022102309140436c974124cd1cc94739c85351d931f44.pdf	Mikhail_Zotov_Test_Automation_Engineer.pdf
276	330	/project/postgres/current/storage/uploads/cv/20221023122912542aed92224c1c319fa0869f7dc9d602.pdf	CV Eva Stavrou.pdf
277	331	/project/postgres/current/storage/uploads/cv/20221023150136003eacb41084aedbccc8646e5a323367.pdf	Andreas Myrianthis CV.pdf
278	332	/project/postgres/current/storage/uploads/cv/20221024055639d5f07f2e9cfbf2e28d8a86659da1e6b1.pdf	Resume-Elena-Krachok.pdf
279	333	/project/postgres/current/storage/uploads/cv/20221024072413191a2d0bfc6c9e4462667c94a5d45a01.pdf	Maria Sechkareva CV.pdf
280	335	/project/postgres/current/storage/uploads/cv/20221024111203bd1f97dd787ef8e899e1b200f1eba644.pdf	CV - V. Kukharenko.pdf
281	337	/project/postgres/current/storage/uploads/cv/202210241915429fdfcab529e148d220d582bcaa99c18e.pdf	CV_Alexander_Rogalskiy_master_EN.pdf
282	338	/project/postgres/current/storage/uploads/cv/202210241916129fdfcab529e148d220d582bcaa99c18e.pdf	CV_Alexander_Rogalskiy_master_EN.pdf
283	339	/project/postgres/current/storage/uploads/cv/2022102507383206dd1cf5d9e2959efb582b01a0a97216.docx	TestDOC.docx
284	340	/project/postgres/current/storage/uploads/cv/202210250741000f04f5511704aac6507ecf616094aa85.docx	TestDOC2.docx
285	341	/project/postgres/current/storage/uploads/cv/202210250751301780c6b580510119b650a74e9a6fca3c.pdf	Comunication form.pdf
286	342	/project/postgres/current/storage/uploads/cv/202210250752521780c6b580510119b650a74e9a6fca3c.pdf	Comunication form.pdf
287	343	/project/postgres/current/storage/uploads/cv/202210250753211780c6b580510119b650a74e9a6fca3c.pdf	Comunication form.pdf
288	344	/project/postgres/current/storage/uploads/cv/20221025100951d7419475fae70135048718b205d17515.pdf	Раскотов Александр Николаевич (2).pdf
289	345	/project/postgres/current/storage/uploads/cv/2022102513262006dd1cf5d9e2959efb582b01a0a97216.docx	TestDOC.docx
290	346	/project/postgres/current/storage/uploads/cv/2022102513283706dd1cf5d9e2959efb582b01a0a97216.docx	TestDOC.docx
291	347	/project/postgres/current/storage/uploads/cv/20221025140315b18c20cd3734fa6ef7683f3878a940a3.pdf	Arabic enterprise (1).pdf
292	348	/project/postgres/current/storage/uploads/cv/202210251403511f716d22bf52c1b57b701be5e9e803fa.txt	test5.txt
293	349	/project/postgres/current/storage/uploads/cv/20221026063816c1b2041e36c58faf5ad5cb602f635e59.pdf	Resume-Iuliia-Bykadorova.pdf
294	350	/project/postgres/current/storage/uploads/cv/202210261310172a1181e57e14828bf7203335e1507c8d.pdf	Vladimir_Dmitrienko_CV.pdf
295	351	/project/postgres/current/storage/uploads/cv/20221026153446eb4f97c4ddc640f9a164ec37c9995e9e.pdf	Brusnik Anna PM CV.docx (1).pdf
296	352	/project/postgres/current/storage/uploads/cv/20221026172221c1cc68974dc7b66862eb61b896e7f3ab.pdf	Maria's Resume.pdf
297	353	/project/postgres/current/storage/uploads/cv/202210270805377a7422c61974c97856b8672678181d73.pdf	Vladimir Polyansky CV 2022.pdf
298	354	/project/postgres/current/storage/uploads/cv/20221027081322e2a8b2e6f440ab40442ee1036b2af42e.pdf	PM_cv_Artem Dauksha_vF.pdf
299	355	/project/postgres/current/storage/uploads/cv/20221027081601eefa1624a58ff52c8ee7b56ea5260f0f.pdf	CV_Tatiana Sorohan.pdf
300	356	/project/postgres/current/storage/uploads/cv/202210270816209abb161e50565e7cc7380e4c6af38e1e.pdf	Tolmachev Kirill_CV.pdf
301	357	/project/postgres/current/storage/uploads/cv/202210270921478c75fbd80703e294cc53b70fb351c1e8.pdf	Ingrida_Cernavska_-_ CV (1).pdf
302	358	/project/postgres/current/storage/uploads/cv/202210270929299a118cb2d1cbb16d7cd749d084ecc5a9.pdf	HrachyaDarbinyan.pdf
303	359	/project/postgres/current/storage/uploads/cv/20221027093054c2e84b9b53918d3769aa49205d45f8e2.pdf	CV HR Specialist Anastasiya Trubchyk.pdf
304	360	/project/postgres/current/storage/uploads/cv/20221027095200aa45716627437684b5819109eb60bc99.pdf	Shlenskaya N_CV analyst_eng.pdf
305	361	/project/postgres/current/storage/uploads/cv/202210271156197777b4ed0ed2a4d60030a5644c3f56f8.pdf	CV Yanina Zhukova.pdf
306	362	/project/postgres/current/storage/uploads/cv/202210271322276f0aabb8630622bbf9dbe30352641d7e.pdf	Tatyana Mazaeva.rtf.pdf
307	363	/project/postgres/current/storage/uploads/cv/2022102714262170f804885000c1810cce178f9c7f1003.pdf	CV_Yashina_en.pdf
308	364	/project/postgres/current/storage/uploads/cv/20221027144711bd254401ec693733b6108f6518221caa.doc	AS CV.doc
309	365	/project/postgres/current/storage/uploads/cv/20221027151238b6b3e75f339104b19819613be0ad4936.pdf	CV Valeryia Chouhun.pdf
310	366	/project/postgres/current/storage/uploads/cv/20221027160544eb2389ef8088a260e3ce3e627283531c.pdf	Chirkov_CV.pdf
311	367	/project/postgres/current/storage/uploads/cv/202210271730081382b5850cf4dc832c03738ac1a07f9c.docx	CV Anna Tretyakova.docx
312	368	/project/postgres/current/storage/uploads/cv/2022102810255125f2fc52854c6aafbd79f409db900c87.pdf	CV_Lina Lisina.pdf
313	369	/project/postgres/current/storage/uploads/cv/20221028114250f85304cd95f9aaf3cf72547b17638f6a.pdf	CV_Shevchenko_short.pdf
314	370	/project/postgres/current/storage/uploads/cv/202210281420225ed80f7d483b65669223db63f03f75b3.pdf	Marta_Olovets_Resume.pdf
315	371	/project/postgres/current/storage/uploads/cv/20221028180252a5980c5a403ba8b5597c30c9326d4713.pdf	Ilya_Kornishin-DevOps_SRE-CV.pdf
316	372	/project/postgres/current/storage/uploads/cv/20221028183202d99e045612fd12574b001a931a3c7bb7.pdf	Balakin Vladimir Sergeevich.pdf
317	373	/project/postgres/current/storage/uploads/cv/20221028183833449842ac9fd5626f102443586c9b6760.pdf	Sergei Shchetinin.pdf
318	374	/project/postgres/current/storage/uploads/cv/20221028185200bd4a0966092eb7f4bf1aac02b1a56981.pdf	Anton Chernyshev.pdf
319	375	/project/postgres/current/storage/uploads/cv/2022102819090945c1f97a08c8f37eeac37c364b642fc1.pdf	Profile.pdf
320	376	/project/postgres/current/storage/uploads/cv/202210281926367e361bad5cc49119c0bb2e3f22ffa380.docx	CV Anastasia Lutaya System Engineer.docx
321	377	/project/postgres/current/storage/uploads/cv/202210281929145f3e0e320fa80583786ab330dcb98186.pdf	CV System Engineer IAndrievich.pdf
322	378	/project/postgres/current/storage/uploads/cv/2022102820403652584a90f06fda2fb2c7befa805d1fa0.pdf	CV Pyrinov Aleksey.pdf
323	379	/project/postgres/current/storage/uploads/cv/2022102821124250f52c61d3feca279dc0465c0384a610.pdf	cv2022.pdf
324	380	/project/postgres/current/storage/uploads/cv/2022102823272740df3d9e67f6520087d4bb8e3b1e9bfd.pdf	CV_Gizatullin_Arseny.pdf
325	381	/project/postgres/current/storage/uploads/cv/20221029031055ac2b4068809f37f833c30a3d5a83766d.rtf	Бычков Илья Александрович.doc.rtf
326	382	/project/postgres/current/storage/uploads/cv/20221029060920b3d52139e0e04acb4f165056584a9eb0.pdf	Popov Vladislav Nikolaevich (2).pdf
327	383	/project/postgres/current/storage/uploads/cv/20221029061532cc7ee3da00e196e61b8d4ef99c4572ee.pdf	Resume.pdf
328	384	/project/postgres/current/storage/uploads/cv/202210290648068a7c251fd5989ebdd14c2c09a1815047.docx	CV_eng.docx
329	385	/project/postgres/current/storage/uploads/cv/202210290713263aafa11f3b2bf31a0ac297d517cc256d.pdf	Petrov Evgenii.pdf
330	386	/project/postgres/current/storage/uploads/cv/202210290741162bbfdeb3a4cc8385a2b95985c5eb2a1d.pdf	Suetin_CV.pdf
331	387	/project/postgres/current/storage/uploads/cv/202210290744330484f14a35e44e30f950518443fcfb9f.docx	Suetin_CV.docx
332	389	/project/postgres/current/storage/uploads/cv/20221029091200e949c1d5b23db9e05639858341b8a3a9.pdf	baldanov_sergey.pdf
333	390	/project/postgres/current/storage/uploads/cv/20221029133156e1917ec8daee857468b9423b534c39fb.pdf	Iliushin N.A.pdf
334	391	/project/postgres/current/storage/uploads/cv/20221029135520b81efce3fb209823774ed12a3257a05f.docx	Afanasenko_Marketing Creative Producer_CV.docx
335	392	/project/postgres/current/storage/uploads/cv/20221030071245adbec62a5bcf7f8a420eec03920aa0d9.pdf	Dmitrii Zhidkov.pdf
336	394	/project/postgres/current/storage/uploads/cv/202210310431180f2df61de638687fbfa34ea9c86955bd.pdf	Alexey E Subote System Engineer.pdf
337	395	/project/postgres/current/storage/uploads/cv/2022103108232124f41b0a2c425211711657d715d89c8d.pdf	Петров Николай Владимирович.pdf
338	396	/project/postgres/current/storage/uploads/cv/20221031102524ff2a4dd5b2e91fe6ae4ae423aedb7f8c.pdf	Ekaterina_Motorykina_Resume.pdf
339	397	/project/postgres/current/storage/uploads/cv/20221031112239ae50837c34e9d2ee8eed0dbf19fe9478.docx	Непомнящих Денис Иванович резюме.doc.docx
340	398	/project/postgres/current/storage/uploads/cv/20221031172031d47a811347cf19cbe7129f9554ba1ab2.pdf	Resume-Aleksandr-Kataev.pdf
341	400	/project/postgres/current/storage/uploads/cv/202211010659456e1c1b4f7a83af417f5070b5e31b6fcb.pdf	Resume Stanislav Bondarenko.pdf
342	401	/project/postgres/current/storage/uploads/cv/20221101114132f1be3a8ebc704c89a518a90091ddf7e0.docx	cv.docx
343	402	/project/postgres/current/storage/uploads/cv/202211011213027f03bf2bee7308ab175fed5a01ce53fd.pdf	resume.pdf
344	403	/project/postgres/current/storage/uploads/cv/202211011235482924edb2ef6209b37c12cac8f077999d.pdf	Resume Lyutov Alexander (2).pdf
345	404	/project/postgres/current/storage/uploads/cv/202211011401480e6d8ec875c698990377ba7ffe24ac33.pdf	Kyriakos Georgiou - Cover Letter & CV - 2022.pdf
346	405	/project/postgres/current/storage/uploads/cv/202211011638517d3c307f52f275170404b252e20e6a5d.pdf	dmitry-abramov.pdf
347	406	/project/postgres/current/storage/uploads/cv/2022110118555225d3c68a6cf441899ddfb8fa20722237.pdf	Portfolio Yulia Chr.pdf
348	407	/project/postgres/current/storage/uploads/cv/2022110120480044e8ccb8d6f8147c9ede05ade4df6070.pdf	Levkoev Pavel 0.4.pdf
349	408	/project/postgres/current/storage/uploads/cv/20221102134408cc7ee3da00e196e61b8d4ef99c4572ee.pdf	Resume.pdf
350	409	/project/postgres/current/storage/uploads/cv/20221102142926879bfd9da7bdb6a32a2a9465ca504ce5.pdf	2_5316923664225016071.pdf
351	410	/project/postgres/current/storage/uploads/cv/20221102143914a91dda8de8c71bf21f8fa15fb44bbae3.pdf	CV - Adriano de Melo.pdf
352	411	/project/postgres/current/storage/uploads/cv/20221102180807f4835677d02d6a47b80bfd98d9821e3d.docx	Oluwaseun_Adeleye_DA2.docx
353	412	/project/postgres/current/storage/uploads/cv/2022110310054654db181b4e47566575dce3e412de2257.pdf	JOSEPH ASUQUO-LD .pdf
354	413	/project/postgres/current/storage/uploads/cv/202211031936482799313e1674a079ad2a6a0ee602b9f1.docx	JENNIFER_IGBETA_CV_Ne4.docx
355	414	/project/postgres/current/storage/uploads/cv/202211051918180f9398e8efb634b157cd585faa8da6e2.pdf	Omah Ogbuehi.pdf
356	415	/project/postgres/current/storage/uploads/cv/202211061124040c85044a63217d4f4d476a88864d9cb7.pdf	Dani_Jaber_-_-3.pdf
357	416	/project/postgres/current/storage/uploads/cv/202211071142400c85044a63217d4f4d476a88864d9cb7.pdf	Dani_Jaber_-_-3.pdf
358	417	/project/postgres/current/storage/uploads/cv/2022110712141814007311b82ac8a10cb48dbbb68002f0.pdf	Portfolio Alina Vozniak.pdf
359	418	/project/postgres/current/storage/uploads/cv/2022110712172314007311b82ac8a10cb48dbbb68002f0.pdf	Portfolio Alina Vozniak.pdf
360	419	/project/postgres/current/storage/uploads/cv/2022110714135930d0fd25701e2eee2de5346ffa1fa745.pdf	Anna Broadie_CV_2022.pdf
361	420	/project/postgres/current/storage/uploads/cv/2022110714252674e51c8c0aa773864942e96387f7ae71.pdf	Pavel Rybalkin_CV2022_eng.pdf
362	421	/project/postgres/current/storage/uploads/cv/202211071730020304fb7166d7a6a401f1bec03901c6e1.pdf	Marcos-Ramos-CV.pdf
363	422	/project/postgres/current/storage/uploads/cv/202211071805551e222aa85955a2f5a6b844bf68d5abba.pdf	Kotsik Mikhail Yurievich CV.pdf
364	423	/project/postgres/current/storage/uploads/cv/20221107214533a7823005aa655aa8a1b38243ce372d14.pdf	RUKAYAT_ISHOLA_CV.pdf
365	424	/project/postgres/current/storage/uploads/cv/202211081015280c85044a63217d4f4d476a88864d9cb7.pdf	Dani_Jaber_-_-3.pdf
366	425	/project/postgres/current/storage/uploads/cv/20221109101955622b11589239fc7750a9c18f34538f93.pdf	CL & CV Copywriter Yury Borodaev.pdf
367	426	/project/postgres/current/storage/uploads/cv/20221109110553f5cdc84e2109ab697861bc8783ffe27e.pdf	CL & CV SMM_Specialist  Yury Borodaev.pdf
368	427	/project/postgres/current/storage/uploads/cv/20221109133309a791503b77dbb8bdec829485030632ba.pdf	CV Vi Aminova .pdf
369	428	/project/postgres/current/storage/uploads/cv/20221110080436367be9e6eeee37ae7eb106d68948014f.pdf	СV_Alexandra Larchenko.pdf
370	429	/project/postgres/current/storage/uploads/cv/20221110100720bdc350583fb5d3d8da0ea0cec3e24141.rtf	test cv.rtf
371	430	/project/postgres/current/storage/uploads/cv/20221110105016bdc350583fb5d3d8da0ea0cec3e24141.rtf	test cv.rtf
372	431	/project/postgres/current/storage/uploads/cv/202211101242416d9ae836919346cea84715277b130773.pdf	Oluwatope Akintunlese - Resume..pdf
373	432	/project/postgres/current/storage/uploads/cv/20221110171637bdc350583fb5d3d8da0ea0cec3e24141.rtf	test cv.rtf
374	433	/project/postgres/current/storage/uploads/cv/2022111018115145366a1d4d4a68ff0c141d71b8083bf4.pdf	Atixaley_Bennet_Resume.pdf
375	434	/project/postgres/current/storage/uploads/cv/20221113055432aa45716627437684b5819109eb60bc99.pdf	Shlenskaya N_CV analyst_eng.pdf
376	435	/project/postgres/current/storage/uploads/cv/202211141159373da039597bcc6636dc553bddf13c983a.pdf	CV_Timur_Sakhabutdinov (1).pdf
377	436	/project/postgres/current/storage/uploads/cv/202211141211591e7792f54f6289dc97f2eeb63b712f63.pdf	CV- AS v.1.pdf
378	437	/project/postgres/current/storage/uploads/cv/202211141216581e7792f54f6289dc97f2eeb63b712f63.pdf	CV- AS v.1.pdf
379	438	/project/postgres/current/storage/uploads/cv/20221114122513db0cde8a037a4acf71554a3280c71eae.pdf	Vlad Zakharov CV.pdf
380	439	/project/postgres/current/storage/uploads/cv/2022111414414918cc1a3fc3826a3668dcf9ba67ebf94c.pdf	CV Kateryna Myronova-Kopysova 3 (wecompress.com).pdf
381	440	/project/postgres/current/storage/uploads/cv/202211150754406dc99f8f5d80a8ab8dbce44820987e99.docx	Resume.docx
382	441	/project/postgres/current/storage/uploads/cv/20221115113617e5fff147598ae915749f2a0207f38b39.pdf	Pavel Aleshin CV 2022.pdf
383	442	/project/postgres/current/storage/uploads/cv/20221115114213df444e923815a1f6d2cdb821ebbb1c70.pdf	IVAN_RAKOVSKII_CV.pdf
384	443	/project/postgres/current/storage/uploads/cv/202211151519063a581650b03fd9ed1c4db0f24ea458e9.pdf	CV Kirill Gordeev 1 (3) (1).pdf
385	444	/project/postgres/current/storage/uploads/cv/20221115154235b273d2ef03bc0eaec3532f39110023ae.pdf	Nikita Tarasov.pdf
386	445	/project/postgres/current/storage/uploads/cv/20221115154806396c7f04e5cb2644a689d5ed5d97f98e.pdf	CV Anna Novoselova.pdf
387	446	/project/postgres/current/storage/uploads/cv/2022111516055957b52802d72d2eeaf6e7b837f5db06da.pdf	Koltsov_Oleg_CV.pdf
388	447	/project/postgres/current/storage/uploads/cv/202211151622438af2b9b0d31de5c492cd106aebcbce5b.pdf	Resume Tyunina Yulia  (1).pdf
389	448	/project/postgres/current/storage/uploads/cv/20221115162455302d70d989b05c01e5f6727f023d1f73.pdf	CV_Vladimir_Rodkin.pdf
390	449	/project/postgres/current/storage/uploads/cv/202211151720039cc055f940c5f298bf26bb9423bf4e9f.pdf	CV_Skorikov.pdf
391	450	/project/postgres/current/storage/uploads/cv/202211151924560c8b391e3b75a5ed1ceced2dea423b4e.pdf	sk-cv.pdf
392	451	/project/postgres/current/storage/uploads/cv/2022111519391637021e290aed29b4c2f697fb1a4b979f.pdf	CV Kristina Gusarova.pdf
393	452	/project/postgres/current/storage/uploads/cv/202211152150401ffb37814d09c012a62258de1856b0a0.pdf	CV.pdf
394	453	/project/postgres/current/storage/uploads/cv/20221116064651ae09a672b8ef336bb02ba52897be0654.pdf	CV -Tatiana Presnova 11.11.2022.pdf
395	454	/project/postgres/current/storage/uploads/cv/2022111608090113db832d2666a931799d7ca0a7717caf.docx	Efremov George Resume.docx
396	455	/project/postgres/current/storage/uploads/cv/202211161222399bc226903ed5147deef8cd876037c2bf.pdf	Anastasiia Andriishina, HR brand.pdf
397	456	/project/postgres/current/storage/uploads/cv/20221116123652d413df5422c5cceb9d46cffbbad11c14.docx	Ohaka.C.C.docx
398	457	/project/postgres/current/storage/uploads/cv/20221116142002a71cac74fff383b29646d110f3a4bd90.docx	CURRICULUM VITAE_Anna Athanasiadou (1).docx
399	459	/project/postgres/current/storage/uploads/cv/202211161827495f29ea54b906d02af6d483e21586a7a8.pdf	System Engineer.pdf
400	460	/project/postgres/current/storage/uploads/cv/20221116200144d863b596131ae0e41e80fd1593495451.pdf	CV_ZN.pdf
401	461	/project/postgres/current/storage/uploads/cv/2022111708240786c05a92852fba32ea9340aab25dc0c7.pdf	Larionov Leonid_CV.pdf
402	462	/project/postgres/current/storage/uploads/cv/20221117095742d94bfcd263447f3e29176effd0b09a9b.pdf	Резюме Dzhumabaev Ruslan.pdf
403	463	/project/postgres/current/storage/uploads/cv/20221117121012cc3fa59f59b5814e23855b5ae82d05b5.pdf	Kristina Dmitrievykh_CV.pdf
404	464	/project/postgres/current/storage/uploads/cv/202211171452480cfcb7736e2f14a058cceb4f70200982.pdf	mazurok-cv.pdf
405	465	/project/postgres/current/storage/uploads/cv/20221117192109dc16ebda0d9a89c961fb3d5e07a2bbfb.pdf	CV Ryaboshlyk Egor.pdf
406	466	/project/postgres/current/storage/uploads/cv/20221117194834208de7ee56d1a439249874d44b95a11e.pdf	Camilo Ramirez_CV_2022.pdf
407	467	/project/postgres/current/storage/uploads/cv/202211180649379e9d77a576eb28ed3d5e3205110f828c.pdf	CV Elena 091122.pdf
408	468	/project/postgres/current/storage/uploads/cv/202211180745565f3449664b4d438c75ea0e60206cae7e.pdf	Пчелякова Яна Игоревна (3).pdf
409	469	/project/postgres/current/storage/uploads/cv/20221118095153d1706e5f2dff8cb21ca31f2fb3a9e698.pdf	CV_Sharov_ENG02.pdf
410	470	/project/postgres/current/storage/uploads/cv/20221118102804fb04f449c40087534a47ff141c94dcbd.pdf	Nadvidova_CV.pdf
411	471	/project/postgres/current/storage/uploads/cv/20221118105725f570f53b8747a5464848941874d1539f.pdf	CS cv copy.pdf
412	472	/project/postgres/current/storage/uploads/cv/202211181106295615849dd93afb227c94092d7d0c5ba8.pdf	Churkin CV-1.pdf
413	473	/project/postgres/current/storage/uploads/cv/2022111816391893e4b3df2f041221f972640f8b9468a7.pdf	Fridtjov Lea Resume - Marketer.pdf
414	474	/project/postgres/current/storage/uploads/cv/202211190752455d97c9198a20a626e989dde7a6293f44.pdf	CV Lesnyak Dmitriy.pdf
415	475	/project/postgres/current/storage/uploads/cv/20221121115532f570f53b8747a5464848941874d1539f.pdf	CS cv copy.pdf
416	476	/project/postgres/current/storage/uploads/cv/2022112112004079b18b9080a39369cc1869e82bd271d0.pdf	CV_Elena Algina_People Specialist.pdf
417	477	/project/postgres/current/storage/uploads/cv/2022112112011579b18b9080a39369cc1869e82bd271d0.pdf	CV_Elena Algina_People Specialist.pdf
418	478	/project/postgres/current/storage/uploads/cv/202211211234004be7926cdc2ba847aa7c97949070b079.pdf	CV_Bogdanov SI accountant .pdf
419	479	/project/postgres/current/storage/uploads/cv/202211211247082e4055d797b2123159c98a4fbdfb6483.doc	ZherebtsovN_CV.doc
420	480	/project/postgres/current/storage/uploads/cv/202211211408253bbc052b40e6181a756471e5d3c395b5.rtf	Romanov Maxim Gennadievich, Marketing manager.rtf
421	481	/project/postgres/current/storage/uploads/cv/20221121161908d02945060c76d9b7040b7a6608e7fd6c.pdf	MariannaM.pdf
422	482	/project/postgres/current/storage/uploads/cv/202211211644173f38bd400e64e1260482b45dc7bd1e46.pdf	CV_Anastasia_Kuchina.pdf
423	483	/project/postgres/current/storage/uploads/cv/2022112120243471bd2dd62340f33abca1aa0c43196c9e.pdf	Vikhliaev Ilia.pdf
424	484	/project/postgres/current/storage/uploads/cv/20221122070547d4c0d1d9cc3a21a76fbeb461d0a508b2.pdf	Evgenii-Pozdniakov-gmate.pdf
425	485	/project/postgres/current/storage/uploads/cv/20221122083550a4cb6c00354a7e197538436fed5d87b1.pdf	Yana Dashevski CV..pdf
426	486	/project/postgres/current/storage/uploads/cv/20221122092527d43e602a9c1c97d31675da0abf66295c.pdf	Oleg Gryazev CV eng.pdf
427	487	/project/postgres/current/storage/uploads/cv/202211221001267c63be792568edab3c84c7030ab7bdff.pdf	CV_N Rogachev.pdf
428	488	/project/postgres/current/storage/uploads/cv/20221122182715dc16ebda0d9a89c961fb3d5e07a2bbfb.pdf	CV Ryaboshlyk Egor.pdf
429	489	/project/postgres/current/storage/uploads/cv/20221122215221c31c587ecf1f5a03d51d49f2650c08cf.pdf	Kyriacos Papakyriacou CV.pdf
430	490	/project/postgres/current/storage/uploads/cv/20221123004317d70f31fc542e15c69b09b93b33850d66.pdf	Irina Fedorova CV | People Specialist.pdf
431	491	/project/postgres/current/storage/uploads/cv/2022112305175333618cfbb7e844784f3985fd923af5f9.pdf	CVr.pdf
432	492	/project/postgres/current/storage/uploads/cv/202211230952197ba125f6fd1fe07cc304fe6af3c1ac38.pdf	Evgeniia_Arzamastseva_-_Producer.pdf
433	493	/project/postgres/current/storage/uploads/cv/2022112310445891782014dc571d62b0ce1da273a4b13f.pdf	Viacheslav Komkov_CV.pdf
434	494	/project/postgres/current/storage/uploads/cv/20221123220128ff40a75abdc1235b17d63827c655b85f.pdf	Resume_Nataliya_Naumenko_compressed.pdf
435	495	/project/postgres/current/storage/uploads/cv/2022112411364313f6f9e8c38ac4b690cc46c5368a00a1.pdf	Ekaterina Safiulina_People Operations Specialist_CV.pdf
436	496	/project/postgres/current/storage/uploads/cv/20221124131609dedab6c457af447767c83370e9576159.pdf	Mari Dorogova EV.pdf
437	497	/project/postgres/current/storage/uploads/cv/202211241321287e1230e297d20edc3f9a5d12e40cdcb4.pdf	Kalenov CV Eng.pdf
438	498	/project/postgres/current/storage/uploads/cv/20221124142344389f26471c55782a3c7a1f1e59e94605.pdf	CV-Diana-Themistokleous.pdf
439	499	/project/postgres/current/storage/uploads/cv/20221124144123b4e240461636b34797a303d313700df7.docx	CV_Georgia Kouali.docx
440	500	/project/postgres/current/storage/uploads/cv/202211250621359d89b069f331251f1feb6cab03e48cd2.pdf	Kate_CV_PMM.pdf
441	501	/project/postgres/current/storage/uploads/cv/20221125085155a91dda8de8c71bf21f8fa15fb44bbae3.pdf	CV - Adriano de Melo.pdf
442	502	/project/postgres/current/storage/uploads/cv/2022112514335548554d07cb8db97d0b31bc67d85e1e0f.pdf	cv_EN_SoteriouMaria.pdf
443	503	/project/postgres/current/storage/uploads/cv/2022112514360948554d07cb8db97d0b31bc67d85e1e0f.pdf	cv_EN_SoteriouMaria.pdf
444	504	/project/postgres/current/storage/uploads/cv/2022112515484371d0506c5cb75e9f4ba0b2c75fce447f.pdf	CV_Armine Stepanyan.pdf
445	505	/project/postgres/current/storage/uploads/cv/20221125161552eafad90ee3079887490c4d28431f86ef.pdf	CONSTANTINA CHRISTODOULOU CV.pdf
446	506	/project/postgres/current/storage/uploads/cv/20221125165048262ad5e09823adaebf5c31aa38092bb3.pdf	CV_KUNYTSKA VALERIYA.pdf
447	507	/project/postgres/current/storage/uploads/cv/202211251829369bf9996eecbf68801d338f2cb6cee58f.pdf	AMM CV and intro to Quadcode 25 Nov 22.pdf
448	508	/project/postgres/current/storage/uploads/cv/2022112521511745c1f97a08c8f37eeac37c364b642fc1.pdf	Profile.pdf
449	509	/project/postgres/current/storage/uploads/cv/2022112521523345c1f97a08c8f37eeac37c364b642fc1.pdf	Profile.pdf
450	510	/project/postgres/current/storage/uploads/cv/20221126071816f9d62071fe72291702346ba5239ec7e5.pdf	IKENNA PASCHAL OKONKWO CV UPDATED.pdf
451	511	/project/postgres/current/storage/uploads/cv/2022112611572245e047bdd78a34ea421640dc0fa4b677.pdf	SavvasAG.pdf
452	512	/project/postgres/current/storage/uploads/cv/2022112614123246ed3392a91d85a3eb37b68bdb5cb2f6.pdf	Chryso SHOKKOU CV.pdf
453	513	/project/postgres/current/storage/uploads/cv/2022112618250858ee3f6ed28f006b09a9e9d406a6b3ef.pdf	Marioara Goard CV.pdf
454	514	/project/postgres/current/storage/uploads/cv/20221127174539a3fc7978da68c8dfc45e78a517bdbbe6.pdf	Aidos Sagat Resume.pdf
455	515	/project/postgres/current/storage/uploads/cv/20221127174646a3fc7978da68c8dfc45e78a517bdbbe6.pdf	Aidos Sagat Resume.pdf
456	516	/project/postgres/current/storage/uploads/cv/20221127174800a3fc7978da68c8dfc45e78a517bdbbe6.pdf	Aidos Sagat Resume.pdf
457	517	/project/postgres/current/storage/uploads/cv/2022112805074918c54757f420164a1ff591cf580f0370.pdf	gaurang_maheta-1-1.pdf
458	518	/project/postgres/current/storage/uploads/cv/2022112806552711992a1087be3b61ea847c96356a1188.pdf	Msryan Tatevik CV.pdf
459	519	/project/postgres/current/storage/uploads/cv/202211281348327b677b2446fe2c0c6feabb8477862fa6.pdf	Alex Punko CV.pdf
460	520	/project/postgres/current/storage/uploads/cv/20221128152955e7bcb376a124b946ce7713cbabdd44a6.pdf	Resume Rita Adeshewa Badeji (1).pdf
461	521	/project/postgres/current/storage/uploads/cv/20221128153404e7bcb376a124b946ce7713cbabdd44a6.pdf	Resume Rita Adeshewa Badeji (1).pdf
462	522	/project/postgres/current/storage/uploads/cv/20221128192504fcea34bc5812056b33068213d4c09ad0.pdf	MARI_CV .pdf
463	523	/project/postgres/current/storage/uploads/cv/2022112819252409670fc6b593ff3f82130d71b0064dc8.pdf	cv_david_nanyan.pdf
464	524	/project/postgres/current/storage/uploads/cv/20221128214212c1d7be01c1c60c2c80067f27b7fdf6a1.pdf	Giorgos Chrysostomou - CV.pdf
465	525	/project/postgres/current/storage/uploads/cv/20221129083218718d3d085a2906d677d37ed693641d79.pdf	Ruslan CV .pdf
466	526	/project/postgres/current/storage/uploads/cv/20221129085453fb723049ee826a3506c81ea1411988d0.pdf	CV CITRA 2022 NOVEMBER.pdf
467	527	/project/postgres/current/storage/uploads/cv/20221129085613fb723049ee826a3506c81ea1411988d0.pdf	CV CITRA 2022 NOVEMBER.pdf
468	528	/project/postgres/current/storage/uploads/cv/20221129174210d822f7bea9a3d1c994397d5bc290a25c.pdf	CV Ksenia Okuntseva.pdf
469	529	/project/postgres/current/storage/uploads/cv/202211291850057ef782a2f98727333e8bdf94132036c5.pdf	CV-Annie Savvidou new.pdf
470	530	/project/postgres/current/storage/uploads/cv/20221129211605801389c158282828166ec787fe8b5380.pdf	CV_Kulikov_prod_ENG.pdf
471	531	/project/postgres/current/storage/uploads/cv/20221129215620d7b78491d4a95d32488c50b8df8f23c2.pdf	CV_Marina Christou.pdf
472	532	/project/postgres/current/storage/uploads/cv/20221130080321e7b614999f8f0ce16d40b39fc1e3e8ac.docx	Nastya Bobretsova CV  2022.docx
473	533	/project/postgres/current/storage/uploads/cv/20221130131844d6eccbe3f205bab8669a63f825ec2c12.pdf	2022.09.27 CV_Ivanov Ilya.pdf
474	534	/project/postgres/current/storage/uploads/cv/202211301330557daa77e27a9bf48bbefd091799d70ece.pdf	Resume-Mark-Khizhniak.pdf
475	535	/project/postgres/current/storage/uploads/cv/202211301331507daa77e27a9bf48bbefd091799d70ece.pdf	Resume-Mark-Khizhniak.pdf
476	536	/project/postgres/current/storage/uploads/cv/202211301407321ffb37814d09c012a62258de1856b0a0.pdf	CV.pdf
477	537	/project/postgres/current/storage/uploads/cv/20221130201857753e281827cd7fa16d240d84bb47be3e.pdf	CV 2022.pdf
478	538	/project/postgres/current/storage/uploads/cv/2022120110203530ced5cc10da96fad7c7e9f06a80e0bf.pdf	Ruben Sharyan.pdf
479	539	/project/postgres/current/storage/uploads/cv/20221201110834f8d4bdce0e38a49dd5acb6c6c5798e03.pdf	Maria's CV.pdf
480	540	/project/postgres/current/storage/uploads/cv/20221201130702788f3b1168ae85fb768627637fb3ba72.pdf	Avetis-Manucharyan.pdf
481	541	/project/postgres/current/storage/uploads/cv/2022120114363033dae5ff5fdeeaaaa933301489dbee59.pdf	CV Vladimir Bitiai (1).pdf
482	542	/project/postgres/current/storage/uploads/cv/202212011502226f14d846b3b5e874df2a1a25555f2022.pdf	vladimir_slepov_cv.pdf
483	543	/project/postgres/current/storage/uploads/cv/20221201192454be4e9841cf793532e0a4a3e970ae4c88.pdf	Semenyuk Lyubov.pdf
484	544	/project/postgres/current/storage/uploads/cv/20221202034138f8745d26d18ccb632813c0fe9dedf1be.pdf	Profile-5.pdf
485	545	/project/postgres/current/storage/uploads/cv/20221202034205f8745d26d18ccb632813c0fe9dedf1be.pdf	Profile-5.pdf
486	546	/project/postgres/current/storage/uploads/cv/20221202110258878500889ef3bfa980c628d9e43469bd.pdf	CVWlodzimierzPoltow.pdf
487	547	/project/postgres/current/storage/uploads/cv/202212021518480ea88be14a37795c6e95463ce1302c59.pdf	Портфолио (2).pdf
488	549	/project/postgres/current/storage/uploads/cv/202212030718546b6e075d9b97d75647fd2fb0acdfe8b0.pdf	Vladislav_Evstigneev_Resume.pdf
489	550	/project/postgres/current/storage/uploads/cv/2022120309102637d7bdcbe0345466adb44b600cc9595e.pdf	Aleksandra Smirnova CV.pdf
490	551	/project/postgres/current/storage/uploads/cv/20221204052655adc881992a61929245aaf45760b16121.pdf	Artem_Titov_Frontend_CV.pdf
491	552	/project/postgres/current/storage/uploads/cv/202212051115512122c34f18dfa3b3899f44441be8293c.pdf	CV Владислава Закутинська #1.pdf
492	553	/project/postgres/current/storage/uploads/cv/20221205154205e7051f613cf83275c96802b0fe5f948f.pdf	CV_2022_.pdf
493	554	/project/postgres/current/storage/uploads/cv/20221205182313cdce69dad1e1b979998cc6fc3250bdd8.pdf	Denis Andreevich Shevchenko.pdf
494	555	/project/postgres/current/storage/uploads/cv/2022120607350725a7008ec44a814bb8fa1d3b6ffcf10a.pdf	UX_ENG.pdf
495	556	/project/postgres/current/storage/uploads/cv/2022120607374267aada27817014fafc20441eff4c3248.pdf	Panteleev CV.pdf
496	557	/project/postgres/current/storage/uploads/cv/202212060809535734f8ca1a22761322f70a6cb00c7d57.pdf	Syretskikh CV.pdf
497	558	/project/postgres/current/storage/uploads/cv/20221206095735228f8d6b6496faa4faa7a319cfb1822d.pdf	Repin Dmitriy.pdf
498	559	/project/postgres/current/storage/uploads/cv/202212061027481ffb37814d09c012a62258de1856b0a0.pdf	CV.pdf
499	560	/project/postgres/current/storage/uploads/cv/202212061027494a8da7c019afe4e50cbe1fd47af325ce.pdf	My-CV-Eng-Fi.pdf
500	561	/project/postgres/current/storage/uploads/cv/202212061300547f87f63bd56f413d98008392699eaa19.pdf	CV Kruus Polina.pdf
501	562	/project/postgres/current/storage/uploads/cv/2022120614212509bac5a7139372e0d60a5e57e97712f1.pdf	Eugene_Ivanov_CV.pdf
502	563	/project/postgres/current/storage/uploads/cv/20221206161309753e281827cd7fa16d240d84bb47be3e.pdf	CV 2022.pdf
503	564	/project/postgres/current/storage/uploads/cv/20221206161427753e281827cd7fa16d240d84bb47be3e.pdf	CV 2022.pdf
504	565	/project/postgres/current/storage/uploads/cv/20221207091725281d47d85fdfdfbd5eaf277ba7e7ba07.pdf	Eleni Partella CV.pdf
505	566	/project/postgres/current/storage/uploads/cv/202212071040531c9bc3b753912aeaf262c9a0cc71ae5b.pdf	CV Gunel Gasimli.pdf
506	567	/project/postgres/current/storage/uploads/cv/2022120714362761175fc5f393d530425f6643e0c27779.pdf	CamScanner 01-24-2022 14.32.pdf
507	568	/project/postgres/current/storage/uploads/cv/20221207182855a96785b9596ede3bf8a882bf1f52147c.pdf	Anastasiia_Zhigalova_CV.pdf
\.


--
-- Data for Name: huntflow_options; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.huntflow_options (id, key, value) FROM stdin;
2	id	46146
1	token	220a57ce8f9c67c0468eff2579e30eba19448cefa46bab035945a766a845d54f
3	refreshToken	a31fd36917d3325ced5fc2a4a086ecacb8c18672effe2bf7597c303c6955e099
\.


--
-- Data for Name: leads; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.leads (id, ip, user_agent, last_name, first_name, phone, email, vacancy, created_at, updated_at, status, message) FROM stdin;
47	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Sinitsyna	Natalia	95175503	n_kosarewa@mail.ru	3108022	2022-09-06 06:28:58	2022-10-07 15:14:27	1	\N
208	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Lisina	Lina	+35795758654	linagurfova@gmail.com	2931569	2022-09-29 15:21:23	2022-10-07 15:14:27	1	Добрый день, заинтересована в вашей вакансии FP&A manager, буду признательна за обратную связь по моему резюме. Спасибо.
242	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Ihsanov	Linar	9175255854	linar.ihsanov@gmail.com	2830170	2022-10-04 10:23:43	2022-10-07 15:14:31	1	Hello!\r\n\r\nPreviously, I was involved in the launch of a voice bot at MTS, a telecom and financial services company. We have integrated into IVR and mobile applications.\r\nI also led projects for the implementation of 2 European startups (Chattermill and ATC) into the MTS infrastructure.\r\nAll this was developed under my leadership in distributed teams of 47 people. With the teams, I implemented and transferred the work from waterflow to the Agile methodology.\r\n\r\nNow I manage a full-cycle team at Sber and we are working on creating a legacy CRM replacement for contact center operators. My tasks include closing 5 legacy systems and integrating my own solution with banking systems in order to simplify the life of employees and create a convenient tool based on research.\r\n\r\nAlso, as a hobby, I created a telegram bot and I try to develop it as a life-time application and promote it. It is related to the wife's hobbies and work and combines the provision of tarot-based psychological counseling.\r\n\r\nI would love to talk to you about a job opening.
246	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1	Chicherov	Alexey	79055666053	alex_chicherov@mail.ru	3159660	2022-10-04 16:22:36	2022-10-07 15:14:35	1	I'm an experienced BDM and b2b-sales guy with backgroung in tech and project management. Seems like we'll be a great fit ;)\r\nI led US business development at KB-12 and Neiry and now I'm leading international business development for new divisions at Sibedge. I have power engineering and project management background.\r\nI lived in NYC for 4 years. I finished NYU project management courses as a side hustle during my time there. My English is fluent (not as CIS-fluent, but a real fluent language) and people can't really say I'm from Russia based on a conversation with me. Can't say if that's a good or bad thing, haha
231	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Bakanau	Maksim	295941150	maksim.bakanau@gmail.com	3159606	2022-10-03 08:06:03	2022-10-07 15:14:37	1	Motivation letter for the CTO Personal Assistant role\r\n\r\n\r\nDear Quadcode’s hiring team,\r\n\r\nI wanted to reach out to you regarding your job posting for the CTO Personal Assistant position. For the past 5+ years, I have worked in a cloe collaboration with business owners and senior executives. My role as their administrative assistant lets them focus on more meaningful work. The Ownership mindset allows me to contribute to businesses in multiple ways. It's my passion to solve problems, facilitate communication, and make processes clear and efficient.\r\n\r\nFor the past 4+ years, I’ve been managing cross-team administrative projects at a fast growing US-headquartered IT start-up, Mapbox R&D center in Minsk. The team has grown during this time from 16 to 250 people (from 350 to 800 people worldwide). Initially, I was solving incoming requests in the areas of "Finance", "Legal", “Accounting”, "HR", "Office Management" and "IT&Security". I was building processes in these areas from scratch and drawing up plans for further operational development. As the company grew and additional talents were recruited, I led some cross-team projects in specified areas. \r\n\r\nI believe that my work experience greatly matches your job requirements. As a result of the deterioration in the environment for the development of commercial companies in Belarus, I am seeking employment on the international labor market. In the meantime, I'm positive about moving overseas.\r\n\r\nA strong organizational, time management, and communication skill set will help me succeed in my role as personal assistant to the CTO. I would appreciate the chance to meet with you to discuss my experience and qualifications. Thank you for your time and consideration.\r\n\r\n\r\nMaksim
254	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Shashkina	Kseniia	638140066	k.sletneva@gmail.com	3154596	2022-10-05 13:21:16	2022-10-07 15:14:43	1	Hi!\r\n\r\nIn my current role I am in charge of all internal events and swag for all locations of the company.\r\n\r\nI would like to be involved in the corporate culture and HR brand more, and this seems like a good position to do this. I’ve been working with HRs from various spheres including IT for over 10 years as an event manager at different agencies in Russia, so I understand the issues of the corporate culture and challenges that companies face while working on it. \r\n\r\nI finished two programs in psychology and coaching and in my everyday life I use coaching methods in interacting with colleagues and clients to help them reach their goals.\r\n\r\nAll my professional life I worked with clients - both in B2B and B2C, and I know how outstanding service looks like because that’s what I was providing my clients with.\r\n\r\nFinally, last December I was on the team that organised a New year party for Quadcode in St. Petersburg, so I know the company and understand the people a little bit.\r\n\r\nI will be truly glad to e-meet you and discuss how my previous experience can benefit the company.
250	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Tyurenkov	Alexey	9162310326	alexis.int@gmail.com	2826189	2022-10-05 08:37:47	2022-10-07 15:14:52	1	My CV is pretty long, so let me structure it for you by skills and topics:\r\n\r\n▪️ Social media. I just can't live without Twitter. The moment I created an account there changed my life forever. Social networks have become my passion since then. That's what I do, and that's what I love doing.\r\n\r\n▪️ English language. I worked for 5 years in English-speaking media. Perfect English is a must for such a job. I watch, listen and read content mostly in English for almost 20 years.\r\n\r\n▪️ Experience within online entertainment. I have a geek website of my own. Some day it was pretty big in terms of MAU, we were doing half a million users.\r\n\r\n▪️ Team management. My maximum is 12 people. 6 editors, 2 image creators, 2 video producers, and two seniors.\r\n\r\n▪️ Digital media and marketing. Social media is my thing but that's not it. I worked a lot with SEO, special projects, Email marketing, newsletters, ads platforms such as Facebook, Instagram, Twitter, and MyTarget.\r\n\r\n▪️ French. I haven't been to France for quite some time but the language is still with me. I watch and read local news. You can't forget it after 5 months being spent in Paris. And that's my case.
2	\N	\N	\N	\N	\N	\N	1	2022-08-03 13:44:29	2022-09-26 16:37:00	1	\N
3	\N	\N	\N	\N	\N	\N	1	2022-08-03 13:44:44	2022-09-26 16:37:00	1	\N
260	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Liveras	Makis	+35799417050	makis.liveras@gmail.com	3159660	2022-10-06 12:21:38	2022-10-07 15:14:23	1	\N
145	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Vavilov	Lev	9042626843	vavilov.lev@yandex.ru	3056083	2022-09-17 17:42:53	2022-10-07 15:15:02	1	\N
189	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.1018 Yowser/2.5 Safari/537.36	Moskvartsev	Semen	+79315341557	semen.moskvarcev@gmail.com	2832600	2022-09-27 13:56:37	2022-10-07 15:15:02	1	\N
190	10.236.15.43	Mozilla/5.0 (Linux; Android 11; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Symeou	Maria	99255845	maria.symeou@live.com	2913219	2022-09-28 09:16:38	2022-10-07 15:15:05	1	To Whom it May Concern,\r\nPlease find attached my Curriculum Vitae for the position of People Specialist. Even though i am currently employed as a Content Writer, my tasks involved many HR components around the company's culture, and i would like to further my job prospects on this department.\r\nThank you for the chance,\r\n\r\nWith Regards,\r\nMaria Symeou
283	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15	Ozhev	Kirill	9272703933	ozhev@bk.ru	3159606	2022-10-11 18:12:44	2022-10-11 18:20:03	1	Dear sirs!\r\nMy name is Kirill.\r\nI'm from Russia. First of all, I Sorry for disturb. I am married and have a daughter, she is 3 years old. My family and I went on vacation to avoid forced participation in the war. In a few days the vacation ends, we can't go back home, otherwise I'll be sent to war and never see my daughter grow up. I ask you to consider my resume for some office job or Junior specialist with the possibility of further training and development in the field of IT. A little about myself: I am a software engineer by education, I have been making websites since childhood, I didn’t work in my specialty, but I always regretted it and periodically took various intensives and courses in QA and programming (Java, Python).
297	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Korban	Ayman	70478181	aymankorban@gmail.com	3159451	2022-10-13 07:36:50	2022-10-13 07:40:03	1	Dear recruiters,\r\n\r\nI am very excited to share my CV for the System Engineer vacancy at Quadcode. \r\n\r\nI have more than seven years experience in linux system administration, IT monitoring tools and solutions.\r\n\r\nI hope i will be taken into consideration.\r\nRegards\r\nAyman
309	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Devyatkin	Dmitry	9992188309	devyatkin.d@outlook.com	3108022	2022-10-18 10:23:55	2022-10-18 10:30:03	1	\N
321	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Nikolaev	Vasili	96131418	vnikolaev1107@gmail.com	2931569	2022-10-20 13:51:34	2022-10-20 14:00:29	1	I am an EU Citizen located in Cyprus with knowledge and experience in IFRS. I have 4 years of professional experience in finance and audit at PwC Cyprus in the role as a Senior Auditor in the Financial Services team. Our team mainly focuses on Forex companies, banks and other financial institutions. I am currently looking for a position in financial analysis field and believe my experience together with my analytical mind-set may add value to your company. \r\n\r\nI joined PwC with a bachelor’s and master’s from UCL and Cass Business School in Information Management and Management Consulting, respectively. In July 2021 I obtained professional qualification (ICAEW) with the highest result in Corporate Reporting, Financial Accounting and Financial Management. Since then, promoted to senior auditor, I proved to be efficient with strong managerial skills and high level of standards. I am responsible for the whole audit process from the planning to completion. \r\nIn my role I perform analysis and subsequent testing of standalone consolidated financial statements in accordance with IFRS, working closely with accountants, financial controllers and accounting heads to efficiently proceed with audit. I work closely with our Tax&VAT departments to conduct respective reviews. As auditor I assess internal controls environment where applicable, conduct analysis and form conclusion on reliance on a risk-basis. \r\nI am naturally extremely organised with high attention to details. In my role as auditor I developed strong Excel skills, analytical mind-set and improved communication skills. \r\n\r\nI am looking forward to hearing from you.
334	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	test	test	234234234	test@test.com	3122184	2022-10-24 08:26:43	2022-10-24 08:30:02	1	test
364	10.236.15.85	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	SHALASHNIKOV	ANDREY	97823807	shal@primehome.com	2931569	2022-10-27 14:47:11	2022-10-27 14:50:02	1	\N
370	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Olovets	Marta	6173190269	dr.olovets@gmail.com	2913219	2022-10-28 14:20:22	2022-10-28 14:30:03	1	I hope you’re doing well! I’m interested in the role you posted: People Specialist Role. Based on my experience as Operations Manager at Neo Cybernetica, I believe I could be a good fit.\r\n\r\nAre you open to a quick chat to discuss the position? I’d love to learn more about it, and share more about my own qualifications. I look forward to hearing from you.\r\n\r\n\r\nA little bit about me: I am a Ukrainian-American that had a career change a couple of years from the medical field into the tech world.\r\nI wore many hats in the last two companies as Operations Manager, building out the recruitment process from scratch, onboarding international employees both in person and remotely, switching Ukrainian teams from outstaffing companies to direct hiring contracts, setting up benefits, and relocating a team from Ukraine to EU and much more.\r\n\r\n- Marta
388	10.236.15.85	Mozilla/5.0 (Linux; Android 10; RMX2020) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.5249.126 Mobile Safari/537.36 OPR/72.2.3767.68393	P	Andrey	9187406637	tashila@list.ru	3159451	2022-10-29 08:13:10	2022-10-29 08:20:02	1	https://cv-kraislerrr.vercel.app/
445	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Novoselova	Anna	+79160809439	novoselovaanne@gmail.com	2953735	2022-11-15 15:48:06	2022-11-15 15:50:04	1	\N
271	10.236.15.87	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Charalambous	Kyriakos	99096525	chkyriakosc@gmail.com	3159451	2022-10-07 13:54:44	2022-10-07 14:51:20	1	\N
270	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Novikov	Nikita	93211909	spawyq@yandex.ru	2830170	2022-10-07 13:39:03	2022-10-07 14:51:20	1	I have various financial experience as a user:\r\n1. Using Tinkoff mobile banking, most of  their products.\r\n2. Making investments and buying stocks. Falimiliar with basics of technical analysis.\r\n3. Company accounting for my startup.\r\nThis experince will allow me to quickly dive into the subject area of Quadcode and accelerate the company growth.
127	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Prokopovich	Ksenia	295872389	kseniaaprokopovich@gmail.com	2769258	2022-09-16 12:44:54	2022-10-07 15:14:23	1	\N
93	10.236.15.87	Mozilla/5.0 (X11; Linux x86_64; rv:104.0) Gecko/20100101 Firefox/104.0	Drakou	George	99832114	drakou.george@gmail.com	2903870	2022-09-14 19:46:47	2022-10-07 15:14:23	1	\N
228	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0	Koloskova	Evgeniia	94105628	evgeniyapeno@gmail.com	2936711	2022-10-03 05:34:34	2022-10-07 15:15:11	1	\N
21	10.236.15.86	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15	Kovalev	Sergei	9269798367	sergeysvyaznoy@gmail.com	2882395	2022-08-31 16:05:46	2022-10-07 15:15:12	1	\N
241	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Safari/605.1.15	Demenkova	Sofia	94415869	son-l5@yandex.ru	2769258	2022-10-04 10:07:21	2022-10-07 15:15:15	1	Hello,\r\nI'm applying for the Head of Talent Acquisition position. I believe my previous experience might be a good fit for this role. Short summary about me: 9 years in IT Recruitment, good knowledge of IT Technologies, Team leading experience, experience with search and relocation candidates from different parts of the world, participation in Talent Acquisition and HR BP activities.\r\nMy language skills would also contribute to this role, being a native Russian speaker, I’m fluent in English and advanced in German.\r\nI would be happy to meet online and answer further questions you may have about my application. If this role is already filled, I would be glad if you consider my profile for an alternative position I could be a fit for.\r\nLook forward to hearing from you. \r\nKind regards,\r\nSofia Demenkova
200	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Trubchyk	Anastasiya	298431528	stasymaja@yandex.ru	2913219	2022-09-29 13:20:56	2022-10-07 15:15:18	1	Hello, my name is Anastasiya. Now I live in Belarus, but I have the opportunity to get a work permit through my husband, who has already been relocated to Cyprus and has a residence permit. \r\nI am extremely interested in further development in the field of HR, for this purpose I'm studying HR management, reading specialized literature and put everything into practice. I love working with people, organizing events and adapting employees to a new place of work. I am proud to have developed and implemented an onboarding system for new employees in my current company. I believe that people are the most important resource of the company and I'm doing everything to make the company's employees feel special.\r\nI will be happy to discuss my experience at the interview. Thank you for your attention.
51	10.236.15.40	Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1	Kireeva	Anna	89171599571	kireeva625@gmail.com	2929153	2022-09-06 09:05:11	2022-10-07 15:15:20	1	\N
184	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Akulova	Zhanna	54720748	spume7@gmail.com	2878507	2022-09-26 16:50:36	2022-10-07 15:15:22	1	Dear Alexandra,\r\n\r\nI am very interested in a Product Designer position at Quadcode because I am looking for new challenges and I would love to participate in development of a trading SaaS platform. \r\n\r\nI am a Product designer from Tallinn, with almost 3 years of experience as a designer and about 5 years in the IT field. Despite the fact that I cannot boast of a long time working as a designer, my latest achievements include the launch of a mobile application from concept to market-ready UI as a single Product designer in the startup-team. I have taken all responsibility for the good UX and UI. It was a challenge for me and I coped with it. I'm also good at designing user-centered e-commerce web-applications and responsive design for tablets. \r\n\r\nMy strengths include constant work on myself and self-improvement in the profession. I have successfully changed my professional field and stack of technology during the last four years from QA engineer to UX/UI designer.\r\n\r\nI work equally well in the office and at home, without losing productivity.\r\n\r\nI am confident that my experience and skills will allow me to successfully fulfill my duties in this position because I am a designer, passionate about creating user-friendly applications, with a wide array of design capabilities from UX-research to pixel-perfect interface design, including stages of competitors analysis, coming up with new ideas and research insights, customer journeys and user flows creation, wireframing, prototyping, usability-testing, illustrations and mockups creation.\r\n\r\nI will be looking forward to your feedback. \r\n\r\nKind regards, \r\nZhanna Akulova
197	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Moiseev	Dmitriy	9530188557	moiseev0354@gmail.com	3056083	2022-09-29 12:37:47	2022-10-07 15:15:27	1	\N
220	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15	Tomm	Tatiana	621084503	tatitommik@gmail.com	3045877	2022-09-30 10:23:12	2022-10-07 15:15:29	1	Hello, I'm sending you my СV! Looking for work remotely, but ready for any relocation; German citizenship.
205	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Selivanova	Yulia	96629145	selivanova.yulia@gmail.com	2913219	2022-09-29 14:35:59	2022-10-07 15:15:34	1	Hi! I am Yulia. I am from Kyiv (Ukraine), but I have been living and working in Cyprus for 2,5 years. I am 33.\r\nI like to work with people and organize all processes. Have a lot of contacts in Limassol and can provide all needed things in the office.\r\n\r\nYour offer is clear and understandable for me. I have all the skills and always love to learn something new.\r\n\r\nI also like your values of company and positive mood on your Instagram!\r\nI can help Quadcode to be an even more comfortable place for people, because I know a lot about organization, ergonomics and decorations. I really will be happy to join your team in Limassol.\r\n\r\nIf you are interested please let me know. My contacts are in cv.\r\n\r\nHave a great day!
139	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 OPR/90.0.4480.84 (Edition Yx 05)	Moiseeva	Taisiya	96980549	moiseieva.tayah@yandex.ru	2913219	2022-09-16 19:21:08	2022-10-07 15:15:38	1	\N
195	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15	Gulenkova	Anna	96889118	agulenkova@yandex.ru	2913374	2022-09-28 17:15:07	2022-10-07 15:15:40	1	Hello, my name is Anna, I'm graphic designer and illustrator, I have 2 years experience as marketing designer. Creating static banners and motion graphics for social media ads. My behance: https://www.behance.net/agulenkova0748
273	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	test	test	234234234	test@foach.site	2832600	2022-10-07 15:07:04	2022-10-07 15:07:20	1	wer
224	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Nitkina	Anastasia	+79160063946	anastasia.nitkina@protonmail.com	3159606	2022-09-30 20:46:30	2022-10-07 15:14:24	1	\N
243	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Balandin	Kirill	7068483247	username351@gmail.com	2913370	2022-10-04 12:59:58	2022-10-07 15:14:24	1	Hey 👋\r\nMy experience as a designer is 4 years in e-commerce projects, digital agencies and product teams.\r\nI've done user research, worked with analytics, worked with large-scale design systems and developed them myself for projects of different levels of complexity.
207	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.53	Sazonova	Diana	9912392457	sazonova.dianna@yandex.ru	2913219	2022-09-29 15:09:30	2022-10-07 15:15:42	1	Dear Valentina,\r\nI have 2, 5 experience in hr sphere. While working in international companies as adidas and Calzedonia Group, I was responsible for recruitment, on-boarding and adaptation of newcomers and developing the corporate culture. \r\nFor ex, in adidas I organized and hosted English speaking club for all employees, was a participant of the Sustainability community and was the initiator or sustainable activities in the company. My English knowledge is C1. \r\nI am pro-active and multitasking person and due to my work background and education I can be a good fit got this position. \r\nThank you,\r\nDiana
81	10.236.15.40	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Oshchepkova	Alice	95115666	oshchepkova.alisa@gmail.com	2953220	2022-09-13 13:34:24	2022-10-07 15:15:47	1	\N
219	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Zsófia	Pilhál	705100518	pilhalzs@gmail.com	3154596	2022-09-30 09:44:24	2022-10-07 15:15:55	1	To whom it may concern,\r\nI would like to express my interest in working at Cultural Corporate Team.\r\nAs part of my current work portfolio, I plan, implement, and evaluate projects and action plans; network and liaise between a wide range of stakeholders; facilitate conflict resolution; organize and lead meetings; track project milestones and deliverables, support financial and technical decisions.\r\nMy work is well organized and thorough. I am a very efficient communicator and a great team player. I always meet deadlines and easily multitask. I speak English and Portuguese. \r\nI believe that my background, passion, dedication, and experience equip me to fulfill the role efficiently. \r\n\r\nThank you for your consideration!\r\nKind regards,
284	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Sazonova	Diana	+79912392457	sazonovadiana59@gmail.com	2913219	2022-10-11 19:16:51	2022-10-11 19:20:03	1	I am a pro active person who successfully multitasks, have C1 level of English and ready for new challenges.\r\nI would be happy to become a part of your team and be effective for the business.\r\nBest regards,\r\nDiana
298	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Zhideleva	Anastasia	9819661714	nastya.anastasia1992@mail.ru	2913219	2022-10-13 09:39:54	2022-10-13 09:40:03	1	Hello my dear collegues. I work in our company in Russia. And I would like to try myself on this position)\r\n\r\nI'm going to move on my own to Cyprus. \r\nI hope you will consider my resume.\r\n\r\nThank you)
310	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Korzh	Bohdan	983295752	bogdan.korzhxz@gmail.com	2893052	2022-10-18 16:28:02	2022-10-18 16:30:02	1	Dear Sir/Madam\r\n\r\nI am writing to apply for the Product Analyst position. I have seen this position on the linkedin web-site.\r\n\r\nI have more than 3 years of analytics and statistics experience. My recent position is related to product analytics and statistics at the social discovery product development team. While this experience I have been researching users' behavior, automatizing and improving the split testing process. \r\n\r\nI am proficient at writing and extracting data via SQL-queries, tableau visualizations, and applying econometric models via R programming language.\r\n\r\nThank you for your time and consideration. Please find the cv attached.\r\n\r\n\r\nBest regards, Bohdan Korzh
322	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Talipov	Ruslan	9067323778	ruslantoleodor@gmail.com	3154585	2022-10-20 15:24:17	2022-10-20 15:30:02	1	Hello.\r\nI'm looking for a new opportunities in my career as a cybersecurity expert. I would like to join your team. Thank you
335	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Kukharenko	Vladislav	9153107926	vladkukharenko@gmail.com	2931569	2022-10-24 11:12:03	2022-10-24 11:20:02	1	Hello!\r\nI'd like to apply to become a Financial Analyst at Quadcode. \r\nI understand that the experience I have is different from analytics, but I want to switch to a more quantitative approach to finance in my work and compensate the lack of experience with a strong passion for learning.
371	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 OPR/91.0.4516.77	Kornishin	Ilya	7077706365	willplaydev@gmail.com	3159451	2022-10-28 18:02:52	2022-10-28 18:10:03	1	Hello! I was interested in your System Engineer vacancy.\r\n\r\nIf you are interested in me, answer, please. Have a nice day!
389	10.236.15.85	Mozilla/5.0 (Linux; Android 10; JSN-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36	Baldanov	Sergey	86654571	baldanov.s@live.ru	3159451	2022-10-29 09:12:00	2022-10-29 09:20:03	1	\N
402	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Belikov	Mikhail	9251676120	belikovmq@gmail.com	3159451	2022-11-01 12:13:02	2022-11-01 12:20:03	1	\N
429	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Test	Testov	11111111	dasfvewr23fwes@mailinator.com	3159451	2022-11-10 10:07:20	2022-11-10 10:10:03	1	TEST
435	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Sakhabutdinov	Timur	228915166	tim.peacemaker03@gmail.com	3159451	2022-11-14 11:59:37	2022-11-14 12:00:29	1	\N
437	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Sokratous	Athina	99847298	socratousathena@gmail.com	2766546	2022-11-14 12:16:58	2022-11-14 12:20:03	1	I have already sent my CV for the position People Specialist. \r\ni just saw that you have a vacancy in HR and i believe this is more related to what am i looking for. \r\n\r\nthank you once again . \r\n\r\nKind Regards, \r\n\r\nA. Socratous
450	10.236.15.14	Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:106.0) Gecko/20100101 Firefox/106.0	Kosachev	Sergey	9213222039	skosachiov@gmail.com	2920282	2022-11-15 19:24:56	2022-11-15 19:30:02	1	\N
212	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0	Koloskova	Evgeniia	94205628	evgeniyapeno@gmail.com	2936711	2022-09-29 18:06:33	2022-10-07 15:14:24	1	\N
272	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	test	test	234234234	test@test.com	2913219	2022-10-07 14:57:01	2022-10-07 14:57:13	1	234234234
285	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Kalinin	Nikolay	9169473645	Kalinin-na@yandex.ru	3154585	2022-10-11 19:35:10	2022-10-11 19:40:03	1	\N
286	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Safari/605.1.15	Zinovyev	Ivan	95605355	zva9401@gmail.com	2953735	2022-10-11 19:51:45	2022-10-11 20:00:27	1	Hello! I have extensive experience in finding and searching for new creatives, analyzing current creative trends. At my previous position as a User Acquisition Manager I was responsible for all these tasks. I currently live in Limassol.
287	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Miletic	Aleksandar	641268610	aleksandar.miletic@hotmail.com	3159660	2022-10-11 19:51:56	2022-10-11 20:00:28	1	Dear Sir or Madam, \r\n\r\nMy name is Aleksandar. I am interested in the position of Senior Sales Partner and would like to have an interview and discuss further. \r\n\r\nPlease find attached my CV. \r\n\r\nThank you in advance for your time and consideration. \r\n\r\nSincerely, \r\nAleksandar Miletic
299	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Constandinou	Caterina	97678927	caterina.constandinou@talentmasters.eu	2769258	2022-10-14 05:15:54	2022-10-14 05:20:02	1	\N
311	10.236.15.43	Mozilla/5.0 (Linux; Android 12; AC2003) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Theodosiou	Nikolas	0035796613893	theodosiounicholas@gmail.com	3056083	2022-10-19 10:57:11	2022-10-19 11:00:32	1	MSc AI @ Imperial, currently working in Machine Learning & Data Science
323	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Charalampous	Koralia	97883203	koralia.char@gmail.com	2931569	2022-10-21 06:02:17	2022-10-21 06:10:03	1	Dear Hr Team,\r\n\r\nPlease find attached my resume.\r\n\r\nKind regards \r\nKoralia Charalampous
324	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Charalampous	Koralia	97883203	koralia.char@gmail.com	2931569	2022-10-21 06:05:17	2022-10-21 06:10:04	1	Dear Hr Team,\r\n\r\nPlease find attached my resume.\r\n\r\nKind regards \r\nKoralia Charalampous \r\n97883203\r\nCyprus,Limassol
336	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Test	Test	+75553020097	test@test.com	2830566	2022-10-24 12:46:19	2022-10-24 12:50:02	1	Test
372	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0	Balakin	Vladimir	9517992671	bal.wladimir@gmail.com	3159451	2022-10-28 18:32:02	2022-10-28 18:40:02	1	Hello. I have a lot of experience as a system administrator and a bit of experience as DevOps.
373	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:96.0) Gecko/20100101 Firefox/96.0	Shchetinin	Sergei	91593197	ssshchetinin@gmail.com	3159451	2022-10-28 18:38:33	2022-10-28 18:40:03	1	\N
374	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 15_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Mobile/15E148 Safari/604.1	Chernyshev	Anton	+905349212903	myspace.spb@gmail.com	3159451	2022-10-28 18:52:00	2022-10-28 19:00:25	1	Hello!\r\n\r\nReady for work.\r\n\r\nAnton
390	10.236.15.14	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Iliushin	Nikita	9627122153	nikita-ilyushin@yandex.ru	3159451	2022-10-29 13:31:56	2022-10-29 13:40:04	1	Hi there!\r\nLooking for someone who is interested in data engineering and support? Here I am.\r\nCheck my resume and let me have reply please.\r\nBR, Nikita
391	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	Afanasenko	Kristina	591004393	afanasenkokr@gmail.com	2953735	2022-10-29 13:55:20	2022-10-29 14:00:25	1	Dear Video Production team of Quadcode,\r\nMy name is Kristina Afanasenko. I am writing to you in response to the vacant position of Marketing Creative Producer. \r\n\r\nI have 6 years of work experience in SMM working in digital agencies and as a freelancer. \r\n\r\nI’ve successfully interacted with teams: design, creative, copywriting, and brand. While working at Neprosto Digital, I hired 10+ illustrators and designers as freelancers for content creation for the account https://www.instagram.com/neprosto.digital/ and targeting ads on Instagram, Facebook, and Youtube. In Re:evolution agency I managed the Design Team’s workflow and increased productivity twice in my project Rostelecom. \r\n\r\nI create creative concepts and manage them from ideas to publishing. You can look at my content portfolio here: afanasenkokr.tilda.ws/portfolio \r\n\r\nI like people and I have the ability to find an approach to everyone. I bring superb communication skills that are quite necessary for handling creative teams and ensuring a project is completed within budget and on time. \r\n\r\nMy English level is C1 and now I’m working on improving this skill by studying with an English teacher twice a week.\r\n\r\nI live in Tbilisi, Georgia, and am open to working remotely or with relocation. Thank you for your time and consideration, I look forward to hearing from you.\r\n\r\nSincerely yours,\r\nKristina Afanasenko.
403	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.26	Lyutov	Alexander	591137217	alexander.lyutov@gmail.com	3159451	2022-11-01 12:35:48	2022-11-01 12:40:02	1	Hello dear recruiter.\r\nPlease consider my resume for the "System engineer" vacancy.\r\nI think I would be a good candidate for this position because in the role of CTO at the current place of work I successfully solved many kinds of problems:\r\n1. System architecting\r\n2. CI/CD\r\n3. Developers management\r\n4. Backend services development (python, rust)\r\nAnd of course direct coding in python, delphi and php.\r\n\r\nA broad outlook of technologies and programming languages will allow me to find\r\nnon-standard solutions to complex problems.\r\n\r\nLeadership experience will help optimize communication processes with colleagues.\r\n\r\nThank you in advance for your attention to my resume.
412	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36	Asuquo	Joseph	8137715102	joemileasuquo@gmail.com	2920282	2022-11-03 10:05:46	2022-11-03 10:10:03	1	Kindly find uploaded my cv for this role i believe i am a good fit for this role and will look forward to how we can discuss further how my experience and relevance in your organization.
430	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	test	Test	11222333	asfdsgb3refdsvdz@mailinator.com	3248128	2022-11-10 10:50:16	2022-11-10 11:00:34	1	test
13	10.236.15.86	Mozilla/5.0 (Linux; Android 11; HD1901) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Mobile Safari/537.36	Mishra	Gaurav	+919999408148	gaurav5274@gmail.com	3056083	2022-08-31 02:32:23	2022-10-07 15:14:25	1	\N
274	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	Korolkov	Artem	9686671678	korolkovar@yandex.ru	2929153	2022-10-07 17:14:34	2022-10-07 17:20:03	1	Good day! \r\nPlease consider my CV for this position.\r\nI have practical and successful commercial experience.\r\nI also have fintech development experience.\r\nI have developed an internal and external interface for users.\r\n\r\nMy skills:  HTML, CSS, BEM, Styled-components (Css in JS), CSS Modules\r\nJS, TS, React, Vue, Redux, Redux-Thunk, Redux Toolkit, RTK Query\r\nMaterial UI, Ant Design, Custom Ui Storybook\r\nJest, React Testing Library\r\nSingle-spa, Module Federation\r\nWebpack, Gulp.
288	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Кокорин	Александр	9384222821	aleksandrkokorin83@gmail.com	2893052	2022-10-11 20:39:50	2022-10-11 20:40:03	1	Добрый день!\r\n\r\nЕсли вдруг мое резюме покажется Вам интересным - просьба звонить через Telegram или WhatsApp.\r\n\r\nЗаранее спасибо!\r\nХорошего дня!
300	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.42	Kholin	Vladislav	291514878	uladzislaukholin@gmail.com	2931569	2022-10-14 08:11:15	2022-10-14 08:20:03	1	\N
312	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Aresti	Panayiotis	99828640	panisc_67@hotmail.com	3248128	2022-10-19 12:35:29	2022-10-19 12:40:02	1	\N
313	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Themistocleous	Haris	97875181	themistocleousharis@gmail.com	2931569	2022-10-19 12:38:53	2022-10-19 12:40:04	1	Dear receiver, \r\n\r\nKindly find attached my CV for your consideration for the position of Financial Planning & Analysis Specialist in your Finance team.\r\n\r\nI am at your disposal for any information you may require.\r\n\r\nKind regards,\r\n\r\nHaris Themistocleous\r\nBA, ACCA\r\nLinkedin: https://www.linkedin.com/in/haris-themistocleous-9582a8b1/\r\n+35797875181
4	\N	\N	\N	\N	\N	\N	1	2022-08-03 14:54:22	2022-09-26 16:37:00	1	\N
5	\N	\N	\N	\N	\N	\N	1	2022-08-04 07:45:56	2022-09-26 16:37:00	1	\N
6	213.221.63.94	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	Markov	Kirill	9242225554	isikir668@gmail.com	1	2022-08-04 12:23:54	2022-09-26 16:37:00	1	\N
7	213.221.63.94	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	1	1	1256191951951621	Isikir668@gmail.com	1	2022-08-04 12:34:30	2022-09-26 16:37:00	1	\N
8	213.221.63.94	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	22	11	12132132165	isikir668@gmail.com	1	2022-08-04 12:39:34	2022-09-26 16:37:00	1	\N
325	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Khatibi	Mohammadreza	97728266	mohammadrezakhatibi@outlook.com	2830566	2022-10-21 08:09:31	2022-10-21 08:10:03	1	\N
337	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Rogalsky	Alexander	9817318779	alexander.rogalsky@yandex.ru	3250194	2022-10-24 19:15:42	2022-10-24 19:20:02	1	\N
338	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Rogalsky	Alexander	9817318779	alexander.rogalsky@yandex.ru	3201277	2022-10-24 19:16:12	2022-10-24 19:20:03	1	\N
375	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.124 YaBrowser/22.9.4.864 Yowser/2.5 Safari/537.36	Вдовенко	Владислав	571209876	v_v_vladislav@mail.ru	3159451	2022-10-28 19:09:09	2022-10-28 19:10:02	1	\N
392	10.236.15.14	Mozilla/5.0 (Linux; Android 12; RMX3393) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.5249.126 Mobile Safari/537.36 OPR/72.2.3767.68393	Zhidkov	Dmitry	+79277291751	d.s.zhidkov@gmail.com	3159451	2022-10-30 07:12:45	2022-10-30 07:20:02	1	Your message
394	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0	Subote	Alexey	700401591	asubote@gmail.com	3159451	2022-10-31 04:31:18	2022-10-31 04:40:02	1	Dear Recruitment Manager,\r\n\r\n  my name is Alexey Subote and I would like to apply for the System Engineer position published at https://jobs.quadcode.com/job/3159451\r\nI feel I perfectly fit the position's requirements as follows.\r\n\r\nI have 15+ years of Linux system and network administration including server deployment, maintenance, troubleshooting and performance tuning.\r\nI am deeply familiar with network protocols including IP, TCP, UDP, ARP, DHCP, DNS, HTTP, SMTP and other application layer protocols, NAT, routing, network design concepts.\r\nI used to automating my day-to-day sysadmin tasks with bash, Python and perl.\r\nHaving 5+ application-support databases and EDMS under maintenance I use SQL regularly for moderately complex report building and more simple technical queries.\r\nMy experience in IT management allowed me to elaborate strong communication skills allowing effective dialogue with both colleagues and C-level management.\r\n\r\nPlease find my more detailed work history and skills in the attached CV.\r\n\r\nI currently reside in Bishkek (Kyrgyzstan) UTC+6, seeking remote work.\r\n\r\nMy current contacts are:\r\nemail asubote@gmail.com\r\nphone +996-700-401-591\r\nwhatsapp +996-700-401-591\r\ntelegram https://t.me/kaprolon
404	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 OPR/91.0.4516.77	Georgiou	Kyriakos	+35796422295	kyriakos_georgiou@outlook.com	2766546	2022-11-01 14:01:48	2022-11-01 14:10:02	1	\N
415	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1	Jaber	Dani	99192613	jaberdani0@gmail.com	2953735	2022-11-06 11:24:04	2022-11-06 11:30:02	1	Dear manager,\r\nI am enquiring in response to your career opportunity page. I am intrigued by the career options on offer and i would like to request to be considered for the position of “marketin creator producer” Please find my cv attached below. \r\nLooking forward to your response.
421	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Ramos	Marcos	9217893485	mramos.arg@outlook.com	2832600	2022-11-07 17:30:02	2022-11-07 17:40:03	1	Hello! A friend of mine (Tomas Martinez) sent me your job offers, and I would be very interested in working with you in this position. I send you my CV. \r\n\r\nBest regards,\r\nMarcos Ramos
275	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15	Makarovskii	Dmitrii	9852005601	makarovskii.dmitrii@gmail.com	3201277	2022-10-08 14:51:22	2022-10-08 15:00:27	1	Good afternoon!\r\nI'm a QA engineer with 5 years of professional experience (automated testing, manual testing, managing teams).\r\nNow I'm looking for a job with a relocation opportunity and am ready to consider various QA engineer vacancies where my experience will be helpful.
289	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.5195.127 Safari/537.36	Vlachou	Sofia	96347571	sofiavlachoumath@gmail.com	3056083	2022-10-11 22:21:47	2022-10-11 22:30:03	1	\N
301	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Allam	Ranjith Reddy	9966034636	arr.ranjith.arr@gmail.com	2769258	2022-10-14 10:10:30	2022-10-14 10:20:02	1	\N
314	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.124 YaBrowser/22.9.3.886 Yowser/2.5 Safari/537.36	Zhelonkina	Marina	+353830781471	mzhelonkina1010@gmail.com	2953220	2022-10-19 13:25:30	2022-10-19 13:30:02	1	Dear, quadcode,\r\nI am delighted to attach my CV for the above position as advertised on your website.\r\n\r\nI am applying for this role as I feel I can bring the following relevant experience.\r\n\r\nSocial media management - I have the necessary experience in the marketing department, where I interacted closely with social networks. My responsibilities included developing a content plan, organising video and photo shoots to create a good visual for accounts, and tracking trends.\r\n\r\nI know how important the right content is to maintain the reputation of the brand and I would love to try myself in a new role of SMM specialist at quadcode.\r\n\r\nBest regards, Marina.
326	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Karpova	Irina	9103816445	ikarpova@gmail.com	2769258	2022-10-21 09:23:03	2022-10-21 09:30:02	1	Dear hiring team, \r\n\r\nMy name is Irina Karpova, I'm interested in the Head of Talent Acquisition position at Quadcode.\r\n\r\nI've been in technical recruitment for 15 years, working both for one of the largest IT companies in the world and my own start-up. I have a deep understanding of talent acquisition processes and solid people management skills, so I believe that my professional expertise closely matches the requirements for this position. \r\n\r\nWorking as a recruiter, I sourced and hired candidates, launched employer branding campaigns, developed talent acquisition strategies for geographical expansion projects, worked on hard-to-find and diversity hiring, and managed an international team of recruiters. In short, I know recruitment inside-out. \r\n\r\nMy passion is tech and working with people who create the technology of the future. Quadcode is hiring people who will be working on innovative technologies and solutions. I'd love to be considered as a candidate for your Talent Acquisition team that helps bring such talent on board. \r\n\r\nSincerely, \r\nIrina Karpova
339	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Test	Test	0190190192020	isikir668@gmail.com	2913219	2022-10-25 07:38:32	2022-10-25 07:40:03	1	\N
340	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Test	Test	25102022	isikir668@gmail.com	2879130	2022-10-25 07:41:00	2022-10-25 07:50:05	1	\N
341	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Test	Test	25102022	isikir668@gmail.com	2879130	2022-10-25 07:51:30	2022-10-25 08:00:44	1	\N
342	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Test	Test	2510102520	isikir668@gmail.com	2879130	2022-10-25 07:52:52	2022-10-25 08:00:45	1	\N
343	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Test	Test	25200221010	isikir668@gmail.com	3248128	2022-10-25 07:53:21	2022-10-25 08:00:47	1	\N
352	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.61 Safari/537.36	Khodukina	Maria	9531503278	maria.khodukina@gmail.com	2913219	2022-10-26 17:22:21	2022-10-26 17:30:02	1	Hi there!\r\nI admire Quadcode's value of innovation and continuous improvement. It would be an honour to work with people whose goal is to create the best conditions for employees' personal and professional growth. I'd love to apply my skills to establish the best working environment and make people in Quadcode fall in love with their jobs.\r\nHere's a quick snapshot of why I think I am a good fit for the job.\r\nFirst of all, I know you're looking for someone with relevant experience in an international company. I started my career as a senior sales manager in American Eagle while living in Toronto. There I learned the basics of managing people of different genders and nationalities as well as onboarding new employees and fostering a positive work environment. While working in American Eagle I assisted our manager in planning several team-building activities as well as birthday parties. Also, I've been the only HR specialist in an American startup that creates digital canvas portraits in Austin, TX for almost a year and a half. I was responsible for all HR initiatives including C&B development, onboarding, administration, conflict mediation and 1to1s, event management. We had people working from Latin America, Spain, Dominican Republic and a couple European countries, so I initiated online activities to bring the team together.\r\nAt my current position I'm in charge of implementing efficient HR processes in IT. I've created a remote onboarding program and established a mental support initiative.\r\nFinally, I'm fluent in English (IELTS BAND 7.5) and I'm a Russian native speaker. \r\n\r\nThank you for your time! I would love the chance to further discuss the position and what skills I'd bring to the job. \r\n\r\nKind regards, \r\nMaria Khodukina
376	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0	Lutaya	Anastasia	9667512046	anastasia@piterhost.net	3159451	2022-10-28 19:26:36	2022-10-28 19:30:02	1	Dear employer!\r\n\r\nI'm interested in a job posting in the Remocate telegram community.\r\n\r\nI have extensive experience in working with the technologies indicated in the vacancy and offer my candidacy for the vacancy of a systems engineer.\r\n\r\nI look forward to meet you to discuss the proposed job in detail.
377	10.236.15.14	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Andrievich	Ivan	9149517487	evanqq6@gmail.com	3159451	2022-10-28 19:29:14	2022-10-28 19:30:05	1	\N
416	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1	Jaber	Dani	99192613	jaberdani0@gmail.com	2953220	2022-11-07 11:42:40	2022-11-07 11:50:02	1	\N
422	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	test	test	555555	test@test.com	3248128	2022-11-07 18:05:55	2022-11-07 18:10:02	1	test
431	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/99 Version/11.1.1 Safari/605.1.15	Akintunlese	Oluwatope	+2347061504469	oluwatopeakin@gmail.com	3154585	2022-11-10 12:42:41	2022-11-10 12:50:04	1	\N
276	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Fili	Michalis	99054074	filimichalis@gmail.com	2931569	2022-10-10 08:56:51	2022-10-10 09:00:32	1	I noticed that you have changed the job position from Financial Planning Manager to Financial Planning Specialist
290	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.124 YaBrowser/22.9.2.1495 Yowser/2.5 Safari/537.36	Kovalchuk	Dmitrii	+971528730271	kov.dmitrii@protonmail.com	3056083	2022-10-12 06:06:10	2022-10-12 06:10:03	1	\N
302	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:105.0) Gecko/20100101 Firefox/105.0	Polshkov	Andrei	9124971582	a.a.polshkov@gmail.com	3225951	2022-10-14 11:49:25	2022-10-14 11:50:03	1	Good afternoon, please consider my resume for the Full Stack Developer (JS, Golang) position.\r\n\r\nMy current technology stack:\r\n- Frontend: JavaScript, React;\r\n- Backend: Java, Spring\r\n- Test Automation: Java, Selenide, Allure\r\n- Message broker: Apachee Kafka\r\n- DB: PostgreSQL\r\n- CI/CD: Docker, OKD, Gitlab\r\nRelates well enough to use in Quadcode, except for backend development language, at the moment I have greater competence in Java than in Go. But since the beginning of the year, I am actively engaged in learning Go, at the moment in addition to self-study, I take the course from Yandex, called "Advanced Go developer" (4/6 month), this course contains a fairly large amount of material and practice, and mentors are senior developers in large companies.\r\n\r\nI believe that my background, my general development experience, and my experience in test automation in Java are well suited to quickly join Quadcode team and become productive.\r\n\r\nBest regards, Andrei Polshkov
315	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.124 YaBrowser/22.9.3.886 Yowser/2.5 Safari/537.36	Zhelonkina	Marina	+353830781471	mzhelonkina1010@gmail.com	2953735	2022-10-19 13:40:46	2022-10-19 13:50:02	1	Dear, Quadcode,\r\nI am delighted to attach my CV for the above position as advertised on your website.\r\n\r\nI am applying for this role as I feel I can bring the following relevant experience.\r\n\r\nWorking closely with the marketing department and designers - I already have the necessary experience in the marketing department as a marketing assistant, where I worked very closely with designers to create new brand visuals (after rebranding).\r\n\r\nDevelopment of creatives - and also came up with new creative approaches in maintaining social networks and the company website. Together with the designers, I developed a new style, introduced storytelling, and also new headings appeared.\r\n\r\nI would love to try myself in a new role of Marketing Creative Producer at Quadcode as I feel that this is the area that I love and in which I want to develop.\r\n\r\nBest regards, Marina.
327	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Barabash	Andrey	9117871274	Abarabash9999@gmail.com	2931569	2022-10-21 20:35:50	2022-10-21 20:40:02	1	\N
344	10.236.15.85	Mozilla/5.0 (Linux; Android 10; M2006C3LG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Раскотов	Александр	+79139421441	hiphopuserx@gmail.com	3201277	2022-10-25 10:09:51	2022-10-25 10:10:02	1	Добрый день. Меня зовут Александр, я qa auto в поисках работы. Имею хороший опыт работы в финтехе. Предлагаю вам ознакомиться с моим резюме.
353	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Polyansky	Vladimir	+37443501059	vovabutters@yandex.ru	3159660	2022-10-27 08:05:37	2022-10-27 08:10:03	1	Dear Colleagues,\r\nMy name is Vladimir Polyanskiy. I am 27 years old. I am from\r\nMoscow, but ready to relocate.\r\nI have six years of professional experience in sales. The last 3,5\r\nyears I have been working as an E - commerce Sales Manager/B2B Sales. I have worked with such Russian companies as Komus, Mvideo, I-ON, Merlion\r\nand so on. Besides, now I`m working with the biggest marketplaces as Wildberries, SMM, YandexMarket, Lamoda, Ozon, Tmall.\r\nBiggest companies I have worked for: LLC Roquette, LLC RIVA, dihouse. Currently work in HUAWEI. I have two successful stories:\r\n1) In LLC RIVA I started E-com business from zero and brought it to ~15kk rubles per month having approximately 400 SKU.\r\n2) In diHouse the approximate turnover was 1,5kk per day (~45kk per month) in SberMegaMarket + Wildberries having approximately 700 SKU.
354	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.124 YaBrowser/22.9.3.886 Yowser/2.5 Safari/537.36	Dauksha	Artem	933071736	artem.dauksha@gmail.com	2931569	2022-10-27 08:13:22	2022-10-27 08:20:02	1	I like working with money: flow, PL, metrics and whatever\r\n\r\nPlease lets talk about position, don't declime my CV without small talk :)\r\n\r\nI worked with budgets during startup time. I know how it works.
378	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 OPR/91.0.4516.95	Pyrinov	Aleksey	7053846978	pyrinov.leha@gmail.com	3159451	2022-10-28 20:40:36	2022-10-28 20:50:02	1	\N
393	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Ladyagina	Maria	94419227	mashaimay2019@gmail.com	2913219	2022-10-30 12:38:46	2022-10-30 12:40:02	1	Hello! Nice to meet you!\r\n\r\nI want to submit my CV for this job. Inside you'll find relevant experience and how I can help the company in this role.\r\n\r\nHope you'll like it and I look forward to chatting with you and answering questions. See you!\r\n\r\nLink to the CV: https://readymag.com/lava/mariaforquadcode/
395	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Petrov	Nikolay	9014292441	n.k_petrov@mail.ru	3201277	2022-10-31 08:23:21	2022-10-31 08:30:03	1	Привет) интересная сильная команда и возможность работать из-за границы. \r\nЕсли есть GO / Rust, то это большой плюс. Так же как и проекты связанные с торговлей на бирже.
405	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15	Abramov	Dmitry	9879725653	demka7936@gmail.com	2920282	2022-11-01 16:38:51	2022-11-01 16:40:02	1	Здравствуйте! \r\n\r\nЯ уже прошел скрининг интервью на позицию System Engineer (с Darya Dybrovskaya), но меня также интересует данная вакансия, хотелось бы рассмотреть оба варианта.\r\n\r\nСпасибо!
423	10.236.15.14	Mozilla/5.0 (Linux; Android 12; SM-A315G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Ishola	Rukayat	08068675735	rukaishola@gmail.com	2920282	2022-11-07 21:45:33	2022-11-07 21:50:03	1	\N
432	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Test	Testov	12312231	mafsgdfbd@mailinator.com	3248128	2022-11-10 17:16:37	2022-11-10 17:20:03	1	Test
443	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Gordeev	Kirill	9118240645	gordey_89@mail.ru	2860249	2022-11-15 15:19:06	2022-11-15 15:20:03	1	\N
277	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Demetriades	Ioulianna	99525073	iouliannadem@hotmail.com	2931569	2022-10-10 13:16:09	2022-10-10 13:20:03	1	\N
291	10.236.15.85	Mozilla/5.0 (Linux; Android 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Pliatsikas	Yiannis	+35797726840	g.pliatsikas@gmail.com	3159451	2022-10-12 09:23:57	2022-10-12 09:30:03	1	\N
303	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Potemkina	Evgeniya	9257302757	zhender@mail.ru	2893052	2022-10-14 12:55:43	2022-10-14 13:00:30	1	Dear HR specialist,\r\n\r\nthank you in advance for an attention to my CV. In case if you will find that my experience is not enough for this position, I will be happy to discuss other open relevant positions.\r\n\r\nHave a nice day!
316	10.236.15.85	Mozilla/5.0 (Linux; Android 11; Redmi Note 9 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Symeou	Maria	99255845	maria.symeou@live.com	2913219	2022-10-19 19:41:12	2022-10-19 19:50:02	1	Dear Recruiter,\r\nThank you for taking time to review my CV. As you'll see from my resume, i have a background in Psychology, and consequently, show interest in people within an organisation, work culture, motivating employees, events, and so on.\r\nI am currently employed as a Content Writer, but have also expressed interest in various HR functions (e.g., organising internal company gatherings, happy hours, in-house celebrations, arranging employee competitions, etc). \r\nIf given the opportunity, i am confident and certain that, with my background in Psychology and my interest in HR, that I will be a good fit in that position in your company.\r\n\r\nThank you very much,\r\n\r\nWith Regards,\r\nMaria Symeou
317	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	PINGOS	KONSTANTINOS	99688848	konstantinosp912@gmail.com	2931569	2022-10-19 20:14:19	2022-10-19 20:20:03	1	\N
328	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Mobile/15E148 Safari/604.1	Krapil	Natalya	+79175780588	krapilnat@gmail.com	2879130	2022-10-22 17:35:34	2022-10-22 17:40:02	1	Dear Sir/Madam,\r\n\r\nMy name is Natalya and branding (any kind of branding!) is something I do really well.\r\n\r\nI know how to develop branding strategy, how to create bright and clear communication that will catch, recruit,  engage and retain candidates and any required audience.\r\n\r\nI managed the brands like Coca-Cola, Danissimo, launched the brand Versa; I have my own dancing school which I launched from scratch.\r\n\r\nI will help you to build transparent employer brand strategy and recruitment plan. \r\n\r\nI am passionate about learning new things and willing to work in your company. \r\n\r\nI suggest we schedule an online meeting to get acquainted. \r\n\r\nKind regards,\r\nNatalya
345	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Test	Test	12345678	isi@kir.ru	2832600	2022-10-25 13:26:20	2022-10-25 13:30:02	1	\N
346	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Test	Test	12345678	isi@kir.ru	2832600	2022-10-25 13:28:37	2022-10-25 13:30:03	1	\N
355	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1	Sorohan	Tatiana	+79650008110	davoc5@mail.ru	2826189	2022-10-27 08:16:01	2022-10-27 08:20:03	1	Hi there, I noticed you posted about SMM vacancy. I’m very interested in finding out more about it. I have relevant experience as a marketing specialist, also in the start of my career I was working as Hr manager in engineering & IT.\r\nRegards, Tatiana
356	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15	tolmachev	kirill	95753029	kirill9201@gmail.com	2931569	2022-10-27 08:16:20	2022-10-27 08:20:04	1	\N
365	10.236.15.85	Mozilla/5.0 (Linux; Android 10; ANA-NX9) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.88 Mobile Safari/537.36	Chouhun	Valeryia	+375296204545	valeryia.chouhun@gmail.com	2826189	2022-10-27 15:12:38	2022-10-27 15:20:02	1	My name is Valeryia and I am Belarusian. I have a great education at the University of Porto. During my study there I was used to surfing a lot, but in Belarus there is no sea). Hope to find a job close to the sea to feel happy every day.\r\nI have a huge experience in marketing – coordinated rebranding process for more than 200 department stores in Belarus, defensed multi-millions budget to company`s owner, made all exterior and interior projects, work with advertising and branding agencies, coordinate SMM and PR sectors, made a 360 advertising image campaign with celebrity (production of commercial video, outdoor\\indoor advertising, media, social networks). During brand book production project, I coordinate and collaborate all the departments in retail branch of the Santa Holding. This project has continued for 12 months and we finished it earlier than we planned.\r\nThe 2021-2022 travel project on Instagram with a famous Belarusian blogger was created and coordinated by me. These videos are really popular and have been watched more than 20 000 times.\r\nMoreover, I coordinated a launch of the first own trade mark "First Price" - positioning, design, production and promotion.\r\nDuring my work here Santa Retail became the second largest product retailer in Belarus (it was in fifth place in 2017). Company that I work for is part of the corporation with famous worldwide Santa Bremor (fish products) and Savushkin (dairy products). Also I was invited to join the Advertising and Marketing Awards 2022 jury.\r\nI`m looking for an opportunity to relocate because I want to use my experience and potential in the best way in the new market.
379	10.236.15.14	Mozilla/5.0 (Linux; Android 12; CPH2411) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Vesnin	Yuriy	+79111455849	uvesnin@gmail.com	3159451	2022-10-28 21:12:42	2022-10-28 21:20:02	1	contacting via tg is preffered
396	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Motorykina	Ekaterina	99906940	motorykina.katerina@gmail.com	2913219	2022-10-31 10:25:24	2022-10-31 10:30:02	1	Hello there! \r\n My name is Kate and i have just moved to Cyprus.\r\nTo be honest, i have no previous experience working as HR.\r\nBut, i was always much into it as i com frome natural sience background.\r\nI am a fast leaner with huge experience in dealing with all kind of partners and managing fairly large events and meetings as part of my job as Clinical Trail Assistant.\r\nMy English is at advanced level.\r\nThank you in advance for considering my application!
406	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Osinnikova	Yulia	35797811539	your1tutor8@gmail.com	2826189	2022-11-01 18:55:52	2022-11-01 19:00:29	1	\N
424	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1	Jaber	Dani	0035799192613	jaberdani0@gmail.com	2953220	2022-11-08 10:15:28	2022-11-08 10:20:03	1	\N
278	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Zubareva	Anna	97676584	anna.v.zubareva@gmail.com	2913219	2022-10-10 18:22:01	2022-10-10 18:30:04	1	Dear Sir or Madame,\r\n\r\nPlease, consider my candidacy for the position of a people specialist opened in your company.\r\n\r\nI have more than 10 years experience in HR (mainly in T&D field) and a solid experience of launcinig big cross functional projects and building up the processes within the company from the scratch. I have fluent English and my background of a coach helps me to find a common language with the employees of all levels of the organization.\r\n\r\nIf you are interested in my candidacy, I will be happy to answer the additional question in any convenient format for you.\r\n\r\nRegards,\r\nAnna Zubareva.
292	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37	Gavrielidou	Stalo	+35799141218	s.gavrielidou@gmail.com	2913219	2022-10-12 10:35:52	2022-10-12 10:40:03	1	\N
304	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Komissarov	Nikolay	7076876938	k70456523@gmail.com	2830566	2022-10-15 14:38:16	2022-10-15 14:40:03	1	\N
318	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Stylianou	Maria	96494125	maria_stylianou22@hotmail.com	2766546	2022-10-20 06:11:37	2022-10-20 06:20:03	1	\N
329	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Zotov	Mikhail	44070693	ztv.mikhl@gmail.com	3201277	2022-10-23 09:14:04	2022-10-23 09:20:03	1	Hello,\r\n\r\nMy name is Mikhail. I would like to apply for this position.\r\n\r\nThe role is very appealing to me. It would be a great opportunity for me and I believe my techinal experience would be very useful for the company.\r\n\r\nI have over 4 years of experience in software engineering and automation testing, mostly on Java.\r\nI have experience in UI testing with Selenium, Backend API testing, designing testing frameworks and setting up CI/CD pipelines. \r\nIn addition, I have experience in Java development that helps me to look at the development process from the perspective of a developer.\r\n\r\nThanks you for your time. I look forward to speaking with you about this employment opportunity.
347	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15	test	test	2343434	test@test.com	3159451	2022-10-25 14:03:15	2022-10-25 14:10:08	1	test
357	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Cernavska	Ingrida	96410092	iigrida@inbox.lv	2913219	2022-10-27 09:21:47	2022-10-27 09:30:03	1	Hi, kindly ask you to consider my CV for opened position! Thank you!
366	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Chirkov	Aleksei	+79197794819	chirkovaleksei87@gmail.com	2953735	2022-10-27 16:05:44	2022-10-27 16:10:03	1	Good afternoon. I was interested in the vacancy you offered.\r\n\r\nI have more than 10 years of experience in the media in the positions of editor, chief editor. I have been working in Sberbank for the last 4 years - as a Product Owner of the Image Communications team, I am responsible for personalized mailings in Email, PUSH, SMS, App.\r\n\r\nI am familiar with Jira, Confluence, Trello. At a basic level, I know HTML, I've made up letters in Tilda and Stripo. Conducted AB tests, surveys, in-depth interviews.\r\n\r\nI have experience working with both a creative team (designers, copywriters, editors) and with d-people (developers, Data Engineer, Data Scientist, etc.). \r\n\r\nI will be useful if you need to develop and implement a marketing strategy, create and validate content for communications, build processes between marketing and business. I can plan, prioritize, work in multitasking mode, manage a team.\r\n\r\nThe growth zone is English, now it is at the B1 level, I am actively studying.\r\n\r\nI am looking for a job in communications with the ability to work from anywhere in the world or with relocation.\r\n\r\nOne page resume in English: https://myresume.ru/resume/8qch3pnrMpF/\r\n\r\nSincerely, Alexey\r\n+7 919 779 48 19
380	10.236.15.85	Mozilla/5.0 (Linux; Android 11; SM-A505FN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	GIZATULLIN	ARSENY	+79601718537	gizatullin.arsenij@gmail.com	3159451	2022-10-28 23:27:27	2022-10-28 23:30:03	1	\N
397	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15	Nepomniashchikh	Denis	9818893319	denzmetal666@gmail.com	3159660	2022-10-31 11:22:39	2022-10-31 11:30:02	1	Hello\r\n\r\nI'm a sales specialist and a supervisor with a total experience for more than 10 years. I want to try my hand at your company. Now I have more than 150 employees and the successful experience of managing twenty divisions in a large network of retail store. In investing my resume in Russian\r\nIf my candidacy is interesting to you, let me know please\r\nHave a good day
407	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Levkoev	Pavel	89164025669	q1234e@yandex.ru	3159451	2022-11-01 20:48:00	2022-11-01 20:50:03	1	Hi, yes, I am an embedded systems developer, but I would be glad to change the direction in system development. I have a good knowledge and understanding of the C language. In my free time, I study Linux and driver development for it.  A web server is implemented on my devices, but it is small and simple. Thank you for your attention, I hope for continued communication.
408	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Guliaeva	Kseniia	93771249	kssglv@gmail.com	2826189	2022-11-02 13:44:08	2022-11-02 13:50:03	1	Good afternoon! \r\n\r\nMy name is Kseniia, I am interested in the vacancy "SMM-Manager" \r\n\r\nI have been working in the SMM field for more than a year. During this time, I have learned some things and managed to develop a lot inside the company. For example, I pumped up my visibility to visualize the brand, developed a strategy for developing an account in social networks, managed a team to create content processes, analyzed brand accounts by key metrics, developed brand tov, and also created a database of friendly contacts of the company. \r\n\r\nI speak English (B2-C1), I know how to work in Figma, I take courses with Setters, I study easily, I monitor the latest news from the media sphere and I can cope even with what I don't know yet :)\r\n\r\nMy portfolio: https://drive.google.com/file/d/1mElAhvIxx4LDRrzbM9Gy0fWz7gSKrhSp/view?usp=share_link\r\n\r\nThanks!
348	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Test	Test	741852	isikir668@gmail.com	2766546	2022-10-25 14:03:51	2022-10-25 14:03:51	1	\N
279	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Zlygastev	Vadim	9995287513	zvadim1593@gmail.com	2913370	2022-10-11 11:09:26	2022-10-11 11:10:02	1	Would like to be a part of your great team:)
293	10.236.15.43	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	christofides	pericles	99941111	pericles.c13@gmail.com	2879130	2022-10-12 10:38:57	2022-10-12 10:40:04	1	My name is Pericles Christofides,  I am an experienced Marketing And Public Relations Manager with a demonstrated history  over 10 years of working in the marketing and advertising industry. \r\nI had the opportunity to work on both sides of the Advertising industry, both as an advertiser and as a brand representative. My all round experience combined with the knowledge i have acquired working closely with local and international brands have given me a deeper understanding of the industry needs.\r\nIn my pursuit to expand my knowledge and expertise in the field of advertising, I am glad I came across your company.  I find the software developing industry to be an ever-expanding industry with continuous challenges and opportunities.\r\nI am eager to continue my journey in the field of marketing  and would relish the opportunity to make that happen with quadcode\r\nPlease see attached my resume with  additional details on my skills and experience as well as all my personal contact details.
305	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Kallika	Iliana	99559341	elianakallika@gmail.com	2913219	2022-10-16 20:09:01	2022-10-16 20:10:03	1	Dear Sir/Madam,\r\n\r\nI trust this email finds you well and you had a relaxing and fruitful weekend.\r\n\r\nI came across the job advert on your website for a position that I believe is the best opportunity for my career.\r\n\r\nI have attached my CV and i hope you will give me the opportunity for an interview to prove you that i am the right person for the job.\r\n\r\nKind Regards\r\nIliana Kallika
319	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:105.0) Gecko/20100101 Firefox/105.0	Rammos	Panagiotis	6976259625	panos.rammos@hotmail.com	2893052	2022-10-20 07:01:44	2022-10-20 07:10:03	1	\N
330	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Stavrou	Eva	99296199	stavrou.evangelia@gmail.com	2953735	2022-10-23 12:29:12	2022-10-23 12:30:02	1	Hello,\r\n\r\nBeing part of Foody's marketing team for the past five years, I have extensive experience in planning and producing high quality content from written to videos. \r\n\r\nCurrently, I am leading the brand team, which is responsible for the content creation for the Foody brand. \r\n\r\nMy experience includes creating, reviewing, and editing content for offline channels such as TV, OOH, Radio, Press Releases, as well as online channels such as the Foody’s Blog, Facebook, Instagram, and TikTok. \r\n\r\nI look forward to connecting with you and discuss more about the role.\r\n\r\nThank you in advance,\r\n\r\nEva Stavrou
349	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.124 YaBrowser/22.9.4.863 Yowser/2.5 Safari/537.36	Bykadorova	Iuliia	94421898	ulashka-95@mail.ru	3201277	2022-10-26 06:38:16	2022-10-26 06:40:02	1	hello!\r\nI am interested in your vacation
358	10.236.15.14	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Darbinyan	Grachya	91588231	grach41@gmail.com	2832600	2022-10-27 09:29:29	2022-10-27 09:30:05	1	Dear hiring manager,\r\n\r\nMy strong points:\r\nI have 7+ year experience of commercial development in frontend.\r\nStrong knowledge of ES6 / ES7 / ES8\r\nMain stack: React / Redux Toolkit / TypeScript / NodeJS\r\nMain tools: webpack / ESLint / git \r\nAlways cover all my components with unit-test.\r\n\r\nWeaknesses:\r\nHave no experience with GraphQL.\r\n\r\nBest Regards,\r\nGrachya
359	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Trubchyk	Anastasiya	298431528	stasymaja@yandex.ru	2913219	2022-10-27 09:30:54	2022-10-27 09:40:04	1	Hello, my name is Anastasiya and I am looking for a job in Cyprus to live with my husband there.\r\nI have an extensive experience in organizing various events and a strong desire to help everyone around.  I am extremely interested in developing my career in the field of personnel management, I even receive a correspondence second higher education in this direction and I believe that I am exactly the person you are looking for. I enjoy adapting employees to a new place of work. I am proud to have developed and implemented an onboarding system for new employees in my current company. \r\nI lead a proactive lifestyle and I am always open to new opportunities. I cannot imagine my life without active work and wonderful colleagues nearby. I will be happy to talk with you in more detail about your vacancy for People Specialist and tell you about my experience and skills. Thank you for your attention.\r\nP.S. I do not need any help with my relocation, I can formalize all the documents in the way of family reunification employee and I will be able to start a new job one month after receiving the offer.
360	10.236.15.14	Mozilla/5.0 (Linux; Android 12; 2201123G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Shlenskaya	Natalia	+79251597565	shlenskaya.n@gmail.com	2931569	2022-10-27 09:52:00	2022-10-27 10:00:28	1	I have a great experience in financial analysis, financial modeling and forecasting. Additionally I'm taking courses of data analysis at the moment.
367	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Tretyakova	Anna	293316835	anna.tretyakova.minsk@gmail.com	2931569	2022-10-27 17:30:08	2022-10-27 17:40:02	1	I would like to express my interest in the position of Financial Planning & Analysis Specialist. I have more than 10 years of experience in different finance functions. My current position of Financial Controller implies many responsibilities, including reporting, budgeting, forecasting and analysis. I'm proficient in Excel, SAP and Power BI. I'm fluent in English and willing to relocate.
381	10.236.15.14	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	BYCHKOV	ILYA	9242200355	svcline27@gmail.com	3159451	2022-10-29 03:10:55	2022-10-29 03:20:03	1	Dear Recruiting Quadcode!\r\nI am interested in the position of System engineer at your company.\r\nI believe there would be a good fit between my skills and your needs.\r\nThank you for considering my application.
398	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Kataev	Aleksandr	00000000	kataevalexanderwork@gmail.com	2832600	2022-10-31 17:20:31	2022-10-31 17:30:03	1	\N
410	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Melo	Adriano	913743758	adrianomelofilms@gmail.com	2913219	2022-11-02 14:39:14	2022-11-02 14:40:04	1	Hi. I have worked for the last 3 years using the QuadCode platform, working as Support Specialist for SDZ Technologies. My main goal was to provide support to traders using the platforms IQ Option and Exnova. \r\nI am a people person. I love people, and I think I would be a very good fit for this position. I speak fluent English, Portuguese and Spanish.
433	10.236.15.14	Mozilla/5.0 (Windows NT 6.2; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0	Atixaley	Bennet	0629697789	bennetatixaley@gmail.com	2953735	2022-11-10 18:11:51	2022-11-10 18:20:03	1	\N
350	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Dmitrienko	Vladimir	591706953	dmitrienkovladimir97@gmail.com	3201277	2022-10-26 13:10:17	2022-10-26 13:20:03	1	Tg: @dmitrienko_ve
256	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [LinkedInApp]/9.24.2655	Aminova	Victoria	+79259920059	Gynkova.Vika98@mail.ru	2826189	2022-10-05 18:03:21	2022-10-07 15:14:26	1	Hey there, dear Quadcode team!\r\nAs soon as you need both English and Russian, I’ll finish my cover letter in my native language.\r\nМы уже общались и дошли вплоть до финального этапа собеседования по данной вакансии, но в последний момент наши пути разошлись.\r\nЗа это время я увеличила англоязычное портфолио и готова снова доказать свою пригодность на позицию вашего SMM-специалиста.\r\nГотова к самостоятельной релокации при необходимости (не гражданство РФ — проблем не возникнет).\r\nОчень надеюсь на обратную связь!
280	10.236.15.43	Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:105.0) Gecko/20100101 Firefox/105.0	Tsvetkova	Christina	298580280	CHRISTINA_TSVETCOVA@INBOX.RU	2953735	2022-10-11 13:22:39	2022-10-11 13:30:03	1	Hello!\r\nMy name is Christina.\r\nI'm a young director and producer and I'm interested in the possibility of cooperation with your production company.\r\nI have attached my brief resume to the letter. I really hope that together we can create something great) \r\n\r\nTG ChristinaTsvetkova
294	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.37	Talapova	Kateryna	509540813	kteplinskaya@gmail.com	2931569	2022-10-12 11:50:15	2022-10-12 12:00:30	1	Dear Sir or Madam,\r\nTo whom it may concern.\r\nI am an experienced finance and tax professional with 14 years of work experience in Big4. I am from Ukraine, I have relocated to Cyprus, Limassol due to the war in my home country. I am currently considering local work opportunities and believe that my skills and knowledge could be of interest for you on the open vacancy in question.\r\nPlease, let me know if you want to meet with me in person to discuss my CV and work opportunity in your company. My preferred monthly NET salary is around EUR 5,000.\r\nPlease, reach out to me via messengers (my Ukrainian mobile phone) or e-mail in case you would like to reach out to me.\r\nKind regards,\r\nKateryna
306	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Bakanau	Maksim	295941150	maksim.bakanau@gmail.com	2913219	2022-10-17 09:57:33	2022-10-17 10:00:32	1	Dear hiring team,\r\n\r\nHello, my name is Maksim and I wanted to reach out to you regarding your job posting for the People Specialist role. To introduce myself, let me clarify that I've been an administrative manager for small to medium sized companies for the past 5+ years. Communication skills, building strong relationships with internal and external teams, and facilitating cross-functional projects are among my strengths. These skills are also relevant for the People Specialist role. Moreover, I believe that I am a fitting match for the job in terms of my professional skills and the way I view the world:\r\n\r\na. Strong Customer focus and Efficient communication\r\nI begin every project by analyzing the customer's needs, the company's goals, and possible ways we can influence the situation. For the past 4 years, I’ve been managing cross-team administrative projects at a fast growing IT start-up, Mapbox R&D center in Minsk. The quality of my work was constantly emphasized by colleagues. As one head of a 120-person department wrote on my LinkedIn page: "His empathy and building trust helped me to turn boring administrative stuff into exciting communication and make this area less scary for even diving deeper!".\r\n\r\nb. Great at Ownership and Planning\r\nThe Mapbox team has grown during 4 years from 16 to 250 people (from 300 to 800 people internationally). Initially, I was solving incoming requests in the areas of "Finance", "Legal", “Accounting”, "HR", "Office Management" and "IT&Security". In these areas, I built processes from scratch and drew up plans for the future. As the company grew and additional talents were recruited, I led cross-team projects in specified areas. As part of my role, I also audit and update the company's processes and draw up operational plans.\r\n\r\nc. Curiosity and Operational excellence\r\nIn my opinion, curiosity is an imperative behavior in any business if you want to serve your customers well. Being curious helps you make smart decisions because you get to the bottom of "why.". For example, thanks to curiosity, working as a Business Development Manager, I implemented a department model that allows a company to effectively process customer requests from 8am to 9pm without increasing costs compared to the previous model, which served clients from 8am to 6pm. The revised model involves interaction with several outsourcing companies and the implementation of several operational solutions.\r\n\r\nIt would be of great interest to me if we could meet to discuss my experience and qualifications as well as how they might be beneficial to your company. Thanks for taking the time to read this.\r\n\r\n\r\nMaksim
320	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Ivanushko	Mikhail	97941267	ivanushkomikhail@gmail.com	3056083	2022-10-20 12:56:27	2022-10-20 13:00:30	1	Please see att. for CV and cover letter
331	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Myrianthis	Andreas	99914434	andreasmyrianthis@gmail.com	2931569	2022-10-23 15:01:36	2022-10-23 15:10:02	1	To whom it may concern,\r\n\r\nI am interested in applying for the position of Financial Planning & Analysis Specialist in Limassol.\r\nI appreciate you taking the time to review my resume.\r\nLooking forward to hearing from you.\r\n\r\nBest regards,\r\nAndreas Myrianthis
361	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 OPR/92.0.0.0	Zhukova	Yanina	9687105362	yanina.zhukowa@mail.ru	2913219	2022-10-27 11:56:19	2022-10-27 12:00:31	1	Dear Quadcode Team,\r\n\r\nWhen I saw this job advertisement, it really grabbed my attention due to its scope and responsibilities, which align perfectly with those at my previous job.\r\n\r\nI've worked for 3 years as a Receptionist and for the last 1,5 years as a Sales Dept. Assistant at Hasbro, multinational toy and board game company, so I have relevant experience for the job.\r\n\r\nI hope this expression of interest comes at a good time and I would be happy to hear from you.\r\n\r\nKind regards,\r\nYanina Zhukova
368	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 OPR/91.0.4516.77	Lisina	Lina	95758654	linagurfova@gmail.com	2931569	2022-10-28 10:25:51	2022-10-28 10:30:03	1	Good day,\r\nI am interested in the position of Financial Planning and Analysis Manager opened in your company. Will be grateful if you could review my CV attached and contact me for further discussion.\r\nI have wide experience in Financial analysis, control and modelling in an international IT company, including different types of performance and ad-hoc analytics, budgeting and forecasting, process improvements, etc.\r\nCurrently I live in Limassol, Cyprus.\r\nLooking forward to hearing from you.\r\nKind regards,\r\nLina
382	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15	Popov	Vladislav	9105938854	gegunt@gmail.com	3159451	2022-10-29 06:09:20	2022-10-29 06:10:03	1	Greetings!\r\nI think i am the one you need.\r\nWriting automatization script in Python right now, B2 English, rich system administration experience. Great Learnability and strong motivation.\r\nPlease, contact me by email, phone number is currently unavailable
383	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Volkov	Andrei	930715240	volchik77@gmail.com	3159451	2022-10-29 06:15:32	2022-10-29 06:20:03	1	\N
399	10.236.15.85	Mozilla/5.0 (Linux; Android 10; SM-J600G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Morales Albornoz	Pablo	938925511	pablomoralesalbolnoz78@gmail.com	2832600	2022-11-01 01:49:10	2022-11-01 01:50:03	1	\N
409	10.236.15.85	Mozilla/5.0 (Linux; Android 10; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Gryschuk	Nataliia	+380667811978	gryschuk.nataliia@gmail.com	2826189	2022-11-02 14:29:26	2022-11-02 14:30:03	1	Hello, I'm interested in the position of the SMM manager at HR department. I have an experience at writing posts and press releases and creating images in the Canva application. Also, I have an experience in building employer brand via social media and traditional media. \r\nMy LinkedIn account: https://www.linkedin.com/mwlite/in/nataliia-gryshchuk-2884374\r\nBest regards,\r\nNataliia
413	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Igbeta	Jennifer	08107859241	jennifer.igbeta@gmail.com	3122184	2022-11-03 19:36:48	2022-11-03 19:40:02	1	Hello Hiring Manager,\r\n\r\nI’m interested in the DevOps role at your reputable organization. Based on my experience as Azure Infrastructure Engineer  Support at Tek Experts, I believe I could be a good fit and an added advantage to your work force; delivering quality services to your organization.\r\n\r\nPlease let me know if you’d be open to a conversation to discuss this position. I’m happy to provide you with any additional information you might need. I look forward to hearing from you.\r\n\r\nPlease, see attached my resume.\r\n\r\n\r\nBest regards,\r\nJennifer Igbeta
266	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Gregoriou	Maria	99567258	gregoriou.maria@gmail.com	3045877	2022-10-07 07:19:34	2022-10-07 15:14:26	1	I have been writing ever since I can remember. Professionally I started as a technical writer, then as a journalist and now I am a content manager. I have been doing freelance copywriting work for over 15 years. I have been doing freelance work for Consultics for over a year now. During this year I have written for the CEO, newsletters for the company, articles to be given to publishers, social media posts, and website content. English is my native language. I was born in the UK and came to Cyprus when I was 12. Please provide an email address so I can send you some sample work.
264	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Nelina	Kristina	9218471799	chudokris@gmil.com	3113456	2022-10-06 19:12:13	2022-10-07 15:14:26	1	Hello! My name is Kristina, I have 8 years experience in marketing, the major part of this experience in B2b. I have various experiences in B2b Marketing from organizing a company in exhibitions, creating materials to building media planning. My main soft skills are curiosity, a high level of organization, flexibility and openness to new challenges. \r\nMore details about my experience can be found in the resume.\r\nMy current resume - https://bit.ly/3ri03u8\r\nPortfolio - bit.ly/3E4eHg9 \r\nI appreciate any feedback you may have.
265	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 OPR/90.0.4480.100	Andrade Pereira	Iago	11997895223	iagoandrade10@gmail.com	2879130	2022-10-07 02:22:44	2022-10-07 15:14:27	1	I 'm not the most qualified candidate when you look to certificates, but I have an experience of over 5 years organizing entertaining events with the presence of almost 5000 people. I have an eager to learn and evolve, I have focus and a creative mind.  I do have fear, but my courage is way bigger, that I'm considering moving from Brasil (yes, we write it with a "s") to Cyprus to embrace this oportunity and show you there, that I'm the right person for the company!
295	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Kislinskii	Vadim	96668534	kislinskiy.vadim@gmail.com	3056083	2022-10-12 12:10:16	2022-10-12 12:20:02	1	Hello!\r\n\r\nMy name is Vadim. I'm a Data Scientist (Machine Learning Engineer). I'm very interesting in this position (Data Scientist). I am already in Cyprus (Limassol).\r\n\r\nThank you!
307	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Mankowsky	Nikita	9052642337	nikmandesign@gmail.com	2953733	2022-10-17 10:06:59	2022-10-17 10:10:03	1	Hello)  For the last couple of years I have been actively engaged in motion design in a digital. Because it’s mostly a social media content, Im working with static and dynamic.  For example, we have launched official tik-tok audirussia account that was promoted to almost a million subscribers by power of content alone. And, while I was working on their Instagram account, they passed half a million.  Our main tool was interactive content, games and interaction with the user. In the past, I was closely engaged in a graphic design.  For the fifth year I am working at the agency, I love to work in a strong team and strengthen it)  I have an experience in the development of promo and onboarding videos for IT products, animation interface and video tutorials for working with the application. \r\n\r\nShowreel:  https://vimeo.com/757755388
281	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Baiankin	Aleksei	9831798927	a.bayankin@gmail.com	2913370	2022-10-11 13:59:13	2022-10-11 14:00:34	1	Hi, \r\nI am experienced Product (UX/UI) designer working with high-loaded interfaces. I find it’s the most interesting task to make it comfortable and smooth user experience. I am always trying to catch a big picture and taking care a lot about details that’s lead to a perfect product\r\n●\t10+ years of experience in Product Design (Web and Mobile apps).\r\n●\t2+ years of experience in leading design team (7-8 teammates).\r\n●\tExtensive experience in User interface design, Mobile app design and Web app design.\r\n●\tStrong knowledge in User Experience design, creating prototypes.\r\n●\tWell-developed understanding of internet technologies, web and mobile apps architecture.\r\n●\tExperienced in User Interactions design.\r\n●\tAbility to multitask, motivate others, efficiency, and good customer communicating skills. Positive team player with excellent interpersonal, problem solving, decision-making and analytical skills. Creative out of the box thinker. Enjoy learning new concepts, tools and technologies.
332	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Krachok	Olena	96658068	elena.krachok@gmail.com	2766546	2022-10-24 05:56:39	2022-10-24 06:00:59	1	Dear Hiring Manager, please find my CV attached. I am already located in Cyprus and would like to have an opportunity to have  chat
362	10.236.15.85	Mozilla/5.0 (Linux; Android 10; Redmi 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36	Mazaeva	Tatyana	+79250604223	starling80@mail.ru	2913219	2022-10-27 13:22:27	2022-10-27 13:30:03	1	Dear recruitment manager!\r\nPlease, find attached my resume for people specialist position.\r\nKind regards,\r\n\r\nTatyana Mazaeva
369	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0	Shevchenko	Dmitrii	9112568320	vacmultimedia@gmail.com	2953733	2022-10-28 11:42:50	2022-10-28 11:50:04	1	Hi\r\n\r\nI want to express my interest in applying for a Motion Designer position. I hope that you are still looking for someone with great experience and passion for motion design.\r\n\r\nYou can find my portfolio by following this link (unfortunately, it doesn’t include some works due to a non-disclosure agreement) - http://vacvacvac.ru\r\n\r\nLooking forward to hearing from you.\r\n\r\nBest regards,\r\nDmitrii
384	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Krasnov	Sergei	+79802508954	krsnvss@gmail.com	3159451	2022-10-29 06:48:06	2022-10-29 06:50:02	1	Greetings,\r\nI’m an experienced and responsible engineer with background of solving various problems using various tools and technologies. Linux is my primary operating system since 2007 on a desktop PC and since 2011 on various servers. Since 2020 I’m mostly into DevOps practices and tools: Docker, Kubernetes, GitLab etc. I’m implementing IaC practices with Ansible and Terraform.\r\nI like studying new technologies and tools and I like to build something new.
400	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1	Bondarenko	Stanislav	89204513314	speckrus322@gmail.com	3159451	2022-11-01 06:59:45	2022-11-01 07:00:27	1	\N
411	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.26	Adeleye	Oluwaseun	8028010622	oluwaseunadeleye@hotmail.com	3154585	2022-11-02 18:08:07	2022-11-02 18:10:02	1	\N
206	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	MIRONOVA	KATERINA	95729495	castaway7@mail.ru	2931569	2022-09-29 15:07:32	2022-10-07 15:14:28	1	Good day.\r\nPlease consider my resume for this position.\r\nMy English is at the Intermediate level now as I haven’t had practice for a long time, but I learn quickly and can improve it.\r\n\r\nP.S. And also I don't have a work permit.\r\n\r\nMany thanks in advance,\r\nKate
32	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Ellinas	Nicos	99791559	ellinasnicos@gmail.com	2936711	2022-09-02 13:17:41	2022-10-07 15:14:28	1	\N
149	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Nikolaev	Vasili	96131418	vnikolaev1107@gmail.com	2931569	2022-09-18 21:20:13	2022-10-07 15:14:28	1	\N
167	10.236.15.43	Mozilla/5.0 (Linux; Android 10; Redmi 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36	Mazaeva	Tatyana	89250604223	starling80@mail.ru	2769258	2022-09-22 04:27:23	2022-10-07 15:14:29	1	\N
88	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Charalampous	Koralia	97883203	koralia.char@gmail.com	2879130	2022-09-14 16:54:44	2022-10-07 15:14:29	1	\N
28	10.236.15.86	Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1	Smirnova	Vladislava	89264399026	vlada.samsonova.03@gmail.com	2931569	2022-09-02 07:00:14	2022-10-07 15:14:29	1	\N
134	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 OPR/90.0.4480.84 (Edition Yx 05)	Moiseeva	Taisiya	96980549	moiseieva.tayah@yandex.ru	2913219	2022-09-16 17:21:15	2022-10-07 15:14:30	1	\N
259	10.236.15.43	Mozilla/5.0 (Linux; Android 11; SM-A505F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Sergeev	Alexander	+79817497674	alexander.sergeev@onmail.com	3225951	2022-10-06 10:22:10	2022-10-07 15:14:30	1	I have always loved programming, especially when it comes to code generation and bundling, so frontend is one of my favourite fields :)
101	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Graham	Nikki	99099202	nikkigraham74@yahoo.co.uk	2913219	2022-09-15 09:01:20	2022-10-07 15:14:31	1	\N
245	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Yanycheva	Anna	95110909	ann.yanycheva@gmail.com	2931569	2022-10-04 15:08:38	2022-10-07 15:14:31	1	\N
253	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1	Provotorov	Alexey	+79209391051	provotorovalexey@gmail.com	3225951	2022-10-05 12:17:57	2022-10-07 15:14:32	1	Hello,\r\nI am a developer with an 8 years of experience. Would be glad to work for the great future of your company.
99	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Tkhorzhevskaia	Ekaterina	616458386	ket-90@yandex.ru	2769258	2022-09-15 08:27:29	2022-10-07 15:14:32	1	\N
94	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	CHORNII	OLENA	96073020	archiche92@gmail.com	2878507	2022-09-15 07:44:11	2022-10-07 15:14:32	1	\N
112	10.236.15.40	Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-A715F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/17.0 Chrome/96.0.4664.104 Mobile Safari/537.36	Khmelevskaya	Irina	+375293523078	khmelevskayaim@gmail.com	2769258	2022-09-15 19:27:09	2022-10-07 15:14:33	1	\N
52	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0	Książek	Natalia	510609260	nksiazek5@gmail.com	3109564	2022-09-06 20:16:45	2022-10-07 15:14:33	1	\N
161	10.236.15.43	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Özfidan	Necip	6972107203	ozfidanecip@gmail.com	3056083	2022-09-21 09:20:57	2022-10-07 15:14:34	1	\N
194	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	Kotova	Yulia	9262047224	youliakotova@gmail.com	2879130	2022-09-28 17:01:25	2022-10-07 15:14:34	1	Hello!\r\n\r\nMy name is Yulia. \r\n\r\nI have a great and successful experience in technical PR, internal communications and HR brand building. I can write a hardcore engineering article and turn boring hardly understandable talk in amazing storytelling. I know how to organise high attending meet ups and how to improve non-eficient communicational channels, and a lot more. Your position of Employer Brand Specialist seems interesting to me, mainly because it's a new environment and other country. I'd like to try if I could succeed as in Russia (for example, meet ups that I've conducted in Badoo and in FunCorp were considered the best). My CV is attached. I'd be glad to answer your questions. \r\n\r\nThank you!\r\nYulia Kotova
114	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15	Novodran	Nikita	9177481428	Nikita.novodran@yandex.ru	2931569	2022-09-15 19:56:10	2022-10-07 15:14:34	1	\N
50	10.236.15.40	Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1	Kireeva	Anna	89171599571	kireeva625@gmail.com	2929153	2022-09-06 09:04:52	2022-10-07 15:14:35	1	\N
148	10.236.15.40	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Elena	Rusu	99119550	aleonuska15@gmail.com	3154596	2022-09-18 15:30:05	2022-10-07 15:14:35	1	\N
141	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15	Karapetyan	Yevgenya	96547379	evaakarapetyan@gmail.com	2931569	2022-09-17 04:45:17	2022-10-07 15:14:36	1	\N
108	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Constantinou	Sotos	99889433	sotos14@gmail.com	2879130	2022-09-15 11:12:34	2022-10-07 15:14:36	1	\N
75	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Kaisar	Alex	6948835212	moggolo3@gmail.com	3087515	2022-09-13 11:05:42	2022-10-07 15:14:37	1	\N
150	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Theodosiou	Nikolas	96613893	theodosiounicholas@gmail.com	3056083	2022-09-19 13:59:35	2022-10-07 15:14:37	1	\N
129	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Prokopovich	Ksenia	295872389	ksenia.prokopovich@sababa-labs.com	2769258	2022-09-16 12:51:20	2022-10-07 15:14:38	1	\N
252	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Socrarous	Niki	99990206	nsocratous@outlook.com	3108022	2022-10-05 10:30:50	2022-10-07 15:14:38	1	\N
146	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Vavilov	Lev	9042626843	vavilov.lev@yandex.ru	3056083	2022-09-17 17:43:35	2022-10-07 15:14:38	1	\N
182	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47	Zhigulina	Irina	9162013990	zhigulina.irina@gmail.com	2936711	2022-09-23 19:14:03	2022-10-07 15:14:39	1	\N
41	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Shehu	Umar	8069811837	umar.shehu_f@yahoo.com	3033314	2022-09-05 13:40:08	2022-10-07 15:14:39	1	\N
123	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Vassiliou	Mike	97601474	mcvassiliou@gmail.com	3159660	2022-09-16 12:40:22	2022-10-07 15:14:39	1	\N
166	10.236.15.87	Mozilla/5.0 (Linux; Android 10; Redmi 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36	Mazaeva	Tatiana	89250604223	starling80@mail.ru	2769258	2022-09-22 04:26:15	2022-10-07 15:14:40	1	\N
80	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.940 Yowser/2.5 Safari/537.36	ZUBAREV	ALEXANDER	9055802266	17az08@gmail.com	2913219	2022-09-13 12:57:07	2022-10-07 15:14:40	1	\N
131	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Belyakov	Ivan	9882818149	farrels@yandex.ru	2929153	2022-09-16 13:25:36	2022-10-07 15:14:40	1	\N
113	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15	Novodran	Nikita	9177481428	Nikita.novodran@yandex.ru	2931569	2022-09-15 19:55:36	2022-10-07 15:14:41	1	\N
18	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 OPR/89.0.4447.83	Shamuradova	Arzuv	528988187	arzuv.shamuradova@hotmail.com	2918454	2022-08-31 09:12:07	2022-10-07 15:14:41	1	\N
218	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Jusochkov	Mikhail	15775133714	mihailkuso@gmail.com	3159606	2022-09-30 08:40:46	2022-10-07 15:14:42	1	\N
230	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Taras	Savka	89119036813	Savka.g.taras@gmail.com	3154585	2022-10-03 07:17:18	2022-10-07 15:14:42	1	Hello!\r\nMy name is Savka Taras, I am an information security specialist. I am currently looking for a job. I was interested in your open vacancy for SOC Analysts.
48	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Sinitsyna	Natalia	95175503	n_kosarewa@mail.ru	3108022	2022-09-06 06:29:18	2022-10-07 15:14:43	1	\N
77	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Kaisar	Alex	6948835212	moggolo3@gmail.com	3087515	2022-09-13 11:06:24	2022-10-07 15:14:43	1	\N
85	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Nikitin	Andrey	9069483848	andreynikitin.rus@gmail.com	3113456	2022-09-14 04:41:21	2022-10-07 15:14:44	1	\N
15	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Talianos	Andreas	99801034	andreastalianos@gmail.com	3056083	2022-08-31 06:20:41	2022-10-07 15:14:44	1	\N
192	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.114 YaBrowser/22.9.1.1094 Yowser/2.5 Safari/537.36	Tetradze	Gvantsa	+35797930094	gvantsatetradze14@gmail.com	2936711	2022-09-28 13:19:01	2022-10-07 15:14:44	1	Hi Team, \r\n\r\nI am writing to you to express my big interest in the position of HR Business partner. \r\nI sent my CV to your e-mail job@quadcode.com, but I'm not sure it have reached you. Just in case, I attached it to the application form here. \r\nI will be looking forward to getting any feedback from your side. \r\n\r\nThank you.\r\nBest regards, \r\nGvantsa
198	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Kovshova	Aleksandra	+35795113365	alexandra.kovshova@yandex.ru	2913219	2022-09-29 12:52:13	2022-10-07 15:14:45	1	\N
122	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Prokopovich	Ksenia	295872389	ksenia.prokopovich@sababa-labs.com	2769258	2022-09-16 12:39:42	2022-10-07 15:14:45	1	\N
258	10.236.15.87	Mozilla/5.0 (Linux; Android 12; SM-A135F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Belavgeni	Emilia	99785744	belavgeni.emilia@gmail.com	3045877	2022-10-06 09:58:56	2022-10-07 15:14:45	1	\N
54	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	El Agroudy	Khaled	1022810008	khaled_agroudy@hotmail.com	2893052	2022-09-06 22:00:51	2022-10-07 15:14:46	1	\N
164	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Zhovniruk	Michael	9166210840	mikhail.zhovniruk@yahoo.com	2893052	2022-09-21 11:59:46	2022-10-07 15:14:46	1	\N
102	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Graham	Nikki	99099202	nikkigraham74@yahoo.co.uk	2913219	2022-09-15 09:03:04	2022-10-07 15:14:47	1	\N
209	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1	Iacovou	Tatiana	97757620	99333409tv@gmail.com	2936711	2022-09-29 15:44:49	2022-10-07 15:14:47	1	\N
133	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 OPR/90.0.4480.84 (Edition Yx 05)	Moiseeva	Taisiya	96980549	moiseieva.tayah@yandex.ru	2913219	2022-09-16 17:20:50	2022-10-07 15:14:47	1	\N
180	10.236.15.43	Mozilla/5.0 (Linux; Android 9; ZB602KL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Evgeny	Voznyuk	+79216432535	evgeny.voznyuk@gmail.com	2929153	2022-09-23 18:29:05	2022-10-07 15:14:48	1	\N
179	10.236.15.43	Mozilla/5.0 (Linux; Android 9; ZB602KL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Evgeny	Voznyuk	+79216432535	evgeny.voznyuk@gmail.com	2929153	2022-09-23 18:28:40	2022-10-07 15:14:48	1	\N
22	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Damianou	Polena	99835527	polena_d@hotmail.com	2936711	2022-09-01 07:05:07	2022-10-07 15:14:48	1	\N
9	10.236.15.86	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	test	test	5555555	test@test.com	2953733	2022-08-30 22:03:20	2022-10-07 15:14:49	1	\N
126	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Prokopovich	Ksenia	295872389	kseniaaprokopovich@gmail.com	2769258	2022-09-16 12:44:15	2022-10-07 15:14:49	1	\N
217	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Kuleshova	Oksana	96526666	angel4ksy@gmail.com	2913219	2022-09-30 08:20:11	2022-10-07 15:14:49	1	\N
121	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Prokopovich	Ksenia	295872389	kseniaaprokopovich@gmail.com	2769258	2022-09-16 12:38:29	2022-10-07 15:14:50	1	\N
204	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Bararaykina	Anna	+79374190791	annaalex2014@gmail.con	2882395	2022-09-29 14:16:12	2022-10-07 15:14:50	1	Hello! Please, consider my CV for a QA position. Thanks
33	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Ellinas	Nicos	99791559	ellinasnicos@gmail.com	2936711	2022-09-02 13:18:55	2022-10-07 15:14:51	1	\N
157	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.101 Safari/537.36	Kostitsyna	Elena	9037312760	ekostitsyna@mail.ru	2936711	2022-09-20 18:46:10	2022-10-07 15:14:51	1	\N
216	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Yiangou	Nayia	99942616	nayia.yiangou@outlook.com	2769258	2022-09-30 06:45:49	2022-10-07 15:14:51	1	Hello,\r\n\r\nI would love to discuss further with you for a possible vacancy within the Talent Acquisition team.
91	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Mavris	Yiannos	99534818	mavrisy@hotmail.com	2936711	2022-09-14 17:32:45	2022-10-07 15:14:52	1	\N
90	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Mavris	Yiannos	99534818	mavrisy@hotmail.com	2766546	2022-09-14 17:11:15	2022-10-07 15:14:52	1	\N
83	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Avramenko	Maryna	99156415	avramenkowa@gmail.com	2913219	2022-09-14 04:21:57	2022-10-07 15:14:53	1	\N
100	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36	Kokarieva	Veronika	0974472905	veronika.kokareva@gmail.com	2879130	2022-09-15 08:32:01	2022-10-07 15:14:53	1	\N
263	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Puzankov	Bogdan	9522789107	ourendoftheworld@gmail.com	3201277	2022-10-06 18:44:51	2022-10-07 15:14:53	1	\N
117	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Kovrigin	Evgenii	9995196849	kovrigin96@gmail.com	2929153	2022-09-15 22:49:15	2022-10-07 15:14:54	1	\N
153	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15	Garbar	Julia	9663281672	j.r.garbar@gmail.com	2830170	2022-09-20 07:49:35	2022-10-07 15:14:54	1	\N
11	10.236.15.86	Mozilla/5.0 (Linux; Android 11; HD1901) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Mobile Safari/537.36	Mishra	Gaurav	+919999408148	gaurav5274@gmail.com	3056083	2022-08-31 02:31:22	2022-10-07 15:14:54	1	\N
78	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.940 Yowser/2.5 Safari/537.36	Zubarev	Alexander	9055802266	17az08@gmail.com	2913219	2022-09-13 12:51:43	2022-10-07 15:14:55	1	\N
169	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Antoshina	Anastasia	1033366161	antoshina.anastasia@gmail.com	2936711	2022-09-22 06:48:10	2022-10-07 15:14:55	1	\N
247	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Sorokina	Elizaveta	9154050550	sorokina8484@bk.ru	2936711	2022-10-04 16:41:46	2022-10-07 15:14:55	1	\N
162	10.236.15.43	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Özfidan	Necip	6972107203	ozfidanecip@gmail.com	3056083	2022-09-21 09:21:39	2022-10-07 15:14:56	1	\N
95	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	CHORNII	OLENA	96073020	archiche92@gmail.com	2878507	2022-09-15 07:44:23	2022-10-07 15:14:56	1	\N
135	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 OPR/90.0.4480.84 (Edition Yx 05)	Moiseeva	Taisiya	96980549	moiseieva.tayah@yandex.ru	2913219	2022-09-16 17:22:47	2022-10-07 15:14:57	1	\N
168	10.236.15.87	Mozilla/5.0 (Linux; Android 10; Redmi 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36	Mazaeva	Tatyana	+79250604223	starling80@mail.ru	2936711	2022-09-22 04:30:18	2022-10-07 15:14:57	1	\N
111	10.236.15.40	Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-A715F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/17.0 Chrome/96.0.4664.104 Mobile Safari/537.36	Khmelevskaya	Irina	+375293523078	khmelevskayaim@gmail.com	2769258	2022-09-15 19:26:55	2022-10-07 15:14:57	1	\N
137	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 OPR/90.0.4480.84 (Edition Yx 05)	Moiseeva	Taisiya	96980549	moiseieva.tayah@yandex.ru	2913219	2022-09-16 17:28:47	2022-10-07 15:14:58	1	\N
76	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Kaisar	Alex	6948835212	moggolo3@gmail.com	3087515	2022-09-13 11:06:03	2022-10-07 15:14:58	1	\N
261	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Тест	Тест	95741886	anna.tsybenko@quadcode.com	2913219	2022-10-06 14:35:51	2022-10-07 15:14:58	1	тест тест тест
233	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Ustinov	Maxim	9197787013	ustinovmy@gmail.com	2769258	2022-10-03 11:13:01	2022-10-07 15:14:59	1	\N
27	10.236.15.86	Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1	Smirnova	Vladislava	89264399026	vlada.samsonova.03@gmail.com	2931569	2022-09-02 06:59:59	2022-10-07 15:14:59	1	\N
176	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Jansson	Elena	9214231661	vesnulina@gmail.com	2953735	2022-09-23 11:11:24	2022-10-07 15:15:00	1	\N
29	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Shchapov	Andrey	94088751	andrey.schapov.u@gmail.com	2913370	2022-09-02 12:54:35	2022-10-07 15:15:00	1	\N
58	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0	Smalinskas	Tomas	67020988	t.smalinskas@gmail.com	3033314	2022-09-07 22:55:49	2022-10-07 15:15:00	1	\N
147	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Iakovlev	Stanislav	91554315	stanislav.yackovleff@yandex.ru	2882395	2022-09-18 12:20:19	2022-10-07 15:15:00	1	\N
203	10.236.15.87	Mozilla/5.0 (Linux; Android 10; Redmi 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Mobile Safari/537.36	Mazaeva	Tatiana	89250604223	starling80@mail.ru	2913219	2022-09-29 14:03:47	2022-10-07 15:15:01	1	\N
39	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Petyushkin	Alexey	415720378	alexpetyushkin@gmail.com	2913374	2022-09-05 09:46:04	2022-10-07 15:15:01	1	\N
71	10.236.15.87	Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Sabirli	Sarkhan	558251460	sabirliserxan@gmail.com	3045877	2022-09-13 07:32:47	2022-10-07 15:15:02	1	\N
221	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 Edg/105.0.1343.42	Benzater	Uliana	9215897306	u.potapowa@gmail.com	2936711	2022-09-30 11:01:02	2022-10-07 15:15:03	1	Dear colleagues, \r\nI'm interested in this position, as I used to work in international companies with friendly but result oriented companies. I share values of Quadcode, and fully support collaboration, driving to excellence and everyday progress.  I will be glad to meet you on interview. \r\nThank you!
67	10.236.15.87	Mozilla/5.0 (Linux; Android 12; M2007J3SG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Stylianou	Andreas	0035799216416	andrew.stylianou17@gmail.com	3045877	2022-09-09 08:53:14	2022-10-07 15:15:03	1	\N
104	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Graham	Nikki	99099202	nikkigraham74@yahoo.co.uk	2879130	2022-09-15 09:14:19	2022-10-07 15:15:03	1	\N
10	10.236.15.86	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	test	tes	4444444	test@test.com	2953733	2022-08-30 22:04:15	2022-10-07 15:15:04	1	\N
244	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Yanycheva	Anna	95110909	ann.yanycheva@gmail.com	3108022	2022-10-04 15:07:52	2022-10-07 15:15:04	1	\N
170	10.236.15.87	Mozilla/5.0 (Linux; Android 12; SM-A528B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Panayiotou	Rodosthenis	99698511	rois1985@gmail.com	2913374	2022-09-22 06:55:42	2022-10-07 15:15:04	1	\N
118	10.236.15.40	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Tabatchikov	Semyon	+79996496942	samtabat27@gmail.com	2931569	2022-09-16 05:08:43	2022-10-07 15:15:05	1	\N
116	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Kovrigin	Evgenii	9995196849	kovrigin96@gmail.com	2929153	2022-09-15 22:48:41	2022-10-07 15:15:06	1	\N
44	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Markosyan	Ruzanna	9889631311	ruzanna04@yandex.ru	3033314	2022-09-06 06:22:35	2022-10-07 15:15:06	1	\N
210	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 15_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Mobile/15E148 Safari/604.1	Iacovou	Tatiana	97757620	99333409tv@gmail.com	2936711	2022-09-29 15:45:40	2022-10-07 15:15:06	1	\N
240	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36	Peshiy	Maxim	9955009908	Pshmx18@gmail.com	2832600	2022-10-04 08:14:47	2022-10-07 15:15:07	1	Hello!\r\nI'd like you to consider me as a frontend engineer. \r\nI am an experienced developer with good hard and soft skills. And feel comfortable with hard tasks, new technologies, deadlines. \r\nLooking forward for your answer. \r\nMy tg: @pshmx for quick sync.
30	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Shchapov	Andrey	94088751	andrey.schapov.u@gmail.com	2913370	2022-09-02 12:54:48	2022-10-07 15:15:07	1	\N
24	10.236.15.86	Mozilla/5.0 (Linux; Android 12; SAMSUNG SM-N975F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/18.0 Chrome/99.0.4844.88 Mobile Safari/537.36	Charalambous	Foivia	+35799243417	fivia1302@gmail.com	2931569	2022-09-01 16:37:07	2022-10-07 15:15:07	1	\N
262	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	тест	тест	95741886	anna.tsybenko@iqoption.com	2826189	2022-10-06 14:36:32	2022-10-07 15:15:08	1	тест тест
154	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Paskhina	Irina	9858181249	ipaskhina@outlook.com	3113456	2022-09-20 10:35:36	2022-10-07 15:15:08	1	\N
82	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Rusu	Elena	99119550	aleonuska15@gmail.com	3154596	2022-09-13 15:19:45	2022-10-07 15:15:08	1	\N
12	10.236.15.86	Mozilla/5.0 (Linux; Android 11; HD1901) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Mobile Safari/537.36	Mishra	Gaurav	+919999408148	gaurav5274@gmail.com	3056083	2022-08-31 02:31:31	2022-10-07 15:15:09	1	\N
86	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Тест	Тест	95741886	anna.tsybenko@quadcode.com	2915647	2022-09-14 08:29:00	2022-10-07 15:15:09	1	\N
53	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0	Książek	Natalia	510609260	nksiazek5@gmail.com	3109564	2022-09-06 20:17:10	2022-10-07 15:15:09	1	\N
248	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:105.0) Gecko/20100101 Firefox/105.0	Romanchenko	Georgiy	99557950	georomanchenko@gmail.com	3122184	2022-10-04 23:58:46	2022-10-07 15:15:10	1	\N
165	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	Dvoretskii	Viktor	637734459	vidvor98@gmail.com	3108022	2022-09-21 19:05:26	2022-10-07 15:15:10	1	\N
202	10.236.15.87	Mozilla/5.0 (Linux; Android 10; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Gryschuk	Nataliia	+380667811978	gryschuk.nataliia@gmail.com	2826189	2022-09-29 13:41:50	2022-10-07 15:15:11	1	\N
249	10.236.15.43	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Safari/537.36	Kostina	Ekaterina	9533525590	evkostina2@yandex.ru	2929153	2022-10-05 05:04:38	2022-10-07 15:15:11	1	Good day! This position interests me. I am a frontend-developer with a lot of experiencea and I really want to work on your project. I am interested in trading and investment fields because I studied this subject and I am familiar with these topics. If I work on this project you will not need to teach me basic information about finance.
196	10.236.15.87	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	Intizar	Eesha	03000842088	eeshaintizar@gmail.com	2882395	2022-09-29 10:35:32	2022-10-07 15:15:12	1	\N
69	10.236.15.87	Mozilla/5.0 (Linux; Android 12; M2007J3SG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Stylianou	Andreas	0035799216416	andrew.stylianou17@gmail.com	3045877	2022-09-09 08:54:19	2022-10-07 15:15:13	1	\N
225	10.236.15.87	Mozilla/5.0 (Linux; Android 10; ELE-L29) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Kiriakova	Oksana	89267856169	Oxanza@yandex.ru	2931569	2022-10-01 05:09:39	2022-10-07 15:15:13	1	Hello, I would like to apply for the position of financial planning and analysis manager.\r\nI have experience in accounting and consulting.\r\nLooking forward to hear from you
143	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Dayan	Göksu	5356579578	goksudayan@protonmail.com	2878507	2022-09-17 12:36:58	2022-10-07 15:15:13	1	\N
237	10.236.15.87	Mozilla/5.0 (Linux; Android 12; SM-G780F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Belevica	Marina	37125612939	belevicam@gmail.com	2913219	2022-10-03 17:45:59	2022-10-07 15:15:14	1	\N
84	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Avramenko	Maryna	99156415	avramenkowa@gmail.com	2913219	2022-09-14 04:22:12	2022-10-07 15:15:14	1	\N
173	10.236.15.43	Mozilla/5.0 (Linux; Android 12; M2103K19PG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Theocharis	Dimitrios	+306989853994	dimitristheocharis101@gmail.com	3056083	2022-09-23 07:03:20	2022-10-07 15:15:14	1	\N
98	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Tkhorzhevskaia	Ekaterina	616458386	ket-90@yandex.ru	2769258	2022-09-15 08:27:04	2022-10-07 15:15:15	1	\N
232	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.114 YaBrowser/22.9.1.1095 Yowser/2.5 Safari/537.36	Svyatkina	Olga	9030527757	me.sv.oe12@gmail.com	2936711	2022-10-03 08:55:29	2022-10-07 15:15:16	1	Hey, Quadcode team!\r\nMy name is Olga Svyatkina and I`m writing to apply on the HRBP Position.\r\n\r\nI have nearly 7 years of experience in HR and Recruitment as recruiter/hr/and process manager.\r\nI consider myself an experienced specialist capable of creating and providing recruitment processes, as well as managing a recruitment team. So I think that my experience may be useful.\r\n\r\nIf you are interested, please text me via telegram @svyatkina_oe or by e-mail.
107	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Constantinou	Sotos	99889433	sotos14@gmail.com	2879130	2022-09-15 11:10:39	2022-10-07 15:15:16	1	\N
163	10.236.15.43	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Özfidan	Necip	6972107203	ozfidanecip@gmail.com	3056083	2022-09-21 09:21:49	2022-10-07 15:15:16	1	\N
37	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Blinova	Tatiana	9164126110	tatiana.blinovaa@gmail.com	2953735	2022-09-04 11:48:10	2022-10-07 15:15:17	1	\N
223	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Fili	Michalis	99054074	filimichalis@gmail.com	2931569	2022-09-30 17:20:44	2022-10-07 15:15:17	1	\N
172	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.1019 Yowser/2.5 Safari/537.36	Tarasov	Vladislav	9958871835	sinimawath@gmail.com	2832600	2022-09-22 18:46:36	2022-10-07 15:15:18	1	\N
159	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 15_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1	Iskhakov	Zuphar	+79169226649	zuphariskh@gmail.com	2931569	2022-09-20 20:36:24	2022-10-07 15:15:18	1	\N
144	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Dayan	Göksu	+9056579578	goksudayan@protonmail.com	2913370	2022-09-17 12:37:40	2022-10-07 15:15:19	1	\N
136	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 OPR/90.0.4480.84 (Edition Yx 05)	Moiseeva	Taisiya	96980549	moiseieva.tayah@yandex.ru	2913219	2022-09-16 17:23:19	2022-10-07 15:15:19	1	\N
215	10.236.15.87	Mozilla/5.0 (Linux; Android 12; SM-G991B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Charalambous	Chara	99007894	chara_ch7@outlook.com	3154596	2022-09-29 23:43:47	2022-10-07 15:15:19	1	\N
155	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Paskhina	Irina	9858181249	ipaskhina@outlook.com	3113456	2022-09-20 10:35:59	2022-10-07 15:15:20	1	\N
227	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Shcherbakov	Oleg	876865107	oleg.scherbakov2@gmail.com	3056083	2022-10-02 15:49:18	2022-10-07 15:15:20	1	\N
115	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Kovrigin	Evgenii	9995196849	kovrigin96@gmail.com	2929153	2022-09-15 22:48:26	2022-10-07 15:15:21	1	\N
177	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Jansson	Elena	9214231661	vesnulina@gmail.com	2953735	2022-09-23 11:13:52	2022-10-07 15:15:21	1	\N
55	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36	Gonzalez	Yaimara	7868772985	klencytg@gmail.com	2929153	2022-09-07 03:20:05	2022-10-07 15:15:22	1	\N
63	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.940 Yowser/2.5 Safari/537.36	Nikolaeva	Natalia	+79250239086	nataliahola@yandex.ru	2931569	2022-09-08 19:01:00	2022-10-07 15:15:22	1	\N
45	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Markosyan	Ruzanna	9889631311	ruzanna04@yandex.ru	3033314	2022-09-06 06:22:49	2022-10-07 15:15:23	1	\N
251	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1	Dmitrii	Mitin	+79150462953	dima.mitin@gmail.com	3109564	2022-10-05 09:49:22	2022-10-07 15:15:23	1	Hello! I send mu CV addition to my request on hh.ru.
239	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Bykova	Arina	9951339486	avbykova27@gmail.com	2826189	2022-10-04 07:04:45	2022-10-07 15:15:24	1	Hi! Currently I work as Employer Brand Manager in Russia. \r\n\r\nI've done similar tasks on my position (and even more). You can find my portfolio via link:\r\nhttps://docs.google.com/presentation/d/1Uiv10Kcofrtw3QPzZZMpUeE8XDOUFcUq8dfCOOk6Azg/edit?usp=sharing (there are some of the cases, not all of them). \r\n\r\nCurrently, I do not have english posts in portfolio. However, I twice studied abroad and all my classes were held in English in Russia. So, I believe I will be able to create it in English easily. I am also ready to do an assessment. \r\n\r\nIf you have any questions, please feel free to contact me. I'll happily share my experience.
201	10.236.15.87	Mozilla/5.0 (Linux; Android 11; RMX2001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Trifonov	Viacheslav	+79264789148	iam.slavatrifon@gmail.com	3056083	2022-09-29 13:25:07	2022-10-07 15:15:24	1	I am very interested in this position and I think I fit the requirements for It. Looking forward for your feedback.
174	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Jansson	Elena	9214231661	vesnulina@gmail.com	2953735	2022-09-23 11:10:25	2022-10-07 15:15:24	1	\N
257	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36	Zhiliaeva	Kristina	9137490704	kristinazhiliaeva95@gmail.com	2879130	2022-10-06 09:09:45	2022-10-07 15:15:25	1	QUADCODE team, hello! \r\nI found this vacancy and think that I'm a perfect candidate.\r\nI have an experience in employer branding and marketing in international IT companies.\r\nMoreover I have a huge expertise in event manegement. \r\nBut my biggest advantage is ability to learn fast: I may have some gaps but can cover at a quick pace\r\nI'd like to learn more about this position and waiting for your feedback\r\nThank you in advance!
236	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	MIRONOVA	KATERINA	95178365	castaway7@mail.ru	2931569	2022-10-03 14:16:29	2022-10-07 15:15:25	1	Dear all,\r\nI would like to apply for a Financial Planning & Analysis Manager position.\r\nAs you may observe from my attached resume, I have experience\r\nin analytics (preparing reports, dashboards in excel). \r\nAlso I am constantly developing, now I am studying data analytics (python and sql).\r\nBut I don't have a work permit, and I need help with it.\r\nThank you for your time and consideration. I look forward to the invitation for an interview.
46	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Markosyan	Ruzanna	9889631311	ruzanna04@yandex.ru	3033314	2022-09-06 06:23:34	2022-10-07 15:15:25	1	\N
183	10.236.15.43	Mozilla/5.0 (Linux; Android 9; ZB602KL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Voznyuk	Evgeny	+79216432535	evgeny.voznyuk@gmail.com	2929153	2022-09-23 19:25:51	2022-10-07 15:15:26	1	\N
152	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Avchinnikova	Kate	9169251661	katrinaavch@gmail.com	3113456	2022-09-19 20:50:17	2022-10-07 15:15:26	1	\N
97	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36	Kokarieva	Veronika	0974472905	veronika.kokareva@gmail.com	2879130	2022-09-15 08:26:17	2022-10-07 15:15:26	1	\N
42	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Mikhailenko	Nina	9811483567	nina_am@mail.ru	2913219	2022-09-05 18:11:53	2022-10-07 15:15:27	1	\N
56	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Bylina	Tatiana	295753360	tatsiana.berinart@gmail.com	2879130	2022-09-07 09:35:38	2022-10-07 15:15:27	1	\N
138	10.236.15.40	Mozilla/5.0 (Linux; Android 12; SM-F926B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Monakhov	Vladislav	95567189	31vlados31@gmail.com	2913370	2022-09-16 17:48:07	2022-10-07 15:15:28	1	\N
20	10.236.15.86	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15	Kovalev	Sergei	9269798367	sergeysvyaznoy@gmail.com	2882395	2022-08-31 16:05:26	2022-10-07 15:15:28	1	\N
185	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Shashkina	Kseniia	638140066	k.sletneva@gmail.com	2913219	2022-09-26 17:31:39	2022-10-07 15:15:28	1	\N
268	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36	Khmeleva	Tatiana	9153887456	tatiana_khm@hotmail.com	2913219	2022-10-07 11:25:47	2022-10-07 15:15:29	1	\N
171	10.236.15.87	Mozilla/5.0 (Linux; Android 12; SM-A528B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Panayiotou	Rodosthenis	99698511	rois1985@gmail.com	2913374	2022-09-22 06:55:57	2022-10-07 15:15:30	1	\N
226	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15	Levanov	Alexey	551004129	alexeylevanov27@gmail.com	2830170	2022-10-01 19:48:40	2022-10-07 15:15:30	1	I will wait for a meeting or a feedback. Thanks in advance!
73	10.236.15.87	Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Sabirli	Sarkhan	558251460	sabirliserxan@gmail.com	3045877	2022-09-13 07:37:11	2022-10-07 15:15:30	1	\N
34	10.236.15.86	Mozilla/5.0 (Linux; Android 11; Redmi Note 8T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.134 Mobile Safari/537.36 OPR/70.3.3653.66287	Kuzmenko	Artem	+79811533938	grover.let@gmail.com	2882395	2022-09-02 16:56:49	2022-10-07 15:15:31	1	\N
140	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Safari/605.1.15	Karapetyan	Yevgenya	96547379	evaakarapetyan@gmail.com	2931569	2022-09-17 04:44:27	2022-10-07 15:15:31	1	\N
62	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.940 Yowser/2.5 Safari/537.36	Nikolaeva	Natalia	+79250239086	nataliahola@yandex.ru	2931569	2022-09-08 19:00:42	2022-10-07 15:15:31	1	\N
229	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15	Modin	Dmitry	99999999	xzwiex@gmail.com	2832600	2022-10-03 07:09:41	2022-10-07 15:15:32	1	\N
60	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0	Smalinskas	Tomas	67020988	t.smalinskas@gmail.com	3033314	2022-09-07 22:56:20	2022-10-07 15:15:32	1	\N
14	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Koshel	Dzmitry	296540465	kosheldzmitry@gmail.com	2913219	2022-08-31 05:47:33	2022-10-07 15:15:33	1	\N
156	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Paskhina	Irina	9858181249	ipaskhina@outlook.com	3113456	2022-09-20 10:37:38	2022-10-07 15:15:33	1	\N
255	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Kholmanskii	Danil	977993351	syncit4me@gmail.com	3159451	2022-10-05 16:06:47	2022-10-07 15:15:33	1	Hello. My name is Danil. I would like to join your team.
31	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Shchapov	Andrey	94088751	andrey.schapov.u@gmail.com	2878507	2022-09-02 12:55:08	2022-10-07 15:15:34	1	\N
110	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Hadjigeorgiou	Savvas	99174433	s.hadjigeorgiou@iqoption.com	2913219	2022-09-15 17:22:41	2022-10-07 15:15:35	1	\N
187	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Topoliuk	Kristina	97792363	kristina.topolyul@gmail.com	2931569	2022-09-27 06:40:14	2022-10-07 15:15:35	1	Hello, I am interested in the position, would be happy to talk
158	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.101 Safari/537.36	Kostitsyna	Elena	9037312760	ekostitsyna@mail.ru	2936711	2022-09-20 18:47:08	2022-10-07 15:15:35	1	\N
181	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47	Zhigulina	Irina	9162013990	zhigulina.irina@gmail.com	2936711	2022-09-23 19:13:38	2022-10-07 15:15:36	1	\N
87	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Charalampous	Koralia	97883203	koralia.char@gmail.com	2931569	2022-09-14 16:48:44	2022-10-07 15:15:36	1	\N
222	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Sosnina	Aleksandra	35796891023	aleksa.sosnina17@gmail.com	3159606	2022-09-30 12:58:07	2022-10-07 15:15:37	1	\N
49	10.236.15.86	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Shehu	Umar	2348069811837	umar.shehu_f@yahoo.com	2936711	2022-09-06 07:04:33	2022-10-07 15:15:37	1	\N
124	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Vassiliou	Mike	97601474	mcvassiliou@gmail.com	3159660	2022-09-16 12:40:39	2022-10-07 15:15:37	1	\N
191	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Vassiliou	Mike	97601474	mcvassiliou@gmail.com	3113456	2022-09-28 09:39:22	2022-10-07 15:15:38	1	\N
38	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Komissarenko	Karina	591314998	komis.karina@gmail.com	2936711	2022-09-05 09:37:09	2022-10-07 15:15:38	1	\N
119	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Agapov	Mikhail	95146558	agapovms@gmail.com	2830170	2022-09-16 09:55:11	2022-10-07 15:15:39	1	\N
125	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Vassiliou	Mike	97601474	mcvassiliou@gmail.com	3159660	2022-09-16 12:41:29	2022-10-07 15:15:39	1	\N
36	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Blinova	Tatiana	9164126110	tatiana.blinovaa@gmail.com	2953735	2022-09-04 11:47:29	2022-10-07 15:15:39	1	\N
72	10.236.15.87	Mozilla/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Sabirli	Sarkhan	558251460	sabirliserxan@gmail.com	3045877	2022-09-13 07:33:04	2022-10-07 15:15:40	1	\N
17	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 OPR/89.0.4447.83	Shamuradova	Arzuv	528988187	arzuv.shamuradova@hotmail.com	2918454	2022-08-31 09:09:44	2022-10-07 15:15:41	1	\N
128	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Komova	Tatiana	97815296	tavrik.tavrik@gmail.com	2878507	2022-09-16 12:45:59	2022-10-07 15:15:41	1	\N
267	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Zhubanishchev	Ruslan	7781706064	r.zhuba@shch.tech	2832600	2022-10-07 11:23:30	2022-10-07 15:15:41	1	Hi! I'm looking for new opportunities and saw your company on hh.ru. You don't answer me and I decided write you in direct.
175	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Jansson	Elena	9214231661	vesnulina@gmail.com	2953735	2022-09-23 11:10:48	2022-10-07 15:15:42	1	\N
61	10.236.15.40	Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.1 Mobile/15E148 Safari/604.1	Venderevskaya	Antonina	94761179513	avenderevskaya@list.ru	2931569	2022-09-08 04:10:08	2022-10-07 15:15:42	1	\N
70	10.236.15.40	Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.102 Safari/537.36 OPR/90.0.4480.84	campos gomes	Alexandre	21984130636	vyfTHc32@gmail.com	3056083	2022-09-10 21:18:00	2022-10-07 15:15:43	1	\N
25	10.236.15.86	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Shtyrkina	Alina	9150631198	alina-1207@mail.ru	2913219	2022-09-02 01:17:11	2022-10-07 15:15:43	1	\N
16	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.134 Safari/537.36 OPR/89.0.4447.83	Shamuradova	Arzuv	528988187	arzuv.shamuradova@hotmail.com	2918454	2022-08-31 09:09:21	2022-10-07 15:15:44	1	\N
130	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Belyakov	Ivan	9882818149	farrels@yandex.ru	2929153	2022-09-16 13:25:25	2022-10-07 15:15:44	1	\N
132	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Belyakov	Ivan	9882818149	farrels@yandex.ru	2929153	2022-09-16 13:25:54	2022-10-07 15:15:44	1	\N
35	10.236.15.40	Mozilla/5.0 (Linux; Android 12; SAMSUNG SM-G780F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/18.0 Chrome/99.0.4844.88 Mobile Safari/537.36	Tsikouri	Natasa	99845175	natasa.tsikouri@gmail.com	2879130	2022-09-03 11:58:32	2022-10-07 15:15:45	1	\N
234	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Pozdeeva	Anna	9686459802	ankelin.linken@gmail.com	2826189	2022-10-03 12:15:01	2022-10-07 15:15:45	1	Hi there! I'm very interested in your position.\r\n\r\nLet me tell you a couple of words about myself.\r\n\r\nA meticulous wordsmith and marketing pro, I work with an abundance of content formats. From analytical longreads to creative ads, I tune up copywriting deeds like a miracle. I've been writing for all my life and still enjoy it as much since it lets my artistic juices flow.
269	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Alekseev	Stepan	7058194024	casualpersonaj@gmail.com	3201277	2022-10-07 13:19:59	2022-10-07 15:15:45	1	Hello.\r\n\r\nI think, I might fit the requirements. \r\n\r\nI've been studying Java Selenium for some time in a Russian company
142	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Dayan	Göksu	+905356579578	goksudayan@protonmail.com	2878507	2022-09-17 12:36:41	2022-10-07 15:15:46	1	\N
213	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Ozkan	Buse	7761935486	buse1.ozkan@gmail.com	3122184	2022-09-29 18:40:58	2022-10-07 15:15:46	1	\N
79	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.940 Yowser/2.5 Safari/537.36	Zubarev	Alexander	9055802266	17az08@gmail.com	2913219	2022-09-13 12:51:53	2022-10-07 15:15:46	1	\N
92	10.236.15.87	Mozilla/5.0 (X11; Linux x86_64; rv:104.0) Gecko/20100101 Firefox/104.0	Drakou	George	99832114	drakou.george@gmail.com	2903870	2022-09-14 19:45:16	2022-10-07 15:15:47	1	\N
151	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Pertaia	Evgenii	9164417364	ev.pertaia@gmail.com	2830170	2022-09-19 15:38:54	2022-10-07 15:15:48	1	\N
214	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Yamschikov	Semion	+79818314631	splaff8@gmail.com	3056083	2022-09-29 21:45:34	2022-10-07 15:15:48	1	\N
26	10.236.15.86	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Shtyrkina	Alina	9150631198	alina-1207@mail.ru	2913219	2022-09-02 01:17:33	2022-10-07 15:15:48	1	\N
160	10.236.15.43	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Özfidan	Necip	6972107203	ozfidanecip@gmail.com	3056083	2022-09-21 09:19:15	2022-10-07 15:15:49	1	\N
109	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Constantinou	Sotos	99889433	sotos14@gmail.com	2879130	2022-09-15 11:12:38	2022-10-07 15:15:49	1	\N
43	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Mikhailenko	Nina	9811483567	nina_am@mail.ru	2913219	2022-09-05 18:12:17	2022-10-07 15:15:49	1	\N
188	10.236.15.43	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Christodoulou	Smaragda	99208848	smaragdach@gmail.com	2913374	2022-09-27 13:29:05	2022-10-07 15:15:50	1	\N
103	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Graham	Nikki	99099202	nikkigraham74@yahoo.co.uk	2913219	2022-09-15 09:04:19	2022-10-07 15:15:50	1	\N
235	10.236.15.87	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Safari/605.1.15	Deminov	Sergei	9119527405	sdeminov@gmail.com	3159660	2022-10-03 12:19:58	2022-10-07 15:15:51	1	\N
238	10.236.15.43	Mozilla/5.0 (Linux; Android 12; SM-G780F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Belevica	Marina	37125612939	belevicam@gmail.com	3159606	2022-10-03 17:48:01	2022-10-07 15:15:51	1	\N
105	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Constantinou	Sotos	99889433	sotos14@gmail.com	2879130	2022-09-15 11:09:18	2022-10-07 15:15:51	1	\N
74	10.236.15.87	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Mobile/15E148 Safari/604.1	Tabatchikov	Semyon	+79996496942	samtabat27@gmail.com	2931569	2022-09-13 08:53:56	2022-10-07 15:15:52	1	\N
23	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.101 Safari/537.36	Avdeeva	Anastasia	94205120	anastasia.avdeeva1810@gmail.com	2931569	2022-09-01 12:05:49	2022-10-07 15:15:52	1	\N
89	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Mavris	Yiannos	99534818	mavrisy@hotmail.com	2766546	2022-09-14 17:10:46	2022-10-07 15:15:52	1	\N
64	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.940 Yowser/2.5 Safari/537.36	Nikolaeva	Natalia	+79250239086	nataliahola@yandex.ru	2931569	2022-09-08 19:01:27	2022-10-07 15:15:53	1	\N
120	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Prokopovich	Ksenia	295872389	kseniaaprokopovich@gmail.com	2769258	2022-09-16 12:37:46	2022-10-07 15:15:53	1	\N
57	10.236.15.86	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Bylina	Tatiana	295753360	tatsiana.berinart@gmail.com	2879130	2022-09-07 09:36:33	2022-10-07 15:15:54	1	\N
68	10.236.15.87	Mozilla/5.0 (Linux; Android 12; M2007J3SG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Stylianou	Andreas	0035799216416	andrew.stylianou17@gmail.com	3045877	2022-09-09 08:53:44	2022-10-07 15:15:54	1	\N
65	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.940 Yowser/2.5 Safari/537.36	Nikolaeva	Natalia	+79250239086	nataliahola@yandex.ru	2931569	2022-09-08 19:02:11	2022-10-07 15:15:54	1	\N
96	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36	Kokarieva	Veronika	0974472905	veronika.kokareva@gmail.com	2879130	2022-09-15 08:25:59	2022-10-07 15:15:55	1	\N
19	10.236.15.86	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	test	test	5555555	test@test.com	2953733	2022-08-31 09:30:09	2022-10-07 15:15:56	1	\N
193	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Mavris	Yiannos	99534818	mavrisy@hotmail.com	2936711	2022-09-28 15:15:33	2022-10-07 15:15:56	1	Dear Sir/Madam,\r\nPlease find attached my CV regarding the HR BUSINESS PARTNER position in Limassol, Cyprus.
186	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	test2	test	5555555	test@test.com	2903870	2022-09-26 20:29:01	2022-10-07 15:15:56	1	My test message
66	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.167 YaBrowser/22.7.5.940 Yowser/2.5 Safari/537.36	Nikolaeva	Natalia	+79250239086	nataliahola@yandex.ru	2931569	2022-09-08 19:04:33	2022-10-07 15:15:57	1	\N
211	10.236.15.43	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36	Lukács	Péter	703170543	peterpallukacs@gmail.com	3154596	2022-09-29 16:45:55	2022-10-07 15:15:57	1	Dear Valentina,\r\n\r\nI am sending you my application for this role.\r\n\r\nI am happy to hear from you and best regards,\r\n\r\nPéter
199	10.236.15.87	Mozilla/5.0 (Linux; Android 12; SM-S908B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Solomou	Soteris	99470959	ssolomou267@gmail.com	3056083	2022-09-29 13:00:32	2022-10-07 15:15:57	1	\N
178	10.236.15.43	Mozilla/5.0 (Linux; Android 9; ZB602KL) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36	Evgeny	Voznyuk	+79216432535	evgeny.voznyuk@gmail.com	2929153	2022-09-23 18:28:17	2022-10-07 15:15:58	1	\N
106	10.236.15.87	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36	Constantinou	Sotos	99889433	sotos14@gmail.com	2879130	2022-09-15 11:10:28	2022-10-07 15:15:58	1	\N
59	10.236.15.40	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:104.0) Gecko/20100101 Firefox/104.0	Smalinskas	Tomas	67020988	t.smalinskas@gmail.com	3033314	2022-09-07 22:56:10	2022-10-07 15:15:58	1	\N
40	10.236.15.40	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36	Kamneva	Ellina	43440236	llinja.kam@gmail.com	2953220	2022-09-05 11:45:09	2022-10-07 15:15:59	1	\N
282	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Nikitenkov	Fyodor	9857258046	fd.nikitenkov@gmail.com	2830170	2022-10-11 14:12:16	2022-10-11 14:20:03	1	Hi!\r\n\r\nMy name is Fedya. I'm experienced Product manager with 2+ years of experience in telcos’ new product development departments.\r\n\r\nOver the past two years, I've focused on the new product hypotheses validating process. I’ve spent hours designing researches and experiments, building MVPs and analysing the results. I’ve launched several products and transited the key insights of the experiments to the business.\r\n\r\nMore details on my experience you can find in my CV and personal page at Notion.\r\n\r\nhttps://fyodornikitenkov.notion.site/fyodornikitenkov/Fyodor-Nikitenkov-15d48f33a25e4224a4e57b5900e3dace\r\n\r\nI believe that I can bring the best of my expertise to your team and help them to grow your SaaS trading platform.\r\n\r\nI will be glad to tell you more about my experience. Please, feel free to reach me out in any way convenient for you.\r\n\r\nBest,\r\nFedya.\r\nhttps://t.me/fnikitenkov
296	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Mobile/15E148 Safari/604.1	Frangou	Froso	99782124	froso.frangou@gmail.com	2931569	2022-10-12 13:47:20	2022-10-12 13:50:02	1	\N
308	10.236.15.43	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36	Ukrainets	Danila	9649931884	danila.ukrainets@gmail.cpm	2879130	2022-10-18 10:13:13	2022-10-18 10:20:02	1	Hi!\r\nI’m looking for the Employer Branding specialist position. I have experience in external DevRel at Luxoft: managed Habr, Devby, social media, organised meetups, and internal DevRel at Tele2: organised meetups, communities, news digests ect.\r\nI will be very glad to meet you and work on tasks!\r\nCan you please tell me what you need to continue communication?
333	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Sechkareva	Maria	9819537720	msechkareva@inbox.ru	2913219	2022-10-24 07:24:13	2022-10-24 07:30:03	1	Hello!\r\nMy name is Maria and I am writing to express my interest in the position of People Specialist in your company.\r\nI've been working in the sphere of Education for last 10 years actively participating in the company's life and moving from teaching to managerial positions. Being interested in the L&D field I am now ready to move on, gain new skills and experience, contribute all my knowledge and passion to the new place.\r\nI'm sure I will be able to find the right approach to any of my future colleagues (including foreigners).\r\nBeing a self-motivated person, I work independently, meeting the deadlines and company standards, constantly delivering the result to my managers.  \r\nThank you for your time and consideration. I would love to meet online to tell you more about why I think I would be a good fit for the position and answer your questions.\r\nHave a great day!\r\nBR,\r\nMaria
351	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Brusnik	Anna	637739446	theanntv99@gmail.com	2953735	2022-10-26 15:34:46	2022-10-26 15:40:03	1	Dear Hiring Manager,\r\n\r\nMy name is Anna, nice to meet you. I'm writing you to express my interest in the Marketing Creative Producer. \r\n\r\nI worked as a creative producer, primarily managing content creation for Amazon (product listings and PPC) and Display Ads, tracking backlog, searching for outsourcing experts, coordinating product design development, and building effective processes). I also analyzed media placement working at a communications agency and produced online educational courses and webinars at an edtech company. \r\n\r\nI’m good in communication, as I regularly worked within a team as well as cross-team and outsourcing experts worldwide, coordinating between internal resources and third parties. \r\n\r\nHere you see a more detailed resume: https://fanatical-patch-919.notion.site/Creative-Project-Manager-a5c2d587ecdc46748342a43e79397bbf \r\n\r\nand some work results: https://fanatical-patch-919.notion.site/Content-Portfolio-Anna-Brusnik-92710d380bc14937bf956fc3287d8197\r\n\r\nI can be reached by email theanntv99@gmail.com or telegram: @annbrusnik / WA: +79219826708\r\n\r\nThank you for your time and consideration!
363	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Yashina	Darya	9955973928	da.baranets@gmail.com	2931569	2022-10-27 14:26:21	2022-10-27 14:30:02	1	I am really interested in this position, and here is my CV. I have both technical background (Excel, SQL, BI tools) and analytical mindset. I know basics of financial market and also have brokerage account.
385	10.236.15.85	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1	Petrov	Evgenii	+905076912920	Joysgood@gmail.com	3159451	2022-10-29 07:13:26	2022-10-29 07:20:03	1	\N
386	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.124 YaBrowser/22.9.4.863 Yowser/2.5 Safari/537.36	Suetin	Vladislav	9205262424	suetin.vlad@gmail.com	3159451	2022-10-29 07:41:16	2022-10-29 07:50:03	1	\N
387	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.124 YaBrowser/22.9.4.863 Yowser/2.5 Safari/537.36	Suetin	Vladislav	9205262424	suetin.vlad@gmail.com	2769258	2022-10-29 07:44:33	2022-10-29 07:50:04	1	\N
401	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36 OPR/91.0.4516.77 (Edition Yx 05)	Kurmanov	Ilyas	7073365412	517381@gmail.com	3159451	2022-11-01 11:41:32	2022-11-01 11:50:02	1	Hi!\r\nI am interested in your position.
414	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Ogbuehi	Omah	7031064162	omahogbuehi@gmail.com	2953735	2022-11-05 19:18:18	2022-11-05 19:20:04	1	\N
427	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Aminova	Victoria	+79259920059	gynkova.vika98@mail.ru	3248128	2022-11-09 13:33:09	2022-11-09 13:40:04	1	\N
417	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Vozniak	Alina	5313177012	alinavoznyak@gmail.com	2826189	2022-11-07 12:14:18	2022-11-07 12:20:06	1	Hello! My name is Alina Vozniak and I have been working in the SMM for five years.\r\n\r\nI have experience working with companies: the Abrau Durso wine house, the YOGIROOM yoga studio, The Time of Order online school, Dvoryanka wedding salon and many others.\r\n\r\nWhat are my responsibilities:\r\n\r\n- Development of a promotion strategy\r\n- Preparation of content plans\r\n- Writing texts\r\n- Organization of photoshoot\r\n- Account management, moderation\r\n- Cooperation with bloggers and opinion leaders\r\n- Creation of design layouts (Adobe, Figma, Canva)\r\n- Development of special projects\r\n\r\nHave experience in social networks: Instagram, Facebook, TikTok, Telegram, VKontakte and Youtube\r\n\r\nHere is my portfolio.\r\n\r\nSincerely yours,\r\nVozniak Alina
418	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Vozniak	Alina	5313177012	alinavoznyak@gmail.com	2953220	2022-11-07 12:17:23	2022-11-07 12:20:13	1	Hello! My name is Alina Vozniak and I have been working in the SMM field for five years.\r\n\r\nI have experience working with companies: the Abrau Durso wine house, YOGIROOM yoga studio chain, The Time of Order online school, Dvoryanka wedding salon and many others.\r\n\r\nWhat are my responsibilities:\r\n\r\n- Development of a promotion strategy\r\n- Preparation of content plans\r\n- Writing texts\r\n- Organization of photography\r\n- Account management, moderation\r\n- Cooperation with bloggers and opinion leaders\r\n- Creation of design layouts (I own Adobe, Figma, Canva)\r\n- Development of special projects\r\n\r\nHave experience in social networks: Instagram, Facebook, TikTok, Telegram, VKontakte and Youtube\r\n\r\nHere is my portfolio.\r\n\r\nSincerely yours,\r\nVozniak Alina
419	10.236.15.85	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Broadie	Anna	54250732	anna.a.broadie@gmail.com	2913219	2022-11-07 14:13:59	2022-11-07 14:20:03	1	Hello Hiring Manager!\r\n\r\nI am interested in the People Specialist vacancy. \r\n\r\nI spent nine years developing my skills as an HR specialist for BNP Paribas. This experience let me sussessfully been managing complex HR processes in IT companies the last few years. For the last couple years I am in charge of full cicle of educational activities inc.mentors-mentees, bootcamps, cources and meet-ups.\r\n\r\nI see myself as a truly people person and as an achiever. I like to make others happy by helping, inspiring and motivating them. I want to get things done and try to deliver my best. Sounds like a cliché but challenges inspire me and working in a fast-paced international environment together with like-minded people is what drives me. I’m not afraid of hard work, rolling up my sleeves and do what needs to be done. \r\n\r\nSincerely,\r\nAnna Broadie
420	10.236.15.85	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15	Rybalkin	Pavel	94440416	rybalkinpavel93@gmail.com	2931569	2022-11-07 14:25:26	2022-11-07 14:30:03	1	Dear Quadcode team,\r\n\r\nMy name is Pavel, I do have 6+ years of working experience in Consulting and Corporate banking. Now I'm looking for an opportunity to become a part of great fin-tech company such as Quadcode in order to contribute all my knowledge and skills towards  great products/services. Owing to my previous work experience I do consider myself as capable to cover most of the required tasks from Financial Analyst/Specialist role in your team.   \r\n\r\nHence I would be grateful if you consider my CV for this role!\r\n\r\nThank you in a advance.\r\n\r\nSincerely,\r\nPavel
425	10.236.15.14	Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Borodaev	Yury	97825338	borodaevyury@gmail.com	3248128	2022-11-09 10:19:55	2022-11-09 10:20:04	1	Dear Sir/Madam,\r\n\r\nAllow me to introduce my candidacy for the position of Copywriter.\r\n\r\nMy cover letter and resume are in the attached file.\r\n\r\nII hope that my experience and knowledge gained in the field of copywriting, digital marketing and finance will be of interest to your company. I am looking forward to your reply.\r\n\r\nBest regards,\r\n\r\nYury Borodaev
426	10.236.15.85	Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Borodaev	Yury	97825238	borodaevyury@gmail.com	2826189	2022-11-09 11:05:53	2022-11-09 11:10:04	1	Dear Sir/Madam,\r\n\r\nAllow me to introduce my candidacy for the position of SMM-Specialist.\r\n\r\nMy cover letter and resume are in the attached file.\r\n\r\nII hope that my experience and knowledge gained in the field of SMM, copywriting, digital marketing and finance will be of interest to your company. I am looking forward to your reply.\r\n\r\nBest regards,\r\n\r\nYury Borodaev
428	10.236.15.14	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Larchenko	Alexandra	9213392219	alexandra.lar@gmail.com	2913219	2022-11-10 08:04:36	2022-11-10 08:10:02	1	Hello,\r\n\r\nMy email is in regard to the open position of People Specialist.\r\n\r\nI have been working as a project manager in arts and culture for the last 7 years. I organized many art exhibitions and educational projects including international ones.\r\n\r\nMy current job involves a lot of interaction with my team, partners, and contractors. I have excellent communication skills and a high level of empathy. This allows me to easily approach new people and establish contact. I always try to find solutions and compromises that would satisfy all parties.  \r\n\r\nDuring the course of all my professional career, I have been organizing various projects starting from live performances and shows to exhibitions and lectures. The acquired experience allows me to coordinate events of any kind.\r\n\r\nI have extensive experience working with documentation. At one of the exhibition projects, I had to coordinate communication with fifty museums in parallel, draw up contracts, insurance policies, and official letters for all of them.\r\n\r\nI don’t have experience working in HR. However, I would like to dive into this field. Being curious, I learn new things quickly. Given my prior experience, I am confident I can become a valuable employee and be able to perform all the work successfully.\r\n\r\nI had a chance to gain some knowledge about the IT industry. I studied HTML, Javascript, and C#. I also took an introductory course on manual testing, participated in an AR lab, and learned about visual programming.\r\n\r\nAlexandra,\r\nThank you.
434	10.236.15.100	Mozilla/5.0 (Linux; Android 12; 2201123G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Mobile Safari/537.36	Shlenskaya	Natalia	+79251597565	shlenskaya.n@gmail.com	2931569	2022-11-13 05:54:32	2022-11-13 06:00:27	1	My name is Natalia. I have a sound experience in financial analysis, financial modeling and projections. I'm easy learning and responsible.
436	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	SOKRATOUS	ATHINA	99847298	socratousathena@gmail.com	2913219	2022-11-14 12:11:59	2022-11-14 12:20:02	1	good afternoon, \r\n\r\nplease find attached my CV for your consideration. \r\n\r\nthank you in advance,
438	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15	Zakharov	Vladyslav	055658010	vladvertz@gmail.com	2953735	2022-11-14 12:25:13	2022-11-14 12:30:03	1	Hi!\r\n\r\nI would like to offer my experience in mobile marketing and video production. My duties included leading a big team of creatives on several projects. If you're looking for someone with a mind for great ideas and eye for a decent visuals, please check my portfolio below:\r\n\r\nhttps://readymag.com/u1132552839/3889773/
439	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Myronova	Kateryna	+380954997799	katemyronova.15@gmail.com	2826189	2022-11-14 14:41:49	2022-11-14 14:50:19	1	Good afternoon, my name is Katerina. I am interested in your job as an SMM specialist. I have 4 years experience in this field. Attached my resume. I look forward to hearing from you. With best wishes, Katerina.
440	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Zhukov	Evgeniy	94133486	krutobudet1@gmail.com	2953733	2022-11-15 07:54:40	2022-11-15 08:00:29	1	Hello!\r\nMy namy is Evgeniy im motion designer.\r\nWorking experience: \r\n ⁃ The site of the company I had been working with: \r\nplaygendary.com\r\n\r\n ⁃ Simulating 2D gameplays and preparing material for decent advertisement which increases download of the product \r\n ⁃ Creating various vfx for the company's tittles using AE and Trapcode suite.\r\n ⁃ Proposing different workable creatives which increase overall downloads of the company's games.\r\n ⁃ Coming up with new ideas for operating creatives on a regular basis and implementing the new scenarios in actual animation. \r\n ⁃ Making retrospective of old creatives to find certain patterns for improvement of current ones. \r\n\r\nMore info about my skills in cv.\r\n\r\nSincerely,\r\nEvgeniy Zhukov
441	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Aleshin	Pavel	511122578	alyoshinpavel@gmail.com	3159451	2022-11-15 11:36:17	2022-11-15 11:40:03	1	To whom it may concern\r\n\r\nI would like to apply for a SYSTEM ENGINEER position as advertised on your webpage. \r\n\r\nI have more then 10 years of experience of system administration and servicedesk work.\r\n\r\nI attach my CV for your review\r\n\r\nBest regards\r\nPave;
442	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Rakovskii	Ivan	97882581	froster2005@gmail.com	3159451	2022-11-15 11:42:13	2022-11-15 11:50:03	1	Добрый день! Меня зовут Иван Раковский. Ищу работу в качестве специалиста\\инженера технической поддержки или системного администратора с релокацией на Кипр (в данный момент нахожусь здесь).\r\nИмею 10-летний опыт работы в данной области (поддержка большого количества пользователей, поддержка работоспособности Windows Server инфраструктуры, работа с различными системами Service Desk).\r\nБуду рад обсудить возможность работы у Вас.\r\n\r\nHello! My name is Ivan Rakovskii. I am looking for a job as a technical support specialist, support engineer or system administrator with relocation to Cyprus, as currently I'm located there.\r\nI have 10 years experience in this field (supporting of large amount of users, supporting of Windows Server infrastructure, working in Service Desk systems).\r\nIf you have relevant roles opened, I'd be very glad to discuss possible opportunities.
444	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Tarasov	Nikita	9260481574	nikitatarasov987@gmail.com	2860249	2022-11-15 15:42:35	2022-11-15 15:50:06	1	Hello.  My name is Nikita Tarasov, I am a front-end developer, I know JavaScript, React, TypeScript, Git, SCSS and linters well, I reviewed and edited Node.JS code. I also worked with Python and FastApi. I am a quick learner, non-confrontational and friendly, and I like to master new technologies. I want to work for you, be helpful and grow as a developer.
446	10.236.15.14	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Koltsov	Oleg	05068065670	okolcov60@gmail.com	2860249	2022-11-15 16:05:59	2022-11-15 16:10:03	1	Hello, I really like your site!\r\nI am applying for a front end developer position because I can meet your needs with my relevant experience and my latest projects. I have worked in agile teams where I mainly used React and Ts. Engaged in the development of interfaces and improvement of the code base of the project.\r\nI also have experience with node.js and writing unit tests.\r\nThank you for your time.
447	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Tyunina	Yulia	9164638731	jm.tyunina@gmail.com	2953735	2022-11-15 16:22:43	2022-11-15 16:30:03	1	Dear HR Team,\r\nI have learned that your company is searching for Marketing Creative Producer. Thus, I would like to propose my candidacy for this position.\r\n\r\nAs you may observe from my attached resume, I have great experience in Social media marketing. My career in SMM started in Ostrovok.ru, online hotel booking service. I just started learning basic skills in practice and this experience made me more disciplined and learned how to work within deadlines.\r\n\r\nNow I am a project manager in e-commerce who is responsible for  B2B-digital projects and B2B-social media: Instagram (>30k followers), Facebook (>4k followers), VK (>23k followers), Telegram (>50k followers). The number of followers as well as the loyalty to the channels are constantly growing – in VK, for instance, from 256 followers in March to more than 25k followers in November. There are several reasons of such growth and the right creative content strategy of the channels is one of them. \r\n\r\nI also specialize on performance marketing, particularly targeting. From April to August I received 802 leads from B2B and enlarged company`s profit. All th banners were created in close collaboration with designers.\r\n\r\nBesides, currently I`m developing two B2C SMM-projects. The first one is promotion of Yoga and Pilates Studio. I shoot videos and photos during trainings, edit, create creatives, organize photo shootings and collaborations with bloggers. Overall, develop loyalty and attracting new clients to the studio.The second one is promotion of pottery and craft studio in Montenegro. I developed a content strategy of the brand and currently help with marketing - I came up with packages of workshops, which are now popular among clients. On average, studio has from 5-10 workshops per week. Initially we have 300 followers in account, now – more than 16 000 taking that we haven’t spend money on promotion, except small Instagram-competitions. The secret is in reels that brought followers to the account. All of my reels here have more than 80 thousand views, 2 of them – more than 10 million!\r\n\r\nI have a profound expertise in content creation for both B2B and B2C, design, targeting, website development and SEO. Believe that these skills are highly suitable for the candidate on the position you are searching for. I would be glad to contribute to the life of your company by becoming a member of your team.\r\n\r\nIf you wish to discuss anything to do with my application, please, contact me!\r\n\r\nThank you for your time and consideration. \r\n\r\nYours sincerely,\r\nYulia
448	10.236.15.14	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Rodkin	Vladimir	9130395439	vladimir.rodkin@gmail.com	3159451	2022-11-15 16:24:55	2022-11-15 16:30:04	1	Hello, \r\n\r\nI have 14 years of experience in system architecture and IT infrastructure. Last 6 years i heave been working with different system and IT solutions architecture with focus on vendor-agnostic approach. My professional work experience is about managing from small to large size IT landscapes - on-premise and cloud, from classical enterprise tech stack  to opensource. Main focus is on building reliable and effective IT solutions for business tasks.
449	10.236.15.14	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Skorikov	Ivan	94758828	i.skorikov@yandex.ru	3159451	2022-11-15 17:20:03	2022-11-15 17:30:02	1	Hello!\r\n\r\nMy name's Ivan and I'm looking for a job! I have a lot of experience working in technical support, both as an engineer and as a manager, I'm proficient with both Linux and Windows and have strong Python automation skills. I believe I can bring a lot of value to your company in this role of System Engineer!\r\n\r\nLooking forward to hearing from you!\r\n\r\nBest regards,\r\nIvan Skorikov
451	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Gusarova	Kristina	+79117207438	gusarova.cs@gmail.com	2913219	2022-11-15 19:39:16	2022-11-15 19:40:03	1	Dear People Operations Team,\r\nMy name is Kristina Gusarova and I am interested in your People Specialist vacancy.\r\n\r\nCurrently I work in a remote team as HR & communication manager of an international certification body UCSL. \r\nMy field of activity includes management of all HR processes of the company: full cycle of recruitment, organization of onboarding and adaptation of new employees, implementation of external and internal training programs for our team, working on an HR brand, working with staff motivation system.\r\n\r\nMy professional interests include the areas of adaptation and motivation of personnel, as well as organization of effective remote work of remote teams. \r\nI am used to solving complex tasks and quickly understand what is required from me.\r\n\r\nI have a high education in the field of HR management and want to become part of a friendly team, believe that my knowledge and experience can be useful! \r\n\r\nI will be happy to tell you more about myself. You can contact me directly via messengers - +7(911)720-74-38 or email.\r\nThank you in advance for your attention to my CV.\r\nBest regards,\r\nKristina Gusarova
452	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15	Kovalenko	Liza	9523561299	lizakovalenkolol@gmail.com	2953220	2022-11-15 21:50:40	2022-11-15 22:00:27	1	Dear Hiring Manager,\r\nI was excited to see the announcement that Quadcode is hiring a SMM Specialist.\r\nNow I work as a director of communications in Simple Things. During the work, mu team and I managed to create a promotion strategy and increase the audience by 5 times, launch an advertising campaign throughout the city and solve several complex reputation cases. I am looking for a new job where my experience can be useful and where I can do something that has never been done before.\r\nAs an independent specialist in parallel, I help an environmentally friendly project to move forward. Now we have managed to analyze the audience, identify segments and build a communication strategy. It is important for me to work on projects with values that I share.\r\nHaving received this position, I would like to build partnerships. I think it will be easy: our fundamental values of respect, diversity, inclusion, social responsibility are the same. \r\nI have been working with social networks for 5 years and I know how to do it. Moreover, I know how to make media for people, and not just an image page of a company. Social networks are now the most accessible and effective promotion tool for me. With Instagram reels alone, you can build a brand and create a community around it.\r\nI will be happy to work together.
453	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Presnova	Tatiana	+35799017889	tatianapresnova@yahoo.com	2913219	2022-11-16 06:46:51	2022-11-16 06:50:04	1	Hi)I am interested in joining Quadcode.I have attached my CV.Please review it. Thank you in advance.
454	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Efremov	Georgii	5345935215	efremovgs@gmail.com	2832600	2022-11-16 08:09:01	2022-11-16 08:10:03	1	\N
455	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Andriishina	Anastasiia	551149394	anastasiia.alekseevna05@gmail.com	2879130	2022-11-16 12:22:39	2022-11-16 12:30:03	1	My name is Nastya and now I work in one of the largest DIY companies.\r\nI deal with brand reputation and develop the company's HR brand.\r\nWe have a large IT department. We're hiring great people, organize events, conferences, hackathons. \r\nI believe that the strength of the team is in the people.\r\nI will be glad to chat with you.
456	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	ohaka	chigozie	7031998614	chigozieohaka@gmail.com	2953735	2022-11-16 12:36:52	2022-11-16 12:40:02	1	\N
457	10.236.15.100	Mozilla/5.0 (Linux; Android 11; SM-A505FN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Athanasiadou	Anna	99378222	m.a.athanassiades@gmail.com	2913219	2022-11-16 14:20:02	2022-11-16 14:30:06	1	\N
458	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Egorov	Artem	9047865967	artegorov3@gmail.com	2953733	2022-11-16 16:41:34	2022-11-16 16:50:02	1	Hello!\r\n  I saw that you are looking for a 3D designer. I want to show you my portfolio https://www.behance.net/gallery/139481625/Artem-Egorov-Showreel\r\n  If it looks like what you need, ready to discuss cooperation
459	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Rogalskaya	Kristina	9231754513	krisrowdy6@gmail.com	3159451	2022-11-16 18:27:49	2022-11-16 18:30:03	1	Dear Quadcode Team!\r\nI am writing to express my desire to be part of the Quadcode team as a System engineer. \r\n\r\nThank you for considering my application!\r\n\r\nKind regards,\r\nKristina Rogalskaya
460	10.236.15.14	Mozilla/5.0 (Linux; Android 11; RMX3581) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Zhilin	Nikita	+79037890037	nikita.zhilin@gmail.com	2931569	2022-11-16 20:01:44	2022-11-16 20:10:02	1	\N
461	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0	Larionov	Leonid	596300139	Leon.Lari@yandex.ru	3159451	2022-11-17 08:24:07	2022-11-17 08:30:02	1	Hello and have a nice day!\r\nI really liked your job posting as a System Engineer at Quadcode, because your set of tasks is exactly what I'm currently interested in.\r\nI have all the necessary competencies and experience to make your company's work processes better.\r\nBest regards,\r\nLarionov Leonid.
462	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36	Dzhumabaev	Ruslan	556619000	dzhumabaev1993@mail.ru	2931569	2022-11-17 09:57:42	2022-11-17 10:00:37	1	Hi there, \r\nI am very interested in your vacancy, considering my experience in MNC i believe that i can fit to your requirements and can be good asset to you company.\r\nBriefly about my self, I am 29 and studied Accounting and Finance in Malaysia in English with IFRS standards. Have Experience working with different accounting software such as 1C, Tally, Axapta Dynamics. Have experience in preparation of Cash flow, balance sheet, PnL, budgeting with Plan-Fact analysis. A part of that was involved in automatisation of some business processes like posting of bank statement in two accounting softwares, preparation of excel table with automated  calculation of currency exchange difference and so on. It would be my pleasure to have an interview to talk more about myself and experience. \r\n\r\nBest regards,\r\nRuslan
463	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.42	Dmitrievykh	Kristina	+79213223092	chris90@mail.ru	2879130	2022-11-17 12:10:12	2022-11-17 12:20:03	1	Hi!\r\nI have extensive experience in internal and external communications, as well as organizing online and offline events (icluding IT meetups).\r\nLooking forward for your feedback!
464	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Mazurok	Dmitrii	+79117489329	tmazurok@gmail.com	2832600	2022-11-17 14:52:48	2022-11-17 15:00:30	1	\N
465	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Ryaboshlyk	Egor	9773127919	egor.ryaboshlyk@gmail.com	2931569	2022-11-17 19:21:09	2022-11-17 19:30:03	1	Dear sir or Madam,\r\nI ask you to consider my candidacy for the position of financial analyst and planner in your Finance department. I think that my fairly rich experience in the field of managing a payment position, an investment portfolio management, as well as accounting and building ALM Model for all the company's assets, combined with a young age, can serve to the benefit of your company and give me the opportunity to become a valuable member of it.\r\nFor my part, I can only note that I really now have a great desire to grow and develop in such a modern and rapidly developing company as Quadcode. I am sure that together we will be able to achieve incredible results.\r\n\r\nRespectfully,\r\nEgor Ryaboshlyk
466	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Ramírez	Camilo	934914489	camilo.ramirezmolina@gmail.com	2953733	2022-11-17 19:48:34	2022-11-17 19:50:10	1	HI, \r\nMy name is Camilo Ramírez, media designer from Chile\r\nI'm really interested in the position that your company has to offer, and I'm confident that I've the necessary skills for it.\r\n\r\nPlease check my portafolo at:\r\n\r\nhttps://camiloramirezmolin.wixsite.com/portfolio\r\n\r\nOr directly my reel at: \r\n\r\nhttps://vimeo.com/772153684\r\n\r\nAnd this  brief bio in english (I had all my info only in spanish by the moment) \r\n\r\n///\r\nCamilo is a media designer and a performer.\r\n\r\nComing from a background on acting he has been part of two experimental companies: La Doña (site specific experiences) and Circo Virtual (Circus & Mapping). There Camilo became a director and a media designer for different kinds of performative experiences, where he has had the opportunity to collaborate with incredible artists in his way, such as Guillermo Calderon, Paly Garcia and Raul Ryuz.\r\n\r\nAlso he had been technical producer for “Santiago a mil” foundation, an ONG that kept alive one of the biggest theatral festivals of south america. From there Camilo has been able to work in different festivals around the country as a content creator & media designer, such as Festival de Viña y Festival del Huaso de Olmué.\r\n\r\nCamilo is BA in acting (Universidad Católica de Chile) and a MFA applicant in Interactive Media for Performance at Calarts. Due to the pandemic, he has frozen his studies.\r\n\r\nIn this point of research he had discovered how the mix between analog tech and hi-fi solutions are capable of creating illusions that invite you to some awareness over the tools of the present.\r\n\r\nHis Primary Skill is motion graphic,nevertheless he has a good battery of software and technical skills that make him proud.\r\n///\r\n\r\n\r\nAny question don't hesitate to e-mail me at camilo.ramirezmolina@gmail.com\r\n\r\nBest.
467	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Schiza	Elena	99523234	elena.schiza@yahoo.com	2913219	2022-11-18 06:49:37	2022-11-18 06:50:03	1	\N
475	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Stylianou	Christa	99329953	christasss_95@hotmail.com	2953735	2022-11-21 11:55:32	2022-11-21 12:00:41	1	\N
549	10.236.15.23	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Evstigneev	Vladislav	505855821	vladislav.evst.94@gmail.com	2832600	2022-12-03 07:18:54	2022-12-03 07:20:03	1	\N
554	10.236.15.23	Mozilla/5.0 (Linux; Android 11; TFY-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Shevchenko	Denis	+79194240762	denyaros@gmail.com	3159451	2022-12-05 18:23:13	2022-12-05 18:30:05	1	\N
468	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 YaBrowser/22.11.0.2419 Yowser/2.5 Safari/537.36	Pcheliakova	Iana	95528893	ms.pchelyakova@gmail.com	2931569	2022-11-18 07:45:56	2022-11-18 07:50:05	1	Добрый день!\r\nМеня заинтересовали ваши вакансии Finance officer и Специалист по финансовому планированию и анализу, так как мне интересно содержание работы и понятны обязанности, а также я всегда хотела поработать в сфере финансовых технологий, как одного из передовых и актуальных направлений развития за последние несколько лет.\r\nНа данный момент я уже нахожусь на Кипре (Лимассол).\r\nДля данной позиции у меня есть хороший опыт работы в сфере расчетов, проведению сверок, контролю оплат, составлению финансовых и аналитических отчетов, включая CF, а также финансовое моделирование.\r\n\r\nБолее подробная информация представлена в резюме. Буду рада, если Вы его просмотрите:)\r\n\r\nС наилучшими пожеланиями,\r\nПчелякова Яна
469	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 OPR/92.0.0.0	Sharov	Alexander	9060341454	alexsharovdesign@gmail.com	2953733	2022-11-18 09:51:53	2022-11-18 10:00:35	1	Dear HR Manager,\r\n\r\nMy name is Alexander and I'm writing to you in response to your position for motion designer. I came into the industry of motion design 5 years ago and since that time succesfully been working for different companies, mainly from fintech field.  Therefore my experience is perfectly aprropriate for your requirements. \r\n\r\nI have a deep knowledge of Adobe CS, AE, Element 3D, Premier, Cinema 4D (Redshift/Octane), Blender, Figma. I'm also have strong self-organized and communication skills and used to work with tightly deadlines. At this moment I work as a motion designer in MTS Bank, which is one of the famous and biggest in Russia. \r\n\r\nI believe that my experience could bring fresh artisitic view for your design and marketing teams, help them to create a lot of eye-catched animated creatives. The only problem that I have in my current location in Russia, but I ready to relocate in Cyprus if that necessary. By the way, I used to live in Spain for some time and speaking in Spanish as well as in English.\r\n\r\nThank you for sparing time reading my letter and portfolio, and I hope that current political situation will not be a barrier. \r\n\r\nPlease, check my profile at Behance\r\nhttps://www.behance.net/alexsharovdesign\r\n\r\nand showreel\r\nhttps://vimeo.com/751284349\r\n\r\nKind regards,\r\nAlex
470	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 YaBrowser/22.11.0.2424 Yowser/2.5 Safari/537.36	Nadvidova	Angira	+79773032730	angira.zergetaeva@gmail.com	2931569	2022-11-18 10:28:04	2022-11-18 10:30:03	1	Dear Hiring manager,\r\n\r\nAs a specialist with 5 years of experience in analytical related roles, I apply for the position of Financial Planning & Analysis Specialist offering my skills and expertise.\r\n\r\nDuring my career, I was responsible for providing analytical support for different business units. I conducted market and sales analyses, created reports and dashboards, implemented and improved business processes. I am always passionate about accuracy in numbers and processes.\r\n\r\nNow I am looking for the position in fast-growing IT company because I want to dive into IT world and to progress professionally and personally. I am a hard-working person and a quick learner.\r\n\r\nThank you for your time. I would be glad to be considered for this position. If you have any questions, you can contact me by email or phone.\r\n\r\nBest regards,\r\nAngira Nadvidova
471	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Stylianou	Christa	99329953	christasss_95@hotmail.com	2879130	2022-11-18 10:57:25	2022-11-18 11:00:42	1	\N
472	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1	Churkin	Oleg	79637270970	Churkin.itjs@mail.ru	2860249	2022-11-18 11:06:29	2022-11-18 11:10:03	1	\N
473	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Lea	Fridtjov	46267794	fridtjov.lea@gmail.com	2953220	2022-11-18 16:39:18	2022-11-18 16:40:04	1	Dear Hiring Team,\r\n\r\nI'm excited to apply for the position of SMM Specialist at your company. \r\n\r\nI'm an enthusiastic and eager person with extensive experience with social media marketing and community building across social platforms (YouTube, Instagram, TikTok).\r\n\r\nFurthermore, I love learning about and exploring new technological breakthroughs, and the FinTech industry has a mission I wholeheartedly believe in.\r\n\r\nI, therefore, believe I would be a valuable addition to your team and I am certain I can draw on my experience and skills to help Quadcode drive more brand awareness (and conversion if needed) through social media.\r\n\r\nI'm looking forward to hearing back from you.\r\n\r\nBest regards,\r\n\r\nFridtjov Lea
474	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0	Lesnyak	Dmitriy	9262768524	dmitriy.lesnyak@gmail.com	2931569	2022-11-19 07:52:45	2022-11-19 08:00:27	1	Hi! I plan to relocate to Cyprus in the near future, in this regard, I am looking for a job in the financial sector. Now I work as a chief financial specialist in a large Russian holding company. Work experience of more than 10 years. If you are interested in my resume, I am ready to tell you more about myself.\r\n\r\nKind regards,\r\nDmitriy
508	10.236.15.23	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Instagram 225.0.0.9.115 (iPhone14,5; iOS 16_1_1; en_AM; en-AM; scale=3.00; 1170x2532; 355286437)	Dermoyan	Mariam	+37495762457	mdermoyan@yahoo.com	3266441	2022-11-25 21:51:17	2022-11-25 22:00:30	1	\N
477	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Algina	Elena	9637554952	ebrykina86@yandex.ru	2913219	2022-11-21 12:01:15	2022-11-21 12:10:10	1	Hi Quadcode team, \r\nMy name is Elena, and I am interested in the vacancy People Specialist posted on your webpage.\r\nI have been working in HR for over 10 years (the last 2 years in IT).\r\nDuring this time, in various positions in different companies, I managed to find and hire more than 500 employees, trained more than 350 managers, and implemented about 10 HR projects (building a grading system and an onboarding system, assessment and formation pool of successors, leaders’ development programs) and more than 20 process improvement initiatives.\r\nThis year I have completed 4 educational programs, and now I am a certified coach and facilitator, and also gained experience as a mentor. I know how I can apply the acquired knowledge to realize my potential and achieve the company’s goals.\r\nI really want to become a part of the company with  a high competitive products, dynamic environment and client and customer centric  approach.\r\nThank you for your interest in my candidacy and I will be happy to provide you with more details about my experience during the interview or conversation on the phone.\r\nKind regards,  Elena
479	10.236.15.14	Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Zherebtsov	Nikolai	9105657882	nik.dev.info@gmail.com	3250194	2022-11-21 12:47:08	2022-11-21 12:50:03	1	Hello, I'm interested in this vacancy and other your Java developer vacancies in other locations (not only in the UK, it can be Armenia or other countries).
476	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Algina	Elena	9637554952	ebrykina86@yandex.ru	2913219	2022-11-21 12:00:40	2022-11-21 12:10:06	1	Hi Quadcode team, \r\nMy name is Elena, and I am interested in the vacancy People Specialist posted on your webpage.\r\nI have been working in HR for over 10 years (the last 2 years in IT).\r\nDuring this time, in various positions in different companies, I managed to find and hire more than 500 employees, trained more than 350 managers, and implemented about 10 HR projects (building a grading system and an onboarding system, assessment and formation pool of successors, leaders’ development programs) and more than 20 process improvement initiatives.\r\nThis year I have completed 4 educational programs, and now I am a certified coach and facilitator, and also gained experience as a mentor. I know how I can apply the acquired knowledge to realize my potential and achieve the company’s goals.\r\nI really want to become a part of the company with  a high competitive products, dynamic environment and client and customer centric  approach.\r\nThank you for your interest in my candidacy and I will be happy to provide you with more details about my experience during the interview or conversation on the phone.\r\nKind regards,  Elena
478	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Bogdanov	Sergei	+79110866495	bogdanov_79@mail.ru	2931569	2022-11-21 12:34:00	2022-11-21 12:40:03	1	I will be glad to develop in a team of professionals, participate in your company's projects and become part of the team.
480	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Romanov	Maksim	643948394	makcu@inbox.ru	2953735	2022-11-21 14:08:25	2022-11-21 14:10:12	1	\N
481	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Matyavina	Marianna	99563033	mariannam06@gmail.com	3266441	2022-11-21 16:19:08	2022-11-21 16:20:03	1	Dear Sir/Madame,\r\n\r\nI would like to apply for the treasury vacancy, I've been engaged with treasury operations in Cyprus for the last 3 years. I guess my experience will be of help to the company's set up in Cyprus.\r\n\r\nKind regards,\r\nMarianna
482	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Kuchina	Anastasia	99630977	nastya.two.braids@gmail.com	2931569	2022-11-21 16:44:17	2022-11-21 16:50:02	1	Dear HR,\r\n\r\nMy name is Anastasia Kuchina. I`m really interested in this vacancy and would be glad if you consider my candidature.\r\nLooking forward to your response.\r\n\r\nThank you!
483	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Vikhliaev	Ilia	+35795616758	duketmb@gmail.com	3159451	2022-11-21 20:24:34	2022-11-21 20:30:03	1	\N
484	10.236.15.100	Mozilla/5.0 (Linux; Android 12; M2007J3SY) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Pozdniakov	Evgenii	+38269408457	eugenwm@gmail.com	2920282	2022-11-22 07:05:47	2022-11-22 07:10:03	1	Участие во множестве компаний в качестве adviser (project, operation).\r\nМаксимальная самостоятельность и умение находить решение бизнес задачи любой ценой.\r\nБизнес-мышление, стартаперский опыт.\r\nУмение говорить на одном языке с бизнесом и самыми разными клиентами.\r\nСильные Hard-skills администрирования инфраструктуры - Unix, облака, security.\r\nАйтишная “смекалка” - blackbox analysis, “исследовательский” склад ума.\r\nЛюбовь к играм и широкий кругозор.\r\nЗнание криптоиндустрии и большое желание сделать ее частью жизни на ближайшие несколько лет.\r\n\r\nHard skills\r\n\r\n10+ years of hands-on software development\r\nProven track record of architecting and delivering complex technical projects to solve problems at scale\r\nKnowledge of latest front-end technologies (JavaScript, HTML 5) and server-side (python, php, go. node.js, TypeScript)\r\nExperience with software build and release process via a common CI/CD setup like Jenkins or Gitlab\r\nKnowledge of best CI / CD Practices\r\nExperience with Cloud Technologies such as Azure and AWS and relevant compliance (security, GDPR)\r\nExperience designing and operating solutions within microservice-based architecture\r\nExperience designing and delivering secure fail-safe systems and architecture\r\nExpert in API development, integration, cloud and server-side technologies, identity and authentication solutions\r\n\r\n- Kubernetes, Helm, Docker, Istio\r\n- Prometheus/Grafana/Alertmanager, Dynatrace\r\n- ELK Opendistro\r\n- Ansible/Terraform\r\n- Python/Bash\r\n- Github/Jenkins/Artifactory/Xray/SonarQube/Hashicorp Vault\r\n- Jira/Confluence\r\n- VMWare/Openstack/Yandex Cloud\r\n- Nginx/Nginx+/Openresty\r\n- IaC.\r\n\r\n\r\nSoft skills\r\n\r\n10+ years leading highly technical and high performing engineering teams\r\n5+ years in international client-facing role\r\nClient is #1 approach\r\nA passion for recruiting, developing, coaching, mentoring and retaining a world-class engineering team\r\nExperience managing managers\r\nLean thinking mindset, comfortable with Agile planning and estimation rituals\r\nFlexible and able to thrive in a fast paced, innovative young company\r\nEnglish – written (С1) and spoken (В2)\r\nStrong & Effective communication skills\r\nTeam player\r\nAble to work under stress
485	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Dashevski	Yana	99076772	dashevski@hotmail.co.uk	3266441	2022-11-22 08:35:50	2022-11-22 08:40:03	1	Dear HR,\r\n\r\nI am currently in Israel, for a direct call, please contact me on +972547458874, however WhatsApp/Telegram in connected to Cypriot number.\r\n\r\nThank you.\r\n\r\nKind Regards,\r\nYana.
486	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Gryazev	Oleg	97524377	oleg.gryazev@gmail.com	2913219	2022-11-22 09:25:27	2022-11-22 09:30:03	1	My name is Oleg and I am looking for HR career opportunities in Cyprus. I have background as financial controller and analytical reporting manager in HR. With more than five years of experience in Human Resources, I am motivated to join an organization where I can contribute my unique skills and grow as a Human Resources professional.\r\nPlease find my CV attached.
487	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15	Rogachev	Nikolai	598302118	niko-rogachev@yandex.ru	2931569	2022-11-22 10:01:26	2022-11-22 11:00:36	1	\N
488	10.236.15.14	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Ryaboshlyk	Egor	9773127919	egor.ryaboshlyk@gmail.com	3266441	2022-11-22 18:27:15	2022-11-22 18:30:03	1	Dear Sir or Madam,\r\n\r\nI ask you to consider my candidacy for the position of Finance officer in your company. At the moment I am really interested to continue my professional development in a modern and growing company like Quadcode. In my opinion, working with you will allow me to gain new experience and the opportunity to look at an example of a dynamically developing structure filled with ambitious and hardworking people.\r\nDuring my professional career, I managed to gain good experience in maintaining a portfolio of company assets, controlling the payment position in order to correctly correlate them with outgoing obligations. Moreover, I have the necessary knowledge on the competent distribution of company funds in order to receive additional income in the future, which, together with my relevant education, can become a set of professional qualities that are very valuable for your company.\r\nIt is also worth noting that the relocation opportunity you are now providing is also an incredible incentive for me to show even more diligence in a new job and let you make sure that the decision you made is correct.\r\nLooking forward to your feedback.\r\n\r\nBest wishes,\r\nEgor Ryaboshlyk
489	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	PAPAKYRIACOU	KYRIACOS	99783916	papakyriacou.kyriacos@gmail.com	2931569	2022-11-22 21:52:21	2022-11-22 22:00:32	1	\N
510	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0	Okonkwo	Ikenna	7032616044	ikennaokonkwo44@gmail.com	2953735	2022-11-26 07:18:16	2022-11-26 07:20:03	1	\N
490	10.236.15.14	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.2 Safari/605.1.15	Fedorova	Irina	96705670	formissirina@gmail.com	2913219	2022-11-23 00:43:17	2022-11-23 00:50:12	1	Dear Quadcode Team, \r\n\r\nI've been following your company for last months and I would love to become a part of your team. \r\nLet me express my interest in the position of People Spesialist. \r\n\r\nI have experience as an administrative spesialist, event manager and partnership manager which means I have a clear understanding of how to build comminication with people externally and internally the company. I have a vision how to realise social events (projects) aimed at development of corporate culture.\r\n\r\nPersonally, I lead to an active lifestyle, so I am always up to date with sports, art and musical events and festivals. I try to foresee and plan my routine, weekend and life generally in advance, that's why I always have an prepared plan to do and even plan B just in case :) \r\nI am self-organized and independent, it helps me a lot in a professional field.\r\n\r\nI would like to realize my potential within your company and be really helpful to the employees.\r\n\r\n\r\nWish you a productive day!\r\n\r\nThank you,\r\nIrina
491	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Borovaya	Elena	+9720535905521	ebormik@gmail.com	3248128	2022-11-23 05:17:53	2022-11-23 05:20:05	1	Hi! Content is my passion. Writing is something i breathe with. Hope you’ll find my CV interesting and we’ll get a chance to meet. Have a great day!
492	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.1 Safari/605.1.15	Arzamastseva	Evgeniia	17635157652	jarzamasceva@gmail.com	2953735	2022-11-23 09:52:19	2022-11-23 10:00:40	1	Hi! My name is Evgeniia, I am a media employee with extensive experience in video productions. As a producer I have worked with different kinds of metrics and I constantly try to develop my knowledge in this direction. In April 2022 I left Russia and am now in Germany. I am ready to relocate if necessary. \r\nIf needed you can find me in WhatsApp or Telegram at +79688654252
493	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Komkov	Viacheslav	97701062	vchslv.kmkv@gmail.com	2953735	2022-11-23 10:44:58	2022-11-23 10:50:04	1	Hello!\r\n \r\nMy name is Viacheslav Komkov, I live in Limassol. \r\nI'm applying for the position of Marketing Creative Producer. My strengths are directing videos, screenwriting, and producing.\r\nSince 2003 I have been working as a screenwriter and director, most of the time I have been making documentaries, reports, corporate films, advertising integrations, and entertainment shows.\r\nFrom 2016 to 2021, I collaborated with Krasny Kvadrat, one of the biggest video production studios in Russia. I’ve been working as a post-production director and supervisor on entertainment shows. I had to solve not only creative tasks, but also manage a team of more than ten people: managed and distributed tasks, followed up their implementation in the conditions of the strict deadlines with broadcasts every week.\r\nI am currently collaborating on a project basis with FxPro.\r\nI know how to create content: from the idea to final product delivery. I know how to write scripts, work with cameramen, actors, and lighting technicians, how to set tasks for editors and motion designers - we speak the same language with them. I know how to communicate with stakeholders of the projects, negotiate the processes and deliverables.\r\nI had a chance to review your YouTube channel and I like the fact  that you developed a very beneficial and distinct tone of voice. I already have some ideas on how to develop this channel and to help your HR brand grow.\r\nIf you're looking for someone to oversee your videos for B2B referrals, I would be happy to take over that as well. \r\nFeel free to reach out to me for the interview and I am ready to answer any questions you may have. \r\n \r\nVery looking forward to working with you!\r\nViacheslav
544	10.236.15.100	Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:107.0) Gecko/20100101 Firefox/107.0	Nurgaliyev	Sabyr	7758712440	s.nurgaliyev@aues.kz	2860249	2022-12-02 03:41:38	2022-12-02 03:50:03	1	Technical stack:\r\nReact, Typescript, Ant Design.\r\n\r\nExperience with Redux, WebSocket, Electron. During the work, I closed about 5 features of varying complexity. Faced various problems at the level of architecture and the React library. For the decision I read technical documentation, articles and reports. I am currently working on two projects. I love my job and dig under the hood, how my technologies work
550	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15	Smirnova	Aleksandra	9055007153	a.smirnova.msk@gmail.com	2953735	2022-12-03 09:10:26	2022-12-03 09:20:02	1	Dear Hiring Manager,\r\n\r\nI would like to express my interests in applying for a Marketing Creative Producer position. \r\n\r\nWorking with Social Media, I have been always diving in Preformance Marketing. The creative photo and video production is my forte. You can watch my latest project here: https://drive.google.com/drive/folders/1Bx0JP73lUnQgezgeiaEG0nzE8FHbWlPS?usp=sharing \r\n\r\nI would be honored to join the Quadcode team because I always get an inspiration from IT and development area.\r\n\r\nBest Regards,\r\nAleksandra Smirnova.
556	10.236.15.23	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1	Panteleev	Artem	+995555004391	panteleevworkplace@gmail.com	2852513	2022-12-06 07:37:42	2022-12-06 07:40:10	1	Hello! My name is Artem.\r\nI’m working at RBC Media Group right now as Web Designer. I usually work with external clients such as Asus or HONOR and create individual website pages (special projects) and advertising for them. Also I support RBC digital products. \r\nI graduated from the HSE University in Moscow with Master's degree in design, Art direction program. My master specialization is brand identity.\r\nI am currently in Tbilisi. I would like to join your team.\r\nLink to my portfolio: https://www.behance.net/panteleevw21d9
555	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	Tyrtychko	Roman	7775185885	tyrtychko.r404man@gmail.com	2852513	2022-12-06 07:35:07	2022-12-06 07:40:12	1	\N
494	10.236.15.14	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/238.1.487893381 Mobile/15E148 Safari/604.1	Naumenko	Nataliya	+79513911901	natasha.naumenko0702@gmail.com	2879130	2022-11-23 22:01:28	2022-11-23 22:10:03	1	Hi, I’m a digital marketing project manager.\r\nFor the past few years, my focus has been on customer service. But my ability to develop hard skills is no less than soft skills. Thanks to this, today I manage projects in the direction of media (programmatic platforms and ad networks) and performance (search engine promotion and targeting) advertising campaigns. My key managerial quality is a building partnerships with clients and KPI achievements. In making strategic decisions, I rely on a data- driven approach.\r\nToday I am looking for a job in Cyprus. My husband is a design specialist in Quadcode. I have an experience in organizing events and festivals, as well as understanding of IT products. I will be glad to hear from you.
495	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 YaBrowser/22.11.0.2419 Yowser/2.5 Safari/537.36	Safiulina	Ekaterina	629384620	kate.safiulina@yandex.ru	2913219	2022-11-24 11:36:43	2022-11-24 11:40:03	1	Hello, \r\n\r\nDuring the last year I was creating and managing various HR-processes at EPAM Russia: onboarding and adaptation, documents workflow, relocation, analytics, etc. I consider myself as an experienced Onboarding and Adaptation Specialist with a great background in Administrative Management. \r\n\r\nI'm looking forward to hearing from you soon,\r\nKate Safiulina
496	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Dorogova	Maria	9219748200	mashador@yahoo.com	2879130	2022-11-24 13:16:09	2022-11-24 13:20:10	1	Good afternoon. My name is Maria, from St. Petersburg, in December I'm moving to Serbia to start. Then ready to relocate.\r\n\r\nI know you get a huge amount of feedback.\r\nLet me briefly go through your requirements.\r\n\r\n+15 years experience in organizing professional or entertaining events for IT professionals;\r\n+15 years experience working in HR brand or in PR / organization of events of at least 2 years;\r\n+Easy - readiness to organize events without the involvement of agencies;\r\n+English at least B2.\r\n\r\nI am a professional in the event market. Even if I don’t know something, I can easily find the right people/platforms. Fast learner.\r\n\r\nHope to hear from your.\r\nBest regards, Maria
497	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15	Kalenov	Roman	571195368	roman.kalenov@gmail.com	2766546	2022-11-24 13:21:28	2022-11-24 13:30:10	1	Summary:\r\n🌏Georgia🇬🇪\r\n📈Experience in HR: 7+ years (enterprise in-house and external consulting & coaching)\r\n💪Core expertise: Talent Acquisition, Succession Planning, Change Management\r\n🧠Strong competencies: Analysis, Agility, Cooperation, Empathy.\r\n🗣English: B2 🗣Russian: Native\r\n🧑‍💻Format: remote/office, full-time, B2B or B2C
498	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Themistokleous	Diana	99882620	dianathem30@hotmail.com	3266441	2022-11-24 14:23:44	2022-11-24 14:30:03	1	\N
499	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1	Kouali	Georgia	99020185	g_kouali@hotmail.com	2931569	2022-11-24 14:41:23	2022-11-24 14:50:03	1	\N
500	10.236.15.23	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Avchinnikova	Kate	292561960	katrinaavch@gmail.com	2953735	2022-11-25 06:21:35	2022-11-25 06:30:03	1	Hi Quadcode Team! I'm Kate, a marketing leader with 4+ years of experience in marketing strategy (including the creation of creatives for paid ads channels), product and GTM strategies, website/app design, and analytics. I am writing to apply for the Creative Marketing Producer position at Quadcode.\r\n\r\nI believe I would be a good fit for Quadcode because of my previous work experience, extensive experience in product management and marketing, strategic thinking, and data-focused mindset. I appreciate the opportunity to be considered for this position.\r\n\r\nThanks, \r\nKate
501	10.236.15.23	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Melo	Adriano	913743758	adrianomelofilms@gmail.com	2913219	2022-11-25 08:51:55	2022-11-25 09:00:39	1	Hi. I've used Quadcode before as I worked for 2 trading companies as IQ Option and Exnova. I have a huge interest and experience working with HR. That being said, I believe I'm a great fit for this position. Follows my resumé attached. Any questions you might have, please contact me. Thank you for considering me for this position.
502	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Soteriou	Maria	96598895	itsmariasot@icloud.com	3266992	2022-11-25 14:33:55	2022-11-25 14:40:04	1	\N
503	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Soteriou	Maria	96598895	itsmariasot@icloud.com	3266441	2022-11-25 14:36:09	2022-11-25 14:40:06	1	\N
504	10.236.15.23	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/20A362 [FBAN/FBIOS;FBDV/iPhone14,5;FBMD/iPhone;FBSN/iOS;FBSV/16.0;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]	Stepanyan	Armine	+37477202915	arminest1993@gmail.com	3045877	2022-11-25 15:48:43	2022-11-25 15:50:03	1	Dear Sir/Madam, good day\r\nMy name is Armine Stepanyan and I would like to apply for a internal communication specialist position at your company.\r\nPlease see my CV attached.\r\nLooking forward hearing from you soon.
505	10.236.15.100	Mozilla/5.0 (Linux; Android 11; SAMSUNG SM-A505FN) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/19.0 Chrome/102.0.5005.125 Mobile Safari/537.36	Christodoulou	Constantina	99486737	constantina301@hotmail.com	3266441	2022-11-25 16:15:52	2022-11-25 16:20:03	1	Dear Hiring Manager, thank you for taking the time to go through my resume.  I believe that my 15-year experience in the banking sector along with my studies make me a suitable candidate for this position and for your company.
506	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1	CHARALAMPOUS KUNYTSKA	VALERIYA	+35795129186	valeriyacharalampous@gmail.com	3266441	2022-11-25 16:50:48	2022-11-25 17:00:29	1	\N
507	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Michael	Anna-Maria	99780223	annamariamichael@live.com	3045877	2022-11-25 18:29:36	2022-11-25 18:30:03	1	I am very excited to submit my interest in the Internal Communications Specialist role because I am confident that I would be a valuable addition to the Quadcode team.  I have many years of diverse experience spanning multiple industries and disciplines, which I am always eager to share with in-house teams. As a multilingual communicator with a vibrant PR personality, particularly due to my native-level proficiency in English, I have always been involved in Communications, Public Relations, Marketing, and Business Development, as well as Coaching/Training, and editing/proofreading/reviewing content. \r\nI have a knack for research, a passion for innovation and change, and excellent promoting and reporting skills. My LinkedIn profile (https://www.linkedin.com/in/annamariamichael) includes job descriptions, recommendation letters, and a Personality Profile report, which lists my work preferences and strengths.  The Report indicates that my key role is “Creator/Innovator” and I am also an “Explorer/Promoter” and “Reporter/Adviser”.  \r\n\r\nI am currently working at RoboMarkets as their English Content Reviewer, and with Quill Content’s (now “Jellyfish”) teams, as a freelance Editor on a variety of projects for major clients in the UK and France. Before that, during my tenure as In-house Editor at Canalys in the UK, I provided editing services, remotely supporting the international team of analysts, as well as the Marketing and Events teams in Reading (UK), Singapore, Shanghai, and Palo Alto (US). This helped me gain further experience in working across time zones and communicating in multi-site, virtual, and cross-cultural contexts both personally and through online resources. I also learnt to grasp multiple unrelated texts, most of which were written by foreign analysts.\r\n\r\nMy role responsibilities at Canalys included proofreading presentations and reports written by analysts from the UK, US, and Asia, as well as a range of content such as indexes, copy for the website, press releases, and mailings. I reviewed all content for writing style, instructional flow, consistency, and conformance with the house style guide, which I enforced and updated. I corrected errors in spelling, punctuation, and grammar, while also providing detailed feedback to the content writers. I also conducted quality assurance and strategy support on SEO projects. \r\n\r\nAt Windsor Brokers, I was heading the Training & Development Department, which I personally established from scratch. I also acted as Advisor to the CEO in matters relating to Organizational Improvement, Leadership and Staff Management and Development, Change Management, and Internal Communications. I also conducted research and managed numerous projects. \r\n\r\nIn the Summary section of my Resume (last page), I have listed arguments to help convince you that I am the perfect fit for the job. I am confident that my ambition, pride in my work and deliverable, dedication, and enthusiasm combined with the characteristics of my personality and skill set would enable me to quickly adapt to your company culture and become a valuable contributor to the Quadcode team on its journey to success. \r\n\r\nTrusting that you will give my application favourable consideration, I look forward to hearing from you.  \r\n\r\nYours faithfully,\r\n\r\nAnna-Maria Michael
509	10.236.15.23	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Instagram 225.0.0.9.115 (iPhone14,5; iOS 16_1_1; en_AM; en-AM; scale=3.00; 1170x2532; 355286437)	Dermoyan	Mariam	+37495762457	mdermoyan@yahoo.com	2931569	2022-11-25 21:52:33	2022-11-25 22:00:31	1	\N
551	10.236.15.23	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Titov	Artem	598950922	titov.av23@gmail.com	2832600	2022-12-04 05:26:55	2022-12-04 05:30:03	1	\N
511	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Instagram 261.0.0.18.106 (iPhone12,1; iOS 16_0; en_CY; en-CY; scale=2.00; 828x1792; 418330231)	Agathangelou	Savvas	+35799038634	agath.savvas@gmail.com	2953735	2022-11-26 11:57:22	2022-11-26 12:00:28	1	Dear Recruiter,\r\nI came across this vacancy very unexpectedly but it seems that is entirely me and how I want to advance my career. Please find my CV in this application. I believe that my niche in the marketing creative scene is the tools and collabs I created with neuromarketing approaches. I have also being invited to a conference presented the way I see neuromarketing and how to attract and convert potential clients through the creative marketing approach. \r\nFeel free to reach out for further discussion and connect with me via Linkedin to see more closely my background. \r\nThanks a lot,\r\nSavvas Agathangelou
512	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Shokkou	Chryso	99315916	chryso.shokkou@outlook.com	2913219	2022-11-26 14:12:32	2022-11-26 14:20:03	1	Dear Sir, Madam,\r\n\r\nIt is with great pleasure I apply for the job position of People Specialist at Quadcode, in Limassol.\r\n\r\nHaving read the vacancy advertisement, I firmly believe my experience along with my professional background make me an ideal candidate that could be of vital significance for the smooth running of the company.\r\n\r\nMy education would also allow me to perform well, making the most of my knowledge and competences.\r\n\r\nHaving said this, kindly note that I am keen to follow any training course the Company provides in order to successfully carry out my duties.\r\n\r\nBy putting into effect my knowledge and skills, I would make a valuable addition to the Company and be more than happy and honoured to join Quadcode and contribute to the achievement of its goals.\r\n\r\nEager to learn more about the administrative and the HR needs of the Company, I would welcome the opportunity to meet with you and further discuss about the job position.\r\n\r\nLooking forward to hearing from you soon.\r\n\r\nThank you,\r\n\r\nYours sincerely,\r\n\r\n\r\nChryso Shokkou
513	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/238.1.487893381 Mobile/15E148 Safari/604.1	Goard	Marioara	97636068	marigoard@yahoo.com	2931569	2022-11-26 18:25:08	2022-11-26 18:30:03	1	Hi,\r\nPlease find attached my CV in which you can see that I have more than 9 years experience in the accounting and financial sector. \r\nI am currently interested in a part time position 20-25 hours per week.\r\nPlease keep my CV in your records in case such opening will come up.\r\nThank you, Mari
514	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Sagat	Aidos	7056767667	sagataydos@gmail.com	2931569	2022-11-27 17:45:39	2022-11-27 17:50:02	1	\N
515	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Sagat	Aidos	7056767667	sagataydos@gmail.com	3045877	2022-11-27 17:46:46	2022-11-27 17:50:03	1	\N
516	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Sagat	Aidos	7056767667	sagataydos@gmail.com	3266441	2022-11-27 17:48:00	2022-11-27 17:50:04	1	\N
517	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0	maheta	gaurang	9265307906	mahetagaurang22@gmail.com	3159451	2022-11-28 05:07:49	2022-11-28 05:10:03	1	reported more than 15000+ bugs \r\nlisted on top 100 hacker at hackproof
518	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Msryan	Tatevik	041653525	tatevikmsryan@yahoo.com	2931569	2022-11-28 06:55:27	2022-11-28 07:00:42	1	\N
519	10.236.15.100	Mozilla/5.0 (Linux; arm_64; Android 10; JSN-L21) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 YaBrowser/22.11.2.78.00 SA/3 Mobile Safari/537.36	Punko	Alex	+79033202494	aspun@ya.ru	2953735	2022-11-28 13:48:32	2022-11-28 13:50:02	1	\N
520	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1	Badeji Adeshewa	Rita	05338556595	ritashewa4@gmail.com	3266992	2022-11-28 15:29:55	2022-11-28 15:30:03	1	I am applying for the position of junior accountant. I have good leadership skill and open to acquire new knowledge
521	10.236.15.23	Mozilla/5.0 (iPhone; CPU iPhone OS 14_7_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Mobile/15E148 Safari/604.1	Badeji Adeshewa	Rita	05338556595	ritashewa4@gmail.com	3045877	2022-11-28 15:34:04	2022-11-28 15:40:03	1	I am fluent in English and have a great understanding of Microsoft word. I have excellent leadership skill and open to acquire new knowledge
522	10.236.15.23	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/87.0.4280.163 Mobile/15E148 Safari/604.1	Grigoryan	Mari	+3744188880	marie.gregori89@gmail.com	2953735	2022-11-28 19:25:04	2022-11-28 19:30:10	1	\N
523	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Nanyan	David	77470896	nanyandave@gmail.com	2860249	2022-11-28 19:25:24	2022-11-28 19:30:11	1	Dear Hiring Manager,\r\n\r\nMy name is David and I'm applying for a Middle Front-end Developer (React) position at Quadcode.\r\n\r\nAs a Software Engineer with 3+ years of experience in companies like Yandex (top search engine company in Russia) and Nugbase (blockchain technology company specializing in Ethereum and Polygon), I apply with enthusiasm for this opportunity.\r\n\r\nCurrently I’m holding a Software Engineer role. I work with a cross-functional team. My role involves implementing software and product features, determining developer requirements, estimating project time and costs, and defining product roadmaps.\r\n\r\nIn addition to my current job, I have also worked as a Frontend Engineer at Yandex. My responsibilities included both maintenance and development of existing products, as well as consulting, assistance and direct launches of new projects.\r\n\r\nMy skills and experience will be useful for Quadcode if you need to solve the following tasks:\r\n\r\n- to design and deliver a product’s features both on frontend and backend. At Nugbase I’ve worked on the design of Dapperdinos and the implementation of the design into the code.\r\nBy helping to improve the design of the project we were able to make UX more smooth and by releasing product features (implemented using React, Webpack on frontend and Go, Google Cloud on backend) like filtering, saving to user selected nft’s and possibility of redeeming tokens, the company’s number of users’ registrations in Q2 2022 increased.\r\n\r\n- to build product workflow and infrastructure for optimizing work processes. At Yandex the tech team took the development process and the established workflow seriously. Therefore, at Nugbase, using the best practices of Yandex and other big tech companies, I began to establish a workflow with the help of my colleagues. I’ve added E2E tests, configured linting, added pre-commit checks and a basic github CI setup, which has already allowed us to speed up the development process and make it more reliable from bugs.\r\n\r\n- to ensure well planned and prioritized product/feature development processes. At Yandex, I had the pleasure of taking on the responsibility of launching several projects.\r\nIn the “techno” project - the first Yandex magazine about technologies published jointly with the popular science publication N+1, despite a large number of interested people and management, I helped the publisher develop a plan for each stage of development and a detailed feature list for launch. Which led to the successful launch and further life of the project.\r\n\r\nI believe that the above achievements and experience would make me a valuable addition to your company. If there is any more information you would like me to provide, please do not hesitate to contact me. I am eager to become a part of your success story.\r\n\r\nYou can contact me via email\r\nKind regards, David.
524	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Chrysostomou	Giorgos	99170394	giorgoschrys7@gmail.com	2931569	2022-11-28 21:42:12	2022-11-28 21:50:03	1	\N
525	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 Instagram 261.0.0.18.106 (iPhone12,1; iOS 16_1_1; ru_MY; ru-MY; scale=2.00; 828x1792; 418330231)	Dzhumabaev	Ruslan	+996556619000	dzhumabaev1993@mail.ru	3266441	2022-11-29 08:32:18	2022-11-29 09:03:24	1	\N
552	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.0 Mobile/15E148 Safari/604.1	Zakutynska	Vladyslava	+35796574357	vladyshka.098@gmail.com	3266441	2022-12-05 11:15:51	2022-12-05 11:20:03	1	\N
557	10.236.15.23	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1	Syretskikh	Stanislav	+79263385876	syretskih@gmail.com	2852513	2022-12-06 08:09:53	2022-12-06 08:10:08	1	Hello. My name is Stanislav. I'm designer from Moscow. Now I'm looking for a new job and very interested about your vacancy.
527	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Melati	Citra	81237058394	citrawolf@gmail.com	3266441	2022-11-29 08:56:13	2022-11-29 09:03:36	1	Dear, Hiring Manager \r\n\r\nMy name is Citra Melati, I am writing to express my interest in the vacancy of Finance officer in Quadcode that I found while looking for the next step in my professional path. \r\n\r\nIn 2016, I left Indonesia to study in Russia. Living abroad, I began to take a deep understanding in the area of fintech. \r\n\r\nMy highlighted skills covered outstanding communication skills and building trustable partnership in the area of business. I am also able to adjust worldwide business development strategy to make it applicable locally in the region. \r\n\r\nI have also attached my resume for you to review, as I am scouting for the next step in my career. I am looking forward to discuss how I can be a part of Quadcode team. \r\n\r\nSincerely, \r\nCitra
526	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15	Melati	Citra	81237058394	citrawolf@gmail.com	3159660	2022-11-29 08:54:53	2022-11-29 09:03:32	1	Dear, Hiring Manager \r\n\r\nMy name is Citra Melati, I am writing to express my interest in the vacancy of Senior Sales Partner in Quadcode that I found while looking for the next step in my professional path. \r\n\r\nIn 2016, I left Indonesia to study in Russia. Living abroad, I began to take a deep understanding in the area of fintech. \r\n\r\nMy highlighted skills covered outstanding communication skills and building trustable partnership in the area of business. I am also able to adjust worldwide business development strategy to make it applicable locally in the region. \r\n\r\nI have also attached my resume for you to review, as I am scouting for the next step in my career. I am looking forward to discuss how I can be a part of Quadcode team. \r\n\r\nSincerely, \r\nCitra
528	10.236.15.23	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Okuntseva	Ksenia	994322407	okuntsevak@gmail.com	2769258	2022-11-29 17:42:10	2022-11-29 17:50:04	1	Hi. I would be happy if you check out my CV and give your feedback. \r\nI have 14-year experience in recruitment, 10 years in IT HR in-house and in agencies as a senior recruiter, recruitment manager, HR BP, Head of IT HR at product development companies, including international recruitment.\r\nI love difficult projects in recruitment, it's always interesting and challenging.\r\n \r\nI know my CV got too many letters. But I wanted you to have the whole picture of me - about my projects, skills, and what I managed to do in each company.\r\n\r\nI would be excited to talk more about your Head of Talent Acquisition role 🙂
529	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Mobile/15E148 Safari/604.1	Savvidou	Anni	99748634	anniesavvidou@hotmail.com	3266441	2022-11-29 18:50:05	2022-11-29 19:00:34	1	\N
530	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6 Safari/605.1.15	Kulikov	Nikita	591076234	terribleclipmaker@gmail.com	2953735	2022-11-29 21:16:05	2022-11-29 21:20:02	1	Hi, Quadcode team! \r\n\r\nMy mane is Nikita, but you can call me Niki\r\n\r\nI'm 23 y.o. Senior creative producer in inDrive (https://indrive.com/en/home)\r\n \r\nAlso have a motion designer, editor and director background & some creative stuff \r\n\r\nNow I am producing WW creatives and analysts for inDrive and launching special products in new business areas \r\n\r\n\r\nWould like to improve my skills and achieve more and more \r\n\r\nHard: Adobe, Google docs, MSoffice, Blender, Miro, Jira///\r\n\r\nSoft: being a soft boy))\r\n\r\nps. like bikes and AI stuff
531	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.56	Christou	Marina	96717921	marinachristou17@gmail.com	3266441	2022-11-29 21:56:20	2022-11-29 22:00:29	1	Dear Sir/Madam,\r\n\r\nKindly find attached my CV for the position you are offering of 'Finance Officer', as I am highly interested. \r\n\r\nLooking forward to receiving your response. \r\n\r\nThank you in advance. \r\n\r\nKind Regards\r\nMarina Christou
532	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 YaBrowser/22.11.0.2468 Yowser/2.5 Safari/537.36	Bobretsova	Nastya	9522429117	nastyatechmeet@gmail.com	2879130	2022-11-30 08:03:21	2022-11-30 08:10:04	1	Dear Hiring Manager, \r\n\r\nI would like to apply for Employer Brand Specialist in Quadcode, because I am interested in creating communities and organizing IT and marketing events. I believe my experience of working in tech brand Geekhub and organizing local community meetups qualifies me for this position. Also while I was working in Bank St. Petersburg I was responsible for ordering, checking samples and delivering Geekhub merch for employees. This background will help me work with Quadcode’s brand in Cyprus. I can supply references from my employer if required.\r\n\r\nLooking forward to hearing from you, \r\n\r\nNastya Bobretsova
533	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 YaBrowser/22.11.0.2504 Yowser/2.5 Safari/537.36	Ivanov	Ilya	94045973	ilya.ivanov.o@gmail.com	2931569	2022-11-30 13:18:44	2022-11-30 13:20:03	1	Dear Sirs,\r\n\r\nI am writing to express my interest in job opportunities in Quadcode. As you can see from my CV, I have nine years of experience in an international consulting company ("KPMG") and more than two years in a Family Office structure as like PE in Cyprus.\r\nI worked for more than three years in the audit department at KPMG. This experience gave me an expert view of financial statements and the skill to see what is hidden behind numbers. For over five years, I worked in the Deal Advisory department at KPMG. During my stay with Deal Advisory, I have worked on both buy-side and sell-side assignments, including vendor assistance and assistance in carve-out deals and financial due diligence. I was able to complete more than 20th different projects and have participated in the top transactions in the country. My professional experience is more linked to financial due diligence. However, it also includes working in other adjacent areas as well M&A, valuation, independent business review, project management organisation etc. Working on cross-functional projects helped me to improve my problem-solving and time management skills.\r\nMy role in the company was very multifunctional, as you can see in my CV. I regularly communicate with the shareholder and top management of the portfolio companies, which require excellent soft skills and the stakeholder's view. Participating in IPO transactions with a value of more than USD1bln and the top world consulting company significantly expanded my M&A experience. Now, these skills and experience help me to add value to work in your company and have a look through the client's expectation prism.\r\nI never stop studying, and during the latest three years, I have completed several courses in data analysis, data science and python backend development. These courses allow me to become more familiar with the deep analysis of Big Data in different consulting projects and apply my skills in the Family Office's portfolio companies.\r\nOutside of work, I also take advantage of opportunities for self-improvement. For example, several years ago, I decided to become familiar with sailing, so I took a course to allow me to become an internationally certified crew. Today, I know how to sail and can expand networking on regattas. \r\nNow, as I have decided to move to a rapidly growing company, I am considering external job opportunities \r\nI am confident that the expertise and knowledge I have acquired over my carrier make me a valuable employee. I would appreciate the opportunity to interview for some position in one's of your companies at your earliest convenience. I have attached my CV with a detailed description of my duties and core skills.\r\nI am looking forward to hearing from you. \r\n\r\nYours sincerely,\r\nIlya Ivanov
547	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	Dymov	Andrey	9119053845	andrey.cbr.promo@gmail.com	2953735	2022-12-02 15:18:48	2022-12-02 15:20:16	1	My name is Andrey. I saw the Marketing Creative Producer vacancy and decided that it really suits me!\r\n\r\nI've have an experience with saling software mostly on B2B and also on B2C market. During this time I plunged into IT sphere and Mobile Marketing.\r\n\r\nMoreover, organizing the music festival for 1500 people this summer brang lots of marketing and promotion experience. I've worked hard on marketing strategy for SMM, outdoor and other Ads, generated ideas for promotion and analysed metrics. Also producing video streams with artists was my reaponsobility, where I handeled the whole process starting from the idea to shooting and final publication.\r\n\r\nAs I wrote, I desided to apply as soon as I've seen the job. I have my CV only in Russian, so if it's not convinient for you, I can translate it, just let me know. Also I leave Russia in a few month, so it's also not a problem for me to relocate or to work remotly.
553	10.236.15.100	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Sokolova	Alisa	091051625	alisa.sokolova.pr@gmail.com	2826189	2022-12-05 15:42:05	2022-12-05 15:50:03	1	Hi Quadcode HR team,\r\n\r\nMy name is Alisa and I’m interested in the position of Social Media Specialist role at Quadcode.\r\n\r\nI have 5+ years of experience in communications and SMM for tech startups and large international companies in the U.S., EMEA and CIS markets. This background allows me to turn work experience in Quadcode into engaging and relatable stories on social media, which will attract IT talent from across the globe. \r\n\r\nAs Communications Manager at Sensorium – AI-focused startup –  I learnt to think out-of-the-box to  create, strategically position and analyze the performance of engaging multimedia content: social media copies, ads, articles, TikTok and YouTube videos, newsletters and scripts. As a result, within a year Sensorium’s registered community users grew by 35%, while average ER across our SoMe channels increased by 25%. \r\n\r\nAt American leading PR agencies Ketchum and Porter Novelli I managed Twitter, Facebook, LinkedIn and Telegram pages for clients like McKinsey, Emirates, The National Heart, Lung, and Blood Institute, Amicus, Intarcia, bluebird bio, Kraft Heinz. My strategy was focusing on value and entertainment through the useful tips, interactivity, partnerships and multimedia formats. As a result, all my clients experience growth in key social metrics (ER, CTR, reach, followers, NPS). For example, McKinsey's FB’s click-through rate increased by 21.6% and engagement rate – by 46%.  \r\n\r\nAs a journalist at the U.S. travel media PGW, I drove the rebranding of the website to appeal to a younger audience, resulting in 2X increases in MUV and 45% bounce rate.“The world’s weirdest hotels”, “traveling solo tips”, “guide how to take advantage of exchange rates”, “traveling with your mini pig”  –  in this rposition I also generated and researched over 30+ ideas, converting them into a content results-driven calendar.  \r\n\r\nThis role attracts me with the opportunity to let more talented specialists discover and benefit from Quadcode, while fulfilling my interest in FinTech. I also researched your website and social media and I can strongly resonate with your HR brand: from tone of voice to corporate values. \r\n\r\nThanks for your time and consideration. I’ll be grateful for an opportunity to discuss my qualifications over a call. \r\n\r\nKind regards,\r\nAlisa
535	10.236.15.100	Mozilla/5.0 (Linux; Android 12; SM-G998B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Khizhniak	Mark	+79261337432	Khizhnyak.mark@gmail.com	2931569	2022-11-30 13:31:50	2022-11-30 13:40:05	1	Dear Hiring Manager,\r\n\r\nThank you for the opportunity to apply for the Financial Officer position at Quadcode. As a detail-oriented analyst with a passion for numbers, I am thrilled at the chance to develop successful strategic financial models based on my data-driven insights and wealth of industry expertise.\r\n\r\nWith more than six years as a Cheif Financial Specialist at PJSC ROSBANK at Securities Services, I held the responsibility of analyzing and refining intricate FP&A models for vertical managers and Board of Directors. I developed a series of reports that enhanced our forecasting and budgeting processes. Those reports also significantly improved visibility into our clients' profitability, expense and functional operations. \r\n\r\nThanks to my initiative, our department was one of the first to implement an analytical business system such as Power BI based on sql, which helped to create a transparent, understandable, and most importantly, regular reporting system for management. This reporting format has also facilitated and accelerated the provision of urgent ad hoc financial and statistical reports.\r\n\r\nI am confident that my extensive technical skills along with my proven track record would make me a great fit for your Good Company. I'm looking forward to a having a conversation about the Financial Officer position at Quadcode.\r\n\r\nSincerely,\r\n\r\nMark Khizhniak
534	10.236.15.100	Mozilla/5.0 (Linux; Android 12; SM-G998B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Khizhniak	Mark	+79261337432	Khizhnyak.mark@gmail.com	3266441	2022-11-30 13:30:55	2022-11-30 13:40:03	1	Dear Hiring Manager,\r\n\r\nThank you for the opportunity to apply for the Financial Officer position at Quadcode. As a detail-oriented analyst with a passion for numbers, I am thrilled at the chance to develop successful strategic financial models based on my data-driven insights and wealth of industry expertise.\r\n\r\nWith more than six years as a Cheif Financial Specialist at PJSC ROSBANK at Securities Services, I held the responsibility of analyzing and refining intricate FP&A models for vertical managers and Board of Directors. I developed a series of reports that enhanced our forecasting and budgeting processes. Those reports also significantly improved visibility into our clients' profitability, expense and functional operations. \r\n\r\nThanks to my initiative, our department was one of the first to implement an analytical business system such as Power BI based on sql, which helped to create a transparent, understandable, and most importantly, regular reporting system for management. This reporting format has also facilitated and accelerated the provision of urgent ad hoc financial and statistical reports.\r\n\r\nI am confident that my extensive technical skills along with my proven track record would make me a great fit for your Good Company. I'm looking forward to a having a conversation about the Financial Officer position at Quadcode.\r\n\r\nSincerely,\r\n\r\nMark Khizhniak
536	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1	Kutasov	Vladislav	+381621255258	kutasovvlad0912@gmail.com	3159451	2022-11-30 14:07:32	2022-11-30 14:10:03	1	I’m 22 years old, I’ve graduated from Saint Petersburg university this year and I’m relocated from Russia to Serbia because of my life threatening caused by Russian invasion. I’m learning Python and have experience with QA, dev tools, SQL, postman, jira. I also know Russian, English, French. I’m looking for any job or traineeship. Looking forward to hearing from you in any case\r\nYours respectfully
537	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Charalambous	Charalambos	99233145	ccharahrm@gmail.com	2913219	2022-11-30 20:18:57	2022-11-30 20:20:04	1	Seeking a position to \r\npropel my career in a \r\nhigh-level professional \r\nenvironment
538	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Sharyan	Ruben	93850235	ruben.sharyan@gmail.com	3250194	2022-12-01 10:20:35	2022-12-01 10:30:04	1	Dear manager team,\r\nI am interested in this position.\r\n\r\nRegards,\r\nRuben
539	10.236.15.23	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Slobodinskaya	Maria	82147366311	masha.slobodinskaya@gmail.com	2852513	2022-12-01 11:08:34	2022-12-01 11:10:09	1	My name is Maria, I am a product designer with a strong track record in visual design that is supported by data. \r\nI started as a product designer in 2018 and was involved in different projects including working with startups and well-established companies. During my work, I have created more than 40 landing pages, ran a/b tests, conducted user tests, worked on complex interfaces, created fully animated prototypes etc.\r\nHere is my portfolio. http://slobodinskaya-portfolio.tilda.ws/\r\n\r\n I don't have all my work in my portfolio (didn't manage to add everything). If you are interested please contact me and I will showcase my other works.
540	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Manucharyan	Avetis	77172448	dev.manucharyan@gmail.com	2832600	2022-12-01 13:07:02	2022-12-01 13:10:03	1	\N
541	10.236.15.23	Mozilla/5.0 (Linux; Android 11; Redmi Note 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36	Bitiai	Vladimir	+35797765447	vbityay@gmail.com	3266441	2022-12-01 14:36:30	2022-12-01 14:40:03	1	Hello, I'm looking for a job in you company. I'll be happy to join your international team. My CV in attachment.\r\nYour sincerely,\r\nVladimir Bitiai
542	10.236.15.23	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	SLEPOV	VLADIMIR	89206353802	slepovva@gmail.com	3250194	2022-12-01 15:02:22	2022-12-01 15:10:03	1	Dear sir/madam,\r\n\r\nRE: Application for Senior Java Developer\r\n\r\nPlease find attached my resume in support of my application for the above position.\r\n\r\nI am applying for this role because I strongly believe I have the necessary skills, qualities, and experience to carry out the duties to a very high standard.\r\n\r\nHaving already worked within similar industries, I have the knowledge and experience needed to contribute to the team in the fastest time possible.\r\n\r\nA brief overview of the skills, qualities, and attributes I possess are as follows:\r\nAn ability to work as part of the team to achieve the company goals and projects;\r\nHigh levels of customer service and care;\r\nTaking responsibility for my ongoing professional development;\r\nAn honest, reliable, and disciplined approach to my work;\r\nThe ability to follow rules and procedures;\r\nA fast learner who requires little supervision;\r\nA willingness to take on all tasks, regardless of their complexity;\r\nA positive and enthusiastic attitude to my work;\r\n\r\nI am available for an interview at short notice and would very very much appreciate the opportunity to demonstrate to you my skills, qualities, and experience, and how I can help your business to continually thrive.\r\n\r\n\r\nYours faithfully,\r\nVladimir Slepov\r\n\r\nEmail: slepovva@gmail.com
543	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.62	Semenyuk	Lyubov	9168348821	semenyuk89@gmail.com	2913219	2022-12-01 19:24:54	2022-12-01 19:30:04	1	Dear colleagues,\r\nI would like to express my interest in applying for a People specialist position in your Firm. I am certain that my experience and skill set would make me a great candidate for this position\r\n\r\nThank you for taking the time to consider this application.\r\n\r\nYours sincerely,\r\nLyubov
545	10.236.15.100	Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:107.0) Gecko/20100101 Firefox/107.0	Nurgaliyev	Sabyr	7758712440	s.nurgaliyev@aues.kz	2832600	2022-12-02 03:42:05	2022-12-02 03:50:04	1	Technical stack:\r\nReact, Typescript, Ant Design.\r\n\r\nExperience with Redux, WebSocket, Electron. During the work, I closed about 5 features of varying complexity. Faced various problems at the level of architecture and the React library. For the decision I read technical documentation, articles and reports. I am currently working on two projects. I love my job and dig under the hood, how my technologies work
546	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Poltow	Wlodzimierz	7471085828	valdemar.amorales@yahoo.com	2953735	2022-12-02 11:02:58	2022-12-02 11:10:03	1	\N
548	10.236.15.100	Mozilla/5.0 (Linux; Android 11; M2010J19SG) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Mobile Safari/537.36	Is	Shushanna	+37494941811	shushanna.is@yahoo.com	3159660	2022-12-03 01:42:16	2022-12-03 01:50:02	1	\N
558	10.236.15.23	Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Repin	Dmitriy	9213991350	immisterrepin@gmail.com	2860249	2022-12-06 09:57:35	2022-12-06 10:00:29	1	Hello, my name is Dmitriy.\r\n\r\nI’m interested in the position of a front-end developer.\r\n\r\nI have been following what Quadcode does and I really like the overall direction of the product. I studied the tools and tech you use - I’m skilled at most of it, and with some I’ve wanted to work for a long time. I’m ready to learn quickly and excited to explore things that are new to me. From what I see, I believe that at Quadcode I could apply my knowledge and grow as a professional.\r\n\r\nAbout me: I’m a web-developer with more than 6 years experience. Over this time I grew up from a newbie freelancer to an experienced developer, I now make decisions and am responsible for my own projects. \r\n\r\nI have been a part of various projects such as online-shop where you can add goods from the layouts of instruments; marketplace with personal account and the order construction for designers, which I created from scratch and came up with a solution for comfortable work with 3 states of order; the app for lawyer consulting project where I was a senior front-end developer and made a transfer from legacy code to modern stack and new architecture.\r\n\r\nI am now actively studying English; at the moment I can do business communication and read documentation.\r\n\r\nI would love to learn more about Quadcode and the current projects and see if I’m a fit for the position; happy to talk and get to meet you!\r\n\r\nThanks for your time!
559	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0	Grubb	Susan	99080569	susangrubb36@gmail.com	3266441	2022-12-06 10:27:48	2022-12-06 10:30:03	1	\N
560	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	Petyushkin	Alexey	415720378	alexpetyushkin@gmail.com	2852513	2022-12-06 10:27:49	2022-12-06 10:30:08	1	Based on my more than 9 years’ freelance experience as a web-designer (UX, UI and digital) and lead manager of web projects, I am writing to express my interest in Product Web Designer position at Quadcode. Since my family and I have recently moved to Finland, I want to gain work experience in a European company (in the office in Helsinki/Espoo or remotely). Since 2014, my main activity has been wireframing and designing of websites and mobile applications using Figma and Adobe Photoshop. I have been also involved in web project management with a team of remote experts of my own. The result of this work is more than 400 successfully completed projects over 9 years of private expertise with hundreds of satisfied customers.\r\n\r\nWhen reading the description of the vacancy I was impressed by your company values and a user experience-oriented approach to doing business. These are the key things that I personally share and I'm ready to direct all my rich experience and knowledges to generating fresh ideas and effective solutions for the whole team's growth.
561	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	Kruus	Polina	5358901752	polina.kruus@gmail.com	2852513	2022-12-06 13:00:54	2022-12-06 13:10:02	1	Hello!\r\nMy name is Polina. I'm a ui/ux designer with almost 7 years of working experience. I started as a web-designer and developed in this area for a few years. I learned what your company does. It's close and interesting to me! \r\nI have work experience in professional networks and work on SaaS business. \r\n\r\nMy background includes: \r\n- A lot of of UI/UX design experience \r\n- Expert knowledge of Figma\r\n- Ability to design full websites (PC, Tablet & Mobile) \r\n- Good artistic approach \r\n- Ability to balance multiple projects simultaneously\r\n- Champion usability and perform quality control on designs\r\n- Resourceful, organized and deadline-driven \r\n- Good at use design and behavioral psychology to nudge users down a desired path\r\n- Create and support of the design system\r\n- Love create innovative designs that are beautiful, delightful and easy-to-use\r\n \r\nMore about my work experience on linkedin \r\n \r\nhttps://www.linkedin.com/in/polina-kruus-b4b3a3a4/\r\n \r\nMy portfolio \r\nhttps://www.behance.net/kpolina\r\n \r\n \r\nI think we will be a good team! \r\nI will be glad to receive feedback, thank you :)\r\n \r\nwith best regards P. Kruus
562	10.236.15.100	Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	IVANOV	EVGENY	9161628345	zeniv@mail.ru	2852513	2022-12-06 14:21:25	2022-12-06 14:30:07	1	\N
563	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	Efstathiou	Olga	99867450	ooefstathiou@gmail.com	3045877	2022-12-06 16:13:09	2022-12-06 16:20:03	1	\N
564	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	Efstathiou	Olga	99867450	ooefstathiou@gmail.com	3271143	2022-12-06 16:14:27	2022-12-06 16:20:05	1	\N
565	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 Edg/107.0.1418.62	Partella	Eleni	+35799688752	partellaeleni@gmail.com	3271143	2022-12-07 09:17:25	2022-12-07 09:20:03	1	Dear Recruitment Team,\r\n\r\nI would love an opportunity to be considered for this job role. I have also already applied for your Employer Brand Specialist position via Linkedin, thus am greatly interested in your Company and the value it could add to my career and vise versa.\r\n\r\nThank you in advance.\r\nKind regards\r\nEleni Partella
566	10.236.15.100	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36	Gasimli	Gunel	512556687	gunel.gasimli@hotmail.com	3271143	2022-12-07 10:40:53	2022-12-07 10:50:03	1	\N
567	10.236.15.100	Mozilla/5.0 (iPhone; CPU iPhone OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/19G71 [FBAN/FBIOS;FBDV/iPhone9,4;FBMD/iPhone;FBSN/iOS;FBSV/15.6;FBSS/3;FBID/phone;FBLC/en_US;FBOP/5]	Romeh	Gheith	35795590446	gheithromeh@gmail.com	3271143	2022-12-07 14:36:27	2022-12-07 14:40:03	1	i hope i can get the chance to improve my self with your company
568	10.236.15.23	Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36	Zhigalova	Anastasiia	9995362447	asya.zhigalova1@gmail.com	2931569	2022-12-07 18:28:55	2022-12-07 18:30:03	1	Hi, \r\n\r\nI am Asya and I am writing this cover letter to express my interest in the position of Financial Planning & Analysis Specialist in Quadcode. \r\n\r\nI read carefully about the job, so realized that you offer is interesting to apply for. Firstly, you are growing company that inspires me as a young specialist. Secondly, the product you offer seems to be useful for financial market. Besides, for me it's important to know that my work is a part of something global, so I can create value. Finally, the sphere you work at attracts me so much and I am eager to learn more about it.\r\n\r\nAs you can see in my CV, my previous experience was not as financier, however, I have skills that are required for the position. I worked 4 years as Senior Account Manager in Sales in P&G Company. I have very strong analytical skills, ability to optimize current processes, know how to maximize investments for business development. This may sound weird, but I am passionate about counting :) Moreover, I am ready to explore new spheres, products, so will be able to bring fresh look on current procedures.\r\n\r\nThanks for reading. Still have questions? So, contact me :)\r\n\r\nBest regards,\r\n\r\nAnastasiia Zhigalova\r\n\r\nTel: +7 999 536 24 47\r\nasya.zhigalova1@gmail.com
\.


--
-- Data for Name: locations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.locations (id, deleted_at, created_at, updated_at, "position", id_external, map_coords, count_positions, slug, title, description, title_prepositional, country, active) FROM stdin;
3	\N	2020-12-04 18:31:49	2022-04-15 09:40:36	3	37371	86.4,83.3	0	sydney	Sydney	The office is located on the 10th floor of a modern business center in North Sydney.	in Sydney	Australia	t
53	\N	2022-06-22 10:58:49	2022-08-12 09:53:33	0	11354	\N	0	sankt-peterburg	Санкт-Петербург	\N	\N	\N	f
5	\N	2020-12-04 18:33:18	2022-08-12 09:53:33	4	11356	42.3,46.4	0	gibraltar	Gibraltar	Work with us in Gibraltar. Our office is in the World Trade Center—this is the northern part of Gibraltar.	in Gibraltar	United Kingdom	t
56	\N	2022-07-06 07:34:07	2022-08-12 09:53:33	3	11357	\N	0	sidnei	Сидней	\N	\N	\N	f
4	\N	2020-12-04 18:32:30	2022-12-06 15:00:26	1	11355	53.1,46.5	16	limassol	Limassol	The Quadcode office is located near the tourist area of Limassol in a bright building with large panoramic windows.	in Cyprus	Cyprus	t
8	\N	2022-01-13 14:48:35	2022-09-01 14:00:27	6	69467	59,55	0	dubai	Dubai	Some information about Dubai	in United Arab Emirates	United Arab Emirates	t
2	\N	2020-12-04 18:29:51	2022-11-29 15:00:30	2	11358	43,39	0	london	London	The Quadcode office is located in Dawson House. It is  located in the old London City, not far from the  creative center of East London.	in London	United Kingdom	t
\.


--
-- Data for Name: migrations; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.migrations (id, migration, batch) FROM stdin;
19	2014_10_12_000000_create_users_table	1
20	2019_08_19_000000_create_failed_jobs_table	1
21	2020_02_09_000001_create_twill_default_users_tables	1
22	2020_02_09_000002_create_twill_default_blocks_table	1
23	2020_02_09_000003_create_twill_default_medias_tables	1
24	2020_02_09_000004_create_twill_default_files_tables	1
25	2020_02_09_000005_create_twill_default_settings_table	1
26	2020_02_09_000006_create_twill_default_tags_tables	1
27	2020_02_09_000007_create_twill_default_activity_log_table	1
28	2020_02_09_000008_create_twill_default_features_table	1
29	2020_02_09_000010_create_twill_default_related_table	1
30	2020_02_09_000011_add_locale_column_to_twill_default-mediables	1
31	2020_02_09_000012_change_locale_column_in_twill_default_fileables	1
32	2020_02_09_000013_add_language_column_to_twill_default_users	1
33	2020_11_03_130110_create_pages_tables	1
34	2020_11_05_184902_add_menu_params_to_page	1
35	2020_11_30_093155_create_teams_tables	1
36	2020_12_04_174843_create_locations_tables	2
37	2020_12_05_104843_create_categories_tables	3
39	2020_12_09_155912_create_vacancy_cache	4
41	2022_09_21_121500_leads_queue	5
\.


--
-- Data for Name: type_works; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.type_works (id, name, "foreign", active, "order") FROM stdin;
11351	Part-time	1	1	0
11352	Full-time	2	1	1
11353	Contract	3	1	2
\.


--
-- Data for Name: vacancies; Type: TABLE DATA; Schema: public; Owner: postgres
--

COPY public.vacancies (id, created_at, updated_at, show_position, "position", show_title, title, show_money, money, state, created_original, is_hidden, body, show_requirements, requirements, requirements_title, show_conditions, conditions, conditions_title, deadline, applicants_to_hire, show_team, team_title, show_location, location_id, location_title, show_category, category_id, category_title, show_type_of_work, type_of_work_id, type_of_work_title, show_about_team, about_team, show_tasks, tasks, files) FROM stdin;
3266441	2022-12-07 19:00:11	2022-12-07 19:00:11	t	Finance Officer	t	Finance Officer	t	\N	OPEN	2022-11-17 11:57:32	f	\N	t	<p><strong>Hard Skills</strong></p><ul><li>fluent in Excel;</li><li>English B2 and higher;</li><li>analytical skills;</li><li>organizational Skills;</li><li>experience in the fintech area will be a great advantage.</li></ul><p><strong>Soft Skills</strong></p><ul><li>excellent communication skills;</li><li>propensity to learn;</li><li>driven, hardworking and self-motivating;</li><li>very good attention to detail;</li><li>problem solving, big picture thinker.</li></ul>	\N	t	<ul><li>working in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	Treasury	t	11355	Limassol, Cyprus	t	11364	Finance	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for a <strong>Finance officer</strong> for our <strong>Treasury team</strong>.</p><p>This team works with cash flow in the group of companies. There are 7 members in this team, including Team Lead.</p>	t	<ul><li>controlling of cash flow;</li><li>providing the service related to payment procedure to internal clients;</li><li>performing reconciliation procedure;</li><li>performing the payment procedure;</li><li>reporting procedure.</li></ul>	\N
2879130	2022-12-07 19:00:13	2022-12-07 19:00:13	t	HR brand manager	t	Employer Brand Specialist (PR, Event)	f	\N	OPEN	2022-05-16 13:40:33	f	\N	t	<ul><li>experience in organizing professional or entertaining events for IT professionals;</li><li>experience working in HR brand or in PR / organization of events of at least 2 years;</li><li>readiness to organize events without the involvement of agencies;</li><li>English at least B2; you will need to communicate regularly with native speakers.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	Employer Branding	t	11355	Limassol, Cyprus	t	11367	Marketing	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for an <strong>Employer Brand Specialist</strong> to promote the employer's brand in Cyprus to the <strong>Employer Branding</strong>.</p><p>This team organizes different events and meet up's, they work with mass media and local it communities.</p>	t	<ul><li>analysis of the employer's branding strategy and adaptation for Cyprus;</li><li>positioning of the company on recruiting platforms;</li><li>organizing conference sponsorship in Cyprus from script to budget;</li><li>organizing own meetups in Cyprus;</li><li>organization of online events;</li><li>organization of the company's representation at external conferences and meetups;</li><li>order, check samples and delivery of souvenirs;</li><li>collecting analytics on events;</li><li>suggesting ideas for improvement.</li></ul>	\N
2953735	2022-12-07 19:00:13	2022-12-07 19:00:13	t	Marketing creative producer	t	Marketing Creative Producer	f	\N	OPEN	2022-07-25 18:04:00	f	\N	t	<ul><li>experience with Performance Marketing (must have);</li><li>experience interacting with the design team;</li><li>experience in analyzing traffic purchase metrics;</li><li>understanding the specifics of marketing requests from different geo and advertising platforms;</li><li>ability to generate ideas based on business requests;</li><li>ability to systematize ideas and creatives;</li><li>sociability (ability to find an approach to everyone);</li><li>understanding the process of working with graphics will be a plus;</li><li>English level at least B1+.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul><p><strong>Relocation package includes</strong></p><ul><li>visa support, an opportunity to get an EU citizenship;</li><li>preparation of all documents (fully provided by the company);</li><li>flight tickets coverage for employees and their families;</li><li>free corporate apartment&nbsp;for 2 months;</li><li>full coverage of migration costs while in Cyprus;</li><li>reimbursement of a rental car or transport allowance for 2 months.</li></ul>	\N	\N	0	t	Video Production	t	11355	Limassol, Cyprus	t	11367	Marketing	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode</strong>, a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are a looking for a <strong>Marketing creative producer </strong>for<strong> the Video Production team.</strong></p>	t	<ul><li>development of creatives for performance marketing (for three products of the company);</li><li>working closely with the marketing department and designers;</li><li>development of creative strategies for different traffic sources; Instagram, Facebook, Google, In-app grids;</li><li>managing the business process of creative production;</li><li>tracking the effectiveness of creatives by key metrics;</li><li>analysis of traffic purchase metrics;</li><li>competitor and market analysis;</li><li>tracking trends and promising creative concepts;</li><li>keeping a catalog with creative concepts.</li></ul>	\N
2852513	2022-12-07 19:00:13	2022-12-07 19:00:13	t	Web Designer (Marketing)	t	Product Web Designer	t	\N	OPEN	2022-03-23 01:26:06	f	<ul><li>.</li></ul>	t	<ul><li>experience as a 3+ product designer;</li><li>experience working with webflow or an alternative tool;</li><li>experience working with figma and prototypes in it;</li><li>experience working with product analytics, a/b testing;</li><li>real cases in the portfolio (at least 3 landing pages or multi-page sites);</li><li>understanding what web technologies are and how they work;</li><li>ability to work with any graphics, illustrations and interface animation.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	Marketing & Communication Design	t	11355	Limassol, Cyprus	t	11367	Marketing	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for a <strong>Product Designer </strong>for our <strong>Marketing Team</strong>.</p><p>You will create design for different landings and web-sites for our Affiliate products.</p>	t	<ul><li>to work out a new ui/ux for the partner program of the trading platform;</li><li>creating a large number of landing pages on WebFlow + a/b tests + analysis;</li><li>participation in ui kit improvements;</li><li>elaboration of local personalization of current landing pages of the trading platform.</li></ul>	\N
3254767	2022-12-07 19:00:13	2022-12-07 19:00:13	t	Arabic&French 1\\12	t	\N	t	\N	OPEN	2022-10-31 20:02:54	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3117850	2022-12-07 19:00:13	2022-12-07 19:00:13	t	Arabic&french hold	t	\N	t	\N	OPEN	2022-09-01 16:25:35	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2939803	2022-12-07 19:00:13	2022-12-07 19:00:13	t	Arabic&French Support	t	\N	t	\N	OPEN	2022-07-15 16:43:16	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2880887	2022-12-07 19:00:14	2022-12-07 19:00:14	t	Asia Support	t	\N	t	\N	OPEN	2022-05-18 10:23:39	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3256608	2022-12-07 19:00:14	2022-12-07 19:00:14	t	Chinese cold HH	t	\N	t	\N	OPEN	2022-11-04 18:18:23	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3162525	2022-12-07 19:00:15	2022-12-07 19:00:15	t	Chinese Support	t	\N	t	\N	OPEN	2022-09-14 12:32:11	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2825268	2022-12-07 19:00:15	2022-12-07 19:00:15	t	Cold Thai	t	\N	t	\N	OPEN	2022-02-03 09:36:23	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3047944	2022-12-07 19:00:15	2022-12-07 19:00:15	t	Customer Support English (Cyprus)	t	\N	t	\N	OPEN	2022-08-16 17:42:50	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3254743	2022-12-07 19:00:15	2022-12-07 19:00:15	t	Cyprus Positions 1\\12	t	\N	t	\N	OPEN	2022-10-31 18:29:15	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3261158	2022-12-07 19:00:16	2022-12-07 19:00:16	t	Cyprus Spanish 09.11	t	\N	t	\N	OPEN	2022-11-09 13:40:48	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3146620	2022-12-07 19:00:16	2022-12-07 19:00:16	t	Eng Cyprus on Hold	t	\N	t	\N	OPEN	2022-09-09 16:57:07	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3045877	2022-12-07 19:00:16	2022-12-07 19:00:16	t	English copywriter/Internal communications specialist	t	Internal Communications Specialist	f	\N	OPEN	2022-08-16 11:11:32	f	\N	t	<ul><li>English fluency;</li><li>experience in corporate communications;</li><li>experience in copywriting (2+years);</li><li>text applications proficiency (Google Docs, MS Word, etc.);</li><li>strong writing skills;</li><li>research and analytical skills;</li><li>general understanding of what the IT and FinTech spheres are.</li></ul>	\N	t	<ul><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	Corporate Communication & Culture	t	11355	Limassol, Cyprus	t	11368	People	t	11352	Full-time	t	<p>We are <strong>Quadcode, </strong>a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for an<strong> Internal Communications Specialist&nbsp;</strong>in our <strong>Corporate Communication &amp; Culture</strong> <strong>team</strong>.</p><p>Corporate communications is the essential part of <strong>Strategic HR Department. </strong>The team streamlines the information flow within the company, supports business and acts as a nervous system for the whole corporation.</p>	t	<ul><li>generate ideas for announcements and corporate news;</li><li>leading small communication campaigns within a company;</li><li>English copywriting;</li><li>proofread English texts.</li></ul>	\N
3199784	2022-12-07 19:00:16	2022-12-07 19:00:16	t	English&Italian Support	t	\N	t	\N	OPEN	2022-09-26 16:49:02	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3061494	2022-12-07 19:00:16	2022-12-07 19:00:16	t	English night Cyprus 19/08/22	t	\N	t	\N	OPEN	2022-08-19 13:30:38	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3199789	2022-12-07 19:00:17	2022-12-07 19:00:17	t	English&Spanish Support	t	\N	t	\N	OPEN	2022-09-26 16:49:20	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2912250	2022-12-07 19:00:17	2022-12-07 19:00:17	t	Eng Support Part-time	t	\N	t	\N	OPEN	2022-06-27 13:40:00	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2931569	2022-12-07 19:00:17	2022-12-07 19:00:17	t	Financial Planning & Analysis Specialist	t	Financial Planning & Analysis Specialist	f	\N	OPEN	2022-07-12 15:31:19	f	\N	t	<ul><li>bachelor’s degree in economics, accounting or another business-related discipline;</li><li>mastery in&nbsp;Excel is a must;</li><li>3+ years of relevant analytical experience;</li><li>strong communication skills;</li><li>fluency in English (at least B2).</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	Finance	t	11355	Limassol, Cyprus	t	11364	Finance	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode</strong>, a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for a&nbsp;<strong>Financial Planning &amp; Analysis Specialist</strong>&nbsp;in our&nbsp;<strong>Finance team</strong>.</p>	t	<ul><li>preparing reports, dashboards, budgets, forecasts and analysis;</li><li>reporting to and working closely with the VP finance to meet the operational and financial planning needs of the Group;</li><li>building and maintaining financial reporting, key performance metrics and ad-hoc financial analysis to support functional heads and department owners in assessing business performance and operational initiatives;</li><li>utilizing BI tools to deliver meaningful insights into business performance;</li><li>preparing business cases to support new investment, strategic and other business decisions;</li><li>reviewing existing processes and procedures to develop recommendations for better performance;</li><li>providing insights to senior management upon financial modeling, forecasts and profitability.</li></ul>	\N
2882242	2022-12-07 19:00:18	2022-12-07 19:00:18	t	Head of development (temporally fake)	t	\N	t	\N	OPEN	2022-05-20 11:55:04	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2769258	2022-12-07 19:00:18	2022-12-07 19:00:18	t	Head of Talent Acquisition / Recruiting Manager	t	Head of Talent Acquisition	f	\N	OPEN	2021-10-14 20:10:21	f	\N	t	<ul><li>5+ years of full-cycle recruiting experience, ideally in a top-tier software company with an excellent engineering talent bar;</li><li>3+ years experience leading technical recruitment function;</li><li>proven experience in identifying and engaging senior-level candidates;</li><li>experience using talent market insights and data to influence decisions within leadership groups and cross-functional teams;</li><li>demonstrated track record of building working relationships with leaders and cross-functional partners;</li><li>strong coaching and mentoring skills;</li><li>passion and understanding of technology;</li><li>excellent verbal and communication skills;</li><li>fluency in Russian and English level B2+ (Upper-Intermadiate+) – essential.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	Talent Acquisition	t	11355	Limassol, Cyprus	t	11366	Management	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.</p><p>The<strong>&nbsp;Head of Talent Acquisition</strong>&nbsp;will be responsible for managing two teams of talent sourcers and recruiters, who share a common passion for hiring the best talents, creating memorable candidate experiences, and solving tricky challenges in partnership with our Engineering, Product, and other leads.</p>	t	<ul><li>oversee the engagement, management, and development of high-performing teams in a fast-paced and ambitious environment;</li><li>assume responsibility for setting team performance goals and metrics, timelines, and a formal tracking process to measure and manage progress;</li><li>liaise closely with Product, Engineering, and Business leaders to influence and deliver a quality assessment and candidate experience through all aspects of the recruitment funnel;</li><li>act as a talent advisor for technology recruiting and sourcing, while also developing the continuous company and talent mapping in key tech areas;</li><li>ensure that every candidate has a positive and engaging experience through all stages of the interview process;</li><li>maintain data integrity and report recruiting metrics (we use Huntflow ATS + Tableau);</li><li>collaborate with our partners and other leaders within the organization to strategize different ways to build talent pipelines and execute tactical research, referral generation, events, and sourcing campaigns.</li></ul>	\N
3271143	2022-12-07 19:00:18	2022-12-07 19:00:18	t	HR Assistant	t	HR Assistant	f	\N	OPEN	2022-11-23 15:55:22	f	\N	t	<ul><li>proficiency in areas of written/verbal communication, time management, and computer literacy, including MS Office;</li><li>experience of delivering against targets and deadlines with high quality;</li><li>understanding how to find common ground with people of all temperaments, interests and values;</li><li>ability to work effectively with a high degree of autonomy, flexibility, and accountability.</li><li>willingness to switch between tasks quickly;</li><li>fluency in Russian and English at the upper-Intermediate level;</li><li>willingness to work remotely or in the office as needed;</li><li>stress resistance, diligence and a positive attitude.</li></ul>	\N	t	<ul><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	Strategic HR	t	11355	Limassol, Cyprus	t	11368	People	t	11352	Full-time	t	<p>We are <strong>Quadcode</strong>, a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for a <strong>HR Assistant </strong>to join the&nbsp;<strong>Strategic HR Team. </strong>Our <strong>Strategic HR Team</strong> is 14 people dedicated to: corporate culture development and support, internal and external communications, training and employee evaluations.</p>	t	<ul><li>coordinating contracts from contractors with in-house lawyers;</li><li>submitting invoices for payment to the financial department;</li><li>providing closing documents, affixing seals, etc;</li><li>organizing delivery of orders/documents from/to us from contractors;</li><li>counting statistics/simple analytics on processes in HR departments;</li><li>communicating with contractors via phone/email as needed;</li><li>assisting and participating in various HR department projects.</li></ul>	\N
2766546	2022-12-07 19:00:18	2022-12-07 19:00:18	t	HR Director	t	HR Director	t	\N	OPEN	2021-10-12 15:20:59	f	\N	t	<ul><li>experience in solving HR problems within fast growing organizations;</li><li>strong supervisory and leadership skills;</li><li>excellent presentation, verbal and written communication skills; must be an articulate and persuasive communicator;</li><li>strong planning and organizational skills;</li><li>a data-driven leadership who can connect workforce and business outcomes;</li><li>ability to conduct group facilitation, coach and counsel managers at all levels.</li></ul><p><strong>Education and Experience:</strong></p><ul><li>a BS/BA degree from an accredited college/university; MBA or MA/MS in human resources or related field preferred;</li><li>a minimum of 5 years of&nbsp;<strong>executive&nbsp;</strong>HR experience of which at least 3 years of international HR;</li><li>a minimum of 5 years experience in the IT industry;</li><li>certification like CIPD, PHR, SPHR, SHRM-SCP or SHRM-CP is a plus;</li><li>full professional proficiency in English –&nbsp;<strong>MUST.</strong></li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	HR Global	t	11355	Limassol, Cyprus	t	11366	Management	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.</p><p>This position is directly responsible for leading managers of the division and indirectly responsible for all employees within the division.</p>	t	<ul><li>provide overall leadership and guidance to the HR function by overseeing talent acquisition, career development, succession planning, retention, training, leadership development, compensation and benefits globally;</li><li>analyzing and evaluating existing HR strategies, policies, and procedures, and reforming them with the help of executives and staff;</li><li>function as a strategic business partner to the executive/senior management of each business unit or specialty group regarding key organizational and management issues which could be solved with HR help;</li><li>oversee the development of comprehensive strategic recruiting and retention plans to meet the human capital needs of strategic goals;</li><li>oversee the development and implementation of comprehensive compensation and benefits plans that are competitive and cost-effective;</li><li>lead on culture practices to articulate and amplify the values &amp; corporate culture within the organization through HR activities and support;</li><li>ensure implementation of effective development and training programs for employees which are aligned with business goals of the organization.</li></ul>	\N
2920282	2022-12-07 19:00:18	2022-12-07 19:00:18	t	Linux Administrator (Infrastructure)	t	Linux System Administrator (Infrastructure)	f	3500 - 6000 eur gross	OPEN	2022-07-05 13:30:24	f	\N	t	<ul><li>3+ years of Linux Systems administration; deep knowledge and experience with Debian based Operating Systems;</li><li>knowledge of Infrastructure-as-Code principles and hands-on experience with automation tools (Ansible / Chef / Terraform/ Pulumi);</li><li>hands-on experience in administering, provisioning, configuring, tuning and monitoring of application web servers (Nginx), databases (MySQL / PostgreSQL) and HA systems;</li><li>experience with the best practices of virtualized and/or containerised environments (OpenStack / KVM / Docker);</li><li>experience with technologies and methodologies of CI/CD processes (GitLab / Jenkins);</li><li>self-driven, with ability to take ownership of issues and follow them through to complete resolution;</li><li>English B1+, Russian B2+.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul><p><strong>Relocation package includes</strong></p><ul><li>visa support, an opportunity to get an EU citizenship;</li><li>preparation of all documents (fully provided by the company);</li><li>flight tickets coverage for employees and their families;</li><li>free corporate apartment&nbsp;for 2 months;</li><li>full coverage of migration costs while in Cyprus;</li><li>reimbursement of a rental car or transport allowance for 2 months.</li></ul>	\N	\N	0	t	Infrastructure	t	11355	Limassol, Cyprus	t	11363	Engineering	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.</p><p>We are currently looking for both middle and senior-level Linux Administrators to join our growing <strong>Infrastructure team</strong>. Our team is responsible for building and supporting a private cloud (OpenStack), as well as various Linux systems/services (DNS, Gitlab, Artifactory, Vault, etc) that ensure the stable operation of our trading platform.</p><p>The team has 4 Linux Administrators, and a Team Leader.</p><p><strong>Examples of first tasks in the role</strong></p><ul><li>SCM Implementation;</li><li>Migrate docker-registry to Artifactory;</li><li>CI/CD Infrastructure optimization.</li></ul>	t	<ul><li>effectively install, operate, and maintain systems/services in private (OpenStack), public (AWS) clouds and on bare metal;</li><li>perform continuous health monitoring, improve the stability/performance of the Linux Systems and troubleshoot issues that may arise;</li><li>responding to security incidents and applying patches accordingly;</li><li>perform backup/restore/rollback and disaster recovery operations in Linux Infrastructure environments;</li><li>communicate with other teams for mitigation of any issues with managed environments;</li><li>create, update and organize technical documentation and knowledge base for the team and other departments;</li><li>daily scrum standups (11:30 UTC+3), engaging in peer code reviews, and using collaboration tools like Slack and Zoom.</li></ul>	\N
2841921	2022-12-07 19:00:19	2022-12-07 19:00:19	t	Middle iOS Developer Cyprus 2022	t	\N	t	\N	OPEN	2022-03-01 14:00:57	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2860249	2022-12-07 19:00:19	2022-12-07 19:00:19	t	Middle/Senior Frontend Developer	t	Middle Front-end Developer	f	2700 - 6000 eur gross	OPEN	2022-04-11 21:15:30	f	\N	t	<ul><li>excellent knowledge of JavaScript ES6+ (experience from 3 years);</li><li>experience with React (from 1-2 years);</li><li>understanding of the principles of SOLID, DRY, KISS;</li><li>knowledge of design patterns;</li><li>experience in conducting code reviews;</li><li>English B1+, Russian B2+.</li></ul><p><strong>As an advantage</strong></p><ul><li>knowledge of TypeScript and Node.JS;</li><li>experience in writing unit tests;</li><li>experience with relational databases;</li><li>experience with Docker;</li><li>knowledge of GraphQL.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul><p><strong>Relocation package includes</strong></p><ul><li>visa support, an opportunity to get an EU citizenship;</li><li>preparation of all documents (fully provided by the company);</li><li>flight tickets coverage for employees and their families;</li><li>free corporate apartment&nbsp;for 2 months;</li><li>full coverage of migration costs while in Cyprus;</li><li>reimbursement of a rental car or transport allowance for 2 months.</li></ul>	\N	\N	0	t	Affiliate	t	11355	Limassol, Cyprus	t	11363	Engineering	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for a&nbsp;<strong>Middle Front-end Developer </strong>for the&nbsp;<strong>Affiliate </strong>team.</p><p>The team is developing an affiliate program for the trading platform.</p><p>The team has front and backend developers, fullstack developer, two QA manual, QA automation, Team Lead, Product Owner, Scrum master, Designers.</p><p>The team performs the entire scope of tasks for the affiliate program, from traffic tracking to calculation and accrual to partners' balances.</p><p>Now we are facing a big and ambitious task of developing a new personal account.<br><br><strong>Tech stack</strong></p><ul><li>Frontend: JS, React, Mantine UI, TypeScript;</li><li>Backend: PHP, Golang, Node.JS;</li><li>DB: PostgreSQL;</li><li>API: GraphQL;</li><li>CI/CD: Docker, k8s, GitLab, Jenkins.</li></ul><p>We are using Agile, Scrum (2-week sprints), and SAFe framework.</p><p><strong>You will have growth opportunities</strong></p><ul><li>upgrade skills in React, TypeScript;</li><li>learn to work with UI-kit, Stylebook, NX Monorepo;</li><li>development of skills for designing services.</li></ul>	t	<p>You will be developing of frontend features for the Affiliate program and responsible for the quality of architectural solutions and the quality of the code. For example, launching the features of the Affstore (dashboard and education for new user account, tickets, admin panel). And also:</p><ul><li>support and development of new functionality on the frontend side and using React and Typescript;</li><li>participation in team meetings and project improvement;</li><li>participation in team grooming and in tasks decomposition;</li><li>participation in the development and refinement of tasks in microservices on Node.js + TypeScript (optional).</li></ul>	\N
2832600	2022-12-07 19:00:20	2022-12-07 19:00:20	t	Middle/Senior Frontend Developer (React)	t	Middle Front-end Developer (React)	f	\N	OPEN	2022-02-16 13:12:11	f	\N	t	<ul><li>excellent knowledge of JavaScript ES6+, 3 years of commercial development experience;</li><li>work experience with&nbsp;React<em>;</em></li><li>cross-browser/adaptive layout experience;</li><li>experience with Webpack;</li><li>knowledge of design patterns and refactoring principles;</li><li>experience in conducting code-review.</li></ul><p><strong>It will be an advantage</strong></p><ul><li>experience with Flow or Typescript;</li><li>experience writing unit tests;</li><li>knowledge Node.js;</li><li>knowledge of GraphQL.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul><p><strong>Relocation package includes</strong></p><ul><li>visa support, an opportunity to get an EU citizenship;</li><li>preparation of all documents (fully provided by the company);</li><li>flight tickets coverage for employees and their families;</li><li>free corporate apartment&nbsp;for 2 months;</li><li>full coverage of migration costs while in Cyprus;</li><li>reimbursement of a rental car or transport allowance for 2 months.</li></ul>	\N	\N	0	t	Web	t	11355	Limassol, Cyprus	t	11363	Engineering	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode</strong>, a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for a <strong>Front-end Developer (React) </strong>for<strong> </strong>the<strong> Web team</strong>, whose responsibility is to develop all the key web applications that the end user works with.</p><p>We are using Agile, Scrum (1–2-week sprints), and SAFe framework.</p><p>Our team has 4 Frontend Developers, 4 QA Engineers (manual and auto), and a Team Leader (he is also writing the code).</p><p><strong>Tech stack</strong></p><ul><li>JavaScript (ES6+);</li><li>React;</li><li>TypeScript;</li><li>Webpack;</li><li>GraphQL;</li><li>CI/CD: Docker, Kubernetes, LXC, Git, GitLab.</li></ul>	t	<p>You will be developing web application interfaces, work with landings, page-proofs, architecture and difficult engineer solutions.</p><p>It will be great if you follow the principles of KISS, DRY, adhere to the principles of the code-style of the team, and focused on the business needs.</p>	\N
3043180	2022-12-07 19:00:20	2022-12-07 19:00:20	t	Portu 18/08/22	t	\N	t	\N	OPEN	2022-08-15 12:53:37	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2866510	2022-12-07 19:00:20	2022-12-07 19:00:20	t	Portu on hold	t	\N	t	\N	OPEN	2022-04-27 13:06:25	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2743188	2022-12-07 19:00:20	2022-12-07 19:00:20	t	PRODUCT DESIGNER (MARKETING)	t	\N	t	\N	OPEN	2021-08-31 13:19:05	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2846744	2022-12-07 19:00:20	2022-12-07 19:00:20	t	Product Designer под задачи QCEX	t	\N	t	\N	OPEN	2022-03-15 12:53:55	f	\N	t	\N	<ul><li>имеете опыт в проектировании: модульных сеток, типографики, цветовых схем;</li><li>системно проектируете компоненты и есть опыт общения с командой разработки на эту тему;</li><li>имеете хороший опыт в анимировании (есть понимание, как это встраивается в код);</li><li>обладаете знаниями, почему и как делаются дизайн системы, а также имеете понимание, где нужно обходить родные гайды ОС;</li><li>имеете опыт в проектировании (Information Architecture, User Flow) и в прототипировании;</li><li>работаете с ограничениями, в том числе, и с техническими;</li><li>владеете знаниями в diversity, accesibility и умеете с этим работать;</li><li>живете инсайтами, умеете формулировать гипотезы;</li><li>имеете хороший опыт в тестировании и знаете когда и как нужно;</li><li>имеете понимание о принципах верстки и навигации в мобильных приложениях и вебе;</li></ul>	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3277525	2022-12-07 19:00:20	2022-12-07 19:00:20	t	Product Manager / Billing	t	\N	t	\N	OPEN	2022-12-07 14:51:14	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3277524	2022-12-07 19:00:22	2022-12-07 19:00:22	t	Product Manager / Compliance	t	\N	t	\N	OPEN	2022-12-07 14:50:52	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2787773	2022-12-07 19:00:22	2022-12-07 19:00:22	t	Release Train Engineer (RTE)	t	\N	t	\N	OPEN	2021-11-17 10:55:36	f	<ul><li>Выстраивание процессов внутри поезда. Обучение сотрудников;</li><li>Помощь продакт менеджеру в подготовке родмапов, согласование с бизнесом;</li><li>Выстраивание системы метрик поезда (и внутри команд поезда); Работа с метриками, предложение улучшений и помощь командам в изменениях, основываясь на данных метриках;</li><li>Фасилитация встреч на уровне поезда и команд;</li><li>Оптимизация процессов на уровне компании;</li></ul>	t	\N	<ul><li>Вы&nbsp; -&nbsp; опытный специалист, разбирающийся в инструментах, методиках, практиках, связанных с Agile и Lean;</li></ul><ul><li>Вы ориентируетесь не только в теории, но и апробировали свои знания на практике (от 2х лет);</li></ul><ul><li>Вы - проактивный драйвер изменений;</li></ul><ul><li>Вас можно характеризовать как позитивного человека, оптимиста до мозга костей. Вы знаете как не дойти до выгорания, и соблюдаете баланс работа-отдых</li><li>(как плюс)Вы&nbsp; имеете практический опыт в Agile-масштабировании с применением фреймворков SAFe,</li></ul>	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3271463	2022-12-07 19:00:22	2022-12-07 19:00:22	t	Salary Market Review	t	\N	t	\N	OPEN	2022-11-24 10:59:46	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3267564	2022-12-07 19:00:22	2022-12-07 19:00:22	t	Senior HR Officer	t	\N	t	\N	OPEN	2022-11-21 11:43:58	f	\N	t	<p>- 1+ year of working experience working with migration documents or relocation processes is a must<br>- University Degree. Degree in HR/Business or any related field – is an advantage</p><p>-Fluency in English and Greek (written and spoken)<br>-Advanced knowledge of Russian will be considered an advantage</p>	\N	t	<ul><li>13th salary (pro-rata)</li><li>Gym next to the office</li><li>Annual Sports reimbursement</li><li>Paid lunch and snacks or Food allowance</li><li>Various gifts for birthdays and work anniversaries</li><li>Medical, Dental &amp; Optical insurance (</li><li>Compensation of Kindergartens and Schools in Cyprus</li><li>Training and Development opportunities</li><li>Corporate events and workshops</li><li>Working in a multicultural fast-paced environment</li></ul>	\N	\N	0	t	Regional Personnel Administration	t	11355	Limassol, Cyprus	t	\N		t	\N		t	<p>We are <strong>Quadcode</strong>, a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for a <strong>Senior HR Officer </strong>for <strong>Regional Personnel Administration Team. </strong>Our&nbsp;<strong>Regional Personnel Administration Team</strong>&nbsp;is people dedicated to: development and support employment processes, makes opportunities to employ new people in our company!</p>	t	<p>-Assist the HR department in the permit process and documentation needed for employees and families for entry permits, work permits and renewals<br>-Consult employees on the migration process, deadlines and documents needed<br>-Request, collect and review documents, and ensure that employees get their documents on time<br>-Close cooperation and assistance with the HR personnel to collect and complete documentation for Migration applications and other<br>-Create and sign agreements and applications (new, renewals, terminations) and any other docs required for Medical Insurance etc.<br>-Work closely with the Admin and Travel team to ensure a smooth onboarding by coordinating new-comers arrival schedule and overall relocation process<br>-Liaise with Migration consultants on Permit Application processing and with other public authorities<br>-Work with BambooHR and company portals, ensuring the accuracy and relevance of the information and its proper usage<br>-Compiling and updating employee records (hard and soft copies)<br>-Assist with day-to-day operations of the HR functions and be ready to work in fast-paced working environment based on the business needs</p><p><br></p><p><br></p>	\N
2841567	2022-12-07 19:00:22	2022-12-07 19:00:22	t	Senior iOS Developer Cyprus 2022	t	\N	t	\N	OPEN	2022-02-28 17:52:52	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3159660	2022-12-07 19:00:22	2022-12-07 19:00:22	t	Senior Sales Partner	t	Senior Sales Partner	f	\N	OPEN	2022-09-13 18:33:18	f	\N	t	<ul><li>results-orientation and drive to maximize both financial and career opportunities;</li><li>high degree of resilience, persuasiveness and proactivity;</li><li>experience in building partnerships and/or B2B sales in the trading, betting, forex markets;</li><li>established network in the specified areas;</li><li>c-level negotiation experience.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	Core SaaS	t	11355	Limassol, Cyprus	t	11366	Management	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode</strong>, a company that develops a SaaS trading platform for clients around the world.</p><p>Now we are looking for a&nbsp;<strong>Senior Sales Partner</strong>&nbsp;in&nbsp;<strong>Core SaaS team</strong>. You will have to searching new direct clients, engaging with senior decision-makers.</p>	t	<ul><li>developing &amp; maintaining a prospect/sales pipeline;</li><li>talking to potential clients, providing product information, educating and giving advice ;regarding our Saas platform;</li><li>creating personalized business proposals and eventually negotiation with direct clients;</li><li>exchange information and ideas with global teams;</li><li>forecast and budget development;</li><li>participation in industry events.</li></ul>	\N
2826189	2022-12-07 19:00:22	2022-12-07 19:00:22	t	SMM Specialist	t	SMM Specialist (HR Brand)	f	\N	OPEN	2022-02-04 13:07:31	f	\N	t	<ul><li>2 years of experience in running corporate or educational social networks;</li><li>skills of community management;</li><li>good writing skills in English;</li><li>portfolio in English (submit, please, with your application);</li><li>English C1+.</li></ul><p><strong>Will be an advantage</strong></p><ul><li>experience of running a targeting campaign on Facebook/Instagram, VK;</li><li>experience of work with Google Analytics and Yandex.Metrika;</li><li>experience in creating content for TikTok.</li></ul>	\N	t	<ul><li>remote or relocation opportunity to Cyprus after a trial period;</li><li>health insurance and mental health services;</li><li>13th salary and 21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	HR Brand	t	11355	Limassol, Cyprus	t	11368	People	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.</p><p>We are looking for a new&nbsp;<strong>SMM Specialist</strong>&nbsp;to join the&nbsp;<strong>HR Brand </strong>team.</p><p>The&nbsp;<strong>HR Brand </strong>team&nbsp;launches projects that help more IT professionals learn about jobs at Quadcode. The team consists of a brand manager, copywriter and designer. Now we are looking for a specialist who knows how to communicate complex information in a cool way. You will have a lot of materials about development, analytics and management.</p>	t	<ul><li>write posts, communicate with the audience in the comments and direct messages in English;</li><li>to offer options for improving performance in the social networks;</li><li>collect analytics, generate reports, and support their findings with numbers.</li></ul>	\N
3266788	2022-12-07 19:00:23	2022-12-07 19:00:23	t	SMR	t	\N	t	\N	OPEN	2022-11-17 19:15:59	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3154585	2022-12-07 19:00:24	2022-12-07 19:00:24	t	SOC Analyst	t	SOC Analysts	f	\N	OPEN	2022-09-12 10:56:03	f	\N	t	<ul><li>3+ years of experience in an Information Security;</li><li>1+ year of relevant experience as a SOC analyst;</li><li>experience with vulnerabilities triage;</li><li>L2 analyst research experience, including cases of remote specialists engagement;</li><li>experience with collecting indicators of compromise from various systems;</li><li>experience with operational checks of correlational searches via attacks emulation;</li><li>deep understanding of IT security domain;</li><li>deep understanding of incident response process;</li><li>base understanding of methods, tactics and procedures at different stages of attacks;</li><li>knowledge of identification and evaluation of indicators of compromise associated with malware\\attacker toolset;</li><li>base experience with network IDS management and rules writing\\tuning;</li><li>knowledge and experience working with Mitre ATT&amp;CK;</li><li>knowledge of underlying defence mechanisms of modern operational systems;</li><li>SQL knowledge and relevant experience with relational databases;</li><li>knowledge of common cases of networks, infrastructure and web application attacks.</li></ul><p><strong>Nice to have</strong></p><ul><li>working experience in FinTech industry;</li><li>deep understanding of modern IT tech;</li><li>experience working with SIEM-systems maintenance;</li><li>experience with regular expressions writing;</li><li>experience dealing with vulnerabilities in software and applications;</li><li>experience working with vulnerabilities scanners (nmap, Nessus);</li><li>experience working with EDR;</li><li>experience with network traffic analysis.</li></ul>	\N	t	<ul><li>relocation opportunity to Cyprus after a trial period;&nbsp;</li><li>remote or hybrid work model in our Cyprus office;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul><p><strong>Relocation package includes</strong></p><ul><li>visa support, an opportunity to get an EU citizenship;</li><li>preparation of all documents (fully provided by the company);</li><li>flight tickets coverage for employees and their families;</li><li>free corporate apartment&nbsp;for 2 months;</li><li>full coverage of migration costs while in Cyprus;</li><li>reimbursement of a rental car or transport allowance for 2 months.</li></ul>	\N	\N	0	t	Security Operation Center	t	11355	Limassol, Cyprus	t	11360	Compliance & Security	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode</strong>, a company that develops a SaaS trading platform for clients all around the world.</p><p>Now we are looking for a&nbsp;<strong>SOC Analysts</strong> for <strong>the Security Operations Centre. &nbsp;</strong><br><br>Teams' key responsibilities include but not limited to - data aggregation, security events normalisation and monitoring, timely response to security threats.</p>	t	<ul><li>SOC code base improvement (detection and response);</li><li>development and testing of the response playbooks;</li><li>detection rules development;</li><li>events monitoring and incidence management process improvement.</li></ul><p><strong>Additionally</strong></p><ul><li>events correlation rules development;</li><li>incidents response playbooks development and their automation;</li><li>security events analysis and monitoring;</li><li>partaking and/or leading the incident response processes;</li><li>search, analysis and coordination of vulnerabilities elimination;</li><li>detection rules operational checks via attacks emulation;</li><li>security tools research and development;</li><li>conducting periodic exercises to respond to security incidents;</li><li>connection of the new log sources and processes to SIEM and SOC tools;</li><li>define requirements for the secure configuration of the operating systems, networks and services in terms of processing of the information security incidents.</li></ul>	\N
2518163	2022-12-07 19:00:24	2022-12-07 19:00:24	t	Support Hindi	t	\N	t	\N	OPEN	2020-06-16 17:48:04	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2531077	2022-12-07 19:00:24	2022-12-07 19:00:24	t	Support Portuguese	t	\N	t	\N	OPEN	2020-07-15 10:33:57	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3248050	2022-12-07 19:00:24	2022-12-07 19:00:24	t	Support Spanish (LatAm)	t	\N	t	\N	OPEN	2022-10-14 14:24:02	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
2518181	2022-12-07 19:00:24	2022-12-07 19:00:24	t	Support Thai	t	\N	t	\N	OPEN	2020-06-16 21:40:08	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
3159451	2022-12-07 19:00:24	2022-12-07 19:00:24	t	System Engineer	t	System Engineer	t	\N	OPEN	2022-09-13 17:13:44	f	\N	t	<ul><li>Linux terminal skills;</li><li>Bash scripting skills;</li><li>Python scripting skills;</li><li>basic networking knowledge (what is DNS, NAT, understanding of how network routing works and how networking decisions are made, understanding of TCP/IP protocols);</li><li>basic knowledge of SQL;</li><li>strong communication skills;</li><li>fluency in English (at least B2).</li></ul>	\N	t	<ul><li>remote or hybrid work model in our Cyprus office;</li><li>shift schedule;</li><li>health insurance and&nbsp;mental health services;</li><li>13th salary and&nbsp;21 vacation days per year;</li><li>provided lunches or food allowance;&nbsp;</li><li>monthly tuition reimbursement (kindergartens/schools);</li><li>English and Greek lessons;</li><li>provided professional courses: from Coursera to Harvard;</li><li>sports reimbursement;</li><li>team buildings and parties (e.g. Japan Day at the office);</li><li>gifts for work anniversaries: from AirPods Pro to MacBook Pro;</li><li>bonuses for special events (e.g. child's birth).</li></ul>	\N	\N	0	t	ServiceDesk	t	11355	Limassol, Cyprus	t	11363	Engineering	t	11352	Full-time	t	<p>We are&nbsp;<strong>Quadcode,&nbsp;</strong>a company that develops a SaaS trading platform for clients around the world.<br><br>Now we are looking for a&nbsp;<strong>System Engineer</strong>&nbsp;in our&nbsp;<strong>ServiceDesk team</strong>.<br>The team monitors the health of the platform, responds to appeals from company staff (including customer service), responds to alerts of the monitoring systems and maintains the team's internal services.</p>	t	<ul><li>monitor sandbox, integration and production environments;</li><li>deal with technical problems on sandbox, integration and production environments;</li><li>provide incident, problem and change management;</li><li>investigate non-typical cases using logs, metrics and team experience;</li><li>support internal services;</li><li>liaise with IT personnel for problem resolution.</li></ul>	\N
2918116	2022-12-07 19:00:24	2022-12-07 19:00:24	t	Thai on hold	t	\N	t	\N	OPEN	2022-07-04 10:42:04	f	\N	t	\N	\N	t	\N	\N	\N	0	t	\N	t	\N		t	\N		t	\N		t	\N	t	\N	\N
\.


--
-- Name: activity_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.activity_log_id_seq', 865, true);


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

SELECT pg_catalog.setval('public.categories_id_seq', 21, true);


--
-- Name: data_requests_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.data_requests_id_seq', 20, true);


--
-- Name: failed_jobs_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.failed_jobs_id_seq', 3, false);


--
-- Name: files_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.files_id_seq', 507, true);


--
-- Name: huntflow_options_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.huntflow_options_id_seq', 3, true);


--
-- Name: leads_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.leads_id_seq', 568, true);


--
-- Name: locations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.locations_id_seq', 56, true);


--
-- Name: migrations_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--

SELECT pg_catalog.setval('public.migrations_id_seq', 41, true);


--
-- Name: activity_log activity_log_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.activity_log
    ADD CONSTRAINT activity_log_pkey PRIMARY KEY (id);


--
-- Name: categories categories_id_external_unique; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.categories
    ADD CONSTRAINT categories_id_external_unique UNIQUE (id_external);


--
-- Name: categories categories_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.categories
    ADD CONSTRAINT categories_pkey PRIMARY KEY (id);


--
-- Name: data_requests data_requests_pk; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.data_requests
    ADD CONSTRAINT data_requests_pk PRIMARY KEY (id);


--
-- Name: failed_jobs failed_jobs_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.failed_jobs
    ADD CONSTRAINT failed_jobs_pkey PRIMARY KEY (id);


--
-- Name: files files_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.files
    ADD CONSTRAINT files_pkey PRIMARY KEY (id);


--
-- Name: huntflow_options huntflow_options_pk; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.huntflow_options
    ADD CONSTRAINT huntflow_options_pk PRIMARY KEY (id);


--
-- Name: locations locations_id_external_key; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.locations
    ADD CONSTRAINT locations_id_external_key UNIQUE (id_external);


--
-- Name: locations locations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.locations
    ADD CONSTRAINT locations_pkey PRIMARY KEY (id);


--
-- Name: migrations migrations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.migrations
    ADD CONSTRAINT migrations_pkey PRIMARY KEY (id);


--
-- Name: type_works type_works_pk; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.type_works
    ADD CONSTRAINT type_works_pk PRIMARY KEY (id);


--
-- Name: vacancies vacancies_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vacancies
    ADD CONSTRAINT vacancies_pkey PRIMARY KEY (id);


--
-- Name: activity_log_log_name_index; Type: INDEX; Schema: public; Owner: postgres
--

CREATE INDEX activity_log_log_name_index ON public.activity_log USING btree (log_name);


--
-- Name: huntflow_options_key_uindex; Type: INDEX; Schema: public; Owner: postgres
--

CREATE UNIQUE INDEX huntflow_options_key_uindex ON public.huntflow_options USING btree (key);


--
-- Name: vacancies vacancies_category_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vacancies
    ADD CONSTRAINT vacancies_category_id_foreign FOREIGN KEY (category_id) REFERENCES public.categories(id_external) ON UPDATE CASCADE ON DELETE CASCADE;


--
-- Name: vacancies vacancies_location_id_foreign; Type: FK CONSTRAINT; Schema: public; Owner: postgres
--

ALTER TABLE ONLY public.vacancies
    ADD CONSTRAINT vacancies_location_id_foreign FOREIGN KEY (location_id) REFERENCES public.locations(id_external) ON UPDATE CASCADE ON DELETE CASCADE;

--
-- PostgreSQL database dump complete
--